diff --git a/grammar.js b/grammar.js index f99916a..1033885 100644 --- a/grammar.js +++ b/grammar.js @@ -80,6 +80,7 @@ module.exports = grammar({ $.macs, $.no_host_authentication_for_localhost, $.number_of_password_prompts, + $.obscure_keystroke_timing, $.password_authentication, $.permit_local_command, $.permit_remote_open, @@ -618,6 +619,16 @@ module.exports = grammar({ number_of_password_prompts_value: $ => alias($.number, "number_of_password_prompts_value"), + obscure_keystroke_timing: $ => option( + 'ObscureKeystrokeTiming', + $.obscure_keystroke_timing_value + ), + obscure_keystroke_timing_value: $ => choice( + ignoreCase('yes'), + ignoreCase('no'), + /interval:[1234567890]+/, + ), + password_authentication: $ => option( 'PasswordAuthentication', $.password_authentication_value diff --git a/queries/highlights.scm b/queries/highlights.scm index 0c71ef4..0571473 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -210,6 +210,9 @@ (number_of_password_prompts) @keyword (number_of_password_prompts_value) @constant.numeric.integer +(obscure_keystroke_timing) @keyword +(obscure_keystroke_timing_value) @constant.builtin.string + (password_authentication) @keyword (password_authentication_value) @constant.builtin.boolean diff --git a/src/grammar.json b/src/grammar.json index daa21d9..da79933 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -291,6 +291,10 @@ "type": "SYMBOL", "name": "number_of_password_prompts" }, + { + "type": "SYMBOL", + "name": "obscure_keystroke_timing" + }, { "type": "SYMBOL", "name": "password_authentication" @@ -6427,6 +6431,97 @@ "named": false, "value": "number_of_password_prompts_value" }, + "obscure_keystroke_timing": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[oO][bB][sS][cC][uU][rR][eE][kK][eE][yY][sS][tT][rR][oO][kK][eE][tT][iI][mM][iI][nN][gG]" + } + } + }, + "named": false, + "value": "ObscureKeystrokeTiming" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[ \\t]" + }, + { + "type": "STRING", + "value": "=" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "obscure_keystroke_timing_value" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "obscure_keystroke_timing_value": { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[yY][eE][sS]" + }, + { + "type": "PATTERN", + "value": "[nN][oO]" + }, + { + "type": "PATTERN", + "value": "interval:[1234567890]+" + } + ] + }, "password_authentication": { "type": "SEQ", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 6d49d66..3def7af 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -655,6 +655,10 @@ "type": "number_of_password_prompts", "named": true }, + { + "type": "obscure_keystroke_timing", + "named": true + }, { "type": "password_authentication", "named": true @@ -1886,6 +1890,26 @@ "named": true, "fields": {} }, + { + "type": "obscure_keystroke_timing", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "obscure_keystroke_timing_value", + "named": true + } + ] + } + }, + { + "type": "obscure_keystroke_timing_value", + "named": true, + "fields": {} + }, { "type": "password_authentication", "named": true, @@ -3066,6 +3090,10 @@ "type": "NumberOfPasswordPrompts", "named": false }, + { + "type": "ObscureKeystrokeTiming", + "named": false + }, { "type": "PKCS11Provider", "named": false diff --git a/src/parser.c b/src/parser.c index aab6d7f..aae7aca 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 1367 -#define LARGE_STATE_COUNT 798 -#define SYMBOL_COUNT 433 +#define STATE_COUNT 1379 +#define LARGE_STATE_COUNT 805 +#define SYMBOL_COUNT 437 #define ALIAS_COUNT 43 -#define TOKEN_COUNT 201 +#define TOKEN_COUNT 203 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 @@ -160,346 +160,350 @@ enum { aux_sym_macs_token1 = 133, aux_sym_no_host_authentication_for_localhost_token1 = 134, aux_sym_number_of_password_prompts_token1 = 135, - aux_sym_password_authentication_token1 = 136, - aux_sym_permit_local_command_token1 = 137, - aux_sym_permit_remote_open_token1 = 138, - aux_sym_pkcs11_provider_token1 = 139, - aux_sym_port_token1 = 140, - aux_sym_preferred_authentications_token1 = 141, - aux_sym_protocol_token1 = 142, - anon_sym_1 = 143, - anon_sym_2 = 144, - aux_sym_proxy_command_token1 = 145, - aux_sym_proxy_jump_token1 = 146, - aux_sym_proxy_use_fdpass_token1 = 147, - aux_sym_pubkey_accepted_algorithms_token1 = 148, - aux_sym_pubkey_accepted_key_types_token1 = 149, - aux_sym_pubkey_authentication_token1 = 150, - aux_sym_pubkey_authentication_value_token1 = 151, - aux_sym_pubkey_authentication_value_token2 = 152, - aux_sym_rekey_limit_token1 = 153, - aux_sym_remote_command_token1 = 154, - aux_sym_remote_forward_token1 = 155, - aux_sym_request_tty_token1 = 156, - aux_sym_request_tty_value_token1 = 157, - aux_sym_required_rsa_size_token1 = 158, - aux_sym_revoked_host_keys_token1 = 159, - aux_sym_security_key_provider_token1 = 160, - aux_sym_send_env_token1 = 161, - aux_sym_server_alive_count_max_token1 = 162, - aux_sym_server_alive_interval_token1 = 163, - aux_sym_session_type_token1 = 164, - aux_sym_session_type_value_token1 = 165, - aux_sym_session_type_value_token2 = 166, - aux_sym_set_env_token1 = 167, - aux_sym_stdin_null_token1 = 168, - aux_sym_stream_local_bind_mask_token1 = 169, - aux_sym_stream_local_bind_unlink_token1 = 170, - aux_sym_strict_host_key_checking_token1 = 171, - aux_sym_strict_host_key_checking_value_token1 = 172, - aux_sym_strict_host_key_checking_value_token2 = 173, - aux_sym_syslog_facility_token1 = 174, - anon_sym_DAEMON = 175, - anon_sym_USER = 176, - anon_sym_AUTH = 177, - anon_sym_LOCAL0 = 178, - anon_sym_LOCAL1 = 179, - anon_sym_LOCAL2 = 180, - anon_sym_LOCAL3 = 181, - anon_sym_LOCAL4 = 182, - anon_sym_LOCAL5 = 183, - anon_sym_LOCAL6 = 184, - anon_sym_LOCAL7 = 185, - aux_sym_tcp_keep_alive_token1 = 186, - aux_sym_keep_alive_token1 = 187, - aux_sym_tag_token1 = 188, - aux_sym_tunnel_token1 = 189, - aux_sym_tunnel_value_token1 = 190, - aux_sym_tunnel_value_token2 = 191, - aux_sym_tunnel_device_token1 = 192, - aux_sym_update_host_keys_token1 = 193, - aux_sym_use_keychain_token1 = 194, - aux_sym_use_roaming_token1 = 195, - aux_sym_user_token1 = 196, - aux_sym_user_known_hosts_file_token1 = 197, - aux_sym_verify_host_key_dns_token1 = 198, - aux_sym_visual_host_key_token1 = 199, - aux_sym_xauth_location_token1 = 200, - sym_client_config = 201, - sym__option = 202, - sym_boolean = 203, - sym_pattern = 204, - sym_host = 205, - sym_host_value = 206, - sym_match = 207, - sym_match_value = 208, - sym_add_keys_to_agent = 209, - sym_add_keys_to_agent_value = 210, - sym_address_family = 211, - sym_address_family_value = 212, - sym_batch_mode = 213, - sym_batch_mode_value = 214, - sym_bind_address = 215, - sym_bind_address_value = 216, - sym_bind_interface = 217, - sym_bind_interface_value = 218, - sym_canonical_domains = 219, - sym_canonical_domains_value = 220, - sym_canonicalize_fallback_local = 221, - sym_canonicalize_fallback_local_value = 222, - sym_canonicalize_hostname = 223, - sym_canonicalize_hostname_value = 224, - sym_canonicalize_max_dots = 225, - sym_canonicalize_max_dots_value = 226, - sym_canonicalize_permitted_cnames = 227, - sym_canonicalize_permitted_cnames_value = 228, - sym_ca_signature_algorithms = 229, - sym_ca_signature_algorithms_value = 230, - sym_certificate_file = 231, - sym_certificate_file_value = 232, - sym_challenge_response_authentication = 233, - sym_challenge_response_authentication_value = 234, - sym_channel_timeout = 235, - sym_channel_timeout_type = 236, - aux_sym__channel_timeout_value = 237, - sym_check_host_ip = 238, - sym_check_host_ip_value = 239, - sym_ciphers = 240, - sym_ciphers_value = 241, - sym_cipher = 242, - sym_cipher_value = 243, - sym_clear_all_forwardings = 244, - sym_clear_all_forwardings_value = 245, - sym_compression = 246, - sym_compression_value = 247, - sym_connection_attempts = 248, - sym_connection_attempts_value = 249, - sym_connect_timeout = 250, - sym_connect_timeout_value = 251, - sym_control_master = 252, - sym_control_master_value = 253, - sym_control_path = 254, - sym_control_path_value = 255, - sym_control_persist = 256, - sym_control_persist_value = 257, - sym_dynamic_forward = 258, - sym_dynamic_forward_value = 259, - sym_enable_escape_commandline = 260, - sym_enable_escape_commandline_value = 261, - sym_enable_ssh_keysign = 262, - sym_enable_ssh_keysign_value = 263, - sym_escape_char = 264, - sym_escape_char_value = 265, - sym_exit_on_forward_failure = 266, - sym_exit_on_forward_failure_value = 267, - sym_fingerprint_hash = 268, - sym_fingerprint_hash_value = 269, - sym_fork_after_authentication = 270, - sym_fork_after_authentication_value = 271, - sym_forward_agent = 272, - sym_forward_agent_value = 273, - sym_forward_x11 = 274, - sym_forward_x11_value = 275, - sym_forward_x11_timeout = 276, - sym_forward_x11_timeout_value = 277, - sym_forward_x11_trusted = 278, - sym_forward_x11_trusted_value = 279, - sym_gateway_ports = 280, - sym_gateway_ports_value = 281, - sym_global_known_hosts_file = 282, - sym_global_known_hosts_file_value = 283, - sym_gssapi_authentication = 284, - sym_gssapi_authentication_value = 285, - sym_gssapi_client_identity = 286, - sym_gssapi_client_identity_value = 287, - sym_gssapi_delegate_credentials = 288, - sym_gssapi_delegate_credentials_value = 289, - sym_gssapi_key_exchange = 290, - sym_gssapi_key_exchange_value = 291, - sym_gssapi_renewal_forces_rekey = 292, - sym_gssapi_renewal_forces_rekey_value = 293, - sym_gssapi_server_identity = 294, - sym_gssapi_server_identity_value = 295, - sym_gssapi_trust_dns = 296, - sym_gssapi_trust_dns_value = 297, - sym_gssapi_kex_algorithms = 298, - sym_gssapi_kex_algorithms_value = 299, - sym_hash_known_hosts = 300, - sym_hash_known_hosts_value = 301, - sym_hostbased_accepted_algorithms = 302, - sym_hostbased_accepted_algorithms_value = 303, - sym_hostbased_authentication = 304, - sym_hostbased_authentication_value = 305, - sym_host_key_algorithms = 306, - sym_host_key_algorithms_value = 307, - sym_host_key_alias = 308, - sym_host_key_alias_value = 309, - sym_hostname = 310, - sym_hostname_value = 311, - sym_identities_only = 312, - sym_identities_only_value = 313, - sym_identity_agent = 314, - sym_identity_agent_value = 315, - sym_identity_file = 316, - sym_identity_file_value = 317, - sym_ignore_unknown = 318, - sym_ignore_unknown_value = 319, - sym_include = 320, - sym_include_value = 321, - sym_ip_qos = 322, - sym_ip_qos_value = 323, - sym_kbd_interactive_authentication = 324, - sym_kbd_interactive_authentication_value = 325, - sym_kbd_interactive_devices = 326, - sym_kbd_interactive_devices_value = 327, - sym_kex_algorithms = 328, - sym_kex_algorithms_value = 329, - sym_known_hosts_command = 330, - sym_known_hosts_command_value = 331, - sym_local_command = 332, - sym_local_command_value = 333, - sym_local_forward = 334, - sym_local_forward_value = 335, - sym_log_level = 336, - sym_log_level_value = 337, - sym_log_verbose = 338, - sym_log_verbose_value = 339, - sym_macs = 340, - sym_macs_value = 341, - sym_no_host_authentication_for_localhost = 342, - sym_no_host_authentication_for_localhost_value = 343, - sym_number_of_password_prompts = 344, - sym_number_of_password_prompts_value = 345, - sym_password_authentication = 346, - sym_password_authentication_value = 347, - sym_permit_local_command = 348, - sym_permit_local_command_value = 349, - sym_permit_remote_open = 350, - sym_permit_remote_open_value = 351, - sym_pkcs11_provider = 352, - sym_pkcs11_provider_value = 353, - sym_port = 354, - sym_port_value = 355, - sym_preferred_authentications = 356, - sym_preferred_authentications_value = 357, - sym_protocol = 358, - sym_protocol_value = 359, - sym_proxy_command = 360, - sym_proxy_command_value = 361, - sym_proxy_jump = 362, - sym_proxy_jump_value = 363, - sym_proxy_use_fdpass = 364, - sym_proxy_use_fdpass_value = 365, - sym_pubkey_accepted_algorithms = 366, - sym_pubkey_accepted_algorithms_value = 367, - sym_pubkey_accepted_key_types = 368, - sym_pubkey_accepted_key_types_value = 369, - sym_pubkey_authentication = 370, - sym_pubkey_authentication_value = 371, - sym_rekey_limit = 372, - sym_rekey_limit_value = 373, - sym_remote_command = 374, - sym_remote_command_value = 375, - sym_remote_forward = 376, - sym_remote_forward_value = 377, - sym_request_tty = 378, - sym_request_tty_value = 379, - sym_required_rsa_size = 380, - sym_required_rsa_size_value = 381, - sym_revoked_host_keys = 382, - sym_revoked_host_keys_value = 383, - sym_security_key_provider = 384, - sym_security_key_provider_value = 385, - sym_send_env = 386, - sym_send_env_value = 387, - sym_server_alive_count_max = 388, - sym_server_alive_count_max_value = 389, - sym_server_alive_interval = 390, - sym_server_alive_interval_value = 391, - sym_session_type = 392, - sym_session_type_value = 393, - sym_set_env = 394, - sym_set_env_value = 395, - sym_stdin_null = 396, - sym_stdin_null_value = 397, - sym_stream_local_bind_mask = 398, - sym_stream_local_bind_mask_value = 399, - sym_stream_local_bind_unlink = 400, - sym_stream_local_bind_unlink_value = 401, - sym_strict_host_key_checking = 402, - sym_strict_host_key_checking_value = 403, - sym_syslog_facility = 404, - sym_syslog_facility_value = 405, - sym_tcp_keep_alive = 406, - sym_tcp_keep_alive_value = 407, - sym_keep_alive = 408, - sym_keep_alive_value = 409, - sym_tag = 410, - sym_tag_value = 411, - sym_tunnel = 412, - sym_tunnel_value = 413, - sym_tunnel_device = 414, - sym_tunnel_device_value = 415, - sym_update_host_keys = 416, - sym_update_host_keys_value = 417, - sym_use_keychain = 418, - sym_use_keychain_value = 419, - sym_use_roaming = 420, - sym_use_roaming_value = 421, - sym_user = 422, - sym_user_value = 423, - sym_user_known_hosts_file = 424, - sym_user_known_hosts_file_value = 425, - sym_verify_host_key_dns = 426, - sym_verify_host_key_dns_value = 427, - sym_visual_host_key = 428, - sym_visual_host_key_value = 429, - sym_xauth_location = 430, - sym_xauth_location_value = 431, - aux_sym_client_config_repeat1 = 432, - anon_alias_sym_batch_mode_value = 433, - anon_alias_sym_canonicalize_fallback_local_value = 434, - anon_alias_sym_challenge_response_authentication_value = 435, - anon_alias_sym_check_host_ip_value = 436, - anon_alias_sym_clear_all_forwardings_value = 437, - anon_alias_sym_compression_value = 438, - anon_alias_sym_connect_timeout_value = 439, - anon_alias_sym_connection_attempts_value = 440, - anon_alias_sym_control_persist_value = 441, - anon_alias_sym_enable_escape_commandline_value = 442, - anon_alias_sym_enable_ssh_keysign_value = 443, - anon_alias_sym_exit_on_forward_failure_value = 444, - anon_alias_sym_fork_after_authentication_value = 445, - anon_alias_sym_forward_x11_timeout_value = 446, - anon_alias_sym_forward_x11_trusted_value = 447, - anon_alias_sym_forward_x11_value = 448, - anon_alias_sym_gateway_ports_value = 449, - anon_alias_sym_gssapi_authentication_value = 450, - anon_alias_sym_gssapi_delegate_credentials_value = 451, - anon_alias_sym_gssapi_key_exchange_value = 452, - anon_alias_sym_gssapi_renewal_forces_rekey_value = 453, - anon_alias_sym_gssapi_trust_dns_value = 454, - anon_alias_sym_hash_known_hosts_value = 455, - anon_alias_sym_hostbased_authentication_value = 456, - anon_alias_sym_identities_only_value = 457, - anon_alias_sym_kbd_interactive_authentication_value = 458, - anon_alias_sym_keep_alive_value = 459, - anon_alias_sym_match_value = 460, - anon_alias_sym_no_host_authentication_for_localhost_value = 461, - anon_alias_sym_number_of_password_prompts_value = 462, - anon_alias_sym_password_authentication_value = 463, - anon_alias_sym_permit_local_command_value = 464, - anon_alias_sym_port_value = 465, - anon_alias_sym_proxy_use_fdpass_value = 466, - anon_alias_sym_required_rsa_size_value = 467, - anon_alias_sym_server_alive_count_max_value = 468, - anon_alias_sym_server_alive_interval_value = 469, - anon_alias_sym_stdin_null_value = 470, - anon_alias_sym_stream_local_bind_unlink_value = 471, - anon_alias_sym_tcp_keep_alive_value = 472, - anon_alias_sym_use_keychain_value = 473, - anon_alias_sym_use_roaming_value = 474, - anon_alias_sym_visual_host_key_value = 475, + aux_sym_obscure_keystroke_timing_token1 = 136, + aux_sym_obscure_keystroke_timing_value_token1 = 137, + aux_sym_password_authentication_token1 = 138, + aux_sym_permit_local_command_token1 = 139, + aux_sym_permit_remote_open_token1 = 140, + aux_sym_pkcs11_provider_token1 = 141, + aux_sym_port_token1 = 142, + aux_sym_preferred_authentications_token1 = 143, + aux_sym_protocol_token1 = 144, + anon_sym_1 = 145, + anon_sym_2 = 146, + aux_sym_proxy_command_token1 = 147, + aux_sym_proxy_jump_token1 = 148, + aux_sym_proxy_use_fdpass_token1 = 149, + aux_sym_pubkey_accepted_algorithms_token1 = 150, + aux_sym_pubkey_accepted_key_types_token1 = 151, + aux_sym_pubkey_authentication_token1 = 152, + aux_sym_pubkey_authentication_value_token1 = 153, + aux_sym_pubkey_authentication_value_token2 = 154, + aux_sym_rekey_limit_token1 = 155, + aux_sym_remote_command_token1 = 156, + aux_sym_remote_forward_token1 = 157, + aux_sym_request_tty_token1 = 158, + aux_sym_request_tty_value_token1 = 159, + aux_sym_required_rsa_size_token1 = 160, + aux_sym_revoked_host_keys_token1 = 161, + aux_sym_security_key_provider_token1 = 162, + aux_sym_send_env_token1 = 163, + aux_sym_server_alive_count_max_token1 = 164, + aux_sym_server_alive_interval_token1 = 165, + aux_sym_session_type_token1 = 166, + aux_sym_session_type_value_token1 = 167, + aux_sym_session_type_value_token2 = 168, + aux_sym_set_env_token1 = 169, + aux_sym_stdin_null_token1 = 170, + aux_sym_stream_local_bind_mask_token1 = 171, + aux_sym_stream_local_bind_unlink_token1 = 172, + aux_sym_strict_host_key_checking_token1 = 173, + aux_sym_strict_host_key_checking_value_token1 = 174, + aux_sym_strict_host_key_checking_value_token2 = 175, + aux_sym_syslog_facility_token1 = 176, + anon_sym_DAEMON = 177, + anon_sym_USER = 178, + anon_sym_AUTH = 179, + anon_sym_LOCAL0 = 180, + anon_sym_LOCAL1 = 181, + anon_sym_LOCAL2 = 182, + anon_sym_LOCAL3 = 183, + anon_sym_LOCAL4 = 184, + anon_sym_LOCAL5 = 185, + anon_sym_LOCAL6 = 186, + anon_sym_LOCAL7 = 187, + aux_sym_tcp_keep_alive_token1 = 188, + aux_sym_keep_alive_token1 = 189, + aux_sym_tag_token1 = 190, + aux_sym_tunnel_token1 = 191, + aux_sym_tunnel_value_token1 = 192, + aux_sym_tunnel_value_token2 = 193, + aux_sym_tunnel_device_token1 = 194, + aux_sym_update_host_keys_token1 = 195, + aux_sym_use_keychain_token1 = 196, + aux_sym_use_roaming_token1 = 197, + aux_sym_user_token1 = 198, + aux_sym_user_known_hosts_file_token1 = 199, + aux_sym_verify_host_key_dns_token1 = 200, + aux_sym_visual_host_key_token1 = 201, + aux_sym_xauth_location_token1 = 202, + sym_client_config = 203, + sym__option = 204, + sym_boolean = 205, + sym_pattern = 206, + sym_host = 207, + sym_host_value = 208, + sym_match = 209, + sym_match_value = 210, + sym_add_keys_to_agent = 211, + sym_add_keys_to_agent_value = 212, + sym_address_family = 213, + sym_address_family_value = 214, + sym_batch_mode = 215, + sym_batch_mode_value = 216, + sym_bind_address = 217, + sym_bind_address_value = 218, + sym_bind_interface = 219, + sym_bind_interface_value = 220, + sym_canonical_domains = 221, + sym_canonical_domains_value = 222, + sym_canonicalize_fallback_local = 223, + sym_canonicalize_fallback_local_value = 224, + sym_canonicalize_hostname = 225, + sym_canonicalize_hostname_value = 226, + sym_canonicalize_max_dots = 227, + sym_canonicalize_max_dots_value = 228, + sym_canonicalize_permitted_cnames = 229, + sym_canonicalize_permitted_cnames_value = 230, + sym_ca_signature_algorithms = 231, + sym_ca_signature_algorithms_value = 232, + sym_certificate_file = 233, + sym_certificate_file_value = 234, + sym_challenge_response_authentication = 235, + sym_challenge_response_authentication_value = 236, + sym_channel_timeout = 237, + sym_channel_timeout_type = 238, + aux_sym__channel_timeout_value = 239, + sym_check_host_ip = 240, + sym_check_host_ip_value = 241, + sym_ciphers = 242, + sym_ciphers_value = 243, + sym_cipher = 244, + sym_cipher_value = 245, + sym_clear_all_forwardings = 246, + sym_clear_all_forwardings_value = 247, + sym_compression = 248, + sym_compression_value = 249, + sym_connection_attempts = 250, + sym_connection_attempts_value = 251, + sym_connect_timeout = 252, + sym_connect_timeout_value = 253, + sym_control_master = 254, + sym_control_master_value = 255, + sym_control_path = 256, + sym_control_path_value = 257, + sym_control_persist = 258, + sym_control_persist_value = 259, + sym_dynamic_forward = 260, + sym_dynamic_forward_value = 261, + sym_enable_escape_commandline = 262, + sym_enable_escape_commandline_value = 263, + sym_enable_ssh_keysign = 264, + sym_enable_ssh_keysign_value = 265, + sym_escape_char = 266, + sym_escape_char_value = 267, + sym_exit_on_forward_failure = 268, + sym_exit_on_forward_failure_value = 269, + sym_fingerprint_hash = 270, + sym_fingerprint_hash_value = 271, + sym_fork_after_authentication = 272, + sym_fork_after_authentication_value = 273, + sym_forward_agent = 274, + sym_forward_agent_value = 275, + sym_forward_x11 = 276, + sym_forward_x11_value = 277, + sym_forward_x11_timeout = 278, + sym_forward_x11_timeout_value = 279, + sym_forward_x11_trusted = 280, + sym_forward_x11_trusted_value = 281, + sym_gateway_ports = 282, + sym_gateway_ports_value = 283, + sym_global_known_hosts_file = 284, + sym_global_known_hosts_file_value = 285, + sym_gssapi_authentication = 286, + sym_gssapi_authentication_value = 287, + sym_gssapi_client_identity = 288, + sym_gssapi_client_identity_value = 289, + sym_gssapi_delegate_credentials = 290, + sym_gssapi_delegate_credentials_value = 291, + sym_gssapi_key_exchange = 292, + sym_gssapi_key_exchange_value = 293, + sym_gssapi_renewal_forces_rekey = 294, + sym_gssapi_renewal_forces_rekey_value = 295, + sym_gssapi_server_identity = 296, + sym_gssapi_server_identity_value = 297, + sym_gssapi_trust_dns = 298, + sym_gssapi_trust_dns_value = 299, + sym_gssapi_kex_algorithms = 300, + sym_gssapi_kex_algorithms_value = 301, + sym_hash_known_hosts = 302, + sym_hash_known_hosts_value = 303, + sym_hostbased_accepted_algorithms = 304, + sym_hostbased_accepted_algorithms_value = 305, + sym_hostbased_authentication = 306, + sym_hostbased_authentication_value = 307, + sym_host_key_algorithms = 308, + sym_host_key_algorithms_value = 309, + sym_host_key_alias = 310, + sym_host_key_alias_value = 311, + sym_hostname = 312, + sym_hostname_value = 313, + sym_identities_only = 314, + sym_identities_only_value = 315, + sym_identity_agent = 316, + sym_identity_agent_value = 317, + sym_identity_file = 318, + sym_identity_file_value = 319, + sym_ignore_unknown = 320, + sym_ignore_unknown_value = 321, + sym_include = 322, + sym_include_value = 323, + sym_ip_qos = 324, + sym_ip_qos_value = 325, + sym_kbd_interactive_authentication = 326, + sym_kbd_interactive_authentication_value = 327, + sym_kbd_interactive_devices = 328, + sym_kbd_interactive_devices_value = 329, + sym_kex_algorithms = 330, + sym_kex_algorithms_value = 331, + sym_known_hosts_command = 332, + sym_known_hosts_command_value = 333, + sym_local_command = 334, + sym_local_command_value = 335, + sym_local_forward = 336, + sym_local_forward_value = 337, + sym_log_level = 338, + sym_log_level_value = 339, + sym_log_verbose = 340, + sym_log_verbose_value = 341, + sym_macs = 342, + sym_macs_value = 343, + sym_no_host_authentication_for_localhost = 344, + sym_no_host_authentication_for_localhost_value = 345, + sym_number_of_password_prompts = 346, + sym_number_of_password_prompts_value = 347, + sym_obscure_keystroke_timing = 348, + sym_obscure_keystroke_timing_value = 349, + sym_password_authentication = 350, + sym_password_authentication_value = 351, + sym_permit_local_command = 352, + sym_permit_local_command_value = 353, + sym_permit_remote_open = 354, + sym_permit_remote_open_value = 355, + sym_pkcs11_provider = 356, + sym_pkcs11_provider_value = 357, + sym_port = 358, + sym_port_value = 359, + sym_preferred_authentications = 360, + sym_preferred_authentications_value = 361, + sym_protocol = 362, + sym_protocol_value = 363, + sym_proxy_command = 364, + sym_proxy_command_value = 365, + sym_proxy_jump = 366, + sym_proxy_jump_value = 367, + sym_proxy_use_fdpass = 368, + sym_proxy_use_fdpass_value = 369, + sym_pubkey_accepted_algorithms = 370, + sym_pubkey_accepted_algorithms_value = 371, + sym_pubkey_accepted_key_types = 372, + sym_pubkey_accepted_key_types_value = 373, + sym_pubkey_authentication = 374, + sym_pubkey_authentication_value = 375, + sym_rekey_limit = 376, + sym_rekey_limit_value = 377, + sym_remote_command = 378, + sym_remote_command_value = 379, + sym_remote_forward = 380, + sym_remote_forward_value = 381, + sym_request_tty = 382, + sym_request_tty_value = 383, + sym_required_rsa_size = 384, + sym_required_rsa_size_value = 385, + sym_revoked_host_keys = 386, + sym_revoked_host_keys_value = 387, + sym_security_key_provider = 388, + sym_security_key_provider_value = 389, + sym_send_env = 390, + sym_send_env_value = 391, + sym_server_alive_count_max = 392, + sym_server_alive_count_max_value = 393, + sym_server_alive_interval = 394, + sym_server_alive_interval_value = 395, + sym_session_type = 396, + sym_session_type_value = 397, + sym_set_env = 398, + sym_set_env_value = 399, + sym_stdin_null = 400, + sym_stdin_null_value = 401, + sym_stream_local_bind_mask = 402, + sym_stream_local_bind_mask_value = 403, + sym_stream_local_bind_unlink = 404, + sym_stream_local_bind_unlink_value = 405, + sym_strict_host_key_checking = 406, + sym_strict_host_key_checking_value = 407, + sym_syslog_facility = 408, + sym_syslog_facility_value = 409, + sym_tcp_keep_alive = 410, + sym_tcp_keep_alive_value = 411, + sym_keep_alive = 412, + sym_keep_alive_value = 413, + sym_tag = 414, + sym_tag_value = 415, + sym_tunnel = 416, + sym_tunnel_value = 417, + sym_tunnel_device = 418, + sym_tunnel_device_value = 419, + sym_update_host_keys = 420, + sym_update_host_keys_value = 421, + sym_use_keychain = 422, + sym_use_keychain_value = 423, + sym_use_roaming = 424, + sym_use_roaming_value = 425, + sym_user = 426, + sym_user_value = 427, + sym_user_known_hosts_file = 428, + sym_user_known_hosts_file_value = 429, + sym_verify_host_key_dns = 430, + sym_verify_host_key_dns_value = 431, + sym_visual_host_key = 432, + sym_visual_host_key_value = 433, + sym_xauth_location = 434, + sym_xauth_location_value = 435, + aux_sym_client_config_repeat1 = 436, + anon_alias_sym_batch_mode_value = 437, + anon_alias_sym_canonicalize_fallback_local_value = 438, + anon_alias_sym_challenge_response_authentication_value = 439, + anon_alias_sym_check_host_ip_value = 440, + anon_alias_sym_clear_all_forwardings_value = 441, + anon_alias_sym_compression_value = 442, + anon_alias_sym_connect_timeout_value = 443, + anon_alias_sym_connection_attempts_value = 444, + anon_alias_sym_control_persist_value = 445, + anon_alias_sym_enable_escape_commandline_value = 446, + anon_alias_sym_enable_ssh_keysign_value = 447, + anon_alias_sym_exit_on_forward_failure_value = 448, + anon_alias_sym_fork_after_authentication_value = 449, + anon_alias_sym_forward_x11_timeout_value = 450, + anon_alias_sym_forward_x11_trusted_value = 451, + anon_alias_sym_forward_x11_value = 452, + anon_alias_sym_gateway_ports_value = 453, + anon_alias_sym_gssapi_authentication_value = 454, + anon_alias_sym_gssapi_delegate_credentials_value = 455, + anon_alias_sym_gssapi_key_exchange_value = 456, + anon_alias_sym_gssapi_renewal_forces_rekey_value = 457, + anon_alias_sym_gssapi_trust_dns_value = 458, + anon_alias_sym_hash_known_hosts_value = 459, + anon_alias_sym_hostbased_authentication_value = 460, + anon_alias_sym_identities_only_value = 461, + anon_alias_sym_kbd_interactive_authentication_value = 462, + anon_alias_sym_keep_alive_value = 463, + anon_alias_sym_match_value = 464, + anon_alias_sym_no_host_authentication_for_localhost_value = 465, + anon_alias_sym_number_of_password_prompts_value = 466, + anon_alias_sym_password_authentication_value = 467, + anon_alias_sym_permit_local_command_value = 468, + anon_alias_sym_port_value = 469, + anon_alias_sym_proxy_use_fdpass_value = 470, + anon_alias_sym_required_rsa_size_value = 471, + anon_alias_sym_server_alive_count_max_value = 472, + anon_alias_sym_server_alive_interval_value = 473, + anon_alias_sym_stdin_null_value = 474, + anon_alias_sym_stream_local_bind_unlink_value = 475, + anon_alias_sym_tcp_keep_alive_value = 476, + anon_alias_sym_use_keychain_value = 477, + anon_alias_sym_use_roaming_value = 478, + anon_alias_sym_visual_host_key_value = 479, }; static const char * const ts_symbol_names[] = { @@ -639,6 +643,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_macs_token1] = "MACs", [aux_sym_no_host_authentication_for_localhost_token1] = "NoHostAuthenticationForLocalhost", [aux_sym_number_of_password_prompts_token1] = "NumberOfPasswordPrompts", + [aux_sym_obscure_keystroke_timing_token1] = "ObscureKeystrokeTiming", + [aux_sym_obscure_keystroke_timing_value_token1] = "obscure_keystroke_timing_value_token1", [aux_sym_password_authentication_token1] = "PasswordAuthentication", [aux_sym_permit_local_command_token1] = "PermitLocalCommand", [aux_sym_permit_remote_open_token1] = "PermitRemoteOpen", @@ -849,6 +855,8 @@ static const char * const ts_symbol_names[] = { [sym_no_host_authentication_for_localhost_value] = "no_host_authentication_for_localhost_value", [sym_number_of_password_prompts] = "number_of_password_prompts", [sym_number_of_password_prompts_value] = "number_of_password_prompts_value", + [sym_obscure_keystroke_timing] = "obscure_keystroke_timing", + [sym_obscure_keystroke_timing_value] = "obscure_keystroke_timing_value", [sym_password_authentication] = "password_authentication", [sym_password_authentication_value] = "password_authentication_value", [sym_permit_local_command] = "permit_local_command", @@ -1118,6 +1126,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_macs_token1] = aux_sym_macs_token1, [aux_sym_no_host_authentication_for_localhost_token1] = aux_sym_no_host_authentication_for_localhost_token1, [aux_sym_number_of_password_prompts_token1] = aux_sym_number_of_password_prompts_token1, + [aux_sym_obscure_keystroke_timing_token1] = aux_sym_obscure_keystroke_timing_token1, + [aux_sym_obscure_keystroke_timing_value_token1] = aux_sym_obscure_keystroke_timing_value_token1, [aux_sym_password_authentication_token1] = aux_sym_password_authentication_token1, [aux_sym_permit_local_command_token1] = aux_sym_permit_local_command_token1, [aux_sym_permit_remote_open_token1] = aux_sym_permit_remote_open_token1, @@ -1328,6 +1338,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_no_host_authentication_for_localhost_value] = sym_no_host_authentication_for_localhost_value, [sym_number_of_password_prompts] = sym_number_of_password_prompts, [sym_number_of_password_prompts_value] = sym_number_of_password_prompts_value, + [sym_obscure_keystroke_timing] = sym_obscure_keystroke_timing, + [sym_obscure_keystroke_timing_value] = sym_obscure_keystroke_timing_value, [sym_password_authentication] = sym_password_authentication, [sym_password_authentication_value] = sym_password_authentication_value, [sym_permit_local_command] = sym_permit_local_command, @@ -2005,6 +2017,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_obscure_keystroke_timing_token1] = { + .visible = true, + .named = false, + }, + [aux_sym_obscure_keystroke_timing_value_token1] = { + .visible = false, + .named = false, + }, [aux_sym_password_authentication_token1] = { .visible = true, .named = false, @@ -2845,6 +2865,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_obscure_keystroke_timing] = { + .visible = true, + .named = true, + }, + [sym_obscure_keystroke_timing_value] = { + .visible = true, + .named = true, + }, [sym_password_authentication] = { .visible = true, .named = true, @@ -4914,6 +4942,18 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1364] = 1364, [1365] = 1365, [1366] = 1366, + [1367] = 1367, + [1368] = 1368, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1377, + [1378] = 1378, }; static inline bool sym_time_format_character_set_1(int32_t c) { @@ -4937,258 +4977,259 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1484); - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1485); - if (lookahead == '1') ADVANCE(1637); - if (lookahead == '2') ADVANCE(1639); - if (lookahead == '=') ADVANCE(1497); - if (lookahead == 'A') ADVANCE(66); - if (lookahead == 'C') ADVANCE(104); - if (lookahead == 'D') ADVANCE(42); - if (lookahead == 'E') ADVANCE(851); - if (lookahead == 'L') ADVANCE(56); - if (lookahead == 'M') ADVANCE(105); - if (lookahead == 'R') ADVANCE(356); - if (lookahead == 'S') ADVANCE(357); - if (lookahead == 'T') ADVANCE(106); - if (lookahead == 'U') ADVANCE(63); - if (lookahead == 'a') ADVANCE(76); - if (lookahead == 'c') ADVANCE(96); - if (lookahead == 'd') ADVANCE(355); - if (lookahead == 'e') ADVANCE(78); - if (lookahead == 'l') ADVANCE(57); - if (lookahead == 'm') ADVANCE(72); - if (lookahead == 'r') ADVANCE(47); - if (lookahead == 's') ADVANCE(81); - if (lookahead == 't') ADVANCE(82); - if (lookahead == 'u') ADVANCE(854); + if (eof) ADVANCE(1517); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1518); + if (lookahead == '1') ADVANCE(1672); + if (lookahead == '2') ADVANCE(1674); + if (lookahead == '=') ADVANCE(1530); + if (lookahead == 'A') ADVANCE(68); + if (lookahead == 'C') ADVANCE(114); + if (lookahead == 'D') ADVANCE(43); + if (lookahead == 'E') ADVANCE(873); + if (lookahead == 'I') ADVANCE(347); + if (lookahead == 'L') ADVANCE(58); + if (lookahead == 'M') ADVANCE(115); + if (lookahead == 'R') ADVANCE(368); + if (lookahead == 'S') ADVANCE(369); + if (lookahead == 'T') ADVANCE(116); + if (lookahead == 'U') ADVANCE(65); + if (lookahead == 'a') ADVANCE(80); + if (lookahead == 'c') ADVANCE(103); + if (lookahead == 'd') ADVANCE(400); + if (lookahead == 'e') ADVANCE(82); + if (lookahead == 'i') ADVANCE(56); + if (lookahead == 'l') ADVANCE(59); + if (lookahead == 'm') ADVANCE(75); + if (lookahead == 'r') ADVANCE(48); + if (lookahead == 's') ADVANCE(85); + if (lookahead == 't') ADVANCE(86); + if (lookahead == 'u') ADVANCE(876); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(111); + lookahead == 'b') ADVANCE(121); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(108); + lookahead == 'f') ADVANCE(118); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(114); + lookahead == 'g') ADVANCE(124); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(115); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(334); + lookahead == 'h') ADVANCE(125); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(220); + lookahead == 'k') ADVANCE(230); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(942); + lookahead == 'n') ADVANCE(965); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(519); + lookahead == 'o') ADVANCE(234); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(119); + lookahead == 'p') ADVANCE(133); if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1387); + lookahead == 'q') ADVANCE(1417); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(399); + lookahead == 'v') ADVANCE(412); if (lookahead == 'X' || lookahead == 'x') ADVANCE(24); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(403); + lookahead == 'y') ADVANCE(418); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1519); END_STATE(); case 1: - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1485); - if (lookahead == '1') ADVANCE(1636); - if (lookahead == '2') ADVANCE(1638); - if (lookahead == '=') ADVANCE(1497); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1518); + if (lookahead == '1') ADVANCE(1671); + if (lookahead == '2') ADVANCE(1673); + if (lookahead == '=') ADVANCE(1530); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1404); + lookahead == 'a') ADVANCE(1435); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(161); + lookahead == 'f') ADVANCE(171); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(945); + lookahead == 'n') ADVANCE(968); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1098); + lookahead == 't') ADVANCE(1122); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(403); + lookahead == 'y') ADVANCE(418); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(1) END_STATE(); case 2: - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1485); - if (lookahead == '=') ADVANCE(1497); - if (lookahead == 'A') ADVANCE(67); - if (lookahead == 'D') ADVANCE(41); - if (lookahead == 'L') ADVANCE(59); - if (lookahead == 'U') ADVANCE(64); - if (lookahead == 'a') ADVANCE(233); - if (lookahead == 'u') ADVANCE(853); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1518); + if (lookahead == '=') ADVANCE(1530); + if (lookahead == 'A') ADVANCE(69); + if (lookahead == 'D') ADVANCE(42); + if (lookahead == 'L') ADVANCE(61); + if (lookahead == 'U') ADVANCE(66); + if (lookahead == 'a') ADVANCE(245); + if (lookahead == 'i') ADVANCE(98); + if (lookahead == 'u') ADVANCE(875); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1258); + lookahead == 'e') ADVANCE(1286); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(160); + lookahead == 'f') ADVANCE(170); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1020); + lookahead == 'h') ADVANCE(1043); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(945); + lookahead == 'n') ADVANCE(968); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(519); + lookahead == 'o') ADVANCE(534); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1019); + lookahead == 'p') ADVANCE(1041); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1098); + lookahead == 't') ADVANCE(1122); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(403); + lookahead == 'y') ADVANCE(418); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(2) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1494); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1527); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1548); - if (lookahead == '=') ADVANCE(1497); - if (lookahead == '^') ADVANCE(1482); - if (lookahead == 'n') ADVANCE(1552); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1581); + if (lookahead == '=') ADVANCE(1530); + if (lookahead == '^') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(1585); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1549); - if (lookahead != 0) ADVANCE(1548); + lookahead == ' ') ADVANCE(1582); + if (lookahead != 0) ADVANCE(1581); END_STATE(); case 4: - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1548); - if (lookahead == '^') ADVANCE(1482); - if (lookahead == 'n') ADVANCE(1552); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1581); + if (lookahead == '^') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(1585); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1550); - if (lookahead != 0) ADVANCE(1548); + lookahead == ' ') ADVANCE(1583); + if (lookahead != 0) ADVANCE(1581); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(1500); - if (lookahead == '#') ADVANCE(1492); - if (lookahead == '=') ADVANCE(1498); + if (lookahead == '"') ADVANCE(1533); + if (lookahead == '#') ADVANCE(1525); + if (lookahead == '=') ADVANCE(1531); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (lookahead != 0) ADVANCE(1492); + if (lookahead != 0) ADVANCE(1525); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(1500); - if (lookahead == '#') ADVANCE(1492); + if (lookahead == '"') ADVANCE(1533); + if (lookahead == '#') ADVANCE(1525); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (lookahead != 0) ADVANCE(1492); + if (lookahead != 0) ADVANCE(1525); END_STATE(); case 7: - if (lookahead == '#') ADVANCE(1485); - if (lookahead == '=') ADVANCE(1497); + if (lookahead == '#') ADVANCE(1518); + if (lookahead == '=') ADVANCE(1530); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1496); + lookahead == ' ') ADVANCE(1529); if (lookahead == '\n' || lookahead == '\r') SKIP(7) END_STATE(); case 8: - if (lookahead == '#') ADVANCE(1548); - if (lookahead == '^') ADVANCE(1482); - if (lookahead == 'n') ADVANCE(1552); + if (lookahead == '#') ADVANCE(1525); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1551); - if (lookahead != 0) ADVANCE(1548); + lookahead == ' ') SKIP(8) + if (lookahead != 0) ADVANCE(1525); END_STATE(); case 9: - if (lookahead == '#') ADVANCE(1492); + if (lookahead == '#') ADVANCE(1581); + if (lookahead == '^') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(1585); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(1492); + lookahead == ' ') ADVANCE(1584); + if (lookahead != 0) ADVANCE(1581); END_STATE(); case 10: - if (lookahead == '-') ADVANCE(1213); + if (lookahead == '-') ADVANCE(1240); END_STATE(); case 11: - if (lookahead == '-') ADVANCE(274); + if (lookahead == '-') ADVANCE(287); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(409); + lookahead == 'n') ADVANCE(423); END_STATE(); case 12: - if (lookahead == '-') ADVANCE(1068); + if (lookahead == '-') ADVANCE(1092); END_STATE(); case 13: - if (lookahead == '-') ADVANCE(1298); + if (lookahead == '-') ADVANCE(1325); END_STATE(); case 14: - if (lookahead == '-') ADVANCE(895); + if (lookahead == '-') ADVANCE(918); END_STATE(); case 15: - if (lookahead == '-') ADVANCE(1257); + if (lookahead == '-') ADVANCE(1285); END_STATE(); case 16: - if (lookahead == '-') ADVANCE(232); + if (lookahead == '-') ADVANCE(243); END_STATE(); case 17: - if (lookahead == '-') ADVANCE(304); + if (lookahead == '-') ADVANCE(317); END_STATE(); case 18: - if (lookahead == '-') ADVANCE(305); + if (lookahead == '-') ADVANCE(318); END_STATE(); case 19: - if (lookahead == '.') ADVANCE(258); + if (lookahead == '.') ADVANCE(272); END_STATE(); case 20: - if (lookahead == '.') ADVANCE(259); + if (lookahead == '.') ADVANCE(273); END_STATE(); case 21: - if (lookahead == '0') ADVANCE(1596); - if (lookahead == '1') ADVANCE(1597); - if (lookahead == '2') ADVANCE(1598); - if (lookahead == '3') ADVANCE(1599); - if (lookahead == '4') ADVANCE(1600); - if (lookahead == '5') ADVANCE(1601); - if (lookahead == '6') ADVANCE(1602); - if (lookahead == '7') ADVANCE(1603); + if (lookahead == '0') ADVANCE(1629); + if (lookahead == '1') ADVANCE(1630); + if (lookahead == '2') ADVANCE(1631); + if (lookahead == '3') ADVANCE(1632); + if (lookahead == '4') ADVANCE(1633); + if (lookahead == '5') ADVANCE(1634); + if (lookahead == '6') ADVANCE(1635); + if (lookahead == '7') ADVANCE(1636); END_STATE(); case 22: - if (lookahead == '0') ADVANCE(1673); - if (lookahead == '1') ADVANCE(1674); - if (lookahead == '2') ADVANCE(1675); - if (lookahead == '3') ADVANCE(1676); - if (lookahead == '4') ADVANCE(1677); - if (lookahead == '5') ADVANCE(1678); - if (lookahead == '6') ADVANCE(1679); - if (lookahead == '7') ADVANCE(1680); + if (lookahead == '0') ADVANCE(1708); + if (lookahead == '1') ADVANCE(1709); + if (lookahead == '2') ADVANCE(1710); + if (lookahead == '3') ADVANCE(1711); + if (lookahead == '4') ADVANCE(1712); + if (lookahead == '5') ADVANCE(1713); + if (lookahead == '6') ADVANCE(1714); + if (lookahead == '7') ADVANCE(1715); END_STATE(); case 23: - if (lookahead == '0') ADVANCE(1673); - if (lookahead == '1') ADVANCE(1674); - if (lookahead == '2') ADVANCE(1675); - if (lookahead == '3') ADVANCE(1676); - if (lookahead == '4') ADVANCE(1677); - if (lookahead == '5') ADVANCE(1678); - if (lookahead == '6') ADVANCE(1679); - if (lookahead == '7') ADVANCE(1680); + if (lookahead == '0') ADVANCE(1708); + if (lookahead == '1') ADVANCE(1709); + if (lookahead == '2') ADVANCE(1710); + if (lookahead == '3') ADVANCE(1711); + if (lookahead == '4') ADVANCE(1712); + if (lookahead == '5') ADVANCE(1713); + if (lookahead == '6') ADVANCE(1714); + if (lookahead == '7') ADVANCE(1715); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(951); + lookahead == 'c') ADVANCE(974); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(965); + lookahead == 'f') ADVANCE(989); END_STATE(); case 24: if (lookahead == '1') ADVANCE(26); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1392); + lookahead == 'a') ADVANCE(1422); END_STATE(); case 25: if (lookahead == '1') ADVANCE(27); @@ -5200,27 +5241,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '1') ADVANCE(17); END_STATE(); case 27: - if (lookahead == '1') ADVANCE(1584); - if (lookahead == '2') ADVANCE(1585); - if (lookahead == '3') ADVANCE(1586); + if (lookahead == '1') ADVANCE(1617); + if (lookahead == '2') ADVANCE(1618); + if (lookahead == '3') ADVANCE(1619); END_STATE(); case 28: - if (lookahead == '1') ADVANCE(1587); - if (lookahead == '2') ADVANCE(1588); - if (lookahead == '3') ADVANCE(1589); + if (lookahead == '1') ADVANCE(1620); + if (lookahead == '2') ADVANCE(1621); + if (lookahead == '3') ADVANCE(1622); END_STATE(); case 29: - if (lookahead == '1') ADVANCE(1590); - if (lookahead == '2') ADVANCE(1591); - if (lookahead == '3') ADVANCE(1592); + if (lookahead == '1') ADVANCE(1623); + if (lookahead == '2') ADVANCE(1624); + if (lookahead == '3') ADVANCE(1625); END_STATE(); case 30: - if (lookahead == '1') ADVANCE(1593); - if (lookahead == '2') ADVANCE(1594); - if (lookahead == '3') ADVANCE(1595); + if (lookahead == '1') ADVANCE(1626); + if (lookahead == '2') ADVANCE(1627); + if (lookahead == '3') ADVANCE(1628); END_STATE(); case 31: - if (lookahead == '1') ADVANCE(1559); + if (lookahead == '1') ADVANCE(1592); END_STATE(); case 32: if (lookahead == '1') ADVANCE(34); @@ -5229,2086 +5270,2091 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '1') ADVANCE(31); END_STATE(); case 34: - if (lookahead == '1') ADVANCE(1075); + if (lookahead == '1') ADVANCE(1099); END_STATE(); case 35: if (lookahead == '2') ADVANCE(37); END_STATE(); case 36: - if (lookahead == '5') ADVANCE(1555); + if (lookahead == '5') ADVANCE(1588); END_STATE(); case 37: if (lookahead == '5') ADVANCE(38); END_STATE(); case 38: - if (lookahead == '6') ADVANCE(1556); + if (lookahead == '6') ADVANCE(1589); END_STATE(); case 39: - if (lookahead == '@') ADVANCE(1025); + if (lookahead == ':') ADVANCE(1514); END_STATE(); case 40: - if (lookahead == '@') ADVANCE(1037); + if (lookahead == '@') ADVANCE(1048); END_STATE(); case 41: - if (lookahead == 'A') ADVANCE(48); + if (lookahead == '@') ADVANCE(1061); END_STATE(); case 42: - if (lookahead == 'A') ADVANCE(48); + if (lookahead == 'A') ADVANCE(49); + END_STATE(); + case 43: + if (lookahead == 'A') ADVANCE(49); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(221); + lookahead == 'e') ADVANCE(231); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1103); + lookahead == 'i') ADVANCE(1127); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(860); - END_STATE(); - case 43: - if (lookahead == 'A') ADVANCE(52); - if (lookahead == 'a') ADVANCE(723); + lookahead == 'y') ADVANCE(882); END_STATE(); case 44: if (lookahead == 'A') ADVANCE(53); + if (lookahead == 'a') ADVANCE(744); END_STATE(); case 45: - if (lookahead == 'C') ADVANCE(43); - if (lookahead == 'c') ADVANCE(122); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(745); + if (lookahead == 'A') ADVANCE(54); END_STATE(); case 46: if (lookahead == 'C') ADVANCE(44); + if (lookahead == 'c') ADVANCE(131); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(766); END_STATE(); case 47: - if (lookahead == 'E') ADVANCE(702); - if (lookahead == 'e') ADVANCE(88); + if (lookahead == 'C') ADVANCE(45); END_STATE(); case 48: - if (lookahead == 'E') ADVANCE(54); + if (lookahead == 'E') ADVANCE(721); + if (lookahead == 'e') ADVANCE(92); END_STATE(); case 49: - if (lookahead == 'E') ADVANCE(61); - if (lookahead == 'e') ADVANCE(707); + if (lookahead == 'E') ADVANCE(55); END_STATE(); case 50: - if (lookahead == 'E') ADVANCE(62); + if (lookahead == 'E') ADVANCE(63); + if (lookahead == 'e') ADVANCE(725); END_STATE(); case 51: - if (lookahead == 'H') ADVANCE(1672); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1539); + if (lookahead == 'E') ADVANCE(64); END_STATE(); case 52: - if (lookahead == 'L') ADVANCE(23); - if (lookahead == 'l') ADVANCE(253); + if (lookahead == 'H') ADVANCE(1707); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1572); END_STATE(); case 53: - if (lookahead == 'L') ADVANCE(22); + if (lookahead == 'L') ADVANCE(23); + if (lookahead == 'l') ADVANCE(264); END_STATE(); case 54: - if (lookahead == 'M') ADVANCE(58); + if (lookahead == 'L') ADVANCE(22); END_STATE(); case 55: - if (lookahead == 'N') ADVANCE(1670); + if (lookahead == 'M') ADVANCE(60); END_STATE(); case 56: - if (lookahead == 'O') ADVANCE(45); - if (lookahead == 'o') ADVANCE(244); + if (lookahead == 'N') ADVANCE(247); + if (lookahead == 'n') ADVANCE(105); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(414); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(883); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1112); END_STATE(); case 57: - if (lookahead == 'O') ADVANCE(244); - if (lookahead == 'e') ADVANCE(1605); - if (lookahead == 'o') ADVANCE(101); + if (lookahead == 'N') ADVANCE(1705); END_STATE(); case 58: - if (lookahead == 'O') ADVANCE(55); + if (lookahead == 'O') ADVANCE(46); + if (lookahead == 'o') ADVANCE(256); END_STATE(); case 59: - if (lookahead == 'O') ADVANCE(46); + if (lookahead == 'O') ADVANCE(256); + if (lookahead == 'e') ADVANCE(1638); + if (lookahead == 'o') ADVANCE(111); END_STATE(); case 60: - if (lookahead == 'O') ADVANCE(591); - if (lookahead == 'o') ADVANCE(92); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(790); + if (lookahead == 'O') ADVANCE(57); END_STATE(); case 61: - if (lookahead == 'R') ADVANCE(1692); - if (lookahead == 'r') ADVANCE(1692); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(396); + if (lookahead == 'O') ADVANCE(47); END_STATE(); case 62: - if (lookahead == 'R') ADVANCE(1671); + if (lookahead == 'O') ADVANCE(607); + if (lookahead == 'o') ADVANCE(97); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(811); END_STATE(); case 63: - if (lookahead == 'S') ADVANCE(49); - if (lookahead == 's') ADVANCE(388); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(223); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(324); + if (lookahead == 'R') ADVANCE(1726); + if (lookahead == 'r') ADVANCE(1726); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(409); END_STATE(); case 64: - if (lookahead == 'S') ADVANCE(50); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(223); + if (lookahead == 'R') ADVANCE(1706); END_STATE(); case 65: - if (lookahead == 'T') ADVANCE(51); - if (lookahead == 't') ADVANCE(943); + if (lookahead == 'S') ADVANCE(50); + if (lookahead == 's') ADVANCE(402); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(236); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(337); END_STATE(); case 66: - if (lookahead == 'U') ADVANCE(65); - if (lookahead == 'u') ADVANCE(1279); + if (lookahead == 'S') ADVANCE(51); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(236); + END_STATE(); + case 67: + if (lookahead == 'T') ADVANCE(52); + if (lookahead == 't') ADVANCE(966); + END_STATE(); + case 68: + if (lookahead == 'U') ADVANCE(67); + if (lookahead == 'u') ADVANCE(1307); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(239); + lookahead == 'c') ADVANCE(251); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(307); + lookahead == 'd') ADVANCE(320); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(400); + lookahead == 'g') ADVANCE(413); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1432); + lookahead == 'l') ADVANCE(1463); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1451); + lookahead == 'n') ADVANCE(1482); if (lookahead == 'S' || - lookahead == 's') ADVANCE(697); + lookahead == 's') ADVANCE(716); END_STATE(); - case 67: - if (lookahead == 'U') ADVANCE(65); - if (lookahead == 'u') ADVANCE(1279); + case 69: + if (lookahead == 'U') ADVANCE(67); + if (lookahead == 'u') ADVANCE(1307); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(239); + lookahead == 'c') ADVANCE(251); if (lookahead == 'S' || - lookahead == 's') ADVANCE(697); - END_STATE(); - case 68: - if (lookahead == 'a') ADVANCE(35); - END_STATE(); - case 69: - if (lookahead == 'a') ADVANCE(71); + lookahead == 's') ADVANCE(716); END_STATE(); case 70: - if (lookahead == 'a') ADVANCE(102); + if (lookahead == 'a') ADVANCE(35); END_STATE(); case 71: - if (lookahead == 'b') ADVANCE(87); + if (lookahead == 'a') ADVANCE(74); END_STATE(); case 72: - if (lookahead == 'd') ADVANCE(36); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(247); + if (lookahead == 'a') ADVANCE(112); END_STATE(); case 73: - if (lookahead == 'd') ADVANCE(74); + if (lookahead == 'a') ADVANCE(93); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(89); + if (lookahead == 'b') ADVANCE(91); END_STATE(); case 75: - if (lookahead == 'e') ADVANCE(1547); + if (lookahead == 'd') ADVANCE(36); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(259); END_STATE(); case 76: + if (lookahead == 'd') ADVANCE(77); + END_STATE(); + case 77: + if (lookahead == 'e') ADVANCE(95); + END_STATE(); + case 78: + if (lookahead == 'e') ADVANCE(1580); + END_STATE(); + case 79: + if (lookahead == 'e') ADVANCE(102); + END_STATE(); + case 80: if (lookahead == 'f') ADVANCE(25); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(239); + lookahead == 'c') ADVANCE(251); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(307); + lookahead == 'd') ADVANCE(320); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(400); + lookahead == 'g') ADVANCE(413); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1432); + lookahead == 'l') ADVANCE(1463); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1451); + lookahead == 'n') ADVANCE(1482); if (lookahead == 'S' || - lookahead == 's') ADVANCE(697); + lookahead == 's') ADVANCE(716); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1279); + lookahead == 'u') ADVANCE(1307); END_STATE(); - case 77: + case 81: if (lookahead == 'f') ADVANCE(25); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(307); + lookahead == 'd') ADVANCE(320); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(400); + lookahead == 'g') ADVANCE(413); END_STATE(); - case 78: - if (lookahead == 'f') ADVANCE(1604); + case 82: + if (lookahead == 'f') ADVANCE(1637); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(118); + lookahead == 'n') ADVANCE(128); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1101); + lookahead == 'r') ADVANCE(1125); if (lookahead == 'S' || - lookahead == 's') ADVANCE(242); + lookahead == 's') ADVANCE(254); if (lookahead == 'T' || - lookahead == 't') ADVANCE(566); + lookahead == 't') ADVANCE(583); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(634); + lookahead == 'x') ADVANCE(652); END_STATE(); - case 79: - if (lookahead == 'f') ADVANCE(1604); + case 83: + if (lookahead == 'f') ADVANCE(1637); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(118); + lookahead == 'n') ADVANCE(128); if (lookahead == 'S' || - lookahead == 's') ADVANCE(242); + lookahead == 's') ADVANCE(254); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(634); + lookahead == 'x') ADVANCE(652); END_STATE(); - case 80: - if (lookahead == 'g') ADVANCE(84); + case 84: + if (lookahead == 'g') ADVANCE(88); END_STATE(); - case 81: - if (lookahead == 'h') ADVANCE(68); + case 85: + if (lookahead == 'h') ADVANCE(70); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); + lookahead == 'e') ADVANCE(252); if (lookahead == 'T' || - lookahead == 't') ADVANCE(323); + lookahead == 't') ADVANCE(336); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(224); + lookahead == 'u') ADVANCE(235); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1163); + lookahead == 'y') ADVANCE(1220); END_STATE(); - case 82: - if (lookahead == 'h') ADVANCE(95); + case 86: + if (lookahead == 'h') ADVANCE(101); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(539); + lookahead == 'a') ADVANCE(555); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1059); + lookahead == 'c') ADVANCE(1083); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1394); + lookahead == 'r') ADVANCE(1424); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(833); + lookahead == 'u') ADVANCE(855); END_STATE(); - case 83: - if (lookahead == 'h') ADVANCE(95); + case 87: + if (lookahead == 'h') ADVANCE(101); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(539); + lookahead == 'a') ADVANCE(555); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1059); + lookahead == 'c') ADVANCE(1083); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(833); - END_STATE(); - case 84: - if (lookahead == 'h') ADVANCE(94); - END_STATE(); - case 85: - if (lookahead == 'i') ADVANCE(98); - END_STATE(); - case 86: - if (lookahead == 'i') ADVANCE(69); - END_STATE(); - case 87: - if (lookahead == 'i') ADVANCE(90); + lookahead == 'u') ADVANCE(855); END_STATE(); case 88: - if (lookahead == 'l') ADVANCE(86); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(390); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(991); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1388); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(998); + if (lookahead == 'h') ADVANCE(100); END_STATE(); case 89: - if (lookahead == 'l') ADVANCE(70); + if (lookahead == 'i') ADVANCE(107); END_STATE(); case 90: - if (lookahead == 'l') ADVANCE(85); + if (lookahead == 'i') ADVANCE(71); END_STATE(); case 91: - if (lookahead == 'n') ADVANCE(75); + if (lookahead == 'i') ADVANCE(94); END_STATE(); case 92: - if (lookahead == 'n') ADVANCE(75); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1017); + if (lookahead == 'l') ADVANCE(90); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(403); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1014); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1418); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1021); END_STATE(); case 93: - if (lookahead == 'o') ADVANCE(99); + if (lookahead == 'l') ADVANCE(39); END_STATE(); case 94: - if (lookahead == 'p') ADVANCE(100); + if (lookahead == 'l') ADVANCE(89); END_STATE(); case 95: - if (lookahead == 'r') ADVANCE(93); + if (lookahead == 'l') ADVANCE(72); END_STATE(); case 96: - if (lookahead == 's') ADVANCE(21); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(858); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1100); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(109); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1084); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(392); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(789); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 97: - if (lookahead == 't') ADVANCE(1607); + if (lookahead == 'n') ADVANCE(78); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1040); END_STATE(); case 98: - if (lookahead == 't') ADVANCE(103); + if (lookahead == 'n') ADVANCE(104); END_STATE(); case 99: - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 'o') ADVANCE(108); END_STATE(); case 100: - if (lookahead == 'u') ADVANCE(97); + if (lookahead == 'p') ADVANCE(109); END_STATE(); case 101: - if (lookahead == 'w') ADVANCE(73); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(122); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(745); + if (lookahead == 'r') ADVANCE(99); END_STATE(); case 102: - if (lookahead == 'y') ADVANCE(1606); + if (lookahead == 'r') ADVANCE(110); END_STATE(); case 103: - if (lookahead == 'y') ADVANCE(1608); - END_STATE(); - case 104: + if (lookahead == 's') ADVANCE(21); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(858); + lookahead == 'a') ADVANCE(880); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1100); + lookahead == 'e') ADVANCE(1124); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(109); + lookahead == 'h') ADVANCE(119); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1084); + lookahead == 'i') ADVANCE(1108); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(392); + lookahead == 'l') ADVANCE(405); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(789); + lookahead == 'o') ADVANCE(810); + END_STATE(); + case 104: + if (lookahead == 't') ADVANCE(79); END_STATE(); case 105: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(247); + if (lookahead == 't') ADVANCE(79); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(759); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1287); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(967); END_STATE(); case 106: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(539); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1059); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1394); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(833); + if (lookahead == 't') ADVANCE(1640); END_STATE(); case 107: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(539); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1059); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(833); + if (lookahead == 't') ADVANCE(113); END_STATE(); case 108: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(741); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(855); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1089); + if (lookahead == 'u') ADVANCE(84); END_STATE(); case 109: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(735); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(236); + if (lookahead == 'u') ADVANCE(106); END_STATE(); case 110: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(267); + if (lookahead == 'v') ADVANCE(73); END_STATE(); case 111: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1284); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(859); + if (lookahead == 'w') ADVANCE(76); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(131); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(766); END_STATE(); case 112: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1465); + if (lookahead == 'y') ADVANCE(1639); END_STATE(); case 113: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1448); + if (lookahead == 'y') ADVANCE(1641); END_STATE(); case 114: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1288); + lookahead == 'a') ADVANCE(880); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1124); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(119); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1108); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(948); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1203); + lookahead == 'l') ADVANCE(405); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(810); END_STATE(); case 115: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1193); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1196); + lookahead == 'a') ADVANCE(259); END_STATE(); case 116: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(820); + lookahead == 'a') ADVANCE(555); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1083); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1424); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(855); END_STATE(); case 117: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1447); + lookahead == 'a') ADVANCE(555); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1083); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(855); END_STATE(); case 118: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(222); + lookahead == 'a') ADVANCE(764); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(877); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1113); END_STATE(); case 119: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1206); + lookahead == 'a') ADVANCE(756); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1099); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(249); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(640); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(389); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(230); + lookahead == 'e') ADVANCE(248); END_STATE(); case 120: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1206); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1099); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(249); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1104); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(389); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(230); + lookahead == 'a') ADVANCE(281); END_STATE(); case 121: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(799); + lookahead == 'a') ADVANCE(1312); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(881); END_STATE(); case 122: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(723); + lookahead == 'a') ADVANCE(1497); END_STATE(); case 123: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(536); + lookahead == 'a') ADVANCE(1479); END_STATE(); case 124: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(325); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(908); + lookahead == 'a') ADVANCE(1316); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(971); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1230); END_STATE(); case 125: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1073); + lookahead == 'a') ADVANCE(1218); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1223); END_STATE(); case 126: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(724); + lookahead == 'a') ADVANCE(842); END_STATE(); case 127: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1109); + lookahead == 'a') ADVANCE(1478); END_STATE(); case 128: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1061); + lookahead == 'a') ADVANCE(232); END_STATE(); case 129: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(736); + lookahead == 'a') ADVANCE(820); END_STATE(); case 130: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1393); + lookahead == 'a') ADVANCE(552); END_STATE(); case 131: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1461); + lookahead == 'a') ADVANCE(744); END_STATE(); case 132: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(785); + lookahead == 'a') ADVANCE(1097); END_STATE(); case 133: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(815); + lookahead == 'a') ADVANCE(1233); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1123); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(263); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(658); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(401); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(241); END_STATE(); case 134: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(774); + lookahead == 'a') ADVANCE(1233); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1123); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(263); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1128); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(401); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(241); END_STATE(); case 135: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(251); + lookahead == 'a') ADVANCE(745); END_STATE(); case 136: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(747); + lookahead == 'a') ADVANCE(338); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(931); END_STATE(); case 137: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1105); + lookahead == 'a') ADVANCE(1133); END_STATE(); case 138: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(245); + lookahead == 'a') ADVANCE(1085); END_STATE(); case 139: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(729); + lookahead == 'a') ADVANCE(757); END_STATE(); case 140: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1290); + lookahead == 'a') ADVANCE(1423); END_STATE(); case 141: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(731); + lookahead == 'a') ADVANCE(1492); END_STATE(); case 142: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(737); + lookahead == 'a') ADVANCE(806); END_STATE(); case 143: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1093); + lookahead == 'a') ADVANCE(835); END_STATE(); case 144: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(637); + lookahead == 'a') ADVANCE(795); END_STATE(); case 145: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(784); + lookahead == 'a') ADVANCE(768); END_STATE(); case 146: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1108); + lookahead == 'a') ADVANCE(266); END_STATE(); case 147: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1287); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1114); + lookahead == 'a') ADVANCE(1129); END_STATE(); case 148: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1110); + lookahead == 'a') ADVANCE(257); END_STATE(); case 149: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1112); + lookahead == 'a') ADVANCE(750); END_STATE(); case 150: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1212); + lookahead == 'a') ADVANCE(1375); END_STATE(); case 151: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(732); + lookahead == 'a') ADVANCE(752); END_STATE(); case 152: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1170); + lookahead == 'a') ADVANCE(758); END_STATE(); case 153: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1113); + lookahead == 'a') ADVANCE(1117); END_STATE(); case 154: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(733); + lookahead == 'a') ADVANCE(653); END_STATE(); case 155: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1143); + lookahead == 'a') ADVANCE(805); END_STATE(); case 156: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(754); + lookahead == 'a') ADVANCE(1132); END_STATE(); case 157: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(734); + lookahead == 'a') ADVANCE(1315); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1139); END_STATE(); case 158: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1342); + lookahead == 'a') ADVANCE(1135); END_STATE(); case 159: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1204); + lookahead == 'a') ADVANCE(1136); END_STATE(); case 160: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(740); + lookahead == 'a') ADVANCE(1239); END_STATE(); case 161: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(740); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1142); + lookahead == 'a') ADVANCE(753); END_STATE(); case 162: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1200); + lookahead == 'a') ADVANCE(1195); END_STATE(); case 163: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(551); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(347); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(33); + lookahead == 'a') ADVANCE(1137); END_STATE(); case 164: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(793); + lookahead == 'a') ADVANCE(754); END_STATE(); case 165: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1398); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(759); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(460); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(366); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(479); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(436); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1106); + lookahead == 'a') ADVANCE(1167); END_STATE(); case 166: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(905); + lookahead == 'a') ADVANCE(775); END_STATE(); case 167: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(743); + lookahead == 'a') ADVANCE(755); END_STATE(); case 168: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(811); + lookahead == 'a') ADVANCE(1371); END_STATE(); case 169: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1305); + lookahead == 'a') ADVANCE(1231); END_STATE(); case 170: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(871); + lookahead == 'a') ADVANCE(763); END_STATE(); case 171: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(808); + lookahead == 'a') ADVANCE(763); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1166); END_STATE(); case 172: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1222); + lookahead == 'a') ADVANCE(1227); END_STATE(); case 173: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(752); + lookahead == 'a') ADVANCE(568); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(360); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(33); END_STATE(); case 174: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(266); + lookahead == 'a') ADVANCE(814); END_STATE(); case 175: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(810); + lookahead == 'a') ADVANCE(1428); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(780); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(474); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(378); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(493); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(449); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1130); END_STATE(); case 176: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(873); + lookahead == 'a') ADVANCE(928); END_STATE(); case 177: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(875); + lookahead == 'a') ADVANCE(762); END_STATE(); case 178: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1348); + lookahead == 'a') ADVANCE(831); END_STATE(); case 179: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(621); + lookahead == 'a') ADVANCE(1332); END_STATE(); case 180: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1220); + lookahead == 'a') ADVANCE(894); END_STATE(); case 181: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1314); + lookahead == 'a') ADVANCE(829); END_STATE(); case 182: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(880); + lookahead == 'a') ADVANCE(1250); END_STATE(); case 183: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(641); + lookahead == 'a') ADVANCE(773); END_STATE(); case 184: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(881); + lookahead == 'a') ADVANCE(280); END_STATE(); case 185: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(882); + lookahead == 'a') ADVANCE(896); END_STATE(); case 186: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1332); + lookahead == 'a') ADVANCE(637); END_STATE(); case 187: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1076); + lookahead == 'a') ADVANCE(1378); END_STATE(); case 188: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(278); + lookahead == 'a') ADVANCE(898); END_STATE(); case 189: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(766); + lookahead == 'a') ADVANCE(659); END_STATE(); case 190: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1249); + lookahead == 'a') ADVANCE(1247); END_STATE(); case 191: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(767); + lookahead == 'a') ADVANCE(1340); END_STATE(); case 192: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(770); + lookahead == 'a') ADVANCE(903); END_STATE(); case 193: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(283); + lookahead == 'a') ADVANCE(904); END_STATE(); case 194: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(823); + lookahead == 'a') ADVANCE(905); END_STATE(); case 195: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1246); + lookahead == 'a') ADVANCE(1361); END_STATE(); case 196: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(776); + lookahead == 'a') ADVANCE(1100); END_STATE(); case 197: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(552); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(647); + lookahead == 'a') ADVANCE(291); END_STATE(); case 198: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(554); + lookahead == 'a') ADVANCE(787); END_STATE(); case 199: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1356); + lookahead == 'a') ADVANCE(1277); END_STATE(); case 200: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1357); + lookahead == 'a') ADVANCE(788); END_STATE(); case 201: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1358); + lookahead == 'a') ADVANCE(837); END_STATE(); case 202: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1359); + lookahead == 'a') ADVANCE(791); END_STATE(); case 203: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1360); + lookahead == 'a') ADVANCE(296); END_STATE(); case 204: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1361); + lookahead == 'a') ADVANCE(845); END_STATE(); case 205: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1362); + lookahead == 'a') ADVANCE(1273); END_STATE(); case 206: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1363); + lookahead == 'a') ADVANCE(797); END_STATE(); case 207: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1364); + lookahead == 'a') ADVANCE(569); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(665); END_STATE(); case 208: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(778); + lookahead == 'a') ADVANCE(571); END_STATE(); case 209: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(777); + lookahead == 'a') ADVANCE(1386); END_STATE(); case 210: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(780); + lookahead == 'a') ADVANCE(1387); END_STATE(); case 211: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(782); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(428); + lookahead == 'a') ADVANCE(1388); END_STATE(); case 212: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(783); + lookahead == 'a') ADVANCE(1389); END_STATE(); case 213: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(832); + lookahead == 'a') ADVANCE(1390); END_STATE(); case 214: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1411); + lookahead == 'a') ADVANCE(1391); END_STATE(); case 215: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1412); + lookahead == 'a') ADVANCE(1392); END_STATE(); case 216: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1413); + lookahead == 'a') ADVANCE(1393); END_STATE(); case 217: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1414); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(496); + lookahead == 'a') ADVANCE(1394); END_STATE(); case 218: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1415); + lookahead == 'a') ADVANCE(799); END_STATE(); case 219: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1416); + lookahead == 'a') ADVANCE(798); END_STATE(); case 220: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(336); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(394); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(947); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(801); END_STATE(); case 221: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1389); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(130); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(803); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(440); END_STATE(); case 222: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(751); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(804); END_STATE(); case 223: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(953); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(854); END_STATE(); case 224: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1233); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1442); END_STATE(); case 225: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(996); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(520); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1443); END_STATE(); case 226: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(132); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1444); END_STATE(); case 227: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(469); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1445); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(512); END_STATE(); case 228: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(656); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1446); END_STATE(); case 229: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(138); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1447); END_STATE(); case 230: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(709); + lookahead == 'b') ADVANCE(349); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(407); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(970); END_STATE(); case 231: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1007); + lookahead == 'b') ADVANCE(1419); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(140); END_STATE(); case 232: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1021); + lookahead == 'b') ADVANCE(772); END_STATE(); case 233: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(239); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(697); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1279); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1226); END_STATE(); case 234: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(738); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1226); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(535); END_STATE(); case 235: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(738); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1260); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(944); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1261); END_STATE(); case 236: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(701); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(978); END_STATE(); case 237: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(560); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(142); END_STATE(); case 238: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(565); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(482); END_STATE(); case 239: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(397); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(675); END_STATE(); case 240: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1395); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(340); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1419); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1198); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(408); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(148); END_STATE(); case 241: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(717); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(727); END_STATE(); case 242: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(125); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1019); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(536); END_STATE(); case 243: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(576); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1044); END_STATE(); case 244: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(122); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(745); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(1030); END_STATE(); case 245: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(721); + lookahead == 'c') ADVANCE(251); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(716); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1307); END_STATE(); case 246: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(569); + lookahead == 'c') ADVANCE(759); END_STATE(); case 247: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1165); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(237); + lookahead == 'c') ADVANCE(759); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1287); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(967); END_STATE(); case 248: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1281); + lookahead == 'c') ADVANCE(720); END_STATE(); case 249: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1194); + lookahead == 'c') ADVANCE(577); END_STATE(); case 250: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1347); + lookahead == 'c') ADVANCE(582); END_STATE(); case 251: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(623); + lookahead == 'c') ADVANCE(410); END_STATE(); case 252: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1264); + lookahead == 'c') ADVANCE(1425); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(353); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1450); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1224); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(421); END_STATE(); case 253: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(951); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(965); + lookahead == 'c') ADVANCE(737); END_STATE(); case 254: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(362); + lookahead == 'c') ADVANCE(132); END_STATE(); case 255: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(362); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(123); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(137); + lookahead == 'c') ADVANCE(592); END_STATE(); case 256: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(139); + lookahead == 'c') ADVANCE(131); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(766); END_STATE(); case 257: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(178); + lookahead == 'c') ADVANCE(742); END_STATE(); case 258: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(957); + lookahead == 'c') ADVANCE(586); END_STATE(); case 259: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(960); + lookahead == 'c') ADVANCE(1190); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(249); END_STATE(); case 260: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(142); + lookahead == 'c') ADVANCE(1434); END_STATE(); case 261: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(145); + lookahead == 'c') ADVANCE(1309); END_STATE(); case 262: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(151); + lookahead == 'c') ADVANCE(1377); END_STATE(); case 263: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(417); + lookahead == 'c') ADVANCE(1219); END_STATE(); case 264: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(157); + lookahead == 'c') ADVANCE(974); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(989); END_STATE(); case 265: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(376); + lookahead == 'c') ADVANCE(1292); END_STATE(); case 266: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(378); + lookahead == 'c') ADVANCE(639); END_STATE(); case 267: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(263); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1378); + lookahead == 'c') ADVANCE(374); END_STATE(); case 268: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1064); + lookahead == 'c') ADVANCE(374); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(130); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(147); END_STATE(); case 269: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(963); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(922); + lookahead == 'c') ADVANCE(149); END_STATE(); case 270: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(967); + lookahead == 'c') ADVANCE(986); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(945); END_STATE(); case 271: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(581); + lookahead == 'c') ADVANCE(187); END_STATE(); case 272: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1066); + lookahead == 'c') ADVANCE(980); END_STATE(); case 273: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(571); + lookahead == 'c') ADVANCE(982); END_STATE(); case 274: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(995); + lookahead == 'c') ADVANCE(152); END_STATE(); case 275: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(897); + lookahead == 'c') ADVANCE(155); END_STATE(); case 276: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(452); + lookahead == 'c') ADVANCE(161); END_STATE(); case 277: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(453); + lookahead == 'c') ADVANCE(167); END_STATE(); case 278: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1353); + lookahead == 'c') ADVANCE(430); END_STATE(); case 279: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1125); + lookahead == 'c') ADVANCE(389); END_STATE(); case 280: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(187); + lookahead == 'c') ADVANCE(390); END_STATE(); case 281: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(181); + lookahead == 'c') ADVANCE(278); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1408); END_STATE(); case 282: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(489); + lookahead == 'c') ADVANCE(1088); END_STATE(); case 283: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(282); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1381); + lookahead == 'c') ADVANCE(990); END_STATE(); case 284: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(196); + lookahead == 'c') ADVANCE(597); END_STATE(); case 285: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1352); + lookahead == 'c') ADVANCE(1091); END_STATE(); case 286: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1354); + lookahead == 'c') ADVANCE(588); END_STATE(); case 287: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1355); + lookahead == 'c') ADVANCE(1018); END_STATE(); case 288: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(537); + lookahead == 'c') ADVANCE(920); END_STATE(); case 289: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1042); - if (lookahead == 'J' || - lookahead == 'j') ADVANCE(1391); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1224); + lookahead == 'c') ADVANCE(465); END_STATE(); case 290: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(199); + lookahead == 'c') ADVANCE(466); END_STATE(); case 291: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(209); + lookahead == 'c') ADVANCE(1383); END_STATE(); case 292: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1047); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1038); + lookahead == 'c') ADVANCE(1150); END_STATE(); case 293: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(200); + lookahead == 'c') ADVANCE(196); END_STATE(); case 294: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1049); + lookahead == 'c') ADVANCE(191); END_STATE(); case 295: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(201); + lookahead == 'c') ADVANCE(505); END_STATE(); case 296: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1050); + lookahead == 'c') ADVANCE(295); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1411); END_STATE(); case 297: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(202); + lookahead == 'c') ADVANCE(206); END_STATE(); case 298: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1051); + lookahead == 'c') ADVANCE(1382); END_STATE(); case 299: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(203); + lookahead == 'c') ADVANCE(1384); END_STATE(); case 300: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(204); + lookahead == 'c') ADVANCE(1385); END_STATE(); case 301: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(205); + lookahead == 'c') ADVANCE(553); END_STATE(); case 302: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(206); + lookahead == 'c') ADVANCE(1066); + if (lookahead == 'J' || + lookahead == 'j') ADVANCE(1421); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1252); END_STATE(); case 303: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(207); + lookahead == 'c') ADVANCE(209); END_STATE(); case 304: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1052); + lookahead == 'c') ADVANCE(219); END_STATE(); case 305: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(1053); + lookahead == 'c') ADVANCE(1071); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1062); END_STATE(); case 306: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(307); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(400); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(210); END_STATE(); case 307: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(704); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1073); END_STATE(); case 308: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1646); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(211); END_STATE(); case 309: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(163); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1074); END_STATE(); case 310: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1613); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(212); END_STATE(); case 311: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1614); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1075); END_STATE(); case 312: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1640); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(213); END_STATE(); case 313: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1649); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(214); END_STATE(); case 314: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1650); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(215); END_STATE(); case 315: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1543); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(216); END_STATE(); case 316: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(211); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(217); END_STATE(); case 317: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(801); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1076); END_STATE(); case 318: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1561); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(1077); END_STATE(); case 319: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1612); + lookahead == 'd') ADVANCE(320); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(413); END_STATE(); case 320: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1630); + lookahead == 'd') ADVANCE(723); END_STATE(); case 321: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1647); + lookahead == 'd') ADVANCE(1681); END_STATE(); case 322: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(124); + lookahead == 'd') ADVANCE(173); END_STATE(); case 323: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(612); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(418); + lookahead == 'd') ADVANCE(1646); END_STATE(); case 324: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(169); + lookahead == 'd') ADVANCE(1647); END_STATE(); case 325: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(348); + lookahead == 'd') ADVANCE(1675); END_STATE(); case 326: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(275); + lookahead == 'd') ADVANCE(1684); END_STATE(); case 327: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1130); + lookahead == 'd') ADVANCE(1685); END_STATE(); case 328: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(888); + lookahead == 'd') ADVANCE(1576); END_STATE(); case 329: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(994); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1480); + lookahead == 'd') ADVANCE(221); END_STATE(); case 330: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(214); + lookahead == 'd') ADVANCE(822); END_STATE(); case 331: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(987); + lookahead == 'd') ADVANCE(1594); END_STATE(); case 332: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(364); + lookahead == 'd') ADVANCE(1645); END_STATE(); case 333: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(368); + lookahead == 'd') ADVANCE(1665); END_STATE(); case 334: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(402); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(867); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(235); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1088); + lookahead == 'd') ADVANCE(1682); END_STATE(); case 335: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(402); - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(867); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(234); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1088); + lookahead == 'd') ADVANCE(136); END_STATE(); case 336: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(613); + lookahead == 'd') ADVANCE(629); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(431); END_STATE(); case 337: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1074); + lookahead == 'd') ADVANCE(179); END_STATE(); case 338: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(524); + lookahead == 'd') ADVANCE(361); END_STATE(); case 339: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(893); + lookahead == 'd') ADVANCE(288); END_STATE(); case 340: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(425); + lookahead == 'd') ADVANCE(1154); END_STATE(); case 341: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(627); + lookahead == 'd') ADVANCE(911); END_STATE(); case 342: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(446); + lookahead == 'd') ADVANCE(1017); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1512); END_STATE(); case 343: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(449); + lookahead == 'd') ADVANCE(224); END_STATE(); case 344: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1077); + lookahead == 'd') ADVANCE(1010); END_STATE(); case 345: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(765); + lookahead == 'd') ADVANCE(376); END_STATE(); case 346: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(495); + lookahead == 'd') ADVANCE(380); END_STATE(); case 347: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(15); + lookahead == 'd') ADVANCE(414); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(883); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(247); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1112); END_STATE(); case 348: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(1149); + lookahead == 'd') ADVANCE(414); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(883); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(246); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1112); END_STATE(); case 349: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(193); + lookahead == 'd') ADVANCE(630); END_STATE(); case 350: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(497); + lookahead == 'd') ADVANCE(1098); END_STATE(); case 351: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(500); + lookahead == 'd') ADVANCE(540); END_STATE(); case 352: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(593); + lookahead == 'd') ADVANCE(916); END_STATE(); case 353: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(212); + lookahead == 'd') ADVANCE(437); END_STATE(); case 354: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(216); + lookahead == 'd') ADVANCE(643); END_STATE(); case 355: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(221); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1103); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(860); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(460); END_STATE(); case 356: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(702); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(462); END_STATE(); case 357: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(323); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(224); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1163); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1101); END_STATE(); case 358: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(240); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(323); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1163); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(786); END_STATE(); case 359: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1488); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(511); END_STATE(); case 360: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1514); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(15); END_STATE(); case 361: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1491); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(1175); END_STATE(); case 362: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1652); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(203); END_STATE(); case 363: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(432); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(513); END_STATE(); case 364: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1582); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(516); END_STATE(); case 365: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1620); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(610); END_STATE(); case 366: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1450); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(222); END_STATE(); case 367: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1577); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(226); END_STATE(); case 368: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1507); + lookahead == 'e') ADVANCE(721); END_STATE(); case 369: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1682); + lookahead == 'e') ADVANCE(252); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(336); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(235); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1220); END_STATE(); case 370: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1625); + lookahead == 'e') ADVANCE(252); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(336); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1220); END_STATE(); case 371: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1449); + lookahead == 'e') ADVANCE(1521); END_STATE(); case 372: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(269); + lookahead == 'e') ADVANCE(1547); END_STATE(); case 373: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1659); + lookahead == 'e') ADVANCE(1524); END_STATE(); case 374: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(526); + lookahead == 'e') ADVANCE(1687); END_STATE(); case 375: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1681); + lookahead == 'e') ADVANCE(447); END_STATE(); case 376: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1687); + lookahead == 'e') ADVANCE(1615); END_STATE(); case 377: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1580); + lookahead == 'e') ADVANCE(1653); END_STATE(); case 378: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1509); + lookahead == 'e') ADVANCE(1481); END_STATE(); case 379: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(217); + lookahead == 'e') ADVANCE(1610); END_STATE(); case 380: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1518); + lookahead == 'e') ADVANCE(1540); END_STATE(); case 381: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1653); + lookahead == 'e') ADVANCE(1717); END_STATE(); case 382: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1567); + lookahead == 'e') ADVANCE(1658); END_STATE(); case 383: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1512); + lookahead == 'e') ADVANCE(1480); END_STATE(); case 384: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1553); + lookahead == 'e') ADVANCE(270); END_STATE(); case 385: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1563); + lookahead == 'e') ADVANCE(1694); END_STATE(); case 386: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1544); + lookahead == 'e') ADVANCE(542); END_STATE(); case 387: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1693); + lookahead == 'e') ADVANCE(1613); END_STATE(); case 388: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(707); + lookahead == 'e') ADVANCE(1716); END_STATE(); case 389: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(527); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1292); + lookahead == 'e') ADVANCE(1722); END_STATE(); case 390: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1462); + lookahead == 'e') ADVANCE(1542); END_STATE(); case 391: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(708); + lookahead == 'e') ADVANCE(227); END_STATE(); case 392: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(127); + lookahead == 'e') ADVANCE(1551); END_STATE(); case 393: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1431); + lookahead == 'e') ADVANCE(1688); END_STATE(); case 394: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1063); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(129); + lookahead == 'e') ADVANCE(1600); END_STATE(); case 395: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1420); + lookahead == 'e') ADVANCE(1545); END_STATE(); case 396: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1463); + lookahead == 'e') ADVANCE(1586); END_STATE(); case 397: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1062); + lookahead == 'e') ADVANCE(1596); END_STATE(); case 398: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1469); + lookahead == 'e') ADVANCE(1577); END_STATE(); case 399: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1090); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1199); + lookahead == 'e') ADVANCE(1728); END_STATE(); case 400: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(864); + lookahead == 'e') ADVANCE(231); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1127); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(882); END_STATE(); case 401: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(248); + lookahead == 'e') ADVANCE(543); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1319); END_STATE(); case 402: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(901); + lookahead == 'e') ADVANCE(725); END_STATE(); case 403: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1164); + lookahead == 'e') ADVANCE(1493); END_STATE(); case 404: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(352); + lookahead == 'e') ADVANCE(726); END_STATE(); case 405: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(553); + lookahead == 'e') ADVANCE(137); END_STATE(); case 406: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(786); + lookahead == 'e') ADVANCE(1462); END_STATE(); case 407: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1134); + lookahead == 'e') ADVANCE(1087); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(139); END_STATE(); case 408: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(856); + lookahead == 'e') ADVANCE(1451); END_STATE(); case 409: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(725); + lookahead == 'e') ADVANCE(1494); END_STATE(); case 410: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(521); + lookahead == 'e') ADVANCE(1086); END_STATE(); case 411: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1397); + lookahead == 'e') ADVANCE(1500); END_STATE(); case 412: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1262); + lookahead == 'e') ADVANCE(1114); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1225); END_STATE(); case 413: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(243); + lookahead == 'e') ADVANCE(886); END_STATE(); case 414: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(809); + lookahead == 'e') ADVANCE(924); END_STATE(); case 415: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(327); + lookahead == 'e') ADVANCE(570); END_STATE(); case 416: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1092); + lookahead == 'e') ADVANCE(261); END_STATE(); case 417: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1081); + lookahead == 'e') ADVANCE(365); END_STATE(); case 418: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(116); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(250); + lookahead == 'e') ADVANCE(1189); END_STATE(); case 419: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1477); + lookahead == 'e') ADVANCE(807); END_STATE(); case 420: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1129); + lookahead == 'e') ADVANCE(1157); END_STATE(); case 421: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(761); + lookahead == 'e') ADVANCE(878); END_STATE(); case 422: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1455); + lookahead == 'e') ADVANCE(537); END_STATE(); case 423: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1131); + lookahead == 'e') ADVANCE(746); END_STATE(); case 424: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(285); + lookahead == 'e') ADVANCE(1290); END_STATE(); case 425: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(857); + lookahead == 'e') ADVANCE(830); END_STATE(); case 426: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1137); + lookahead == 'e') ADVANCE(1427); END_STATE(); case 427: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(279); + lookahead == 'e') ADVANCE(255); END_STATE(); case 428: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1474); + lookahead == 'e') ADVANCE(340); END_STATE(); case 429: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(727); + lookahead == 'e') ADVANCE(1116); END_STATE(); case 430: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(241); + lookahead == 'e') ADVANCE(1105); END_STATE(); case 431: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1460); + lookahead == 'e') ADVANCE(126); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(262); END_STATE(); case 432: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1252); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1202); + lookahead == 'e') ADVANCE(1509); END_STATE(); case 433: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1267); + lookahead == 'e') ADVANCE(1153); END_STATE(); case 434: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1133); + lookahead == 'e') ADVANCE(782); END_STATE(); case 435: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(316); + lookahead == 'e') ADVANCE(1486); END_STATE(); case 436: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1140); + lookahead == 'e') ADVANCE(1155); END_STATE(); case 437: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1239); + lookahead == 'e') ADVANCE(879); END_STATE(); case 438: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(318); + lookahead == 'e') ADVANCE(298); END_STATE(); case 439: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1207); + lookahead == 'e') ADVANCE(1164); END_STATE(); case 440: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(502); + lookahead == 'e') ADVANCE(1505); END_STATE(); case 441: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(999); + lookahead == 'e') ADVANCE(748); END_STATE(); case 442: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1160); + lookahead == 'e') ADVANCE(292); END_STATE(); case 443: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(961); + lookahead == 'e') ADVANCE(253); END_STATE(); case 444: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1094); + lookahead == 'e') ADVANCE(1491); END_STATE(); case 445: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(326); + lookahead == 'e') ADVANCE(1295); END_STATE(); case 446: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1095); + lookahead == 'e') ADVANCE(1156); END_STATE(); case 447: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(843); + lookahead == 'e') ADVANCE(1280); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1229); END_STATE(); case 448: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1102); + lookahead == 'e') ADVANCE(329); END_STATE(); case 449: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1096); + lookahead == 'e') ADVANCE(1163); END_STATE(); case 450: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1117); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1199); + lookahead == 'e') ADVANCE(1267); END_STATE(); case 451: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(909); + lookahead == 'e') ADVANCE(331); END_STATE(); case 452: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1240); + lookahead == 'e') ADVANCE(1234); END_STATE(); case 453: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1185); + lookahead == 'e') ADVANCE(1022); END_STATE(); case 454: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1186); + lookahead == 'e') ADVANCE(518); END_STATE(); case 455: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1191); + lookahead == 'e') ADVANCE(1186); END_STATE(); case 456: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1434); + lookahead == 'e') ADVANCE(983); END_STATE(); case 457: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1422); + lookahead == 'e') ADVANCE(1118); END_STATE(); case 458: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1208); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1122); + lookahead == 'e') ADVANCE(339); END_STATE(); case 459: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(816); + lookahead == 'e') ADVANCE(865); END_STATE(); case 460: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(753); + lookahead == 'e') ADVANCE(1119); END_STATE(); case 461: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(531); + lookahead == 'e') ADVANCE(1126); END_STATE(); case 462: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1464); + lookahead == 'e') ADVANCE(1120); END_STATE(); case 463: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1209); + lookahead == 'e') ADVANCE(1142); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1225); END_STATE(); case 464: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1470); + lookahead == 'e') ADVANCE(932); END_STATE(); case 465: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1157); + lookahead == 'e') ADVANCE(1276); END_STATE(); case 466: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1479); + lookahead == 'e') ADVANCE(1210); END_STATE(); case 467: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(349); + lookahead == 'e') ADVANCE(1211); END_STATE(); case 468: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1468); + lookahead == 'e') ADVANCE(1216); END_STATE(); case 469: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1111); + lookahead == 'e') ADVANCE(1465); END_STATE(); case 470: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1244); + lookahead == 'e') ADVANCE(1453); END_STATE(); case 471: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(252); + lookahead == 'e') ADVANCE(1235); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1146); END_STATE(); case 472: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1118); + lookahead == 'e') ADVANCE(838); END_STATE(); case 473: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1436); + lookahead == 'e') ADVANCE(548); END_STATE(); case 474: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(353); + lookahead == 'e') ADVANCE(774); END_STATE(); case 475: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1471); + lookahead == 'e') ADVANCE(1495); END_STATE(); case 476: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1215); + lookahead == 'e') ADVANCE(1501); END_STATE(); case 477: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(887); + lookahead == 'e') ADVANCE(1238); END_STATE(); case 478: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1162); + lookahead == 'e') ADVANCE(1183); END_STATE(); case 479: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(917); + lookahead == 'e') ADVANCE(1511); END_STATE(); case 480: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1472); + lookahead == 'e') ADVANCE(362); END_STATE(); case 481: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(890); + lookahead == 'e') ADVANCE(1499); END_STATE(); case 482: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1473); + lookahead == 'e') ADVANCE(1134); END_STATE(); case 483: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(891); + lookahead == 'e') ADVANCE(1271); END_STATE(); case 484: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(714); + lookahead == 'e') ADVANCE(1143); END_STATE(); case 485: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(914); + lookahead == 'e') ADVANCE(265); END_STATE(); case 486: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1148); + lookahead == 'e') ADVANCE(1467); END_STATE(); case 487: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(911); + lookahead == 'e') ADVANCE(366); END_STATE(); case 488: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1136); + lookahead == 'e') ADVANCE(1508); END_STATE(); case 489: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1083); + lookahead == 'e') ADVANCE(738); END_STATE(); case 490: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1002); + lookahead == 'e') ADVANCE(910); END_STATE(); case 491: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(346); + lookahead == 'e') ADVANCE(1242); END_STATE(); case 492: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(912); + lookahead == 'e') ADVANCE(1188); END_STATE(); case 493: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1006); + lookahead == 'e') ADVANCE(940); END_STATE(); case 494: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(585); + lookahead == 'e') ADVANCE(1502); END_STATE(); case 495: if (lookahead == 'E' || @@ -7316,63 +7362,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 496: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1429); + lookahead == 'e') ADVANCE(1503); END_STATE(); case 497: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(918); + lookahead == 'e') ADVANCE(915); END_STATE(); case 498: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(194); + lookahead == 'e') ADVANCE(1504); END_STATE(); case 499: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(919); + lookahead == 'e') ADVANCE(1352); END_STATE(); case 500: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(921); + lookahead == 'e') ADVANCE(733); END_STATE(); case 501: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(292); + lookahead == 'e') ADVANCE(1174); END_STATE(); case 502: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1086); + lookahead == 'e') ADVANCE(937); END_STATE(); case 503: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(286); + lookahead == 'e') ADVANCE(934); END_STATE(); case 504: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(210); + lookahead == 'e') ADVANCE(1161); END_STATE(); case 505: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(287); + lookahead == 'e') ADVANCE(1107); END_STATE(); case 506: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(213); + lookahead == 'e') ADVANCE(1025); END_STATE(); case 507: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(298); + lookahead == 'e') ADVANCE(359); END_STATE(); case 508: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(933); + lookahead == 'e') ADVANCE(935); END_STATE(); case 509: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(934); + lookahead == 'e') ADVANCE(1029); END_STATE(); case 510: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(935); + lookahead == 'e') ADVANCE(601); END_STATE(); case 511: if (lookahead == 'E' || @@ -7380,3423 +7426,3423 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 512: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(937); + lookahead == 'e') ADVANCE(1460); END_STATE(); case 513: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(938); + lookahead == 'e') ADVANCE(941); END_STATE(); case 514: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(939); + lookahead == 'e') ADVANCE(204); END_STATE(); case 515: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(940); + lookahead == 'e') ADVANCE(942); END_STATE(); case 516: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(354); + lookahead == 'e') ADVANCE(944); END_STATE(); case 517: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(218); + lookahead == 'e') ADVANCE(305); END_STATE(); case 518: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1667); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1110); END_STATE(); case 519: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(518); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(299); END_STATE(); case 520: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1478); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(220); END_STATE(); case 521: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(337); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(300); END_STATE(); case 522: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(135); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(223); END_STATE(); case 523: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(174); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(311); END_STATE(); case 524: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(144); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(956); END_STATE(); case 525: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1069); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(957); END_STATE(); case 526: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(173); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1016); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(113); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(486); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(958); END_STATE(); case 527: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(426); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(959); END_STATE(); case 528: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(978); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(960); END_STATE(); case 529: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(982); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(961); END_STATE(); case 530: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(645); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(962); END_STATE(); case 531: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(651); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(963); END_STATE(); case 532: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(175); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(367); END_STATE(); case 533: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(653); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(228); END_STATE(); case 534: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(657); + lookahead == 'f') ADVANCE(535); END_STATE(); case 535: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1035); + lookahead == 'f') ADVANCE(1702); END_STATE(); case 536: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1350); + lookahead == 'f') ADVANCE(1510); END_STATE(); case 537: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1039); + lookahead == 'f') ADVANCE(350); END_STATE(); case 538: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1040); + lookahead == 'f') ADVANCE(146); END_STATE(); case 539: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1683); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(184); END_STATE(); case 540: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1621); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(154); END_STATE(); case 541: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1690); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1093); END_STATE(); case 542: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1666); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(183); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1039); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(123); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(501); END_STATE(); case 543: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(522); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(439); END_STATE(); case 544: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(842); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1002); END_STATE(); case 545: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1182); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1005); END_STATE(); case 546: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(382); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(178); END_STATE(); case 547: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(876); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(663); END_STATE(); case 548: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1022); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(670); END_STATE(); case 549: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(423); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(672); END_STATE(); case 550: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(488); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(676); END_STATE(); case 551: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(477); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1059); END_STATE(); case 552: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(481); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1380); END_STATE(); case 553: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(186); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1063); END_STATE(); case 554: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(483); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(1064); END_STATE(); case 555: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1027); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(152); + lookahead == 'g') ADVANCE(1718); END_STATE(); case 556: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1029); + lookahead == 'g') ADVANCE(1654); END_STATE(); case 557: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1031); + lookahead == 'g') ADVANCE(1701); END_STATE(); case 558: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1032); + lookahead == 'g') ADVANCE(1662); END_STATE(); case 559: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(1033); + lookahead == 'g') ADVANCE(1725); END_STATE(); case 560: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1501); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(538); END_STATE(); case 561: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1541); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(864); END_STATE(); case 562: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1554); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1207); END_STATE(); case 563: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(19); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(394); END_STATE(); case 564: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(706); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(899); END_STATE(); case 565: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(795); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1045); END_STATE(); case 566: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(407); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(436); END_STATE(); case 567: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(797); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(504); END_STATE(); case 568: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1000); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(490); END_STATE(); case 569: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(179); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(495); END_STATE(); case 570: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(159); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(195); END_STATE(); case 571: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(166); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(497); END_STATE(); case 572: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(749); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1051); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(162); END_STATE(); case 573: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(416); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1053); END_STATE(); case 574: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(800); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1055); END_STATE(); case 575: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(968); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1056); END_STATE(); case 576: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(143); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(1057); END_STATE(); case 577: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(802); + lookahead == 'h') ADVANCE(1534); END_STATE(); case 578: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(804); + lookahead == 'h') ADVANCE(1574); END_STATE(); case 579: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(718); + lookahead == 'h') ADVANCE(1587); END_STATE(); case 580: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(806); + lookahead == 'h') ADVANCE(19); END_STATE(); case 581: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(430); + lookahead == 'h') ADVANCE(734); END_STATE(); case 582: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(807); + lookahead == 'h') ADVANCE(816); END_STATE(); case 583: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(20); + lookahead == 'h') ADVANCE(420); END_STATE(); case 584: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1003); + lookahead == 'h') ADVANCE(818); END_STATE(); case 585: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1026); + lookahead == 'h') ADVANCE(1023); END_STATE(); case 586: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(492); + lookahead == 'h') ADVANCE(186); END_STATE(); case 587: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1028); + lookahead == 'h') ADVANCE(169); END_STATE(); case 588: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1030); + lookahead == 'h') ADVANCE(176); END_STATE(); case 589: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1010); + lookahead == 'h') ADVANCE(770); END_STATE(); case 590: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1014); + lookahead == 'h') ADVANCE(429); END_STATE(); case 591: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1017); + lookahead == 'h') ADVANCE(821); END_STATE(); case 592: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1018); + lookahead == 'h') ADVANCE(153); END_STATE(); case 593: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1045); + lookahead == 'h') ADVANCE(992); END_STATE(); case 594: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(1044); + lookahead == 'h') ADVANCE(823); END_STATE(); case 595: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(508); + lookahead == 'h') ADVANCE(825); END_STATE(); case 596: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(509); + lookahead == 'h') ADVANCE(826); END_STATE(); case 597: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(510); + lookahead == 'h') ADVANCE(443); END_STATE(); case 598: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(511); + lookahead == 'h') ADVANCE(828); END_STATE(); case 599: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(512); + lookahead == 'h') ADVANCE(20); END_STATE(); case 600: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(513); + lookahead == 'h') ADVANCE(1026); END_STATE(); case 601: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(514); + lookahead == 'h') ADVANCE(1050); END_STATE(); case 602: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(515); + lookahead == 'h') ADVANCE(508); END_STATE(); case 603: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(165); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1052); END_STATE(); case 604: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1103); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(860); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1054); END_STATE(); case 605: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(547); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1033); END_STATE(); case 606: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(520); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1038); END_STATE(); case 607: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(855); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1097); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1040); END_STATE(); case 608: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(530); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1042); END_STATE(); case 609: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(544); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(739); END_STATE(); case 610: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(288); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1069); END_STATE(); case 611: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1055); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(1068); END_STATE(); case 612: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(872); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(524); END_STATE(); case 613: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(907); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(525); END_STATE(); case 614: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(412); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(526); END_STATE(); case 615: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1056); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(527); END_STATE(); case 616: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1263); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(528); END_STATE(); case 617: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1057); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(529); END_STATE(); case 618: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1286); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(530); END_STATE(); case 619: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1266); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(531); END_STATE(); case 620: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(862); + lookahead == 'i') ADVANCE(175); END_STATE(); case 621: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(836); + lookahead == 'i') ADVANCE(1127); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(882); END_STATE(); case 622: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(997); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(679); + lookahead == 'i') ADVANCE(564); END_STATE(); case 623: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(763); + lookahead == 'i') ADVANCE(536); END_STATE(); case 624: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(742); + lookahead == 'i') ADVANCE(547); END_STATE(); case 625: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1268); + lookahead == 'i') ADVANCE(877); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1121); END_STATE(); case 626: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1321); + lookahead == 'i') ADVANCE(561); END_STATE(); case 627: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(869); + lookahead == 'i') ADVANCE(301); END_STATE(); case 628: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(866); + lookahead == 'i') ADVANCE(1079); END_STATE(); case 629: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1294); + lookahead == 'i') ADVANCE(895); END_STATE(); case 630: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(870); + lookahead == 'i') ADVANCE(930); END_STATE(); case 631: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(156); + lookahead == 'i') ADVANCE(424); END_STATE(); case 632: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1296); + lookahead == 'i') ADVANCE(1080); END_STATE(); case 633: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1297); + lookahead == 'i') ADVANCE(1291); END_STATE(); case 634: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1322); + lookahead == 'i') ADVANCE(1081); END_STATE(); case 635: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1481); + lookahead == 'i') ADVANCE(1294); END_STATE(); case 636: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(256); + lookahead == 'i') ADVANCE(1314); END_STATE(); case 637: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(768); + lookahead == 'i') ADVANCE(858); END_STATE(); case 638: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(805); + lookahead == 'i') ADVANCE(1020); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(698); END_STATE(); case 639: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(868); + lookahead == 'i') ADVANCE(784); END_STATE(); case 640: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(868); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1261); + lookahead == 'i') ADVANCE(761); END_STATE(); case 641: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(892); + lookahead == 'i') ADVANCE(1296); END_STATE(); case 642: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(265); + lookahead == 'i') ADVANCE(1347); END_STATE(); case 643: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1423); + lookahead == 'i') ADVANCE(889); END_STATE(); case 644: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(437); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(197); + lookahead == 'i') ADVANCE(888); END_STATE(); case 645: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(281); + lookahead == 'i') ADVANCE(891); END_STATE(); case 646: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(966); + lookahead == 'i') ADVANCE(892); END_STATE(); case 647: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(755); + lookahead == 'i') ADVANCE(1321); END_STATE(); case 648: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(885); + lookahead == 'i') ADVANCE(893); END_STATE(); case 649: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(342); + lookahead == 'i') ADVANCE(166); END_STATE(); case 650: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1425); + lookahead == 'i') ADVANCE(1323); END_STATE(); case 651: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(756); + lookahead == 'i') ADVANCE(1324); END_STATE(); case 652: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(969); + lookahead == 'i') ADVANCE(1348); END_STATE(); case 653: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(757); + lookahead == 'i') ADVANCE(790); END_STATE(); case 654: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(899); + lookahead == 'i') ADVANCE(1513); END_STATE(); case 655: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1426); + lookahead == 'i') ADVANCE(269); END_STATE(); case 656: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(878); + lookahead == 'i') ADVANCE(827); END_STATE(); case 657: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(758); + lookahead == 'i') ADVANCE(890); END_STATE(); case 658: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1427); + lookahead == 'i') ADVANCE(890); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1289); END_STATE(); case 659: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1223); + lookahead == 'i') ADVANCE(914); END_STATE(); case 660: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(971); + lookahead == 'i') ADVANCE(279); END_STATE(); case 661: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(894); + lookahead == 'i') ADVANCE(1454); END_STATE(); case 662: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(972); + lookahead == 'i') ADVANCE(450); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(207); END_STATE(); case 663: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(973); + lookahead == 'i') ADVANCE(294); END_STATE(); case 664: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(975); + lookahead == 'i') ADVANCE(988); END_STATE(); case 665: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(979); + lookahead == 'i') ADVANCE(776); END_STATE(); case 666: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(980); + lookahead == 'i') ADVANCE(355); END_STATE(); case 667: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(981); + lookahead == 'i') ADVANCE(908); END_STATE(); case 668: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(983); + lookahead == 'i') ADVANCE(1456); END_STATE(); case 669: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(984); + lookahead == 'i') ADVANCE(836); END_STATE(); case 670: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1004); + lookahead == 'i') ADVANCE(777); END_STATE(); case 671: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(985); + lookahead == 'i') ADVANCE(991); END_STATE(); case 672: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(986); + lookahead == 'i') ADVANCE(778); END_STATE(); case 673: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(813); + lookahead == 'i') ADVANCE(922); END_STATE(); case 674: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(350); + lookahead == 'i') ADVANCE(1457); END_STATE(); case 675: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1325); + lookahead == 'i') ADVANCE(901); END_STATE(); case 676: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1345); + lookahead == 'i') ADVANCE(779); END_STATE(); case 677: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(487); + lookahead == 'i') ADVANCE(1458); END_STATE(); case 678: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1024); + lookahead == 'i') ADVANCE(994); END_STATE(); case 679: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(819); + lookahead == 'i') ADVANCE(917); END_STATE(); case 680: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(343); + lookahead == 'i') ADVANCE(1251); END_STATE(); case 681: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(277); + lookahead == 'i') ADVANCE(995); END_STATE(); case 682: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1330); + lookahead == 'i') ADVANCE(996); END_STATE(); case 683: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(822); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1410); + lookahead == 'i') ADVANCE(998); END_STATE(); case 684: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1331); + lookahead == 'i') ADVANCE(1001); END_STATE(); case 685: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1335); + lookahead == 'i') ADVANCE(1003); END_STATE(); case 686: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1338); + lookahead == 'i') ADVANCE(1004); END_STATE(); case 687: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(290); + lookahead == 'i') ADVANCE(1006); END_STATE(); case 688: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(351); + lookahead == 'i') ADVANCE(1007); END_STATE(); case 689: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(293); + lookahead == 'i') ADVANCE(1027); END_STATE(); case 690: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(295); + lookahead == 'i') ADVANCE(1008); END_STATE(); case 691: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(297); + lookahead == 'i') ADVANCE(1009); END_STATE(); case 692: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(299); + lookahead == 'i') ADVANCE(833); END_STATE(); case 693: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(300); + lookahead == 'i') ADVANCE(363); END_STATE(); case 694: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(301); + lookahead == 'i') ADVANCE(1354); END_STATE(); case 695: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(302); + lookahead == 'i') ADVANCE(1374); END_STATE(); case 696: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(303); + lookahead == 'i') ADVANCE(503); END_STATE(); case 697: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1537); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1047); END_STATE(); case 698: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1540); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(841); END_STATE(); case 699: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1664); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(356); END_STATE(); case 700: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(1665); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(290); END_STATE(); case 701: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(575); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1358); END_STATE(); case 702: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(390); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(991); - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(1388); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(998); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(844); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1441); END_STATE(); case 703: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(123); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(137); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1360); END_STATE(); case 704: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(468); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(463); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1363); END_STATE(); case 705: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(440); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1367); END_STATE(); case 706: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(925); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(303); END_STATE(); case 707: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(396); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1692); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(364); END_STATE(); case 708: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(396); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1691); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(306); END_STATE(); case 709: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(398); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(308); END_STATE(); case 710: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(404); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(310); END_STATE(); case 711: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(466); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(312); END_STATE(); case 712: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(419); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(313); END_STATE(); case 713: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(422); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(314); END_STATE(); case 714: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(431); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(315); END_STATE(); case 715: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(900); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(316); END_STATE(); case 716: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(462); + lookahead == 'k') ADVANCE(1570); END_STATE(); case 717: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(630); + lookahead == 'k') ADVANCE(1573); END_STATE(); case 718: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(475); + lookahead == 'k') ADVANCE(1699); END_STATE(); case 719: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(480); + lookahead == 'k') ADVANCE(1700); END_STATE(); case 720: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(482); + lookahead == 'k') ADVANCE(593); END_STATE(); case 721: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(773); + lookahead == 'k') ADVANCE(403); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1014); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(1418); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1021); END_STATE(); case 722: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(928); + lookahead == 'k') ADVANCE(130); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(147); END_STATE(); case 723: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(253); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(481); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(477); END_STATE(); case 724: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1617); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(454); END_STATE(); case 725: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1684); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(409); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1726); END_STATE(); case 726: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(796); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(409); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1727); END_STATE(); case 727: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1615); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(411); END_STATE(); case 728: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1635); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(417); END_STATE(); case 729: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(329); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(479); END_STATE(); case 730: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1663); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(432); END_STATE(); case 731: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(555); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(435); END_STATE(); case 732: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(39); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(499); END_STATE(); case 733: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1658); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(444); END_STATE(); case 734: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1511); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(948); END_STATE(); case 735: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(762); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(877); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(475); END_STATE(); case 736: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(548); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(923); END_STATE(); case 737: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(228); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(645); END_STATE(); case 738: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1390); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(488); END_STATE(); case 739: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(673); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(494); END_STATE(); case 740: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1210); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(496); END_STATE(); case 741: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1210); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(126); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(498); END_STATE(); case 742: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1454); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(794); END_STATE(); case 743: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(643); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(951); END_STATE(); case 744: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(949); + lookahead == 'l') ADVANCE(264); END_STATE(); case 745: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(457); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(420); + lookahead == 'l') ADVANCE(1650); END_STATE(); case 746: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1457); + lookahead == 'l') ADVANCE(1719); END_STATE(); case 747: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(781); + lookahead == 'l') ADVANCE(817); END_STATE(); case 748: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1265); + lookahead == 'l') ADVANCE(1648); END_STATE(); case 749: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1001); + lookahead == 'l') ADVANCE(1670); END_STATE(); case 750: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(730); + lookahead == 'l') ADVANCE(342); END_STATE(); case 751: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(363); + lookahead == 'l') ADVANCE(1698); END_STATE(); case 752: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(760); + lookahead == 'l') ADVANCE(572); END_STATE(); case 753: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(405); + lookahead == 'l') ADVANCE(40); END_STATE(); case 754: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1190); + lookahead == 'l') ADVANCE(1693); END_STATE(); case 755: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(377); + lookahead == 'l') ADVANCE(1544); END_STATE(); case 756: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(380); + lookahead == 'l') ADVANCE(783); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(900); END_STATE(); case 757: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(385); + lookahead == 'l') ADVANCE(565); END_STATE(); case 758: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(387); + lookahead == 'l') ADVANCE(239); END_STATE(); case 759: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(677); + lookahead == 'l') ADVANCE(1420); END_STATE(); case 760: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(229); + lookahead == 'l') ADVANCE(692); END_STATE(); case 761: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1291); + lookahead == 'l') ADVANCE(1485); END_STATE(); case 762: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(485); + lookahead == 'l') ADVANCE(661); END_STATE(); case 763: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(629); + lookahead == 'l') ADVANCE(1236); END_STATE(); case 764: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(628); + lookahead == 'l') ADVANCE(1236); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(135); END_STATE(); case 765: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(654); + lookahead == 'l') ADVANCE(972); END_STATE(); case 766: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(528); + lookahead == 'l') ADVANCE(470); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(433); END_STATE(); case 767: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(650); + lookahead == 'l') ADVANCE(1487); END_STATE(); case 768: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1407); + lookahead == 'l') ADVANCE(802); END_STATE(); case 769: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1005); + lookahead == 'l') ADVANCE(1293); END_STATE(); case 770: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(655); + lookahead == 'l') ADVANCE(1024); END_STATE(); case 771: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1008); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(459); + lookahead == 'l') ADVANCE(751); END_STATE(); case 772: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1011); + lookahead == 'l') ADVANCE(375); END_STATE(); case 773: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1012); + lookahead == 'l') ADVANCE(781); END_STATE(); case 774: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(588); + lookahead == 'l') ADVANCE(415); END_STATE(); case 775: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1015); + lookahead == 'l') ADVANCE(1215); END_STATE(); case 776: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(592); + lookahead == 'l') ADVANCE(387); END_STATE(); case 777: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(40); + lookahead == 'l') ADVANCE(392); END_STATE(); case 778: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(556); + lookahead == 'l') ADVANCE(397); END_STATE(); case 779: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(1043); + lookahead == 'l') ADVANCE(399); END_STATE(); case 780: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(557); + lookahead == 'l') ADVANCE(696); END_STATE(); case 781: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(538); + lookahead == 'l') ADVANCE(240); END_STATE(); case 782: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(558); + lookahead == 'l') ADVANCE(1318); END_STATE(); case 783: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(559); + lookahead == 'l') ADVANCE(502); END_STATE(); case 784: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(296); + lookahead == 'l') ADVANCE(647); END_STATE(); case 785: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(722); + lookahead == 'l') ADVANCE(644); END_STATE(); case 786: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1660); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(673); END_STATE(); case 787: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1523); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(544); END_STATE(); case 788: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1525); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(668); END_STATE(); case 789: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1060); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(916); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1028); END_STATE(); case 790: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(227); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1439); END_STATE(); case 791: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(616); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(674); END_STATE(); case 792: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(798); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1031); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(472); END_STATE(); case 793: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(610); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1032); END_STATE(); case 794: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1054); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1034); END_STATE(); case 795: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(993); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(604); END_STATE(); case 796: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(190); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(147); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1036); END_STATE(); case 797: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1171); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(608); END_STATE(); case 798: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(170); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(41); END_STATE(); case 799: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(367); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(573); END_STATE(); case 800: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1179); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(1067); END_STATE(); case 801: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(162); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(883); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(574); END_STATE(); case 802: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1183); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(554); END_STATE(); case 803: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(117); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(575); END_STATE(); case 804: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1184); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(576); END_STATE(); case 805: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(441); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(309); END_STATE(); case 806: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1189); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(743); END_STATE(); case 807: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1192); + lookahead == 'm') ADVANCE(1695); END_STATE(); case 808: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(383); + lookahead == 'm') ADVANCE(1556); END_STATE(); case 809: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1070); + lookahead == 'm') ADVANCE(1558); END_STATE(); case 810: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(624); + lookahead == 'm') ADVANCE(1084); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(939); END_STATE(); case 811: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(620); + lookahead == 'm') ADVANCE(238); END_STATE(); case 812: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1071); + lookahead == 'm') ADVANCE(633); END_STATE(); case 813: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(625); + lookahead == 'm') ADVANCE(819); END_STATE(); case 814: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(676); + lookahead == 'm') ADVANCE(627); END_STATE(); case 815: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(455); + lookahead == 'm') ADVANCE(1078); END_STATE(); case 816: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(1013); + lookahead == 'm') ADVANCE(1016); END_STATE(); case 817: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(183); + lookahead == 'm') ADVANCE(199); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(157); END_STATE(); case 818: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(176); + lookahead == 'm') ADVANCE(1196); END_STATE(); case 819: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(490); + lookahead == 'm') ADVANCE(180); END_STATE(); case 820: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(769); + lookahead == 'm') ADVANCE(379); END_STATE(); case 821: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(177); + lookahead == 'm') ADVANCE(1204); END_STATE(); case 822: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(493); + lookahead == 'm') ADVANCE(172); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(906); END_STATE(); case 823: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(772); + lookahead == 'm') ADVANCE(1208); END_STATE(); case 824: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(182); + lookahead == 'm') ADVANCE(127); END_STATE(); case 825: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(184); + lookahead == 'm') ADVANCE(1209); END_STATE(); case 826: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(185); + lookahead == 'm') ADVANCE(1214); END_STATE(); case 827: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(818); + lookahead == 'm') ADVANCE(453); END_STATE(); case 828: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(821); + lookahead == 'm') ADVANCE(1217); END_STATE(); case 829: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(824); + lookahead == 'm') ADVANCE(395); END_STATE(); case 830: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(825); + lookahead == 'm') ADVANCE(1094); END_STATE(); case 831: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(826); + lookahead == 'm') ADVANCE(640); END_STATE(); case 832: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(779); + lookahead == 'm') ADVANCE(1095); END_STATE(); case 833: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(11); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(641); END_STATE(); case 834: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1526); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(695); END_STATE(); case 835: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1533); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(468); END_STATE(); case 836: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1689); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(646); END_STATE(); case 837: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1581); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(648); END_STATE(); case 838: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1696); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(1035); END_STATE(); case 839: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1527); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(189); END_STATE(); case 840: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1528); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(185); END_STATE(); case 841: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1521); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(506); END_STATE(); case 842: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1545); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(789); END_STATE(); case 843: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1631); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(188); END_STATE(); case 844: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1564); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(509); END_STATE(); case 845: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1645); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(793); END_STATE(); case 846: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1629); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(192); END_STATE(); case 847: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1557); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(193); END_STATE(); case 848: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1574); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(194); END_STATE(); case 849: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1609); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(840); END_STATE(); case 850: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1519); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(843); END_STATE(); case 851: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(118); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1101); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(242); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(566); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(634); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(846); END_STATE(); case 852: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(118); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(242); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(634); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(847); END_STATE(); case 853: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(223); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(848); END_STATE(); case 854: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(223); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(324); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(388); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(800); END_STATE(); case 855: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(549); + lookahead == 'n') ADVANCE(11); END_STATE(); case 856: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1417); + lookahead == 'n') ADVANCE(1559); END_STATE(); case 857: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1418); + lookahead == 'n') ADVANCE(1566); END_STATE(); case 858: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(952); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(605); + lookahead == 'n') ADVANCE(1724); END_STATE(); case 859: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(322); + lookahead == 'n') ADVANCE(1614); END_STATE(); case 860: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(164); + lookahead == 'n') ADVANCE(1731); END_STATE(); case 861: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(535); + lookahead == 'n') ADVANCE(1560); END_STATE(); case 862: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(541); + lookahead == 'n') ADVANCE(1561); END_STATE(); case 863: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(636); + lookahead == 'n') ADVANCE(1554); END_STATE(); case 864: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1377); + lookahead == 'n') ADVANCE(1578); END_STATE(); case 865: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(308); + lookahead == 'n') ADVANCE(1666); END_STATE(); case 866: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(700); + lookahead == 'n') ADVANCE(1597); END_STATE(); case 867: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(990); + lookahead == 'n') ADVANCE(1680); END_STATE(); case 868: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1278); + lookahead == 'n') ADVANCE(1664); END_STATE(); case 869: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(545); + lookahead == 'n') ADVANCE(1590); END_STATE(); case 870: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(542); + lookahead == 'n') ADVANCE(1607); END_STATE(); case 871: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(310); + lookahead == 'n') ADVANCE(1642); END_STATE(); case 872: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(903); + lookahead == 'n') ADVANCE(1552); END_STATE(); case 873: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(312); + lookahead == 'n') ADVANCE(128); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1125); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(254); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(583); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(652); END_STATE(); case 874: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(906); + lookahead == 'n') ADVANCE(128); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(254); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(652); END_STATE(); case 875: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(313); + lookahead == 'n') ADVANCE(236); END_STATE(); case 876: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(140); + lookahead == 'n') ADVANCE(236); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(337); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(402); END_STATE(); case 877: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(421); + lookahead == 'n') ADVANCE(566); END_STATE(); case 878: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(317); + lookahead == 'n') ADVANCE(1448); END_STATE(); case 879: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(746); + lookahead == 'n') ADVANCE(1449); END_STATE(); case 880: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(319); + lookahead == 'n') ADVANCE(975); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(622); END_STATE(); case 881: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(320); + lookahead == 'n') ADVANCE(335); END_STATE(); case 882: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(345); + lookahead == 'n') ADVANCE(174); END_STATE(); case 883: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(764); + lookahead == 'n') ADVANCE(1013); END_STATE(); case 884: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(433); + lookahead == 'n') ADVANCE(551); END_STATE(); case 885: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1323); + lookahead == 'n') ADVANCE(655); END_STATE(); case 886: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(321); + lookahead == 'n') ADVANCE(1407); END_STATE(); case 887: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1269); + lookahead == 'n') ADVANCE(321); END_STATE(); case 888: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1173); + lookahead == 'n') ADVANCE(719); END_STATE(); case 889: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(158); + lookahead == 'n') ADVANCE(562); END_STATE(); case 890: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1270); + lookahead == 'n') ADVANCE(1306); END_STATE(); case 891: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1271); + lookahead == 'n') ADVANCE(557); END_STATE(); case 892: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1177); + lookahead == 'n') ADVANCE(558); END_STATE(); case 893: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1178); + lookahead == 'n') ADVANCE(559); END_STATE(); case 894: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1275); + lookahead == 'n') ADVANCE(323); END_STATE(); case 895: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(393); + lookahead == 'n') ADVANCE(926); END_STATE(); case 896: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1328); + lookahead == 'n') ADVANCE(325); END_STATE(); case 897: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(133); + lookahead == 'n') ADVANCE(929); END_STATE(); case 898: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1188); + lookahead == 'n') ADVANCE(326); END_STATE(); case 899: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(386); + lookahead == 'n') ADVANCE(150); END_STATE(); case 900: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(989); + lookahead == 'n') ADVANCE(434); END_STATE(); case 901: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1326); + lookahead == 'n') ADVANCE(330); END_STATE(); case 902: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(568); + lookahead == 'n') ADVANCE(767); END_STATE(); case 903: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1403); + lookahead == 'n') ADVANCE(332); END_STATE(); case 904: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(171); + lookahead == 'n') ADVANCE(333); END_STATE(); case 905: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(546); + lookahead == 'n') ADVANCE(358); END_STATE(); case 906: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(424); + lookahead == 'n') ADVANCE(785); END_STATE(); case 907: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1346); + lookahead == 'n') ADVANCE(445); END_STATE(); case 908: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1336); + lookahead == 'n') ADVANCE(1351); END_STATE(); case 909: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1230); + lookahead == 'n') ADVANCE(334); END_STATE(); case 910: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1232); + lookahead == 'n') ADVANCE(1297); END_STATE(); case 911: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1300); + lookahead == 'n') ADVANCE(1198); END_STATE(); case 912: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1349); + lookahead == 'n') ADVANCE(168); END_STATE(); case 913: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1304); + lookahead == 'n') ADVANCE(1298); END_STATE(); case 914: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(550); + lookahead == 'n') ADVANCE(1202); END_STATE(); case 915: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(715); + lookahead == 'n') ADVANCE(1299); END_STATE(); case 916: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(471); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1107); + lookahead == 'n') ADVANCE(1203); END_STATE(); case 917: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(473); + lookahead == 'n') ADVANCE(1303); END_STATE(); case 918: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1340); + lookahead == 'n') ADVANCE(406); END_STATE(); case 919: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1248); + lookahead == 'n') ADVANCE(1356); END_STATE(); case 920: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(529); + lookahead == 'n') ADVANCE(143); END_STATE(); case 921: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1341); + lookahead == 'n') ADVANCE(1213); END_STATE(); case 922: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1344); + lookahead == 'n') ADVANCE(398); END_STATE(); case 923: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(589); + lookahead == 'n') ADVANCE(1012); END_STATE(); case 924: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(590); + lookahead == 'n') ADVANCE(1350); END_STATE(); case 925: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1041); + lookahead == 'n') ADVANCE(585); END_STATE(); case 926: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(503); + lookahead == 'n') ADVANCE(1433); END_STATE(); case 927: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(594); + lookahead == 'n') ADVANCE(181); END_STATE(); case 928: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1046); + lookahead == 'n') ADVANCE(563); END_STATE(); case 929: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(505); + lookahead == 'n') ADVANCE(438); END_STATE(); case 930: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1048); + lookahead == 'n') ADVANCE(1376); END_STATE(); case 931: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(926); + lookahead == 'n') ADVANCE(1364); END_STATE(); case 932: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(929); + lookahead == 'n') ADVANCE(1257); END_STATE(); case 933: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1368); + lookahead == 'n') ADVANCE(1260); END_STATE(); case 934: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1369); + lookahead == 'n') ADVANCE(1327); END_STATE(); case 935: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1370); + lookahead == 'n') ADVANCE(1379); END_STATE(); case 936: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1371); + lookahead == 'n') ADVANCE(1329); END_STATE(); case 937: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1372); + lookahead == 'n') ADVANCE(567); END_STATE(); case 938: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1373); + lookahead == 'n') ADVANCE(736); END_STATE(); case 939: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1374); + lookahead == 'n') ADVANCE(485); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1131); END_STATE(); case 940: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1375); + lookahead == 'n') ADVANCE(486); END_STATE(); case 941: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(244); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1369); END_STATE(); case 942: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1490); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(790); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1275); END_STATE(); case 943: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1539); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(545); END_STATE(); case 944: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1619); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1370); END_STATE(); case 945: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1489); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1373); END_STATE(); case 946: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1538); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(605); END_STATE(); case 947: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1433); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(606); END_STATE(); case 948: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(226); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1065); END_STATE(); case 949: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(543); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(519); END_STATE(); case 950: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(12); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(611); END_STATE(); case 951: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(792); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1070); END_STATE(); case 952: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(863); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(521); END_STATE(); case 953: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1402); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1072); END_STATE(); case 954: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(270); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(949); END_STATE(); case 955: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1091); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(952); END_STATE(); case 956: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(525); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1398); END_STATE(); case 957: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(787); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1399); END_STATE(); case 958: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(861); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1400); END_STATE(); case 959: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1166); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1401); END_STATE(); case 960: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(788); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1402); END_STATE(); case 961: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1079); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1403); END_STATE(); case 962: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(726); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1404); END_STATE(); case 963: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1408); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1405); END_STATE(); case 964: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1128); + lookahead == 'o') ADVANCE(256); END_STATE(); case 965: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1135); + lookahead == 'o') ADVANCE(1523); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(811); END_STATE(); case 966: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(834); + lookahead == 'o') ADVANCE(1572); END_STATE(); case 967: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(728); + lookahead == 'o') ADVANCE(1652); END_STATE(); case 968: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1237); + lookahead == 'o') ADVANCE(1522); END_STATE(); case 969: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(835); + lookahead == 'o') ADVANCE(1571); END_STATE(); case 970: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(879); + lookahead == 'o') ADVANCE(1464); END_STATE(); case 971: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(838); + lookahead == 'o') ADVANCE(237); END_STATE(); case 972: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(839); + lookahead == 'o') ADVANCE(560); END_STATE(); case 973: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(840); + lookahead == 'o') ADVANCE(12); END_STATE(); case 974: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(910); + lookahead == 'o') ADVANCE(813); END_STATE(); case 975: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(841); + lookahead == 'o') ADVANCE(885); END_STATE(); case 976: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(198); + lookahead == 'o') ADVANCE(1115); END_STATE(); case 977: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1116); + lookahead == 'o') ADVANCE(541); END_STATE(); case 978: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1139); + lookahead == 'o') ADVANCE(1432); END_STATE(); case 979: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(844); + lookahead == 'o') ADVANCE(283); END_STATE(); case 980: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(845); + lookahead == 'o') ADVANCE(808); END_STATE(); case 981: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(846); + lookahead == 'o') ADVANCE(884); END_STATE(); case 982: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1158); + lookahead == 'o') ADVANCE(809); END_STATE(); case 983: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(847); + lookahead == 'o') ADVANCE(1103); END_STATE(); case 984: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(848); + lookahead == 'o') ADVANCE(1191); END_STATE(); case 985: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(849); + lookahead == 'o') ADVANCE(747); END_STATE(); case 986: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(850); + lookahead == 'o') ADVANCE(1438); END_STATE(); case 987: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1312); + lookahead == 'o') ADVANCE(1152); END_STATE(); case 988: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1121); + lookahead == 'o') ADVANCE(856); END_STATE(); case 989: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1435); + lookahead == 'o') ADVANCE(1158); END_STATE(); case 990: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1119); + lookahead == 'o') ADVANCE(749); END_STATE(); case 991: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1303); + lookahead == 'o') ADVANCE(857); END_STATE(); case 992: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1421); + lookahead == 'o') ADVANCE(1265); END_STATE(); case 993: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(333); + lookahead == 'o') ADVANCE(902); END_STATE(); case 994: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(817); + lookahead == 'o') ADVANCE(860); END_STATE(); case 995: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(874); + lookahead == 'o') ADVANCE(861); END_STATE(); case 996: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1218); + lookahead == 'o') ADVANCE(862); END_STATE(); case 997: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(889); + lookahead == 'o') ADVANCE(933); END_STATE(); case 998: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(710); + lookahead == 'o') ADVANCE(863); END_STATE(); case 999: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1399); + lookahead == 'o') ADVANCE(208); END_STATE(); case 1000: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1214); + lookahead == 'o') ADVANCE(1141); END_STATE(); case 1001: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(257); + lookahead == 'o') ADVANCE(866); END_STATE(); case 1002: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1400); + lookahead == 'o') ADVANCE(1162); END_STATE(); case 1003: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1216); + lookahead == 'o') ADVANCE(867); END_STATE(); case 1004: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(898); + lookahead == 'o') ADVANCE(868); END_STATE(); case 1005: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(260); + lookahead == 'o') ADVANCE(1184); END_STATE(); case 1006: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1401); + lookahead == 'o') ADVANCE(869); END_STATE(); case 1007: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1227); + lookahead == 'o') ADVANCE(870); END_STATE(); case 1008: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(261); + lookahead == 'o') ADVANCE(871); END_STATE(); case 1009: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(661); + lookahead == 'o') ADVANCE(872); END_STATE(); case 1010: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1219); + lookahead == 'o') ADVANCE(1338); END_STATE(); case 1011: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(262); + lookahead == 'o') ADVANCE(1145); END_STATE(); case 1012: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(264); + lookahead == 'o') ADVANCE(1466); END_STATE(); case 1013: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1315); + lookahead == 'o') ADVANCE(1140); END_STATE(); case 1014: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1225); + lookahead == 'o') ADVANCE(1330); END_STATE(); case 1015: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(284); + lookahead == 'o') ADVANCE(1452); END_STATE(); case 1016: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1226); + lookahead == 'o') ADVANCE(346); END_STATE(); case 1017: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1228); + lookahead == 'o') ADVANCE(839); END_STATE(); case 1018: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1229); + lookahead == 'o') ADVANCE(897); END_STATE(); case 1019: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(639); + lookahead == 'o') ADVANCE(1245); END_STATE(); case 1020: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1231); + lookahead == 'o') ADVANCE(912); END_STATE(); case 1021: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1409); + lookahead == 'o') ADVANCE(728); END_STATE(); case 1022: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1141); + lookahead == 'o') ADVANCE(1429); END_STATE(); case 1023: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(812); + lookahead == 'o') ADVANCE(1241); END_STATE(); case 1024: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(920); + lookahead == 'o') ADVANCE(271); END_STATE(); case 1025: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1080); + lookahead == 'o') ADVANCE(1430); END_STATE(); case 1026: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1247); + lookahead == 'o') ADVANCE(1243); END_STATE(); case 1027: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1147); + lookahead == 'o') ADVANCE(921); END_STATE(); case 1028: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1250); + lookahead == 'o') ADVANCE(274); END_STATE(); case 1029: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1151); + lookahead == 'o') ADVANCE(1431); END_STATE(); case 1030: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1251); + lookahead == 'o') ADVANCE(1255); END_STATE(); case 1031: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1153); + lookahead == 'o') ADVANCE(275); END_STATE(); case 1032: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1155); + lookahead == 'o') ADVANCE(276); END_STATE(); case 1033: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1156); + lookahead == 'o') ADVANCE(1249); END_STATE(); case 1034: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(591); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(790); + lookahead == 'o') ADVANCE(277); END_STATE(); case 1035: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1146); + lookahead == 'o') ADVANCE(1341); END_STATE(); case 1036: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1430); + lookahead == 'o') ADVANCE(297); END_STATE(); case 1037: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1085); + lookahead == 'o') ADVANCE(732); END_STATE(); case 1038: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1150); + lookahead == 'o') ADVANCE(1253); END_STATE(); case 1039: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1152); + lookahead == 'o') ADVANCE(1254); END_STATE(); case 1040: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1154); + lookahead == 'o') ADVANCE(1256); END_STATE(); case 1041: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1444); + lookahead == 'o') ADVANCE(657); END_STATE(); case 1042: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(827); + lookahead == 'o') ADVANCE(1258); END_STATE(); case 1043: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(291); + lookahead == 'o') ADVANCE(1259); END_STATE(); case 1044: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1255); + lookahead == 'o') ADVANCE(1440); END_STATE(); case 1045: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1256); + lookahead == 'o') ADVANCE(1165); END_STATE(); case 1046: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1445); + lookahead == 'o') ADVANCE(832); END_STATE(); case 1047: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(828); + lookahead == 'o') ADVANCE(943); END_STATE(); case 1048: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1446); + lookahead == 'o') ADVANCE(1104); END_STATE(); case 1049: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(829); + lookahead == 'o') ADVANCE(679); END_STATE(); case 1050: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(830); + lookahead == 'o') ADVANCE(1274); END_STATE(); case 1051: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(831); + lookahead == 'o') ADVANCE(1173); END_STATE(); case 1052: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(931); + lookahead == 'o') ADVANCE(1278); END_STATE(); case 1053: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(932); + lookahead == 'o') ADVANCE(1177); END_STATE(); case 1054: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1641); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1279); END_STATE(); case 1055: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1529); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1179); END_STATE(); case 1056: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1522); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1181); END_STATE(); case 1057: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1524); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1182); END_STATE(); case 1058: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(324); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(391); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(607); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(811); END_STATE(); case 1059: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(705); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1172); END_STATE(); case 1060: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1145); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1461); END_STATE(); case 1061: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(603); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1109); END_STATE(); case 1062: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1280); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1176); END_STATE(); case 1063: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(167); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1178); END_STATE(); case 1064: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(615); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1180); END_STATE(); case 1065: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1138); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1475); END_STATE(); case 1066: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(617); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(849); END_STATE(); case 1067: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(988); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(304); END_STATE(); case 1068: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1009); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1283); END_STATE(); case 1069: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(195); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1284); END_STATE(); case 1070: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1311); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1476); END_STATE(); case 1071: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1313); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(850); END_STATE(); case 1072: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(373); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(1477); END_STATE(); case 1073: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(413); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(851); END_STATE(); case 1074: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(180); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(852); END_STATE(); case 1075: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1115); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(853); END_STATE(); case 1076: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(507); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(954); END_STATE(); case 1077: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1120); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(955); END_STATE(); case 1078: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(454); + lookahead == 'p') ADVANCE(1676); END_STATE(); case 1079: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(447); + lookahead == 'p') ADVANCE(1562); END_STATE(); case 1080: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(451); + lookahead == 'p') ADVANCE(1555); END_STATE(); case 1081: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1316); + lookahead == 'p') ADVANCE(1557); END_STATE(); case 1082: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(974); + lookahead == 'p') ADVANCE(337); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(404); END_STATE(); case 1083: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1351); + lookahead == 'p') ADVANCE(724); END_STATE(); case 1084: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(573); + lookahead == 'p') ADVANCE(1171); END_STATE(); case 1085: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(499); + lookahead == 'p') ADVANCE(620); END_STATE(); case 1086: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(192); + lookahead == 'p') ADVANCE(1308); END_STATE(); case 1087: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(1159); + lookahead == 'p') ADVANCE(177); END_STATE(); case 1088: - if (lookahead == 'Q' || - lookahead == 'q') ADVANCE(959); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(632); END_STATE(); case 1089: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(255); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1159); END_STATE(); case 1090: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(225); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1011); END_STATE(); case 1091: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1618); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(634); END_STATE(); case 1092: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1531); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1049); END_STATE(); case 1093: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1546); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(205); END_STATE(); case 1094: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1536); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1337); END_STATE(); case 1095: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1632); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1339); END_STATE(); case 1096: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1655); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(385); END_STATE(); case 1097: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(703); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(427); END_STATE(); case 1098: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1394); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(190); END_STATE(); case 1099: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(791); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1138); END_STATE(); case 1100: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1283); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(523); END_STATE(); case 1101: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(955); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1144); END_STATE(); case 1102: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1424); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(467); END_STATE(); case 1103: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(401); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(459); END_STATE(); case 1104: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1261); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(464); END_STATE(); case 1105: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(309); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1342); END_STATE(); case 1106: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1406); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(997); END_STATE(); case 1107: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(962); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1381); END_STATE(); case 1108: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(311); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(590); END_STATE(); case 1109: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(136); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(515); END_STATE(); case 1110: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(338); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(202); END_STATE(); case 1111: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(956); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(1185); END_STATE(); case 1112: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(314); + if (lookahead == 'Q' || + lookahead == 'q') ADVANCE(984); END_STATE(); case 1113: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(315); + lookahead == 'r') ADVANCE(268); END_STATE(); case 1114: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1211); + lookahead == 'r') ADVANCE(242); END_STATE(); case 1115: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(992); + lookahead == 'r') ADVANCE(1651); END_STATE(); case 1116: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(344); + lookahead == 'r') ADVANCE(1564); END_STATE(); case 1117: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(606); + lookahead == 'r') ADVANCE(1579); END_STATE(); case 1118: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(188); + lookahead == 'r') ADVANCE(1569); END_STATE(); case 1119: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(411); + lookahead == 'r') ADVANCE(1667); END_STATE(); case 1120: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1023); + lookahead == 'r') ADVANCE(1690); END_STATE(); case 1121: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1306); + lookahead == 'r') ADVANCE(722); END_STATE(); case 1122: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(415); + lookahead == 'r') ADVANCE(1424); END_STATE(); case 1123: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(504); + lookahead == 'r') ADVANCE(812); END_STATE(); case 1124: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(498); + lookahead == 'r') ADVANCE(1311); END_STATE(); case 1125: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(491); + lookahead == 'r') ADVANCE(976); END_STATE(); case 1126: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(384); + lookahead == 'r') ADVANCE(1455); END_STATE(); case 1127: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(484); + lookahead == 'r') ADVANCE(416); END_STATE(); case 1128: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(330); + lookahead == 'r') ADVANCE(1289); END_STATE(); case 1129: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(231); + lookahead == 'r') ADVANCE(322); END_STATE(); case 1130: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1221); + lookahead == 'r') ADVANCE(1436); END_STATE(); case 1131: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1065); + lookahead == 'r') ADVANCE(985); END_STATE(); case 1132: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(618); + lookahead == 'r') ADVANCE(324); END_STATE(); case 1133: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(523); + lookahead == 'r') ADVANCE(145); END_STATE(); case 1134: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(884); + lookahead == 'r') ADVANCE(977); END_STATE(); case 1135: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1438); + lookahead == 'r') ADVANCE(351); END_STATE(); case 1136: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(439); + lookahead == 'r') ADVANCE(327); END_STATE(); case 1137: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1144); + lookahead == 'r') ADVANCE(328); END_STATE(); case 1138: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(648); + lookahead == 'r') ADVANCE(1015); END_STATE(); case 1139: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(276); + lookahead == 'r') ADVANCE(1237); END_STATE(); case 1140: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1428); + lookahead == 'r') ADVANCE(426); END_STATE(); case 1141: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(626); + lookahead == 'r') ADVANCE(357); END_STATE(); case 1142: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(254); + lookahead == 'r') ADVANCE(623); END_STATE(); case 1143: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(341); + lookahead == 'r') ADVANCE(197); END_STATE(); case 1144: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(516); + lookahead == 'r') ADVANCE(1046); END_STATE(); case 1145: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(470); + lookahead == 'r') ADVANCE(1331); END_STATE(); case 1146: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1439); + lookahead == 'r') ADVANCE(428); END_STATE(); case 1147: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(675); + lookahead == 'r') ADVANCE(489); END_STATE(); case 1148: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(814); + lookahead == 'r') ADVANCE(520); END_STATE(); case 1149: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(476); + lookahead == 'r') ADVANCE(514); END_STATE(); case 1150: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1441); + lookahead == 'r') ADVANCE(507); END_STATE(); case 1151: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(682); + lookahead == 'r') ADVANCE(396); END_STATE(); case 1152: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1442); + lookahead == 'r') ADVANCE(343); END_STATE(); case 1153: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(684); + lookahead == 'r') ADVANCE(244); END_STATE(); case 1154: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1443); + lookahead == 'r') ADVANCE(1248); END_STATE(); case 1155: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(685); + lookahead == 'r') ADVANCE(1089); END_STATE(); case 1156: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(686); + lookahead == 'r') ADVANCE(539); END_STATE(); case 1157: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(191); + lookahead == 'r') ADVANCE(907); END_STATE(); case 1158: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(775); + lookahead == 'r') ADVANCE(1469); END_STATE(); case 1159: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(1036); + lookahead == 'r') ADVANCE(667); END_STATE(); case 1160: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(688); + lookahead == 'r') ADVANCE(636); END_STATE(); case 1161: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(506); + lookahead == 'r') ADVANCE(452); END_STATE(); case 1162: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(215); + lookahead == 'r') ADVANCE(289); END_STATE(); case 1163: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(744); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1459); END_STATE(); case 1164: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1487); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1170); END_STATE(); case 1165: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1626); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(642); END_STATE(); case 1166: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1583); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(267); END_STATE(); case 1167: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1513); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(354); END_STATE(); case 1168: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1508); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1037); END_STATE(); case 1169: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1562); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(500); END_STATE(); case 1170: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1576); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(532); END_STATE(); case 1171: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1611); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(483); END_STATE(); case 1172: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1688); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1470); END_STATE(); case 1173: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1570); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(694); END_STATE(); case 1174: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1572); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(834); END_STATE(); case 1175: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1642); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(491); END_STATE(); case 1176: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1654); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1472); END_STATE(); case 1177: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1510); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(701); END_STATE(); case 1178: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1694); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1473); END_STATE(); case 1179: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1575); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(703); END_STATE(); case 1180: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1534); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1474); END_STATE(); case 1181: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1515); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(704); END_STATE(); case 1182: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1532); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(705); END_STATE(); case 1183: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1571); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(200); END_STATE(); case 1184: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1517); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(796); END_STATE(); case 1185: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1610); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(1060); END_STATE(); case 1186: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1644); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(707); END_STATE(); case 1187: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1628); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(522); END_STATE(); case 1188: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(1634); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(225); END_STATE(); case 1189: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1643); + lookahead == 's') ADVANCE(1520); END_STATE(); case 1190: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1566); + lookahead == 's') ADVANCE(1659); END_STATE(); case 1191: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1516); + lookahead == 's') ADVANCE(1616); END_STATE(); case 1192: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1573); + lookahead == 's') ADVANCE(1546); END_STATE(); case 1193: if (lookahead == 'S' || - lookahead == 's') ADVANCE(564); + lookahead == 's') ADVANCE(1541); END_STATE(); case 1194: if (lookahead == 'S' || - lookahead == 's') ADVANCE(32); + lookahead == 's') ADVANCE(1595); END_STATE(); case 1195: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1437); + lookahead == 's') ADVANCE(1609); END_STATE(); case 1196: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1259); + lookahead == 's') ADVANCE(1644); END_STATE(); case 1197: if (lookahead == 'S' || - lookahead == 's') ADVANCE(698); + lookahead == 's') ADVANCE(1723); END_STATE(); case 1198: if (lookahead == 'S' || - lookahead == 's') ADVANCE(646); + lookahead == 's') ADVANCE(1603); END_STATE(); case 1199: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1396); + lookahead == 's') ADVANCE(1605); END_STATE(); case 1200: if (lookahead == 'S' || - lookahead == 's') ADVANCE(699); + lookahead == 's') ADVANCE(1677); END_STATE(); case 1201: if (lookahead == 'S' || - lookahead == 's') ADVANCE(532); + lookahead == 's') ADVANCE(1689); END_STATE(); case 1202: if (lookahead == 'S' || - lookahead == 's') ADVANCE(579); + lookahead == 's') ADVANCE(1543); END_STATE(); case 1203: if (lookahead == 'S' || - lookahead == 's') ADVANCE(128); + lookahead == 's') ADVANCE(1729); END_STATE(); case 1204: if (lookahead == 'S' || - lookahead == 's') ADVANCE(562); + lookahead == 's') ADVANCE(1608); END_STATE(); case 1205: if (lookahead == 'S' || - lookahead == 's') ADVANCE(563); + lookahead == 's') ADVANCE(1567); END_STATE(); case 1206: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1195); + lookahead == 's') ADVANCE(1548); END_STATE(); case 1207: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1082); + lookahead == 's') ADVANCE(1565); END_STATE(); case 1208: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1324); + lookahead == 's') ADVANCE(1604); END_STATE(); case 1209: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1201); + lookahead == 's') ADVANCE(1550); END_STATE(); case 1210: if (lookahead == 'S' || - lookahead == 's') ADVANCE(361); + lookahead == 's') ADVANCE(1643); END_STATE(); case 1211: if (lookahead == 'S' || - lookahead == 's') ADVANCE(659); + lookahead == 's') ADVANCE(1679); END_STATE(); case 1212: if (lookahead == 'S' || - lookahead == 's') ADVANCE(635); + lookahead == 's') ADVANCE(1661); END_STATE(); case 1213: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1334); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(268); + lookahead == 's') ADVANCE(1669); END_STATE(); case 1214: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1302); + lookahead == 's') ADVANCE(1678); END_STATE(); case 1215: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1168); + lookahead == 's') ADVANCE(1599); END_STATE(); case 1216: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1333); + lookahead == 's') ADVANCE(1549); END_STATE(); case 1217: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1295); + lookahead == 's') ADVANCE(1606); END_STATE(); case 1218: if (lookahead == 'S' || - lookahead == 's') ADVANCE(365); + lookahead == 's') ADVANCE(581); END_STATE(); case 1219: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1308); + lookahead == 's') ADVANCE(32); END_STATE(); case 1220: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1175); + lookahead == 's') ADVANCE(765); END_STATE(); case 1221: if (lookahead == 'S' || - lookahead == 's') ADVANCE(150); + lookahead == 's') ADVANCE(1468); END_STATE(); case 1222: if (lookahead == 'S' || - lookahead == 's') ADVANCE(467); + lookahead == 's') ADVANCE(717); END_STATE(); case 1223: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1274); + lookahead == 's') ADVANCE(1288); END_STATE(); case 1224: if (lookahead == 'S' || - lookahead == 's') ADVANCE(410); + lookahead == 's') ADVANCE(664); END_STATE(); case 1225: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1310); + lookahead == 's') ADVANCE(1426); END_STATE(); case 1226: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1329); + lookahead == 's') ADVANCE(260); END_STATE(); case 1227: if (lookahead == 'S' || - lookahead == 's') ADVANCE(370); + lookahead == 's') ADVANCE(718); END_STATE(); case 1228: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1386); + lookahead == 's') ADVANCE(546); END_STATE(); case 1229: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1277); + lookahead == 's') ADVANCE(609); END_STATE(); case 1230: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1205); + lookahead == 's') ADVANCE(138); END_STATE(); case 1231: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1285); + lookahead == 's') ADVANCE(579); END_STATE(); case 1232: if (lookahead == 'S' || - lookahead == 's') ADVANCE(517); + lookahead == 's') ADVANCE(580); END_STATE(); case 1233: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1467); + lookahead == 's') ADVANCE(1221); END_STATE(); case 1234: if (lookahead == 'S' || - lookahead == 's') ADVANCE(609); + lookahead == 's') ADVANCE(1106); END_STATE(); case 1235: if (lookahead == 'S' || - lookahead == 's') ADVANCE(294); + lookahead == 's') ADVANCE(1353); END_STATE(); case 1236: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1299); + lookahead == 's') ADVANCE(373); END_STATE(); case 1237: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1293); + lookahead == 's') ADVANCE(680); END_STATE(); case 1238: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1307); + lookahead == 's') ADVANCE(1228); END_STATE(); case 1239: if (lookahead == 'S' || - lookahead == 's') ADVANCE(970); + lookahead == 's') ADVANCE(654); END_STATE(); case 1240: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1127); + lookahead == 's') ADVANCE(1366); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(282); END_STATE(); case 1241: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1318); + lookahead == 's') ADVANCE(1349); END_STATE(); case 1242: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1440); + lookahead == 's') ADVANCE(1193); END_STATE(); case 1243: if (lookahead == 'S' || - lookahead == 's') ADVANCE(652); + lookahead == 's') ADVANCE(1362); END_STATE(); case 1244: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1243); + lookahead == 's') ADVANCE(1322); END_STATE(); case 1245: if (lookahead == 'S' || - lookahead == 's') ADVANCE(583); + lookahead == 's') ADVANCE(377); END_STATE(); case 1246: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1242); + lookahead == 's') ADVANCE(1359); END_STATE(); case 1247: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1365); + lookahead == 's') ADVANCE(1200); END_STATE(); case 1248: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1245); + lookahead == 's') ADVANCE(160); END_STATE(); case 1249: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1343); + lookahead == 's') ADVANCE(1333); END_STATE(); case 1250: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1337); + lookahead == 's') ADVANCE(480); END_STATE(); case 1251: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1339); + lookahead == 's') ADVANCE(1302); END_STATE(); case 1252: if (lookahead == 'S' || - lookahead == 's') ADVANCE(280); + lookahead == 's') ADVANCE(422); END_STATE(); case 1253: if (lookahead == 'S' || - lookahead == 's') ADVANCE(533); + lookahead == 's') ADVANCE(1336); END_STATE(); case 1254: if (lookahead == 'S' || - lookahead == 's') ADVANCE(534); + lookahead == 's') ADVANCE(1357); END_STATE(); case 1255: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1367); + lookahead == 's') ADVANCE(382); END_STATE(); case 1256: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1366); + lookahead == 's') ADVANCE(1416); END_STATE(); case 1257: if (lookahead == 'S' || - lookahead == 's') ADVANCE(1376); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(272); + lookahead == 's') ADVANCE(1232); END_STATE(); case 1258: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(566); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1305); END_STATE(); case 1259: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1495); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1313); END_STATE(); case 1260: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1505); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(533); END_STATE(); case 1261: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1633); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1498); END_STATE(); case 1262: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1616); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(626); END_STATE(); case 1263: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(771); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(307); END_STATE(); case 1264: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(622); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1326); END_STATE(); case 1265: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1661); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1320); END_STATE(); case 1266: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(644); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1335); END_STATE(); case 1267: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1686); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(993); END_STATE(); case 1268: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1648); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1344); END_STATE(); case 1269: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1558); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1471); END_STATE(); case 1270: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1579); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(671); END_STATE(); case 1271: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1502); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1270); END_STATE(); case 1272: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1520); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(599); END_STATE(); case 1273: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1535); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1269); END_STATE(); case 1274: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1542); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1395); END_STATE(); case 1275: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1685); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1272); END_STATE(); case 1276: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1560); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1169); END_STATE(); case 1277: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1627); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1372); END_STATE(); case 1278: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(13); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1365); END_STATE(); case 1279: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(943); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1368); END_STATE(); case 1280: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(14); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(293); END_STATE(); case 1281: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(10); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(549); END_STATE(); case 1282: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(572); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(550); END_STATE(); case 1283: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(608); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1397); END_STATE(); case 1284: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(238); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1396); END_STATE(); case 1285: + if (lookahead == 'S' || + lookahead == 's') ADVANCE(1406); if (lookahead == 'T' || - lookahead == 't') ADVANCE(16); + lookahead == 't') ADVANCE(285); END_STATE(); case 1286: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1476); + lookahead == 't') ADVANCE(583); END_STATE(); case 1287: if (lookahead == 'T' || - lookahead == 't') ADVANCE(561); + lookahead == 't') ADVANCE(1538); END_STATE(); case 1288: if (lookahead == 'T' || - lookahead == 't') ADVANCE(456); + lookahead == 't') ADVANCE(1528); END_STATE(); case 1289: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1453); + lookahead == 't') ADVANCE(1668); END_STATE(); case 1290: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1405); + lookahead == 't') ADVANCE(1649); END_STATE(); case 1291: if (lookahead == 'T' || - lookahead == 't') ADVANCE(638); + lookahead == 't') ADVANCE(792); END_STATE(); case 1292: if (lookahead == 'T' || - lookahead == 't') ADVANCE(954); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1452); + lookahead == 't') ADVANCE(638); END_STATE(); case 1293: if (lookahead == 'T' || - lookahead == 't') ADVANCE(611); + lookahead == 't') ADVANCE(1696); END_STATE(); case 1294: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1456); + lookahead == 't') ADVANCE(662); END_STATE(); case 1295: if (lookahead == 'T' || - lookahead == 't') ADVANCE(328); + lookahead == 't') ADVANCE(1721); END_STATE(); case 1296: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1458); + lookahead == 't') ADVANCE(1683); END_STATE(); case 1297: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1459); + lookahead == 't') ADVANCE(1591); END_STATE(); case 1298: if (lookahead == 'T' || - lookahead == 't') ADVANCE(950); + lookahead == 't') ADVANCE(1612); END_STATE(); case 1299: if (lookahead == 'T' || - lookahead == 't') ADVANCE(976); + lookahead == 't') ADVANCE(1535); END_STATE(); case 1300: if (lookahead == 'T' || - lookahead == 't') ADVANCE(674); + lookahead == 't') ADVANCE(1553); END_STATE(); case 1301: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1289); + lookahead == 't') ADVANCE(1568); END_STATE(); case 1302: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1235); + lookahead == 't') ADVANCE(1575); END_STATE(); case 1303: if (lookahead == 'T' || - lookahead == 't') ADVANCE(501); + lookahead == 't') ADVANCE(1720); END_STATE(); case 1304: if (lookahead == 'T' || - lookahead == 't') ADVANCE(631); + lookahead == 't') ADVANCE(1593); END_STATE(); case 1305: if (lookahead == 'T' || - lookahead == 't') ADVANCE(494); + lookahead == 't') ADVANCE(1660); END_STATE(); case 1306: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1169); + lookahead == 't') ADVANCE(13); END_STATE(); case 1307: if (lookahead == 'T' || - lookahead == 't') ADVANCE(406); + lookahead == 't') ADVANCE(966); END_STATE(); case 1308: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1174); + lookahead == 't') ADVANCE(14); END_STATE(); case 1309: if (lookahead == 'T' || - lookahead == 't') ADVANCE(946); + lookahead == 't') ADVANCE(10); END_STATE(); case 1310: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1253); + lookahead == 't') ADVANCE(589); END_STATE(); case 1311: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1180); + lookahead == 't') ADVANCE(624); END_STATE(); case 1312: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1181); + lookahead == 't') ADVANCE(250); END_STATE(); case 1313: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1187); + lookahead == 't') ADVANCE(16); END_STATE(); case 1314: if (lookahead == 'T' || - lookahead == 't') ADVANCE(461); + lookahead == 't') ADVANCE(1507); END_STATE(); case 1315: if (lookahead == 'T' || - lookahead == 't') ADVANCE(443); + lookahead == 't') ADVANCE(578); END_STATE(); case 1316: if (lookahead == 'T' || - lookahead == 't') ADVANCE(435); + lookahead == 't') ADVANCE(469); END_STATE(); case 1317: if (lookahead == 'T' || - lookahead == 't') ADVANCE(414); + lookahead == 't') ADVANCE(1484); END_STATE(); case 1318: if (lookahead == 'T' || - lookahead == 't') ADVANCE(438); + lookahead == 't') ADVANCE(656); END_STATE(); case 1319: if (lookahead == 'T' || - lookahead == 't') ADVANCE(445); + lookahead == 't') ADVANCE(979); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1483); END_STATE(); case 1320: if (lookahead == 'T' || - lookahead == 't') ADVANCE(586); + lookahead == 't') ADVANCE(628); END_STATE(); case 1321: if (lookahead == 'T' || - lookahead == 't') ADVANCE(567); + lookahead == 't') ADVANCE(1488); END_STATE(); case 1322: if (lookahead == 'T' || - lookahead == 't') ADVANCE(958); + lookahead == 't') ADVANCE(341); END_STATE(); case 1323: if (lookahead == 'T' || - lookahead == 't') ADVANCE(570); + lookahead == 't') ADVANCE(1489); END_STATE(); case 1324: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1301); + lookahead == 't') ADVANCE(1490); END_STATE(); case 1325: if (lookahead == 'T' || - lookahead == 't') ADVANCE(574); + lookahead == 't') ADVANCE(973); END_STATE(); case 1326: if (lookahead == 'T' || - lookahead == 't') ADVANCE(619); + lookahead == 't') ADVANCE(999); END_STATE(); case 1327: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1466); + lookahead == 't') ADVANCE(693); END_STATE(); case 1328: if (lookahead == 'T' || - lookahead == 't') ADVANCE(803); + lookahead == 't') ADVANCE(1317); END_STATE(); case 1329: if (lookahead == 'T' || - lookahead == 't') ADVANCE(904); + lookahead == 't') ADVANCE(649); END_STATE(); case 1330: if (lookahead == 'T' || - lookahead == 't') ADVANCE(577); + lookahead == 't') ADVANCE(517); END_STATE(); case 1331: if (lookahead == 'T' || - lookahead == 't') ADVANCE(578); + lookahead == 't') ADVANCE(1194); END_STATE(); case 1332: if (lookahead == 'T' || - lookahead == 't') ADVANCE(427); + lookahead == 't') ADVANCE(510); END_STATE(); case 1333: if (lookahead == 'T' || - lookahead == 't') ADVANCE(716); + lookahead == 't') ADVANCE(1199); END_STATE(); case 1334: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1124); + lookahead == 't') ADVANCE(969); END_STATE(); case 1335: if (lookahead == 'T' || - lookahead == 't') ADVANCE(580); + lookahead == 't') ADVANCE(419); END_STATE(); case 1336: if (lookahead == 'T' || - lookahead == 't') ADVANCE(434); + lookahead == 't') ADVANCE(1281); END_STATE(); case 1337: if (lookahead == 'T' || - lookahead == 't') ADVANCE(712); + lookahead == 't') ADVANCE(1205); END_STATE(); case 1338: if (lookahead == 'T' || - lookahead == 't') ADVANCE(582); + lookahead == 't') ADVANCE(1206); END_STATE(); case 1339: if (lookahead == 'T' || - lookahead == 't') ADVANCE(713); + lookahead == 't') ADVANCE(1212); END_STATE(); case 1340: if (lookahead == 'T' || - lookahead == 't') ADVANCE(632); + lookahead == 't') ADVANCE(473); END_STATE(); case 1341: if (lookahead == 'T' || - lookahead == 't') ADVANCE(633); + lookahead == 't') ADVANCE(456); END_STATE(); case 1342: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1317); + lookahead == 't') ADVANCE(448); END_STATE(); case 1343: if (lookahead == 'T' || - lookahead == 't') ADVANCE(444); + lookahead == 't') ADVANCE(425); END_STATE(); case 1344: if (lookahead == 'T' || - lookahead == 't') ADVANCE(448); + lookahead == 't') ADVANCE(451); END_STATE(); case 1345: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1319); + lookahead == 't') ADVANCE(458); END_STATE(); case 1346: if (lookahead == 'T' || - lookahead == 't') ADVANCE(472); + lookahead == 't') ADVANCE(602); END_STATE(); case 1347: if (lookahead == 'T' || @@ -10804,1307 +10850,1445 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1348: if (lookahead == 'T' || - lookahead == 't') ADVANCE(660); + lookahead == 't') ADVANCE(981); END_STATE(); case 1349: if (lookahead == 'T' || - lookahead == 't') ADVANCE(687); + lookahead == 't') ADVANCE(1263); END_STATE(); case 1350: if (lookahead == 'T' || - lookahead == 't') ADVANCE(478); + lookahead == 't') ADVANCE(635); END_STATE(); case 1351: if (lookahead == 'T' || - lookahead == 't') ADVANCE(474); + lookahead == 't') ADVANCE(587); END_STATE(); case 1352: if (lookahead == 'T' || - lookahead == 't') ADVANCE(662); + lookahead == 't') ADVANCE(669); END_STATE(); case 1353: if (lookahead == 'T' || - lookahead == 't') ADVANCE(658); + lookahead == 't') ADVANCE(1328); END_STATE(); case 1354: if (lookahead == 'T' || - lookahead == 't') ADVANCE(663); + lookahead == 't') ADVANCE(591); END_STATE(); case 1355: if (lookahead == 'T' || - lookahead == 't') ADVANCE(664); + lookahead == 't') ADVANCE(1496); END_STATE(); case 1356: if (lookahead == 'T' || - lookahead == 't') ADVANCE(665); + lookahead == 't') ADVANCE(824); END_STATE(); case 1357: if (lookahead == 'T' || - lookahead == 't') ADVANCE(666); + lookahead == 't') ADVANCE(927); END_STATE(); case 1358: if (lookahead == 'T' || - lookahead == 't') ADVANCE(667); + lookahead == 't') ADVANCE(594); END_STATE(); case 1359: if (lookahead == 'T' || - lookahead == 't') ADVANCE(668); + lookahead == 't') ADVANCE(1168); END_STATE(); case 1360: if (lookahead == 'T' || - lookahead == 't') ADVANCE(669); + lookahead == 't') ADVANCE(595); END_STATE(); case 1361: if (lookahead == 'T' || - lookahead == 't') ADVANCE(670); + lookahead == 't') ADVANCE(442); END_STATE(); case 1362: if (lookahead == 'T' || - lookahead == 't') ADVANCE(671); + lookahead == 't') ADVANCE(735); END_STATE(); case 1363: if (lookahead == 'T' || - lookahead == 't') ADVANCE(672); + lookahead == 't') ADVANCE(596); END_STATE(); case 1364: if (lookahead == 'T' || - lookahead == 't') ADVANCE(678); + lookahead == 't') ADVANCE(446); END_STATE(); case 1365: if (lookahead == 'T' || - lookahead == 't') ADVANCE(719); + lookahead == 't') ADVANCE(730); END_STATE(); case 1366: if (lookahead == 'T' || - lookahead == 't') ADVANCE(720); + lookahead == 't') ADVANCE(1149); END_STATE(); case 1367: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1254); + lookahead == 't') ADVANCE(598); END_STATE(); case 1368: if (lookahead == 'T' || - lookahead == 't') ADVANCE(689); + lookahead == 't') ADVANCE(731); END_STATE(); case 1369: if (lookahead == 'T' || - lookahead == 't') ADVANCE(690); + lookahead == 't') ADVANCE(650); END_STATE(); case 1370: if (lookahead == 'T' || - lookahead == 't') ADVANCE(691); + lookahead == 't') ADVANCE(651); END_STATE(); case 1371: if (lookahead == 'T' || - lookahead == 't') ADVANCE(692); + lookahead == 't') ADVANCE(1343); END_STATE(); case 1372: if (lookahead == 'T' || - lookahead == 't') ADVANCE(693); + lookahead == 't') ADVANCE(457); END_STATE(); case 1373: if (lookahead == 'T' || - lookahead == 't') ADVANCE(694); + lookahead == 't') ADVANCE(461); END_STATE(); case 1374: if (lookahead == 'T' || - lookahead == 't') ADVANCE(695); + lookahead == 't') ADVANCE(1345); END_STATE(); case 1375: if (lookahead == 'T' || - lookahead == 't') ADVANCE(696); + lookahead == 't') ADVANCE(1437); END_STATE(); case 1376: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1161); + lookahead == 't') ADVANCE(484); END_STATE(); case 1377: if (lookahead == 'T' || - lookahead == 't') ADVANCE(18); + lookahead == 't') ADVANCE(600); END_STATE(); case 1378: if (lookahead == 'T' || - lookahead == 't') ADVANCE(595); + lookahead == 't') ADVANCE(678); END_STATE(); case 1379: if (lookahead == 'T' || - lookahead == 't') ADVANCE(596); + lookahead == 't') ADVANCE(706); END_STATE(); case 1380: if (lookahead == 'T' || - lookahead == 't') ADVANCE(597); + lookahead == 't') ADVANCE(492); END_STATE(); case 1381: if (lookahead == 'T' || - lookahead == 't') ADVANCE(598); + lookahead == 't') ADVANCE(487); END_STATE(); case 1382: if (lookahead == 'T' || - lookahead == 't') ADVANCE(599); + lookahead == 't') ADVANCE(681); END_STATE(); case 1383: if (lookahead == 'T' || - lookahead == 't') ADVANCE(600); + lookahead == 't') ADVANCE(677); END_STATE(); case 1384: if (lookahead == 'T' || - lookahead == 't') ADVANCE(601); + lookahead == 't') ADVANCE(682); END_STATE(); case 1385: if (lookahead == 'T' || - lookahead == 't') ADVANCE(602); + lookahead == 't') ADVANCE(683); END_STATE(); case 1386: if (lookahead == 'T' || - lookahead == 't') ADVANCE(219); + lookahead == 't') ADVANCE(684); END_STATE(); case 1387: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(614); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(685); END_STATE(); case 1388: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(458); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(686); END_STATE(); case 1389: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(540); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(687); END_STATE(); case 1390: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(332); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(688); END_STATE(); case 1391: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(794); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(689); END_STATE(); case 1392: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1282); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(690); END_STATE(); case 1393: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(748); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(691); END_STATE(); case 1394: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(359); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(697); END_STATE(); case 1395: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1132); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(740); END_STATE(); case 1396: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(134); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(741); END_STATE(); case 1397: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(915); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1282); END_STATE(); case 1398: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1320); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(708); END_STATE(); case 1399: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1272); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(709); END_STATE(); case 1400: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1273); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(710); END_STATE(); case 1401: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1276); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(711); END_STATE(); case 1402: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(865); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(712); END_STATE(); case 1403: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(750); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(713); END_STATE(); case 1404: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1309); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(714); END_STATE(); case 1405: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1123); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(715); END_STATE(); case 1406: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1217); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1187); END_STATE(); case 1407: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1126); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(18); END_STATE(); case 1408: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(896); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(612); END_STATE(); case 1409: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(886); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(613); END_STATE(); case 1410: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1241); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(614); END_STATE(); case 1411: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1379); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(615); END_STATE(); case 1412: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1380); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(616); END_STATE(); case 1413: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1382); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(617); END_STATE(); case 1414: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1383); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(618); END_STATE(); case 1415: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1384); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(619); END_STATE(); case 1416: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1385); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(229); END_STATE(); case 1417: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1662); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(631); END_STATE(); case 1418: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(1656); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(471); END_STATE(); case 1419: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(465); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(556); END_STATE(); case 1420: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(642); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(345); END_STATE(); case 1421: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(649); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(815); END_STATE(); case 1422: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(429); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1310); END_STATE(); case 1423: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(369); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(769); END_STATE(); case 1424: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(154); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(371); END_STATE(); case 1425: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(372); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1160); END_STATE(); case 1426: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(375); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(144); END_STATE(); case 1427: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(379); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(938); END_STATE(); case 1428: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(442); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1346); END_STATE(); case 1429: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(681); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1300); END_STATE(); case 1430: - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(680); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1301); END_STATE(); case 1431: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(1668); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1304); END_STATE(); case 1432: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(112); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(887); END_STATE(); case 1433: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(902); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(771); END_STATE(); case 1434: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(131); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1147); END_STATE(); case 1435: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(837); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1334); END_STATE(); case 1436: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(189); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1244); END_STATE(); case 1437: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(964); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1148); END_STATE(); case 1438: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(146); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(919); END_STATE(); case 1439: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(148); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1151); END_STATE(); case 1440: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(977); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(909); END_STATE(); case 1441: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(149); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1268); END_STATE(); case 1442: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(153); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1409); END_STATE(); case 1443: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(155); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1410); END_STATE(); case 1444: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(923); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1412); END_STATE(); case 1445: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(924); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1413); END_STATE(); case 1446: - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(927); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1414); END_STATE(); case 1447: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1657); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(1415); END_STATE(); case 1448: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(331); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1697); END_STATE(); case 1449: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(273); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(1691); END_STATE(); case 1450: - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(208); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(371); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(478); END_STATE(); case 1451: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1504); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(660); END_STATE(); case 1452: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(289); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(666); END_STATE(); case 1453: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1651); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(441); END_STATE(); case 1454: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1503); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(381); END_STATE(); case 1455: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1695); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(164); END_STATE(); case 1456: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1669); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(384); END_STATE(); case 1457: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1578); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(388); END_STATE(); case 1458: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1565); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(391); END_STATE(); case 1459: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1569); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(455); END_STATE(); case 1460: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1568); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(700); END_STATE(); case 1461: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1067); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(699); END_STATE(); case 1462: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(739); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1703); END_STATE(); case 1463: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(246); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(122); END_STATE(); case 1464: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(271); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(925); END_STATE(); case 1465: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1167); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(141); END_STATE(); case 1466: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1078); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(859); END_STATE(); case 1467: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1238); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(198); END_STATE(); case 1468: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1236); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(987); END_STATE(); case 1469: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(110); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(156); END_STATE(); case 1470: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(141); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(158); END_STATE(); case 1471: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1234); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(1000); END_STATE(); case 1472: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1172); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(159); END_STATE(); case 1473: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1176); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(163); END_STATE(); case 1474: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1327); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(165); END_STATE(); case 1475: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1072); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(946); END_STATE(); case 1476: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(711); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(947); END_STATE(); case 1477: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(339); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(950); END_STATE(); case 1478: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(587); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(1692); END_STATE(); case 1479: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(1087); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(344); END_STATE(); case 1480: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(374); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(286); END_STATE(); case 1481: - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(381); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(218); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(383); END_STATE(); case 1482: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1548); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1537); END_STATE(); case 1483: - if (eof) ADVANCE(1484); - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1485); - if (lookahead == '=') ADVANCE(1497); - if (lookahead == 'A') ADVANCE(306); - if (lookahead == 'C') ADVANCE(104); - if (lookahead == 'E') ADVANCE(852); - if (lookahead == 'L') ADVANCE(941); - if (lookahead == 'N') ADVANCE(1034); - if (lookahead == 'R') ADVANCE(356); - if (lookahead == 'T') ADVANCE(107); - if (lookahead == 'a') ADVANCE(77); - if (lookahead == 'c') ADVANCE(96); - if (lookahead == 'e') ADVANCE(79); - if (lookahead == 'l') ADVANCE(57); - if (lookahead == 'n') ADVANCE(60); - if (lookahead == 'r') ADVANCE(47); - if (lookahead == 't') ADVANCE(83); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(111); - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(604); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(302); + END_STATE(); + case 1484: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1686); + END_STATE(); + case 1485: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1536); + END_STATE(); + case 1486: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1730); + END_STATE(); + case 1487: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1611); + END_STATE(); + case 1488: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1704); + END_STATE(); + case 1489: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1598); + END_STATE(); + case 1490: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1602); + END_STATE(); + case 1491: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1601); + END_STATE(); + case 1492: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1090); + END_STATE(); + case 1493: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(760); + END_STATE(); + case 1494: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(258); + END_STATE(); + case 1495: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(284); + END_STATE(); + case 1496: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1102); + END_STATE(); + case 1497: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1192); + END_STATE(); + case 1498: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1266); + END_STATE(); + case 1499: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1264); + END_STATE(); + case 1500: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(120); + END_STATE(); + case 1501: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(151); + END_STATE(); + case 1502: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1262); + END_STATE(); + case 1503: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1197); + END_STATE(); + case 1504: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1201); + END_STATE(); + case 1505: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1355); + END_STATE(); + case 1506: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1096); + END_STATE(); + case 1507: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(729); + END_STATE(); + case 1508: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1246); + END_STATE(); + case 1509: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(352); + END_STATE(); + case 1510: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(603); + END_STATE(); + case 1511: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(1111); + END_STATE(); + case 1512: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(386); + END_STATE(); + case 1513: + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(393); + END_STATE(); + case 1514: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); + END_STATE(); + case 1515: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(1581); + END_STATE(); + case 1516: + if (eof) ADVANCE(1517); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1518); + if (lookahead == '=') ADVANCE(1530); + if (lookahead == 'A') ADVANCE(319); + if (lookahead == 'C') ADVANCE(114); + if (lookahead == 'E') ADVANCE(874); + if (lookahead == 'L') ADVANCE(964); + if (lookahead == 'N') ADVANCE(1058); + if (lookahead == 'R') ADVANCE(368); + if (lookahead == 'T') ADVANCE(117); + if (lookahead == 'a') ADVANCE(81); + if (lookahead == 'c') ADVANCE(103); + if (lookahead == 'e') ADVANCE(83); + if (lookahead == 'l') ADVANCE(59); + if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'r') ADVANCE(48); + if (lookahead == 't') ADVANCE(87); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(121); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(621); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(607); + lookahead == 'f') ADVANCE(625); if (lookahead == 'G' || - lookahead == 'g') ADVANCE(114); + lookahead == 'g') ADVANCE(124); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(115); + lookahead == 'h') ADVANCE(125); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(335); + lookahead == 'i') ADVANCE(348); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(220); + lookahead == 'k') ADVANCE(230); if (lookahead == 'M' || - lookahead == 'm') ADVANCE(105); + lookahead == 'm') ADVANCE(115); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(233); if (lookahead == 'P' || - lookahead == 'p') ADVANCE(120); + lookahead == 'p') ADVANCE(134); if (lookahead == 'S' || - lookahead == 's') ADVANCE(358); + lookahead == 's') ADVANCE(370); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(1058); + lookahead == 'u') ADVANCE(1082); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(450); + lookahead == 'v') ADVANCE(463); if (lookahead == 'X' || lookahead == 'x') ADVANCE(24); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(1483) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1486); + lookahead == ' ') SKIP(1516) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1519); END_STATE(); - case 1484: + case 1517: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 1485: + case 1518: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1485); + lookahead != '\n') ADVANCE(1518); END_STATE(); - case 1486: + case 1519: ACCEPT_TOKEN(sym_number); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1519); END_STATE(); - case 1487: + case 1520: ACCEPT_TOKEN(aux_sym_boolean_token1); END_STATE(); - case 1488: + case 1521: ACCEPT_TOKEN(aux_sym_boolean_token2); END_STATE(); - case 1489: + case 1522: ACCEPT_TOKEN(aux_sym_boolean_token3); END_STATE(); - case 1490: + case 1523: ACCEPT_TOKEN(aux_sym_boolean_token3); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(360); + lookahead == 'n') ADVANCE(372); END_STATE(); - case 1491: + case 1524: ACCEPT_TOKEN(aux_sym_boolean_token4); END_STATE(); - case 1492: + case 1525: ACCEPT_TOKEN(aux_sym_pattern_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1492); + lookahead != '\n') ADVANCE(1525); END_STATE(); - case 1493: + case 1526: ACCEPT_TOKEN(sym_time_format); END_STATE(); - case 1494: + case 1527: ACCEPT_TOKEN(sym_time_format); - if (sym_time_format_character_set_1(lookahead)) ADVANCE(1493); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1494); + if (sym_time_format_character_set_1(lookahead)) ADVANCE(1526); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1527); END_STATE(); - case 1495: + case 1528: ACCEPT_TOKEN(aux_sym_host_token1); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(172); + lookahead == 'b') ADVANCE(182); if (lookahead == 'K' || - lookahead == 'k') ADVANCE(464); + lookahead == 'k') ADVANCE(476); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(121); + lookahead == 'n') ADVANCE(129); END_STATE(); - case 1496: + case 1529: ACCEPT_TOKEN(aux_sym_host_token2); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1496); + lookahead == ' ') ADVANCE(1529); END_STATE(); - case 1497: + case 1530: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 1498: + case 1531: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1492); + lookahead != '\n') ADVANCE(1525); END_STATE(); - case 1499: + case 1532: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 1500: + case 1533: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead != 0 && - lookahead != '\n') ADVANCE(1492); + lookahead != '\n') ADVANCE(1525); END_STATE(); - case 1501: + case 1534: ACCEPT_TOKEN(aux_sym_match_token1); END_STATE(); - case 1502: + case 1535: ACCEPT_TOKEN(aux_sym_add_keys_to_agent_token1); END_STATE(); - case 1503: + case 1536: ACCEPT_TOKEN(aux_sym_address_family_token1); END_STATE(); - case 1504: + case 1537: ACCEPT_TOKEN(aux_sym_address_family_value_token1); END_STATE(); - case 1505: + case 1538: ACCEPT_TOKEN(aux_sym_address_family_value_token2); - if (lookahead == '6') ADVANCE(1506); + if (lookahead == '6') ADVANCE(1539); END_STATE(); - case 1506: + case 1539: ACCEPT_TOKEN(aux_sym_address_family_value_token3); END_STATE(); - case 1507: + case 1540: ACCEPT_TOKEN(aux_sym_batch_mode_token1); END_STATE(); - case 1508: + case 1541: ACCEPT_TOKEN(aux_sym_bind_address_token1); END_STATE(); - case 1509: + case 1542: ACCEPT_TOKEN(aux_sym_bind_interface_token1); END_STATE(); - case 1510: + case 1543: ACCEPT_TOKEN(aux_sym_canonical_domains_token1); END_STATE(); - case 1511: + case 1544: ACCEPT_TOKEN(aux_sym_canonicalize_fallback_local_token1); END_STATE(); - case 1512: + case 1545: ACCEPT_TOKEN(aux_sym_canonicalize_hostname_token1); END_STATE(); - case 1513: + case 1546: ACCEPT_TOKEN(aux_sym_canonicalize_hostname_value_token1); END_STATE(); - case 1514: + case 1547: ACCEPT_TOKEN(aux_sym_canonicalize_hostname_value_token2); END_STATE(); - case 1515: + case 1548: ACCEPT_TOKEN(aux_sym_canonicalize_max_dots_token1); END_STATE(); - case 1516: + case 1549: ACCEPT_TOKEN(aux_sym_canonicalize_permitted_cnames_token1); END_STATE(); - case 1517: + case 1550: ACCEPT_TOKEN(aux_sym_ca_signature_algorithms_token1); END_STATE(); - case 1518: + case 1551: ACCEPT_TOKEN(aux_sym_certificate_file_token1); END_STATE(); - case 1519: + case 1552: ACCEPT_TOKEN(aux_sym_challenge_response_authentication_token1); END_STATE(); - case 1520: + case 1553: ACCEPT_TOKEN(aux_sym_channel_timeout_token1); END_STATE(); - case 1521: + case 1554: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token1); END_STATE(); - case 1522: + case 1555: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token2); END_STATE(); - case 1523: + case 1556: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token3); END_STATE(); - case 1524: + case 1557: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token4); END_STATE(); - case 1525: + case 1558: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token5); END_STATE(); - case 1526: + case 1559: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token6); if (lookahead == 'T' || - lookahead == 't') ADVANCE(1475); + lookahead == 't') ADVANCE(1506); END_STATE(); - case 1527: + case 1560: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token7); END_STATE(); - case 1528: + case 1561: ACCEPT_TOKEN(aux_sym_channel_timeout_type_token8); END_STATE(); - case 1529: + case 1562: ACCEPT_TOKEN(aux_sym_check_host_ip_token1); END_STATE(); - case 1530: + case 1563: ACCEPT_TOKEN(aux_sym_ciphers_token1); END_STATE(); - case 1531: + case 1564: ACCEPT_TOKEN(aux_sym_cipher_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(1530); + lookahead == 's') ADVANCE(1563); END_STATE(); - case 1532: + case 1565: ACCEPT_TOKEN(aux_sym_clear_all_forwardings_token1); END_STATE(); - case 1533: + case 1566: ACCEPT_TOKEN(aux_sym_compression_token1); END_STATE(); - case 1534: + case 1567: ACCEPT_TOKEN(aux_sym_connection_attempts_token1); END_STATE(); - case 1535: + case 1568: ACCEPT_TOKEN(aux_sym_connect_timeout_token1); END_STATE(); - case 1536: + case 1569: ACCEPT_TOKEN(aux_sym_control_master_token1); END_STATE(); - case 1537: + case 1570: ACCEPT_TOKEN(aux_sym_control_master_value_token1); END_STATE(); - case 1538: + case 1571: ACCEPT_TOKEN(aux_sym_control_master_value_token2); END_STATE(); - case 1539: + case 1572: ACCEPT_TOKEN(aux_sym_control_master_value_token2); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1197); + lookahead == 'a') ADVANCE(1222); END_STATE(); - case 1540: + case 1573: ACCEPT_TOKEN(aux_sym_control_master_value_token3); END_STATE(); - case 1541: + case 1574: ACCEPT_TOKEN(aux_sym_control_path_token1); END_STATE(); - case 1542: + case 1575: ACCEPT_TOKEN(aux_sym_control_persist_token1); END_STATE(); - case 1543: + case 1576: ACCEPT_TOKEN(aux_sym_dynamic_forward_token1); END_STATE(); - case 1544: + case 1577: ACCEPT_TOKEN(aux_sym_enable_escape_commandline_token1); END_STATE(); - case 1545: + case 1578: ACCEPT_TOKEN(aux_sym_enable_ssh_keysign_token1); END_STATE(); - case 1546: + case 1579: ACCEPT_TOKEN(aux_sym_escape_char_token1); END_STATE(); - case 1547: + case 1580: ACCEPT_TOKEN(anon_sym_none); END_STATE(); - case 1548: + case 1581: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); END_STATE(); - case 1549: + case 1582: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1548); - if (lookahead == '=') ADVANCE(1497); - if (lookahead == '^') ADVANCE(1482); - if (lookahead == 'n') ADVANCE(1552); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1581); + if (lookahead == '=') ADVANCE(1530); + if (lookahead == '^') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(1585); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1549); - if (lookahead != 0) ADVANCE(1548); + lookahead == ' ') ADVANCE(1582); + if (lookahead != 0) ADVANCE(1581); END_STATE(); - case 1550: + case 1583: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); - if (lookahead == '"') ADVANCE(1499); - if (lookahead == '#') ADVANCE(1548); - if (lookahead == '^') ADVANCE(1482); - if (lookahead == 'n') ADVANCE(1552); + if (lookahead == '"') ADVANCE(1532); + if (lookahead == '#') ADVANCE(1581); + if (lookahead == '^') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(1585); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1550); - if (lookahead != 0) ADVANCE(1548); + lookahead == ' ') ADVANCE(1583); + if (lookahead != 0) ADVANCE(1581); END_STATE(); - case 1551: + case 1584: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); - if (lookahead == '#') ADVANCE(1548); - if (lookahead == '^') ADVANCE(1482); - if (lookahead == 'n') ADVANCE(1552); + if (lookahead == '#') ADVANCE(1581); + if (lookahead == '^') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(1585); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(1551); - if (lookahead != 0) ADVANCE(1548); + lookahead == ' ') ADVANCE(1584); + if (lookahead != 0) ADVANCE(1581); END_STATE(); - case 1552: + case 1585: ACCEPT_TOKEN(aux_sym_escape_char_value_token1); - if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'o') ADVANCE(96); END_STATE(); - case 1553: + case 1586: ACCEPT_TOKEN(aux_sym_exit_on_forward_failure_token1); END_STATE(); - case 1554: + case 1587: ACCEPT_TOKEN(aux_sym_fingerprint_hash_token1); END_STATE(); - case 1555: + case 1588: ACCEPT_TOKEN(anon_sym_md5); END_STATE(); - case 1556: + case 1589: ACCEPT_TOKEN(anon_sym_sha256); END_STATE(); - case 1557: + case 1590: ACCEPT_TOKEN(aux_sym_fork_after_authentication_token1); END_STATE(); - case 1558: + case 1591: ACCEPT_TOKEN(aux_sym_forward_agent_token1); END_STATE(); - case 1559: + case 1592: ACCEPT_TOKEN(aux_sym_forward_x11_token1); if (lookahead == 'T' || - lookahead == 't') ADVANCE(683); + lookahead == 't') ADVANCE(702); END_STATE(); - case 1560: + case 1593: ACCEPT_TOKEN(aux_sym_forward_x11_timeout_token1); END_STATE(); - case 1561: + case 1594: ACCEPT_TOKEN(aux_sym_forward_x11_trusted_token1); END_STATE(); - case 1562: + case 1595: ACCEPT_TOKEN(aux_sym_gateway_ports_token1); END_STATE(); - case 1563: + case 1596: ACCEPT_TOKEN(aux_sym_global_known_hosts_file_token1); END_STATE(); - case 1564: + case 1597: ACCEPT_TOKEN(aux_sym_gssapi_authentication_token1); END_STATE(); - case 1565: + case 1598: ACCEPT_TOKEN(aux_sym_gssapi_client_identity_token1); END_STATE(); - case 1566: + case 1599: ACCEPT_TOKEN(aux_sym_gssapi_delegate_credentials_token1); END_STATE(); - case 1567: + case 1600: ACCEPT_TOKEN(aux_sym_gssapi_key_exchange_token1); END_STATE(); - case 1568: + case 1601: ACCEPT_TOKEN(aux_sym_gssapi_renewal_forces_rekey_token1); END_STATE(); - case 1569: + case 1602: ACCEPT_TOKEN(aux_sym_gssapi_server_identity_token1); END_STATE(); - case 1570: + case 1603: ACCEPT_TOKEN(aux_sym_gssapi_trust_dns_token1); END_STATE(); - case 1571: + case 1604: ACCEPT_TOKEN(aux_sym_gssapi_kex_algorithms_token1); END_STATE(); - case 1572: + case 1605: ACCEPT_TOKEN(aux_sym_hash_known_hosts_token1); END_STATE(); - case 1573: + case 1606: ACCEPT_TOKEN(aux_sym_hostbased_accepted_algorithms_token1); END_STATE(); - case 1574: + case 1607: ACCEPT_TOKEN(aux_sym_hostbased_authentication_token1); END_STATE(); - case 1575: + case 1608: ACCEPT_TOKEN(aux_sym_host_key_algorithms_token1); END_STATE(); - case 1576: + case 1609: ACCEPT_TOKEN(aux_sym_host_key_alias_token1); END_STATE(); - case 1577: + case 1610: ACCEPT_TOKEN(aux_sym_hostname_token1); END_STATE(); - case 1578: + case 1611: ACCEPT_TOKEN(aux_sym_identities_only_token1); END_STATE(); - case 1579: + case 1612: ACCEPT_TOKEN(aux_sym_identity_agent_token1); END_STATE(); - case 1580: + case 1613: ACCEPT_TOKEN(aux_sym_identity_file_token1); END_STATE(); - case 1581: + case 1614: ACCEPT_TOKEN(aux_sym_ignore_unknown_token1); END_STATE(); - case 1582: + case 1615: ACCEPT_TOKEN(aux_sym_include_token1); END_STATE(); - case 1583: + case 1616: ACCEPT_TOKEN(aux_sym_ip_qos_token1); END_STATE(); - case 1584: + case 1617: ACCEPT_TOKEN(anon_sym_af11); END_STATE(); - case 1585: + case 1618: ACCEPT_TOKEN(anon_sym_af12); END_STATE(); - case 1586: + case 1619: ACCEPT_TOKEN(anon_sym_af13); END_STATE(); - case 1587: + case 1620: ACCEPT_TOKEN(anon_sym_af21); END_STATE(); - case 1588: + case 1621: ACCEPT_TOKEN(anon_sym_af22); END_STATE(); - case 1589: + case 1622: ACCEPT_TOKEN(anon_sym_af23); END_STATE(); - case 1590: + case 1623: ACCEPT_TOKEN(anon_sym_af31); END_STATE(); - case 1591: + case 1624: ACCEPT_TOKEN(anon_sym_af32); END_STATE(); - case 1592: + case 1625: ACCEPT_TOKEN(anon_sym_af33); END_STATE(); - case 1593: + case 1626: ACCEPT_TOKEN(anon_sym_af41); END_STATE(); - case 1594: + case 1627: ACCEPT_TOKEN(anon_sym_af42); END_STATE(); - case 1595: + case 1628: ACCEPT_TOKEN(anon_sym_af43); END_STATE(); - case 1596: + case 1629: ACCEPT_TOKEN(anon_sym_cs0); END_STATE(); - case 1597: + case 1630: ACCEPT_TOKEN(anon_sym_cs1); END_STATE(); - case 1598: + case 1631: ACCEPT_TOKEN(anon_sym_cs2); END_STATE(); - case 1599: + case 1632: ACCEPT_TOKEN(anon_sym_cs3); END_STATE(); - case 1600: + case 1633: ACCEPT_TOKEN(anon_sym_cs4); END_STATE(); - case 1601: + case 1634: ACCEPT_TOKEN(anon_sym_cs5); END_STATE(); - case 1602: + case 1635: ACCEPT_TOKEN(anon_sym_cs6); END_STATE(); - case 1603: + case 1636: ACCEPT_TOKEN(anon_sym_cs7); END_STATE(); - case 1604: + case 1637: ACCEPT_TOKEN(anon_sym_ef); END_STATE(); - case 1605: + case 1638: ACCEPT_TOKEN(anon_sym_le); END_STATE(); - case 1606: + case 1639: ACCEPT_TOKEN(anon_sym_lowdelay); END_STATE(); - case 1607: + case 1640: ACCEPT_TOKEN(anon_sym_throughput); END_STATE(); - case 1608: + case 1641: ACCEPT_TOKEN(anon_sym_reliability); END_STATE(); - case 1609: + case 1642: ACCEPT_TOKEN(aux_sym_kbd_interactive_authentication_token1); END_STATE(); - case 1610: + case 1643: ACCEPT_TOKEN(aux_sym_kbd_interactive_devices_token1); END_STATE(); - case 1611: + case 1644: ACCEPT_TOKEN(aux_sym_kex_algorithms_token1); END_STATE(); - case 1612: + case 1645: ACCEPT_TOKEN(aux_sym_known_hosts_command_token1); END_STATE(); - case 1613: + case 1646: ACCEPT_TOKEN(aux_sym_local_command_token1); END_STATE(); - case 1614: + case 1647: ACCEPT_TOKEN(aux_sym_local_forward_token1); END_STATE(); - case 1615: + case 1648: ACCEPT_TOKEN(aux_sym_log_level_token1); END_STATE(); - case 1616: + case 1649: ACCEPT_TOKEN(aux_sym_log_level_value_token1); END_STATE(); - case 1617: + case 1650: ACCEPT_TOKEN(aux_sym_log_level_value_token2); END_STATE(); - case 1618: + case 1651: ACCEPT_TOKEN(aux_sym_log_level_value_token3); END_STATE(); - case 1619: + case 1652: ACCEPT_TOKEN(aux_sym_log_level_value_token4); END_STATE(); - case 1620: + case 1653: ACCEPT_TOKEN(aux_sym_log_level_value_token5); END_STATE(); - case 1621: + case 1654: ACCEPT_TOKEN(aux_sym_log_level_value_token6); - if (lookahead == '1') ADVANCE(1622); - if (lookahead == '2') ADVANCE(1623); - if (lookahead == '3') ADVANCE(1624); + if (lookahead == '1') ADVANCE(1655); + if (lookahead == '2') ADVANCE(1656); + if (lookahead == '3') ADVANCE(1657); END_STATE(); - case 1622: + case 1655: ACCEPT_TOKEN(aux_sym_log_level_value_token7); END_STATE(); - case 1623: + case 1656: ACCEPT_TOKEN(aux_sym_log_level_value_token8); END_STATE(); - case 1624: + case 1657: ACCEPT_TOKEN(aux_sym_log_level_value_token9); END_STATE(); - case 1625: + case 1658: ACCEPT_TOKEN(aux_sym_log_verbose_token1); END_STATE(); - case 1626: + case 1659: ACCEPT_TOKEN(aux_sym_macs_token1); END_STATE(); - case 1627: + case 1660: ACCEPT_TOKEN(aux_sym_no_host_authentication_for_localhost_token1); END_STATE(); - case 1628: + case 1661: ACCEPT_TOKEN(aux_sym_number_of_password_prompts_token1); END_STATE(); - case 1629: + case 1662: + ACCEPT_TOKEN(aux_sym_obscure_keystroke_timing_token1); + END_STATE(); + case 1663: + ACCEPT_TOKEN(aux_sym_obscure_keystroke_timing_value_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1663); + END_STATE(); + case 1664: ACCEPT_TOKEN(aux_sym_password_authentication_token1); END_STATE(); - case 1630: + case 1665: ACCEPT_TOKEN(aux_sym_permit_local_command_token1); END_STATE(); - case 1631: + case 1666: ACCEPT_TOKEN(aux_sym_permit_remote_open_token1); END_STATE(); - case 1632: + case 1667: ACCEPT_TOKEN(aux_sym_pkcs11_provider_token1); END_STATE(); - case 1633: + case 1668: ACCEPT_TOKEN(aux_sym_port_token1); END_STATE(); - case 1634: + case 1669: ACCEPT_TOKEN(aux_sym_preferred_authentications_token1); END_STATE(); - case 1635: + case 1670: ACCEPT_TOKEN(aux_sym_protocol_token1); END_STATE(); - case 1636: + case 1671: ACCEPT_TOKEN(anon_sym_1); END_STATE(); - case 1637: + case 1672: ACCEPT_TOKEN(anon_sym_1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1519); END_STATE(); - case 1638: + case 1673: ACCEPT_TOKEN(anon_sym_2); END_STATE(); - case 1639: + case 1674: ACCEPT_TOKEN(anon_sym_2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1486); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1519); END_STATE(); - case 1640: + case 1675: ACCEPT_TOKEN(aux_sym_proxy_command_token1); END_STATE(); - case 1641: + case 1676: ACCEPT_TOKEN(aux_sym_proxy_jump_token1); END_STATE(); - case 1642: + case 1677: ACCEPT_TOKEN(aux_sym_proxy_use_fdpass_token1); END_STATE(); - case 1643: + case 1678: ACCEPT_TOKEN(aux_sym_pubkey_accepted_algorithms_token1); END_STATE(); - case 1644: + case 1679: ACCEPT_TOKEN(aux_sym_pubkey_accepted_key_types_token1); END_STATE(); - case 1645: + case 1680: ACCEPT_TOKEN(aux_sym_pubkey_authentication_token1); END_STATE(); - case 1646: + case 1681: ACCEPT_TOKEN(aux_sym_pubkey_authentication_value_token1); END_STATE(); - case 1647: + case 1682: ACCEPT_TOKEN(aux_sym_pubkey_authentication_value_token2); END_STATE(); - case 1648: + case 1683: ACCEPT_TOKEN(aux_sym_rekey_limit_token1); END_STATE(); - case 1649: + case 1684: ACCEPT_TOKEN(aux_sym_remote_command_token1); END_STATE(); - case 1650: + case 1685: ACCEPT_TOKEN(aux_sym_remote_forward_token1); END_STATE(); - case 1651: + case 1686: ACCEPT_TOKEN(aux_sym_request_tty_token1); END_STATE(); - case 1652: + case 1687: ACCEPT_TOKEN(aux_sym_request_tty_value_token1); END_STATE(); - case 1653: + case 1688: ACCEPT_TOKEN(aux_sym_required_rsa_size_token1); END_STATE(); - case 1654: + case 1689: ACCEPT_TOKEN(aux_sym_revoked_host_keys_token1); END_STATE(); - case 1655: + case 1690: ACCEPT_TOKEN(aux_sym_security_key_provider_token1); END_STATE(); - case 1656: + case 1691: ACCEPT_TOKEN(aux_sym_send_env_token1); END_STATE(); - case 1657: + case 1692: ACCEPT_TOKEN(aux_sym_server_alive_count_max_token1); END_STATE(); - case 1658: + case 1693: ACCEPT_TOKEN(aux_sym_server_alive_interval_token1); END_STATE(); - case 1659: + case 1694: ACCEPT_TOKEN(aux_sym_session_type_token1); END_STATE(); - case 1660: + case 1695: ACCEPT_TOKEN(aux_sym_session_type_value_token1); END_STATE(); - case 1661: + case 1696: ACCEPT_TOKEN(aux_sym_session_type_value_token2); END_STATE(); - case 1662: + case 1697: ACCEPT_TOKEN(aux_sym_set_env_token1); END_STATE(); - case 1663: + case 1698: ACCEPT_TOKEN(aux_sym_stdin_null_token1); END_STATE(); - case 1664: + case 1699: ACCEPT_TOKEN(aux_sym_stream_local_bind_mask_token1); END_STATE(); - case 1665: + case 1700: ACCEPT_TOKEN(aux_sym_stream_local_bind_unlink_token1); END_STATE(); - case 1666: + case 1701: ACCEPT_TOKEN(aux_sym_strict_host_key_checking_token1); END_STATE(); - case 1667: + case 1702: ACCEPT_TOKEN(aux_sym_strict_host_key_checking_value_token1); END_STATE(); - case 1668: + case 1703: ACCEPT_TOKEN(aux_sym_strict_host_key_checking_value_token2); END_STATE(); - case 1669: + case 1704: ACCEPT_TOKEN(aux_sym_syslog_facility_token1); END_STATE(); - case 1670: + case 1705: ACCEPT_TOKEN(anon_sym_DAEMON); END_STATE(); - case 1671: + case 1706: ACCEPT_TOKEN(anon_sym_USER); END_STATE(); - case 1672: + case 1707: ACCEPT_TOKEN(anon_sym_AUTH); END_STATE(); - case 1673: + case 1708: ACCEPT_TOKEN(anon_sym_LOCAL0); END_STATE(); - case 1674: + case 1709: ACCEPT_TOKEN(anon_sym_LOCAL1); END_STATE(); - case 1675: + case 1710: ACCEPT_TOKEN(anon_sym_LOCAL2); END_STATE(); - case 1676: + case 1711: ACCEPT_TOKEN(anon_sym_LOCAL3); END_STATE(); - case 1677: + case 1712: ACCEPT_TOKEN(anon_sym_LOCAL4); END_STATE(); - case 1678: + case 1713: ACCEPT_TOKEN(anon_sym_LOCAL5); END_STATE(); - case 1679: + case 1714: ACCEPT_TOKEN(anon_sym_LOCAL6); END_STATE(); - case 1680: + case 1715: ACCEPT_TOKEN(anon_sym_LOCAL7); END_STATE(); - case 1681: + case 1716: ACCEPT_TOKEN(aux_sym_tcp_keep_alive_token1); END_STATE(); - case 1682: + case 1717: ACCEPT_TOKEN(aux_sym_keep_alive_token1); END_STATE(); - case 1683: + case 1718: ACCEPT_TOKEN(aux_sym_tag_token1); END_STATE(); - case 1684: + case 1719: ACCEPT_TOKEN(aux_sym_tunnel_token1); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(395); + lookahead == 'd') ADVANCE(408); END_STATE(); - case 1685: + case 1720: ACCEPT_TOKEN(aux_sym_tunnel_value_token1); END_STATE(); - case 1686: + case 1721: ACCEPT_TOKEN(aux_sym_tunnel_value_token2); END_STATE(); - case 1687: + case 1722: ACCEPT_TOKEN(aux_sym_tunnel_device_token1); END_STATE(); - case 1688: + case 1723: ACCEPT_TOKEN(aux_sym_update_host_keys_token1); END_STATE(); - case 1689: + case 1724: ACCEPT_TOKEN(aux_sym_use_keychain_token1); END_STATE(); - case 1690: + case 1725: ACCEPT_TOKEN(aux_sym_use_roaming_token1); END_STATE(); - case 1691: + case 1726: ACCEPT_TOKEN(aux_sym_user_token1); - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(930); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(168); END_STATE(); - case 1692: + case 1727: ACCEPT_TOKEN(aux_sym_user_token1); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(953); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(168); + lookahead == 'o') ADVANCE(201); END_STATE(); - case 1693: + case 1728: ACCEPT_TOKEN(aux_sym_user_known_hosts_file_token1); END_STATE(); - case 1694: + case 1729: ACCEPT_TOKEN(aux_sym_verify_host_key_dns_token1); END_STATE(); - case 1695: + case 1730: ACCEPT_TOKEN(aux_sym_visual_host_key_token1); END_STATE(); - case 1696: + case 1731: ACCEPT_TOKEN(aux_sym_xauth_location_token1); END_STATE(); default: @@ -12114,832 +12298,832 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 1483}, - [2] = {.lex_state = 1483}, - [3] = {.lex_state = 1483}, - [4] = {.lex_state = 1483}, - [5] = {.lex_state = 1483}, - [6] = {.lex_state = 1483}, - [7] = {.lex_state = 1483}, - [8] = {.lex_state = 1483}, - [9] = {.lex_state = 1483}, - [10] = {.lex_state = 1483}, - [11] = {.lex_state = 1483}, - [12] = {.lex_state = 1483}, - [13] = {.lex_state = 1483}, - [14] = {.lex_state = 1483}, - [15] = {.lex_state = 1483}, - [16] = {.lex_state = 1483}, - [17] = {.lex_state = 1483}, - [18] = {.lex_state = 1483}, - [19] = {.lex_state = 1483}, - [20] = {.lex_state = 1483}, - [21] = {.lex_state = 1483}, - [22] = {.lex_state = 1483}, - [23] = {.lex_state = 1483}, - [24] = {.lex_state = 1483}, - [25] = {.lex_state = 1483}, - [26] = {.lex_state = 1483}, - [27] = {.lex_state = 1483}, - [28] = {.lex_state = 1483}, - [29] = {.lex_state = 1483}, - [30] = {.lex_state = 1483}, - [31] = {.lex_state = 1483}, - [32] = {.lex_state = 1483}, - [33] = {.lex_state = 1483}, - [34] = {.lex_state = 1483}, - [35] = {.lex_state = 1483}, - [36] = {.lex_state = 1483}, - [37] = {.lex_state = 1483}, - [38] = {.lex_state = 1483}, - [39] = {.lex_state = 1483}, - [40] = {.lex_state = 1483}, - [41] = {.lex_state = 1483}, - [42] = {.lex_state = 1483}, - [43] = {.lex_state = 1483}, - [44] = {.lex_state = 1483}, - [45] = {.lex_state = 1483}, - [46] = {.lex_state = 1483}, - [47] = {.lex_state = 1483}, - [48] = {.lex_state = 1483}, - [49] = {.lex_state = 1483}, - [50] = {.lex_state = 1483}, - [51] = {.lex_state = 1483}, - [52] = {.lex_state = 1483}, - [53] = {.lex_state = 1483}, - [54] = {.lex_state = 1483}, - [55] = {.lex_state = 1483}, - [56] = {.lex_state = 1483}, - [57] = {.lex_state = 1483}, - [58] = {.lex_state = 1483}, - [59] = {.lex_state = 1483}, - [60] = {.lex_state = 1483}, - [61] = {.lex_state = 1483}, - [62] = {.lex_state = 1483}, - [63] = {.lex_state = 1483}, - [64] = {.lex_state = 1483}, - [65] = {.lex_state = 1483}, - [66] = {.lex_state = 1483}, - [67] = {.lex_state = 1483}, - [68] = {.lex_state = 1483}, - [69] = {.lex_state = 1483}, - [70] = {.lex_state = 1483}, - [71] = {.lex_state = 1483}, - [72] = {.lex_state = 1483}, - [73] = {.lex_state = 1483}, - [74] = {.lex_state = 1483}, - [75] = {.lex_state = 1483}, - [76] = {.lex_state = 1483}, - [77] = {.lex_state = 1483}, - [78] = {.lex_state = 1483}, - [79] = {.lex_state = 1483}, - [80] = {.lex_state = 1483}, - [81] = {.lex_state = 1483}, - [82] = {.lex_state = 1483}, - [83] = {.lex_state = 1483}, - [84] = {.lex_state = 1483}, - [85] = {.lex_state = 1483}, - [86] = {.lex_state = 1483}, - [87] = {.lex_state = 1483}, - [88] = {.lex_state = 1483}, - [89] = {.lex_state = 1483}, - [90] = {.lex_state = 1483}, - [91] = {.lex_state = 1483}, - [92] = {.lex_state = 1483}, - [93] = {.lex_state = 1483}, - [94] = {.lex_state = 1483}, - [95] = {.lex_state = 1483}, - [96] = {.lex_state = 1483}, - [97] = {.lex_state = 1483}, - [98] = {.lex_state = 1483}, - [99] = {.lex_state = 1483}, - [100] = {.lex_state = 1483}, - [101] = {.lex_state = 1483}, - [102] = {.lex_state = 1483}, - [103] = {.lex_state = 1483}, - [104] = {.lex_state = 1483}, - [105] = {.lex_state = 1483}, - [106] = {.lex_state = 1483}, - [107] = {.lex_state = 1483}, - [108] = {.lex_state = 1483}, - [109] = {.lex_state = 1483}, - [110] = {.lex_state = 1483}, - [111] = {.lex_state = 1483}, - [112] = {.lex_state = 1483}, - [113] = {.lex_state = 1483}, - [114] = {.lex_state = 1483}, - [115] = {.lex_state = 1483}, - [116] = {.lex_state = 1483}, - [117] = {.lex_state = 1483}, - [118] = {.lex_state = 1483}, - [119] = {.lex_state = 1483}, - [120] = {.lex_state = 1483}, - [121] = {.lex_state = 1483}, - [122] = {.lex_state = 1483}, - [123] = {.lex_state = 1483}, - [124] = {.lex_state = 1483}, - [125] = {.lex_state = 1483}, - [126] = {.lex_state = 1483}, - [127] = {.lex_state = 1483}, - [128] = {.lex_state = 1483}, - [129] = {.lex_state = 1483}, - [130] = {.lex_state = 1483}, - [131] = {.lex_state = 1483}, - [132] = {.lex_state = 1483}, - [133] = {.lex_state = 1483}, - [134] = {.lex_state = 1483}, - [135] = {.lex_state = 1483}, - [136] = {.lex_state = 1483}, - [137] = {.lex_state = 1483}, - [138] = {.lex_state = 1483}, - [139] = {.lex_state = 1483}, - [140] = {.lex_state = 1483}, - [141] = {.lex_state = 1483}, - [142] = {.lex_state = 1483}, - [143] = {.lex_state = 1483}, - [144] = {.lex_state = 1483}, - [145] = {.lex_state = 1483}, - [146] = {.lex_state = 1483}, - [147] = {.lex_state = 1483}, - [148] = {.lex_state = 1483}, - [149] = {.lex_state = 1483}, - [150] = {.lex_state = 1483}, - [151] = {.lex_state = 1483}, - [152] = {.lex_state = 1483}, - [153] = {.lex_state = 1483}, - [154] = {.lex_state = 1483}, - [155] = {.lex_state = 1483}, - [156] = {.lex_state = 1483}, - [157] = {.lex_state = 1483}, - [158] = {.lex_state = 1483}, - [159] = {.lex_state = 1483}, - [160] = {.lex_state = 1483}, - [161] = {.lex_state = 1483}, - [162] = {.lex_state = 1483}, - [163] = {.lex_state = 1483}, - [164] = {.lex_state = 1483}, - [165] = {.lex_state = 1483}, - [166] = {.lex_state = 1483}, - [167] = {.lex_state = 1483}, - [168] = {.lex_state = 1483}, - [169] = {.lex_state = 1483}, - [170] = {.lex_state = 1483}, - [171] = {.lex_state = 1483}, - [172] = {.lex_state = 1483}, - [173] = {.lex_state = 1483}, - [174] = {.lex_state = 1483}, - [175] = {.lex_state = 1483}, - [176] = {.lex_state = 1483}, - [177] = {.lex_state = 1483}, - [178] = {.lex_state = 1483}, - [179] = {.lex_state = 1483}, - [180] = {.lex_state = 1483}, - [181] = {.lex_state = 1483}, - [182] = {.lex_state = 1483}, - [183] = {.lex_state = 1483}, - [184] = {.lex_state = 1483}, - [185] = {.lex_state = 1483}, - [186] = {.lex_state = 1483}, - [187] = {.lex_state = 1483}, - [188] = {.lex_state = 1483}, - [189] = {.lex_state = 1483}, - [190] = {.lex_state = 1483}, - [191] = {.lex_state = 1483}, - [192] = {.lex_state = 1483}, - [193] = {.lex_state = 1483}, - [194] = {.lex_state = 1483}, - [195] = {.lex_state = 1483}, - [196] = {.lex_state = 1483}, - [197] = {.lex_state = 1483}, - [198] = {.lex_state = 1483}, - [199] = {.lex_state = 1483}, - [200] = {.lex_state = 1483}, - [201] = {.lex_state = 1483}, - [202] = {.lex_state = 1483}, - [203] = {.lex_state = 1483}, - [204] = {.lex_state = 1483}, - [205] = {.lex_state = 1483}, - [206] = {.lex_state = 1483}, - [207] = {.lex_state = 1483}, - [208] = {.lex_state = 1483}, - [209] = {.lex_state = 1483}, - [210] = {.lex_state = 1483}, - [211] = {.lex_state = 1483}, - [212] = {.lex_state = 1483}, - [213] = {.lex_state = 1483}, - [214] = {.lex_state = 1483}, - [215] = {.lex_state = 1483}, - [216] = {.lex_state = 1483}, - [217] = {.lex_state = 1483}, - [218] = {.lex_state = 1483}, - [219] = {.lex_state = 1483}, - [220] = {.lex_state = 1483}, - [221] = {.lex_state = 1483}, - [222] = {.lex_state = 1483}, - [223] = {.lex_state = 1483}, - [224] = {.lex_state = 1483}, - [225] = {.lex_state = 1483}, - [226] = {.lex_state = 1483}, - [227] = {.lex_state = 1483}, - [228] = {.lex_state = 1483}, - [229] = {.lex_state = 1483}, - [230] = {.lex_state = 1483}, - [231] = {.lex_state = 1483}, - [232] = {.lex_state = 1483}, - [233] = {.lex_state = 1483}, - [234] = {.lex_state = 1483}, - [235] = {.lex_state = 1483}, - [236] = {.lex_state = 1483}, - [237] = {.lex_state = 1483}, - [238] = {.lex_state = 1483}, - [239] = {.lex_state = 1483}, - [240] = {.lex_state = 1483}, - [241] = {.lex_state = 1483}, - [242] = {.lex_state = 1483}, - [243] = {.lex_state = 1483}, - [244] = {.lex_state = 1483}, - [245] = {.lex_state = 1483}, - [246] = {.lex_state = 1483}, - [247] = {.lex_state = 1483}, - [248] = {.lex_state = 1483}, - [249] = {.lex_state = 1483}, - [250] = {.lex_state = 1483}, - [251] = {.lex_state = 1483}, - [252] = {.lex_state = 1483}, - [253] = {.lex_state = 1483}, - [254] = {.lex_state = 1483}, - [255] = {.lex_state = 1483}, - [256] = {.lex_state = 1483}, - [257] = {.lex_state = 1483}, - [258] = {.lex_state = 1483}, - [259] = {.lex_state = 1483}, - [260] = {.lex_state = 1483}, - [261] = {.lex_state = 1483}, - [262] = {.lex_state = 1483}, - [263] = {.lex_state = 1483}, - [264] = {.lex_state = 1483}, - [265] = {.lex_state = 1483}, - [266] = {.lex_state = 1483}, - [267] = {.lex_state = 1483}, - [268] = {.lex_state = 1483}, - [269] = {.lex_state = 1483}, - [270] = {.lex_state = 1483}, - [271] = {.lex_state = 1483}, - [272] = {.lex_state = 1483}, - [273] = {.lex_state = 1483}, - [274] = {.lex_state = 1483}, - [275] = {.lex_state = 1483}, - [276] = {.lex_state = 1483}, - [277] = {.lex_state = 1483}, - [278] = {.lex_state = 1483}, - [279] = {.lex_state = 1483}, - [280] = {.lex_state = 1483}, - [281] = {.lex_state = 1483}, - [282] = {.lex_state = 1483}, - [283] = {.lex_state = 1483}, - [284] = {.lex_state = 1483}, - [285] = {.lex_state = 1483}, - [286] = {.lex_state = 1483}, - [287] = {.lex_state = 1483}, - [288] = {.lex_state = 1483}, - [289] = {.lex_state = 1483}, - [290] = {.lex_state = 1483}, - [291] = {.lex_state = 1483}, - [292] = {.lex_state = 1483}, - [293] = {.lex_state = 1483}, - [294] = {.lex_state = 1483}, - [295] = {.lex_state = 1483}, - [296] = {.lex_state = 1483}, - [297] = {.lex_state = 1483}, - [298] = {.lex_state = 1483}, - [299] = {.lex_state = 1483}, - [300] = {.lex_state = 1483}, - [301] = {.lex_state = 1483}, - [302] = {.lex_state = 1483}, - [303] = {.lex_state = 1483}, - [304] = {.lex_state = 1483}, - [305] = {.lex_state = 1483}, - [306] = {.lex_state = 1483}, - [307] = {.lex_state = 1483}, - [308] = {.lex_state = 1483}, - [309] = {.lex_state = 1483}, - [310] = {.lex_state = 1483}, - [311] = {.lex_state = 1483}, - [312] = {.lex_state = 1483}, - [313] = {.lex_state = 1483}, - [314] = {.lex_state = 1483}, - [315] = {.lex_state = 1483}, - [316] = {.lex_state = 1483}, - [317] = {.lex_state = 1483}, - [318] = {.lex_state = 1483}, - [319] = {.lex_state = 1483}, - [320] = {.lex_state = 1483}, - [321] = {.lex_state = 1483}, - [322] = {.lex_state = 1483}, - [323] = {.lex_state = 1483}, - [324] = {.lex_state = 1483}, - [325] = {.lex_state = 1483}, - [326] = {.lex_state = 1483}, - [327] = {.lex_state = 1483}, - [328] = {.lex_state = 1483}, - [329] = {.lex_state = 1483}, - [330] = {.lex_state = 1483}, - [331] = {.lex_state = 1483}, - [332] = {.lex_state = 1483}, - [333] = {.lex_state = 1483}, - [334] = {.lex_state = 1483}, - [335] = {.lex_state = 1483}, - [336] = {.lex_state = 1483}, - [337] = {.lex_state = 1483}, - [338] = {.lex_state = 1483}, - [339] = {.lex_state = 1483}, - [340] = {.lex_state = 1483}, - [341] = {.lex_state = 1483}, - [342] = {.lex_state = 1483}, - [343] = {.lex_state = 1483}, - [344] = {.lex_state = 1483}, - [345] = {.lex_state = 1483}, - [346] = {.lex_state = 1483}, - [347] = {.lex_state = 1483}, - [348] = {.lex_state = 1483}, - [349] = {.lex_state = 1483}, - [350] = {.lex_state = 1483}, - [351] = {.lex_state = 1483}, - [352] = {.lex_state = 1483}, - [353] = {.lex_state = 1483}, - [354] = {.lex_state = 1483}, - [355] = {.lex_state = 1483}, - [356] = {.lex_state = 1483}, - [357] = {.lex_state = 1483}, - [358] = {.lex_state = 1483}, - [359] = {.lex_state = 1483}, - [360] = {.lex_state = 1483}, - [361] = {.lex_state = 1483}, - [362] = {.lex_state = 1483}, - [363] = {.lex_state = 1483}, - [364] = {.lex_state = 1483}, - [365] = {.lex_state = 1483}, - [366] = {.lex_state = 1483}, - [367] = {.lex_state = 1483}, - [368] = {.lex_state = 1483}, - [369] = {.lex_state = 1483}, - [370] = {.lex_state = 1483}, - [371] = {.lex_state = 1483}, - [372] = {.lex_state = 1483}, - [373] = {.lex_state = 1483}, - [374] = {.lex_state = 1483}, - [375] = {.lex_state = 1483}, - [376] = {.lex_state = 1483}, - [377] = {.lex_state = 1483}, - [378] = {.lex_state = 1483}, - [379] = {.lex_state = 1483}, - [380] = {.lex_state = 1483}, - [381] = {.lex_state = 1483}, - [382] = {.lex_state = 1483}, - [383] = {.lex_state = 1483}, - [384] = {.lex_state = 1483}, - [385] = {.lex_state = 1483}, - [386] = {.lex_state = 1483}, - [387] = {.lex_state = 1483}, - [388] = {.lex_state = 1483}, - [389] = {.lex_state = 1483}, - [390] = {.lex_state = 1483}, - [391] = {.lex_state = 1483}, - [392] = {.lex_state = 1483}, - [393] = {.lex_state = 1483}, - [394] = {.lex_state = 1483}, - [395] = {.lex_state = 1483}, - [396] = {.lex_state = 1483}, - [397] = {.lex_state = 1483}, - [398] = {.lex_state = 1483}, - [399] = {.lex_state = 1483}, - [400] = {.lex_state = 1483}, - [401] = {.lex_state = 1483}, - [402] = {.lex_state = 1483}, - [403] = {.lex_state = 1483}, - [404] = {.lex_state = 1483}, - [405] = {.lex_state = 1483}, - [406] = {.lex_state = 1483}, - [407] = {.lex_state = 1483}, - [408] = {.lex_state = 1483}, - [409] = {.lex_state = 1483}, - [410] = {.lex_state = 1483}, - [411] = {.lex_state = 1483}, - [412] = {.lex_state = 1483}, - [413] = {.lex_state = 1483}, - [414] = {.lex_state = 1483}, - [415] = {.lex_state = 1483}, - [416] = {.lex_state = 1483}, - [417] = {.lex_state = 1483}, - [418] = {.lex_state = 1483}, - [419] = {.lex_state = 1483}, - [420] = {.lex_state = 1483}, - [421] = {.lex_state = 1483}, - [422] = {.lex_state = 1483}, - [423] = {.lex_state = 1483}, - [424] = {.lex_state = 1483}, - [425] = {.lex_state = 1483}, - [426] = {.lex_state = 1483}, - [427] = {.lex_state = 1483}, - [428] = {.lex_state = 1483}, - [429] = {.lex_state = 1483}, - [430] = {.lex_state = 1483}, - [431] = {.lex_state = 1483}, - [432] = {.lex_state = 1483}, - [433] = {.lex_state = 1483}, - [434] = {.lex_state = 1483}, - [435] = {.lex_state = 1483}, - [436] = {.lex_state = 1483}, - [437] = {.lex_state = 1483}, - [438] = {.lex_state = 1483}, - [439] = {.lex_state = 1483}, - [440] = {.lex_state = 1483}, - [441] = {.lex_state = 1483}, - [442] = {.lex_state = 1483}, - [443] = {.lex_state = 1483}, - [444] = {.lex_state = 1483}, - [445] = {.lex_state = 1483}, - [446] = {.lex_state = 1483}, - [447] = {.lex_state = 1483}, - [448] = {.lex_state = 1483}, - [449] = {.lex_state = 1483}, - [450] = {.lex_state = 1483}, - [451] = {.lex_state = 1483}, - [452] = {.lex_state = 1483}, - [453] = {.lex_state = 1483}, - [454] = {.lex_state = 1483}, - [455] = {.lex_state = 1483}, - [456] = {.lex_state = 1483}, - [457] = {.lex_state = 1483}, - [458] = {.lex_state = 1483}, - [459] = {.lex_state = 1483}, - [460] = {.lex_state = 1483}, - [461] = {.lex_state = 1483}, - [462] = {.lex_state = 1483}, - [463] = {.lex_state = 1483}, - [464] = {.lex_state = 1483}, - [465] = {.lex_state = 1483}, - [466] = {.lex_state = 1483}, - [467] = {.lex_state = 1483}, - [468] = {.lex_state = 1483}, - [469] = {.lex_state = 1483}, - [470] = {.lex_state = 1483}, - [471] = {.lex_state = 1483}, - [472] = {.lex_state = 1483}, - [473] = {.lex_state = 1483}, - [474] = {.lex_state = 1483}, - [475] = {.lex_state = 1483}, - [476] = {.lex_state = 1483}, - [477] = {.lex_state = 1483}, - [478] = {.lex_state = 1483}, - [479] = {.lex_state = 1483}, - [480] = {.lex_state = 1483}, - [481] = {.lex_state = 1483}, - [482] = {.lex_state = 1483}, - [483] = {.lex_state = 1483}, - [484] = {.lex_state = 1483}, - [485] = {.lex_state = 1483}, - [486] = {.lex_state = 1483}, - [487] = {.lex_state = 1483}, - [488] = {.lex_state = 1483}, - [489] = {.lex_state = 1483}, - [490] = {.lex_state = 1483}, - [491] = {.lex_state = 1483}, - [492] = {.lex_state = 1483}, - [493] = {.lex_state = 1483}, - [494] = {.lex_state = 1483}, - [495] = {.lex_state = 1483}, - [496] = {.lex_state = 1483}, - [497] = {.lex_state = 1483}, - [498] = {.lex_state = 1483}, - [499] = {.lex_state = 1483}, - [500] = {.lex_state = 1483}, - [501] = {.lex_state = 1483}, - [502] = {.lex_state = 1483}, - [503] = {.lex_state = 1483}, - [504] = {.lex_state = 1483}, - [505] = {.lex_state = 1483}, - [506] = {.lex_state = 1483}, - [507] = {.lex_state = 1483}, - [508] = {.lex_state = 1483}, - [509] = {.lex_state = 1483}, - [510] = {.lex_state = 1483}, - [511] = {.lex_state = 1483}, - [512] = {.lex_state = 1483}, - [513] = {.lex_state = 1483}, - [514] = {.lex_state = 1483}, - [515] = {.lex_state = 1483}, - [516] = {.lex_state = 1483}, - [517] = {.lex_state = 1483}, - [518] = {.lex_state = 1483}, - [519] = {.lex_state = 1483}, - [520] = {.lex_state = 1483}, - [521] = {.lex_state = 1483}, - [522] = {.lex_state = 1483}, - [523] = {.lex_state = 1483}, - [524] = {.lex_state = 1483}, - [525] = {.lex_state = 1483}, - [526] = {.lex_state = 1483}, - [527] = {.lex_state = 1483}, - [528] = {.lex_state = 1483}, - [529] = {.lex_state = 1483}, - [530] = {.lex_state = 1483}, - [531] = {.lex_state = 1483}, - [532] = {.lex_state = 1483}, - [533] = {.lex_state = 1483}, - [534] = {.lex_state = 1483}, - [535] = {.lex_state = 1483}, - [536] = {.lex_state = 1483}, - [537] = {.lex_state = 1483}, - [538] = {.lex_state = 1483}, - [539] = {.lex_state = 1483}, - [540] = {.lex_state = 1483}, - [541] = {.lex_state = 1483}, - [542] = {.lex_state = 1483}, - [543] = {.lex_state = 1483}, - [544] = {.lex_state = 1483}, - [545] = {.lex_state = 1483}, - [546] = {.lex_state = 1483}, - [547] = {.lex_state = 1483}, - [548] = {.lex_state = 1483}, - [549] = {.lex_state = 1483}, - [550] = {.lex_state = 1483}, - [551] = {.lex_state = 1483}, - [552] = {.lex_state = 1483}, - [553] = {.lex_state = 1483}, - [554] = {.lex_state = 1483}, - [555] = {.lex_state = 1483}, - [556] = {.lex_state = 1483}, - [557] = {.lex_state = 1483}, - [558] = {.lex_state = 1483}, - [559] = {.lex_state = 1483}, - [560] = {.lex_state = 1483}, - [561] = {.lex_state = 1483}, - [562] = {.lex_state = 1483}, - [563] = {.lex_state = 1483}, - [564] = {.lex_state = 1483}, - [565] = {.lex_state = 1483}, - [566] = {.lex_state = 1483}, - [567] = {.lex_state = 1483}, - [568] = {.lex_state = 1483}, - [569] = {.lex_state = 1483}, - [570] = {.lex_state = 1483}, - [571] = {.lex_state = 1483}, - [572] = {.lex_state = 1483}, - [573] = {.lex_state = 1483}, - [574] = {.lex_state = 1483}, - [575] = {.lex_state = 1483}, - [576] = {.lex_state = 1483}, - [577] = {.lex_state = 1483}, - [578] = {.lex_state = 1483}, - [579] = {.lex_state = 1483}, - [580] = {.lex_state = 1483}, - [581] = {.lex_state = 1483}, - [582] = {.lex_state = 1483}, - [583] = {.lex_state = 1483}, - [584] = {.lex_state = 1483}, - [585] = {.lex_state = 1483}, - [586] = {.lex_state = 1483}, - [587] = {.lex_state = 1483}, - [588] = {.lex_state = 1483}, - [589] = {.lex_state = 1483}, - [590] = {.lex_state = 1483}, - [591] = {.lex_state = 1483}, - [592] = {.lex_state = 1483}, - [593] = {.lex_state = 1483}, - [594] = {.lex_state = 1483}, - [595] = {.lex_state = 1483}, - [596] = {.lex_state = 1483}, - [597] = {.lex_state = 1483}, - [598] = {.lex_state = 1483}, - [599] = {.lex_state = 1483}, - [600] = {.lex_state = 1483}, - [601] = {.lex_state = 1483}, - [602] = {.lex_state = 1483}, - [603] = {.lex_state = 1483}, - [604] = {.lex_state = 1483}, - [605] = {.lex_state = 1483}, - [606] = {.lex_state = 1483}, - [607] = {.lex_state = 1483}, - [608] = {.lex_state = 1483}, - [609] = {.lex_state = 1483}, - [610] = {.lex_state = 1483}, - [611] = {.lex_state = 1483}, - [612] = {.lex_state = 1483}, - [613] = {.lex_state = 1483}, - [614] = {.lex_state = 1483}, - [615] = {.lex_state = 1483}, - [616] = {.lex_state = 1483}, - [617] = {.lex_state = 1483}, - [618] = {.lex_state = 1483}, - [619] = {.lex_state = 1483}, - [620] = {.lex_state = 1483}, - [621] = {.lex_state = 1483}, - [622] = {.lex_state = 1483}, - [623] = {.lex_state = 1483}, - [624] = {.lex_state = 1483}, - [625] = {.lex_state = 1483}, - [626] = {.lex_state = 1483}, - [627] = {.lex_state = 1483}, - [628] = {.lex_state = 1483}, - [629] = {.lex_state = 1483}, - [630] = {.lex_state = 1483}, - [631] = {.lex_state = 1483}, - [632] = {.lex_state = 1483}, - [633] = {.lex_state = 1483}, - [634] = {.lex_state = 1483}, - [635] = {.lex_state = 1483}, - [636] = {.lex_state = 1483}, - [637] = {.lex_state = 1483}, - [638] = {.lex_state = 1483}, - [639] = {.lex_state = 1483}, - [640] = {.lex_state = 1483}, - [641] = {.lex_state = 1483}, - [642] = {.lex_state = 1483}, - [643] = {.lex_state = 1483}, - [644] = {.lex_state = 1483}, - [645] = {.lex_state = 1483}, - [646] = {.lex_state = 1483}, - [647] = {.lex_state = 1483}, - [648] = {.lex_state = 1483}, - [649] = {.lex_state = 1483}, - [650] = {.lex_state = 1483}, - [651] = {.lex_state = 1483}, - [652] = {.lex_state = 1483}, - [653] = {.lex_state = 1483}, - [654] = {.lex_state = 1483}, - [655] = {.lex_state = 1483}, - [656] = {.lex_state = 1483}, - [657] = {.lex_state = 1483}, - [658] = {.lex_state = 1483}, - [659] = {.lex_state = 1483}, - [660] = {.lex_state = 1483}, - [661] = {.lex_state = 1483}, - [662] = {.lex_state = 1483}, - [663] = {.lex_state = 1483}, - [664] = {.lex_state = 1483}, - [665] = {.lex_state = 1483}, - [666] = {.lex_state = 1483}, - [667] = {.lex_state = 1483}, - [668] = {.lex_state = 1483}, - [669] = {.lex_state = 1483}, - [670] = {.lex_state = 1483}, - [671] = {.lex_state = 1483}, - [672] = {.lex_state = 1483}, - [673] = {.lex_state = 1483}, - [674] = {.lex_state = 1483}, - [675] = {.lex_state = 1483}, - [676] = {.lex_state = 1483}, - [677] = {.lex_state = 1483}, - [678] = {.lex_state = 1483}, - [679] = {.lex_state = 1483}, - [680] = {.lex_state = 1483}, - [681] = {.lex_state = 1483}, - [682] = {.lex_state = 1483}, - [683] = {.lex_state = 1483}, - [684] = {.lex_state = 1483}, - [685] = {.lex_state = 1483}, - [686] = {.lex_state = 1483}, - [687] = {.lex_state = 1483}, - [688] = {.lex_state = 1483}, - [689] = {.lex_state = 1483}, - [690] = {.lex_state = 1483}, - [691] = {.lex_state = 1483}, - [692] = {.lex_state = 1483}, - [693] = {.lex_state = 1483}, - [694] = {.lex_state = 1483}, - [695] = {.lex_state = 1483}, - [696] = {.lex_state = 1483}, - [697] = {.lex_state = 1483}, - [698] = {.lex_state = 1483}, - [699] = {.lex_state = 1483}, - [700] = {.lex_state = 1483}, - [701] = {.lex_state = 1483}, - [702] = {.lex_state = 1483}, - [703] = {.lex_state = 1483}, - [704] = {.lex_state = 1483}, - [705] = {.lex_state = 1483}, - [706] = {.lex_state = 1483}, - [707] = {.lex_state = 1483}, - [708] = {.lex_state = 1483}, - [709] = {.lex_state = 1483}, - [710] = {.lex_state = 1483}, - [711] = {.lex_state = 1483}, - [712] = {.lex_state = 1483}, - [713] = {.lex_state = 1483}, - [714] = {.lex_state = 1483}, - [715] = {.lex_state = 1483}, - [716] = {.lex_state = 1483}, - [717] = {.lex_state = 1483}, - [718] = {.lex_state = 1483}, - [719] = {.lex_state = 1483}, - [720] = {.lex_state = 1483}, - [721] = {.lex_state = 1483}, - [722] = {.lex_state = 1483}, - [723] = {.lex_state = 1483}, - [724] = {.lex_state = 1483}, - [725] = {.lex_state = 1483}, - [726] = {.lex_state = 1483}, - [727] = {.lex_state = 1483}, - [728] = {.lex_state = 1483}, - [729] = {.lex_state = 1483}, - [730] = {.lex_state = 1483}, - [731] = {.lex_state = 1483}, - [732] = {.lex_state = 1483}, - [733] = {.lex_state = 1483}, - [734] = {.lex_state = 1483}, - [735] = {.lex_state = 1483}, - [736] = {.lex_state = 1483}, - [737] = {.lex_state = 1483}, - [738] = {.lex_state = 1483}, - [739] = {.lex_state = 1483}, - [740] = {.lex_state = 1483}, - [741] = {.lex_state = 1483}, - [742] = {.lex_state = 1483}, - [743] = {.lex_state = 1483}, - [744] = {.lex_state = 1483}, - [745] = {.lex_state = 1483}, - [746] = {.lex_state = 1483}, - [747] = {.lex_state = 1483}, - [748] = {.lex_state = 1483}, - [749] = {.lex_state = 1483}, - [750] = {.lex_state = 1483}, - [751] = {.lex_state = 1483}, - [752] = {.lex_state = 1483}, - [753] = {.lex_state = 1483}, - [754] = {.lex_state = 1483}, - [755] = {.lex_state = 1483}, - [756] = {.lex_state = 1483}, - [757] = {.lex_state = 1483}, - [758] = {.lex_state = 1483}, - [759] = {.lex_state = 1483}, - [760] = {.lex_state = 1483}, - [761] = {.lex_state = 1483}, - [762] = {.lex_state = 1483}, - [763] = {.lex_state = 1483}, - [764] = {.lex_state = 1483}, - [765] = {.lex_state = 1483}, - [766] = {.lex_state = 1483}, - [767] = {.lex_state = 1483}, - [768] = {.lex_state = 1483}, - [769] = {.lex_state = 1483}, - [770] = {.lex_state = 1483}, - [771] = {.lex_state = 1483}, - [772] = {.lex_state = 1483}, - [773] = {.lex_state = 1483}, - [774] = {.lex_state = 1483}, - [775] = {.lex_state = 1483}, - [776] = {.lex_state = 1483}, - [777] = {.lex_state = 1483}, - [778] = {.lex_state = 1483}, - [779] = {.lex_state = 1483}, - [780] = {.lex_state = 1483}, - [781] = {.lex_state = 1483}, - [782] = {.lex_state = 1483}, - [783] = {.lex_state = 1483}, - [784] = {.lex_state = 1483}, - [785] = {.lex_state = 1483}, - [786] = {.lex_state = 1483}, - [787] = {.lex_state = 1483}, - [788] = {.lex_state = 1483}, - [789] = {.lex_state = 1483}, - [790] = {.lex_state = 1483}, - [791] = {.lex_state = 1483}, - [792] = {.lex_state = 1483}, - [793] = {.lex_state = 1483}, - [794] = {.lex_state = 1483}, - [795] = {.lex_state = 1483}, - [796] = {.lex_state = 1483}, - [797] = {.lex_state = 1483}, - [798] = {.lex_state = 1483}, - [799] = {.lex_state = 1483}, - [800] = {.lex_state = 1483}, - [801] = {.lex_state = 1483}, - [802] = {.lex_state = 2}, - [803] = {.lex_state = 2}, - [804] = {.lex_state = 2}, - [805] = {.lex_state = 0}, - [806] = {.lex_state = 2}, - [807] = {.lex_state = 0}, - [808] = {.lex_state = 0}, - [809] = {.lex_state = 0}, - [810] = {.lex_state = 0}, + [1] = {.lex_state = 1516}, + [2] = {.lex_state = 1516}, + [3] = {.lex_state = 1516}, + [4] = {.lex_state = 1516}, + [5] = {.lex_state = 1516}, + [6] = {.lex_state = 1516}, + [7] = {.lex_state = 1516}, + [8] = {.lex_state = 1516}, + [9] = {.lex_state = 1516}, + [10] = {.lex_state = 1516}, + [11] = {.lex_state = 1516}, + [12] = {.lex_state = 1516}, + [13] = {.lex_state = 1516}, + [14] = {.lex_state = 1516}, + [15] = {.lex_state = 1516}, + [16] = {.lex_state = 1516}, + [17] = {.lex_state = 1516}, + [18] = {.lex_state = 1516}, + [19] = {.lex_state = 1516}, + [20] = {.lex_state = 1516}, + [21] = {.lex_state = 1516}, + [22] = {.lex_state = 1516}, + [23] = {.lex_state = 1516}, + [24] = {.lex_state = 1516}, + [25] = {.lex_state = 1516}, + [26] = {.lex_state = 1516}, + [27] = {.lex_state = 1516}, + [28] = {.lex_state = 1516}, + [29] = {.lex_state = 1516}, + [30] = {.lex_state = 1516}, + [31] = {.lex_state = 1516}, + [32] = {.lex_state = 1516}, + [33] = {.lex_state = 1516}, + [34] = {.lex_state = 1516}, + [35] = {.lex_state = 1516}, + [36] = {.lex_state = 1516}, + [37] = {.lex_state = 1516}, + [38] = {.lex_state = 1516}, + [39] = {.lex_state = 1516}, + [40] = {.lex_state = 1516}, + [41] = {.lex_state = 1516}, + [42] = {.lex_state = 1516}, + [43] = {.lex_state = 1516}, + [44] = {.lex_state = 1516}, + [45] = {.lex_state = 1516}, + [46] = {.lex_state = 1516}, + [47] = {.lex_state = 1516}, + [48] = {.lex_state = 1516}, + [49] = {.lex_state = 1516}, + [50] = {.lex_state = 1516}, + [51] = {.lex_state = 1516}, + [52] = {.lex_state = 1516}, + [53] = {.lex_state = 1516}, + [54] = {.lex_state = 1516}, + [55] = {.lex_state = 1516}, + [56] = {.lex_state = 1516}, + [57] = {.lex_state = 1516}, + [58] = {.lex_state = 1516}, + [59] = {.lex_state = 1516}, + [60] = {.lex_state = 1516}, + [61] = {.lex_state = 1516}, + [62] = {.lex_state = 1516}, + [63] = {.lex_state = 1516}, + [64] = {.lex_state = 1516}, + [65] = {.lex_state = 1516}, + [66] = {.lex_state = 1516}, + [67] = {.lex_state = 1516}, + [68] = {.lex_state = 1516}, + [69] = {.lex_state = 1516}, + [70] = {.lex_state = 1516}, + [71] = {.lex_state = 1516}, + [72] = {.lex_state = 1516}, + [73] = {.lex_state = 1516}, + [74] = {.lex_state = 1516}, + [75] = {.lex_state = 1516}, + [76] = {.lex_state = 1516}, + [77] = {.lex_state = 1516}, + [78] = {.lex_state = 1516}, + [79] = {.lex_state = 1516}, + [80] = {.lex_state = 1516}, + [81] = {.lex_state = 1516}, + [82] = {.lex_state = 1516}, + [83] = {.lex_state = 1516}, + [84] = {.lex_state = 1516}, + [85] = {.lex_state = 1516}, + [86] = {.lex_state = 1516}, + [87] = {.lex_state = 1516}, + [88] = {.lex_state = 1516}, + [89] = {.lex_state = 1516}, + [90] = {.lex_state = 1516}, + [91] = {.lex_state = 1516}, + [92] = {.lex_state = 1516}, + [93] = {.lex_state = 1516}, + [94] = {.lex_state = 1516}, + [95] = {.lex_state = 1516}, + [96] = {.lex_state = 1516}, + [97] = {.lex_state = 1516}, + [98] = {.lex_state = 1516}, + [99] = {.lex_state = 1516}, + [100] = {.lex_state = 1516}, + [101] = {.lex_state = 1516}, + [102] = {.lex_state = 1516}, + [103] = {.lex_state = 1516}, + [104] = {.lex_state = 1516}, + [105] = {.lex_state = 1516}, + [106] = {.lex_state = 1516}, + [107] = {.lex_state = 1516}, + [108] = {.lex_state = 1516}, + [109] = {.lex_state = 1516}, + [110] = {.lex_state = 1516}, + [111] = {.lex_state = 1516}, + [112] = {.lex_state = 1516}, + [113] = {.lex_state = 1516}, + [114] = {.lex_state = 1516}, + [115] = {.lex_state = 1516}, + [116] = {.lex_state = 1516}, + [117] = {.lex_state = 1516}, + [118] = {.lex_state = 1516}, + [119] = {.lex_state = 1516}, + [120] = {.lex_state = 1516}, + [121] = {.lex_state = 1516}, + [122] = {.lex_state = 1516}, + [123] = {.lex_state = 1516}, + [124] = {.lex_state = 1516}, + [125] = {.lex_state = 1516}, + [126] = {.lex_state = 1516}, + [127] = {.lex_state = 1516}, + [128] = {.lex_state = 1516}, + [129] = {.lex_state = 1516}, + [130] = {.lex_state = 1516}, + [131] = {.lex_state = 1516}, + [132] = {.lex_state = 1516}, + [133] = {.lex_state = 1516}, + [134] = {.lex_state = 1516}, + [135] = {.lex_state = 1516}, + [136] = {.lex_state = 1516}, + [137] = {.lex_state = 1516}, + [138] = {.lex_state = 1516}, + [139] = {.lex_state = 1516}, + [140] = {.lex_state = 1516}, + [141] = {.lex_state = 1516}, + [142] = {.lex_state = 1516}, + [143] = {.lex_state = 1516}, + [144] = {.lex_state = 1516}, + [145] = {.lex_state = 1516}, + [146] = {.lex_state = 1516}, + [147] = {.lex_state = 1516}, + [148] = {.lex_state = 1516}, + [149] = {.lex_state = 1516}, + [150] = {.lex_state = 1516}, + [151] = {.lex_state = 1516}, + [152] = {.lex_state = 1516}, + [153] = {.lex_state = 1516}, + [154] = {.lex_state = 1516}, + [155] = {.lex_state = 1516}, + [156] = {.lex_state = 1516}, + [157] = {.lex_state = 1516}, + [158] = {.lex_state = 1516}, + [159] = {.lex_state = 1516}, + [160] = {.lex_state = 1516}, + [161] = {.lex_state = 1516}, + [162] = {.lex_state = 1516}, + [163] = {.lex_state = 1516}, + [164] = {.lex_state = 1516}, + [165] = {.lex_state = 1516}, + [166] = {.lex_state = 1516}, + [167] = {.lex_state = 1516}, + [168] = {.lex_state = 1516}, + [169] = {.lex_state = 1516}, + [170] = {.lex_state = 1516}, + [171] = {.lex_state = 1516}, + [172] = {.lex_state = 1516}, + [173] = {.lex_state = 1516}, + [174] = {.lex_state = 1516}, + [175] = {.lex_state = 1516}, + [176] = {.lex_state = 1516}, + [177] = {.lex_state = 1516}, + [178] = {.lex_state = 1516}, + [179] = {.lex_state = 1516}, + [180] = {.lex_state = 1516}, + [181] = {.lex_state = 1516}, + [182] = {.lex_state = 1516}, + [183] = {.lex_state = 1516}, + [184] = {.lex_state = 1516}, + [185] = {.lex_state = 1516}, + [186] = {.lex_state = 1516}, + [187] = {.lex_state = 1516}, + [188] = {.lex_state = 1516}, + [189] = {.lex_state = 1516}, + [190] = {.lex_state = 1516}, + [191] = {.lex_state = 1516}, + [192] = {.lex_state = 1516}, + [193] = {.lex_state = 1516}, + [194] = {.lex_state = 1516}, + [195] = {.lex_state = 1516}, + [196] = {.lex_state = 1516}, + [197] = {.lex_state = 1516}, + [198] = {.lex_state = 1516}, + [199] = {.lex_state = 1516}, + [200] = {.lex_state = 1516}, + [201] = {.lex_state = 1516}, + [202] = {.lex_state = 1516}, + [203] = {.lex_state = 1516}, + [204] = {.lex_state = 1516}, + [205] = {.lex_state = 1516}, + [206] = {.lex_state = 1516}, + [207] = {.lex_state = 1516}, + [208] = {.lex_state = 1516}, + [209] = {.lex_state = 1516}, + [210] = {.lex_state = 1516}, + [211] = {.lex_state = 1516}, + [212] = {.lex_state = 1516}, + [213] = {.lex_state = 1516}, + [214] = {.lex_state = 1516}, + [215] = {.lex_state = 1516}, + [216] = {.lex_state = 1516}, + [217] = {.lex_state = 1516}, + [218] = {.lex_state = 1516}, + [219] = {.lex_state = 1516}, + [220] = {.lex_state = 1516}, + [221] = {.lex_state = 1516}, + [222] = {.lex_state = 1516}, + [223] = {.lex_state = 1516}, + [224] = {.lex_state = 1516}, + [225] = {.lex_state = 1516}, + [226] = {.lex_state = 1516}, + [227] = {.lex_state = 1516}, + [228] = {.lex_state = 1516}, + [229] = {.lex_state = 1516}, + [230] = {.lex_state = 1516}, + [231] = {.lex_state = 1516}, + [232] = {.lex_state = 1516}, + [233] = {.lex_state = 1516}, + [234] = {.lex_state = 1516}, + [235] = {.lex_state = 1516}, + [236] = {.lex_state = 1516}, + [237] = {.lex_state = 1516}, + [238] = {.lex_state = 1516}, + [239] = {.lex_state = 1516}, + [240] = {.lex_state = 1516}, + [241] = {.lex_state = 1516}, + [242] = {.lex_state = 1516}, + [243] = {.lex_state = 1516}, + [244] = {.lex_state = 1516}, + [245] = {.lex_state = 1516}, + [246] = {.lex_state = 1516}, + [247] = {.lex_state = 1516}, + [248] = {.lex_state = 1516}, + [249] = {.lex_state = 1516}, + [250] = {.lex_state = 1516}, + [251] = {.lex_state = 1516}, + [252] = {.lex_state = 1516}, + [253] = {.lex_state = 1516}, + [254] = {.lex_state = 1516}, + [255] = {.lex_state = 1516}, + [256] = {.lex_state = 1516}, + [257] = {.lex_state = 1516}, + [258] = {.lex_state = 1516}, + [259] = {.lex_state = 1516}, + [260] = {.lex_state = 1516}, + [261] = {.lex_state = 1516}, + [262] = {.lex_state = 1516}, + [263] = {.lex_state = 1516}, + [264] = {.lex_state = 1516}, + [265] = {.lex_state = 1516}, + [266] = {.lex_state = 1516}, + [267] = {.lex_state = 1516}, + [268] = {.lex_state = 1516}, + [269] = {.lex_state = 1516}, + [270] = {.lex_state = 1516}, + [271] = {.lex_state = 1516}, + [272] = {.lex_state = 1516}, + [273] = {.lex_state = 1516}, + [274] = {.lex_state = 1516}, + [275] = {.lex_state = 1516}, + [276] = {.lex_state = 1516}, + [277] = {.lex_state = 1516}, + [278] = {.lex_state = 1516}, + [279] = {.lex_state = 1516}, + [280] = {.lex_state = 1516}, + [281] = {.lex_state = 1516}, + [282] = {.lex_state = 1516}, + [283] = {.lex_state = 1516}, + [284] = {.lex_state = 1516}, + [285] = {.lex_state = 1516}, + [286] = {.lex_state = 1516}, + [287] = {.lex_state = 1516}, + [288] = {.lex_state = 1516}, + [289] = {.lex_state = 1516}, + [290] = {.lex_state = 1516}, + [291] = {.lex_state = 1516}, + [292] = {.lex_state = 1516}, + [293] = {.lex_state = 1516}, + [294] = {.lex_state = 1516}, + [295] = {.lex_state = 1516}, + [296] = {.lex_state = 1516}, + [297] = {.lex_state = 1516}, + [298] = {.lex_state = 1516}, + [299] = {.lex_state = 1516}, + [300] = {.lex_state = 1516}, + [301] = {.lex_state = 1516}, + [302] = {.lex_state = 1516}, + [303] = {.lex_state = 1516}, + [304] = {.lex_state = 1516}, + [305] = {.lex_state = 1516}, + [306] = {.lex_state = 1516}, + [307] = {.lex_state = 1516}, + [308] = {.lex_state = 1516}, + [309] = {.lex_state = 1516}, + [310] = {.lex_state = 1516}, + [311] = {.lex_state = 1516}, + [312] = {.lex_state = 1516}, + [313] = {.lex_state = 1516}, + [314] = {.lex_state = 1516}, + [315] = {.lex_state = 1516}, + [316] = {.lex_state = 1516}, + [317] = {.lex_state = 1516}, + [318] = {.lex_state = 1516}, + [319] = {.lex_state = 1516}, + [320] = {.lex_state = 1516}, + [321] = {.lex_state = 1516}, + [322] = {.lex_state = 1516}, + [323] = {.lex_state = 1516}, + [324] = {.lex_state = 1516}, + [325] = {.lex_state = 1516}, + [326] = {.lex_state = 1516}, + [327] = {.lex_state = 1516}, + [328] = {.lex_state = 1516}, + [329] = {.lex_state = 1516}, + [330] = {.lex_state = 1516}, + [331] = {.lex_state = 1516}, + [332] = {.lex_state = 1516}, + [333] = {.lex_state = 1516}, + [334] = {.lex_state = 1516}, + [335] = {.lex_state = 1516}, + [336] = {.lex_state = 1516}, + [337] = {.lex_state = 1516}, + [338] = {.lex_state = 1516}, + [339] = {.lex_state = 1516}, + [340] = {.lex_state = 1516}, + [341] = {.lex_state = 1516}, + [342] = {.lex_state = 1516}, + [343] = {.lex_state = 1516}, + [344] = {.lex_state = 1516}, + [345] = {.lex_state = 1516}, + [346] = {.lex_state = 1516}, + [347] = {.lex_state = 1516}, + [348] = {.lex_state = 1516}, + [349] = {.lex_state = 1516}, + [350] = {.lex_state = 1516}, + [351] = {.lex_state = 1516}, + [352] = {.lex_state = 1516}, + [353] = {.lex_state = 1516}, + [354] = {.lex_state = 1516}, + [355] = {.lex_state = 1516}, + [356] = {.lex_state = 1516}, + [357] = {.lex_state = 1516}, + [358] = {.lex_state = 1516}, + [359] = {.lex_state = 1516}, + [360] = {.lex_state = 1516}, + [361] = {.lex_state = 1516}, + [362] = {.lex_state = 1516}, + [363] = {.lex_state = 1516}, + [364] = {.lex_state = 1516}, + [365] = {.lex_state = 1516}, + [366] = {.lex_state = 1516}, + [367] = {.lex_state = 1516}, + [368] = {.lex_state = 1516}, + [369] = {.lex_state = 1516}, + [370] = {.lex_state = 1516}, + [371] = {.lex_state = 1516}, + [372] = {.lex_state = 1516}, + [373] = {.lex_state = 1516}, + [374] = {.lex_state = 1516}, + [375] = {.lex_state = 1516}, + [376] = {.lex_state = 1516}, + [377] = {.lex_state = 1516}, + [378] = {.lex_state = 1516}, + [379] = {.lex_state = 1516}, + [380] = {.lex_state = 1516}, + [381] = {.lex_state = 1516}, + [382] = {.lex_state = 1516}, + [383] = {.lex_state = 1516}, + [384] = {.lex_state = 1516}, + [385] = {.lex_state = 1516}, + [386] = {.lex_state = 1516}, + [387] = {.lex_state = 1516}, + [388] = {.lex_state = 1516}, + [389] = {.lex_state = 1516}, + [390] = {.lex_state = 1516}, + [391] = {.lex_state = 1516}, + [392] = {.lex_state = 1516}, + [393] = {.lex_state = 1516}, + [394] = {.lex_state = 1516}, + [395] = {.lex_state = 1516}, + [396] = {.lex_state = 1516}, + [397] = {.lex_state = 1516}, + [398] = {.lex_state = 1516}, + [399] = {.lex_state = 1516}, + [400] = {.lex_state = 1516}, + [401] = {.lex_state = 1516}, + [402] = {.lex_state = 1516}, + [403] = {.lex_state = 1516}, + [404] = {.lex_state = 1516}, + [405] = {.lex_state = 1516}, + [406] = {.lex_state = 1516}, + [407] = {.lex_state = 1516}, + [408] = {.lex_state = 1516}, + [409] = {.lex_state = 1516}, + [410] = {.lex_state = 1516}, + [411] = {.lex_state = 1516}, + [412] = {.lex_state = 1516}, + [413] = {.lex_state = 1516}, + [414] = {.lex_state = 1516}, + [415] = {.lex_state = 1516}, + [416] = {.lex_state = 1516}, + [417] = {.lex_state = 1516}, + [418] = {.lex_state = 1516}, + [419] = {.lex_state = 1516}, + [420] = {.lex_state = 1516}, + [421] = {.lex_state = 1516}, + [422] = {.lex_state = 1516}, + [423] = {.lex_state = 1516}, + [424] = {.lex_state = 1516}, + [425] = {.lex_state = 1516}, + [426] = {.lex_state = 1516}, + [427] = {.lex_state = 1516}, + [428] = {.lex_state = 1516}, + [429] = {.lex_state = 1516}, + [430] = {.lex_state = 1516}, + [431] = {.lex_state = 1516}, + [432] = {.lex_state = 1516}, + [433] = {.lex_state = 1516}, + [434] = {.lex_state = 1516}, + [435] = {.lex_state = 1516}, + [436] = {.lex_state = 1516}, + [437] = {.lex_state = 1516}, + [438] = {.lex_state = 1516}, + [439] = {.lex_state = 1516}, + [440] = {.lex_state = 1516}, + [441] = {.lex_state = 1516}, + [442] = {.lex_state = 1516}, + [443] = {.lex_state = 1516}, + [444] = {.lex_state = 1516}, + [445] = {.lex_state = 1516}, + [446] = {.lex_state = 1516}, + [447] = {.lex_state = 1516}, + [448] = {.lex_state = 1516}, + [449] = {.lex_state = 1516}, + [450] = {.lex_state = 1516}, + [451] = {.lex_state = 1516}, + [452] = {.lex_state = 1516}, + [453] = {.lex_state = 1516}, + [454] = {.lex_state = 1516}, + [455] = {.lex_state = 1516}, + [456] = {.lex_state = 1516}, + [457] = {.lex_state = 1516}, + [458] = {.lex_state = 1516}, + [459] = {.lex_state = 1516}, + [460] = {.lex_state = 1516}, + [461] = {.lex_state = 1516}, + [462] = {.lex_state = 1516}, + [463] = {.lex_state = 1516}, + [464] = {.lex_state = 1516}, + [465] = {.lex_state = 1516}, + [466] = {.lex_state = 1516}, + [467] = {.lex_state = 1516}, + [468] = {.lex_state = 1516}, + [469] = {.lex_state = 1516}, + [470] = {.lex_state = 1516}, + [471] = {.lex_state = 1516}, + [472] = {.lex_state = 1516}, + [473] = {.lex_state = 1516}, + [474] = {.lex_state = 1516}, + [475] = {.lex_state = 1516}, + [476] = {.lex_state = 1516}, + [477] = {.lex_state = 1516}, + [478] = {.lex_state = 1516}, + [479] = {.lex_state = 1516}, + [480] = {.lex_state = 1516}, + [481] = {.lex_state = 1516}, + [482] = {.lex_state = 1516}, + [483] = {.lex_state = 1516}, + [484] = {.lex_state = 1516}, + [485] = {.lex_state = 1516}, + [486] = {.lex_state = 1516}, + [487] = {.lex_state = 1516}, + [488] = {.lex_state = 1516}, + [489] = {.lex_state = 1516}, + [490] = {.lex_state = 1516}, + [491] = {.lex_state = 1516}, + [492] = {.lex_state = 1516}, + [493] = {.lex_state = 1516}, + [494] = {.lex_state = 1516}, + [495] = {.lex_state = 1516}, + [496] = {.lex_state = 1516}, + [497] = {.lex_state = 1516}, + [498] = {.lex_state = 1516}, + [499] = {.lex_state = 1516}, + [500] = {.lex_state = 1516}, + [501] = {.lex_state = 1516}, + [502] = {.lex_state = 1516}, + [503] = {.lex_state = 1516}, + [504] = {.lex_state = 1516}, + [505] = {.lex_state = 1516}, + [506] = {.lex_state = 1516}, + [507] = {.lex_state = 1516}, + [508] = {.lex_state = 1516}, + [509] = {.lex_state = 1516}, + [510] = {.lex_state = 1516}, + [511] = {.lex_state = 1516}, + [512] = {.lex_state = 1516}, + [513] = {.lex_state = 1516}, + [514] = {.lex_state = 1516}, + [515] = {.lex_state = 1516}, + [516] = {.lex_state = 1516}, + [517] = {.lex_state = 1516}, + [518] = {.lex_state = 1516}, + [519] = {.lex_state = 1516}, + [520] = {.lex_state = 1516}, + [521] = {.lex_state = 1516}, + [522] = {.lex_state = 1516}, + [523] = {.lex_state = 1516}, + [524] = {.lex_state = 1516}, + [525] = {.lex_state = 1516}, + [526] = {.lex_state = 1516}, + [527] = {.lex_state = 1516}, + [528] = {.lex_state = 1516}, + [529] = {.lex_state = 1516}, + [530] = {.lex_state = 1516}, + [531] = {.lex_state = 1516}, + [532] = {.lex_state = 1516}, + [533] = {.lex_state = 1516}, + [534] = {.lex_state = 1516}, + [535] = {.lex_state = 1516}, + [536] = {.lex_state = 1516}, + [537] = {.lex_state = 1516}, + [538] = {.lex_state = 1516}, + [539] = {.lex_state = 1516}, + [540] = {.lex_state = 1516}, + [541] = {.lex_state = 1516}, + [542] = {.lex_state = 1516}, + [543] = {.lex_state = 1516}, + [544] = {.lex_state = 1516}, + [545] = {.lex_state = 1516}, + [546] = {.lex_state = 1516}, + [547] = {.lex_state = 1516}, + [548] = {.lex_state = 1516}, + [549] = {.lex_state = 1516}, + [550] = {.lex_state = 1516}, + [551] = {.lex_state = 1516}, + [552] = {.lex_state = 1516}, + [553] = {.lex_state = 1516}, + [554] = {.lex_state = 1516}, + [555] = {.lex_state = 1516}, + [556] = {.lex_state = 1516}, + [557] = {.lex_state = 1516}, + [558] = {.lex_state = 1516}, + [559] = {.lex_state = 1516}, + [560] = {.lex_state = 1516}, + [561] = {.lex_state = 1516}, + [562] = {.lex_state = 1516}, + [563] = {.lex_state = 1516}, + [564] = {.lex_state = 1516}, + [565] = {.lex_state = 1516}, + [566] = {.lex_state = 1516}, + [567] = {.lex_state = 1516}, + [568] = {.lex_state = 1516}, + [569] = {.lex_state = 1516}, + [570] = {.lex_state = 1516}, + [571] = {.lex_state = 1516}, + [572] = {.lex_state = 1516}, + [573] = {.lex_state = 1516}, + [574] = {.lex_state = 1516}, + [575] = {.lex_state = 1516}, + [576] = {.lex_state = 1516}, + [577] = {.lex_state = 1516}, + [578] = {.lex_state = 1516}, + [579] = {.lex_state = 1516}, + [580] = {.lex_state = 1516}, + [581] = {.lex_state = 1516}, + [582] = {.lex_state = 1516}, + [583] = {.lex_state = 1516}, + [584] = {.lex_state = 1516}, + [585] = {.lex_state = 1516}, + [586] = {.lex_state = 1516}, + [587] = {.lex_state = 1516}, + [588] = {.lex_state = 1516}, + [589] = {.lex_state = 1516}, + [590] = {.lex_state = 1516}, + [591] = {.lex_state = 1516}, + [592] = {.lex_state = 1516}, + [593] = {.lex_state = 1516}, + [594] = {.lex_state = 1516}, + [595] = {.lex_state = 1516}, + [596] = {.lex_state = 1516}, + [597] = {.lex_state = 1516}, + [598] = {.lex_state = 1516}, + [599] = {.lex_state = 1516}, + [600] = {.lex_state = 1516}, + [601] = {.lex_state = 1516}, + [602] = {.lex_state = 1516}, + [603] = {.lex_state = 1516}, + [604] = {.lex_state = 1516}, + [605] = {.lex_state = 1516}, + [606] = {.lex_state = 1516}, + [607] = {.lex_state = 1516}, + [608] = {.lex_state = 1516}, + [609] = {.lex_state = 1516}, + [610] = {.lex_state = 1516}, + [611] = {.lex_state = 1516}, + [612] = {.lex_state = 1516}, + [613] = {.lex_state = 1516}, + [614] = {.lex_state = 1516}, + [615] = {.lex_state = 1516}, + [616] = {.lex_state = 1516}, + [617] = {.lex_state = 1516}, + [618] = {.lex_state = 1516}, + [619] = {.lex_state = 1516}, + [620] = {.lex_state = 1516}, + [621] = {.lex_state = 1516}, + [622] = {.lex_state = 1516}, + [623] = {.lex_state = 1516}, + [624] = {.lex_state = 1516}, + [625] = {.lex_state = 1516}, + [626] = {.lex_state = 1516}, + [627] = {.lex_state = 1516}, + [628] = {.lex_state = 1516}, + [629] = {.lex_state = 1516}, + [630] = {.lex_state = 1516}, + [631] = {.lex_state = 1516}, + [632] = {.lex_state = 1516}, + [633] = {.lex_state = 1516}, + [634] = {.lex_state = 1516}, + [635] = {.lex_state = 1516}, + [636] = {.lex_state = 1516}, + [637] = {.lex_state = 1516}, + [638] = {.lex_state = 1516}, + [639] = {.lex_state = 1516}, + [640] = {.lex_state = 1516}, + [641] = {.lex_state = 1516}, + [642] = {.lex_state = 1516}, + [643] = {.lex_state = 1516}, + [644] = {.lex_state = 1516}, + [645] = {.lex_state = 1516}, + [646] = {.lex_state = 1516}, + [647] = {.lex_state = 1516}, + [648] = {.lex_state = 1516}, + [649] = {.lex_state = 1516}, + [650] = {.lex_state = 1516}, + [651] = {.lex_state = 1516}, + [652] = {.lex_state = 1516}, + [653] = {.lex_state = 1516}, + [654] = {.lex_state = 1516}, + [655] = {.lex_state = 1516}, + [656] = {.lex_state = 1516}, + [657] = {.lex_state = 1516}, + [658] = {.lex_state = 1516}, + [659] = {.lex_state = 1516}, + [660] = {.lex_state = 1516}, + [661] = {.lex_state = 1516}, + [662] = {.lex_state = 1516}, + [663] = {.lex_state = 1516}, + [664] = {.lex_state = 1516}, + [665] = {.lex_state = 1516}, + [666] = {.lex_state = 1516}, + [667] = {.lex_state = 1516}, + [668] = {.lex_state = 1516}, + [669] = {.lex_state = 1516}, + [670] = {.lex_state = 1516}, + [671] = {.lex_state = 1516}, + [672] = {.lex_state = 1516}, + [673] = {.lex_state = 1516}, + [674] = {.lex_state = 1516}, + [675] = {.lex_state = 1516}, + [676] = {.lex_state = 1516}, + [677] = {.lex_state = 1516}, + [678] = {.lex_state = 1516}, + [679] = {.lex_state = 1516}, + [680] = {.lex_state = 1516}, + [681] = {.lex_state = 1516}, + [682] = {.lex_state = 1516}, + [683] = {.lex_state = 1516}, + [684] = {.lex_state = 1516}, + [685] = {.lex_state = 1516}, + [686] = {.lex_state = 1516}, + [687] = {.lex_state = 1516}, + [688] = {.lex_state = 1516}, + [689] = {.lex_state = 1516}, + [690] = {.lex_state = 1516}, + [691] = {.lex_state = 1516}, + [692] = {.lex_state = 1516}, + [693] = {.lex_state = 1516}, + [694] = {.lex_state = 1516}, + [695] = {.lex_state = 1516}, + [696] = {.lex_state = 1516}, + [697] = {.lex_state = 1516}, + [698] = {.lex_state = 1516}, + [699] = {.lex_state = 1516}, + [700] = {.lex_state = 1516}, + [701] = {.lex_state = 1516}, + [702] = {.lex_state = 1516}, + [703] = {.lex_state = 1516}, + [704] = {.lex_state = 1516}, + [705] = {.lex_state = 1516}, + [706] = {.lex_state = 1516}, + [707] = {.lex_state = 1516}, + [708] = {.lex_state = 1516}, + [709] = {.lex_state = 1516}, + [710] = {.lex_state = 1516}, + [711] = {.lex_state = 1516}, + [712] = {.lex_state = 1516}, + [713] = {.lex_state = 1516}, + [714] = {.lex_state = 1516}, + [715] = {.lex_state = 1516}, + [716] = {.lex_state = 1516}, + [717] = {.lex_state = 1516}, + [718] = {.lex_state = 1516}, + [719] = {.lex_state = 1516}, + [720] = {.lex_state = 1516}, + [721] = {.lex_state = 1516}, + [722] = {.lex_state = 1516}, + [723] = {.lex_state = 1516}, + [724] = {.lex_state = 1516}, + [725] = {.lex_state = 1516}, + [726] = {.lex_state = 1516}, + [727] = {.lex_state = 1516}, + [728] = {.lex_state = 1516}, + [729] = {.lex_state = 1516}, + [730] = {.lex_state = 1516}, + [731] = {.lex_state = 1516}, + [732] = {.lex_state = 1516}, + [733] = {.lex_state = 1516}, + [734] = {.lex_state = 1516}, + [735] = {.lex_state = 1516}, + [736] = {.lex_state = 1516}, + [737] = {.lex_state = 1516}, + [738] = {.lex_state = 1516}, + [739] = {.lex_state = 1516}, + [740] = {.lex_state = 1516}, + [741] = {.lex_state = 1516}, + [742] = {.lex_state = 1516}, + [743] = {.lex_state = 1516}, + [744] = {.lex_state = 1516}, + [745] = {.lex_state = 1516}, + [746] = {.lex_state = 1516}, + [747] = {.lex_state = 1516}, + [748] = {.lex_state = 1516}, + [749] = {.lex_state = 1516}, + [750] = {.lex_state = 1516}, + [751] = {.lex_state = 1516}, + [752] = {.lex_state = 1516}, + [753] = {.lex_state = 1516}, + [754] = {.lex_state = 1516}, + [755] = {.lex_state = 1516}, + [756] = {.lex_state = 1516}, + [757] = {.lex_state = 1516}, + [758] = {.lex_state = 1516}, + [759] = {.lex_state = 1516}, + [760] = {.lex_state = 1516}, + [761] = {.lex_state = 1516}, + [762] = {.lex_state = 1516}, + [763] = {.lex_state = 1516}, + [764] = {.lex_state = 1516}, + [765] = {.lex_state = 1516}, + [766] = {.lex_state = 1516}, + [767] = {.lex_state = 1516}, + [768] = {.lex_state = 1516}, + [769] = {.lex_state = 1516}, + [770] = {.lex_state = 1516}, + [771] = {.lex_state = 1516}, + [772] = {.lex_state = 1516}, + [773] = {.lex_state = 1516}, + [774] = {.lex_state = 1516}, + [775] = {.lex_state = 1516}, + [776] = {.lex_state = 1516}, + [777] = {.lex_state = 1516}, + [778] = {.lex_state = 1516}, + [779] = {.lex_state = 1516}, + [780] = {.lex_state = 1516}, + [781] = {.lex_state = 1516}, + [782] = {.lex_state = 1516}, + [783] = {.lex_state = 1516}, + [784] = {.lex_state = 1516}, + [785] = {.lex_state = 1516}, + [786] = {.lex_state = 1516}, + [787] = {.lex_state = 1516}, + [788] = {.lex_state = 1516}, + [789] = {.lex_state = 1516}, + [790] = {.lex_state = 1516}, + [791] = {.lex_state = 1516}, + [792] = {.lex_state = 1516}, + [793] = {.lex_state = 1516}, + [794] = {.lex_state = 1516}, + [795] = {.lex_state = 1516}, + [796] = {.lex_state = 1516}, + [797] = {.lex_state = 1516}, + [798] = {.lex_state = 1516}, + [799] = {.lex_state = 1516}, + [800] = {.lex_state = 1516}, + [801] = {.lex_state = 1516}, + [802] = {.lex_state = 1516}, + [803] = {.lex_state = 1516}, + [804] = {.lex_state = 1516}, + [805] = {.lex_state = 1516}, + [806] = {.lex_state = 1516}, + [807] = {.lex_state = 1516}, + [808] = {.lex_state = 1516}, + [809] = {.lex_state = 2}, + [810] = {.lex_state = 2}, [811] = {.lex_state = 2}, [812] = {.lex_state = 0}, [813] = {.lex_state = 2}, [814] = {.lex_state = 0}, [815] = {.lex_state = 0}, - [816] = {.lex_state = 1}, - [817] = {.lex_state = 2}, - [818] = {.lex_state = 2}, - [819] = {.lex_state = 2}, - [820] = {.lex_state = 0}, - [821] = {.lex_state = 2}, + [816] = {.lex_state = 0}, + [817] = {.lex_state = 0}, + [818] = {.lex_state = 0}, + [819] = {.lex_state = 0}, + [820] = {.lex_state = 2}, + [821] = {.lex_state = 0}, [822] = {.lex_state = 2}, - [823] = {.lex_state = 2}, + [823] = {.lex_state = 0}, [824] = {.lex_state = 2}, [825] = {.lex_state = 2}, - [826] = {.lex_state = 2}, + [826] = {.lex_state = 1}, [827] = {.lex_state = 2}, [828] = {.lex_state = 2}, [829] = {.lex_state = 2}, @@ -12947,7 +13131,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [831] = {.lex_state = 2}, [832] = {.lex_state = 2}, [833] = {.lex_state = 2}, - [834] = {.lex_state = 1}, + [834] = {.lex_state = 2}, [835] = {.lex_state = 2}, [836] = {.lex_state = 2}, [837] = {.lex_state = 2}, @@ -12957,7 +13141,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [841] = {.lex_state = 2}, [842] = {.lex_state = 2}, [843] = {.lex_state = 2}, - [844] = {.lex_state = 2}, + [844] = {.lex_state = 0}, [845] = {.lex_state = 2}, [846] = {.lex_state = 2}, [847] = {.lex_state = 2}, @@ -12978,7 +13162,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [862] = {.lex_state = 2}, [863] = {.lex_state = 2}, [864] = {.lex_state = 2}, - [865] = {.lex_state = 0}, + [865] = {.lex_state = 1}, [866] = {.lex_state = 2}, [867] = {.lex_state = 2}, [868] = {.lex_state = 2}, @@ -12996,27 +13180,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [880] = {.lex_state = 2}, [881] = {.lex_state = 2}, [882] = {.lex_state = 2}, - [883] = {.lex_state = 1}, + [883] = {.lex_state = 2}, [884] = {.lex_state = 2}, [885] = {.lex_state = 2}, [886] = {.lex_state = 2}, [887] = {.lex_state = 2}, - [888] = {.lex_state = 0}, + [888] = {.lex_state = 2}, [889] = {.lex_state = 2}, [890] = {.lex_state = 2}, [891] = {.lex_state = 2}, [892] = {.lex_state = 2}, [893] = {.lex_state = 2}, - [894] = {.lex_state = 2}, + [894] = {.lex_state = 1}, [895] = {.lex_state = 2}, [896] = {.lex_state = 2}, [897] = {.lex_state = 2}, [898] = {.lex_state = 2}, [899] = {.lex_state = 2}, [900] = {.lex_state = 2}, - [901] = {.lex_state = 0}, + [901] = {.lex_state = 2}, [902] = {.lex_state = 2}, - [903] = {.lex_state = 1}, + [903] = {.lex_state = 0}, [904] = {.lex_state = 2}, [905] = {.lex_state = 2}, [906] = {.lex_state = 2}, @@ -13026,8 +13210,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [910] = {.lex_state = 2}, [911] = {.lex_state = 2}, [912] = {.lex_state = 2}, - [913] = {.lex_state = 2}, - [914] = {.lex_state = 2}, + [913] = {.lex_state = 1}, + [914] = {.lex_state = 0}, [915] = {.lex_state = 2}, [916] = {.lex_state = 2}, [917] = {.lex_state = 2}, @@ -13051,12 +13235,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [935] = {.lex_state = 2}, [936] = {.lex_state = 2}, [937] = {.lex_state = 2}, - [938] = {.lex_state = 2}, + [938] = {.lex_state = 0}, [939] = {.lex_state = 2}, [940] = {.lex_state = 2}, [941] = {.lex_state = 2}, [942] = {.lex_state = 2}, - [943] = {.lex_state = 0}, + [943] = {.lex_state = 2}, [944] = {.lex_state = 2}, [945] = {.lex_state = 2}, [946] = {.lex_state = 2}, @@ -13066,7 +13250,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [950] = {.lex_state = 2}, [951] = {.lex_state = 2}, [952] = {.lex_state = 2}, - [953] = {.lex_state = 2}, + [953] = {.lex_state = 0}, [954] = {.lex_state = 2}, [955] = {.lex_state = 2}, [956] = {.lex_state = 2}, @@ -13095,78 +13279,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [979] = {.lex_state = 2}, [980] = {.lex_state = 2}, [981] = {.lex_state = 2}, - [982] = {.lex_state = 0}, + [982] = {.lex_state = 2}, [983] = {.lex_state = 2}, [984] = {.lex_state = 2}, [985] = {.lex_state = 2}, - [986] = {.lex_state = 0}, - [987] = {.lex_state = 3}, - [988] = {.lex_state = 0}, - [989] = {.lex_state = 5}, - [990] = {.lex_state = 1}, + [986] = {.lex_state = 2}, + [987] = {.lex_state = 2}, + [988] = {.lex_state = 2}, + [989] = {.lex_state = 2}, + [990] = {.lex_state = 2}, [991] = {.lex_state = 2}, - [992] = {.lex_state = 5}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 2}, - [995] = {.lex_state = 5}, - [996] = {.lex_state = 5}, - [997] = {.lex_state = 1}, + [992] = {.lex_state = 2}, + [993] = {.lex_state = 2}, + [994] = {.lex_state = 5}, + [995] = {.lex_state = 0}, + [996] = {.lex_state = 2}, + [997] = {.lex_state = 2}, [998] = {.lex_state = 0}, [999] = {.lex_state = 5}, - [1000] = {.lex_state = 4}, - [1001] = {.lex_state = 1483}, - [1002] = {.lex_state = 0}, - [1003] = {.lex_state = 5}, - [1004] = {.lex_state = 5}, + [1000] = {.lex_state = 3}, + [1001] = {.lex_state = 0}, + [1002] = {.lex_state = 2}, + [1003] = {.lex_state = 1}, + [1004] = {.lex_state = 4}, [1005] = {.lex_state = 5}, [1006] = {.lex_state = 5}, - [1007] = {.lex_state = 1483}, - [1008] = {.lex_state = 0}, - [1009] = {.lex_state = 1483}, + [1007] = {.lex_state = 5}, + [1008] = {.lex_state = 1516}, + [1009] = {.lex_state = 1516}, [1010] = {.lex_state = 5}, - [1011] = {.lex_state = 5}, + [1011] = {.lex_state = 1516}, [1012] = {.lex_state = 0}, [1013] = {.lex_state = 5}, - [1014] = {.lex_state = 6}, - [1015] = {.lex_state = 6}, - [1016] = {.lex_state = 5}, + [1014] = {.lex_state = 1516}, + [1015] = {.lex_state = 5}, + [1016] = {.lex_state = 0}, [1017] = {.lex_state = 5}, - [1018] = {.lex_state = 0}, - [1019] = {.lex_state = 5}, + [1018] = {.lex_state = 5}, + [1019] = {.lex_state = 0}, [1020] = {.lex_state = 5}, - [1021] = {.lex_state = 5}, + [1021] = {.lex_state = 6}, [1022] = {.lex_state = 5}, - [1023] = {.lex_state = 5}, + [1023] = {.lex_state = 1516}, [1024] = {.lex_state = 5}, [1025] = {.lex_state = 5}, - [1026] = {.lex_state = 5}, - [1027] = {.lex_state = 5}, - [1028] = {.lex_state = 1483}, - [1029] = {.lex_state = 1483}, + [1026] = {.lex_state = 6}, + [1027] = {.lex_state = 0}, + [1028] = {.lex_state = 5}, + [1029] = {.lex_state = 5}, [1030] = {.lex_state = 5}, [1031] = {.lex_state = 5}, - [1032] = {.lex_state = 2}, + [1032] = {.lex_state = 5}, [1033] = {.lex_state = 5}, - [1034] = {.lex_state = 1483}, + [1034] = {.lex_state = 5}, [1035] = {.lex_state = 5}, - [1036] = {.lex_state = 5}, + [1036] = {.lex_state = 2}, [1037] = {.lex_state = 5}, - [1038] = {.lex_state = 5}, + [1038] = {.lex_state = 0}, [1039] = {.lex_state = 5}, [1040] = {.lex_state = 5}, [1041] = {.lex_state = 5}, [1042] = {.lex_state = 5}, [1043] = {.lex_state = 5}, - [1044] = {.lex_state = 1483}, + [1044] = {.lex_state = 5}, [1045] = {.lex_state = 5}, [1046] = {.lex_state = 5}, - [1047] = {.lex_state = 1483}, - [1048] = {.lex_state = 5}, - [1049] = {.lex_state = 5}, + [1047] = {.lex_state = 5}, + [1048] = {.lex_state = 1}, + [1049] = {.lex_state = 1516}, [1050] = {.lex_state = 5}, - [1051] = {.lex_state = 5}, + [1051] = {.lex_state = 1516}, [1052] = {.lex_state = 5}, - [1053] = {.lex_state = 5}, + [1053] = {.lex_state = 2}, [1054] = {.lex_state = 5}, [1055] = {.lex_state = 5}, [1056] = {.lex_state = 5}, @@ -13174,312 +13358,324 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1058] = {.lex_state = 5}, [1059] = {.lex_state = 5}, [1060] = {.lex_state = 5}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 5}, - [1063] = {.lex_state = 6}, - [1064] = {.lex_state = 0}, - [1065] = {.lex_state = 6}, - [1066] = {.lex_state = 6}, - [1067] = {.lex_state = 6}, - [1068] = {.lex_state = 6}, - [1069] = {.lex_state = 6}, - [1070] = {.lex_state = 6}, - [1071] = {.lex_state = 6}, - [1072] = {.lex_state = 6}, - [1073] = {.lex_state = 6}, - [1074] = {.lex_state = 6}, - [1075] = {.lex_state = 6}, + [1061] = {.lex_state = 1516}, + [1062] = {.lex_state = 2}, + [1063] = {.lex_state = 5}, + [1064] = {.lex_state = 5}, + [1065] = {.lex_state = 5}, + [1066] = {.lex_state = 5}, + [1067] = {.lex_state = 5}, + [1068] = {.lex_state = 5}, + [1069] = {.lex_state = 5}, + [1070] = {.lex_state = 5}, + [1071] = {.lex_state = 5}, + [1072] = {.lex_state = 5}, + [1073] = {.lex_state = 5}, + [1074] = {.lex_state = 8}, + [1075] = {.lex_state = 1}, [1076] = {.lex_state = 6}, [1077] = {.lex_state = 6}, [1078] = {.lex_state = 6}, [1079] = {.lex_state = 6}, [1080] = {.lex_state = 6}, [1081] = {.lex_state = 6}, - [1082] = {.lex_state = 1483}, + [1082] = {.lex_state = 6}, [1083] = {.lex_state = 6}, [1084] = {.lex_state = 6}, [1085] = {.lex_state = 6}, - [1086] = {.lex_state = 1483}, + [1086] = {.lex_state = 6}, [1087] = {.lex_state = 6}, - [1088] = {.lex_state = 1}, + [1088] = {.lex_state = 6}, [1089] = {.lex_state = 6}, - [1090] = {.lex_state = 2}, + [1090] = {.lex_state = 6}, [1091] = {.lex_state = 6}, - [1092] = {.lex_state = 6}, + [1092] = {.lex_state = 1516}, [1093] = {.lex_state = 6}, [1094] = {.lex_state = 6}, - [1095] = {.lex_state = 0}, + [1095] = {.lex_state = 6}, [1096] = {.lex_state = 6}, - [1097] = {.lex_state = 8}, + [1097] = {.lex_state = 1516}, [1098] = {.lex_state = 6}, [1099] = {.lex_state = 6}, - [1100] = {.lex_state = 6}, - [1101] = {.lex_state = 1483}, - [1102] = {.lex_state = 6}, + [1100] = {.lex_state = 1}, + [1101] = {.lex_state = 6}, + [1102] = {.lex_state = 2}, [1103] = {.lex_state = 6}, [1104] = {.lex_state = 6}, [1105] = {.lex_state = 6}, [1106] = {.lex_state = 6}, - [1107] = {.lex_state = 1483}, - [1108] = {.lex_state = 1483}, - [1109] = {.lex_state = 1483}, - [1110] = {.lex_state = 1483}, + [1107] = {.lex_state = 0}, + [1108] = {.lex_state = 6}, + [1109] = {.lex_state = 9}, + [1110] = {.lex_state = 6}, [1111] = {.lex_state = 6}, [1112] = {.lex_state = 6}, - [1113] = {.lex_state = 6}, + [1113] = {.lex_state = 1516}, [1114] = {.lex_state = 6}, [1115] = {.lex_state = 6}, [1116] = {.lex_state = 6}, [1117] = {.lex_state = 6}, [1118] = {.lex_state = 6}, - [1119] = {.lex_state = 1483}, - [1120] = {.lex_state = 6}, - [1121] = {.lex_state = 6}, - [1122] = {.lex_state = 6}, + [1119] = {.lex_state = 1516}, + [1120] = {.lex_state = 1516}, + [1121] = {.lex_state = 1516}, + [1122] = {.lex_state = 1516}, [1123] = {.lex_state = 6}, [1124] = {.lex_state = 6}, [1125] = {.lex_state = 6}, - [1126] = {.lex_state = 9}, - [1127] = {.lex_state = 9}, - [1128] = {.lex_state = 9}, - [1129] = {.lex_state = 9}, - [1130] = {.lex_state = 1}, - [1131] = {.lex_state = 8}, - [1132] = {.lex_state = 9}, - [1133] = {.lex_state = 7}, - [1134] = {.lex_state = 9}, - [1135] = {.lex_state = 7}, - [1136] = {.lex_state = 9}, - [1137] = {.lex_state = 7}, - [1138] = {.lex_state = 9}, - [1139] = {.lex_state = 7}, - [1140] = {.lex_state = 7}, - [1141] = {.lex_state = 7}, - [1142] = {.lex_state = 7}, + [1126] = {.lex_state = 6}, + [1127] = {.lex_state = 6}, + [1128] = {.lex_state = 6}, + [1129] = {.lex_state = 6}, + [1130] = {.lex_state = 6}, + [1131] = {.lex_state = 1516}, + [1132] = {.lex_state = 6}, + [1133] = {.lex_state = 6}, + [1134] = {.lex_state = 6}, + [1135] = {.lex_state = 6}, + [1136] = {.lex_state = 6}, + [1137] = {.lex_state = 8}, + [1138] = {.lex_state = 8}, + [1139] = {.lex_state = 8}, + [1140] = {.lex_state = 6}, + [1141] = {.lex_state = 9}, + [1142] = {.lex_state = 0}, [1143] = {.lex_state = 7}, - [1144] = {.lex_state = 2}, - [1145] = {.lex_state = 7}, + [1144] = {.lex_state = 8}, + [1145] = {.lex_state = 8}, [1146] = {.lex_state = 7}, - [1147] = {.lex_state = 7}, + [1147] = {.lex_state = 8}, [1148] = {.lex_state = 7}, - [1149] = {.lex_state = 9}, + [1149] = {.lex_state = 8}, [1150] = {.lex_state = 7}, - [1151] = {.lex_state = 7}, + [1151] = {.lex_state = 8}, [1152] = {.lex_state = 7}, - [1153] = {.lex_state = 7}, + [1153] = {.lex_state = 8}, [1154] = {.lex_state = 7}, - [1155] = {.lex_state = 7}, - [1156] = {.lex_state = 9}, - [1157] = {.lex_state = 7}, + [1155] = {.lex_state = 8}, + [1156] = {.lex_state = 7}, + [1157] = {.lex_state = 8}, [1158] = {.lex_state = 7}, [1159] = {.lex_state = 7}, - [1160] = {.lex_state = 7}, - [1161] = {.lex_state = 9}, - [1162] = {.lex_state = 7}, - [1163] = {.lex_state = 9}, - [1164] = {.lex_state = 7}, + [1160] = {.lex_state = 8}, + [1161] = {.lex_state = 7}, + [1162] = {.lex_state = 1516}, + [1163] = {.lex_state = 7}, + [1164] = {.lex_state = 8}, [1165] = {.lex_state = 7}, - [1166] = {.lex_state = 7}, + [1166] = {.lex_state = 8}, [1167] = {.lex_state = 7}, - [1168] = {.lex_state = 7}, - [1169] = {.lex_state = 9}, - [1170] = {.lex_state = 7}, - [1171] = {.lex_state = 9}, - [1172] = {.lex_state = 7}, - [1173] = {.lex_state = 9}, - [1174] = {.lex_state = 7}, - [1175] = {.lex_state = 1483}, - [1176] = {.lex_state = 7}, - [1177] = {.lex_state = 1483}, - [1178] = {.lex_state = 7}, - [1179] = {.lex_state = 9}, - [1180] = {.lex_state = 7}, - [1181] = {.lex_state = 9}, - [1182] = {.lex_state = 7}, - [1183] = {.lex_state = 9}, - [1184] = {.lex_state = 7}, - [1185] = {.lex_state = 9}, - [1186] = {.lex_state = 7}, + [1168] = {.lex_state = 1516}, + [1169] = {.lex_state = 7}, + [1170] = {.lex_state = 8}, + [1171] = {.lex_state = 7}, + [1172] = {.lex_state = 8}, + [1173] = {.lex_state = 7}, + [1174] = {.lex_state = 8}, + [1175] = {.lex_state = 7}, + [1176] = {.lex_state = 8}, + [1177] = {.lex_state = 7}, + [1178] = {.lex_state = 8}, + [1179] = {.lex_state = 7}, + [1180] = {.lex_state = 8}, + [1181] = {.lex_state = 7}, + [1182] = {.lex_state = 8}, + [1183] = {.lex_state = 7}, + [1184] = {.lex_state = 8}, + [1185] = {.lex_state = 7}, + [1186] = {.lex_state = 8}, [1187] = {.lex_state = 7}, - [1188] = {.lex_state = 7}, - [1189] = {.lex_state = 9}, - [1190] = {.lex_state = 7}, - [1191] = {.lex_state = 9}, - [1192] = {.lex_state = 7}, - [1193] = {.lex_state = 9}, - [1194] = {.lex_state = 7}, - [1195] = {.lex_state = 9}, - [1196] = {.lex_state = 7}, - [1197] = {.lex_state = 9}, - [1198] = {.lex_state = 7}, - [1199] = {.lex_state = 1483}, - [1200] = {.lex_state = 7}, - [1201] = {.lex_state = 9}, - [1202] = {.lex_state = 7}, - [1203] = {.lex_state = 9}, - [1204] = {.lex_state = 7}, - [1205] = {.lex_state = 1483}, - [1206] = {.lex_state = 7}, - [1207] = {.lex_state = 9}, - [1208] = {.lex_state = 7}, - [1209] = {.lex_state = 9}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 9}, + [1188] = {.lex_state = 8}, + [1189] = {.lex_state = 7}, + [1190] = {.lex_state = 8}, + [1191] = {.lex_state = 7}, + [1192] = {.lex_state = 1516}, + [1193] = {.lex_state = 7}, + [1194] = {.lex_state = 8}, + [1195] = {.lex_state = 7}, + [1196] = {.lex_state = 8}, + [1197] = {.lex_state = 7}, + [1198] = {.lex_state = 8}, + [1199] = {.lex_state = 7}, + [1200] = {.lex_state = 8}, + [1201] = {.lex_state = 7}, + [1202] = {.lex_state = 8}, + [1203] = {.lex_state = 7}, + [1204] = {.lex_state = 8}, + [1205] = {.lex_state = 7}, + [1206] = {.lex_state = 8}, + [1207] = {.lex_state = 7}, + [1208] = {.lex_state = 2}, + [1209] = {.lex_state = 7}, + [1210] = {.lex_state = 8}, + [1211] = {.lex_state = 7}, [1212] = {.lex_state = 7}, - [1213] = {.lex_state = 9}, - [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 9}, - [1216] = {.lex_state = 7}, - [1217] = {.lex_state = 9}, - [1218] = {.lex_state = 7}, + [1213] = {.lex_state = 7}, + [1214] = {.lex_state = 1516}, + [1215] = {.lex_state = 7}, + [1216] = {.lex_state = 8}, + [1217] = {.lex_state = 7}, + [1218] = {.lex_state = 8}, [1219] = {.lex_state = 7}, - [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 9}, - [1222] = {.lex_state = 7}, + [1220] = {.lex_state = 1516}, + [1221] = {.lex_state = 7}, + [1222] = {.lex_state = 1516}, [1223] = {.lex_state = 7}, - [1224] = {.lex_state = 7}, - [1225] = {.lex_state = 1483}, - [1226] = {.lex_state = 7}, - [1227] = {.lex_state = 9}, - [1228] = {.lex_state = 7}, + [1224] = {.lex_state = 8}, + [1225] = {.lex_state = 7}, + [1226] = {.lex_state = 8}, + [1227] = {.lex_state = 7}, + [1228] = {.lex_state = 8}, [1229] = {.lex_state = 7}, - [1230] = {.lex_state = 7}, - [1231] = {.lex_state = 1483}, - [1232] = {.lex_state = 7}, - [1233] = {.lex_state = 9}, - [1234] = {.lex_state = 7}, - [1235] = {.lex_state = 9}, + [1230] = {.lex_state = 8}, + [1231] = {.lex_state = 7}, + [1232] = {.lex_state = 8}, + [1233] = {.lex_state = 7}, + [1234] = {.lex_state = 8}, + [1235] = {.lex_state = 7}, [1236] = {.lex_state = 7}, [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 7}, - [1239] = {.lex_state = 9}, - [1240] = {.lex_state = 7}, - [1241] = {.lex_state = 9}, - [1242] = {.lex_state = 7}, - [1243] = {.lex_state = 9}, - [1244] = {.lex_state = 7}, - [1245] = {.lex_state = 9}, + [1238] = {.lex_state = 8}, + [1239] = {.lex_state = 7}, + [1240] = {.lex_state = 8}, + [1241] = {.lex_state = 7}, + [1242] = {.lex_state = 8}, + [1243] = {.lex_state = 7}, + [1244] = {.lex_state = 8}, + [1245] = {.lex_state = 7}, [1246] = {.lex_state = 7}, - [1247] = {.lex_state = 9}, - [1248] = {.lex_state = 7}, + [1247] = {.lex_state = 7}, + [1248] = {.lex_state = 8}, [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 7}, - [1251] = {.lex_state = 9}, - [1252] = {.lex_state = 7}, - [1253] = {.lex_state = 9}, - [1254] = {.lex_state = 7}, - [1255] = {.lex_state = 9}, - [1256] = {.lex_state = 1483}, + [1250] = {.lex_state = 8}, + [1251] = {.lex_state = 7}, + [1252] = {.lex_state = 8}, + [1253] = {.lex_state = 7}, + [1254] = {.lex_state = 8}, + [1255] = {.lex_state = 7}, + [1256] = {.lex_state = 7}, [1257] = {.lex_state = 7}, - [1258] = {.lex_state = 9}, - [1259] = {.lex_state = 9}, + [1258] = {.lex_state = 8}, + [1259] = {.lex_state = 7}, [1260] = {.lex_state = 7}, - [1261] = {.lex_state = 9}, - [1262] = {.lex_state = 9}, + [1261] = {.lex_state = 7}, + [1262] = {.lex_state = 8}, [1263] = {.lex_state = 7}, - [1264] = {.lex_state = 9}, - [1265] = {.lex_state = 9}, - [1266] = {.lex_state = 9}, - [1267] = {.lex_state = 9}, - [1268] = {.lex_state = 7}, - [1269] = {.lex_state = 9}, - [1270] = {.lex_state = 9}, - [1271] = {.lex_state = 7}, - [1272] = {.lex_state = 1483}, - [1273] = {.lex_state = 9}, - [1274] = {.lex_state = 7}, - [1275] = {.lex_state = 9}, - [1276] = {.lex_state = 1483}, - [1277] = {.lex_state = 9}, - [1278] = {.lex_state = 7}, - [1279] = {.lex_state = 1483}, - [1280] = {.lex_state = 1483}, - [1281] = {.lex_state = 7}, - [1282] = {.lex_state = 9}, - [1283] = {.lex_state = 1483}, - [1284] = {.lex_state = 9}, - [1285] = {.lex_state = 7}, - [1286] = {.lex_state = 9}, - [1287] = {.lex_state = 9}, - [1288] = {.lex_state = 7}, - [1289] = {.lex_state = 7}, - [1290] = {.lex_state = 9}, - [1291] = {.lex_state = 9}, - [1292] = {.lex_state = 1483}, - [1293] = {.lex_state = 7}, - [1294] = {.lex_state = 7}, - [1295] = {.lex_state = 9}, - [1296] = {.lex_state = 9}, - [1297] = {.lex_state = 9}, - [1298] = {.lex_state = 9}, + [1264] = {.lex_state = 7}, + [1265] = {.lex_state = 8}, + [1266] = {.lex_state = 1516}, + [1267] = {.lex_state = 8}, + [1268] = {.lex_state = 8}, + [1269] = {.lex_state = 7}, + [1270] = {.lex_state = 1516}, + [1271] = {.lex_state = 1516}, + [1272] = {.lex_state = 7}, + [1273] = {.lex_state = 8}, + [1274] = {.lex_state = 8}, + [1275] = {.lex_state = 8}, + [1276] = {.lex_state = 7}, + [1277] = {.lex_state = 8}, + [1278] = {.lex_state = 8}, + [1279] = {.lex_state = 8}, + [1280] = {.lex_state = 7}, + [1281] = {.lex_state = 8}, + [1282] = {.lex_state = 8}, + [1283] = {.lex_state = 7}, + [1284] = {.lex_state = 8}, + [1285] = {.lex_state = 8}, + [1286] = {.lex_state = 7}, + [1287] = {.lex_state = 8}, + [1288] = {.lex_state = 8}, + [1289] = {.lex_state = 8}, + [1290] = {.lex_state = 1516}, + [1291] = {.lex_state = 7}, + [1292] = {.lex_state = 7}, + [1293] = {.lex_state = 1516}, + [1294] = {.lex_state = 1516}, + [1295] = {.lex_state = 7}, + [1296] = {.lex_state = 8}, + [1297] = {.lex_state = 1516}, + [1298] = {.lex_state = 8}, [1299] = {.lex_state = 7}, - [1300] = {.lex_state = 9}, - [1301] = {.lex_state = 9}, - [1302] = {.lex_state = 9}, - [1303] = {.lex_state = 7}, - [1304] = {.lex_state = 9}, - [1305] = {.lex_state = 9}, - [1306] = {.lex_state = 9}, + [1300] = {.lex_state = 8}, + [1301] = {.lex_state = 8}, + [1302] = {.lex_state = 7}, + [1303] = {.lex_state = 8}, + [1304] = {.lex_state = 8}, + [1305] = {.lex_state = 7}, + [1306] = {.lex_state = 1516}, [1307] = {.lex_state = 7}, - [1308] = {.lex_state = 9}, - [1309] = {.lex_state = 7}, - [1310] = {.lex_state = 7}, - [1311] = {.lex_state = 9}, - [1312] = {.lex_state = 9}, + [1308] = {.lex_state = 7}, + [1309] = {.lex_state = 8}, + [1310] = {.lex_state = 8}, + [1311] = {.lex_state = 7}, + [1312] = {.lex_state = 8}, [1313] = {.lex_state = 7}, - [1314] = {.lex_state = 9}, - [1315] = {.lex_state = 2}, - [1316] = {.lex_state = 9}, + [1314] = {.lex_state = 7}, + [1315] = {.lex_state = 8}, + [1316] = {.lex_state = 7}, [1317] = {.lex_state = 7}, - [1318] = {.lex_state = 7}, + [1318] = {.lex_state = 8}, [1319] = {.lex_state = 7}, - [1320] = {.lex_state = 9}, - [1321] = {.lex_state = 9}, - [1322] = {.lex_state = 9}, - [1323] = {.lex_state = 9}, - [1324] = {.lex_state = 1483}, + [1320] = {.lex_state = 8}, + [1321] = {.lex_state = 8}, + [1322] = {.lex_state = 7}, + [1323] = {.lex_state = 8}, + [1324] = {.lex_state = 8}, [1325] = {.lex_state = 7}, - [1326] = {.lex_state = 9}, - [1327] = {.lex_state = 9}, - [1328] = {.lex_state = 7}, - [1329] = {.lex_state = 9}, - [1330] = {.lex_state = 9}, - [1331] = {.lex_state = 7}, - [1332] = {.lex_state = 1483}, - [1333] = {.lex_state = 9}, - [1334] = {.lex_state = 7}, - [1335] = {.lex_state = 9}, - [1336] = {.lex_state = 9}, - [1337] = {.lex_state = 7}, - [1338] = {.lex_state = 9}, - [1339] = {.lex_state = 9}, - [1340] = {.lex_state = 9}, - [1341] = {.lex_state = 7}, + [1326] = {.lex_state = 7}, + [1327] = {.lex_state = 2}, + [1328] = {.lex_state = 8}, + [1329] = {.lex_state = 7}, + [1330] = {.lex_state = 7}, + [1331] = {.lex_state = 8}, + [1332] = {.lex_state = 7}, + [1333] = {.lex_state = 7}, + [1334] = {.lex_state = 8}, + [1335] = {.lex_state = 1516}, + [1336] = {.lex_state = 7}, + [1337] = {.lex_state = 8}, + [1338] = {.lex_state = 7}, + [1339] = {.lex_state = 7}, + [1340] = {.lex_state = 8}, + [1341] = {.lex_state = 8}, [1342] = {.lex_state = 7}, - [1343] = {.lex_state = 9}, - [1344] = {.lex_state = 9}, - [1345] = {.lex_state = 9}, - [1346] = {.lex_state = 9}, + [1343] = {.lex_state = 7}, + [1344] = {.lex_state = 8}, + [1345] = {.lex_state = 1516}, + [1346] = {.lex_state = 7}, [1347] = {.lex_state = 7}, - [1348] = {.lex_state = 7}, - [1349] = {.lex_state = 7}, - [1350] = {.lex_state = 9}, - [1351] = {.lex_state = 9}, - [1352] = {.lex_state = 9}, + [1348] = {.lex_state = 8}, + [1349] = {.lex_state = 8}, + [1350] = {.lex_state = 7}, + [1351] = {.lex_state = 8}, + [1352] = {.lex_state = 7}, [1353] = {.lex_state = 7}, - [1354] = {.lex_state = 9}, + [1354] = {.lex_state = 8}, [1355] = {.lex_state = 7}, - [1356] = {.lex_state = 9}, - [1357] = {.lex_state = 1483}, - [1358] = {.lex_state = 9}, + [1356] = {.lex_state = 8}, + [1357] = {.lex_state = 7}, + [1358] = {.lex_state = 8}, [1359] = {.lex_state = 7}, - [1360] = {.lex_state = 9}, + [1360] = {.lex_state = 8}, [1361] = {.lex_state = 7}, - [1362] = {.lex_state = 9}, - [1363] = {.lex_state = 0}, - [1364] = {.lex_state = 0}, - [1365] = {.lex_state = 2}, - [1366] = {.lex_state = 0}, + [1362] = {.lex_state = 8}, + [1363] = {.lex_state = 7}, + [1364] = {.lex_state = 8}, + [1365] = {.lex_state = 7}, + [1366] = {.lex_state = 8}, + [1367] = {.lex_state = 7}, + [1368] = {.lex_state = 8}, + [1369] = {.lex_state = 7}, + [1370] = {.lex_state = 8}, + [1371] = {.lex_state = 7}, + [1372] = {.lex_state = 8}, + [1373] = {.lex_state = 7}, + [1374] = {.lex_state = 8}, + [1375] = {.lex_state = 0}, + [1376] = {.lex_state = 0}, + [1377] = {.lex_state = 0}, + [1378] = {.lex_state = 2}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13614,6 +13810,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_log_verbose_token1] = ACTIONS(1), [aux_sym_macs_token1] = ACTIONS(1), [aux_sym_number_of_password_prompts_token1] = ACTIONS(1), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1), + [aux_sym_obscure_keystroke_timing_value_token1] = ACTIONS(1), [aux_sym_password_authentication_token1] = ACTIONS(1), [aux_sym_permit_local_command_token1] = ACTIONS(1), [aux_sym_permit_remote_open_token1] = ACTIONS(1), @@ -13673,14 +13871,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_tunnel_device_token1] = ACTIONS(1), [aux_sym_update_host_keys_token1] = ACTIONS(1), [aux_sym_use_keychain_token1] = ACTIONS(1), - [aux_sym_use_roaming_token1] = ACTIONS(1), [aux_sym_user_token1] = ACTIONS(1), [aux_sym_verify_host_key_dns_token1] = ACTIONS(1), [aux_sym_visual_host_key_token1] = ACTIONS(1), [aux_sym_xauth_location_token1] = ACTIONS(1), }, [1] = { - [sym_client_config] = STATE(1366), + [sym_client_config] = STATE(1375), [sym__option] = STATE(2), [sym_host] = STATE(2), [sym_match] = STATE(2), @@ -13752,6 +13949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_macs] = STATE(2), [sym_no_host_authentication_for_localhost] = STATE(2), [sym_number_of_password_prompts] = STATE(2), + [sym_obscure_keystroke_timing] = STATE(2), [sym_password_authentication] = STATE(2), [sym_permit_local_command] = STATE(2), [sym_permit_remote_open] = STATE(2), @@ -13868,49 +14066,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_macs_token1] = ACTIONS(141), [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(143), [aux_sym_number_of_password_prompts_token1] = ACTIONS(145), - [aux_sym_password_authentication_token1] = ACTIONS(147), - [aux_sym_permit_local_command_token1] = ACTIONS(149), - [aux_sym_permit_remote_open_token1] = ACTIONS(151), - [aux_sym_pkcs11_provider_token1] = ACTIONS(153), - [aux_sym_port_token1] = ACTIONS(155), - [aux_sym_preferred_authentications_token1] = ACTIONS(157), - [aux_sym_protocol_token1] = ACTIONS(159), - [aux_sym_proxy_command_token1] = ACTIONS(161), - [aux_sym_proxy_jump_token1] = ACTIONS(163), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(165), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(167), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(169), - [aux_sym_pubkey_authentication_token1] = ACTIONS(171), - [aux_sym_rekey_limit_token1] = ACTIONS(173), - [aux_sym_remote_command_token1] = ACTIONS(175), - [aux_sym_remote_forward_token1] = ACTIONS(177), - [aux_sym_request_tty_token1] = ACTIONS(179), - [aux_sym_required_rsa_size_token1] = ACTIONS(181), - [aux_sym_revoked_host_keys_token1] = ACTIONS(183), - [aux_sym_security_key_provider_token1] = ACTIONS(185), - [aux_sym_send_env_token1] = ACTIONS(187), - [aux_sym_server_alive_count_max_token1] = ACTIONS(189), - [aux_sym_server_alive_interval_token1] = ACTIONS(191), - [aux_sym_session_type_token1] = ACTIONS(193), - [aux_sym_set_env_token1] = ACTIONS(195), - [aux_sym_stdin_null_token1] = ACTIONS(197), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(199), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(201), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(203), - [aux_sym_syslog_facility_token1] = ACTIONS(205), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(207), - [aux_sym_keep_alive_token1] = ACTIONS(209), - [aux_sym_tag_token1] = ACTIONS(211), - [aux_sym_tunnel_token1] = ACTIONS(213), - [aux_sym_tunnel_device_token1] = ACTIONS(215), - [aux_sym_update_host_keys_token1] = ACTIONS(217), - [aux_sym_use_keychain_token1] = ACTIONS(219), - [aux_sym_use_roaming_token1] = ACTIONS(221), - [aux_sym_user_token1] = ACTIONS(223), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(225), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(227), - [aux_sym_visual_host_key_token1] = ACTIONS(229), - [aux_sym_xauth_location_token1] = ACTIONS(231), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(147), + [aux_sym_password_authentication_token1] = ACTIONS(149), + [aux_sym_permit_local_command_token1] = ACTIONS(151), + [aux_sym_permit_remote_open_token1] = ACTIONS(153), + [aux_sym_pkcs11_provider_token1] = ACTIONS(155), + [aux_sym_port_token1] = ACTIONS(157), + [aux_sym_preferred_authentications_token1] = ACTIONS(159), + [aux_sym_protocol_token1] = ACTIONS(161), + [aux_sym_proxy_command_token1] = ACTIONS(163), + [aux_sym_proxy_jump_token1] = ACTIONS(165), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(167), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(169), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(171), + [aux_sym_pubkey_authentication_token1] = ACTIONS(173), + [aux_sym_rekey_limit_token1] = ACTIONS(175), + [aux_sym_remote_command_token1] = ACTIONS(177), + [aux_sym_remote_forward_token1] = ACTIONS(179), + [aux_sym_request_tty_token1] = ACTIONS(181), + [aux_sym_required_rsa_size_token1] = ACTIONS(183), + [aux_sym_revoked_host_keys_token1] = ACTIONS(185), + [aux_sym_security_key_provider_token1] = ACTIONS(187), + [aux_sym_send_env_token1] = ACTIONS(189), + [aux_sym_server_alive_count_max_token1] = ACTIONS(191), + [aux_sym_server_alive_interval_token1] = ACTIONS(193), + [aux_sym_session_type_token1] = ACTIONS(195), + [aux_sym_set_env_token1] = ACTIONS(197), + [aux_sym_stdin_null_token1] = ACTIONS(199), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(201), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(203), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(205), + [aux_sym_syslog_facility_token1] = ACTIONS(207), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(209), + [aux_sym_keep_alive_token1] = ACTIONS(211), + [aux_sym_tag_token1] = ACTIONS(213), + [aux_sym_tunnel_token1] = ACTIONS(215), + [aux_sym_tunnel_device_token1] = ACTIONS(217), + [aux_sym_update_host_keys_token1] = ACTIONS(219), + [aux_sym_use_keychain_token1] = ACTIONS(221), + [aux_sym_use_roaming_token1] = ACTIONS(223), + [aux_sym_user_token1] = ACTIONS(225), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(227), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(229), + [aux_sym_visual_host_key_token1] = ACTIONS(231), + [aux_sym_xauth_location_token1] = ACTIONS(233), }, [2] = { [sym__option] = STATE(3), @@ -13984,6 +14183,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_macs] = STATE(3), [sym_no_host_authentication_for_localhost] = STATE(3), [sym_number_of_password_prompts] = STATE(3), + [sym_obscure_keystroke_timing] = STATE(3), [sym_password_authentication] = STATE(3), [sym_permit_local_command] = STATE(3), [sym_permit_remote_open] = STATE(3), @@ -14028,7 +14228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_visual_host_key] = STATE(3), [sym_xauth_location] = STATE(3), [aux_sym_client_config_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(233), + [ts_builtin_sym_end] = ACTIONS(235), [sym_comment] = ACTIONS(3), [aux_sym_host_token1] = ACTIONS(7), [aux_sym_match_token1] = ACTIONS(9), @@ -14100,49 +14300,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_macs_token1] = ACTIONS(141), [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(143), [aux_sym_number_of_password_prompts_token1] = ACTIONS(145), - [aux_sym_password_authentication_token1] = ACTIONS(147), - [aux_sym_permit_local_command_token1] = ACTIONS(149), - [aux_sym_permit_remote_open_token1] = ACTIONS(151), - [aux_sym_pkcs11_provider_token1] = ACTIONS(153), - [aux_sym_port_token1] = ACTIONS(155), - [aux_sym_preferred_authentications_token1] = ACTIONS(157), - [aux_sym_protocol_token1] = ACTIONS(159), - [aux_sym_proxy_command_token1] = ACTIONS(161), - [aux_sym_proxy_jump_token1] = ACTIONS(163), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(165), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(167), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(169), - [aux_sym_pubkey_authentication_token1] = ACTIONS(171), - [aux_sym_rekey_limit_token1] = ACTIONS(173), - [aux_sym_remote_command_token1] = ACTIONS(175), - [aux_sym_remote_forward_token1] = ACTIONS(177), - [aux_sym_request_tty_token1] = ACTIONS(179), - [aux_sym_required_rsa_size_token1] = ACTIONS(181), - [aux_sym_revoked_host_keys_token1] = ACTIONS(183), - [aux_sym_security_key_provider_token1] = ACTIONS(185), - [aux_sym_send_env_token1] = ACTIONS(187), - [aux_sym_server_alive_count_max_token1] = ACTIONS(189), - [aux_sym_server_alive_interval_token1] = ACTIONS(191), - [aux_sym_session_type_token1] = ACTIONS(193), - [aux_sym_set_env_token1] = ACTIONS(195), - [aux_sym_stdin_null_token1] = ACTIONS(197), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(199), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(201), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(203), - [aux_sym_syslog_facility_token1] = ACTIONS(205), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(207), - [aux_sym_keep_alive_token1] = ACTIONS(209), - [aux_sym_tag_token1] = ACTIONS(211), - [aux_sym_tunnel_token1] = ACTIONS(213), - [aux_sym_tunnel_device_token1] = ACTIONS(215), - [aux_sym_update_host_keys_token1] = ACTIONS(217), - [aux_sym_use_keychain_token1] = ACTIONS(219), - [aux_sym_use_roaming_token1] = ACTIONS(221), - [aux_sym_user_token1] = ACTIONS(223), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(225), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(227), - [aux_sym_visual_host_key_token1] = ACTIONS(229), - [aux_sym_xauth_location_token1] = ACTIONS(231), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(147), + [aux_sym_password_authentication_token1] = ACTIONS(149), + [aux_sym_permit_local_command_token1] = ACTIONS(151), + [aux_sym_permit_remote_open_token1] = ACTIONS(153), + [aux_sym_pkcs11_provider_token1] = ACTIONS(155), + [aux_sym_port_token1] = ACTIONS(157), + [aux_sym_preferred_authentications_token1] = ACTIONS(159), + [aux_sym_protocol_token1] = ACTIONS(161), + [aux_sym_proxy_command_token1] = ACTIONS(163), + [aux_sym_proxy_jump_token1] = ACTIONS(165), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(167), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(169), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(171), + [aux_sym_pubkey_authentication_token1] = ACTIONS(173), + [aux_sym_rekey_limit_token1] = ACTIONS(175), + [aux_sym_remote_command_token1] = ACTIONS(177), + [aux_sym_remote_forward_token1] = ACTIONS(179), + [aux_sym_request_tty_token1] = ACTIONS(181), + [aux_sym_required_rsa_size_token1] = ACTIONS(183), + [aux_sym_revoked_host_keys_token1] = ACTIONS(185), + [aux_sym_security_key_provider_token1] = ACTIONS(187), + [aux_sym_send_env_token1] = ACTIONS(189), + [aux_sym_server_alive_count_max_token1] = ACTIONS(191), + [aux_sym_server_alive_interval_token1] = ACTIONS(193), + [aux_sym_session_type_token1] = ACTIONS(195), + [aux_sym_set_env_token1] = ACTIONS(197), + [aux_sym_stdin_null_token1] = ACTIONS(199), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(201), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(203), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(205), + [aux_sym_syslog_facility_token1] = ACTIONS(207), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(209), + [aux_sym_keep_alive_token1] = ACTIONS(211), + [aux_sym_tag_token1] = ACTIONS(213), + [aux_sym_tunnel_token1] = ACTIONS(215), + [aux_sym_tunnel_device_token1] = ACTIONS(217), + [aux_sym_update_host_keys_token1] = ACTIONS(219), + [aux_sym_use_keychain_token1] = ACTIONS(221), + [aux_sym_use_roaming_token1] = ACTIONS(223), + [aux_sym_user_token1] = ACTIONS(225), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(227), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(229), + [aux_sym_visual_host_key_token1] = ACTIONS(231), + [aux_sym_xauth_location_token1] = ACTIONS(233), }, [3] = { [sym__option] = STATE(3), @@ -14216,6 +14417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_macs] = STATE(3), [sym_no_host_authentication_for_localhost] = STATE(3), [sym_number_of_password_prompts] = STATE(3), + [sym_obscure_keystroke_timing] = STATE(3), [sym_password_authentication] = STATE(3), [sym_permit_local_command] = STATE(3), [sym_permit_remote_open] = STATE(3), @@ -14260,93522 +14462,95147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_visual_host_key] = STATE(3), [sym_xauth_location] = STATE(3), [aux_sym_client_config_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(235), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(237), - [aux_sym_match_token1] = ACTIONS(240), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(243), - [aux_sym_address_family_token1] = ACTIONS(246), - [aux_sym_batch_mode_token1] = ACTIONS(249), - [aux_sym_bind_address_token1] = ACTIONS(252), - [aux_sym_bind_interface_token1] = ACTIONS(255), - [aux_sym_canonical_domains_token1] = ACTIONS(258), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(261), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(264), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(267), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(270), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(273), - [aux_sym_certificate_file_token1] = ACTIONS(276), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(279), - [aux_sym_channel_timeout_token1] = ACTIONS(282), - [aux_sym_check_host_ip_token1] = ACTIONS(285), - [aux_sym_ciphers_token1] = ACTIONS(288), - [aux_sym_cipher_token1] = ACTIONS(291), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(294), - [aux_sym_compression_token1] = ACTIONS(297), - [aux_sym_connection_attempts_token1] = ACTIONS(300), - [aux_sym_connect_timeout_token1] = ACTIONS(303), - [aux_sym_control_master_token1] = ACTIONS(306), - [aux_sym_control_path_token1] = ACTIONS(309), - [aux_sym_control_persist_token1] = ACTIONS(312), - [aux_sym_dynamic_forward_token1] = ACTIONS(315), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(318), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(321), - [aux_sym_escape_char_token1] = ACTIONS(324), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(327), - [aux_sym_fingerprint_hash_token1] = ACTIONS(330), - [aux_sym_fork_after_authentication_token1] = ACTIONS(333), - [aux_sym_forward_agent_token1] = ACTIONS(336), - [aux_sym_forward_x11_token1] = ACTIONS(339), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(342), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(345), - [aux_sym_gateway_ports_token1] = ACTIONS(348), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(351), - [aux_sym_gssapi_authentication_token1] = ACTIONS(354), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(357), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(360), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(363), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(366), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(369), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(372), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(375), - [aux_sym_hash_known_hosts_token1] = ACTIONS(378), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(381), - [aux_sym_hostbased_authentication_token1] = ACTIONS(384), - [aux_sym_host_key_algorithms_token1] = ACTIONS(387), - [aux_sym_host_key_alias_token1] = ACTIONS(390), - [aux_sym_hostname_token1] = ACTIONS(393), - [aux_sym_identities_only_token1] = ACTIONS(396), - [aux_sym_identity_agent_token1] = ACTIONS(399), - [aux_sym_identity_file_token1] = ACTIONS(402), - [aux_sym_ignore_unknown_token1] = ACTIONS(405), - [aux_sym_include_token1] = ACTIONS(408), - [aux_sym_ip_qos_token1] = ACTIONS(411), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(414), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(417), - [aux_sym_kex_algorithms_token1] = ACTIONS(420), - [aux_sym_known_hosts_command_token1] = ACTIONS(423), - [aux_sym_local_command_token1] = ACTIONS(426), - [aux_sym_local_forward_token1] = ACTIONS(429), - [aux_sym_log_level_token1] = ACTIONS(432), - [aux_sym_log_verbose_token1] = ACTIONS(435), - [aux_sym_macs_token1] = ACTIONS(438), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(441), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(444), - [aux_sym_password_authentication_token1] = ACTIONS(447), - [aux_sym_permit_local_command_token1] = ACTIONS(450), - [aux_sym_permit_remote_open_token1] = ACTIONS(453), - [aux_sym_pkcs11_provider_token1] = ACTIONS(456), - [aux_sym_port_token1] = ACTIONS(459), - [aux_sym_preferred_authentications_token1] = ACTIONS(462), - [aux_sym_protocol_token1] = ACTIONS(465), - [aux_sym_proxy_command_token1] = ACTIONS(468), - [aux_sym_proxy_jump_token1] = ACTIONS(471), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(474), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(477), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(480), - [aux_sym_pubkey_authentication_token1] = ACTIONS(483), - [aux_sym_rekey_limit_token1] = ACTIONS(486), - [aux_sym_remote_command_token1] = ACTIONS(489), - [aux_sym_remote_forward_token1] = ACTIONS(492), - [aux_sym_request_tty_token1] = ACTIONS(495), - [aux_sym_required_rsa_size_token1] = ACTIONS(498), - [aux_sym_revoked_host_keys_token1] = ACTIONS(501), - [aux_sym_security_key_provider_token1] = ACTIONS(504), - [aux_sym_send_env_token1] = ACTIONS(507), - [aux_sym_server_alive_count_max_token1] = ACTIONS(510), - [aux_sym_server_alive_interval_token1] = ACTIONS(513), - [aux_sym_session_type_token1] = ACTIONS(516), - [aux_sym_set_env_token1] = ACTIONS(519), - [aux_sym_stdin_null_token1] = ACTIONS(522), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(525), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(528), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(531), - [aux_sym_syslog_facility_token1] = ACTIONS(534), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(537), - [aux_sym_keep_alive_token1] = ACTIONS(540), - [aux_sym_tag_token1] = ACTIONS(543), - [aux_sym_tunnel_token1] = ACTIONS(546), - [aux_sym_tunnel_device_token1] = ACTIONS(549), - [aux_sym_update_host_keys_token1] = ACTIONS(552), - [aux_sym_use_keychain_token1] = ACTIONS(555), - [aux_sym_use_roaming_token1] = ACTIONS(558), - [aux_sym_user_token1] = ACTIONS(561), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(564), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(567), - [aux_sym_visual_host_key_token1] = ACTIONS(570), - [aux_sym_xauth_location_token1] = ACTIONS(573), + [ts_builtin_sym_end] = ACTIONS(237), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(239), + [aux_sym_match_token1] = ACTIONS(242), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(245), + [aux_sym_address_family_token1] = ACTIONS(248), + [aux_sym_batch_mode_token1] = ACTIONS(251), + [aux_sym_bind_address_token1] = ACTIONS(254), + [aux_sym_bind_interface_token1] = ACTIONS(257), + [aux_sym_canonical_domains_token1] = ACTIONS(260), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(263), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(266), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(269), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(272), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(275), + [aux_sym_certificate_file_token1] = ACTIONS(278), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(281), + [aux_sym_channel_timeout_token1] = ACTIONS(284), + [aux_sym_check_host_ip_token1] = ACTIONS(287), + [aux_sym_ciphers_token1] = ACTIONS(290), + [aux_sym_cipher_token1] = ACTIONS(293), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(296), + [aux_sym_compression_token1] = ACTIONS(299), + [aux_sym_connection_attempts_token1] = ACTIONS(302), + [aux_sym_connect_timeout_token1] = ACTIONS(305), + [aux_sym_control_master_token1] = ACTIONS(308), + [aux_sym_control_path_token1] = ACTIONS(311), + [aux_sym_control_persist_token1] = ACTIONS(314), + [aux_sym_dynamic_forward_token1] = ACTIONS(317), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(320), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(323), + [aux_sym_escape_char_token1] = ACTIONS(326), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(329), + [aux_sym_fingerprint_hash_token1] = ACTIONS(332), + [aux_sym_fork_after_authentication_token1] = ACTIONS(335), + [aux_sym_forward_agent_token1] = ACTIONS(338), + [aux_sym_forward_x11_token1] = ACTIONS(341), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(344), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(347), + [aux_sym_gateway_ports_token1] = ACTIONS(350), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(353), + [aux_sym_gssapi_authentication_token1] = ACTIONS(356), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(359), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(362), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(365), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(368), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(371), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(374), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(377), + [aux_sym_hash_known_hosts_token1] = ACTIONS(380), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(383), + [aux_sym_hostbased_authentication_token1] = ACTIONS(386), + [aux_sym_host_key_algorithms_token1] = ACTIONS(389), + [aux_sym_host_key_alias_token1] = ACTIONS(392), + [aux_sym_hostname_token1] = ACTIONS(395), + [aux_sym_identities_only_token1] = ACTIONS(398), + [aux_sym_identity_agent_token1] = ACTIONS(401), + [aux_sym_identity_file_token1] = ACTIONS(404), + [aux_sym_ignore_unknown_token1] = ACTIONS(407), + [aux_sym_include_token1] = ACTIONS(410), + [aux_sym_ip_qos_token1] = ACTIONS(413), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(416), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(419), + [aux_sym_kex_algorithms_token1] = ACTIONS(422), + [aux_sym_known_hosts_command_token1] = ACTIONS(425), + [aux_sym_local_command_token1] = ACTIONS(428), + [aux_sym_local_forward_token1] = ACTIONS(431), + [aux_sym_log_level_token1] = ACTIONS(434), + [aux_sym_log_verbose_token1] = ACTIONS(437), + [aux_sym_macs_token1] = ACTIONS(440), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(443), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(446), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(449), + [aux_sym_password_authentication_token1] = ACTIONS(452), + [aux_sym_permit_local_command_token1] = ACTIONS(455), + [aux_sym_permit_remote_open_token1] = ACTIONS(458), + [aux_sym_pkcs11_provider_token1] = ACTIONS(461), + [aux_sym_port_token1] = ACTIONS(464), + [aux_sym_preferred_authentications_token1] = ACTIONS(467), + [aux_sym_protocol_token1] = ACTIONS(470), + [aux_sym_proxy_command_token1] = ACTIONS(473), + [aux_sym_proxy_jump_token1] = ACTIONS(476), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(479), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(482), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(485), + [aux_sym_pubkey_authentication_token1] = ACTIONS(488), + [aux_sym_rekey_limit_token1] = ACTIONS(491), + [aux_sym_remote_command_token1] = ACTIONS(494), + [aux_sym_remote_forward_token1] = ACTIONS(497), + [aux_sym_request_tty_token1] = ACTIONS(500), + [aux_sym_required_rsa_size_token1] = ACTIONS(503), + [aux_sym_revoked_host_keys_token1] = ACTIONS(506), + [aux_sym_security_key_provider_token1] = ACTIONS(509), + [aux_sym_send_env_token1] = ACTIONS(512), + [aux_sym_server_alive_count_max_token1] = ACTIONS(515), + [aux_sym_server_alive_interval_token1] = ACTIONS(518), + [aux_sym_session_type_token1] = ACTIONS(521), + [aux_sym_set_env_token1] = ACTIONS(524), + [aux_sym_stdin_null_token1] = ACTIONS(527), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(530), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(533), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(536), + [aux_sym_syslog_facility_token1] = ACTIONS(539), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(542), + [aux_sym_keep_alive_token1] = ACTIONS(545), + [aux_sym_tag_token1] = ACTIONS(548), + [aux_sym_tunnel_token1] = ACTIONS(551), + [aux_sym_tunnel_device_token1] = ACTIONS(554), + [aux_sym_update_host_keys_token1] = ACTIONS(557), + [aux_sym_use_keychain_token1] = ACTIONS(560), + [aux_sym_use_roaming_token1] = ACTIONS(563), + [aux_sym_user_token1] = ACTIONS(566), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(569), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(572), + [aux_sym_visual_host_key_token1] = ACTIONS(575), + [aux_sym_xauth_location_token1] = ACTIONS(578), }, [4] = { - [sym_channel_timeout_type] = STATE(1363), + [sym_channel_timeout_type] = STATE(1376), [aux_sym__channel_timeout_value] = STATE(4), - [ts_builtin_sym_end] = ACTIONS(576), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(578), - [anon_sym_DQUOTE] = ACTIONS(576), - [aux_sym_match_token1] = ACTIONS(576), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(576), - [aux_sym_address_family_token1] = ACTIONS(576), - [aux_sym_batch_mode_token1] = ACTIONS(576), - [aux_sym_bind_address_token1] = ACTIONS(576), - [aux_sym_bind_interface_token1] = ACTIONS(576), - [aux_sym_canonical_domains_token1] = ACTIONS(576), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(576), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(576), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(576), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(576), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(576), - [aux_sym_certificate_file_token1] = ACTIONS(576), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(576), - [aux_sym_channel_timeout_token1] = ACTIONS(576), - [aux_sym_channel_timeout_type_token1] = ACTIONS(580), - [aux_sym_channel_timeout_type_token2] = ACTIONS(580), - [aux_sym_channel_timeout_type_token3] = ACTIONS(580), - [aux_sym_channel_timeout_type_token4] = ACTIONS(580), - [aux_sym_channel_timeout_type_token5] = ACTIONS(580), - [aux_sym_channel_timeout_type_token6] = ACTIONS(583), - [aux_sym_channel_timeout_type_token7] = ACTIONS(580), - [aux_sym_channel_timeout_type_token8] = ACTIONS(580), - [aux_sym_check_host_ip_token1] = ACTIONS(576), - [aux_sym_ciphers_token1] = ACTIONS(576), - [aux_sym_cipher_token1] = ACTIONS(578), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(576), - [aux_sym_compression_token1] = ACTIONS(576), - [aux_sym_connection_attempts_token1] = ACTIONS(576), - [aux_sym_connect_timeout_token1] = ACTIONS(576), - [aux_sym_control_master_token1] = ACTIONS(576), - [aux_sym_control_path_token1] = ACTIONS(576), - [aux_sym_control_persist_token1] = ACTIONS(576), - [aux_sym_dynamic_forward_token1] = ACTIONS(576), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(576), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(576), - [aux_sym_escape_char_token1] = ACTIONS(576), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(576), - [aux_sym_fingerprint_hash_token1] = ACTIONS(576), - [aux_sym_fork_after_authentication_token1] = ACTIONS(576), - [aux_sym_forward_agent_token1] = ACTIONS(576), - [aux_sym_forward_x11_token1] = ACTIONS(578), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(576), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(576), - [aux_sym_gateway_ports_token1] = ACTIONS(576), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(576), - [aux_sym_gssapi_authentication_token1] = ACTIONS(576), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(576), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(576), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(576), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(576), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(576), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(576), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(576), - [aux_sym_hash_known_hosts_token1] = ACTIONS(576), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(576), - [aux_sym_hostbased_authentication_token1] = ACTIONS(576), - [aux_sym_host_key_algorithms_token1] = ACTIONS(576), - [aux_sym_host_key_alias_token1] = ACTIONS(576), - [aux_sym_hostname_token1] = ACTIONS(576), - [aux_sym_identities_only_token1] = ACTIONS(576), - [aux_sym_identity_agent_token1] = ACTIONS(576), - [aux_sym_identity_file_token1] = ACTIONS(576), - [aux_sym_ignore_unknown_token1] = ACTIONS(576), - [aux_sym_include_token1] = ACTIONS(576), - [aux_sym_ip_qos_token1] = ACTIONS(576), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(576), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(576), - [aux_sym_kex_algorithms_token1] = ACTIONS(576), - [aux_sym_known_hosts_command_token1] = ACTIONS(576), - [aux_sym_local_command_token1] = ACTIONS(576), - [aux_sym_local_forward_token1] = ACTIONS(576), - [aux_sym_log_level_token1] = ACTIONS(576), - [aux_sym_log_verbose_token1] = ACTIONS(576), - [aux_sym_macs_token1] = ACTIONS(576), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(576), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(576), - [aux_sym_password_authentication_token1] = ACTIONS(576), - [aux_sym_permit_local_command_token1] = ACTIONS(576), - [aux_sym_permit_remote_open_token1] = ACTIONS(576), - [aux_sym_pkcs11_provider_token1] = ACTIONS(576), - [aux_sym_port_token1] = ACTIONS(576), - [aux_sym_preferred_authentications_token1] = ACTIONS(576), - [aux_sym_protocol_token1] = ACTIONS(576), - [aux_sym_proxy_command_token1] = ACTIONS(576), - [aux_sym_proxy_jump_token1] = ACTIONS(576), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(576), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(576), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(576), - [aux_sym_pubkey_authentication_token1] = ACTIONS(576), - [aux_sym_rekey_limit_token1] = ACTIONS(576), - [aux_sym_remote_command_token1] = ACTIONS(576), - [aux_sym_remote_forward_token1] = ACTIONS(576), - [aux_sym_request_tty_token1] = ACTIONS(576), - [aux_sym_required_rsa_size_token1] = ACTIONS(576), - [aux_sym_revoked_host_keys_token1] = ACTIONS(576), - [aux_sym_security_key_provider_token1] = ACTIONS(576), - [aux_sym_send_env_token1] = ACTIONS(576), - [aux_sym_server_alive_count_max_token1] = ACTIONS(576), - [aux_sym_server_alive_interval_token1] = ACTIONS(576), - [aux_sym_session_type_token1] = ACTIONS(576), - [aux_sym_set_env_token1] = ACTIONS(576), - [aux_sym_stdin_null_token1] = ACTIONS(576), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(576), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(576), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(576), - [aux_sym_syslog_facility_token1] = ACTIONS(576), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(576), - [aux_sym_keep_alive_token1] = ACTIONS(576), - [aux_sym_tag_token1] = ACTIONS(576), - [aux_sym_tunnel_token1] = ACTIONS(578), - [aux_sym_tunnel_device_token1] = ACTIONS(576), - [aux_sym_update_host_keys_token1] = ACTIONS(576), - [aux_sym_use_keychain_token1] = ACTIONS(576), - [aux_sym_use_roaming_token1] = ACTIONS(576), - [aux_sym_user_token1] = ACTIONS(578), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(576), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(576), - [aux_sym_visual_host_key_token1] = ACTIONS(576), - [aux_sym_xauth_location_token1] = ACTIONS(576), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(581), + [aux_sym_match_token1] = ACTIONS(581), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(581), + [aux_sym_address_family_token1] = ACTIONS(581), + [aux_sym_batch_mode_token1] = ACTIONS(581), + [aux_sym_bind_address_token1] = ACTIONS(581), + [aux_sym_bind_interface_token1] = ACTIONS(581), + [aux_sym_canonical_domains_token1] = ACTIONS(581), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(581), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(581), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(581), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(581), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(581), + [aux_sym_certificate_file_token1] = ACTIONS(581), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(581), + [aux_sym_channel_timeout_token1] = ACTIONS(581), + [aux_sym_channel_timeout_type_token1] = ACTIONS(585), + [aux_sym_channel_timeout_type_token2] = ACTIONS(585), + [aux_sym_channel_timeout_type_token3] = ACTIONS(585), + [aux_sym_channel_timeout_type_token4] = ACTIONS(585), + [aux_sym_channel_timeout_type_token5] = ACTIONS(585), + [aux_sym_channel_timeout_type_token6] = ACTIONS(588), + [aux_sym_channel_timeout_type_token7] = ACTIONS(585), + [aux_sym_channel_timeout_type_token8] = ACTIONS(585), + [aux_sym_check_host_ip_token1] = ACTIONS(581), + [aux_sym_ciphers_token1] = ACTIONS(581), + [aux_sym_cipher_token1] = ACTIONS(583), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(581), + [aux_sym_compression_token1] = ACTIONS(581), + [aux_sym_connection_attempts_token1] = ACTIONS(581), + [aux_sym_connect_timeout_token1] = ACTIONS(581), + [aux_sym_control_master_token1] = ACTIONS(581), + [aux_sym_control_path_token1] = ACTIONS(581), + [aux_sym_control_persist_token1] = ACTIONS(581), + [aux_sym_dynamic_forward_token1] = ACTIONS(581), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(581), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(581), + [aux_sym_escape_char_token1] = ACTIONS(581), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(581), + [aux_sym_fingerprint_hash_token1] = ACTIONS(581), + [aux_sym_fork_after_authentication_token1] = ACTIONS(581), + [aux_sym_forward_agent_token1] = ACTIONS(581), + [aux_sym_forward_x11_token1] = ACTIONS(583), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(581), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(581), + [aux_sym_gateway_ports_token1] = ACTIONS(581), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(581), + [aux_sym_gssapi_authentication_token1] = ACTIONS(581), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(581), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(581), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(581), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(581), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(581), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(581), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(581), + [aux_sym_hash_known_hosts_token1] = ACTIONS(581), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(581), + [aux_sym_hostbased_authentication_token1] = ACTIONS(581), + [aux_sym_host_key_algorithms_token1] = ACTIONS(581), + [aux_sym_host_key_alias_token1] = ACTIONS(581), + [aux_sym_hostname_token1] = ACTIONS(581), + [aux_sym_identities_only_token1] = ACTIONS(581), + [aux_sym_identity_agent_token1] = ACTIONS(581), + [aux_sym_identity_file_token1] = ACTIONS(581), + [aux_sym_ignore_unknown_token1] = ACTIONS(581), + [aux_sym_include_token1] = ACTIONS(581), + [aux_sym_ip_qos_token1] = ACTIONS(581), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(581), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(581), + [aux_sym_kex_algorithms_token1] = ACTIONS(581), + [aux_sym_known_hosts_command_token1] = ACTIONS(581), + [aux_sym_local_command_token1] = ACTIONS(581), + [aux_sym_local_forward_token1] = ACTIONS(581), + [aux_sym_log_level_token1] = ACTIONS(581), + [aux_sym_log_verbose_token1] = ACTIONS(581), + [aux_sym_macs_token1] = ACTIONS(581), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(581), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(581), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(581), + [aux_sym_password_authentication_token1] = ACTIONS(581), + [aux_sym_permit_local_command_token1] = ACTIONS(581), + [aux_sym_permit_remote_open_token1] = ACTIONS(581), + [aux_sym_pkcs11_provider_token1] = ACTIONS(581), + [aux_sym_port_token1] = ACTIONS(581), + [aux_sym_preferred_authentications_token1] = ACTIONS(581), + [aux_sym_protocol_token1] = ACTIONS(581), + [aux_sym_proxy_command_token1] = ACTIONS(581), + [aux_sym_proxy_jump_token1] = ACTIONS(581), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(581), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(581), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(581), + [aux_sym_pubkey_authentication_token1] = ACTIONS(581), + [aux_sym_rekey_limit_token1] = ACTIONS(581), + [aux_sym_remote_command_token1] = ACTIONS(581), + [aux_sym_remote_forward_token1] = ACTIONS(581), + [aux_sym_request_tty_token1] = ACTIONS(581), + [aux_sym_required_rsa_size_token1] = ACTIONS(581), + [aux_sym_revoked_host_keys_token1] = ACTIONS(581), + [aux_sym_security_key_provider_token1] = ACTIONS(581), + [aux_sym_send_env_token1] = ACTIONS(581), + [aux_sym_server_alive_count_max_token1] = ACTIONS(581), + [aux_sym_server_alive_interval_token1] = ACTIONS(581), + [aux_sym_session_type_token1] = ACTIONS(581), + [aux_sym_set_env_token1] = ACTIONS(581), + [aux_sym_stdin_null_token1] = ACTIONS(581), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(581), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(581), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(581), + [aux_sym_syslog_facility_token1] = ACTIONS(581), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(581), + [aux_sym_keep_alive_token1] = ACTIONS(581), + [aux_sym_tag_token1] = ACTIONS(581), + [aux_sym_tunnel_token1] = ACTIONS(583), + [aux_sym_tunnel_device_token1] = ACTIONS(581), + [aux_sym_update_host_keys_token1] = ACTIONS(581), + [aux_sym_use_keychain_token1] = ACTIONS(581), + [aux_sym_use_roaming_token1] = ACTIONS(581), + [aux_sym_user_token1] = ACTIONS(583), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(581), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(581), + [aux_sym_visual_host_key_token1] = ACTIONS(581), + [aux_sym_xauth_location_token1] = ACTIONS(581), }, [5] = { - [sym_channel_timeout_type] = STATE(1363), + [sym_channel_timeout_type] = STATE(1376), [aux_sym__channel_timeout_value] = STATE(4), - [ts_builtin_sym_end] = ACTIONS(586), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [aux_sym_match_token1] = ACTIONS(586), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(586), - [aux_sym_address_family_token1] = ACTIONS(586), - [aux_sym_batch_mode_token1] = ACTIONS(586), - [aux_sym_bind_address_token1] = ACTIONS(586), - [aux_sym_bind_interface_token1] = ACTIONS(586), - [aux_sym_canonical_domains_token1] = ACTIONS(586), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(586), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(586), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(586), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(586), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(586), - [aux_sym_certificate_file_token1] = ACTIONS(586), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(586), - [aux_sym_channel_timeout_token1] = ACTIONS(586), - [aux_sym_channel_timeout_type_token1] = ACTIONS(592), - [aux_sym_channel_timeout_type_token2] = ACTIONS(592), - [aux_sym_channel_timeout_type_token3] = ACTIONS(592), - [aux_sym_channel_timeout_type_token4] = ACTIONS(592), - [aux_sym_channel_timeout_type_token5] = ACTIONS(592), - [aux_sym_channel_timeout_type_token6] = ACTIONS(594), - [aux_sym_channel_timeout_type_token7] = ACTIONS(592), - [aux_sym_channel_timeout_type_token8] = ACTIONS(592), - [aux_sym_check_host_ip_token1] = ACTIONS(586), - [aux_sym_ciphers_token1] = ACTIONS(586), - [aux_sym_cipher_token1] = ACTIONS(588), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(586), - [aux_sym_compression_token1] = ACTIONS(586), - [aux_sym_connection_attempts_token1] = ACTIONS(586), - [aux_sym_connect_timeout_token1] = ACTIONS(586), - [aux_sym_control_master_token1] = ACTIONS(586), - [aux_sym_control_path_token1] = ACTIONS(586), - [aux_sym_control_persist_token1] = ACTIONS(586), - [aux_sym_dynamic_forward_token1] = ACTIONS(586), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(586), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(586), - [aux_sym_escape_char_token1] = ACTIONS(586), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(586), - [aux_sym_fingerprint_hash_token1] = ACTIONS(586), - [aux_sym_fork_after_authentication_token1] = ACTIONS(586), - [aux_sym_forward_agent_token1] = ACTIONS(586), - [aux_sym_forward_x11_token1] = ACTIONS(588), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(586), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(586), - [aux_sym_gateway_ports_token1] = ACTIONS(586), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(586), - [aux_sym_gssapi_authentication_token1] = ACTIONS(586), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(586), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(586), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(586), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(586), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(586), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(586), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(586), - [aux_sym_hash_known_hosts_token1] = ACTIONS(586), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(586), - [aux_sym_hostbased_authentication_token1] = ACTIONS(586), - [aux_sym_host_key_algorithms_token1] = ACTIONS(586), - [aux_sym_host_key_alias_token1] = ACTIONS(586), - [aux_sym_hostname_token1] = ACTIONS(586), - [aux_sym_identities_only_token1] = ACTIONS(586), - [aux_sym_identity_agent_token1] = ACTIONS(586), - [aux_sym_identity_file_token1] = ACTIONS(586), - [aux_sym_ignore_unknown_token1] = ACTIONS(586), - [aux_sym_include_token1] = ACTIONS(586), - [aux_sym_ip_qos_token1] = ACTIONS(586), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(586), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(586), - [aux_sym_kex_algorithms_token1] = ACTIONS(586), - [aux_sym_known_hosts_command_token1] = ACTIONS(586), - [aux_sym_local_command_token1] = ACTIONS(586), - [aux_sym_local_forward_token1] = ACTIONS(586), - [aux_sym_log_level_token1] = ACTIONS(586), - [aux_sym_log_verbose_token1] = ACTIONS(586), - [aux_sym_macs_token1] = ACTIONS(586), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(586), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(586), - [aux_sym_password_authentication_token1] = ACTIONS(586), - [aux_sym_permit_local_command_token1] = ACTIONS(586), - [aux_sym_permit_remote_open_token1] = ACTIONS(586), - [aux_sym_pkcs11_provider_token1] = ACTIONS(586), - [aux_sym_port_token1] = ACTIONS(586), - [aux_sym_preferred_authentications_token1] = ACTIONS(586), - [aux_sym_protocol_token1] = ACTIONS(586), - [aux_sym_proxy_command_token1] = ACTIONS(586), - [aux_sym_proxy_jump_token1] = ACTIONS(586), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(586), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(586), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(586), - [aux_sym_pubkey_authentication_token1] = ACTIONS(586), - [aux_sym_rekey_limit_token1] = ACTIONS(586), - [aux_sym_remote_command_token1] = ACTIONS(586), - [aux_sym_remote_forward_token1] = ACTIONS(586), - [aux_sym_request_tty_token1] = ACTIONS(586), - [aux_sym_required_rsa_size_token1] = ACTIONS(586), - [aux_sym_revoked_host_keys_token1] = ACTIONS(586), - [aux_sym_security_key_provider_token1] = ACTIONS(586), - [aux_sym_send_env_token1] = ACTIONS(586), - [aux_sym_server_alive_count_max_token1] = ACTIONS(586), - [aux_sym_server_alive_interval_token1] = ACTIONS(586), - [aux_sym_session_type_token1] = ACTIONS(586), - [aux_sym_set_env_token1] = ACTIONS(586), - [aux_sym_stdin_null_token1] = ACTIONS(586), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(586), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(586), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(586), - [aux_sym_syslog_facility_token1] = ACTIONS(586), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(586), - [aux_sym_keep_alive_token1] = ACTIONS(586), - [aux_sym_tag_token1] = ACTIONS(586), - [aux_sym_tunnel_token1] = ACTIONS(588), - [aux_sym_tunnel_device_token1] = ACTIONS(586), - [aux_sym_update_host_keys_token1] = ACTIONS(586), - [aux_sym_use_keychain_token1] = ACTIONS(586), - [aux_sym_use_roaming_token1] = ACTIONS(586), - [aux_sym_user_token1] = ACTIONS(588), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(586), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(586), - [aux_sym_visual_host_key_token1] = ACTIONS(586), - [aux_sym_xauth_location_token1] = ACTIONS(586), + [ts_builtin_sym_end] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(593), + [anon_sym_DQUOTE] = ACTIONS(595), + [aux_sym_match_token1] = ACTIONS(591), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(591), + [aux_sym_address_family_token1] = ACTIONS(591), + [aux_sym_batch_mode_token1] = ACTIONS(591), + [aux_sym_bind_address_token1] = ACTIONS(591), + [aux_sym_bind_interface_token1] = ACTIONS(591), + [aux_sym_canonical_domains_token1] = ACTIONS(591), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(591), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(591), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(591), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(591), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(591), + [aux_sym_certificate_file_token1] = ACTIONS(591), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(591), + [aux_sym_channel_timeout_token1] = ACTIONS(591), + [aux_sym_channel_timeout_type_token1] = ACTIONS(597), + [aux_sym_channel_timeout_type_token2] = ACTIONS(597), + [aux_sym_channel_timeout_type_token3] = ACTIONS(597), + [aux_sym_channel_timeout_type_token4] = ACTIONS(597), + [aux_sym_channel_timeout_type_token5] = ACTIONS(597), + [aux_sym_channel_timeout_type_token6] = ACTIONS(599), + [aux_sym_channel_timeout_type_token7] = ACTIONS(597), + [aux_sym_channel_timeout_type_token8] = ACTIONS(597), + [aux_sym_check_host_ip_token1] = ACTIONS(591), + [aux_sym_ciphers_token1] = ACTIONS(591), + [aux_sym_cipher_token1] = ACTIONS(593), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(591), + [aux_sym_compression_token1] = ACTIONS(591), + [aux_sym_connection_attempts_token1] = ACTIONS(591), + [aux_sym_connect_timeout_token1] = ACTIONS(591), + [aux_sym_control_master_token1] = ACTIONS(591), + [aux_sym_control_path_token1] = ACTIONS(591), + [aux_sym_control_persist_token1] = ACTIONS(591), + [aux_sym_dynamic_forward_token1] = ACTIONS(591), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(591), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(591), + [aux_sym_escape_char_token1] = ACTIONS(591), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(591), + [aux_sym_fingerprint_hash_token1] = ACTIONS(591), + [aux_sym_fork_after_authentication_token1] = ACTIONS(591), + [aux_sym_forward_agent_token1] = ACTIONS(591), + [aux_sym_forward_x11_token1] = ACTIONS(593), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(591), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(591), + [aux_sym_gateway_ports_token1] = ACTIONS(591), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(591), + [aux_sym_gssapi_authentication_token1] = ACTIONS(591), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(591), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(591), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(591), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(591), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(591), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(591), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(591), + [aux_sym_hash_known_hosts_token1] = ACTIONS(591), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(591), + [aux_sym_hostbased_authentication_token1] = ACTIONS(591), + [aux_sym_host_key_algorithms_token1] = ACTIONS(591), + [aux_sym_host_key_alias_token1] = ACTIONS(591), + [aux_sym_hostname_token1] = ACTIONS(591), + [aux_sym_identities_only_token1] = ACTIONS(591), + [aux_sym_identity_agent_token1] = ACTIONS(591), + [aux_sym_identity_file_token1] = ACTIONS(591), + [aux_sym_ignore_unknown_token1] = ACTIONS(591), + [aux_sym_include_token1] = ACTIONS(591), + [aux_sym_ip_qos_token1] = ACTIONS(591), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(591), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(591), + [aux_sym_kex_algorithms_token1] = ACTIONS(591), + [aux_sym_known_hosts_command_token1] = ACTIONS(591), + [aux_sym_local_command_token1] = ACTIONS(591), + [aux_sym_local_forward_token1] = ACTIONS(591), + [aux_sym_log_level_token1] = ACTIONS(591), + [aux_sym_log_verbose_token1] = ACTIONS(591), + [aux_sym_macs_token1] = ACTIONS(591), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(591), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(591), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(591), + [aux_sym_password_authentication_token1] = ACTIONS(591), + [aux_sym_permit_local_command_token1] = ACTIONS(591), + [aux_sym_permit_remote_open_token1] = ACTIONS(591), + [aux_sym_pkcs11_provider_token1] = ACTIONS(591), + [aux_sym_port_token1] = ACTIONS(591), + [aux_sym_preferred_authentications_token1] = ACTIONS(591), + [aux_sym_protocol_token1] = ACTIONS(591), + [aux_sym_proxy_command_token1] = ACTIONS(591), + [aux_sym_proxy_jump_token1] = ACTIONS(591), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(591), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(591), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(591), + [aux_sym_pubkey_authentication_token1] = ACTIONS(591), + [aux_sym_rekey_limit_token1] = ACTIONS(591), + [aux_sym_remote_command_token1] = ACTIONS(591), + [aux_sym_remote_forward_token1] = ACTIONS(591), + [aux_sym_request_tty_token1] = ACTIONS(591), + [aux_sym_required_rsa_size_token1] = ACTIONS(591), + [aux_sym_revoked_host_keys_token1] = ACTIONS(591), + [aux_sym_security_key_provider_token1] = ACTIONS(591), + [aux_sym_send_env_token1] = ACTIONS(591), + [aux_sym_server_alive_count_max_token1] = ACTIONS(591), + [aux_sym_server_alive_interval_token1] = ACTIONS(591), + [aux_sym_session_type_token1] = ACTIONS(591), + [aux_sym_set_env_token1] = ACTIONS(591), + [aux_sym_stdin_null_token1] = ACTIONS(591), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(591), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(591), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(591), + [aux_sym_syslog_facility_token1] = ACTIONS(591), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(591), + [aux_sym_keep_alive_token1] = ACTIONS(591), + [aux_sym_tag_token1] = ACTIONS(591), + [aux_sym_tunnel_token1] = ACTIONS(593), + [aux_sym_tunnel_device_token1] = ACTIONS(591), + [aux_sym_update_host_keys_token1] = ACTIONS(591), + [aux_sym_use_keychain_token1] = ACTIONS(591), + [aux_sym_use_roaming_token1] = ACTIONS(591), + [aux_sym_user_token1] = ACTIONS(593), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(591), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(591), + [aux_sym_visual_host_key_token1] = ACTIONS(591), + [aux_sym_xauth_location_token1] = ACTIONS(591), }, [6] = { - [sym_channel_timeout_type] = STATE(1363), + [sym_channel_timeout_type] = STATE(1376), [aux_sym__channel_timeout_value] = STATE(4), - [ts_builtin_sym_end] = ACTIONS(596), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(598), - [anon_sym_DQUOTE] = ACTIONS(600), - [aux_sym_match_token1] = ACTIONS(596), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(596), - [aux_sym_address_family_token1] = ACTIONS(596), - [aux_sym_batch_mode_token1] = ACTIONS(596), - [aux_sym_bind_address_token1] = ACTIONS(596), - [aux_sym_bind_interface_token1] = ACTIONS(596), - [aux_sym_canonical_domains_token1] = ACTIONS(596), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(596), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(596), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(596), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(596), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(596), - [aux_sym_certificate_file_token1] = ACTIONS(596), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(596), - [aux_sym_channel_timeout_token1] = ACTIONS(596), - [aux_sym_channel_timeout_type_token1] = ACTIONS(592), - [aux_sym_channel_timeout_type_token2] = ACTIONS(592), - [aux_sym_channel_timeout_type_token3] = ACTIONS(592), - [aux_sym_channel_timeout_type_token4] = ACTIONS(592), - [aux_sym_channel_timeout_type_token5] = ACTIONS(592), - [aux_sym_channel_timeout_type_token6] = ACTIONS(594), - [aux_sym_channel_timeout_type_token7] = ACTIONS(592), - [aux_sym_channel_timeout_type_token8] = ACTIONS(592), - [aux_sym_check_host_ip_token1] = ACTIONS(596), - [aux_sym_ciphers_token1] = ACTIONS(596), - [aux_sym_cipher_token1] = ACTIONS(598), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(596), - [aux_sym_compression_token1] = ACTIONS(596), - [aux_sym_connection_attempts_token1] = ACTIONS(596), - [aux_sym_connect_timeout_token1] = ACTIONS(596), - [aux_sym_control_master_token1] = ACTIONS(596), - [aux_sym_control_path_token1] = ACTIONS(596), - [aux_sym_control_persist_token1] = ACTIONS(596), - [aux_sym_dynamic_forward_token1] = ACTIONS(596), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(596), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(596), - [aux_sym_escape_char_token1] = ACTIONS(596), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(596), - [aux_sym_fingerprint_hash_token1] = ACTIONS(596), - [aux_sym_fork_after_authentication_token1] = ACTIONS(596), - [aux_sym_forward_agent_token1] = ACTIONS(596), - [aux_sym_forward_x11_token1] = ACTIONS(598), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(596), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(596), - [aux_sym_gateway_ports_token1] = ACTIONS(596), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(596), - [aux_sym_gssapi_authentication_token1] = ACTIONS(596), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(596), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(596), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(596), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(596), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(596), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(596), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(596), - [aux_sym_hash_known_hosts_token1] = ACTIONS(596), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(596), - [aux_sym_hostbased_authentication_token1] = ACTIONS(596), - [aux_sym_host_key_algorithms_token1] = ACTIONS(596), - [aux_sym_host_key_alias_token1] = ACTIONS(596), - [aux_sym_hostname_token1] = ACTIONS(596), - [aux_sym_identities_only_token1] = ACTIONS(596), - [aux_sym_identity_agent_token1] = ACTIONS(596), - [aux_sym_identity_file_token1] = ACTIONS(596), - [aux_sym_ignore_unknown_token1] = ACTIONS(596), - [aux_sym_include_token1] = ACTIONS(596), - [aux_sym_ip_qos_token1] = ACTIONS(596), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(596), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(596), - [aux_sym_kex_algorithms_token1] = ACTIONS(596), - [aux_sym_known_hosts_command_token1] = ACTIONS(596), - [aux_sym_local_command_token1] = ACTIONS(596), - [aux_sym_local_forward_token1] = ACTIONS(596), - [aux_sym_log_level_token1] = ACTIONS(596), - [aux_sym_log_verbose_token1] = ACTIONS(596), - [aux_sym_macs_token1] = ACTIONS(596), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(596), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(596), - [aux_sym_password_authentication_token1] = ACTIONS(596), - [aux_sym_permit_local_command_token1] = ACTIONS(596), - [aux_sym_permit_remote_open_token1] = ACTIONS(596), - [aux_sym_pkcs11_provider_token1] = ACTIONS(596), - [aux_sym_port_token1] = ACTIONS(596), - [aux_sym_preferred_authentications_token1] = ACTIONS(596), - [aux_sym_protocol_token1] = ACTIONS(596), - [aux_sym_proxy_command_token1] = ACTIONS(596), - [aux_sym_proxy_jump_token1] = ACTIONS(596), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(596), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(596), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(596), - [aux_sym_pubkey_authentication_token1] = ACTIONS(596), - [aux_sym_rekey_limit_token1] = ACTIONS(596), - [aux_sym_remote_command_token1] = ACTIONS(596), - [aux_sym_remote_forward_token1] = ACTIONS(596), - [aux_sym_request_tty_token1] = ACTIONS(596), - [aux_sym_required_rsa_size_token1] = ACTIONS(596), - [aux_sym_revoked_host_keys_token1] = ACTIONS(596), - [aux_sym_security_key_provider_token1] = ACTIONS(596), - [aux_sym_send_env_token1] = ACTIONS(596), - [aux_sym_server_alive_count_max_token1] = ACTIONS(596), - [aux_sym_server_alive_interval_token1] = ACTIONS(596), - [aux_sym_session_type_token1] = ACTIONS(596), - [aux_sym_set_env_token1] = ACTIONS(596), - [aux_sym_stdin_null_token1] = ACTIONS(596), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(596), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(596), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(596), - [aux_sym_syslog_facility_token1] = ACTIONS(596), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(596), - [aux_sym_keep_alive_token1] = ACTIONS(596), - [aux_sym_tag_token1] = ACTIONS(596), - [aux_sym_tunnel_token1] = ACTIONS(598), - [aux_sym_tunnel_device_token1] = ACTIONS(596), - [aux_sym_update_host_keys_token1] = ACTIONS(596), - [aux_sym_use_keychain_token1] = ACTIONS(596), - [aux_sym_use_roaming_token1] = ACTIONS(596), - [aux_sym_user_token1] = ACTIONS(598), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(596), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(596), - [aux_sym_visual_host_key_token1] = ACTIONS(596), - [aux_sym_xauth_location_token1] = ACTIONS(596), + [ts_builtin_sym_end] = ACTIONS(601), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [aux_sym_match_token1] = ACTIONS(601), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(601), + [aux_sym_address_family_token1] = ACTIONS(601), + [aux_sym_batch_mode_token1] = ACTIONS(601), + [aux_sym_bind_address_token1] = ACTIONS(601), + [aux_sym_bind_interface_token1] = ACTIONS(601), + [aux_sym_canonical_domains_token1] = ACTIONS(601), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(601), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(601), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(601), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(601), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(601), + [aux_sym_certificate_file_token1] = ACTIONS(601), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(601), + [aux_sym_channel_timeout_token1] = ACTIONS(601), + [aux_sym_channel_timeout_type_token1] = ACTIONS(597), + [aux_sym_channel_timeout_type_token2] = ACTIONS(597), + [aux_sym_channel_timeout_type_token3] = ACTIONS(597), + [aux_sym_channel_timeout_type_token4] = ACTIONS(597), + [aux_sym_channel_timeout_type_token5] = ACTIONS(597), + [aux_sym_channel_timeout_type_token6] = ACTIONS(599), + [aux_sym_channel_timeout_type_token7] = ACTIONS(597), + [aux_sym_channel_timeout_type_token8] = ACTIONS(597), + [aux_sym_check_host_ip_token1] = ACTIONS(601), + [aux_sym_ciphers_token1] = ACTIONS(601), + [aux_sym_cipher_token1] = ACTIONS(603), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(601), + [aux_sym_compression_token1] = ACTIONS(601), + [aux_sym_connection_attempts_token1] = ACTIONS(601), + [aux_sym_connect_timeout_token1] = ACTIONS(601), + [aux_sym_control_master_token1] = ACTIONS(601), + [aux_sym_control_path_token1] = ACTIONS(601), + [aux_sym_control_persist_token1] = ACTIONS(601), + [aux_sym_dynamic_forward_token1] = ACTIONS(601), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(601), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(601), + [aux_sym_escape_char_token1] = ACTIONS(601), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(601), + [aux_sym_fingerprint_hash_token1] = ACTIONS(601), + [aux_sym_fork_after_authentication_token1] = ACTIONS(601), + [aux_sym_forward_agent_token1] = ACTIONS(601), + [aux_sym_forward_x11_token1] = ACTIONS(603), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(601), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(601), + [aux_sym_gateway_ports_token1] = ACTIONS(601), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(601), + [aux_sym_gssapi_authentication_token1] = ACTIONS(601), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(601), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(601), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(601), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(601), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(601), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(601), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(601), + [aux_sym_hash_known_hosts_token1] = ACTIONS(601), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(601), + [aux_sym_hostbased_authentication_token1] = ACTIONS(601), + [aux_sym_host_key_algorithms_token1] = ACTIONS(601), + [aux_sym_host_key_alias_token1] = ACTIONS(601), + [aux_sym_hostname_token1] = ACTIONS(601), + [aux_sym_identities_only_token1] = ACTIONS(601), + [aux_sym_identity_agent_token1] = ACTIONS(601), + [aux_sym_identity_file_token1] = ACTIONS(601), + [aux_sym_ignore_unknown_token1] = ACTIONS(601), + [aux_sym_include_token1] = ACTIONS(601), + [aux_sym_ip_qos_token1] = ACTIONS(601), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(601), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(601), + [aux_sym_kex_algorithms_token1] = ACTIONS(601), + [aux_sym_known_hosts_command_token1] = ACTIONS(601), + [aux_sym_local_command_token1] = ACTIONS(601), + [aux_sym_local_forward_token1] = ACTIONS(601), + [aux_sym_log_level_token1] = ACTIONS(601), + [aux_sym_log_verbose_token1] = ACTIONS(601), + [aux_sym_macs_token1] = ACTIONS(601), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(601), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(601), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(601), + [aux_sym_password_authentication_token1] = ACTIONS(601), + [aux_sym_permit_local_command_token1] = ACTIONS(601), + [aux_sym_permit_remote_open_token1] = ACTIONS(601), + [aux_sym_pkcs11_provider_token1] = ACTIONS(601), + [aux_sym_port_token1] = ACTIONS(601), + [aux_sym_preferred_authentications_token1] = ACTIONS(601), + [aux_sym_protocol_token1] = ACTIONS(601), + [aux_sym_proxy_command_token1] = ACTIONS(601), + [aux_sym_proxy_jump_token1] = ACTIONS(601), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(601), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(601), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(601), + [aux_sym_pubkey_authentication_token1] = ACTIONS(601), + [aux_sym_rekey_limit_token1] = ACTIONS(601), + [aux_sym_remote_command_token1] = ACTIONS(601), + [aux_sym_remote_forward_token1] = ACTIONS(601), + [aux_sym_request_tty_token1] = ACTIONS(601), + [aux_sym_required_rsa_size_token1] = ACTIONS(601), + [aux_sym_revoked_host_keys_token1] = ACTIONS(601), + [aux_sym_security_key_provider_token1] = ACTIONS(601), + [aux_sym_send_env_token1] = ACTIONS(601), + [aux_sym_server_alive_count_max_token1] = ACTIONS(601), + [aux_sym_server_alive_interval_token1] = ACTIONS(601), + [aux_sym_session_type_token1] = ACTIONS(601), + [aux_sym_set_env_token1] = ACTIONS(601), + [aux_sym_stdin_null_token1] = ACTIONS(601), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(601), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(601), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(601), + [aux_sym_syslog_facility_token1] = ACTIONS(601), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(601), + [aux_sym_keep_alive_token1] = ACTIONS(601), + [aux_sym_tag_token1] = ACTIONS(601), + [aux_sym_tunnel_token1] = ACTIONS(603), + [aux_sym_tunnel_device_token1] = ACTIONS(601), + [aux_sym_update_host_keys_token1] = ACTIONS(601), + [aux_sym_use_keychain_token1] = ACTIONS(601), + [aux_sym_use_roaming_token1] = ACTIONS(601), + [aux_sym_user_token1] = ACTIONS(603), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(601), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(601), + [aux_sym_visual_host_key_token1] = ACTIONS(601), + [aux_sym_xauth_location_token1] = ACTIONS(601), }, [7] = { - [sym_channel_timeout_type] = STATE(1363), + [sym_channel_timeout_type] = STATE(1376), [aux_sym__channel_timeout_value] = STATE(4), - [ts_builtin_sym_end] = ACTIONS(602), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [aux_sym_match_token1] = ACTIONS(602), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(602), - [aux_sym_address_family_token1] = ACTIONS(602), - [aux_sym_batch_mode_token1] = ACTIONS(602), - [aux_sym_bind_address_token1] = ACTIONS(602), - [aux_sym_bind_interface_token1] = ACTIONS(602), - [aux_sym_canonical_domains_token1] = ACTIONS(602), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(602), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(602), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(602), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(602), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(602), - [aux_sym_certificate_file_token1] = ACTIONS(602), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(602), - [aux_sym_channel_timeout_token1] = ACTIONS(602), - [aux_sym_channel_timeout_type_token1] = ACTIONS(592), - [aux_sym_channel_timeout_type_token2] = ACTIONS(592), - [aux_sym_channel_timeout_type_token3] = ACTIONS(592), - [aux_sym_channel_timeout_type_token4] = ACTIONS(592), - [aux_sym_channel_timeout_type_token5] = ACTIONS(592), - [aux_sym_channel_timeout_type_token6] = ACTIONS(594), - [aux_sym_channel_timeout_type_token7] = ACTIONS(592), - [aux_sym_channel_timeout_type_token8] = ACTIONS(592), - [aux_sym_check_host_ip_token1] = ACTIONS(602), - [aux_sym_ciphers_token1] = ACTIONS(602), - [aux_sym_cipher_token1] = ACTIONS(604), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(602), - [aux_sym_compression_token1] = ACTIONS(602), - [aux_sym_connection_attempts_token1] = ACTIONS(602), - [aux_sym_connect_timeout_token1] = ACTIONS(602), - [aux_sym_control_master_token1] = ACTIONS(602), - [aux_sym_control_path_token1] = ACTIONS(602), - [aux_sym_control_persist_token1] = ACTIONS(602), - [aux_sym_dynamic_forward_token1] = ACTIONS(602), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(602), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(602), - [aux_sym_escape_char_token1] = ACTIONS(602), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(602), - [aux_sym_fingerprint_hash_token1] = ACTIONS(602), - [aux_sym_fork_after_authentication_token1] = ACTIONS(602), - [aux_sym_forward_agent_token1] = ACTIONS(602), - [aux_sym_forward_x11_token1] = ACTIONS(604), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(602), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(602), - [aux_sym_gateway_ports_token1] = ACTIONS(602), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(602), - [aux_sym_gssapi_authentication_token1] = ACTIONS(602), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(602), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(602), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(602), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(602), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(602), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(602), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(602), - [aux_sym_hash_known_hosts_token1] = ACTIONS(602), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(602), - [aux_sym_hostbased_authentication_token1] = ACTIONS(602), - [aux_sym_host_key_algorithms_token1] = ACTIONS(602), - [aux_sym_host_key_alias_token1] = ACTIONS(602), - [aux_sym_hostname_token1] = ACTIONS(602), - [aux_sym_identities_only_token1] = ACTIONS(602), - [aux_sym_identity_agent_token1] = ACTIONS(602), - [aux_sym_identity_file_token1] = ACTIONS(602), - [aux_sym_ignore_unknown_token1] = ACTIONS(602), - [aux_sym_include_token1] = ACTIONS(602), - [aux_sym_ip_qos_token1] = ACTIONS(602), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(602), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(602), - [aux_sym_kex_algorithms_token1] = ACTIONS(602), - [aux_sym_known_hosts_command_token1] = ACTIONS(602), - [aux_sym_local_command_token1] = ACTIONS(602), - [aux_sym_local_forward_token1] = ACTIONS(602), - [aux_sym_log_level_token1] = ACTIONS(602), - [aux_sym_log_verbose_token1] = ACTIONS(602), - [aux_sym_macs_token1] = ACTIONS(602), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(602), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(602), - [aux_sym_password_authentication_token1] = ACTIONS(602), - [aux_sym_permit_local_command_token1] = ACTIONS(602), - [aux_sym_permit_remote_open_token1] = ACTIONS(602), - [aux_sym_pkcs11_provider_token1] = ACTIONS(602), - [aux_sym_port_token1] = ACTIONS(602), - [aux_sym_preferred_authentications_token1] = ACTIONS(602), - [aux_sym_protocol_token1] = ACTIONS(602), - [aux_sym_proxy_command_token1] = ACTIONS(602), - [aux_sym_proxy_jump_token1] = ACTIONS(602), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(602), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(602), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(602), - [aux_sym_pubkey_authentication_token1] = ACTIONS(602), - [aux_sym_rekey_limit_token1] = ACTIONS(602), - [aux_sym_remote_command_token1] = ACTIONS(602), - [aux_sym_remote_forward_token1] = ACTIONS(602), - [aux_sym_request_tty_token1] = ACTIONS(602), - [aux_sym_required_rsa_size_token1] = ACTIONS(602), - [aux_sym_revoked_host_keys_token1] = ACTIONS(602), - [aux_sym_security_key_provider_token1] = ACTIONS(602), - [aux_sym_send_env_token1] = ACTIONS(602), - [aux_sym_server_alive_count_max_token1] = ACTIONS(602), - [aux_sym_server_alive_interval_token1] = ACTIONS(602), - [aux_sym_session_type_token1] = ACTIONS(602), - [aux_sym_set_env_token1] = ACTIONS(602), - [aux_sym_stdin_null_token1] = ACTIONS(602), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(602), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(602), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(602), - [aux_sym_syslog_facility_token1] = ACTIONS(602), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(602), - [aux_sym_keep_alive_token1] = ACTIONS(602), - [aux_sym_tag_token1] = ACTIONS(602), - [aux_sym_tunnel_token1] = ACTIONS(604), - [aux_sym_tunnel_device_token1] = ACTIONS(602), - [aux_sym_update_host_keys_token1] = ACTIONS(602), - [aux_sym_use_keychain_token1] = ACTIONS(602), - [aux_sym_use_roaming_token1] = ACTIONS(602), - [aux_sym_user_token1] = ACTIONS(604), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(602), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(602), - [aux_sym_visual_host_key_token1] = ACTIONS(602), - [aux_sym_xauth_location_token1] = ACTIONS(602), + [ts_builtin_sym_end] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(609), + [anon_sym_DQUOTE] = ACTIONS(611), + [aux_sym_match_token1] = ACTIONS(607), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(607), + [aux_sym_address_family_token1] = ACTIONS(607), + [aux_sym_batch_mode_token1] = ACTIONS(607), + [aux_sym_bind_address_token1] = ACTIONS(607), + [aux_sym_bind_interface_token1] = ACTIONS(607), + [aux_sym_canonical_domains_token1] = ACTIONS(607), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(607), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(607), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(607), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(607), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(607), + [aux_sym_certificate_file_token1] = ACTIONS(607), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(607), + [aux_sym_channel_timeout_token1] = ACTIONS(607), + [aux_sym_channel_timeout_type_token1] = ACTIONS(597), + [aux_sym_channel_timeout_type_token2] = ACTIONS(597), + [aux_sym_channel_timeout_type_token3] = ACTIONS(597), + [aux_sym_channel_timeout_type_token4] = ACTIONS(597), + [aux_sym_channel_timeout_type_token5] = ACTIONS(597), + [aux_sym_channel_timeout_type_token6] = ACTIONS(599), + [aux_sym_channel_timeout_type_token7] = ACTIONS(597), + [aux_sym_channel_timeout_type_token8] = ACTIONS(597), + [aux_sym_check_host_ip_token1] = ACTIONS(607), + [aux_sym_ciphers_token1] = ACTIONS(607), + [aux_sym_cipher_token1] = ACTIONS(609), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(607), + [aux_sym_compression_token1] = ACTIONS(607), + [aux_sym_connection_attempts_token1] = ACTIONS(607), + [aux_sym_connect_timeout_token1] = ACTIONS(607), + [aux_sym_control_master_token1] = ACTIONS(607), + [aux_sym_control_path_token1] = ACTIONS(607), + [aux_sym_control_persist_token1] = ACTIONS(607), + [aux_sym_dynamic_forward_token1] = ACTIONS(607), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(607), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(607), + [aux_sym_escape_char_token1] = ACTIONS(607), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(607), + [aux_sym_fingerprint_hash_token1] = ACTIONS(607), + [aux_sym_fork_after_authentication_token1] = ACTIONS(607), + [aux_sym_forward_agent_token1] = ACTIONS(607), + [aux_sym_forward_x11_token1] = ACTIONS(609), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(607), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(607), + [aux_sym_gateway_ports_token1] = ACTIONS(607), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(607), + [aux_sym_gssapi_authentication_token1] = ACTIONS(607), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(607), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(607), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(607), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(607), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(607), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(607), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(607), + [aux_sym_hash_known_hosts_token1] = ACTIONS(607), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(607), + [aux_sym_hostbased_authentication_token1] = ACTIONS(607), + [aux_sym_host_key_algorithms_token1] = ACTIONS(607), + [aux_sym_host_key_alias_token1] = ACTIONS(607), + [aux_sym_hostname_token1] = ACTIONS(607), + [aux_sym_identities_only_token1] = ACTIONS(607), + [aux_sym_identity_agent_token1] = ACTIONS(607), + [aux_sym_identity_file_token1] = ACTIONS(607), + [aux_sym_ignore_unknown_token1] = ACTIONS(607), + [aux_sym_include_token1] = ACTIONS(607), + [aux_sym_ip_qos_token1] = ACTIONS(607), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(607), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(607), + [aux_sym_kex_algorithms_token1] = ACTIONS(607), + [aux_sym_known_hosts_command_token1] = ACTIONS(607), + [aux_sym_local_command_token1] = ACTIONS(607), + [aux_sym_local_forward_token1] = ACTIONS(607), + [aux_sym_log_level_token1] = ACTIONS(607), + [aux_sym_log_verbose_token1] = ACTIONS(607), + [aux_sym_macs_token1] = ACTIONS(607), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(607), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(607), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(607), + [aux_sym_password_authentication_token1] = ACTIONS(607), + [aux_sym_permit_local_command_token1] = ACTIONS(607), + [aux_sym_permit_remote_open_token1] = ACTIONS(607), + [aux_sym_pkcs11_provider_token1] = ACTIONS(607), + [aux_sym_port_token1] = ACTIONS(607), + [aux_sym_preferred_authentications_token1] = ACTIONS(607), + [aux_sym_protocol_token1] = ACTIONS(607), + [aux_sym_proxy_command_token1] = ACTIONS(607), + [aux_sym_proxy_jump_token1] = ACTIONS(607), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(607), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(607), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(607), + [aux_sym_pubkey_authentication_token1] = ACTIONS(607), + [aux_sym_rekey_limit_token1] = ACTIONS(607), + [aux_sym_remote_command_token1] = ACTIONS(607), + [aux_sym_remote_forward_token1] = ACTIONS(607), + [aux_sym_request_tty_token1] = ACTIONS(607), + [aux_sym_required_rsa_size_token1] = ACTIONS(607), + [aux_sym_revoked_host_keys_token1] = ACTIONS(607), + [aux_sym_security_key_provider_token1] = ACTIONS(607), + [aux_sym_send_env_token1] = ACTIONS(607), + [aux_sym_server_alive_count_max_token1] = ACTIONS(607), + [aux_sym_server_alive_interval_token1] = ACTIONS(607), + [aux_sym_session_type_token1] = ACTIONS(607), + [aux_sym_set_env_token1] = ACTIONS(607), + [aux_sym_stdin_null_token1] = ACTIONS(607), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(607), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(607), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(607), + [aux_sym_syslog_facility_token1] = ACTIONS(607), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(607), + [aux_sym_keep_alive_token1] = ACTIONS(607), + [aux_sym_tag_token1] = ACTIONS(607), + [aux_sym_tunnel_token1] = ACTIONS(609), + [aux_sym_tunnel_device_token1] = ACTIONS(607), + [aux_sym_update_host_keys_token1] = ACTIONS(607), + [aux_sym_use_keychain_token1] = ACTIONS(607), + [aux_sym_use_roaming_token1] = ACTIONS(607), + [aux_sym_user_token1] = ACTIONS(609), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(607), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(607), + [aux_sym_visual_host_key_token1] = ACTIONS(607), + [aux_sym_xauth_location_token1] = ACTIONS(607), }, [8] = { - [ts_builtin_sym_end] = ACTIONS(608), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(610), - [anon_sym_DQUOTE] = ACTIONS(608), - [aux_sym_match_token1] = ACTIONS(608), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(608), - [aux_sym_address_family_token1] = ACTIONS(608), - [aux_sym_batch_mode_token1] = ACTIONS(608), - [aux_sym_bind_address_token1] = ACTIONS(608), - [aux_sym_bind_interface_token1] = ACTIONS(608), - [aux_sym_canonical_domains_token1] = ACTIONS(608), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(608), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(608), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(608), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(608), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(608), - [aux_sym_certificate_file_token1] = ACTIONS(608), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(608), - [aux_sym_channel_timeout_token1] = ACTIONS(608), - [aux_sym_channel_timeout_type_token1] = ACTIONS(608), - [aux_sym_channel_timeout_type_token2] = ACTIONS(608), - [aux_sym_channel_timeout_type_token3] = ACTIONS(608), - [aux_sym_channel_timeout_type_token4] = ACTIONS(608), - [aux_sym_channel_timeout_type_token5] = ACTIONS(608), - [aux_sym_channel_timeout_type_token6] = ACTIONS(610), - [aux_sym_channel_timeout_type_token7] = ACTIONS(608), - [aux_sym_channel_timeout_type_token8] = ACTIONS(608), - [aux_sym_check_host_ip_token1] = ACTIONS(608), - [aux_sym_ciphers_token1] = ACTIONS(608), - [aux_sym_cipher_token1] = ACTIONS(610), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(608), - [aux_sym_compression_token1] = ACTIONS(608), - [aux_sym_connection_attempts_token1] = ACTIONS(608), - [aux_sym_connect_timeout_token1] = ACTIONS(608), - [aux_sym_control_master_token1] = ACTIONS(608), - [aux_sym_control_path_token1] = ACTIONS(608), - [aux_sym_control_persist_token1] = ACTIONS(608), - [aux_sym_dynamic_forward_token1] = ACTIONS(608), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(608), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(608), - [aux_sym_escape_char_token1] = ACTIONS(608), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(608), - [aux_sym_fingerprint_hash_token1] = ACTIONS(608), - [aux_sym_fork_after_authentication_token1] = ACTIONS(608), - [aux_sym_forward_agent_token1] = ACTIONS(608), - [aux_sym_forward_x11_token1] = ACTIONS(610), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(608), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(608), - [aux_sym_gateway_ports_token1] = ACTIONS(608), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(608), - [aux_sym_gssapi_authentication_token1] = ACTIONS(608), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(608), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(608), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(608), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(608), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(608), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(608), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(608), - [aux_sym_hash_known_hosts_token1] = ACTIONS(608), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(608), - [aux_sym_hostbased_authentication_token1] = ACTIONS(608), - [aux_sym_host_key_algorithms_token1] = ACTIONS(608), - [aux_sym_host_key_alias_token1] = ACTIONS(608), - [aux_sym_hostname_token1] = ACTIONS(608), - [aux_sym_identities_only_token1] = ACTIONS(608), - [aux_sym_identity_agent_token1] = ACTIONS(608), - [aux_sym_identity_file_token1] = ACTIONS(608), - [aux_sym_ignore_unknown_token1] = ACTIONS(608), - [aux_sym_include_token1] = ACTIONS(608), - [aux_sym_ip_qos_token1] = ACTIONS(608), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(608), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(608), - [aux_sym_kex_algorithms_token1] = ACTIONS(608), - [aux_sym_known_hosts_command_token1] = ACTIONS(608), - [aux_sym_local_command_token1] = ACTIONS(608), - [aux_sym_local_forward_token1] = ACTIONS(608), - [aux_sym_log_level_token1] = ACTIONS(608), - [aux_sym_log_verbose_token1] = ACTIONS(608), - [aux_sym_macs_token1] = ACTIONS(608), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(608), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(608), - [aux_sym_password_authentication_token1] = ACTIONS(608), - [aux_sym_permit_local_command_token1] = ACTIONS(608), - [aux_sym_permit_remote_open_token1] = ACTIONS(608), - [aux_sym_pkcs11_provider_token1] = ACTIONS(608), - [aux_sym_port_token1] = ACTIONS(608), - [aux_sym_preferred_authentications_token1] = ACTIONS(608), - [aux_sym_protocol_token1] = ACTIONS(608), - [aux_sym_proxy_command_token1] = ACTIONS(608), - [aux_sym_proxy_jump_token1] = ACTIONS(608), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(608), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(608), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(608), - [aux_sym_pubkey_authentication_token1] = ACTIONS(608), - [aux_sym_rekey_limit_token1] = ACTIONS(608), - [aux_sym_remote_command_token1] = ACTIONS(608), - [aux_sym_remote_forward_token1] = ACTIONS(608), - [aux_sym_request_tty_token1] = ACTIONS(608), - [aux_sym_required_rsa_size_token1] = ACTIONS(608), - [aux_sym_revoked_host_keys_token1] = ACTIONS(608), - [aux_sym_security_key_provider_token1] = ACTIONS(608), - [aux_sym_send_env_token1] = ACTIONS(608), - [aux_sym_server_alive_count_max_token1] = ACTIONS(608), - [aux_sym_server_alive_interval_token1] = ACTIONS(608), - [aux_sym_session_type_token1] = ACTIONS(608), - [aux_sym_set_env_token1] = ACTIONS(608), - [aux_sym_stdin_null_token1] = ACTIONS(608), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(608), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(608), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(608), - [aux_sym_syslog_facility_token1] = ACTIONS(608), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(608), - [aux_sym_keep_alive_token1] = ACTIONS(608), - [aux_sym_tag_token1] = ACTIONS(608), - [aux_sym_tunnel_token1] = ACTIONS(610), - [aux_sym_tunnel_device_token1] = ACTIONS(608), - [aux_sym_update_host_keys_token1] = ACTIONS(608), - [aux_sym_use_keychain_token1] = ACTIONS(608), - [aux_sym_use_roaming_token1] = ACTIONS(608), - [aux_sym_user_token1] = ACTIONS(610), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(608), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(608), - [aux_sym_visual_host_key_token1] = ACTIONS(608), - [aux_sym_xauth_location_token1] = ACTIONS(608), + [ts_builtin_sym_end] = ACTIONS(613), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(613), + [aux_sym_match_token1] = ACTIONS(613), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(613), + [aux_sym_address_family_token1] = ACTIONS(613), + [aux_sym_batch_mode_token1] = ACTIONS(613), + [aux_sym_bind_address_token1] = ACTIONS(613), + [aux_sym_bind_interface_token1] = ACTIONS(613), + [aux_sym_canonical_domains_token1] = ACTIONS(613), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(613), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(613), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(613), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(613), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(613), + [aux_sym_certificate_file_token1] = ACTIONS(613), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(613), + [aux_sym_channel_timeout_token1] = ACTIONS(613), + [aux_sym_channel_timeout_type_token1] = ACTIONS(613), + [aux_sym_channel_timeout_type_token2] = ACTIONS(613), + [aux_sym_channel_timeout_type_token3] = ACTIONS(613), + [aux_sym_channel_timeout_type_token4] = ACTIONS(613), + [aux_sym_channel_timeout_type_token5] = ACTIONS(613), + [aux_sym_channel_timeout_type_token6] = ACTIONS(615), + [aux_sym_channel_timeout_type_token7] = ACTIONS(613), + [aux_sym_channel_timeout_type_token8] = ACTIONS(613), + [aux_sym_check_host_ip_token1] = ACTIONS(613), + [aux_sym_ciphers_token1] = ACTIONS(613), + [aux_sym_cipher_token1] = ACTIONS(615), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(613), + [aux_sym_compression_token1] = ACTIONS(613), + [aux_sym_connection_attempts_token1] = ACTIONS(613), + [aux_sym_connect_timeout_token1] = ACTIONS(613), + [aux_sym_control_master_token1] = ACTIONS(613), + [aux_sym_control_path_token1] = ACTIONS(613), + [aux_sym_control_persist_token1] = ACTIONS(613), + [aux_sym_dynamic_forward_token1] = ACTIONS(613), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(613), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(613), + [aux_sym_escape_char_token1] = ACTIONS(613), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(613), + [aux_sym_fingerprint_hash_token1] = ACTIONS(613), + [aux_sym_fork_after_authentication_token1] = ACTIONS(613), + [aux_sym_forward_agent_token1] = ACTIONS(613), + [aux_sym_forward_x11_token1] = ACTIONS(615), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(613), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(613), + [aux_sym_gateway_ports_token1] = ACTIONS(613), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(613), + [aux_sym_gssapi_authentication_token1] = ACTIONS(613), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(613), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(613), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(613), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(613), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(613), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(613), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(613), + [aux_sym_hash_known_hosts_token1] = ACTIONS(613), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(613), + [aux_sym_hostbased_authentication_token1] = ACTIONS(613), + [aux_sym_host_key_algorithms_token1] = ACTIONS(613), + [aux_sym_host_key_alias_token1] = ACTIONS(613), + [aux_sym_hostname_token1] = ACTIONS(613), + [aux_sym_identities_only_token1] = ACTIONS(613), + [aux_sym_identity_agent_token1] = ACTIONS(613), + [aux_sym_identity_file_token1] = ACTIONS(613), + [aux_sym_ignore_unknown_token1] = ACTIONS(613), + [aux_sym_include_token1] = ACTIONS(613), + [aux_sym_ip_qos_token1] = ACTIONS(613), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(613), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(613), + [aux_sym_kex_algorithms_token1] = ACTIONS(613), + [aux_sym_known_hosts_command_token1] = ACTIONS(613), + [aux_sym_local_command_token1] = ACTIONS(613), + [aux_sym_local_forward_token1] = ACTIONS(613), + [aux_sym_log_level_token1] = ACTIONS(613), + [aux_sym_log_verbose_token1] = ACTIONS(613), + [aux_sym_macs_token1] = ACTIONS(613), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(613), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(613), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(613), + [aux_sym_password_authentication_token1] = ACTIONS(613), + [aux_sym_permit_local_command_token1] = ACTIONS(613), + [aux_sym_permit_remote_open_token1] = ACTIONS(613), + [aux_sym_pkcs11_provider_token1] = ACTIONS(613), + [aux_sym_port_token1] = ACTIONS(613), + [aux_sym_preferred_authentications_token1] = ACTIONS(613), + [aux_sym_protocol_token1] = ACTIONS(613), + [aux_sym_proxy_command_token1] = ACTIONS(613), + [aux_sym_proxy_jump_token1] = ACTIONS(613), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(613), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(613), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(613), + [aux_sym_pubkey_authentication_token1] = ACTIONS(613), + [aux_sym_rekey_limit_token1] = ACTIONS(613), + [aux_sym_remote_command_token1] = ACTIONS(613), + [aux_sym_remote_forward_token1] = ACTIONS(613), + [aux_sym_request_tty_token1] = ACTIONS(613), + [aux_sym_required_rsa_size_token1] = ACTIONS(613), + [aux_sym_revoked_host_keys_token1] = ACTIONS(613), + [aux_sym_security_key_provider_token1] = ACTIONS(613), + [aux_sym_send_env_token1] = ACTIONS(613), + [aux_sym_server_alive_count_max_token1] = ACTIONS(613), + [aux_sym_server_alive_interval_token1] = ACTIONS(613), + [aux_sym_session_type_token1] = ACTIONS(613), + [aux_sym_set_env_token1] = ACTIONS(613), + [aux_sym_stdin_null_token1] = ACTIONS(613), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(613), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(613), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(613), + [aux_sym_syslog_facility_token1] = ACTIONS(613), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(613), + [aux_sym_keep_alive_token1] = ACTIONS(613), + [aux_sym_tag_token1] = ACTIONS(613), + [aux_sym_tunnel_token1] = ACTIONS(615), + [aux_sym_tunnel_device_token1] = ACTIONS(613), + [aux_sym_update_host_keys_token1] = ACTIONS(613), + [aux_sym_use_keychain_token1] = ACTIONS(613), + [aux_sym_use_roaming_token1] = ACTIONS(613), + [aux_sym_user_token1] = ACTIONS(615), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(613), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(613), + [aux_sym_visual_host_key_token1] = ACTIONS(613), + [aux_sym_xauth_location_token1] = ACTIONS(613), }, [9] = { - [ts_builtin_sym_end] = ACTIONS(612), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(616), - [aux_sym_match_token1] = ACTIONS(612), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(612), - [aux_sym_address_family_token1] = ACTIONS(612), - [aux_sym_batch_mode_token1] = ACTIONS(612), - [aux_sym_bind_address_token1] = ACTIONS(612), - [aux_sym_bind_interface_token1] = ACTIONS(612), - [aux_sym_canonical_domains_token1] = ACTIONS(612), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(612), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(612), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(612), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(612), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(612), - [aux_sym_certificate_file_token1] = ACTIONS(612), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(612), - [aux_sym_channel_timeout_token1] = ACTIONS(612), - [aux_sym_check_host_ip_token1] = ACTIONS(612), - [aux_sym_ciphers_token1] = ACTIONS(612), - [aux_sym_cipher_token1] = ACTIONS(614), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(612), - [aux_sym_compression_token1] = ACTIONS(612), - [aux_sym_connection_attempts_token1] = ACTIONS(612), - [aux_sym_connect_timeout_token1] = ACTIONS(612), - [aux_sym_control_master_token1] = ACTIONS(612), - [aux_sym_control_path_token1] = ACTIONS(612), - [aux_sym_control_persist_token1] = ACTIONS(612), - [aux_sym_dynamic_forward_token1] = ACTIONS(612), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(612), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(612), - [aux_sym_escape_char_token1] = ACTIONS(612), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(612), - [aux_sym_fingerprint_hash_token1] = ACTIONS(612), - [aux_sym_fork_after_authentication_token1] = ACTIONS(612), - [aux_sym_forward_agent_token1] = ACTIONS(612), - [aux_sym_forward_x11_token1] = ACTIONS(614), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(612), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(612), - [aux_sym_gateway_ports_token1] = ACTIONS(612), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(612), - [aux_sym_gssapi_authentication_token1] = ACTIONS(612), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(612), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(612), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(612), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(612), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(612), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(612), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(612), - [aux_sym_hash_known_hosts_token1] = ACTIONS(612), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(612), - [aux_sym_hostbased_authentication_token1] = ACTIONS(612), - [aux_sym_host_key_algorithms_token1] = ACTIONS(612), - [aux_sym_host_key_alias_token1] = ACTIONS(612), - [aux_sym_hostname_token1] = ACTIONS(612), - [aux_sym_identities_only_token1] = ACTIONS(612), - [aux_sym_identity_agent_token1] = ACTIONS(612), - [aux_sym_identity_file_token1] = ACTIONS(612), - [aux_sym_ignore_unknown_token1] = ACTIONS(612), - [aux_sym_include_token1] = ACTIONS(612), - [aux_sym_ip_qos_token1] = ACTIONS(612), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(612), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(612), - [aux_sym_kex_algorithms_token1] = ACTIONS(612), - [aux_sym_known_hosts_command_token1] = ACTIONS(612), - [aux_sym_local_command_token1] = ACTIONS(612), - [aux_sym_local_forward_token1] = ACTIONS(612), - [aux_sym_log_level_token1] = ACTIONS(612), - [aux_sym_log_verbose_token1] = ACTIONS(612), - [aux_sym_macs_token1] = ACTIONS(612), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(612), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(612), - [aux_sym_password_authentication_token1] = ACTIONS(612), - [aux_sym_permit_local_command_token1] = ACTIONS(612), - [aux_sym_permit_remote_open_token1] = ACTIONS(612), - [aux_sym_pkcs11_provider_token1] = ACTIONS(612), - [aux_sym_port_token1] = ACTIONS(612), - [aux_sym_preferred_authentications_token1] = ACTIONS(612), - [aux_sym_protocol_token1] = ACTIONS(612), - [aux_sym_proxy_command_token1] = ACTIONS(612), - [aux_sym_proxy_jump_token1] = ACTIONS(612), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(612), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(612), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(612), - [aux_sym_pubkey_authentication_token1] = ACTIONS(612), - [aux_sym_rekey_limit_token1] = ACTIONS(612), - [aux_sym_remote_command_token1] = ACTIONS(612), - [aux_sym_remote_forward_token1] = ACTIONS(612), - [aux_sym_request_tty_token1] = ACTIONS(612), - [aux_sym_required_rsa_size_token1] = ACTIONS(612), - [aux_sym_revoked_host_keys_token1] = ACTIONS(612), - [aux_sym_security_key_provider_token1] = ACTIONS(612), - [aux_sym_send_env_token1] = ACTIONS(612), - [aux_sym_server_alive_count_max_token1] = ACTIONS(612), - [aux_sym_server_alive_interval_token1] = ACTIONS(612), - [aux_sym_session_type_token1] = ACTIONS(612), - [aux_sym_set_env_token1] = ACTIONS(612), - [aux_sym_stdin_null_token1] = ACTIONS(612), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(612), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(612), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(612), - [aux_sym_syslog_facility_token1] = ACTIONS(612), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(612), - [aux_sym_keep_alive_token1] = ACTIONS(612), - [aux_sym_tag_token1] = ACTIONS(612), - [aux_sym_tunnel_token1] = ACTIONS(614), - [aux_sym_tunnel_device_token1] = ACTIONS(612), - [aux_sym_update_host_keys_token1] = ACTIONS(612), - [aux_sym_use_keychain_token1] = ACTIONS(612), - [aux_sym_use_roaming_token1] = ACTIONS(612), - [aux_sym_user_token1] = ACTIONS(614), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(612), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(612), - [aux_sym_visual_host_key_token1] = ACTIONS(612), - [aux_sym_xauth_location_token1] = ACTIONS(612), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(619), + [anon_sym_DQUOTE] = ACTIONS(621), + [aux_sym_match_token1] = ACTIONS(617), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(617), + [aux_sym_address_family_token1] = ACTIONS(617), + [aux_sym_batch_mode_token1] = ACTIONS(617), + [aux_sym_bind_address_token1] = ACTIONS(617), + [aux_sym_bind_interface_token1] = ACTIONS(617), + [aux_sym_canonical_domains_token1] = ACTIONS(617), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(617), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(617), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(617), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(617), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(617), + [aux_sym_certificate_file_token1] = ACTIONS(617), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(617), + [aux_sym_channel_timeout_token1] = ACTIONS(617), + [aux_sym_check_host_ip_token1] = ACTIONS(617), + [aux_sym_ciphers_token1] = ACTIONS(617), + [aux_sym_cipher_token1] = ACTIONS(619), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(617), + [aux_sym_compression_token1] = ACTIONS(617), + [aux_sym_connection_attempts_token1] = ACTIONS(617), + [aux_sym_connect_timeout_token1] = ACTIONS(617), + [aux_sym_control_master_token1] = ACTIONS(617), + [aux_sym_control_path_token1] = ACTIONS(617), + [aux_sym_control_persist_token1] = ACTIONS(617), + [aux_sym_dynamic_forward_token1] = ACTIONS(617), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(617), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(617), + [aux_sym_escape_char_token1] = ACTIONS(617), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(617), + [aux_sym_fingerprint_hash_token1] = ACTIONS(617), + [aux_sym_fork_after_authentication_token1] = ACTIONS(617), + [aux_sym_forward_agent_token1] = ACTIONS(617), + [aux_sym_forward_x11_token1] = ACTIONS(619), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(617), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(617), + [aux_sym_gateway_ports_token1] = ACTIONS(617), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(617), + [aux_sym_gssapi_authentication_token1] = ACTIONS(617), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(617), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(617), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(617), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(617), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(617), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(617), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(617), + [aux_sym_hash_known_hosts_token1] = ACTIONS(617), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(617), + [aux_sym_hostbased_authentication_token1] = ACTIONS(617), + [aux_sym_host_key_algorithms_token1] = ACTIONS(617), + [aux_sym_host_key_alias_token1] = ACTIONS(617), + [aux_sym_hostname_token1] = ACTIONS(617), + [aux_sym_identities_only_token1] = ACTIONS(617), + [aux_sym_identity_agent_token1] = ACTIONS(617), + [aux_sym_identity_file_token1] = ACTIONS(617), + [aux_sym_ignore_unknown_token1] = ACTIONS(617), + [aux_sym_include_token1] = ACTIONS(617), + [aux_sym_ip_qos_token1] = ACTIONS(617), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(617), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(617), + [aux_sym_kex_algorithms_token1] = ACTIONS(617), + [aux_sym_known_hosts_command_token1] = ACTIONS(617), + [aux_sym_local_command_token1] = ACTIONS(617), + [aux_sym_local_forward_token1] = ACTIONS(617), + [aux_sym_log_level_token1] = ACTIONS(617), + [aux_sym_log_verbose_token1] = ACTIONS(617), + [aux_sym_macs_token1] = ACTIONS(617), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(617), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(617), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(617), + [aux_sym_password_authentication_token1] = ACTIONS(617), + [aux_sym_permit_local_command_token1] = ACTIONS(617), + [aux_sym_permit_remote_open_token1] = ACTIONS(617), + [aux_sym_pkcs11_provider_token1] = ACTIONS(617), + [aux_sym_port_token1] = ACTIONS(617), + [aux_sym_preferred_authentications_token1] = ACTIONS(617), + [aux_sym_protocol_token1] = ACTIONS(617), + [aux_sym_proxy_command_token1] = ACTIONS(617), + [aux_sym_proxy_jump_token1] = ACTIONS(617), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(617), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(617), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(617), + [aux_sym_pubkey_authentication_token1] = ACTIONS(617), + [aux_sym_rekey_limit_token1] = ACTIONS(617), + [aux_sym_remote_command_token1] = ACTIONS(617), + [aux_sym_remote_forward_token1] = ACTIONS(617), + [aux_sym_request_tty_token1] = ACTIONS(617), + [aux_sym_required_rsa_size_token1] = ACTIONS(617), + [aux_sym_revoked_host_keys_token1] = ACTIONS(617), + [aux_sym_security_key_provider_token1] = ACTIONS(617), + [aux_sym_send_env_token1] = ACTIONS(617), + [aux_sym_server_alive_count_max_token1] = ACTIONS(617), + [aux_sym_server_alive_interval_token1] = ACTIONS(617), + [aux_sym_session_type_token1] = ACTIONS(617), + [aux_sym_set_env_token1] = ACTIONS(617), + [aux_sym_stdin_null_token1] = ACTIONS(617), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(617), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(617), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(617), + [aux_sym_syslog_facility_token1] = ACTIONS(617), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(617), + [aux_sym_keep_alive_token1] = ACTIONS(617), + [aux_sym_tag_token1] = ACTIONS(617), + [aux_sym_tunnel_token1] = ACTIONS(619), + [aux_sym_tunnel_device_token1] = ACTIONS(617), + [aux_sym_update_host_keys_token1] = ACTIONS(617), + [aux_sym_use_keychain_token1] = ACTIONS(617), + [aux_sym_use_roaming_token1] = ACTIONS(617), + [aux_sym_user_token1] = ACTIONS(619), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(617), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(617), + [aux_sym_visual_host_key_token1] = ACTIONS(617), + [aux_sym_xauth_location_token1] = ACTIONS(617), }, [10] = { - [ts_builtin_sym_end] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(622), - [aux_sym_match_token1] = ACTIONS(618), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(618), - [aux_sym_address_family_token1] = ACTIONS(618), - [aux_sym_batch_mode_token1] = ACTIONS(618), - [aux_sym_bind_address_token1] = ACTIONS(618), - [aux_sym_bind_interface_token1] = ACTIONS(618), - [aux_sym_canonical_domains_token1] = ACTIONS(618), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(618), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(618), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(618), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(618), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(618), - [aux_sym_certificate_file_token1] = ACTIONS(618), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(618), - [aux_sym_channel_timeout_token1] = ACTIONS(618), - [aux_sym_check_host_ip_token1] = ACTIONS(618), - [aux_sym_ciphers_token1] = ACTIONS(618), - [aux_sym_cipher_token1] = ACTIONS(620), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(618), - [aux_sym_compression_token1] = ACTIONS(618), - [aux_sym_connection_attempts_token1] = ACTIONS(618), - [aux_sym_connect_timeout_token1] = ACTIONS(618), - [aux_sym_control_master_token1] = ACTIONS(618), - [aux_sym_control_path_token1] = ACTIONS(618), - [aux_sym_control_persist_token1] = ACTIONS(618), - [aux_sym_dynamic_forward_token1] = ACTIONS(618), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(618), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(618), - [aux_sym_escape_char_token1] = ACTIONS(618), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(618), - [aux_sym_fingerprint_hash_token1] = ACTIONS(618), - [aux_sym_fork_after_authentication_token1] = ACTIONS(618), - [aux_sym_forward_agent_token1] = ACTIONS(618), - [aux_sym_forward_x11_token1] = ACTIONS(620), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(618), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(618), - [aux_sym_gateway_ports_token1] = ACTIONS(618), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(618), - [aux_sym_gssapi_authentication_token1] = ACTIONS(618), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(618), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(618), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(618), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(618), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(618), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(618), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(618), - [aux_sym_hash_known_hosts_token1] = ACTIONS(618), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(618), - [aux_sym_hostbased_authentication_token1] = ACTIONS(618), - [aux_sym_host_key_algorithms_token1] = ACTIONS(618), - [aux_sym_host_key_alias_token1] = ACTIONS(618), - [aux_sym_hostname_token1] = ACTIONS(618), - [aux_sym_identities_only_token1] = ACTIONS(618), - [aux_sym_identity_agent_token1] = ACTIONS(618), - [aux_sym_identity_file_token1] = ACTIONS(618), - [aux_sym_ignore_unknown_token1] = ACTIONS(618), - [aux_sym_include_token1] = ACTIONS(618), - [aux_sym_ip_qos_token1] = ACTIONS(618), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(618), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(618), - [aux_sym_kex_algorithms_token1] = ACTIONS(618), - [aux_sym_known_hosts_command_token1] = ACTIONS(618), - [aux_sym_local_command_token1] = ACTIONS(618), - [aux_sym_local_forward_token1] = ACTIONS(618), - [aux_sym_log_level_token1] = ACTIONS(618), - [aux_sym_log_verbose_token1] = ACTIONS(618), - [aux_sym_macs_token1] = ACTIONS(618), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(618), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(618), - [aux_sym_password_authentication_token1] = ACTIONS(618), - [aux_sym_permit_local_command_token1] = ACTIONS(618), - [aux_sym_permit_remote_open_token1] = ACTIONS(618), - [aux_sym_pkcs11_provider_token1] = ACTIONS(618), - [aux_sym_port_token1] = ACTIONS(618), - [aux_sym_preferred_authentications_token1] = ACTIONS(618), - [aux_sym_protocol_token1] = ACTIONS(618), - [aux_sym_proxy_command_token1] = ACTIONS(618), - [aux_sym_proxy_jump_token1] = ACTIONS(618), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(618), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(618), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(618), - [aux_sym_pubkey_authentication_token1] = ACTIONS(618), - [aux_sym_rekey_limit_token1] = ACTIONS(618), - [aux_sym_remote_command_token1] = ACTIONS(618), - [aux_sym_remote_forward_token1] = ACTIONS(618), - [aux_sym_request_tty_token1] = ACTIONS(618), - [aux_sym_required_rsa_size_token1] = ACTIONS(618), - [aux_sym_revoked_host_keys_token1] = ACTIONS(618), - [aux_sym_security_key_provider_token1] = ACTIONS(618), - [aux_sym_send_env_token1] = ACTIONS(618), - [aux_sym_server_alive_count_max_token1] = ACTIONS(618), - [aux_sym_server_alive_interval_token1] = ACTIONS(618), - [aux_sym_session_type_token1] = ACTIONS(618), - [aux_sym_set_env_token1] = ACTIONS(618), - [aux_sym_stdin_null_token1] = ACTIONS(618), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(618), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(618), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(618), - [aux_sym_syslog_facility_token1] = ACTIONS(618), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(618), - [aux_sym_keep_alive_token1] = ACTIONS(618), - [aux_sym_tag_token1] = ACTIONS(618), - [aux_sym_tunnel_token1] = ACTIONS(620), - [aux_sym_tunnel_device_token1] = ACTIONS(618), - [aux_sym_update_host_keys_token1] = ACTIONS(618), - [aux_sym_use_keychain_token1] = ACTIONS(618), - [aux_sym_use_roaming_token1] = ACTIONS(618), - [aux_sym_user_token1] = ACTIONS(620), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(618), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(618), - [aux_sym_visual_host_key_token1] = ACTIONS(618), - [aux_sym_xauth_location_token1] = ACTIONS(618), + [ts_builtin_sym_end] = ACTIONS(623), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(625), + [anon_sym_DQUOTE] = ACTIONS(627), + [aux_sym_match_token1] = ACTIONS(623), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(623), + [aux_sym_address_family_token1] = ACTIONS(623), + [aux_sym_batch_mode_token1] = ACTIONS(623), + [aux_sym_bind_address_token1] = ACTIONS(623), + [aux_sym_bind_interface_token1] = ACTIONS(623), + [aux_sym_canonical_domains_token1] = ACTIONS(623), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(623), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(623), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(623), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(623), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(623), + [aux_sym_certificate_file_token1] = ACTIONS(623), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(623), + [aux_sym_channel_timeout_token1] = ACTIONS(623), + [aux_sym_check_host_ip_token1] = ACTIONS(623), + [aux_sym_ciphers_token1] = ACTIONS(623), + [aux_sym_cipher_token1] = ACTIONS(625), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(623), + [aux_sym_compression_token1] = ACTIONS(623), + [aux_sym_connection_attempts_token1] = ACTIONS(623), + [aux_sym_connect_timeout_token1] = ACTIONS(623), + [aux_sym_control_master_token1] = ACTIONS(623), + [aux_sym_control_path_token1] = ACTIONS(623), + [aux_sym_control_persist_token1] = ACTIONS(623), + [aux_sym_dynamic_forward_token1] = ACTIONS(623), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(623), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(623), + [aux_sym_escape_char_token1] = ACTIONS(623), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(623), + [aux_sym_fingerprint_hash_token1] = ACTIONS(623), + [aux_sym_fork_after_authentication_token1] = ACTIONS(623), + [aux_sym_forward_agent_token1] = ACTIONS(623), + [aux_sym_forward_x11_token1] = ACTIONS(625), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(623), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(623), + [aux_sym_gateway_ports_token1] = ACTIONS(623), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(623), + [aux_sym_gssapi_authentication_token1] = ACTIONS(623), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(623), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(623), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(623), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(623), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(623), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(623), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(623), + [aux_sym_hash_known_hosts_token1] = ACTIONS(623), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(623), + [aux_sym_hostbased_authentication_token1] = ACTIONS(623), + [aux_sym_host_key_algorithms_token1] = ACTIONS(623), + [aux_sym_host_key_alias_token1] = ACTIONS(623), + [aux_sym_hostname_token1] = ACTIONS(623), + [aux_sym_identities_only_token1] = ACTIONS(623), + [aux_sym_identity_agent_token1] = ACTIONS(623), + [aux_sym_identity_file_token1] = ACTIONS(623), + [aux_sym_ignore_unknown_token1] = ACTIONS(623), + [aux_sym_include_token1] = ACTIONS(623), + [aux_sym_ip_qos_token1] = ACTIONS(623), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(623), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(623), + [aux_sym_kex_algorithms_token1] = ACTIONS(623), + [aux_sym_known_hosts_command_token1] = ACTIONS(623), + [aux_sym_local_command_token1] = ACTIONS(623), + [aux_sym_local_forward_token1] = ACTIONS(623), + [aux_sym_log_level_token1] = ACTIONS(623), + [aux_sym_log_verbose_token1] = ACTIONS(623), + [aux_sym_macs_token1] = ACTIONS(623), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(623), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(623), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(623), + [aux_sym_password_authentication_token1] = ACTIONS(623), + [aux_sym_permit_local_command_token1] = ACTIONS(623), + [aux_sym_permit_remote_open_token1] = ACTIONS(623), + [aux_sym_pkcs11_provider_token1] = ACTIONS(623), + [aux_sym_port_token1] = ACTIONS(623), + [aux_sym_preferred_authentications_token1] = ACTIONS(623), + [aux_sym_protocol_token1] = ACTIONS(623), + [aux_sym_proxy_command_token1] = ACTIONS(623), + [aux_sym_proxy_jump_token1] = ACTIONS(623), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(623), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(623), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(623), + [aux_sym_pubkey_authentication_token1] = ACTIONS(623), + [aux_sym_rekey_limit_token1] = ACTIONS(623), + [aux_sym_remote_command_token1] = ACTIONS(623), + [aux_sym_remote_forward_token1] = ACTIONS(623), + [aux_sym_request_tty_token1] = ACTIONS(623), + [aux_sym_required_rsa_size_token1] = ACTIONS(623), + [aux_sym_revoked_host_keys_token1] = ACTIONS(623), + [aux_sym_security_key_provider_token1] = ACTIONS(623), + [aux_sym_send_env_token1] = ACTIONS(623), + [aux_sym_server_alive_count_max_token1] = ACTIONS(623), + [aux_sym_server_alive_interval_token1] = ACTIONS(623), + [aux_sym_session_type_token1] = ACTIONS(623), + [aux_sym_set_env_token1] = ACTIONS(623), + [aux_sym_stdin_null_token1] = ACTIONS(623), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(623), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(623), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(623), + [aux_sym_syslog_facility_token1] = ACTIONS(623), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(623), + [aux_sym_keep_alive_token1] = ACTIONS(623), + [aux_sym_tag_token1] = ACTIONS(623), + [aux_sym_tunnel_token1] = ACTIONS(625), + [aux_sym_tunnel_device_token1] = ACTIONS(623), + [aux_sym_update_host_keys_token1] = ACTIONS(623), + [aux_sym_use_keychain_token1] = ACTIONS(623), + [aux_sym_use_roaming_token1] = ACTIONS(623), + [aux_sym_user_token1] = ACTIONS(625), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(623), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(623), + [aux_sym_visual_host_key_token1] = ACTIONS(623), + [aux_sym_xauth_location_token1] = ACTIONS(623), }, [11] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(628), - [aux_sym_match_token1] = ACTIONS(624), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(624), - [aux_sym_address_family_token1] = ACTIONS(624), - [aux_sym_batch_mode_token1] = ACTIONS(624), - [aux_sym_bind_address_token1] = ACTIONS(624), - [aux_sym_bind_interface_token1] = ACTIONS(624), - [aux_sym_canonical_domains_token1] = ACTIONS(624), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(624), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(624), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(624), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(624), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(624), - [aux_sym_certificate_file_token1] = ACTIONS(624), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(624), - [aux_sym_channel_timeout_token1] = ACTIONS(624), - [aux_sym_check_host_ip_token1] = ACTIONS(624), - [aux_sym_ciphers_token1] = ACTIONS(624), - [aux_sym_cipher_token1] = ACTIONS(626), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(624), - [aux_sym_compression_token1] = ACTIONS(624), - [aux_sym_connection_attempts_token1] = ACTIONS(624), - [aux_sym_connect_timeout_token1] = ACTIONS(624), - [aux_sym_control_master_token1] = ACTIONS(624), - [aux_sym_control_path_token1] = ACTIONS(624), - [aux_sym_control_persist_token1] = ACTIONS(624), - [aux_sym_dynamic_forward_token1] = ACTIONS(624), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(624), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(624), - [aux_sym_escape_char_token1] = ACTIONS(624), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(624), - [aux_sym_fingerprint_hash_token1] = ACTIONS(624), - [aux_sym_fork_after_authentication_token1] = ACTIONS(624), - [aux_sym_forward_agent_token1] = ACTIONS(624), - [aux_sym_forward_x11_token1] = ACTIONS(626), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(624), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(624), - [aux_sym_gateway_ports_token1] = ACTIONS(624), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(624), - [aux_sym_gssapi_authentication_token1] = ACTIONS(624), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(624), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(624), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(624), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(624), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(624), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(624), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(624), - [aux_sym_hash_known_hosts_token1] = ACTIONS(624), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(624), - [aux_sym_hostbased_authentication_token1] = ACTIONS(624), - [aux_sym_host_key_algorithms_token1] = ACTIONS(624), - [aux_sym_host_key_alias_token1] = ACTIONS(624), - [aux_sym_hostname_token1] = ACTIONS(624), - [aux_sym_identities_only_token1] = ACTIONS(624), - [aux_sym_identity_agent_token1] = ACTIONS(624), - [aux_sym_identity_file_token1] = ACTIONS(624), - [aux_sym_ignore_unknown_token1] = ACTIONS(624), - [aux_sym_include_token1] = ACTIONS(624), - [aux_sym_ip_qos_token1] = ACTIONS(624), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(624), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(624), - [aux_sym_kex_algorithms_token1] = ACTIONS(624), - [aux_sym_known_hosts_command_token1] = ACTIONS(624), - [aux_sym_local_command_token1] = ACTIONS(624), - [aux_sym_local_forward_token1] = ACTIONS(624), - [aux_sym_log_level_token1] = ACTIONS(624), - [aux_sym_log_verbose_token1] = ACTIONS(624), - [aux_sym_macs_token1] = ACTIONS(624), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(624), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(624), - [aux_sym_password_authentication_token1] = ACTIONS(624), - [aux_sym_permit_local_command_token1] = ACTIONS(624), - [aux_sym_permit_remote_open_token1] = ACTIONS(624), - [aux_sym_pkcs11_provider_token1] = ACTIONS(624), - [aux_sym_port_token1] = ACTIONS(624), - [aux_sym_preferred_authentications_token1] = ACTIONS(624), - [aux_sym_protocol_token1] = ACTIONS(624), - [aux_sym_proxy_command_token1] = ACTIONS(624), - [aux_sym_proxy_jump_token1] = ACTIONS(624), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(624), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(624), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(624), - [aux_sym_pubkey_authentication_token1] = ACTIONS(624), - [aux_sym_rekey_limit_token1] = ACTIONS(624), - [aux_sym_remote_command_token1] = ACTIONS(624), - [aux_sym_remote_forward_token1] = ACTIONS(624), - [aux_sym_request_tty_token1] = ACTIONS(624), - [aux_sym_required_rsa_size_token1] = ACTIONS(624), - [aux_sym_revoked_host_keys_token1] = ACTIONS(624), - [aux_sym_security_key_provider_token1] = ACTIONS(624), - [aux_sym_send_env_token1] = ACTIONS(624), - [aux_sym_server_alive_count_max_token1] = ACTIONS(624), - [aux_sym_server_alive_interval_token1] = ACTIONS(624), - [aux_sym_session_type_token1] = ACTIONS(624), - [aux_sym_set_env_token1] = ACTIONS(624), - [aux_sym_stdin_null_token1] = ACTIONS(624), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(624), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(624), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(624), - [aux_sym_syslog_facility_token1] = ACTIONS(624), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(624), - [aux_sym_keep_alive_token1] = ACTIONS(624), - [aux_sym_tag_token1] = ACTIONS(624), - [aux_sym_tunnel_token1] = ACTIONS(626), - [aux_sym_tunnel_device_token1] = ACTIONS(624), - [aux_sym_update_host_keys_token1] = ACTIONS(624), - [aux_sym_use_keychain_token1] = ACTIONS(624), - [aux_sym_use_roaming_token1] = ACTIONS(624), - [aux_sym_user_token1] = ACTIONS(626), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(624), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(624), - [aux_sym_visual_host_key_token1] = ACTIONS(624), - [aux_sym_xauth_location_token1] = ACTIONS(624), + [ts_builtin_sym_end] = ACTIONS(629), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(631), + [anon_sym_DQUOTE] = ACTIONS(633), + [aux_sym_match_token1] = ACTIONS(629), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(629), + [aux_sym_address_family_token1] = ACTIONS(629), + [aux_sym_batch_mode_token1] = ACTIONS(629), + [aux_sym_bind_address_token1] = ACTIONS(629), + [aux_sym_bind_interface_token1] = ACTIONS(629), + [aux_sym_canonical_domains_token1] = ACTIONS(629), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(629), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(629), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(629), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(629), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(629), + [aux_sym_certificate_file_token1] = ACTIONS(629), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(629), + [aux_sym_channel_timeout_token1] = ACTIONS(629), + [aux_sym_check_host_ip_token1] = ACTIONS(629), + [aux_sym_ciphers_token1] = ACTIONS(629), + [aux_sym_cipher_token1] = ACTIONS(631), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(629), + [aux_sym_compression_token1] = ACTIONS(629), + [aux_sym_connection_attempts_token1] = ACTIONS(629), + [aux_sym_connect_timeout_token1] = ACTIONS(629), + [aux_sym_control_master_token1] = ACTIONS(629), + [aux_sym_control_path_token1] = ACTIONS(629), + [aux_sym_control_persist_token1] = ACTIONS(629), + [aux_sym_dynamic_forward_token1] = ACTIONS(629), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(629), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(629), + [aux_sym_escape_char_token1] = ACTIONS(629), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(629), + [aux_sym_fingerprint_hash_token1] = ACTIONS(629), + [aux_sym_fork_after_authentication_token1] = ACTIONS(629), + [aux_sym_forward_agent_token1] = ACTIONS(629), + [aux_sym_forward_x11_token1] = ACTIONS(631), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(629), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(629), + [aux_sym_gateway_ports_token1] = ACTIONS(629), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(629), + [aux_sym_gssapi_authentication_token1] = ACTIONS(629), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(629), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(629), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(629), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(629), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(629), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(629), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(629), + [aux_sym_hash_known_hosts_token1] = ACTIONS(629), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(629), + [aux_sym_hostbased_authentication_token1] = ACTIONS(629), + [aux_sym_host_key_algorithms_token1] = ACTIONS(629), + [aux_sym_host_key_alias_token1] = ACTIONS(629), + [aux_sym_hostname_token1] = ACTIONS(629), + [aux_sym_identities_only_token1] = ACTIONS(629), + [aux_sym_identity_agent_token1] = ACTIONS(629), + [aux_sym_identity_file_token1] = ACTIONS(629), + [aux_sym_ignore_unknown_token1] = ACTIONS(629), + [aux_sym_include_token1] = ACTIONS(629), + [aux_sym_ip_qos_token1] = ACTIONS(629), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(629), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(629), + [aux_sym_kex_algorithms_token1] = ACTIONS(629), + [aux_sym_known_hosts_command_token1] = ACTIONS(629), + [aux_sym_local_command_token1] = ACTIONS(629), + [aux_sym_local_forward_token1] = ACTIONS(629), + [aux_sym_log_level_token1] = ACTIONS(629), + [aux_sym_log_verbose_token1] = ACTIONS(629), + [aux_sym_macs_token1] = ACTIONS(629), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(629), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(629), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(629), + [aux_sym_password_authentication_token1] = ACTIONS(629), + [aux_sym_permit_local_command_token1] = ACTIONS(629), + [aux_sym_permit_remote_open_token1] = ACTIONS(629), + [aux_sym_pkcs11_provider_token1] = ACTIONS(629), + [aux_sym_port_token1] = ACTIONS(629), + [aux_sym_preferred_authentications_token1] = ACTIONS(629), + [aux_sym_protocol_token1] = ACTIONS(629), + [aux_sym_proxy_command_token1] = ACTIONS(629), + [aux_sym_proxy_jump_token1] = ACTIONS(629), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(629), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(629), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(629), + [aux_sym_pubkey_authentication_token1] = ACTIONS(629), + [aux_sym_rekey_limit_token1] = ACTIONS(629), + [aux_sym_remote_command_token1] = ACTIONS(629), + [aux_sym_remote_forward_token1] = ACTIONS(629), + [aux_sym_request_tty_token1] = ACTIONS(629), + [aux_sym_required_rsa_size_token1] = ACTIONS(629), + [aux_sym_revoked_host_keys_token1] = ACTIONS(629), + [aux_sym_security_key_provider_token1] = ACTIONS(629), + [aux_sym_send_env_token1] = ACTIONS(629), + [aux_sym_server_alive_count_max_token1] = ACTIONS(629), + [aux_sym_server_alive_interval_token1] = ACTIONS(629), + [aux_sym_session_type_token1] = ACTIONS(629), + [aux_sym_set_env_token1] = ACTIONS(629), + [aux_sym_stdin_null_token1] = ACTIONS(629), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(629), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(629), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(629), + [aux_sym_syslog_facility_token1] = ACTIONS(629), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(629), + [aux_sym_keep_alive_token1] = ACTIONS(629), + [aux_sym_tag_token1] = ACTIONS(629), + [aux_sym_tunnel_token1] = ACTIONS(631), + [aux_sym_tunnel_device_token1] = ACTIONS(629), + [aux_sym_update_host_keys_token1] = ACTIONS(629), + [aux_sym_use_keychain_token1] = ACTIONS(629), + [aux_sym_use_roaming_token1] = ACTIONS(629), + [aux_sym_user_token1] = ACTIONS(631), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(629), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(629), + [aux_sym_visual_host_key_token1] = ACTIONS(629), + [aux_sym_xauth_location_token1] = ACTIONS(629), }, [12] = { - [ts_builtin_sym_end] = ACTIONS(630), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(632), - [anon_sym_DQUOTE] = ACTIONS(634), - [aux_sym_match_token1] = ACTIONS(630), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(630), - [aux_sym_address_family_token1] = ACTIONS(630), - [aux_sym_batch_mode_token1] = ACTIONS(630), - [aux_sym_bind_address_token1] = ACTIONS(630), - [aux_sym_bind_interface_token1] = ACTIONS(630), - [aux_sym_canonical_domains_token1] = ACTIONS(630), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(630), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(630), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(630), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(630), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(630), - [aux_sym_certificate_file_token1] = ACTIONS(630), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(630), - [aux_sym_channel_timeout_token1] = ACTIONS(630), - [aux_sym_check_host_ip_token1] = ACTIONS(630), - [aux_sym_ciphers_token1] = ACTIONS(630), - [aux_sym_cipher_token1] = ACTIONS(632), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(630), - [aux_sym_compression_token1] = ACTIONS(630), - [aux_sym_connection_attempts_token1] = ACTIONS(630), - [aux_sym_connect_timeout_token1] = ACTIONS(630), - [aux_sym_control_master_token1] = ACTIONS(630), - [aux_sym_control_path_token1] = ACTIONS(630), - [aux_sym_control_persist_token1] = ACTIONS(630), - [aux_sym_dynamic_forward_token1] = ACTIONS(630), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(630), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(630), - [aux_sym_escape_char_token1] = ACTIONS(630), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(630), - [aux_sym_fingerprint_hash_token1] = ACTIONS(630), - [aux_sym_fork_after_authentication_token1] = ACTIONS(630), - [aux_sym_forward_agent_token1] = ACTIONS(630), - [aux_sym_forward_x11_token1] = ACTIONS(632), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(630), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(630), - [aux_sym_gateway_ports_token1] = ACTIONS(630), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(630), - [aux_sym_gssapi_authentication_token1] = ACTIONS(630), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(630), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(630), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(630), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(630), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(630), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(630), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(630), - [aux_sym_hash_known_hosts_token1] = ACTIONS(630), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(630), - [aux_sym_hostbased_authentication_token1] = ACTIONS(630), - [aux_sym_host_key_algorithms_token1] = ACTIONS(630), - [aux_sym_host_key_alias_token1] = ACTIONS(630), - [aux_sym_hostname_token1] = ACTIONS(630), - [aux_sym_identities_only_token1] = ACTIONS(630), - [aux_sym_identity_agent_token1] = ACTIONS(630), - [aux_sym_identity_file_token1] = ACTIONS(630), - [aux_sym_ignore_unknown_token1] = ACTIONS(630), - [aux_sym_include_token1] = ACTIONS(630), - [aux_sym_ip_qos_token1] = ACTIONS(630), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(630), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(630), - [aux_sym_kex_algorithms_token1] = ACTIONS(630), - [aux_sym_known_hosts_command_token1] = ACTIONS(630), - [aux_sym_local_command_token1] = ACTIONS(630), - [aux_sym_local_forward_token1] = ACTIONS(630), - [aux_sym_log_level_token1] = ACTIONS(630), - [aux_sym_log_verbose_token1] = ACTIONS(630), - [aux_sym_macs_token1] = ACTIONS(630), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(630), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(630), - [aux_sym_password_authentication_token1] = ACTIONS(630), - [aux_sym_permit_local_command_token1] = ACTIONS(630), - [aux_sym_permit_remote_open_token1] = ACTIONS(630), - [aux_sym_pkcs11_provider_token1] = ACTIONS(630), - [aux_sym_port_token1] = ACTIONS(630), - [aux_sym_preferred_authentications_token1] = ACTIONS(630), - [aux_sym_protocol_token1] = ACTIONS(630), - [aux_sym_proxy_command_token1] = ACTIONS(630), - [aux_sym_proxy_jump_token1] = ACTIONS(630), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(630), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(630), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(630), - [aux_sym_pubkey_authentication_token1] = ACTIONS(630), - [aux_sym_rekey_limit_token1] = ACTIONS(630), - [aux_sym_remote_command_token1] = ACTIONS(630), - [aux_sym_remote_forward_token1] = ACTIONS(630), - [aux_sym_request_tty_token1] = ACTIONS(630), - [aux_sym_required_rsa_size_token1] = ACTIONS(630), - [aux_sym_revoked_host_keys_token1] = ACTIONS(630), - [aux_sym_security_key_provider_token1] = ACTIONS(630), - [aux_sym_send_env_token1] = ACTIONS(630), - [aux_sym_server_alive_count_max_token1] = ACTIONS(630), - [aux_sym_server_alive_interval_token1] = ACTIONS(630), - [aux_sym_session_type_token1] = ACTIONS(630), - [aux_sym_set_env_token1] = ACTIONS(630), - [aux_sym_stdin_null_token1] = ACTIONS(630), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(630), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(630), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(630), - [aux_sym_syslog_facility_token1] = ACTIONS(630), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(630), - [aux_sym_keep_alive_token1] = ACTIONS(630), - [aux_sym_tag_token1] = ACTIONS(630), - [aux_sym_tunnel_token1] = ACTIONS(632), - [aux_sym_tunnel_device_token1] = ACTIONS(630), - [aux_sym_update_host_keys_token1] = ACTIONS(630), - [aux_sym_use_keychain_token1] = ACTIONS(630), - [aux_sym_use_roaming_token1] = ACTIONS(630), - [aux_sym_user_token1] = ACTIONS(632), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(630), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(630), - [aux_sym_visual_host_key_token1] = ACTIONS(630), - [aux_sym_xauth_location_token1] = ACTIONS(630), + [ts_builtin_sym_end] = ACTIONS(635), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(639), + [aux_sym_match_token1] = ACTIONS(635), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(635), + [aux_sym_address_family_token1] = ACTIONS(635), + [aux_sym_batch_mode_token1] = ACTIONS(635), + [aux_sym_bind_address_token1] = ACTIONS(635), + [aux_sym_bind_interface_token1] = ACTIONS(635), + [aux_sym_canonical_domains_token1] = ACTIONS(635), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(635), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(635), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(635), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(635), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(635), + [aux_sym_certificate_file_token1] = ACTIONS(635), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(635), + [aux_sym_channel_timeout_token1] = ACTIONS(635), + [aux_sym_check_host_ip_token1] = ACTIONS(635), + [aux_sym_ciphers_token1] = ACTIONS(635), + [aux_sym_cipher_token1] = ACTIONS(637), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(635), + [aux_sym_compression_token1] = ACTIONS(635), + [aux_sym_connection_attempts_token1] = ACTIONS(635), + [aux_sym_connect_timeout_token1] = ACTIONS(635), + [aux_sym_control_master_token1] = ACTIONS(635), + [aux_sym_control_path_token1] = ACTIONS(635), + [aux_sym_control_persist_token1] = ACTIONS(635), + [aux_sym_dynamic_forward_token1] = ACTIONS(635), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(635), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(635), + [aux_sym_escape_char_token1] = ACTIONS(635), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(635), + [aux_sym_fingerprint_hash_token1] = ACTIONS(635), + [aux_sym_fork_after_authentication_token1] = ACTIONS(635), + [aux_sym_forward_agent_token1] = ACTIONS(635), + [aux_sym_forward_x11_token1] = ACTIONS(637), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(635), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(635), + [aux_sym_gateway_ports_token1] = ACTIONS(635), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(635), + [aux_sym_gssapi_authentication_token1] = ACTIONS(635), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(635), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(635), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(635), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(635), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(635), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(635), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(635), + [aux_sym_hash_known_hosts_token1] = ACTIONS(635), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(635), + [aux_sym_hostbased_authentication_token1] = ACTIONS(635), + [aux_sym_host_key_algorithms_token1] = ACTIONS(635), + [aux_sym_host_key_alias_token1] = ACTIONS(635), + [aux_sym_hostname_token1] = ACTIONS(635), + [aux_sym_identities_only_token1] = ACTIONS(635), + [aux_sym_identity_agent_token1] = ACTIONS(635), + [aux_sym_identity_file_token1] = ACTIONS(635), + [aux_sym_ignore_unknown_token1] = ACTIONS(635), + [aux_sym_include_token1] = ACTIONS(635), + [aux_sym_ip_qos_token1] = ACTIONS(635), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(635), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(635), + [aux_sym_kex_algorithms_token1] = ACTIONS(635), + [aux_sym_known_hosts_command_token1] = ACTIONS(635), + [aux_sym_local_command_token1] = ACTIONS(635), + [aux_sym_local_forward_token1] = ACTIONS(635), + [aux_sym_log_level_token1] = ACTIONS(635), + [aux_sym_log_verbose_token1] = ACTIONS(635), + [aux_sym_macs_token1] = ACTIONS(635), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(635), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(635), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(635), + [aux_sym_password_authentication_token1] = ACTIONS(635), + [aux_sym_permit_local_command_token1] = ACTIONS(635), + [aux_sym_permit_remote_open_token1] = ACTIONS(635), + [aux_sym_pkcs11_provider_token1] = ACTIONS(635), + [aux_sym_port_token1] = ACTIONS(635), + [aux_sym_preferred_authentications_token1] = ACTIONS(635), + [aux_sym_protocol_token1] = ACTIONS(635), + [aux_sym_proxy_command_token1] = ACTIONS(635), + [aux_sym_proxy_jump_token1] = ACTIONS(635), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(635), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(635), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(635), + [aux_sym_pubkey_authentication_token1] = ACTIONS(635), + [aux_sym_rekey_limit_token1] = ACTIONS(635), + [aux_sym_remote_command_token1] = ACTIONS(635), + [aux_sym_remote_forward_token1] = ACTIONS(635), + [aux_sym_request_tty_token1] = ACTIONS(635), + [aux_sym_required_rsa_size_token1] = ACTIONS(635), + [aux_sym_revoked_host_keys_token1] = ACTIONS(635), + [aux_sym_security_key_provider_token1] = ACTIONS(635), + [aux_sym_send_env_token1] = ACTIONS(635), + [aux_sym_server_alive_count_max_token1] = ACTIONS(635), + [aux_sym_server_alive_interval_token1] = ACTIONS(635), + [aux_sym_session_type_token1] = ACTIONS(635), + [aux_sym_set_env_token1] = ACTIONS(635), + [aux_sym_stdin_null_token1] = ACTIONS(635), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(635), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(635), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(635), + [aux_sym_syslog_facility_token1] = ACTIONS(635), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(635), + [aux_sym_keep_alive_token1] = ACTIONS(635), + [aux_sym_tag_token1] = ACTIONS(635), + [aux_sym_tunnel_token1] = ACTIONS(637), + [aux_sym_tunnel_device_token1] = ACTIONS(635), + [aux_sym_update_host_keys_token1] = ACTIONS(635), + [aux_sym_use_keychain_token1] = ACTIONS(635), + [aux_sym_use_roaming_token1] = ACTIONS(635), + [aux_sym_user_token1] = ACTIONS(637), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(635), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(635), + [aux_sym_visual_host_key_token1] = ACTIONS(635), + [aux_sym_xauth_location_token1] = ACTIONS(635), }, [13] = { - [ts_builtin_sym_end] = ACTIONS(636), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(638), - [anon_sym_DQUOTE] = ACTIONS(640), - [aux_sym_match_token1] = ACTIONS(636), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(636), - [aux_sym_address_family_token1] = ACTIONS(636), - [aux_sym_batch_mode_token1] = ACTIONS(636), - [aux_sym_bind_address_token1] = ACTIONS(636), - [aux_sym_bind_interface_token1] = ACTIONS(636), - [aux_sym_canonical_domains_token1] = ACTIONS(636), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(636), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(636), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(636), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(636), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(636), - [aux_sym_certificate_file_token1] = ACTIONS(636), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(636), - [aux_sym_channel_timeout_token1] = ACTIONS(636), - [aux_sym_check_host_ip_token1] = ACTIONS(636), - [aux_sym_ciphers_token1] = ACTIONS(636), - [aux_sym_cipher_token1] = ACTIONS(638), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(636), - [aux_sym_compression_token1] = ACTIONS(636), - [aux_sym_connection_attempts_token1] = ACTIONS(636), - [aux_sym_connect_timeout_token1] = ACTIONS(636), - [aux_sym_control_master_token1] = ACTIONS(636), - [aux_sym_control_path_token1] = ACTIONS(636), - [aux_sym_control_persist_token1] = ACTIONS(636), - [aux_sym_dynamic_forward_token1] = ACTIONS(636), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(636), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(636), - [aux_sym_escape_char_token1] = ACTIONS(636), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(636), - [aux_sym_fingerprint_hash_token1] = ACTIONS(636), - [aux_sym_fork_after_authentication_token1] = ACTIONS(636), - [aux_sym_forward_agent_token1] = ACTIONS(636), - [aux_sym_forward_x11_token1] = ACTIONS(638), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(636), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(636), - [aux_sym_gateway_ports_token1] = ACTIONS(636), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(636), - [aux_sym_gssapi_authentication_token1] = ACTIONS(636), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(636), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(636), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(636), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(636), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(636), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(636), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(636), - [aux_sym_hash_known_hosts_token1] = ACTIONS(636), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(636), - [aux_sym_hostbased_authentication_token1] = ACTIONS(636), - [aux_sym_host_key_algorithms_token1] = ACTIONS(636), - [aux_sym_host_key_alias_token1] = ACTIONS(636), - [aux_sym_hostname_token1] = ACTIONS(636), - [aux_sym_identities_only_token1] = ACTIONS(636), - [aux_sym_identity_agent_token1] = ACTIONS(636), - [aux_sym_identity_file_token1] = ACTIONS(636), - [aux_sym_ignore_unknown_token1] = ACTIONS(636), - [aux_sym_include_token1] = ACTIONS(636), - [aux_sym_ip_qos_token1] = ACTIONS(636), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(636), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(636), - [aux_sym_kex_algorithms_token1] = ACTIONS(636), - [aux_sym_known_hosts_command_token1] = ACTIONS(636), - [aux_sym_local_command_token1] = ACTIONS(636), - [aux_sym_local_forward_token1] = ACTIONS(636), - [aux_sym_log_level_token1] = ACTIONS(636), - [aux_sym_log_verbose_token1] = ACTIONS(636), - [aux_sym_macs_token1] = ACTIONS(636), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(636), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(636), - [aux_sym_password_authentication_token1] = ACTIONS(636), - [aux_sym_permit_local_command_token1] = ACTIONS(636), - [aux_sym_permit_remote_open_token1] = ACTIONS(636), - [aux_sym_pkcs11_provider_token1] = ACTIONS(636), - [aux_sym_port_token1] = ACTIONS(636), - [aux_sym_preferred_authentications_token1] = ACTIONS(636), - [aux_sym_protocol_token1] = ACTIONS(636), - [aux_sym_proxy_command_token1] = ACTIONS(636), - [aux_sym_proxy_jump_token1] = ACTIONS(636), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(636), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(636), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(636), - [aux_sym_pubkey_authentication_token1] = ACTIONS(636), - [aux_sym_rekey_limit_token1] = ACTIONS(636), - [aux_sym_remote_command_token1] = ACTIONS(636), - [aux_sym_remote_forward_token1] = ACTIONS(636), - [aux_sym_request_tty_token1] = ACTIONS(636), - [aux_sym_required_rsa_size_token1] = ACTIONS(636), - [aux_sym_revoked_host_keys_token1] = ACTIONS(636), - [aux_sym_security_key_provider_token1] = ACTIONS(636), - [aux_sym_send_env_token1] = ACTIONS(636), - [aux_sym_server_alive_count_max_token1] = ACTIONS(636), - [aux_sym_server_alive_interval_token1] = ACTIONS(636), - [aux_sym_session_type_token1] = ACTIONS(636), - [aux_sym_set_env_token1] = ACTIONS(636), - [aux_sym_stdin_null_token1] = ACTIONS(636), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(636), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(636), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(636), - [aux_sym_syslog_facility_token1] = ACTIONS(636), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(636), - [aux_sym_keep_alive_token1] = ACTIONS(636), - [aux_sym_tag_token1] = ACTIONS(636), - [aux_sym_tunnel_token1] = ACTIONS(638), - [aux_sym_tunnel_device_token1] = ACTIONS(636), - [aux_sym_update_host_keys_token1] = ACTIONS(636), - [aux_sym_use_keychain_token1] = ACTIONS(636), - [aux_sym_use_roaming_token1] = ACTIONS(636), - [aux_sym_user_token1] = ACTIONS(638), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(636), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(636), - [aux_sym_visual_host_key_token1] = ACTIONS(636), - [aux_sym_xauth_location_token1] = ACTIONS(636), + [ts_builtin_sym_end] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(643), + [anon_sym_DQUOTE] = ACTIONS(645), + [aux_sym_match_token1] = ACTIONS(641), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(641), + [aux_sym_address_family_token1] = ACTIONS(641), + [aux_sym_batch_mode_token1] = ACTIONS(641), + [aux_sym_bind_address_token1] = ACTIONS(641), + [aux_sym_bind_interface_token1] = ACTIONS(641), + [aux_sym_canonical_domains_token1] = ACTIONS(641), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(641), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(641), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(641), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(641), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(641), + [aux_sym_certificate_file_token1] = ACTIONS(641), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(641), + [aux_sym_channel_timeout_token1] = ACTIONS(641), + [aux_sym_check_host_ip_token1] = ACTIONS(641), + [aux_sym_ciphers_token1] = ACTIONS(641), + [aux_sym_cipher_token1] = ACTIONS(643), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(641), + [aux_sym_compression_token1] = ACTIONS(641), + [aux_sym_connection_attempts_token1] = ACTIONS(641), + [aux_sym_connect_timeout_token1] = ACTIONS(641), + [aux_sym_control_master_token1] = ACTIONS(641), + [aux_sym_control_path_token1] = ACTIONS(641), + [aux_sym_control_persist_token1] = ACTIONS(641), + [aux_sym_dynamic_forward_token1] = ACTIONS(641), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(641), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(641), + [aux_sym_escape_char_token1] = ACTIONS(641), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(641), + [aux_sym_fingerprint_hash_token1] = ACTIONS(641), + [aux_sym_fork_after_authentication_token1] = ACTIONS(641), + [aux_sym_forward_agent_token1] = ACTIONS(641), + [aux_sym_forward_x11_token1] = ACTIONS(643), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(641), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(641), + [aux_sym_gateway_ports_token1] = ACTIONS(641), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(641), + [aux_sym_gssapi_authentication_token1] = ACTIONS(641), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(641), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(641), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(641), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(641), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(641), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(641), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(641), + [aux_sym_hash_known_hosts_token1] = ACTIONS(641), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(641), + [aux_sym_hostbased_authentication_token1] = ACTIONS(641), + [aux_sym_host_key_algorithms_token1] = ACTIONS(641), + [aux_sym_host_key_alias_token1] = ACTIONS(641), + [aux_sym_hostname_token1] = ACTIONS(641), + [aux_sym_identities_only_token1] = ACTIONS(641), + [aux_sym_identity_agent_token1] = ACTIONS(641), + [aux_sym_identity_file_token1] = ACTIONS(641), + [aux_sym_ignore_unknown_token1] = ACTIONS(641), + [aux_sym_include_token1] = ACTIONS(641), + [aux_sym_ip_qos_token1] = ACTIONS(641), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(641), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(641), + [aux_sym_kex_algorithms_token1] = ACTIONS(641), + [aux_sym_known_hosts_command_token1] = ACTIONS(641), + [aux_sym_local_command_token1] = ACTIONS(641), + [aux_sym_local_forward_token1] = ACTIONS(641), + [aux_sym_log_level_token1] = ACTIONS(641), + [aux_sym_log_verbose_token1] = ACTIONS(641), + [aux_sym_macs_token1] = ACTIONS(641), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(641), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(641), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(641), + [aux_sym_password_authentication_token1] = ACTIONS(641), + [aux_sym_permit_local_command_token1] = ACTIONS(641), + [aux_sym_permit_remote_open_token1] = ACTIONS(641), + [aux_sym_pkcs11_provider_token1] = ACTIONS(641), + [aux_sym_port_token1] = ACTIONS(641), + [aux_sym_preferred_authentications_token1] = ACTIONS(641), + [aux_sym_protocol_token1] = ACTIONS(641), + [aux_sym_proxy_command_token1] = ACTIONS(641), + [aux_sym_proxy_jump_token1] = ACTIONS(641), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(641), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(641), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(641), + [aux_sym_pubkey_authentication_token1] = ACTIONS(641), + [aux_sym_rekey_limit_token1] = ACTIONS(641), + [aux_sym_remote_command_token1] = ACTIONS(641), + [aux_sym_remote_forward_token1] = ACTIONS(641), + [aux_sym_request_tty_token1] = ACTIONS(641), + [aux_sym_required_rsa_size_token1] = ACTIONS(641), + [aux_sym_revoked_host_keys_token1] = ACTIONS(641), + [aux_sym_security_key_provider_token1] = ACTIONS(641), + [aux_sym_send_env_token1] = ACTIONS(641), + [aux_sym_server_alive_count_max_token1] = ACTIONS(641), + [aux_sym_server_alive_interval_token1] = ACTIONS(641), + [aux_sym_session_type_token1] = ACTIONS(641), + [aux_sym_set_env_token1] = ACTIONS(641), + [aux_sym_stdin_null_token1] = ACTIONS(641), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(641), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(641), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(641), + [aux_sym_syslog_facility_token1] = ACTIONS(641), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(641), + [aux_sym_keep_alive_token1] = ACTIONS(641), + [aux_sym_tag_token1] = ACTIONS(641), + [aux_sym_tunnel_token1] = ACTIONS(643), + [aux_sym_tunnel_device_token1] = ACTIONS(641), + [aux_sym_update_host_keys_token1] = ACTIONS(641), + [aux_sym_use_keychain_token1] = ACTIONS(641), + [aux_sym_use_roaming_token1] = ACTIONS(641), + [aux_sym_user_token1] = ACTIONS(643), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(641), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(641), + [aux_sym_visual_host_key_token1] = ACTIONS(641), + [aux_sym_xauth_location_token1] = ACTIONS(641), }, [14] = { - [ts_builtin_sym_end] = ACTIONS(642), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(644), - [anon_sym_DQUOTE] = ACTIONS(646), - [aux_sym_match_token1] = ACTIONS(642), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(642), - [aux_sym_address_family_token1] = ACTIONS(642), - [aux_sym_batch_mode_token1] = ACTIONS(642), - [aux_sym_bind_address_token1] = ACTIONS(642), - [aux_sym_bind_interface_token1] = ACTIONS(642), - [aux_sym_canonical_domains_token1] = ACTIONS(642), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(642), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(642), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(642), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(642), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(642), - [aux_sym_certificate_file_token1] = ACTIONS(642), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(642), - [aux_sym_channel_timeout_token1] = ACTIONS(642), - [aux_sym_check_host_ip_token1] = ACTIONS(642), - [aux_sym_ciphers_token1] = ACTIONS(642), - [aux_sym_cipher_token1] = ACTIONS(644), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(642), - [aux_sym_compression_token1] = ACTIONS(642), - [aux_sym_connection_attempts_token1] = ACTIONS(642), - [aux_sym_connect_timeout_token1] = ACTIONS(642), - [aux_sym_control_master_token1] = ACTIONS(642), - [aux_sym_control_path_token1] = ACTIONS(642), - [aux_sym_control_persist_token1] = ACTIONS(642), - [aux_sym_dynamic_forward_token1] = ACTIONS(642), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(642), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(642), - [aux_sym_escape_char_token1] = ACTIONS(642), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(642), - [aux_sym_fingerprint_hash_token1] = ACTIONS(642), - [aux_sym_fork_after_authentication_token1] = ACTIONS(642), - [aux_sym_forward_agent_token1] = ACTIONS(642), - [aux_sym_forward_x11_token1] = ACTIONS(644), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(642), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(642), - [aux_sym_gateway_ports_token1] = ACTIONS(642), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(642), - [aux_sym_gssapi_authentication_token1] = ACTIONS(642), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(642), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(642), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(642), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(642), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(642), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(642), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(642), - [aux_sym_hash_known_hosts_token1] = ACTIONS(642), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(642), - [aux_sym_hostbased_authentication_token1] = ACTIONS(642), - [aux_sym_host_key_algorithms_token1] = ACTIONS(642), - [aux_sym_host_key_alias_token1] = ACTIONS(642), - [aux_sym_hostname_token1] = ACTIONS(642), - [aux_sym_identities_only_token1] = ACTIONS(642), - [aux_sym_identity_agent_token1] = ACTIONS(642), - [aux_sym_identity_file_token1] = ACTIONS(642), - [aux_sym_ignore_unknown_token1] = ACTIONS(642), - [aux_sym_include_token1] = ACTIONS(642), - [aux_sym_ip_qos_token1] = ACTIONS(642), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(642), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(642), - [aux_sym_kex_algorithms_token1] = ACTIONS(642), - [aux_sym_known_hosts_command_token1] = ACTIONS(642), - [aux_sym_local_command_token1] = ACTIONS(642), - [aux_sym_local_forward_token1] = ACTIONS(642), - [aux_sym_log_level_token1] = ACTIONS(642), - [aux_sym_log_verbose_token1] = ACTIONS(642), - [aux_sym_macs_token1] = ACTIONS(642), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(642), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(642), - [aux_sym_password_authentication_token1] = ACTIONS(642), - [aux_sym_permit_local_command_token1] = ACTIONS(642), - [aux_sym_permit_remote_open_token1] = ACTIONS(642), - [aux_sym_pkcs11_provider_token1] = ACTIONS(642), - [aux_sym_port_token1] = ACTIONS(642), - [aux_sym_preferred_authentications_token1] = ACTIONS(642), - [aux_sym_protocol_token1] = ACTIONS(642), - [aux_sym_proxy_command_token1] = ACTIONS(642), - [aux_sym_proxy_jump_token1] = ACTIONS(642), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(642), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(642), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(642), - [aux_sym_pubkey_authentication_token1] = ACTIONS(642), - [aux_sym_rekey_limit_token1] = ACTIONS(642), - [aux_sym_remote_command_token1] = ACTIONS(642), - [aux_sym_remote_forward_token1] = ACTIONS(642), - [aux_sym_request_tty_token1] = ACTIONS(642), - [aux_sym_required_rsa_size_token1] = ACTIONS(642), - [aux_sym_revoked_host_keys_token1] = ACTIONS(642), - [aux_sym_security_key_provider_token1] = ACTIONS(642), - [aux_sym_send_env_token1] = ACTIONS(642), - [aux_sym_server_alive_count_max_token1] = ACTIONS(642), - [aux_sym_server_alive_interval_token1] = ACTIONS(642), - [aux_sym_session_type_token1] = ACTIONS(642), - [aux_sym_set_env_token1] = ACTIONS(642), - [aux_sym_stdin_null_token1] = ACTIONS(642), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(642), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(642), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(642), - [aux_sym_syslog_facility_token1] = ACTIONS(642), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(642), - [aux_sym_keep_alive_token1] = ACTIONS(642), - [aux_sym_tag_token1] = ACTIONS(642), - [aux_sym_tunnel_token1] = ACTIONS(644), - [aux_sym_tunnel_device_token1] = ACTIONS(642), - [aux_sym_update_host_keys_token1] = ACTIONS(642), - [aux_sym_use_keychain_token1] = ACTIONS(642), - [aux_sym_use_roaming_token1] = ACTIONS(642), - [aux_sym_user_token1] = ACTIONS(644), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(642), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(642), - [aux_sym_visual_host_key_token1] = ACTIONS(642), - [aux_sym_xauth_location_token1] = ACTIONS(642), + [ts_builtin_sym_end] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(649), + [anon_sym_DQUOTE] = ACTIONS(651), + [aux_sym_match_token1] = ACTIONS(647), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(647), + [aux_sym_address_family_token1] = ACTIONS(647), + [aux_sym_batch_mode_token1] = ACTIONS(647), + [aux_sym_bind_address_token1] = ACTIONS(647), + [aux_sym_bind_interface_token1] = ACTIONS(647), + [aux_sym_canonical_domains_token1] = ACTIONS(647), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(647), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(647), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(647), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(647), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(647), + [aux_sym_certificate_file_token1] = ACTIONS(647), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(647), + [aux_sym_channel_timeout_token1] = ACTIONS(647), + [aux_sym_check_host_ip_token1] = ACTIONS(647), + [aux_sym_ciphers_token1] = ACTIONS(647), + [aux_sym_cipher_token1] = ACTIONS(649), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(647), + [aux_sym_compression_token1] = ACTIONS(647), + [aux_sym_connection_attempts_token1] = ACTIONS(647), + [aux_sym_connect_timeout_token1] = ACTIONS(647), + [aux_sym_control_master_token1] = ACTIONS(647), + [aux_sym_control_path_token1] = ACTIONS(647), + [aux_sym_control_persist_token1] = ACTIONS(647), + [aux_sym_dynamic_forward_token1] = ACTIONS(647), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(647), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(647), + [aux_sym_escape_char_token1] = ACTIONS(647), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(647), + [aux_sym_fingerprint_hash_token1] = ACTIONS(647), + [aux_sym_fork_after_authentication_token1] = ACTIONS(647), + [aux_sym_forward_agent_token1] = ACTIONS(647), + [aux_sym_forward_x11_token1] = ACTIONS(649), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(647), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(647), + [aux_sym_gateway_ports_token1] = ACTIONS(647), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(647), + [aux_sym_gssapi_authentication_token1] = ACTIONS(647), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(647), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(647), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(647), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(647), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(647), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(647), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(647), + [aux_sym_hash_known_hosts_token1] = ACTIONS(647), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(647), + [aux_sym_hostbased_authentication_token1] = ACTIONS(647), + [aux_sym_host_key_algorithms_token1] = ACTIONS(647), + [aux_sym_host_key_alias_token1] = ACTIONS(647), + [aux_sym_hostname_token1] = ACTIONS(647), + [aux_sym_identities_only_token1] = ACTIONS(647), + [aux_sym_identity_agent_token1] = ACTIONS(647), + [aux_sym_identity_file_token1] = ACTIONS(647), + [aux_sym_ignore_unknown_token1] = ACTIONS(647), + [aux_sym_include_token1] = ACTIONS(647), + [aux_sym_ip_qos_token1] = ACTIONS(647), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(647), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(647), + [aux_sym_kex_algorithms_token1] = ACTIONS(647), + [aux_sym_known_hosts_command_token1] = ACTIONS(647), + [aux_sym_local_command_token1] = ACTIONS(647), + [aux_sym_local_forward_token1] = ACTIONS(647), + [aux_sym_log_level_token1] = ACTIONS(647), + [aux_sym_log_verbose_token1] = ACTIONS(647), + [aux_sym_macs_token1] = ACTIONS(647), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(647), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(647), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(647), + [aux_sym_password_authentication_token1] = ACTIONS(647), + [aux_sym_permit_local_command_token1] = ACTIONS(647), + [aux_sym_permit_remote_open_token1] = ACTIONS(647), + [aux_sym_pkcs11_provider_token1] = ACTIONS(647), + [aux_sym_port_token1] = ACTIONS(647), + [aux_sym_preferred_authentications_token1] = ACTIONS(647), + [aux_sym_protocol_token1] = ACTIONS(647), + [aux_sym_proxy_command_token1] = ACTIONS(647), + [aux_sym_proxy_jump_token1] = ACTIONS(647), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(647), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(647), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(647), + [aux_sym_pubkey_authentication_token1] = ACTIONS(647), + [aux_sym_rekey_limit_token1] = ACTIONS(647), + [aux_sym_remote_command_token1] = ACTIONS(647), + [aux_sym_remote_forward_token1] = ACTIONS(647), + [aux_sym_request_tty_token1] = ACTIONS(647), + [aux_sym_required_rsa_size_token1] = ACTIONS(647), + [aux_sym_revoked_host_keys_token1] = ACTIONS(647), + [aux_sym_security_key_provider_token1] = ACTIONS(647), + [aux_sym_send_env_token1] = ACTIONS(647), + [aux_sym_server_alive_count_max_token1] = ACTIONS(647), + [aux_sym_server_alive_interval_token1] = ACTIONS(647), + [aux_sym_session_type_token1] = ACTIONS(647), + [aux_sym_set_env_token1] = ACTIONS(647), + [aux_sym_stdin_null_token1] = ACTIONS(647), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(647), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(647), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(647), + [aux_sym_syslog_facility_token1] = ACTIONS(647), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(647), + [aux_sym_keep_alive_token1] = ACTIONS(647), + [aux_sym_tag_token1] = ACTIONS(647), + [aux_sym_tunnel_token1] = ACTIONS(649), + [aux_sym_tunnel_device_token1] = ACTIONS(647), + [aux_sym_update_host_keys_token1] = ACTIONS(647), + [aux_sym_use_keychain_token1] = ACTIONS(647), + [aux_sym_use_roaming_token1] = ACTIONS(647), + [aux_sym_user_token1] = ACTIONS(649), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(647), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(647), + [aux_sym_visual_host_key_token1] = ACTIONS(647), + [aux_sym_xauth_location_token1] = ACTIONS(647), }, [15] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(650), - [anon_sym_DQUOTE] = ACTIONS(652), - [aux_sym_match_token1] = ACTIONS(648), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(648), - [aux_sym_address_family_token1] = ACTIONS(648), - [aux_sym_batch_mode_token1] = ACTIONS(648), - [aux_sym_bind_address_token1] = ACTIONS(648), - [aux_sym_bind_interface_token1] = ACTIONS(648), - [aux_sym_canonical_domains_token1] = ACTIONS(648), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(648), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(648), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(648), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(648), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(648), - [aux_sym_certificate_file_token1] = ACTIONS(648), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(648), - [aux_sym_channel_timeout_token1] = ACTIONS(648), - [aux_sym_check_host_ip_token1] = ACTIONS(648), - [aux_sym_ciphers_token1] = ACTIONS(648), - [aux_sym_cipher_token1] = ACTIONS(650), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(648), - [aux_sym_compression_token1] = ACTIONS(648), - [aux_sym_connection_attempts_token1] = ACTIONS(648), - [aux_sym_connect_timeout_token1] = ACTIONS(648), - [aux_sym_control_master_token1] = ACTIONS(648), - [aux_sym_control_path_token1] = ACTIONS(648), - [aux_sym_control_persist_token1] = ACTIONS(648), - [aux_sym_dynamic_forward_token1] = ACTIONS(648), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(648), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(648), - [aux_sym_escape_char_token1] = ACTIONS(648), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(648), - [aux_sym_fingerprint_hash_token1] = ACTIONS(648), - [aux_sym_fork_after_authentication_token1] = ACTIONS(648), - [aux_sym_forward_agent_token1] = ACTIONS(648), - [aux_sym_forward_x11_token1] = ACTIONS(650), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(648), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(648), - [aux_sym_gateway_ports_token1] = ACTIONS(648), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(648), - [aux_sym_gssapi_authentication_token1] = ACTIONS(648), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(648), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(648), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(648), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(648), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(648), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(648), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(648), - [aux_sym_hash_known_hosts_token1] = ACTIONS(648), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(648), - [aux_sym_hostbased_authentication_token1] = ACTIONS(648), - [aux_sym_host_key_algorithms_token1] = ACTIONS(648), - [aux_sym_host_key_alias_token1] = ACTIONS(648), - [aux_sym_hostname_token1] = ACTIONS(648), - [aux_sym_identities_only_token1] = ACTIONS(648), - [aux_sym_identity_agent_token1] = ACTIONS(648), - [aux_sym_identity_file_token1] = ACTIONS(648), - [aux_sym_ignore_unknown_token1] = ACTIONS(648), - [aux_sym_include_token1] = ACTIONS(648), - [aux_sym_ip_qos_token1] = ACTIONS(648), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(648), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(648), - [aux_sym_kex_algorithms_token1] = ACTIONS(648), - [aux_sym_known_hosts_command_token1] = ACTIONS(648), - [aux_sym_local_command_token1] = ACTIONS(648), - [aux_sym_local_forward_token1] = ACTIONS(648), - [aux_sym_log_level_token1] = ACTIONS(648), - [aux_sym_log_verbose_token1] = ACTIONS(648), - [aux_sym_macs_token1] = ACTIONS(648), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(648), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(648), - [aux_sym_password_authentication_token1] = ACTIONS(648), - [aux_sym_permit_local_command_token1] = ACTIONS(648), - [aux_sym_permit_remote_open_token1] = ACTIONS(648), - [aux_sym_pkcs11_provider_token1] = ACTIONS(648), - [aux_sym_port_token1] = ACTIONS(648), - [aux_sym_preferred_authentications_token1] = ACTIONS(648), - [aux_sym_protocol_token1] = ACTIONS(648), - [aux_sym_proxy_command_token1] = ACTIONS(648), - [aux_sym_proxy_jump_token1] = ACTIONS(648), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(648), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(648), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(648), - [aux_sym_pubkey_authentication_token1] = ACTIONS(648), - [aux_sym_rekey_limit_token1] = ACTIONS(648), - [aux_sym_remote_command_token1] = ACTIONS(648), - [aux_sym_remote_forward_token1] = ACTIONS(648), - [aux_sym_request_tty_token1] = ACTIONS(648), - [aux_sym_required_rsa_size_token1] = ACTIONS(648), - [aux_sym_revoked_host_keys_token1] = ACTIONS(648), - [aux_sym_security_key_provider_token1] = ACTIONS(648), - [aux_sym_send_env_token1] = ACTIONS(648), - [aux_sym_server_alive_count_max_token1] = ACTIONS(648), - [aux_sym_server_alive_interval_token1] = ACTIONS(648), - [aux_sym_session_type_token1] = ACTIONS(648), - [aux_sym_set_env_token1] = ACTIONS(648), - [aux_sym_stdin_null_token1] = ACTIONS(648), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(648), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(648), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(648), - [aux_sym_syslog_facility_token1] = ACTIONS(648), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(648), - [aux_sym_keep_alive_token1] = ACTIONS(648), - [aux_sym_tag_token1] = ACTIONS(648), - [aux_sym_tunnel_token1] = ACTIONS(650), - [aux_sym_tunnel_device_token1] = ACTIONS(648), - [aux_sym_update_host_keys_token1] = ACTIONS(648), - [aux_sym_use_keychain_token1] = ACTIONS(648), - [aux_sym_use_roaming_token1] = ACTIONS(648), - [aux_sym_user_token1] = ACTIONS(650), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(648), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(648), - [aux_sym_visual_host_key_token1] = ACTIONS(648), - [aux_sym_xauth_location_token1] = ACTIONS(648), + [ts_builtin_sym_end] = ACTIONS(653), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(655), + [anon_sym_DQUOTE] = ACTIONS(657), + [aux_sym_match_token1] = ACTIONS(653), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(653), + [aux_sym_address_family_token1] = ACTIONS(653), + [aux_sym_batch_mode_token1] = ACTIONS(653), + [aux_sym_bind_address_token1] = ACTIONS(653), + [aux_sym_bind_interface_token1] = ACTIONS(653), + [aux_sym_canonical_domains_token1] = ACTIONS(653), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(653), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(653), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(653), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(653), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(653), + [aux_sym_certificate_file_token1] = ACTIONS(653), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(653), + [aux_sym_channel_timeout_token1] = ACTIONS(653), + [aux_sym_check_host_ip_token1] = ACTIONS(653), + [aux_sym_ciphers_token1] = ACTIONS(653), + [aux_sym_cipher_token1] = ACTIONS(655), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(653), + [aux_sym_compression_token1] = ACTIONS(653), + [aux_sym_connection_attempts_token1] = ACTIONS(653), + [aux_sym_connect_timeout_token1] = ACTIONS(653), + [aux_sym_control_master_token1] = ACTIONS(653), + [aux_sym_control_path_token1] = ACTIONS(653), + [aux_sym_control_persist_token1] = ACTIONS(653), + [aux_sym_dynamic_forward_token1] = ACTIONS(653), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(653), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(653), + [aux_sym_escape_char_token1] = ACTIONS(653), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(653), + [aux_sym_fingerprint_hash_token1] = ACTIONS(653), + [aux_sym_fork_after_authentication_token1] = ACTIONS(653), + [aux_sym_forward_agent_token1] = ACTIONS(653), + [aux_sym_forward_x11_token1] = ACTIONS(655), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(653), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(653), + [aux_sym_gateway_ports_token1] = ACTIONS(653), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(653), + [aux_sym_gssapi_authentication_token1] = ACTIONS(653), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(653), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(653), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(653), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(653), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(653), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(653), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(653), + [aux_sym_hash_known_hosts_token1] = ACTIONS(653), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(653), + [aux_sym_hostbased_authentication_token1] = ACTIONS(653), + [aux_sym_host_key_algorithms_token1] = ACTIONS(653), + [aux_sym_host_key_alias_token1] = ACTIONS(653), + [aux_sym_hostname_token1] = ACTIONS(653), + [aux_sym_identities_only_token1] = ACTIONS(653), + [aux_sym_identity_agent_token1] = ACTIONS(653), + [aux_sym_identity_file_token1] = ACTIONS(653), + [aux_sym_ignore_unknown_token1] = ACTIONS(653), + [aux_sym_include_token1] = ACTIONS(653), + [aux_sym_ip_qos_token1] = ACTIONS(653), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(653), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(653), + [aux_sym_kex_algorithms_token1] = ACTIONS(653), + [aux_sym_known_hosts_command_token1] = ACTIONS(653), + [aux_sym_local_command_token1] = ACTIONS(653), + [aux_sym_local_forward_token1] = ACTIONS(653), + [aux_sym_log_level_token1] = ACTIONS(653), + [aux_sym_log_verbose_token1] = ACTIONS(653), + [aux_sym_macs_token1] = ACTIONS(653), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(653), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(653), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(653), + [aux_sym_password_authentication_token1] = ACTIONS(653), + [aux_sym_permit_local_command_token1] = ACTIONS(653), + [aux_sym_permit_remote_open_token1] = ACTIONS(653), + [aux_sym_pkcs11_provider_token1] = ACTIONS(653), + [aux_sym_port_token1] = ACTIONS(653), + [aux_sym_preferred_authentications_token1] = ACTIONS(653), + [aux_sym_protocol_token1] = ACTIONS(653), + [aux_sym_proxy_command_token1] = ACTIONS(653), + [aux_sym_proxy_jump_token1] = ACTIONS(653), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(653), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(653), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(653), + [aux_sym_pubkey_authentication_token1] = ACTIONS(653), + [aux_sym_rekey_limit_token1] = ACTIONS(653), + [aux_sym_remote_command_token1] = ACTIONS(653), + [aux_sym_remote_forward_token1] = ACTIONS(653), + [aux_sym_request_tty_token1] = ACTIONS(653), + [aux_sym_required_rsa_size_token1] = ACTIONS(653), + [aux_sym_revoked_host_keys_token1] = ACTIONS(653), + [aux_sym_security_key_provider_token1] = ACTIONS(653), + [aux_sym_send_env_token1] = ACTIONS(653), + [aux_sym_server_alive_count_max_token1] = ACTIONS(653), + [aux_sym_server_alive_interval_token1] = ACTIONS(653), + [aux_sym_session_type_token1] = ACTIONS(653), + [aux_sym_set_env_token1] = ACTIONS(653), + [aux_sym_stdin_null_token1] = ACTIONS(653), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(653), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(653), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(653), + [aux_sym_syslog_facility_token1] = ACTIONS(653), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(653), + [aux_sym_keep_alive_token1] = ACTIONS(653), + [aux_sym_tag_token1] = ACTIONS(653), + [aux_sym_tunnel_token1] = ACTIONS(655), + [aux_sym_tunnel_device_token1] = ACTIONS(653), + [aux_sym_update_host_keys_token1] = ACTIONS(653), + [aux_sym_use_keychain_token1] = ACTIONS(653), + [aux_sym_use_roaming_token1] = ACTIONS(653), + [aux_sym_user_token1] = ACTIONS(655), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(653), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(653), + [aux_sym_visual_host_key_token1] = ACTIONS(653), + [aux_sym_xauth_location_token1] = ACTIONS(653), }, [16] = { - [ts_builtin_sym_end] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(656), - [anon_sym_DQUOTE] = ACTIONS(658), - [aux_sym_match_token1] = ACTIONS(654), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(654), - [aux_sym_address_family_token1] = ACTIONS(654), - [aux_sym_batch_mode_token1] = ACTIONS(654), - [aux_sym_bind_address_token1] = ACTIONS(654), - [aux_sym_bind_interface_token1] = ACTIONS(654), - [aux_sym_canonical_domains_token1] = ACTIONS(654), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(654), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(654), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(654), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(654), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(654), - [aux_sym_certificate_file_token1] = ACTIONS(654), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(654), - [aux_sym_channel_timeout_token1] = ACTIONS(654), - [aux_sym_check_host_ip_token1] = ACTIONS(654), - [aux_sym_ciphers_token1] = ACTIONS(654), - [aux_sym_cipher_token1] = ACTIONS(656), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(654), - [aux_sym_compression_token1] = ACTIONS(654), - [aux_sym_connection_attempts_token1] = ACTIONS(654), - [aux_sym_connect_timeout_token1] = ACTIONS(654), - [aux_sym_control_master_token1] = ACTIONS(654), - [aux_sym_control_path_token1] = ACTIONS(654), - [aux_sym_control_persist_token1] = ACTIONS(654), - [aux_sym_dynamic_forward_token1] = ACTIONS(654), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(654), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(654), - [aux_sym_escape_char_token1] = ACTIONS(654), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(654), - [aux_sym_fingerprint_hash_token1] = ACTIONS(654), - [aux_sym_fork_after_authentication_token1] = ACTIONS(654), - [aux_sym_forward_agent_token1] = ACTIONS(654), - [aux_sym_forward_x11_token1] = ACTIONS(656), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(654), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(654), - [aux_sym_gateway_ports_token1] = ACTIONS(654), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(654), - [aux_sym_gssapi_authentication_token1] = ACTIONS(654), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(654), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(654), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(654), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(654), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(654), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(654), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(654), - [aux_sym_hash_known_hosts_token1] = ACTIONS(654), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(654), - [aux_sym_hostbased_authentication_token1] = ACTIONS(654), - [aux_sym_host_key_algorithms_token1] = ACTIONS(654), - [aux_sym_host_key_alias_token1] = ACTIONS(654), - [aux_sym_hostname_token1] = ACTIONS(654), - [aux_sym_identities_only_token1] = ACTIONS(654), - [aux_sym_identity_agent_token1] = ACTIONS(654), - [aux_sym_identity_file_token1] = ACTIONS(654), - [aux_sym_ignore_unknown_token1] = ACTIONS(654), - [aux_sym_include_token1] = ACTIONS(654), - [aux_sym_ip_qos_token1] = ACTIONS(654), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(654), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(654), - [aux_sym_kex_algorithms_token1] = ACTIONS(654), - [aux_sym_known_hosts_command_token1] = ACTIONS(654), - [aux_sym_local_command_token1] = ACTIONS(654), - [aux_sym_local_forward_token1] = ACTIONS(654), - [aux_sym_log_level_token1] = ACTIONS(654), - [aux_sym_log_verbose_token1] = ACTIONS(654), - [aux_sym_macs_token1] = ACTIONS(654), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(654), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(654), - [aux_sym_password_authentication_token1] = ACTIONS(654), - [aux_sym_permit_local_command_token1] = ACTIONS(654), - [aux_sym_permit_remote_open_token1] = ACTIONS(654), - [aux_sym_pkcs11_provider_token1] = ACTIONS(654), - [aux_sym_port_token1] = ACTIONS(654), - [aux_sym_preferred_authentications_token1] = ACTIONS(654), - [aux_sym_protocol_token1] = ACTIONS(654), - [aux_sym_proxy_command_token1] = ACTIONS(654), - [aux_sym_proxy_jump_token1] = ACTIONS(654), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(654), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(654), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(654), - [aux_sym_pubkey_authentication_token1] = ACTIONS(654), - [aux_sym_rekey_limit_token1] = ACTIONS(654), - [aux_sym_remote_command_token1] = ACTIONS(654), - [aux_sym_remote_forward_token1] = ACTIONS(654), - [aux_sym_request_tty_token1] = ACTIONS(654), - [aux_sym_required_rsa_size_token1] = ACTIONS(654), - [aux_sym_revoked_host_keys_token1] = ACTIONS(654), - [aux_sym_security_key_provider_token1] = ACTIONS(654), - [aux_sym_send_env_token1] = ACTIONS(654), - [aux_sym_server_alive_count_max_token1] = ACTIONS(654), - [aux_sym_server_alive_interval_token1] = ACTIONS(654), - [aux_sym_session_type_token1] = ACTIONS(654), - [aux_sym_set_env_token1] = ACTIONS(654), - [aux_sym_stdin_null_token1] = ACTIONS(654), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(654), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(654), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(654), - [aux_sym_syslog_facility_token1] = ACTIONS(654), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(654), - [aux_sym_keep_alive_token1] = ACTIONS(654), - [aux_sym_tag_token1] = ACTIONS(654), - [aux_sym_tunnel_token1] = ACTIONS(656), - [aux_sym_tunnel_device_token1] = ACTIONS(654), - [aux_sym_update_host_keys_token1] = ACTIONS(654), - [aux_sym_use_keychain_token1] = ACTIONS(654), - [aux_sym_use_roaming_token1] = ACTIONS(654), - [aux_sym_user_token1] = ACTIONS(656), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(654), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(654), - [aux_sym_visual_host_key_token1] = ACTIONS(654), - [aux_sym_xauth_location_token1] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(661), + [anon_sym_DQUOTE] = ACTIONS(663), + [aux_sym_match_token1] = ACTIONS(659), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(659), + [aux_sym_address_family_token1] = ACTIONS(659), + [aux_sym_batch_mode_token1] = ACTIONS(659), + [aux_sym_bind_address_token1] = ACTIONS(659), + [aux_sym_bind_interface_token1] = ACTIONS(659), + [aux_sym_canonical_domains_token1] = ACTIONS(659), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(659), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(659), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(659), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(659), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(659), + [aux_sym_certificate_file_token1] = ACTIONS(659), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(659), + [aux_sym_channel_timeout_token1] = ACTIONS(659), + [aux_sym_check_host_ip_token1] = ACTIONS(659), + [aux_sym_ciphers_token1] = ACTIONS(659), + [aux_sym_cipher_token1] = ACTIONS(661), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(659), + [aux_sym_compression_token1] = ACTIONS(659), + [aux_sym_connection_attempts_token1] = ACTIONS(659), + [aux_sym_connect_timeout_token1] = ACTIONS(659), + [aux_sym_control_master_token1] = ACTIONS(659), + [aux_sym_control_path_token1] = ACTIONS(659), + [aux_sym_control_persist_token1] = ACTIONS(659), + [aux_sym_dynamic_forward_token1] = ACTIONS(659), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(659), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(659), + [aux_sym_escape_char_token1] = ACTIONS(659), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(659), + [aux_sym_fingerprint_hash_token1] = ACTIONS(659), + [aux_sym_fork_after_authentication_token1] = ACTIONS(659), + [aux_sym_forward_agent_token1] = ACTIONS(659), + [aux_sym_forward_x11_token1] = ACTIONS(661), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(659), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(659), + [aux_sym_gateway_ports_token1] = ACTIONS(659), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(659), + [aux_sym_gssapi_authentication_token1] = ACTIONS(659), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(659), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(659), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(659), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(659), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(659), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(659), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(659), + [aux_sym_hash_known_hosts_token1] = ACTIONS(659), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(659), + [aux_sym_hostbased_authentication_token1] = ACTIONS(659), + [aux_sym_host_key_algorithms_token1] = ACTIONS(659), + [aux_sym_host_key_alias_token1] = ACTIONS(659), + [aux_sym_hostname_token1] = ACTIONS(659), + [aux_sym_identities_only_token1] = ACTIONS(659), + [aux_sym_identity_agent_token1] = ACTIONS(659), + [aux_sym_identity_file_token1] = ACTIONS(659), + [aux_sym_ignore_unknown_token1] = ACTIONS(659), + [aux_sym_include_token1] = ACTIONS(659), + [aux_sym_ip_qos_token1] = ACTIONS(659), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(659), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(659), + [aux_sym_kex_algorithms_token1] = ACTIONS(659), + [aux_sym_known_hosts_command_token1] = ACTIONS(659), + [aux_sym_local_command_token1] = ACTIONS(659), + [aux_sym_local_forward_token1] = ACTIONS(659), + [aux_sym_log_level_token1] = ACTIONS(659), + [aux_sym_log_verbose_token1] = ACTIONS(659), + [aux_sym_macs_token1] = ACTIONS(659), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(659), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(659), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(659), + [aux_sym_password_authentication_token1] = ACTIONS(659), + [aux_sym_permit_local_command_token1] = ACTIONS(659), + [aux_sym_permit_remote_open_token1] = ACTIONS(659), + [aux_sym_pkcs11_provider_token1] = ACTIONS(659), + [aux_sym_port_token1] = ACTIONS(659), + [aux_sym_preferred_authentications_token1] = ACTIONS(659), + [aux_sym_protocol_token1] = ACTIONS(659), + [aux_sym_proxy_command_token1] = ACTIONS(659), + [aux_sym_proxy_jump_token1] = ACTIONS(659), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(659), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(659), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(659), + [aux_sym_pubkey_authentication_token1] = ACTIONS(659), + [aux_sym_rekey_limit_token1] = ACTIONS(659), + [aux_sym_remote_command_token1] = ACTIONS(659), + [aux_sym_remote_forward_token1] = ACTIONS(659), + [aux_sym_request_tty_token1] = ACTIONS(659), + [aux_sym_required_rsa_size_token1] = ACTIONS(659), + [aux_sym_revoked_host_keys_token1] = ACTIONS(659), + [aux_sym_security_key_provider_token1] = ACTIONS(659), + [aux_sym_send_env_token1] = ACTIONS(659), + [aux_sym_server_alive_count_max_token1] = ACTIONS(659), + [aux_sym_server_alive_interval_token1] = ACTIONS(659), + [aux_sym_session_type_token1] = ACTIONS(659), + [aux_sym_set_env_token1] = ACTIONS(659), + [aux_sym_stdin_null_token1] = ACTIONS(659), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(659), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(659), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(659), + [aux_sym_syslog_facility_token1] = ACTIONS(659), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(659), + [aux_sym_keep_alive_token1] = ACTIONS(659), + [aux_sym_tag_token1] = ACTIONS(659), + [aux_sym_tunnel_token1] = ACTIONS(661), + [aux_sym_tunnel_device_token1] = ACTIONS(659), + [aux_sym_update_host_keys_token1] = ACTIONS(659), + [aux_sym_use_keychain_token1] = ACTIONS(659), + [aux_sym_use_roaming_token1] = ACTIONS(659), + [aux_sym_user_token1] = ACTIONS(661), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(659), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(659), + [aux_sym_visual_host_key_token1] = ACTIONS(659), + [aux_sym_xauth_location_token1] = ACTIONS(659), }, [17] = { - [ts_builtin_sym_end] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(662), - [anon_sym_DQUOTE] = ACTIONS(664), - [aux_sym_match_token1] = ACTIONS(660), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(660), - [aux_sym_address_family_token1] = ACTIONS(660), - [aux_sym_batch_mode_token1] = ACTIONS(660), - [aux_sym_bind_address_token1] = ACTIONS(660), - [aux_sym_bind_interface_token1] = ACTIONS(660), - [aux_sym_canonical_domains_token1] = ACTIONS(660), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(660), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(660), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(660), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(660), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(660), - [aux_sym_certificate_file_token1] = ACTIONS(660), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(660), - [aux_sym_channel_timeout_token1] = ACTIONS(660), - [aux_sym_check_host_ip_token1] = ACTIONS(660), - [aux_sym_ciphers_token1] = ACTIONS(660), - [aux_sym_cipher_token1] = ACTIONS(662), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(660), - [aux_sym_compression_token1] = ACTIONS(660), - [aux_sym_connection_attempts_token1] = ACTIONS(660), - [aux_sym_connect_timeout_token1] = ACTIONS(660), - [aux_sym_control_master_token1] = ACTIONS(660), - [aux_sym_control_path_token1] = ACTIONS(660), - [aux_sym_control_persist_token1] = ACTIONS(660), - [aux_sym_dynamic_forward_token1] = ACTIONS(660), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(660), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(660), - [aux_sym_escape_char_token1] = ACTIONS(660), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(660), - [aux_sym_fingerprint_hash_token1] = ACTIONS(660), - [aux_sym_fork_after_authentication_token1] = ACTIONS(660), - [aux_sym_forward_agent_token1] = ACTIONS(660), - [aux_sym_forward_x11_token1] = ACTIONS(662), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(660), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(660), - [aux_sym_gateway_ports_token1] = ACTIONS(660), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(660), - [aux_sym_gssapi_authentication_token1] = ACTIONS(660), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(660), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(660), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(660), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(660), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(660), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(660), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(660), - [aux_sym_hash_known_hosts_token1] = ACTIONS(660), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(660), - [aux_sym_hostbased_authentication_token1] = ACTIONS(660), - [aux_sym_host_key_algorithms_token1] = ACTIONS(660), - [aux_sym_host_key_alias_token1] = ACTIONS(660), - [aux_sym_hostname_token1] = ACTIONS(660), - [aux_sym_identities_only_token1] = ACTIONS(660), - [aux_sym_identity_agent_token1] = ACTIONS(660), - [aux_sym_identity_file_token1] = ACTIONS(660), - [aux_sym_ignore_unknown_token1] = ACTIONS(660), - [aux_sym_include_token1] = ACTIONS(660), - [aux_sym_ip_qos_token1] = ACTIONS(660), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(660), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(660), - [aux_sym_kex_algorithms_token1] = ACTIONS(660), - [aux_sym_known_hosts_command_token1] = ACTIONS(660), - [aux_sym_local_command_token1] = ACTIONS(660), - [aux_sym_local_forward_token1] = ACTIONS(660), - [aux_sym_log_level_token1] = ACTIONS(660), - [aux_sym_log_verbose_token1] = ACTIONS(660), - [aux_sym_macs_token1] = ACTIONS(660), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(660), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(660), - [aux_sym_password_authentication_token1] = ACTIONS(660), - [aux_sym_permit_local_command_token1] = ACTIONS(660), - [aux_sym_permit_remote_open_token1] = ACTIONS(660), - [aux_sym_pkcs11_provider_token1] = ACTIONS(660), - [aux_sym_port_token1] = ACTIONS(660), - [aux_sym_preferred_authentications_token1] = ACTIONS(660), - [aux_sym_protocol_token1] = ACTIONS(660), - [aux_sym_proxy_command_token1] = ACTIONS(660), - [aux_sym_proxy_jump_token1] = ACTIONS(660), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(660), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(660), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(660), - [aux_sym_pubkey_authentication_token1] = ACTIONS(660), - [aux_sym_rekey_limit_token1] = ACTIONS(660), - [aux_sym_remote_command_token1] = ACTIONS(660), - [aux_sym_remote_forward_token1] = ACTIONS(660), - [aux_sym_request_tty_token1] = ACTIONS(660), - [aux_sym_required_rsa_size_token1] = ACTIONS(660), - [aux_sym_revoked_host_keys_token1] = ACTIONS(660), - [aux_sym_security_key_provider_token1] = ACTIONS(660), - [aux_sym_send_env_token1] = ACTIONS(660), - [aux_sym_server_alive_count_max_token1] = ACTIONS(660), - [aux_sym_server_alive_interval_token1] = ACTIONS(660), - [aux_sym_session_type_token1] = ACTIONS(660), - [aux_sym_set_env_token1] = ACTIONS(660), - [aux_sym_stdin_null_token1] = ACTIONS(660), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(660), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(660), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(660), - [aux_sym_syslog_facility_token1] = ACTIONS(660), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(660), - [aux_sym_keep_alive_token1] = ACTIONS(660), - [aux_sym_tag_token1] = ACTIONS(660), - [aux_sym_tunnel_token1] = ACTIONS(662), - [aux_sym_tunnel_device_token1] = ACTIONS(660), - [aux_sym_update_host_keys_token1] = ACTIONS(660), - [aux_sym_use_keychain_token1] = ACTIONS(660), - [aux_sym_use_roaming_token1] = ACTIONS(660), - [aux_sym_user_token1] = ACTIONS(662), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(660), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(660), - [aux_sym_visual_host_key_token1] = ACTIONS(660), - [aux_sym_xauth_location_token1] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(665), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(669), + [aux_sym_match_token1] = ACTIONS(665), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(665), + [aux_sym_address_family_token1] = ACTIONS(665), + [aux_sym_batch_mode_token1] = ACTIONS(665), + [aux_sym_bind_address_token1] = ACTIONS(665), + [aux_sym_bind_interface_token1] = ACTIONS(665), + [aux_sym_canonical_domains_token1] = ACTIONS(665), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(665), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(665), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(665), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(665), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(665), + [aux_sym_certificate_file_token1] = ACTIONS(665), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(665), + [aux_sym_channel_timeout_token1] = ACTIONS(665), + [aux_sym_check_host_ip_token1] = ACTIONS(665), + [aux_sym_ciphers_token1] = ACTIONS(665), + [aux_sym_cipher_token1] = ACTIONS(667), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(665), + [aux_sym_compression_token1] = ACTIONS(665), + [aux_sym_connection_attempts_token1] = ACTIONS(665), + [aux_sym_connect_timeout_token1] = ACTIONS(665), + [aux_sym_control_master_token1] = ACTIONS(665), + [aux_sym_control_path_token1] = ACTIONS(665), + [aux_sym_control_persist_token1] = ACTIONS(665), + [aux_sym_dynamic_forward_token1] = ACTIONS(665), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(665), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(665), + [aux_sym_escape_char_token1] = ACTIONS(665), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(665), + [aux_sym_fingerprint_hash_token1] = ACTIONS(665), + [aux_sym_fork_after_authentication_token1] = ACTIONS(665), + [aux_sym_forward_agent_token1] = ACTIONS(665), + [aux_sym_forward_x11_token1] = ACTIONS(667), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(665), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(665), + [aux_sym_gateway_ports_token1] = ACTIONS(665), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(665), + [aux_sym_gssapi_authentication_token1] = ACTIONS(665), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(665), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(665), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(665), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(665), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(665), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(665), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(665), + [aux_sym_hash_known_hosts_token1] = ACTIONS(665), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(665), + [aux_sym_hostbased_authentication_token1] = ACTIONS(665), + [aux_sym_host_key_algorithms_token1] = ACTIONS(665), + [aux_sym_host_key_alias_token1] = ACTIONS(665), + [aux_sym_hostname_token1] = ACTIONS(665), + [aux_sym_identities_only_token1] = ACTIONS(665), + [aux_sym_identity_agent_token1] = ACTIONS(665), + [aux_sym_identity_file_token1] = ACTIONS(665), + [aux_sym_ignore_unknown_token1] = ACTIONS(665), + [aux_sym_include_token1] = ACTIONS(665), + [aux_sym_ip_qos_token1] = ACTIONS(665), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(665), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(665), + [aux_sym_kex_algorithms_token1] = ACTIONS(665), + [aux_sym_known_hosts_command_token1] = ACTIONS(665), + [aux_sym_local_command_token1] = ACTIONS(665), + [aux_sym_local_forward_token1] = ACTIONS(665), + [aux_sym_log_level_token1] = ACTIONS(665), + [aux_sym_log_verbose_token1] = ACTIONS(665), + [aux_sym_macs_token1] = ACTIONS(665), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(665), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(665), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(665), + [aux_sym_password_authentication_token1] = ACTIONS(665), + [aux_sym_permit_local_command_token1] = ACTIONS(665), + [aux_sym_permit_remote_open_token1] = ACTIONS(665), + [aux_sym_pkcs11_provider_token1] = ACTIONS(665), + [aux_sym_port_token1] = ACTIONS(665), + [aux_sym_preferred_authentications_token1] = ACTIONS(665), + [aux_sym_protocol_token1] = ACTIONS(665), + [aux_sym_proxy_command_token1] = ACTIONS(665), + [aux_sym_proxy_jump_token1] = ACTIONS(665), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(665), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(665), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(665), + [aux_sym_pubkey_authentication_token1] = ACTIONS(665), + [aux_sym_rekey_limit_token1] = ACTIONS(665), + [aux_sym_remote_command_token1] = ACTIONS(665), + [aux_sym_remote_forward_token1] = ACTIONS(665), + [aux_sym_request_tty_token1] = ACTIONS(665), + [aux_sym_required_rsa_size_token1] = ACTIONS(665), + [aux_sym_revoked_host_keys_token1] = ACTIONS(665), + [aux_sym_security_key_provider_token1] = ACTIONS(665), + [aux_sym_send_env_token1] = ACTIONS(665), + [aux_sym_server_alive_count_max_token1] = ACTIONS(665), + [aux_sym_server_alive_interval_token1] = ACTIONS(665), + [aux_sym_session_type_token1] = ACTIONS(665), + [aux_sym_set_env_token1] = ACTIONS(665), + [aux_sym_stdin_null_token1] = ACTIONS(665), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(665), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(665), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(665), + [aux_sym_syslog_facility_token1] = ACTIONS(665), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(665), + [aux_sym_keep_alive_token1] = ACTIONS(665), + [aux_sym_tag_token1] = ACTIONS(665), + [aux_sym_tunnel_token1] = ACTIONS(667), + [aux_sym_tunnel_device_token1] = ACTIONS(665), + [aux_sym_update_host_keys_token1] = ACTIONS(665), + [aux_sym_use_keychain_token1] = ACTIONS(665), + [aux_sym_use_roaming_token1] = ACTIONS(665), + [aux_sym_user_token1] = ACTIONS(667), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(665), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(665), + [aux_sym_visual_host_key_token1] = ACTIONS(665), + [aux_sym_xauth_location_token1] = ACTIONS(665), }, [18] = { - [ts_builtin_sym_end] = ACTIONS(666), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(668), - [anon_sym_DQUOTE] = ACTIONS(670), - [aux_sym_match_token1] = ACTIONS(666), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(666), - [aux_sym_address_family_token1] = ACTIONS(666), - [aux_sym_batch_mode_token1] = ACTIONS(666), - [aux_sym_bind_address_token1] = ACTIONS(666), - [aux_sym_bind_interface_token1] = ACTIONS(666), - [aux_sym_canonical_domains_token1] = ACTIONS(666), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(666), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(666), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(666), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(666), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(666), - [aux_sym_certificate_file_token1] = ACTIONS(666), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(666), - [aux_sym_channel_timeout_token1] = ACTIONS(666), - [aux_sym_check_host_ip_token1] = ACTIONS(666), - [aux_sym_ciphers_token1] = ACTIONS(666), - [aux_sym_cipher_token1] = ACTIONS(668), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(666), - [aux_sym_compression_token1] = ACTIONS(666), - [aux_sym_connection_attempts_token1] = ACTIONS(666), - [aux_sym_connect_timeout_token1] = ACTIONS(666), - [aux_sym_control_master_token1] = ACTIONS(666), - [aux_sym_control_path_token1] = ACTIONS(666), - [aux_sym_control_persist_token1] = ACTIONS(666), - [aux_sym_dynamic_forward_token1] = ACTIONS(666), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(666), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(666), - [aux_sym_escape_char_token1] = ACTIONS(666), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(666), - [aux_sym_fingerprint_hash_token1] = ACTIONS(666), - [aux_sym_fork_after_authentication_token1] = ACTIONS(666), - [aux_sym_forward_agent_token1] = ACTIONS(666), - [aux_sym_forward_x11_token1] = ACTIONS(668), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(666), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(666), - [aux_sym_gateway_ports_token1] = ACTIONS(666), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(666), - [aux_sym_gssapi_authentication_token1] = ACTIONS(666), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(666), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(666), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(666), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(666), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(666), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(666), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(666), - [aux_sym_hash_known_hosts_token1] = ACTIONS(666), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(666), - [aux_sym_hostbased_authentication_token1] = ACTIONS(666), - [aux_sym_host_key_algorithms_token1] = ACTIONS(666), - [aux_sym_host_key_alias_token1] = ACTIONS(666), - [aux_sym_hostname_token1] = ACTIONS(666), - [aux_sym_identities_only_token1] = ACTIONS(666), - [aux_sym_identity_agent_token1] = ACTIONS(666), - [aux_sym_identity_file_token1] = ACTIONS(666), - [aux_sym_ignore_unknown_token1] = ACTIONS(666), - [aux_sym_include_token1] = ACTIONS(666), - [aux_sym_ip_qos_token1] = ACTIONS(666), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(666), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(666), - [aux_sym_kex_algorithms_token1] = ACTIONS(666), - [aux_sym_known_hosts_command_token1] = ACTIONS(666), - [aux_sym_local_command_token1] = ACTIONS(666), - [aux_sym_local_forward_token1] = ACTIONS(666), - [aux_sym_log_level_token1] = ACTIONS(666), - [aux_sym_log_verbose_token1] = ACTIONS(666), - [aux_sym_macs_token1] = ACTIONS(666), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(666), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(666), - [aux_sym_password_authentication_token1] = ACTIONS(666), - [aux_sym_permit_local_command_token1] = ACTIONS(666), - [aux_sym_permit_remote_open_token1] = ACTIONS(666), - [aux_sym_pkcs11_provider_token1] = ACTIONS(666), - [aux_sym_port_token1] = ACTIONS(666), - [aux_sym_preferred_authentications_token1] = ACTIONS(666), - [aux_sym_protocol_token1] = ACTIONS(666), - [aux_sym_proxy_command_token1] = ACTIONS(666), - [aux_sym_proxy_jump_token1] = ACTIONS(666), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(666), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(666), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(666), - [aux_sym_pubkey_authentication_token1] = ACTIONS(666), - [aux_sym_rekey_limit_token1] = ACTIONS(666), - [aux_sym_remote_command_token1] = ACTIONS(666), - [aux_sym_remote_forward_token1] = ACTIONS(666), - [aux_sym_request_tty_token1] = ACTIONS(666), - [aux_sym_required_rsa_size_token1] = ACTIONS(666), - [aux_sym_revoked_host_keys_token1] = ACTIONS(666), - [aux_sym_security_key_provider_token1] = ACTIONS(666), - [aux_sym_send_env_token1] = ACTIONS(666), - [aux_sym_server_alive_count_max_token1] = ACTIONS(666), - [aux_sym_server_alive_interval_token1] = ACTIONS(666), - [aux_sym_session_type_token1] = ACTIONS(666), - [aux_sym_set_env_token1] = ACTIONS(666), - [aux_sym_stdin_null_token1] = ACTIONS(666), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(666), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(666), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(666), - [aux_sym_syslog_facility_token1] = ACTIONS(666), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(666), - [aux_sym_keep_alive_token1] = ACTIONS(666), - [aux_sym_tag_token1] = ACTIONS(666), - [aux_sym_tunnel_token1] = ACTIONS(668), - [aux_sym_tunnel_device_token1] = ACTIONS(666), - [aux_sym_update_host_keys_token1] = ACTIONS(666), - [aux_sym_use_keychain_token1] = ACTIONS(666), - [aux_sym_use_roaming_token1] = ACTIONS(666), - [aux_sym_user_token1] = ACTIONS(668), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(666), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(666), - [aux_sym_visual_host_key_token1] = ACTIONS(666), - [aux_sym_xauth_location_token1] = ACTIONS(666), + [ts_builtin_sym_end] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(673), + [anon_sym_DQUOTE] = ACTIONS(675), + [aux_sym_match_token1] = ACTIONS(671), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(671), + [aux_sym_address_family_token1] = ACTIONS(671), + [aux_sym_batch_mode_token1] = ACTIONS(671), + [aux_sym_bind_address_token1] = ACTIONS(671), + [aux_sym_bind_interface_token1] = ACTIONS(671), + [aux_sym_canonical_domains_token1] = ACTIONS(671), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(671), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(671), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(671), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(671), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(671), + [aux_sym_certificate_file_token1] = ACTIONS(671), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(671), + [aux_sym_channel_timeout_token1] = ACTIONS(671), + [aux_sym_check_host_ip_token1] = ACTIONS(671), + [aux_sym_ciphers_token1] = ACTIONS(671), + [aux_sym_cipher_token1] = ACTIONS(673), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(671), + [aux_sym_compression_token1] = ACTIONS(671), + [aux_sym_connection_attempts_token1] = ACTIONS(671), + [aux_sym_connect_timeout_token1] = ACTIONS(671), + [aux_sym_control_master_token1] = ACTIONS(671), + [aux_sym_control_path_token1] = ACTIONS(671), + [aux_sym_control_persist_token1] = ACTIONS(671), + [aux_sym_dynamic_forward_token1] = ACTIONS(671), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(671), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(671), + [aux_sym_escape_char_token1] = ACTIONS(671), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(671), + [aux_sym_fingerprint_hash_token1] = ACTIONS(671), + [aux_sym_fork_after_authentication_token1] = ACTIONS(671), + [aux_sym_forward_agent_token1] = ACTIONS(671), + [aux_sym_forward_x11_token1] = ACTIONS(673), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(671), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(671), + [aux_sym_gateway_ports_token1] = ACTIONS(671), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(671), + [aux_sym_gssapi_authentication_token1] = ACTIONS(671), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(671), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(671), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(671), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(671), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(671), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(671), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(671), + [aux_sym_hash_known_hosts_token1] = ACTIONS(671), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(671), + [aux_sym_hostbased_authentication_token1] = ACTIONS(671), + [aux_sym_host_key_algorithms_token1] = ACTIONS(671), + [aux_sym_host_key_alias_token1] = ACTIONS(671), + [aux_sym_hostname_token1] = ACTIONS(671), + [aux_sym_identities_only_token1] = ACTIONS(671), + [aux_sym_identity_agent_token1] = ACTIONS(671), + [aux_sym_identity_file_token1] = ACTIONS(671), + [aux_sym_ignore_unknown_token1] = ACTIONS(671), + [aux_sym_include_token1] = ACTIONS(671), + [aux_sym_ip_qos_token1] = ACTIONS(671), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(671), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(671), + [aux_sym_kex_algorithms_token1] = ACTIONS(671), + [aux_sym_known_hosts_command_token1] = ACTIONS(671), + [aux_sym_local_command_token1] = ACTIONS(671), + [aux_sym_local_forward_token1] = ACTIONS(671), + [aux_sym_log_level_token1] = ACTIONS(671), + [aux_sym_log_verbose_token1] = ACTIONS(671), + [aux_sym_macs_token1] = ACTIONS(671), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(671), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(671), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(671), + [aux_sym_password_authentication_token1] = ACTIONS(671), + [aux_sym_permit_local_command_token1] = ACTIONS(671), + [aux_sym_permit_remote_open_token1] = ACTIONS(671), + [aux_sym_pkcs11_provider_token1] = ACTIONS(671), + [aux_sym_port_token1] = ACTIONS(671), + [aux_sym_preferred_authentications_token1] = ACTIONS(671), + [aux_sym_protocol_token1] = ACTIONS(671), + [aux_sym_proxy_command_token1] = ACTIONS(671), + [aux_sym_proxy_jump_token1] = ACTIONS(671), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(671), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(671), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(671), + [aux_sym_pubkey_authentication_token1] = ACTIONS(671), + [aux_sym_rekey_limit_token1] = ACTIONS(671), + [aux_sym_remote_command_token1] = ACTIONS(671), + [aux_sym_remote_forward_token1] = ACTIONS(671), + [aux_sym_request_tty_token1] = ACTIONS(671), + [aux_sym_required_rsa_size_token1] = ACTIONS(671), + [aux_sym_revoked_host_keys_token1] = ACTIONS(671), + [aux_sym_security_key_provider_token1] = ACTIONS(671), + [aux_sym_send_env_token1] = ACTIONS(671), + [aux_sym_server_alive_count_max_token1] = ACTIONS(671), + [aux_sym_server_alive_interval_token1] = ACTIONS(671), + [aux_sym_session_type_token1] = ACTIONS(671), + [aux_sym_set_env_token1] = ACTIONS(671), + [aux_sym_stdin_null_token1] = ACTIONS(671), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(671), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(671), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(671), + [aux_sym_syslog_facility_token1] = ACTIONS(671), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(671), + [aux_sym_keep_alive_token1] = ACTIONS(671), + [aux_sym_tag_token1] = ACTIONS(671), + [aux_sym_tunnel_token1] = ACTIONS(673), + [aux_sym_tunnel_device_token1] = ACTIONS(671), + [aux_sym_update_host_keys_token1] = ACTIONS(671), + [aux_sym_use_keychain_token1] = ACTIONS(671), + [aux_sym_use_roaming_token1] = ACTIONS(671), + [aux_sym_user_token1] = ACTIONS(673), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(671), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(671), + [aux_sym_visual_host_key_token1] = ACTIONS(671), + [aux_sym_xauth_location_token1] = ACTIONS(671), }, [19] = { - [ts_builtin_sym_end] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(674), - [anon_sym_DQUOTE] = ACTIONS(676), - [aux_sym_match_token1] = ACTIONS(672), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(672), - [aux_sym_address_family_token1] = ACTIONS(672), - [aux_sym_batch_mode_token1] = ACTIONS(672), - [aux_sym_bind_address_token1] = ACTIONS(672), - [aux_sym_bind_interface_token1] = ACTIONS(672), - [aux_sym_canonical_domains_token1] = ACTIONS(672), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(672), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(672), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(672), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(672), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(672), - [aux_sym_certificate_file_token1] = ACTIONS(672), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(672), - [aux_sym_channel_timeout_token1] = ACTIONS(672), - [aux_sym_check_host_ip_token1] = ACTIONS(672), - [aux_sym_ciphers_token1] = ACTIONS(672), - [aux_sym_cipher_token1] = ACTIONS(674), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(672), - [aux_sym_compression_token1] = ACTIONS(672), - [aux_sym_connection_attempts_token1] = ACTIONS(672), - [aux_sym_connect_timeout_token1] = ACTIONS(672), - [aux_sym_control_master_token1] = ACTIONS(672), - [aux_sym_control_path_token1] = ACTIONS(672), - [aux_sym_control_persist_token1] = ACTIONS(672), - [aux_sym_dynamic_forward_token1] = ACTIONS(672), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(672), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(672), - [aux_sym_escape_char_token1] = ACTIONS(672), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(672), - [aux_sym_fingerprint_hash_token1] = ACTIONS(672), - [aux_sym_fork_after_authentication_token1] = ACTIONS(672), - [aux_sym_forward_agent_token1] = ACTIONS(672), - [aux_sym_forward_x11_token1] = ACTIONS(674), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(672), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(672), - [aux_sym_gateway_ports_token1] = ACTIONS(672), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(672), - [aux_sym_gssapi_authentication_token1] = ACTIONS(672), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(672), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(672), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(672), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(672), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(672), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(672), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(672), - [aux_sym_hash_known_hosts_token1] = ACTIONS(672), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(672), - [aux_sym_hostbased_authentication_token1] = ACTIONS(672), - [aux_sym_host_key_algorithms_token1] = ACTIONS(672), - [aux_sym_host_key_alias_token1] = ACTIONS(672), - [aux_sym_hostname_token1] = ACTIONS(672), - [aux_sym_identities_only_token1] = ACTIONS(672), - [aux_sym_identity_agent_token1] = ACTIONS(672), - [aux_sym_identity_file_token1] = ACTIONS(672), - [aux_sym_ignore_unknown_token1] = ACTIONS(672), - [aux_sym_include_token1] = ACTIONS(672), - [aux_sym_ip_qos_token1] = ACTIONS(672), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(672), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(672), - [aux_sym_kex_algorithms_token1] = ACTIONS(672), - [aux_sym_known_hosts_command_token1] = ACTIONS(672), - [aux_sym_local_command_token1] = ACTIONS(672), - [aux_sym_local_forward_token1] = ACTIONS(672), - [aux_sym_log_level_token1] = ACTIONS(672), - [aux_sym_log_verbose_token1] = ACTIONS(672), - [aux_sym_macs_token1] = ACTIONS(672), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(672), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(672), - [aux_sym_password_authentication_token1] = ACTIONS(672), - [aux_sym_permit_local_command_token1] = ACTIONS(672), - [aux_sym_permit_remote_open_token1] = ACTIONS(672), - [aux_sym_pkcs11_provider_token1] = ACTIONS(672), - [aux_sym_port_token1] = ACTIONS(672), - [aux_sym_preferred_authentications_token1] = ACTIONS(672), - [aux_sym_protocol_token1] = ACTIONS(672), - [aux_sym_proxy_command_token1] = ACTIONS(672), - [aux_sym_proxy_jump_token1] = ACTIONS(672), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(672), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(672), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(672), - [aux_sym_pubkey_authentication_token1] = ACTIONS(672), - [aux_sym_rekey_limit_token1] = ACTIONS(672), - [aux_sym_remote_command_token1] = ACTIONS(672), - [aux_sym_remote_forward_token1] = ACTIONS(672), - [aux_sym_request_tty_token1] = ACTIONS(672), - [aux_sym_required_rsa_size_token1] = ACTIONS(672), - [aux_sym_revoked_host_keys_token1] = ACTIONS(672), - [aux_sym_security_key_provider_token1] = ACTIONS(672), - [aux_sym_send_env_token1] = ACTIONS(672), - [aux_sym_server_alive_count_max_token1] = ACTIONS(672), - [aux_sym_server_alive_interval_token1] = ACTIONS(672), - [aux_sym_session_type_token1] = ACTIONS(672), - [aux_sym_set_env_token1] = ACTIONS(672), - [aux_sym_stdin_null_token1] = ACTIONS(672), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(672), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(672), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(672), - [aux_sym_syslog_facility_token1] = ACTIONS(672), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(672), - [aux_sym_keep_alive_token1] = ACTIONS(672), - [aux_sym_tag_token1] = ACTIONS(672), - [aux_sym_tunnel_token1] = ACTIONS(674), - [aux_sym_tunnel_device_token1] = ACTIONS(672), - [aux_sym_update_host_keys_token1] = ACTIONS(672), - [aux_sym_use_keychain_token1] = ACTIONS(672), - [aux_sym_use_roaming_token1] = ACTIONS(672), - [aux_sym_user_token1] = ACTIONS(674), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(672), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(672), - [aux_sym_visual_host_key_token1] = ACTIONS(672), - [aux_sym_xauth_location_token1] = ACTIONS(672), + [ts_builtin_sym_end] = ACTIONS(677), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(681), + [aux_sym_match_token1] = ACTIONS(677), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(677), + [aux_sym_address_family_token1] = ACTIONS(677), + [aux_sym_batch_mode_token1] = ACTIONS(677), + [aux_sym_bind_address_token1] = ACTIONS(677), + [aux_sym_bind_interface_token1] = ACTIONS(677), + [aux_sym_canonical_domains_token1] = ACTIONS(677), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(677), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(677), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(677), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(677), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(677), + [aux_sym_certificate_file_token1] = ACTIONS(677), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(677), + [aux_sym_channel_timeout_token1] = ACTIONS(677), + [aux_sym_check_host_ip_token1] = ACTIONS(677), + [aux_sym_ciphers_token1] = ACTIONS(677), + [aux_sym_cipher_token1] = ACTIONS(679), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(677), + [aux_sym_compression_token1] = ACTIONS(677), + [aux_sym_connection_attempts_token1] = ACTIONS(677), + [aux_sym_connect_timeout_token1] = ACTIONS(677), + [aux_sym_control_master_token1] = ACTIONS(677), + [aux_sym_control_path_token1] = ACTIONS(677), + [aux_sym_control_persist_token1] = ACTIONS(677), + [aux_sym_dynamic_forward_token1] = ACTIONS(677), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(677), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(677), + [aux_sym_escape_char_token1] = ACTIONS(677), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(677), + [aux_sym_fingerprint_hash_token1] = ACTIONS(677), + [aux_sym_fork_after_authentication_token1] = ACTIONS(677), + [aux_sym_forward_agent_token1] = ACTIONS(677), + [aux_sym_forward_x11_token1] = ACTIONS(679), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(677), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(677), + [aux_sym_gateway_ports_token1] = ACTIONS(677), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(677), + [aux_sym_gssapi_authentication_token1] = ACTIONS(677), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(677), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(677), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(677), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(677), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(677), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(677), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(677), + [aux_sym_hash_known_hosts_token1] = ACTIONS(677), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(677), + [aux_sym_hostbased_authentication_token1] = ACTIONS(677), + [aux_sym_host_key_algorithms_token1] = ACTIONS(677), + [aux_sym_host_key_alias_token1] = ACTIONS(677), + [aux_sym_hostname_token1] = ACTIONS(677), + [aux_sym_identities_only_token1] = ACTIONS(677), + [aux_sym_identity_agent_token1] = ACTIONS(677), + [aux_sym_identity_file_token1] = ACTIONS(677), + [aux_sym_ignore_unknown_token1] = ACTIONS(677), + [aux_sym_include_token1] = ACTIONS(677), + [aux_sym_ip_qos_token1] = ACTIONS(677), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(677), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(677), + [aux_sym_kex_algorithms_token1] = ACTIONS(677), + [aux_sym_known_hosts_command_token1] = ACTIONS(677), + [aux_sym_local_command_token1] = ACTIONS(677), + [aux_sym_local_forward_token1] = ACTIONS(677), + [aux_sym_log_level_token1] = ACTIONS(677), + [aux_sym_log_verbose_token1] = ACTIONS(677), + [aux_sym_macs_token1] = ACTIONS(677), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(677), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(677), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(677), + [aux_sym_password_authentication_token1] = ACTIONS(677), + [aux_sym_permit_local_command_token1] = ACTIONS(677), + [aux_sym_permit_remote_open_token1] = ACTIONS(677), + [aux_sym_pkcs11_provider_token1] = ACTIONS(677), + [aux_sym_port_token1] = ACTIONS(677), + [aux_sym_preferred_authentications_token1] = ACTIONS(677), + [aux_sym_protocol_token1] = ACTIONS(677), + [aux_sym_proxy_command_token1] = ACTIONS(677), + [aux_sym_proxy_jump_token1] = ACTIONS(677), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(677), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(677), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(677), + [aux_sym_pubkey_authentication_token1] = ACTIONS(677), + [aux_sym_rekey_limit_token1] = ACTIONS(677), + [aux_sym_remote_command_token1] = ACTIONS(677), + [aux_sym_remote_forward_token1] = ACTIONS(677), + [aux_sym_request_tty_token1] = ACTIONS(677), + [aux_sym_required_rsa_size_token1] = ACTIONS(677), + [aux_sym_revoked_host_keys_token1] = ACTIONS(677), + [aux_sym_security_key_provider_token1] = ACTIONS(677), + [aux_sym_send_env_token1] = ACTIONS(677), + [aux_sym_server_alive_count_max_token1] = ACTIONS(677), + [aux_sym_server_alive_interval_token1] = ACTIONS(677), + [aux_sym_session_type_token1] = ACTIONS(677), + [aux_sym_set_env_token1] = ACTIONS(677), + [aux_sym_stdin_null_token1] = ACTIONS(677), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(677), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(677), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(677), + [aux_sym_syslog_facility_token1] = ACTIONS(677), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(677), + [aux_sym_keep_alive_token1] = ACTIONS(677), + [aux_sym_tag_token1] = ACTIONS(677), + [aux_sym_tunnel_token1] = ACTIONS(679), + [aux_sym_tunnel_device_token1] = ACTIONS(677), + [aux_sym_update_host_keys_token1] = ACTIONS(677), + [aux_sym_use_keychain_token1] = ACTIONS(677), + [aux_sym_use_roaming_token1] = ACTIONS(677), + [aux_sym_user_token1] = ACTIONS(679), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(677), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(677), + [aux_sym_visual_host_key_token1] = ACTIONS(677), + [aux_sym_xauth_location_token1] = ACTIONS(677), }, [20] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(682), - [aux_sym_match_token1] = ACTIONS(678), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(678), - [aux_sym_address_family_token1] = ACTIONS(678), - [aux_sym_batch_mode_token1] = ACTIONS(678), - [aux_sym_bind_address_token1] = ACTIONS(678), - [aux_sym_bind_interface_token1] = ACTIONS(678), - [aux_sym_canonical_domains_token1] = ACTIONS(678), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(678), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(678), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(678), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(678), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(678), - [aux_sym_certificate_file_token1] = ACTIONS(678), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(678), - [aux_sym_channel_timeout_token1] = ACTIONS(678), - [aux_sym_check_host_ip_token1] = ACTIONS(678), - [aux_sym_ciphers_token1] = ACTIONS(678), - [aux_sym_cipher_token1] = ACTIONS(680), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(678), - [aux_sym_compression_token1] = ACTIONS(678), - [aux_sym_connection_attempts_token1] = ACTIONS(678), - [aux_sym_connect_timeout_token1] = ACTIONS(678), - [aux_sym_control_master_token1] = ACTIONS(678), - [aux_sym_control_path_token1] = ACTIONS(678), - [aux_sym_control_persist_token1] = ACTIONS(678), - [aux_sym_dynamic_forward_token1] = ACTIONS(678), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(678), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(678), - [aux_sym_escape_char_token1] = ACTIONS(678), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(678), - [aux_sym_fingerprint_hash_token1] = ACTIONS(678), - [aux_sym_fork_after_authentication_token1] = ACTIONS(678), - [aux_sym_forward_agent_token1] = ACTIONS(678), - [aux_sym_forward_x11_token1] = ACTIONS(680), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(678), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(678), - [aux_sym_gateway_ports_token1] = ACTIONS(678), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(678), - [aux_sym_gssapi_authentication_token1] = ACTIONS(678), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(678), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(678), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(678), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(678), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(678), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(678), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(678), - [aux_sym_hash_known_hosts_token1] = ACTIONS(678), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(678), - [aux_sym_hostbased_authentication_token1] = ACTIONS(678), - [aux_sym_host_key_algorithms_token1] = ACTIONS(678), - [aux_sym_host_key_alias_token1] = ACTIONS(678), - [aux_sym_hostname_token1] = ACTIONS(678), - [aux_sym_identities_only_token1] = ACTIONS(678), - [aux_sym_identity_agent_token1] = ACTIONS(678), - [aux_sym_identity_file_token1] = ACTIONS(678), - [aux_sym_ignore_unknown_token1] = ACTIONS(678), - [aux_sym_include_token1] = ACTIONS(678), - [aux_sym_ip_qos_token1] = ACTIONS(678), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(678), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(678), - [aux_sym_kex_algorithms_token1] = ACTIONS(678), - [aux_sym_known_hosts_command_token1] = ACTIONS(678), - [aux_sym_local_command_token1] = ACTIONS(678), - [aux_sym_local_forward_token1] = ACTIONS(678), - [aux_sym_log_level_token1] = ACTIONS(678), - [aux_sym_log_verbose_token1] = ACTIONS(678), - [aux_sym_macs_token1] = ACTIONS(678), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(678), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(678), - [aux_sym_password_authentication_token1] = ACTIONS(678), - [aux_sym_permit_local_command_token1] = ACTIONS(678), - [aux_sym_permit_remote_open_token1] = ACTIONS(678), - [aux_sym_pkcs11_provider_token1] = ACTIONS(678), - [aux_sym_port_token1] = ACTIONS(678), - [aux_sym_preferred_authentications_token1] = ACTIONS(678), - [aux_sym_protocol_token1] = ACTIONS(678), - [aux_sym_proxy_command_token1] = ACTIONS(678), - [aux_sym_proxy_jump_token1] = ACTIONS(678), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(678), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(678), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(678), - [aux_sym_pubkey_authentication_token1] = ACTIONS(678), - [aux_sym_rekey_limit_token1] = ACTIONS(678), - [aux_sym_remote_command_token1] = ACTIONS(678), - [aux_sym_remote_forward_token1] = ACTIONS(678), - [aux_sym_request_tty_token1] = ACTIONS(678), - [aux_sym_required_rsa_size_token1] = ACTIONS(678), - [aux_sym_revoked_host_keys_token1] = ACTIONS(678), - [aux_sym_security_key_provider_token1] = ACTIONS(678), - [aux_sym_send_env_token1] = ACTIONS(678), - [aux_sym_server_alive_count_max_token1] = ACTIONS(678), - [aux_sym_server_alive_interval_token1] = ACTIONS(678), - [aux_sym_session_type_token1] = ACTIONS(678), - [aux_sym_set_env_token1] = ACTIONS(678), - [aux_sym_stdin_null_token1] = ACTIONS(678), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(678), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(678), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(678), - [aux_sym_syslog_facility_token1] = ACTIONS(678), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(678), - [aux_sym_keep_alive_token1] = ACTIONS(678), - [aux_sym_tag_token1] = ACTIONS(678), - [aux_sym_tunnel_token1] = ACTIONS(680), - [aux_sym_tunnel_device_token1] = ACTIONS(678), - [aux_sym_update_host_keys_token1] = ACTIONS(678), - [aux_sym_use_keychain_token1] = ACTIONS(678), - [aux_sym_use_roaming_token1] = ACTIONS(678), - [aux_sym_user_token1] = ACTIONS(680), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(678), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(678), - [aux_sym_visual_host_key_token1] = ACTIONS(678), - [aux_sym_xauth_location_token1] = ACTIONS(678), + [ts_builtin_sym_end] = ACTIONS(683), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(685), + [anon_sym_DQUOTE] = ACTIONS(687), + [aux_sym_match_token1] = ACTIONS(683), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(683), + [aux_sym_address_family_token1] = ACTIONS(683), + [aux_sym_batch_mode_token1] = ACTIONS(683), + [aux_sym_bind_address_token1] = ACTIONS(683), + [aux_sym_bind_interface_token1] = ACTIONS(683), + [aux_sym_canonical_domains_token1] = ACTIONS(683), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(683), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(683), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(683), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(683), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(683), + [aux_sym_certificate_file_token1] = ACTIONS(683), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(683), + [aux_sym_channel_timeout_token1] = ACTIONS(683), + [aux_sym_check_host_ip_token1] = ACTIONS(683), + [aux_sym_ciphers_token1] = ACTIONS(683), + [aux_sym_cipher_token1] = ACTIONS(685), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(683), + [aux_sym_compression_token1] = ACTIONS(683), + [aux_sym_connection_attempts_token1] = ACTIONS(683), + [aux_sym_connect_timeout_token1] = ACTIONS(683), + [aux_sym_control_master_token1] = ACTIONS(683), + [aux_sym_control_path_token1] = ACTIONS(683), + [aux_sym_control_persist_token1] = ACTIONS(683), + [aux_sym_dynamic_forward_token1] = ACTIONS(683), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(683), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(683), + [aux_sym_escape_char_token1] = ACTIONS(683), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(683), + [aux_sym_fingerprint_hash_token1] = ACTIONS(683), + [aux_sym_fork_after_authentication_token1] = ACTIONS(683), + [aux_sym_forward_agent_token1] = ACTIONS(683), + [aux_sym_forward_x11_token1] = ACTIONS(685), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(683), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(683), + [aux_sym_gateway_ports_token1] = ACTIONS(683), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(683), + [aux_sym_gssapi_authentication_token1] = ACTIONS(683), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(683), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(683), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(683), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(683), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(683), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(683), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(683), + [aux_sym_hash_known_hosts_token1] = ACTIONS(683), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(683), + [aux_sym_hostbased_authentication_token1] = ACTIONS(683), + [aux_sym_host_key_algorithms_token1] = ACTIONS(683), + [aux_sym_host_key_alias_token1] = ACTIONS(683), + [aux_sym_hostname_token1] = ACTIONS(683), + [aux_sym_identities_only_token1] = ACTIONS(683), + [aux_sym_identity_agent_token1] = ACTIONS(683), + [aux_sym_identity_file_token1] = ACTIONS(683), + [aux_sym_ignore_unknown_token1] = ACTIONS(683), + [aux_sym_include_token1] = ACTIONS(683), + [aux_sym_ip_qos_token1] = ACTIONS(683), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(683), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(683), + [aux_sym_kex_algorithms_token1] = ACTIONS(683), + [aux_sym_known_hosts_command_token1] = ACTIONS(683), + [aux_sym_local_command_token1] = ACTIONS(683), + [aux_sym_local_forward_token1] = ACTIONS(683), + [aux_sym_log_level_token1] = ACTIONS(683), + [aux_sym_log_verbose_token1] = ACTIONS(683), + [aux_sym_macs_token1] = ACTIONS(683), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(683), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(683), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(683), + [aux_sym_password_authentication_token1] = ACTIONS(683), + [aux_sym_permit_local_command_token1] = ACTIONS(683), + [aux_sym_permit_remote_open_token1] = ACTIONS(683), + [aux_sym_pkcs11_provider_token1] = ACTIONS(683), + [aux_sym_port_token1] = ACTIONS(683), + [aux_sym_preferred_authentications_token1] = ACTIONS(683), + [aux_sym_protocol_token1] = ACTIONS(683), + [aux_sym_proxy_command_token1] = ACTIONS(683), + [aux_sym_proxy_jump_token1] = ACTIONS(683), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(683), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(683), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(683), + [aux_sym_pubkey_authentication_token1] = ACTIONS(683), + [aux_sym_rekey_limit_token1] = ACTIONS(683), + [aux_sym_remote_command_token1] = ACTIONS(683), + [aux_sym_remote_forward_token1] = ACTIONS(683), + [aux_sym_request_tty_token1] = ACTIONS(683), + [aux_sym_required_rsa_size_token1] = ACTIONS(683), + [aux_sym_revoked_host_keys_token1] = ACTIONS(683), + [aux_sym_security_key_provider_token1] = ACTIONS(683), + [aux_sym_send_env_token1] = ACTIONS(683), + [aux_sym_server_alive_count_max_token1] = ACTIONS(683), + [aux_sym_server_alive_interval_token1] = ACTIONS(683), + [aux_sym_session_type_token1] = ACTIONS(683), + [aux_sym_set_env_token1] = ACTIONS(683), + [aux_sym_stdin_null_token1] = ACTIONS(683), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(683), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(683), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(683), + [aux_sym_syslog_facility_token1] = ACTIONS(683), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(683), + [aux_sym_keep_alive_token1] = ACTIONS(683), + [aux_sym_tag_token1] = ACTIONS(683), + [aux_sym_tunnel_token1] = ACTIONS(685), + [aux_sym_tunnel_device_token1] = ACTIONS(683), + [aux_sym_update_host_keys_token1] = ACTIONS(683), + [aux_sym_use_keychain_token1] = ACTIONS(683), + [aux_sym_use_roaming_token1] = ACTIONS(683), + [aux_sym_user_token1] = ACTIONS(685), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(683), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(683), + [aux_sym_visual_host_key_token1] = ACTIONS(683), + [aux_sym_xauth_location_token1] = ACTIONS(683), }, [21] = { - [ts_builtin_sym_end] = ACTIONS(684), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(686), - [anon_sym_DQUOTE] = ACTIONS(688), - [aux_sym_match_token1] = ACTIONS(684), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(684), - [aux_sym_address_family_token1] = ACTIONS(684), - [aux_sym_batch_mode_token1] = ACTIONS(684), - [aux_sym_bind_address_token1] = ACTIONS(684), - [aux_sym_bind_interface_token1] = ACTIONS(684), - [aux_sym_canonical_domains_token1] = ACTIONS(684), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(684), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(684), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(684), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(684), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(684), - [aux_sym_certificate_file_token1] = ACTIONS(684), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(684), - [aux_sym_channel_timeout_token1] = ACTIONS(684), - [aux_sym_check_host_ip_token1] = ACTIONS(684), - [aux_sym_ciphers_token1] = ACTIONS(684), - [aux_sym_cipher_token1] = ACTIONS(686), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(684), - [aux_sym_compression_token1] = ACTIONS(684), - [aux_sym_connection_attempts_token1] = ACTIONS(684), - [aux_sym_connect_timeout_token1] = ACTIONS(684), - [aux_sym_control_master_token1] = ACTIONS(684), - [aux_sym_control_path_token1] = ACTIONS(684), - [aux_sym_control_persist_token1] = ACTIONS(684), - [aux_sym_dynamic_forward_token1] = ACTIONS(684), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(684), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(684), - [aux_sym_escape_char_token1] = ACTIONS(684), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(684), - [aux_sym_fingerprint_hash_token1] = ACTIONS(684), - [aux_sym_fork_after_authentication_token1] = ACTIONS(684), - [aux_sym_forward_agent_token1] = ACTIONS(684), - [aux_sym_forward_x11_token1] = ACTIONS(686), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(684), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(684), - [aux_sym_gateway_ports_token1] = ACTIONS(684), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(684), - [aux_sym_gssapi_authentication_token1] = ACTIONS(684), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(684), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(684), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(684), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(684), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(684), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(684), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(684), - [aux_sym_hash_known_hosts_token1] = ACTIONS(684), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(684), - [aux_sym_hostbased_authentication_token1] = ACTIONS(684), - [aux_sym_host_key_algorithms_token1] = ACTIONS(684), - [aux_sym_host_key_alias_token1] = ACTIONS(684), - [aux_sym_hostname_token1] = ACTIONS(684), - [aux_sym_identities_only_token1] = ACTIONS(684), - [aux_sym_identity_agent_token1] = ACTIONS(684), - [aux_sym_identity_file_token1] = ACTIONS(684), - [aux_sym_ignore_unknown_token1] = ACTIONS(684), - [aux_sym_include_token1] = ACTIONS(684), - [aux_sym_ip_qos_token1] = ACTIONS(684), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(684), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(684), - [aux_sym_kex_algorithms_token1] = ACTIONS(684), - [aux_sym_known_hosts_command_token1] = ACTIONS(684), - [aux_sym_local_command_token1] = ACTIONS(684), - [aux_sym_local_forward_token1] = ACTIONS(684), - [aux_sym_log_level_token1] = ACTIONS(684), - [aux_sym_log_verbose_token1] = ACTIONS(684), - [aux_sym_macs_token1] = ACTIONS(684), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(684), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(684), - [aux_sym_password_authentication_token1] = ACTIONS(684), - [aux_sym_permit_local_command_token1] = ACTIONS(684), - [aux_sym_permit_remote_open_token1] = ACTIONS(684), - [aux_sym_pkcs11_provider_token1] = ACTIONS(684), - [aux_sym_port_token1] = ACTIONS(684), - [aux_sym_preferred_authentications_token1] = ACTIONS(684), - [aux_sym_protocol_token1] = ACTIONS(684), - [aux_sym_proxy_command_token1] = ACTIONS(684), - [aux_sym_proxy_jump_token1] = ACTIONS(684), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(684), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(684), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(684), - [aux_sym_pubkey_authentication_token1] = ACTIONS(684), - [aux_sym_rekey_limit_token1] = ACTIONS(684), - [aux_sym_remote_command_token1] = ACTIONS(684), - [aux_sym_remote_forward_token1] = ACTIONS(684), - [aux_sym_request_tty_token1] = ACTIONS(684), - [aux_sym_required_rsa_size_token1] = ACTIONS(684), - [aux_sym_revoked_host_keys_token1] = ACTIONS(684), - [aux_sym_security_key_provider_token1] = ACTIONS(684), - [aux_sym_send_env_token1] = ACTIONS(684), - [aux_sym_server_alive_count_max_token1] = ACTIONS(684), - [aux_sym_server_alive_interval_token1] = ACTIONS(684), - [aux_sym_session_type_token1] = ACTIONS(684), - [aux_sym_set_env_token1] = ACTIONS(684), - [aux_sym_stdin_null_token1] = ACTIONS(684), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(684), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(684), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(684), - [aux_sym_syslog_facility_token1] = ACTIONS(684), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(684), - [aux_sym_keep_alive_token1] = ACTIONS(684), - [aux_sym_tag_token1] = ACTIONS(684), - [aux_sym_tunnel_token1] = ACTIONS(686), - [aux_sym_tunnel_device_token1] = ACTIONS(684), - [aux_sym_update_host_keys_token1] = ACTIONS(684), - [aux_sym_use_keychain_token1] = ACTIONS(684), - [aux_sym_use_roaming_token1] = ACTIONS(684), - [aux_sym_user_token1] = ACTIONS(686), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(684), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(684), - [aux_sym_visual_host_key_token1] = ACTIONS(684), - [aux_sym_xauth_location_token1] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(689), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(693), + [aux_sym_match_token1] = ACTIONS(689), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(689), + [aux_sym_address_family_token1] = ACTIONS(689), + [aux_sym_batch_mode_token1] = ACTIONS(689), + [aux_sym_bind_address_token1] = ACTIONS(689), + [aux_sym_bind_interface_token1] = ACTIONS(689), + [aux_sym_canonical_domains_token1] = ACTIONS(689), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(689), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(689), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(689), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(689), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(689), + [aux_sym_certificate_file_token1] = ACTIONS(689), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(689), + [aux_sym_channel_timeout_token1] = ACTIONS(689), + [aux_sym_check_host_ip_token1] = ACTIONS(689), + [aux_sym_ciphers_token1] = ACTIONS(689), + [aux_sym_cipher_token1] = ACTIONS(691), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(689), + [aux_sym_compression_token1] = ACTIONS(689), + [aux_sym_connection_attempts_token1] = ACTIONS(689), + [aux_sym_connect_timeout_token1] = ACTIONS(689), + [aux_sym_control_master_token1] = ACTIONS(689), + [aux_sym_control_path_token1] = ACTIONS(689), + [aux_sym_control_persist_token1] = ACTIONS(689), + [aux_sym_dynamic_forward_token1] = ACTIONS(689), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(689), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(689), + [aux_sym_escape_char_token1] = ACTIONS(689), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(689), + [aux_sym_fingerprint_hash_token1] = ACTIONS(689), + [aux_sym_fork_after_authentication_token1] = ACTIONS(689), + [aux_sym_forward_agent_token1] = ACTIONS(689), + [aux_sym_forward_x11_token1] = ACTIONS(691), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(689), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(689), + [aux_sym_gateway_ports_token1] = ACTIONS(689), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(689), + [aux_sym_gssapi_authentication_token1] = ACTIONS(689), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(689), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(689), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(689), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(689), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(689), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(689), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(689), + [aux_sym_hash_known_hosts_token1] = ACTIONS(689), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(689), + [aux_sym_hostbased_authentication_token1] = ACTIONS(689), + [aux_sym_host_key_algorithms_token1] = ACTIONS(689), + [aux_sym_host_key_alias_token1] = ACTIONS(689), + [aux_sym_hostname_token1] = ACTIONS(689), + [aux_sym_identities_only_token1] = ACTIONS(689), + [aux_sym_identity_agent_token1] = ACTIONS(689), + [aux_sym_identity_file_token1] = ACTIONS(689), + [aux_sym_ignore_unknown_token1] = ACTIONS(689), + [aux_sym_include_token1] = ACTIONS(689), + [aux_sym_ip_qos_token1] = ACTIONS(689), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(689), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(689), + [aux_sym_kex_algorithms_token1] = ACTIONS(689), + [aux_sym_known_hosts_command_token1] = ACTIONS(689), + [aux_sym_local_command_token1] = ACTIONS(689), + [aux_sym_local_forward_token1] = ACTIONS(689), + [aux_sym_log_level_token1] = ACTIONS(689), + [aux_sym_log_verbose_token1] = ACTIONS(689), + [aux_sym_macs_token1] = ACTIONS(689), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(689), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(689), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(689), + [aux_sym_password_authentication_token1] = ACTIONS(689), + [aux_sym_permit_local_command_token1] = ACTIONS(689), + [aux_sym_permit_remote_open_token1] = ACTIONS(689), + [aux_sym_pkcs11_provider_token1] = ACTIONS(689), + [aux_sym_port_token1] = ACTIONS(689), + [aux_sym_preferred_authentications_token1] = ACTIONS(689), + [aux_sym_protocol_token1] = ACTIONS(689), + [aux_sym_proxy_command_token1] = ACTIONS(689), + [aux_sym_proxy_jump_token1] = ACTIONS(689), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(689), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(689), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(689), + [aux_sym_pubkey_authentication_token1] = ACTIONS(689), + [aux_sym_rekey_limit_token1] = ACTIONS(689), + [aux_sym_remote_command_token1] = ACTIONS(689), + [aux_sym_remote_forward_token1] = ACTIONS(689), + [aux_sym_request_tty_token1] = ACTIONS(689), + [aux_sym_required_rsa_size_token1] = ACTIONS(689), + [aux_sym_revoked_host_keys_token1] = ACTIONS(689), + [aux_sym_security_key_provider_token1] = ACTIONS(689), + [aux_sym_send_env_token1] = ACTIONS(689), + [aux_sym_server_alive_count_max_token1] = ACTIONS(689), + [aux_sym_server_alive_interval_token1] = ACTIONS(689), + [aux_sym_session_type_token1] = ACTIONS(689), + [aux_sym_set_env_token1] = ACTIONS(689), + [aux_sym_stdin_null_token1] = ACTIONS(689), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(689), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(689), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(689), + [aux_sym_syslog_facility_token1] = ACTIONS(689), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(689), + [aux_sym_keep_alive_token1] = ACTIONS(689), + [aux_sym_tag_token1] = ACTIONS(689), + [aux_sym_tunnel_token1] = ACTIONS(691), + [aux_sym_tunnel_device_token1] = ACTIONS(689), + [aux_sym_update_host_keys_token1] = ACTIONS(689), + [aux_sym_use_keychain_token1] = ACTIONS(689), + [aux_sym_use_roaming_token1] = ACTIONS(689), + [aux_sym_user_token1] = ACTIONS(691), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(689), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(689), + [aux_sym_visual_host_key_token1] = ACTIONS(689), + [aux_sym_xauth_location_token1] = ACTIONS(689), }, [22] = { - [ts_builtin_sym_end] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(692), - [anon_sym_DQUOTE] = ACTIONS(694), - [aux_sym_match_token1] = ACTIONS(690), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(690), - [aux_sym_address_family_token1] = ACTIONS(690), - [aux_sym_batch_mode_token1] = ACTIONS(690), - [aux_sym_bind_address_token1] = ACTIONS(690), - [aux_sym_bind_interface_token1] = ACTIONS(690), - [aux_sym_canonical_domains_token1] = ACTIONS(690), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(690), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(690), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(690), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(690), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(690), - [aux_sym_certificate_file_token1] = ACTIONS(690), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(690), - [aux_sym_channel_timeout_token1] = ACTIONS(690), - [aux_sym_check_host_ip_token1] = ACTIONS(690), - [aux_sym_ciphers_token1] = ACTIONS(690), - [aux_sym_cipher_token1] = ACTIONS(692), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(690), - [aux_sym_compression_token1] = ACTIONS(690), - [aux_sym_connection_attempts_token1] = ACTIONS(690), - [aux_sym_connect_timeout_token1] = ACTIONS(690), - [aux_sym_control_master_token1] = ACTIONS(690), - [aux_sym_control_path_token1] = ACTIONS(690), - [aux_sym_control_persist_token1] = ACTIONS(690), - [aux_sym_dynamic_forward_token1] = ACTIONS(690), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(690), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(690), - [aux_sym_escape_char_token1] = ACTIONS(690), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(690), - [aux_sym_fingerprint_hash_token1] = ACTIONS(690), - [aux_sym_fork_after_authentication_token1] = ACTIONS(690), - [aux_sym_forward_agent_token1] = ACTIONS(690), - [aux_sym_forward_x11_token1] = ACTIONS(692), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(690), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(690), - [aux_sym_gateway_ports_token1] = ACTIONS(690), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(690), - [aux_sym_gssapi_authentication_token1] = ACTIONS(690), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(690), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(690), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(690), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(690), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(690), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(690), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(690), - [aux_sym_hash_known_hosts_token1] = ACTIONS(690), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(690), - [aux_sym_hostbased_authentication_token1] = ACTIONS(690), - [aux_sym_host_key_algorithms_token1] = ACTIONS(690), - [aux_sym_host_key_alias_token1] = ACTIONS(690), - [aux_sym_hostname_token1] = ACTIONS(690), - [aux_sym_identities_only_token1] = ACTIONS(690), - [aux_sym_identity_agent_token1] = ACTIONS(690), - [aux_sym_identity_file_token1] = ACTIONS(690), - [aux_sym_ignore_unknown_token1] = ACTIONS(690), - [aux_sym_include_token1] = ACTIONS(690), - [aux_sym_ip_qos_token1] = ACTIONS(690), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(690), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(690), - [aux_sym_kex_algorithms_token1] = ACTIONS(690), - [aux_sym_known_hosts_command_token1] = ACTIONS(690), - [aux_sym_local_command_token1] = ACTIONS(690), - [aux_sym_local_forward_token1] = ACTIONS(690), - [aux_sym_log_level_token1] = ACTIONS(690), - [aux_sym_log_verbose_token1] = ACTIONS(690), - [aux_sym_macs_token1] = ACTIONS(690), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(690), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(690), - [aux_sym_password_authentication_token1] = ACTIONS(690), - [aux_sym_permit_local_command_token1] = ACTIONS(690), - [aux_sym_permit_remote_open_token1] = ACTIONS(690), - [aux_sym_pkcs11_provider_token1] = ACTIONS(690), - [aux_sym_port_token1] = ACTIONS(690), - [aux_sym_preferred_authentications_token1] = ACTIONS(690), - [aux_sym_protocol_token1] = ACTIONS(690), - [aux_sym_proxy_command_token1] = ACTIONS(690), - [aux_sym_proxy_jump_token1] = ACTIONS(690), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(690), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(690), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(690), - [aux_sym_pubkey_authentication_token1] = ACTIONS(690), - [aux_sym_rekey_limit_token1] = ACTIONS(690), - [aux_sym_remote_command_token1] = ACTIONS(690), - [aux_sym_remote_forward_token1] = ACTIONS(690), - [aux_sym_request_tty_token1] = ACTIONS(690), - [aux_sym_required_rsa_size_token1] = ACTIONS(690), - [aux_sym_revoked_host_keys_token1] = ACTIONS(690), - [aux_sym_security_key_provider_token1] = ACTIONS(690), - [aux_sym_send_env_token1] = ACTIONS(690), - [aux_sym_server_alive_count_max_token1] = ACTIONS(690), - [aux_sym_server_alive_interval_token1] = ACTIONS(690), - [aux_sym_session_type_token1] = ACTIONS(690), - [aux_sym_set_env_token1] = ACTIONS(690), - [aux_sym_stdin_null_token1] = ACTIONS(690), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(690), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(690), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(690), - [aux_sym_syslog_facility_token1] = ACTIONS(690), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(690), - [aux_sym_keep_alive_token1] = ACTIONS(690), - [aux_sym_tag_token1] = ACTIONS(690), - [aux_sym_tunnel_token1] = ACTIONS(692), - [aux_sym_tunnel_device_token1] = ACTIONS(690), - [aux_sym_update_host_keys_token1] = ACTIONS(690), - [aux_sym_use_keychain_token1] = ACTIONS(690), - [aux_sym_use_roaming_token1] = ACTIONS(690), - [aux_sym_user_token1] = ACTIONS(692), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(690), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(690), - [aux_sym_visual_host_key_token1] = ACTIONS(690), - [aux_sym_xauth_location_token1] = ACTIONS(690), + [ts_builtin_sym_end] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(697), + [anon_sym_DQUOTE] = ACTIONS(699), + [aux_sym_match_token1] = ACTIONS(695), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(695), + [aux_sym_address_family_token1] = ACTIONS(695), + [aux_sym_batch_mode_token1] = ACTIONS(695), + [aux_sym_bind_address_token1] = ACTIONS(695), + [aux_sym_bind_interface_token1] = ACTIONS(695), + [aux_sym_canonical_domains_token1] = ACTIONS(695), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(695), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(695), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(695), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(695), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(695), + [aux_sym_certificate_file_token1] = ACTIONS(695), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(695), + [aux_sym_channel_timeout_token1] = ACTIONS(695), + [aux_sym_check_host_ip_token1] = ACTIONS(695), + [aux_sym_ciphers_token1] = ACTIONS(695), + [aux_sym_cipher_token1] = ACTIONS(697), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(695), + [aux_sym_compression_token1] = ACTIONS(695), + [aux_sym_connection_attempts_token1] = ACTIONS(695), + [aux_sym_connect_timeout_token1] = ACTIONS(695), + [aux_sym_control_master_token1] = ACTIONS(695), + [aux_sym_control_path_token1] = ACTIONS(695), + [aux_sym_control_persist_token1] = ACTIONS(695), + [aux_sym_dynamic_forward_token1] = ACTIONS(695), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(695), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(695), + [aux_sym_escape_char_token1] = ACTIONS(695), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(695), + [aux_sym_fingerprint_hash_token1] = ACTIONS(695), + [aux_sym_fork_after_authentication_token1] = ACTIONS(695), + [aux_sym_forward_agent_token1] = ACTIONS(695), + [aux_sym_forward_x11_token1] = ACTIONS(697), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(695), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(695), + [aux_sym_gateway_ports_token1] = ACTIONS(695), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(695), + [aux_sym_gssapi_authentication_token1] = ACTIONS(695), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(695), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(695), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(695), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(695), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(695), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(695), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(695), + [aux_sym_hash_known_hosts_token1] = ACTIONS(695), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(695), + [aux_sym_hostbased_authentication_token1] = ACTIONS(695), + [aux_sym_host_key_algorithms_token1] = ACTIONS(695), + [aux_sym_host_key_alias_token1] = ACTIONS(695), + [aux_sym_hostname_token1] = ACTIONS(695), + [aux_sym_identities_only_token1] = ACTIONS(695), + [aux_sym_identity_agent_token1] = ACTIONS(695), + [aux_sym_identity_file_token1] = ACTIONS(695), + [aux_sym_ignore_unknown_token1] = ACTIONS(695), + [aux_sym_include_token1] = ACTIONS(695), + [aux_sym_ip_qos_token1] = ACTIONS(695), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(695), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(695), + [aux_sym_kex_algorithms_token1] = ACTIONS(695), + [aux_sym_known_hosts_command_token1] = ACTIONS(695), + [aux_sym_local_command_token1] = ACTIONS(695), + [aux_sym_local_forward_token1] = ACTIONS(695), + [aux_sym_log_level_token1] = ACTIONS(695), + [aux_sym_log_verbose_token1] = ACTIONS(695), + [aux_sym_macs_token1] = ACTIONS(695), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(695), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(695), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(695), + [aux_sym_password_authentication_token1] = ACTIONS(695), + [aux_sym_permit_local_command_token1] = ACTIONS(695), + [aux_sym_permit_remote_open_token1] = ACTIONS(695), + [aux_sym_pkcs11_provider_token1] = ACTIONS(695), + [aux_sym_port_token1] = ACTIONS(695), + [aux_sym_preferred_authentications_token1] = ACTIONS(695), + [aux_sym_protocol_token1] = ACTIONS(695), + [aux_sym_proxy_command_token1] = ACTIONS(695), + [aux_sym_proxy_jump_token1] = ACTIONS(695), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(695), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(695), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(695), + [aux_sym_pubkey_authentication_token1] = ACTIONS(695), + [aux_sym_rekey_limit_token1] = ACTIONS(695), + [aux_sym_remote_command_token1] = ACTIONS(695), + [aux_sym_remote_forward_token1] = ACTIONS(695), + [aux_sym_request_tty_token1] = ACTIONS(695), + [aux_sym_required_rsa_size_token1] = ACTIONS(695), + [aux_sym_revoked_host_keys_token1] = ACTIONS(695), + [aux_sym_security_key_provider_token1] = ACTIONS(695), + [aux_sym_send_env_token1] = ACTIONS(695), + [aux_sym_server_alive_count_max_token1] = ACTIONS(695), + [aux_sym_server_alive_interval_token1] = ACTIONS(695), + [aux_sym_session_type_token1] = ACTIONS(695), + [aux_sym_set_env_token1] = ACTIONS(695), + [aux_sym_stdin_null_token1] = ACTIONS(695), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(695), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(695), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(695), + [aux_sym_syslog_facility_token1] = ACTIONS(695), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(695), + [aux_sym_keep_alive_token1] = ACTIONS(695), + [aux_sym_tag_token1] = ACTIONS(695), + [aux_sym_tunnel_token1] = ACTIONS(697), + [aux_sym_tunnel_device_token1] = ACTIONS(695), + [aux_sym_update_host_keys_token1] = ACTIONS(695), + [aux_sym_use_keychain_token1] = ACTIONS(695), + [aux_sym_use_roaming_token1] = ACTIONS(695), + [aux_sym_user_token1] = ACTIONS(697), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(695), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(695), + [aux_sym_visual_host_key_token1] = ACTIONS(695), + [aux_sym_xauth_location_token1] = ACTIONS(695), }, [23] = { - [ts_builtin_sym_end] = ACTIONS(696), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(698), - [anon_sym_DQUOTE] = ACTIONS(700), - [aux_sym_match_token1] = ACTIONS(696), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(696), - [aux_sym_address_family_token1] = ACTIONS(696), - [aux_sym_batch_mode_token1] = ACTIONS(696), - [aux_sym_bind_address_token1] = ACTIONS(696), - [aux_sym_bind_interface_token1] = ACTIONS(696), - [aux_sym_canonical_domains_token1] = ACTIONS(696), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(696), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(696), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(696), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(696), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(696), - [aux_sym_certificate_file_token1] = ACTIONS(696), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(696), - [aux_sym_channel_timeout_token1] = ACTIONS(696), - [aux_sym_check_host_ip_token1] = ACTIONS(696), - [aux_sym_ciphers_token1] = ACTIONS(696), - [aux_sym_cipher_token1] = ACTIONS(698), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(696), - [aux_sym_compression_token1] = ACTIONS(696), - [aux_sym_connection_attempts_token1] = ACTIONS(696), - [aux_sym_connect_timeout_token1] = ACTIONS(696), - [aux_sym_control_master_token1] = ACTIONS(696), - [aux_sym_control_path_token1] = ACTIONS(696), - [aux_sym_control_persist_token1] = ACTIONS(696), - [aux_sym_dynamic_forward_token1] = ACTIONS(696), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(696), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(696), - [aux_sym_escape_char_token1] = ACTIONS(696), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(696), - [aux_sym_fingerprint_hash_token1] = ACTIONS(696), - [aux_sym_fork_after_authentication_token1] = ACTIONS(696), - [aux_sym_forward_agent_token1] = ACTIONS(696), - [aux_sym_forward_x11_token1] = ACTIONS(698), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(696), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(696), - [aux_sym_gateway_ports_token1] = ACTIONS(696), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(696), - [aux_sym_gssapi_authentication_token1] = ACTIONS(696), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(696), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(696), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(696), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(696), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(696), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(696), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(696), - [aux_sym_hash_known_hosts_token1] = ACTIONS(696), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(696), - [aux_sym_hostbased_authentication_token1] = ACTIONS(696), - [aux_sym_host_key_algorithms_token1] = ACTIONS(696), - [aux_sym_host_key_alias_token1] = ACTIONS(696), - [aux_sym_hostname_token1] = ACTIONS(696), - [aux_sym_identities_only_token1] = ACTIONS(696), - [aux_sym_identity_agent_token1] = ACTIONS(696), - [aux_sym_identity_file_token1] = ACTIONS(696), - [aux_sym_ignore_unknown_token1] = ACTIONS(696), - [aux_sym_include_token1] = ACTIONS(696), - [aux_sym_ip_qos_token1] = ACTIONS(696), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(696), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(696), - [aux_sym_kex_algorithms_token1] = ACTIONS(696), - [aux_sym_known_hosts_command_token1] = ACTIONS(696), - [aux_sym_local_command_token1] = ACTIONS(696), - [aux_sym_local_forward_token1] = ACTIONS(696), - [aux_sym_log_level_token1] = ACTIONS(696), - [aux_sym_log_verbose_token1] = ACTIONS(696), - [aux_sym_macs_token1] = ACTIONS(696), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(696), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(696), - [aux_sym_password_authentication_token1] = ACTIONS(696), - [aux_sym_permit_local_command_token1] = ACTIONS(696), - [aux_sym_permit_remote_open_token1] = ACTIONS(696), - [aux_sym_pkcs11_provider_token1] = ACTIONS(696), - [aux_sym_port_token1] = ACTIONS(696), - [aux_sym_preferred_authentications_token1] = ACTIONS(696), - [aux_sym_protocol_token1] = ACTIONS(696), - [aux_sym_proxy_command_token1] = ACTIONS(696), - [aux_sym_proxy_jump_token1] = ACTIONS(696), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(696), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(696), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(696), - [aux_sym_pubkey_authentication_token1] = ACTIONS(696), - [aux_sym_rekey_limit_token1] = ACTIONS(696), - [aux_sym_remote_command_token1] = ACTIONS(696), - [aux_sym_remote_forward_token1] = ACTIONS(696), - [aux_sym_request_tty_token1] = ACTIONS(696), - [aux_sym_required_rsa_size_token1] = ACTIONS(696), - [aux_sym_revoked_host_keys_token1] = ACTIONS(696), - [aux_sym_security_key_provider_token1] = ACTIONS(696), - [aux_sym_send_env_token1] = ACTIONS(696), - [aux_sym_server_alive_count_max_token1] = ACTIONS(696), - [aux_sym_server_alive_interval_token1] = ACTIONS(696), - [aux_sym_session_type_token1] = ACTIONS(696), - [aux_sym_set_env_token1] = ACTIONS(696), - [aux_sym_stdin_null_token1] = ACTIONS(696), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(696), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(696), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(696), - [aux_sym_syslog_facility_token1] = ACTIONS(696), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(696), - [aux_sym_keep_alive_token1] = ACTIONS(696), - [aux_sym_tag_token1] = ACTIONS(696), - [aux_sym_tunnel_token1] = ACTIONS(698), - [aux_sym_tunnel_device_token1] = ACTIONS(696), - [aux_sym_update_host_keys_token1] = ACTIONS(696), - [aux_sym_use_keychain_token1] = ACTIONS(696), - [aux_sym_use_roaming_token1] = ACTIONS(696), - [aux_sym_user_token1] = ACTIONS(698), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(696), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(696), - [aux_sym_visual_host_key_token1] = ACTIONS(696), - [aux_sym_xauth_location_token1] = ACTIONS(696), + [ts_builtin_sym_end] = ACTIONS(701), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(705), + [aux_sym_match_token1] = ACTIONS(701), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(701), + [aux_sym_address_family_token1] = ACTIONS(701), + [aux_sym_batch_mode_token1] = ACTIONS(701), + [aux_sym_bind_address_token1] = ACTIONS(701), + [aux_sym_bind_interface_token1] = ACTIONS(701), + [aux_sym_canonical_domains_token1] = ACTIONS(701), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(701), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(701), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(701), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(701), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(701), + [aux_sym_certificate_file_token1] = ACTIONS(701), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(701), + [aux_sym_channel_timeout_token1] = ACTIONS(701), + [aux_sym_check_host_ip_token1] = ACTIONS(701), + [aux_sym_ciphers_token1] = ACTIONS(701), + [aux_sym_cipher_token1] = ACTIONS(703), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(701), + [aux_sym_compression_token1] = ACTIONS(701), + [aux_sym_connection_attempts_token1] = ACTIONS(701), + [aux_sym_connect_timeout_token1] = ACTIONS(701), + [aux_sym_control_master_token1] = ACTIONS(701), + [aux_sym_control_path_token1] = ACTIONS(701), + [aux_sym_control_persist_token1] = ACTIONS(701), + [aux_sym_dynamic_forward_token1] = ACTIONS(701), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(701), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(701), + [aux_sym_escape_char_token1] = ACTIONS(701), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(701), + [aux_sym_fingerprint_hash_token1] = ACTIONS(701), + [aux_sym_fork_after_authentication_token1] = ACTIONS(701), + [aux_sym_forward_agent_token1] = ACTIONS(701), + [aux_sym_forward_x11_token1] = ACTIONS(703), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(701), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(701), + [aux_sym_gateway_ports_token1] = ACTIONS(701), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(701), + [aux_sym_gssapi_authentication_token1] = ACTIONS(701), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(701), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(701), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(701), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(701), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(701), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(701), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(701), + [aux_sym_hash_known_hosts_token1] = ACTIONS(701), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(701), + [aux_sym_hostbased_authentication_token1] = ACTIONS(701), + [aux_sym_host_key_algorithms_token1] = ACTIONS(701), + [aux_sym_host_key_alias_token1] = ACTIONS(701), + [aux_sym_hostname_token1] = ACTIONS(701), + [aux_sym_identities_only_token1] = ACTIONS(701), + [aux_sym_identity_agent_token1] = ACTIONS(701), + [aux_sym_identity_file_token1] = ACTIONS(701), + [aux_sym_ignore_unknown_token1] = ACTIONS(701), + [aux_sym_include_token1] = ACTIONS(701), + [aux_sym_ip_qos_token1] = ACTIONS(701), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(701), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(701), + [aux_sym_kex_algorithms_token1] = ACTIONS(701), + [aux_sym_known_hosts_command_token1] = ACTIONS(701), + [aux_sym_local_command_token1] = ACTIONS(701), + [aux_sym_local_forward_token1] = ACTIONS(701), + [aux_sym_log_level_token1] = ACTIONS(701), + [aux_sym_log_verbose_token1] = ACTIONS(701), + [aux_sym_macs_token1] = ACTIONS(701), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(701), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(701), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(701), + [aux_sym_password_authentication_token1] = ACTIONS(701), + [aux_sym_permit_local_command_token1] = ACTIONS(701), + [aux_sym_permit_remote_open_token1] = ACTIONS(701), + [aux_sym_pkcs11_provider_token1] = ACTIONS(701), + [aux_sym_port_token1] = ACTIONS(701), + [aux_sym_preferred_authentications_token1] = ACTIONS(701), + [aux_sym_protocol_token1] = ACTIONS(701), + [aux_sym_proxy_command_token1] = ACTIONS(701), + [aux_sym_proxy_jump_token1] = ACTIONS(701), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(701), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(701), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(701), + [aux_sym_pubkey_authentication_token1] = ACTIONS(701), + [aux_sym_rekey_limit_token1] = ACTIONS(701), + [aux_sym_remote_command_token1] = ACTIONS(701), + [aux_sym_remote_forward_token1] = ACTIONS(701), + [aux_sym_request_tty_token1] = ACTIONS(701), + [aux_sym_required_rsa_size_token1] = ACTIONS(701), + [aux_sym_revoked_host_keys_token1] = ACTIONS(701), + [aux_sym_security_key_provider_token1] = ACTIONS(701), + [aux_sym_send_env_token1] = ACTIONS(701), + [aux_sym_server_alive_count_max_token1] = ACTIONS(701), + [aux_sym_server_alive_interval_token1] = ACTIONS(701), + [aux_sym_session_type_token1] = ACTIONS(701), + [aux_sym_set_env_token1] = ACTIONS(701), + [aux_sym_stdin_null_token1] = ACTIONS(701), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(701), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(701), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(701), + [aux_sym_syslog_facility_token1] = ACTIONS(701), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(701), + [aux_sym_keep_alive_token1] = ACTIONS(701), + [aux_sym_tag_token1] = ACTIONS(701), + [aux_sym_tunnel_token1] = ACTIONS(703), + [aux_sym_tunnel_device_token1] = ACTIONS(701), + [aux_sym_update_host_keys_token1] = ACTIONS(701), + [aux_sym_use_keychain_token1] = ACTIONS(701), + [aux_sym_use_roaming_token1] = ACTIONS(701), + [aux_sym_user_token1] = ACTIONS(703), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(701), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(701), + [aux_sym_visual_host_key_token1] = ACTIONS(701), + [aux_sym_xauth_location_token1] = ACTIONS(701), }, [24] = { - [ts_builtin_sym_end] = ACTIONS(702), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(706), - [aux_sym_match_token1] = ACTIONS(702), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(702), - [aux_sym_address_family_token1] = ACTIONS(702), - [aux_sym_batch_mode_token1] = ACTIONS(702), - [aux_sym_bind_address_token1] = ACTIONS(702), - [aux_sym_bind_interface_token1] = ACTIONS(702), - [aux_sym_canonical_domains_token1] = ACTIONS(702), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(702), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(702), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(702), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(702), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(702), - [aux_sym_certificate_file_token1] = ACTIONS(702), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(702), - [aux_sym_channel_timeout_token1] = ACTIONS(702), - [aux_sym_check_host_ip_token1] = ACTIONS(702), - [aux_sym_ciphers_token1] = ACTIONS(702), - [aux_sym_cipher_token1] = ACTIONS(704), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(702), - [aux_sym_compression_token1] = ACTIONS(702), - [aux_sym_connection_attempts_token1] = ACTIONS(702), - [aux_sym_connect_timeout_token1] = ACTIONS(702), - [aux_sym_control_master_token1] = ACTIONS(702), - [aux_sym_control_path_token1] = ACTIONS(702), - [aux_sym_control_persist_token1] = ACTIONS(702), - [aux_sym_dynamic_forward_token1] = ACTIONS(702), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(702), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(702), - [aux_sym_escape_char_token1] = ACTIONS(702), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(702), - [aux_sym_fingerprint_hash_token1] = ACTIONS(702), - [aux_sym_fork_after_authentication_token1] = ACTIONS(702), - [aux_sym_forward_agent_token1] = ACTIONS(702), - [aux_sym_forward_x11_token1] = ACTIONS(704), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(702), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(702), - [aux_sym_gateway_ports_token1] = ACTIONS(702), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(702), - [aux_sym_gssapi_authentication_token1] = ACTIONS(702), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(702), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(702), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(702), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(702), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(702), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(702), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(702), - [aux_sym_hash_known_hosts_token1] = ACTIONS(702), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(702), - [aux_sym_hostbased_authentication_token1] = ACTIONS(702), - [aux_sym_host_key_algorithms_token1] = ACTIONS(702), - [aux_sym_host_key_alias_token1] = ACTIONS(702), - [aux_sym_hostname_token1] = ACTIONS(702), - [aux_sym_identities_only_token1] = ACTIONS(702), - [aux_sym_identity_agent_token1] = ACTIONS(702), - [aux_sym_identity_file_token1] = ACTIONS(702), - [aux_sym_ignore_unknown_token1] = ACTIONS(702), - [aux_sym_include_token1] = ACTIONS(702), - [aux_sym_ip_qos_token1] = ACTIONS(702), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(702), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(702), - [aux_sym_kex_algorithms_token1] = ACTIONS(702), - [aux_sym_known_hosts_command_token1] = ACTIONS(702), - [aux_sym_local_command_token1] = ACTIONS(702), - [aux_sym_local_forward_token1] = ACTIONS(702), - [aux_sym_log_level_token1] = ACTIONS(702), - [aux_sym_log_verbose_token1] = ACTIONS(702), - [aux_sym_macs_token1] = ACTIONS(702), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(702), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(702), - [aux_sym_password_authentication_token1] = ACTIONS(702), - [aux_sym_permit_local_command_token1] = ACTIONS(702), - [aux_sym_permit_remote_open_token1] = ACTIONS(702), - [aux_sym_pkcs11_provider_token1] = ACTIONS(702), - [aux_sym_port_token1] = ACTIONS(702), - [aux_sym_preferred_authentications_token1] = ACTIONS(702), - [aux_sym_protocol_token1] = ACTIONS(702), - [aux_sym_proxy_command_token1] = ACTIONS(702), - [aux_sym_proxy_jump_token1] = ACTIONS(702), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(702), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(702), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(702), - [aux_sym_pubkey_authentication_token1] = ACTIONS(702), - [aux_sym_rekey_limit_token1] = ACTIONS(702), - [aux_sym_remote_command_token1] = ACTIONS(702), - [aux_sym_remote_forward_token1] = ACTIONS(702), - [aux_sym_request_tty_token1] = ACTIONS(702), - [aux_sym_required_rsa_size_token1] = ACTIONS(702), - [aux_sym_revoked_host_keys_token1] = ACTIONS(702), - [aux_sym_security_key_provider_token1] = ACTIONS(702), - [aux_sym_send_env_token1] = ACTIONS(702), - [aux_sym_server_alive_count_max_token1] = ACTIONS(702), - [aux_sym_server_alive_interval_token1] = ACTIONS(702), - [aux_sym_session_type_token1] = ACTIONS(702), - [aux_sym_set_env_token1] = ACTIONS(702), - [aux_sym_stdin_null_token1] = ACTIONS(702), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(702), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(702), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(702), - [aux_sym_syslog_facility_token1] = ACTIONS(702), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(702), - [aux_sym_keep_alive_token1] = ACTIONS(702), - [aux_sym_tag_token1] = ACTIONS(702), - [aux_sym_tunnel_token1] = ACTIONS(704), - [aux_sym_tunnel_device_token1] = ACTIONS(702), - [aux_sym_update_host_keys_token1] = ACTIONS(702), - [aux_sym_use_keychain_token1] = ACTIONS(702), - [aux_sym_use_roaming_token1] = ACTIONS(702), - [aux_sym_user_token1] = ACTIONS(704), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(702), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(702), - [aux_sym_visual_host_key_token1] = ACTIONS(702), - [aux_sym_xauth_location_token1] = ACTIONS(702), + [ts_builtin_sym_end] = ACTIONS(707), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(709), + [anon_sym_DQUOTE] = ACTIONS(711), + [aux_sym_match_token1] = ACTIONS(707), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(707), + [aux_sym_address_family_token1] = ACTIONS(707), + [aux_sym_batch_mode_token1] = ACTIONS(707), + [aux_sym_bind_address_token1] = ACTIONS(707), + [aux_sym_bind_interface_token1] = ACTIONS(707), + [aux_sym_canonical_domains_token1] = ACTIONS(707), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(707), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(707), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(707), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(707), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(707), + [aux_sym_certificate_file_token1] = ACTIONS(707), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(707), + [aux_sym_channel_timeout_token1] = ACTIONS(707), + [aux_sym_check_host_ip_token1] = ACTIONS(707), + [aux_sym_ciphers_token1] = ACTIONS(707), + [aux_sym_cipher_token1] = ACTIONS(709), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(707), + [aux_sym_compression_token1] = ACTIONS(707), + [aux_sym_connection_attempts_token1] = ACTIONS(707), + [aux_sym_connect_timeout_token1] = ACTIONS(707), + [aux_sym_control_master_token1] = ACTIONS(707), + [aux_sym_control_path_token1] = ACTIONS(707), + [aux_sym_control_persist_token1] = ACTIONS(707), + [aux_sym_dynamic_forward_token1] = ACTIONS(707), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(707), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(707), + [aux_sym_escape_char_token1] = ACTIONS(707), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(707), + [aux_sym_fingerprint_hash_token1] = ACTIONS(707), + [aux_sym_fork_after_authentication_token1] = ACTIONS(707), + [aux_sym_forward_agent_token1] = ACTIONS(707), + [aux_sym_forward_x11_token1] = ACTIONS(709), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(707), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(707), + [aux_sym_gateway_ports_token1] = ACTIONS(707), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(707), + [aux_sym_gssapi_authentication_token1] = ACTIONS(707), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(707), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(707), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(707), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(707), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(707), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(707), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(707), + [aux_sym_hash_known_hosts_token1] = ACTIONS(707), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(707), + [aux_sym_hostbased_authentication_token1] = ACTIONS(707), + [aux_sym_host_key_algorithms_token1] = ACTIONS(707), + [aux_sym_host_key_alias_token1] = ACTIONS(707), + [aux_sym_hostname_token1] = ACTIONS(707), + [aux_sym_identities_only_token1] = ACTIONS(707), + [aux_sym_identity_agent_token1] = ACTIONS(707), + [aux_sym_identity_file_token1] = ACTIONS(707), + [aux_sym_ignore_unknown_token1] = ACTIONS(707), + [aux_sym_include_token1] = ACTIONS(707), + [aux_sym_ip_qos_token1] = ACTIONS(707), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(707), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(707), + [aux_sym_kex_algorithms_token1] = ACTIONS(707), + [aux_sym_known_hosts_command_token1] = ACTIONS(707), + [aux_sym_local_command_token1] = ACTIONS(707), + [aux_sym_local_forward_token1] = ACTIONS(707), + [aux_sym_log_level_token1] = ACTIONS(707), + [aux_sym_log_verbose_token1] = ACTIONS(707), + [aux_sym_macs_token1] = ACTIONS(707), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(707), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(707), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(707), + [aux_sym_password_authentication_token1] = ACTIONS(707), + [aux_sym_permit_local_command_token1] = ACTIONS(707), + [aux_sym_permit_remote_open_token1] = ACTIONS(707), + [aux_sym_pkcs11_provider_token1] = ACTIONS(707), + [aux_sym_port_token1] = ACTIONS(707), + [aux_sym_preferred_authentications_token1] = ACTIONS(707), + [aux_sym_protocol_token1] = ACTIONS(707), + [aux_sym_proxy_command_token1] = ACTIONS(707), + [aux_sym_proxy_jump_token1] = ACTIONS(707), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(707), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(707), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(707), + [aux_sym_pubkey_authentication_token1] = ACTIONS(707), + [aux_sym_rekey_limit_token1] = ACTIONS(707), + [aux_sym_remote_command_token1] = ACTIONS(707), + [aux_sym_remote_forward_token1] = ACTIONS(707), + [aux_sym_request_tty_token1] = ACTIONS(707), + [aux_sym_required_rsa_size_token1] = ACTIONS(707), + [aux_sym_revoked_host_keys_token1] = ACTIONS(707), + [aux_sym_security_key_provider_token1] = ACTIONS(707), + [aux_sym_send_env_token1] = ACTIONS(707), + [aux_sym_server_alive_count_max_token1] = ACTIONS(707), + [aux_sym_server_alive_interval_token1] = ACTIONS(707), + [aux_sym_session_type_token1] = ACTIONS(707), + [aux_sym_set_env_token1] = ACTIONS(707), + [aux_sym_stdin_null_token1] = ACTIONS(707), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(707), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(707), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(707), + [aux_sym_syslog_facility_token1] = ACTIONS(707), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(707), + [aux_sym_keep_alive_token1] = ACTIONS(707), + [aux_sym_tag_token1] = ACTIONS(707), + [aux_sym_tunnel_token1] = ACTIONS(709), + [aux_sym_tunnel_device_token1] = ACTIONS(707), + [aux_sym_update_host_keys_token1] = ACTIONS(707), + [aux_sym_use_keychain_token1] = ACTIONS(707), + [aux_sym_use_roaming_token1] = ACTIONS(707), + [aux_sym_user_token1] = ACTIONS(709), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(707), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(707), + [aux_sym_visual_host_key_token1] = ACTIONS(707), + [aux_sym_xauth_location_token1] = ACTIONS(707), }, [25] = { - [ts_builtin_sym_end] = ACTIONS(708), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(710), - [anon_sym_DQUOTE] = ACTIONS(712), - [aux_sym_match_token1] = ACTIONS(708), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(708), - [aux_sym_address_family_token1] = ACTIONS(708), - [aux_sym_batch_mode_token1] = ACTIONS(708), - [aux_sym_bind_address_token1] = ACTIONS(708), - [aux_sym_bind_interface_token1] = ACTIONS(708), - [aux_sym_canonical_domains_token1] = ACTIONS(708), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(708), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(708), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(708), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(708), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(708), - [aux_sym_certificate_file_token1] = ACTIONS(708), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(708), - [aux_sym_channel_timeout_token1] = ACTIONS(708), - [aux_sym_check_host_ip_token1] = ACTIONS(708), - [aux_sym_ciphers_token1] = ACTIONS(708), - [aux_sym_cipher_token1] = ACTIONS(710), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(708), - [aux_sym_compression_token1] = ACTIONS(708), - [aux_sym_connection_attempts_token1] = ACTIONS(708), - [aux_sym_connect_timeout_token1] = ACTIONS(708), - [aux_sym_control_master_token1] = ACTIONS(708), - [aux_sym_control_path_token1] = ACTIONS(708), - [aux_sym_control_persist_token1] = ACTIONS(708), - [aux_sym_dynamic_forward_token1] = ACTIONS(708), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(708), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(708), - [aux_sym_escape_char_token1] = ACTIONS(708), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(708), - [aux_sym_fingerprint_hash_token1] = ACTIONS(708), - [aux_sym_fork_after_authentication_token1] = ACTIONS(708), - [aux_sym_forward_agent_token1] = ACTIONS(708), - [aux_sym_forward_x11_token1] = ACTIONS(710), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(708), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(708), - [aux_sym_gateway_ports_token1] = ACTIONS(708), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(708), - [aux_sym_gssapi_authentication_token1] = ACTIONS(708), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(708), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(708), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(708), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(708), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(708), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(708), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(708), - [aux_sym_hash_known_hosts_token1] = ACTIONS(708), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(708), - [aux_sym_hostbased_authentication_token1] = ACTIONS(708), - [aux_sym_host_key_algorithms_token1] = ACTIONS(708), - [aux_sym_host_key_alias_token1] = ACTIONS(708), - [aux_sym_hostname_token1] = ACTIONS(708), - [aux_sym_identities_only_token1] = ACTIONS(708), - [aux_sym_identity_agent_token1] = ACTIONS(708), - [aux_sym_identity_file_token1] = ACTIONS(708), - [aux_sym_ignore_unknown_token1] = ACTIONS(708), - [aux_sym_include_token1] = ACTIONS(708), - [aux_sym_ip_qos_token1] = ACTIONS(708), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(708), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(708), - [aux_sym_kex_algorithms_token1] = ACTIONS(708), - [aux_sym_known_hosts_command_token1] = ACTIONS(708), - [aux_sym_local_command_token1] = ACTIONS(708), - [aux_sym_local_forward_token1] = ACTIONS(708), - [aux_sym_log_level_token1] = ACTIONS(708), - [aux_sym_log_verbose_token1] = ACTIONS(708), - [aux_sym_macs_token1] = ACTIONS(708), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(708), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(708), - [aux_sym_password_authentication_token1] = ACTIONS(708), - [aux_sym_permit_local_command_token1] = ACTIONS(708), - [aux_sym_permit_remote_open_token1] = ACTIONS(708), - [aux_sym_pkcs11_provider_token1] = ACTIONS(708), - [aux_sym_port_token1] = ACTIONS(708), - [aux_sym_preferred_authentications_token1] = ACTIONS(708), - [aux_sym_protocol_token1] = ACTIONS(708), - [aux_sym_proxy_command_token1] = ACTIONS(708), - [aux_sym_proxy_jump_token1] = ACTIONS(708), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(708), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(708), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(708), - [aux_sym_pubkey_authentication_token1] = ACTIONS(708), - [aux_sym_rekey_limit_token1] = ACTIONS(708), - [aux_sym_remote_command_token1] = ACTIONS(708), - [aux_sym_remote_forward_token1] = ACTIONS(708), - [aux_sym_request_tty_token1] = ACTIONS(708), - [aux_sym_required_rsa_size_token1] = ACTIONS(708), - [aux_sym_revoked_host_keys_token1] = ACTIONS(708), - [aux_sym_security_key_provider_token1] = ACTIONS(708), - [aux_sym_send_env_token1] = ACTIONS(708), - [aux_sym_server_alive_count_max_token1] = ACTIONS(708), - [aux_sym_server_alive_interval_token1] = ACTIONS(708), - [aux_sym_session_type_token1] = ACTIONS(708), - [aux_sym_set_env_token1] = ACTIONS(708), - [aux_sym_stdin_null_token1] = ACTIONS(708), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(708), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(708), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(708), - [aux_sym_syslog_facility_token1] = ACTIONS(708), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(708), - [aux_sym_keep_alive_token1] = ACTIONS(708), - [aux_sym_tag_token1] = ACTIONS(708), - [aux_sym_tunnel_token1] = ACTIONS(710), - [aux_sym_tunnel_device_token1] = ACTIONS(708), - [aux_sym_update_host_keys_token1] = ACTIONS(708), - [aux_sym_use_keychain_token1] = ACTIONS(708), - [aux_sym_use_roaming_token1] = ACTIONS(708), - [aux_sym_user_token1] = ACTIONS(710), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(708), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(708), - [aux_sym_visual_host_key_token1] = ACTIONS(708), - [aux_sym_xauth_location_token1] = ACTIONS(708), + [ts_builtin_sym_end] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(715), + [anon_sym_DQUOTE] = ACTIONS(717), + [aux_sym_match_token1] = ACTIONS(713), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(713), + [aux_sym_address_family_token1] = ACTIONS(713), + [aux_sym_batch_mode_token1] = ACTIONS(713), + [aux_sym_bind_address_token1] = ACTIONS(713), + [aux_sym_bind_interface_token1] = ACTIONS(713), + [aux_sym_canonical_domains_token1] = ACTIONS(713), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(713), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(713), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(713), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(713), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(713), + [aux_sym_certificate_file_token1] = ACTIONS(713), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(713), + [aux_sym_channel_timeout_token1] = ACTIONS(713), + [aux_sym_check_host_ip_token1] = ACTIONS(713), + [aux_sym_ciphers_token1] = ACTIONS(713), + [aux_sym_cipher_token1] = ACTIONS(715), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(713), + [aux_sym_compression_token1] = ACTIONS(713), + [aux_sym_connection_attempts_token1] = ACTIONS(713), + [aux_sym_connect_timeout_token1] = ACTIONS(713), + [aux_sym_control_master_token1] = ACTIONS(713), + [aux_sym_control_path_token1] = ACTIONS(713), + [aux_sym_control_persist_token1] = ACTIONS(713), + [aux_sym_dynamic_forward_token1] = ACTIONS(713), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(713), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(713), + [aux_sym_escape_char_token1] = ACTIONS(713), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(713), + [aux_sym_fingerprint_hash_token1] = ACTIONS(713), + [aux_sym_fork_after_authentication_token1] = ACTIONS(713), + [aux_sym_forward_agent_token1] = ACTIONS(713), + [aux_sym_forward_x11_token1] = ACTIONS(715), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(713), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(713), + [aux_sym_gateway_ports_token1] = ACTIONS(713), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(713), + [aux_sym_gssapi_authentication_token1] = ACTIONS(713), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(713), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(713), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(713), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(713), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(713), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(713), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(713), + [aux_sym_hash_known_hosts_token1] = ACTIONS(713), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(713), + [aux_sym_hostbased_authentication_token1] = ACTIONS(713), + [aux_sym_host_key_algorithms_token1] = ACTIONS(713), + [aux_sym_host_key_alias_token1] = ACTIONS(713), + [aux_sym_hostname_token1] = ACTIONS(713), + [aux_sym_identities_only_token1] = ACTIONS(713), + [aux_sym_identity_agent_token1] = ACTIONS(713), + [aux_sym_identity_file_token1] = ACTIONS(713), + [aux_sym_ignore_unknown_token1] = ACTIONS(713), + [aux_sym_include_token1] = ACTIONS(713), + [aux_sym_ip_qos_token1] = ACTIONS(713), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(713), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(713), + [aux_sym_kex_algorithms_token1] = ACTIONS(713), + [aux_sym_known_hosts_command_token1] = ACTIONS(713), + [aux_sym_local_command_token1] = ACTIONS(713), + [aux_sym_local_forward_token1] = ACTIONS(713), + [aux_sym_log_level_token1] = ACTIONS(713), + [aux_sym_log_verbose_token1] = ACTIONS(713), + [aux_sym_macs_token1] = ACTIONS(713), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(713), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(713), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(713), + [aux_sym_password_authentication_token1] = ACTIONS(713), + [aux_sym_permit_local_command_token1] = ACTIONS(713), + [aux_sym_permit_remote_open_token1] = ACTIONS(713), + [aux_sym_pkcs11_provider_token1] = ACTIONS(713), + [aux_sym_port_token1] = ACTIONS(713), + [aux_sym_preferred_authentications_token1] = ACTIONS(713), + [aux_sym_protocol_token1] = ACTIONS(713), + [aux_sym_proxy_command_token1] = ACTIONS(713), + [aux_sym_proxy_jump_token1] = ACTIONS(713), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(713), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(713), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(713), + [aux_sym_pubkey_authentication_token1] = ACTIONS(713), + [aux_sym_rekey_limit_token1] = ACTIONS(713), + [aux_sym_remote_command_token1] = ACTIONS(713), + [aux_sym_remote_forward_token1] = ACTIONS(713), + [aux_sym_request_tty_token1] = ACTIONS(713), + [aux_sym_required_rsa_size_token1] = ACTIONS(713), + [aux_sym_revoked_host_keys_token1] = ACTIONS(713), + [aux_sym_security_key_provider_token1] = ACTIONS(713), + [aux_sym_send_env_token1] = ACTIONS(713), + [aux_sym_server_alive_count_max_token1] = ACTIONS(713), + [aux_sym_server_alive_interval_token1] = ACTIONS(713), + [aux_sym_session_type_token1] = ACTIONS(713), + [aux_sym_set_env_token1] = ACTIONS(713), + [aux_sym_stdin_null_token1] = ACTIONS(713), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(713), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(713), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(713), + [aux_sym_syslog_facility_token1] = ACTIONS(713), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(713), + [aux_sym_keep_alive_token1] = ACTIONS(713), + [aux_sym_tag_token1] = ACTIONS(713), + [aux_sym_tunnel_token1] = ACTIONS(715), + [aux_sym_tunnel_device_token1] = ACTIONS(713), + [aux_sym_update_host_keys_token1] = ACTIONS(713), + [aux_sym_use_keychain_token1] = ACTIONS(713), + [aux_sym_use_roaming_token1] = ACTIONS(713), + [aux_sym_user_token1] = ACTIONS(715), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(713), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(713), + [aux_sym_visual_host_key_token1] = ACTIONS(713), + [aux_sym_xauth_location_token1] = ACTIONS(713), }, [26] = { - [ts_builtin_sym_end] = ACTIONS(714), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(716), - [anon_sym_DQUOTE] = ACTIONS(718), - [aux_sym_match_token1] = ACTIONS(714), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(714), - [aux_sym_address_family_token1] = ACTIONS(714), - [aux_sym_batch_mode_token1] = ACTIONS(714), - [aux_sym_bind_address_token1] = ACTIONS(714), - [aux_sym_bind_interface_token1] = ACTIONS(714), - [aux_sym_canonical_domains_token1] = ACTIONS(714), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(714), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(714), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(714), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(714), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(714), - [aux_sym_certificate_file_token1] = ACTIONS(714), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(714), - [aux_sym_channel_timeout_token1] = ACTIONS(714), - [aux_sym_check_host_ip_token1] = ACTIONS(714), - [aux_sym_ciphers_token1] = ACTIONS(714), - [aux_sym_cipher_token1] = ACTIONS(716), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(714), - [aux_sym_compression_token1] = ACTIONS(714), - [aux_sym_connection_attempts_token1] = ACTIONS(714), - [aux_sym_connect_timeout_token1] = ACTIONS(714), - [aux_sym_control_master_token1] = ACTIONS(714), - [aux_sym_control_path_token1] = ACTIONS(714), - [aux_sym_control_persist_token1] = ACTIONS(714), - [aux_sym_dynamic_forward_token1] = ACTIONS(714), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(714), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(714), - [aux_sym_escape_char_token1] = ACTIONS(714), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(714), - [aux_sym_fingerprint_hash_token1] = ACTIONS(714), - [aux_sym_fork_after_authentication_token1] = ACTIONS(714), - [aux_sym_forward_agent_token1] = ACTIONS(714), - [aux_sym_forward_x11_token1] = ACTIONS(716), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(714), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(714), - [aux_sym_gateway_ports_token1] = ACTIONS(714), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(714), - [aux_sym_gssapi_authentication_token1] = ACTIONS(714), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(714), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(714), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(714), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(714), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(714), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(714), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(714), - [aux_sym_hash_known_hosts_token1] = ACTIONS(714), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(714), - [aux_sym_hostbased_authentication_token1] = ACTIONS(714), - [aux_sym_host_key_algorithms_token1] = ACTIONS(714), - [aux_sym_host_key_alias_token1] = ACTIONS(714), - [aux_sym_hostname_token1] = ACTIONS(714), - [aux_sym_identities_only_token1] = ACTIONS(714), - [aux_sym_identity_agent_token1] = ACTIONS(714), - [aux_sym_identity_file_token1] = ACTIONS(714), - [aux_sym_ignore_unknown_token1] = ACTIONS(714), - [aux_sym_include_token1] = ACTIONS(714), - [aux_sym_ip_qos_token1] = ACTIONS(714), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(714), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(714), - [aux_sym_kex_algorithms_token1] = ACTIONS(714), - [aux_sym_known_hosts_command_token1] = ACTIONS(714), - [aux_sym_local_command_token1] = ACTIONS(714), - [aux_sym_local_forward_token1] = ACTIONS(714), - [aux_sym_log_level_token1] = ACTIONS(714), - [aux_sym_log_verbose_token1] = ACTIONS(714), - [aux_sym_macs_token1] = ACTIONS(714), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(714), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(714), - [aux_sym_password_authentication_token1] = ACTIONS(714), - [aux_sym_permit_local_command_token1] = ACTIONS(714), - [aux_sym_permit_remote_open_token1] = ACTIONS(714), - [aux_sym_pkcs11_provider_token1] = ACTIONS(714), - [aux_sym_port_token1] = ACTIONS(714), - [aux_sym_preferred_authentications_token1] = ACTIONS(714), - [aux_sym_protocol_token1] = ACTIONS(714), - [aux_sym_proxy_command_token1] = ACTIONS(714), - [aux_sym_proxy_jump_token1] = ACTIONS(714), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(714), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(714), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(714), - [aux_sym_pubkey_authentication_token1] = ACTIONS(714), - [aux_sym_rekey_limit_token1] = ACTIONS(714), - [aux_sym_remote_command_token1] = ACTIONS(714), - [aux_sym_remote_forward_token1] = ACTIONS(714), - [aux_sym_request_tty_token1] = ACTIONS(714), - [aux_sym_required_rsa_size_token1] = ACTIONS(714), - [aux_sym_revoked_host_keys_token1] = ACTIONS(714), - [aux_sym_security_key_provider_token1] = ACTIONS(714), - [aux_sym_send_env_token1] = ACTIONS(714), - [aux_sym_server_alive_count_max_token1] = ACTIONS(714), - [aux_sym_server_alive_interval_token1] = ACTIONS(714), - [aux_sym_session_type_token1] = ACTIONS(714), - [aux_sym_set_env_token1] = ACTIONS(714), - [aux_sym_stdin_null_token1] = ACTIONS(714), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(714), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(714), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(714), - [aux_sym_syslog_facility_token1] = ACTIONS(714), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(714), - [aux_sym_keep_alive_token1] = ACTIONS(714), - [aux_sym_tag_token1] = ACTIONS(714), - [aux_sym_tunnel_token1] = ACTIONS(716), - [aux_sym_tunnel_device_token1] = ACTIONS(714), - [aux_sym_update_host_keys_token1] = ACTIONS(714), - [aux_sym_use_keychain_token1] = ACTIONS(714), - [aux_sym_use_roaming_token1] = ACTIONS(714), - [aux_sym_user_token1] = ACTIONS(716), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(714), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(714), - [aux_sym_visual_host_key_token1] = ACTIONS(714), - [aux_sym_xauth_location_token1] = ACTIONS(714), + [ts_builtin_sym_end] = ACTIONS(719), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(721), + [anon_sym_DQUOTE] = ACTIONS(723), + [aux_sym_match_token1] = ACTIONS(719), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(719), + [aux_sym_address_family_token1] = ACTIONS(719), + [aux_sym_batch_mode_token1] = ACTIONS(719), + [aux_sym_bind_address_token1] = ACTIONS(719), + [aux_sym_bind_interface_token1] = ACTIONS(719), + [aux_sym_canonical_domains_token1] = ACTIONS(719), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(719), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(719), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(719), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(719), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(719), + [aux_sym_certificate_file_token1] = ACTIONS(719), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(719), + [aux_sym_channel_timeout_token1] = ACTIONS(719), + [aux_sym_check_host_ip_token1] = ACTIONS(719), + [aux_sym_ciphers_token1] = ACTIONS(719), + [aux_sym_cipher_token1] = ACTIONS(721), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(719), + [aux_sym_compression_token1] = ACTIONS(719), + [aux_sym_connection_attempts_token1] = ACTIONS(719), + [aux_sym_connect_timeout_token1] = ACTIONS(719), + [aux_sym_control_master_token1] = ACTIONS(719), + [aux_sym_control_path_token1] = ACTIONS(719), + [aux_sym_control_persist_token1] = ACTIONS(719), + [aux_sym_dynamic_forward_token1] = ACTIONS(719), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(719), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(719), + [aux_sym_escape_char_token1] = ACTIONS(719), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(719), + [aux_sym_fingerprint_hash_token1] = ACTIONS(719), + [aux_sym_fork_after_authentication_token1] = ACTIONS(719), + [aux_sym_forward_agent_token1] = ACTIONS(719), + [aux_sym_forward_x11_token1] = ACTIONS(721), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(719), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(719), + [aux_sym_gateway_ports_token1] = ACTIONS(719), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(719), + [aux_sym_gssapi_authentication_token1] = ACTIONS(719), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(719), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(719), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(719), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(719), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(719), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(719), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(719), + [aux_sym_hash_known_hosts_token1] = ACTIONS(719), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(719), + [aux_sym_hostbased_authentication_token1] = ACTIONS(719), + [aux_sym_host_key_algorithms_token1] = ACTIONS(719), + [aux_sym_host_key_alias_token1] = ACTIONS(719), + [aux_sym_hostname_token1] = ACTIONS(719), + [aux_sym_identities_only_token1] = ACTIONS(719), + [aux_sym_identity_agent_token1] = ACTIONS(719), + [aux_sym_identity_file_token1] = ACTIONS(719), + [aux_sym_ignore_unknown_token1] = ACTIONS(719), + [aux_sym_include_token1] = ACTIONS(719), + [aux_sym_ip_qos_token1] = ACTIONS(719), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(719), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(719), + [aux_sym_kex_algorithms_token1] = ACTIONS(719), + [aux_sym_known_hosts_command_token1] = ACTIONS(719), + [aux_sym_local_command_token1] = ACTIONS(719), + [aux_sym_local_forward_token1] = ACTIONS(719), + [aux_sym_log_level_token1] = ACTIONS(719), + [aux_sym_log_verbose_token1] = ACTIONS(719), + [aux_sym_macs_token1] = ACTIONS(719), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(719), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(719), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(719), + [aux_sym_password_authentication_token1] = ACTIONS(719), + [aux_sym_permit_local_command_token1] = ACTIONS(719), + [aux_sym_permit_remote_open_token1] = ACTIONS(719), + [aux_sym_pkcs11_provider_token1] = ACTIONS(719), + [aux_sym_port_token1] = ACTIONS(719), + [aux_sym_preferred_authentications_token1] = ACTIONS(719), + [aux_sym_protocol_token1] = ACTIONS(719), + [aux_sym_proxy_command_token1] = ACTIONS(719), + [aux_sym_proxy_jump_token1] = ACTIONS(719), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(719), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(719), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(719), + [aux_sym_pubkey_authentication_token1] = ACTIONS(719), + [aux_sym_rekey_limit_token1] = ACTIONS(719), + [aux_sym_remote_command_token1] = ACTIONS(719), + [aux_sym_remote_forward_token1] = ACTIONS(719), + [aux_sym_request_tty_token1] = ACTIONS(719), + [aux_sym_required_rsa_size_token1] = ACTIONS(719), + [aux_sym_revoked_host_keys_token1] = ACTIONS(719), + [aux_sym_security_key_provider_token1] = ACTIONS(719), + [aux_sym_send_env_token1] = ACTIONS(719), + [aux_sym_server_alive_count_max_token1] = ACTIONS(719), + [aux_sym_server_alive_interval_token1] = ACTIONS(719), + [aux_sym_session_type_token1] = ACTIONS(719), + [aux_sym_set_env_token1] = ACTIONS(719), + [aux_sym_stdin_null_token1] = ACTIONS(719), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(719), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(719), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(719), + [aux_sym_syslog_facility_token1] = ACTIONS(719), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(719), + [aux_sym_keep_alive_token1] = ACTIONS(719), + [aux_sym_tag_token1] = ACTIONS(719), + [aux_sym_tunnel_token1] = ACTIONS(721), + [aux_sym_tunnel_device_token1] = ACTIONS(719), + [aux_sym_update_host_keys_token1] = ACTIONS(719), + [aux_sym_use_keychain_token1] = ACTIONS(719), + [aux_sym_use_roaming_token1] = ACTIONS(719), + [aux_sym_user_token1] = ACTIONS(721), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(719), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(719), + [aux_sym_visual_host_key_token1] = ACTIONS(719), + [aux_sym_xauth_location_token1] = ACTIONS(719), }, [27] = { - [ts_builtin_sym_end] = ACTIONS(720), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(722), - [anon_sym_DQUOTE] = ACTIONS(724), - [aux_sym_match_token1] = ACTIONS(720), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(720), - [aux_sym_address_family_token1] = ACTIONS(720), - [aux_sym_batch_mode_token1] = ACTIONS(720), - [aux_sym_bind_address_token1] = ACTIONS(720), - [aux_sym_bind_interface_token1] = ACTIONS(720), - [aux_sym_canonical_domains_token1] = ACTIONS(720), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(720), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(720), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(720), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(720), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(720), - [aux_sym_certificate_file_token1] = ACTIONS(720), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(720), - [aux_sym_channel_timeout_token1] = ACTIONS(720), - [aux_sym_check_host_ip_token1] = ACTIONS(720), - [aux_sym_ciphers_token1] = ACTIONS(720), - [aux_sym_cipher_token1] = ACTIONS(722), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(720), - [aux_sym_compression_token1] = ACTIONS(720), - [aux_sym_connection_attempts_token1] = ACTIONS(720), - [aux_sym_connect_timeout_token1] = ACTIONS(720), - [aux_sym_control_master_token1] = ACTIONS(720), - [aux_sym_control_path_token1] = ACTIONS(720), - [aux_sym_control_persist_token1] = ACTIONS(720), - [aux_sym_dynamic_forward_token1] = ACTIONS(720), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(720), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(720), - [aux_sym_escape_char_token1] = ACTIONS(720), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(720), - [aux_sym_fingerprint_hash_token1] = ACTIONS(720), - [aux_sym_fork_after_authentication_token1] = ACTIONS(720), - [aux_sym_forward_agent_token1] = ACTIONS(720), - [aux_sym_forward_x11_token1] = ACTIONS(722), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(720), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(720), - [aux_sym_gateway_ports_token1] = ACTIONS(720), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(720), - [aux_sym_gssapi_authentication_token1] = ACTIONS(720), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(720), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(720), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(720), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(720), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(720), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(720), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(720), - [aux_sym_hash_known_hosts_token1] = ACTIONS(720), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(720), - [aux_sym_hostbased_authentication_token1] = ACTIONS(720), - [aux_sym_host_key_algorithms_token1] = ACTIONS(720), - [aux_sym_host_key_alias_token1] = ACTIONS(720), - [aux_sym_hostname_token1] = ACTIONS(720), - [aux_sym_identities_only_token1] = ACTIONS(720), - [aux_sym_identity_agent_token1] = ACTIONS(720), - [aux_sym_identity_file_token1] = ACTIONS(720), - [aux_sym_ignore_unknown_token1] = ACTIONS(720), - [aux_sym_include_token1] = ACTIONS(720), - [aux_sym_ip_qos_token1] = ACTIONS(720), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(720), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(720), - [aux_sym_kex_algorithms_token1] = ACTIONS(720), - [aux_sym_known_hosts_command_token1] = ACTIONS(720), - [aux_sym_local_command_token1] = ACTIONS(720), - [aux_sym_local_forward_token1] = ACTIONS(720), - [aux_sym_log_level_token1] = ACTIONS(720), - [aux_sym_log_verbose_token1] = ACTIONS(720), - [aux_sym_macs_token1] = ACTIONS(720), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(720), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(720), - [aux_sym_password_authentication_token1] = ACTIONS(720), - [aux_sym_permit_local_command_token1] = ACTIONS(720), - [aux_sym_permit_remote_open_token1] = ACTIONS(720), - [aux_sym_pkcs11_provider_token1] = ACTIONS(720), - [aux_sym_port_token1] = ACTIONS(720), - [aux_sym_preferred_authentications_token1] = ACTIONS(720), - [aux_sym_protocol_token1] = ACTIONS(720), - [aux_sym_proxy_command_token1] = ACTIONS(720), - [aux_sym_proxy_jump_token1] = ACTIONS(720), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(720), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(720), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(720), - [aux_sym_pubkey_authentication_token1] = ACTIONS(720), - [aux_sym_rekey_limit_token1] = ACTIONS(720), - [aux_sym_remote_command_token1] = ACTIONS(720), - [aux_sym_remote_forward_token1] = ACTIONS(720), - [aux_sym_request_tty_token1] = ACTIONS(720), - [aux_sym_required_rsa_size_token1] = ACTIONS(720), - [aux_sym_revoked_host_keys_token1] = ACTIONS(720), - [aux_sym_security_key_provider_token1] = ACTIONS(720), - [aux_sym_send_env_token1] = ACTIONS(720), - [aux_sym_server_alive_count_max_token1] = ACTIONS(720), - [aux_sym_server_alive_interval_token1] = ACTIONS(720), - [aux_sym_session_type_token1] = ACTIONS(720), - [aux_sym_set_env_token1] = ACTIONS(720), - [aux_sym_stdin_null_token1] = ACTIONS(720), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(720), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(720), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(720), - [aux_sym_syslog_facility_token1] = ACTIONS(720), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(720), - [aux_sym_keep_alive_token1] = ACTIONS(720), - [aux_sym_tag_token1] = ACTIONS(720), - [aux_sym_tunnel_token1] = ACTIONS(722), - [aux_sym_tunnel_device_token1] = ACTIONS(720), - [aux_sym_update_host_keys_token1] = ACTIONS(720), - [aux_sym_use_keychain_token1] = ACTIONS(720), - [aux_sym_use_roaming_token1] = ACTIONS(720), - [aux_sym_user_token1] = ACTIONS(722), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(720), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(720), - [aux_sym_visual_host_key_token1] = ACTIONS(720), - [aux_sym_xauth_location_token1] = ACTIONS(720), + [ts_builtin_sym_end] = ACTIONS(725), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(727), + [anon_sym_DQUOTE] = ACTIONS(729), + [aux_sym_match_token1] = ACTIONS(725), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(725), + [aux_sym_address_family_token1] = ACTIONS(725), + [aux_sym_batch_mode_token1] = ACTIONS(725), + [aux_sym_bind_address_token1] = ACTIONS(725), + [aux_sym_bind_interface_token1] = ACTIONS(725), + [aux_sym_canonical_domains_token1] = ACTIONS(725), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(725), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(725), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(725), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(725), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(725), + [aux_sym_certificate_file_token1] = ACTIONS(725), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(725), + [aux_sym_channel_timeout_token1] = ACTIONS(725), + [aux_sym_check_host_ip_token1] = ACTIONS(725), + [aux_sym_ciphers_token1] = ACTIONS(725), + [aux_sym_cipher_token1] = ACTIONS(727), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(725), + [aux_sym_compression_token1] = ACTIONS(725), + [aux_sym_connection_attempts_token1] = ACTIONS(725), + [aux_sym_connect_timeout_token1] = ACTIONS(725), + [aux_sym_control_master_token1] = ACTIONS(725), + [aux_sym_control_path_token1] = ACTIONS(725), + [aux_sym_control_persist_token1] = ACTIONS(725), + [aux_sym_dynamic_forward_token1] = ACTIONS(725), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(725), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(725), + [aux_sym_escape_char_token1] = ACTIONS(725), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(725), + [aux_sym_fingerprint_hash_token1] = ACTIONS(725), + [aux_sym_fork_after_authentication_token1] = ACTIONS(725), + [aux_sym_forward_agent_token1] = ACTIONS(725), + [aux_sym_forward_x11_token1] = ACTIONS(727), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(725), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(725), + [aux_sym_gateway_ports_token1] = ACTIONS(725), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(725), + [aux_sym_gssapi_authentication_token1] = ACTIONS(725), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(725), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(725), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(725), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(725), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(725), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(725), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(725), + [aux_sym_hash_known_hosts_token1] = ACTIONS(725), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(725), + [aux_sym_hostbased_authentication_token1] = ACTIONS(725), + [aux_sym_host_key_algorithms_token1] = ACTIONS(725), + [aux_sym_host_key_alias_token1] = ACTIONS(725), + [aux_sym_hostname_token1] = ACTIONS(725), + [aux_sym_identities_only_token1] = ACTIONS(725), + [aux_sym_identity_agent_token1] = ACTIONS(725), + [aux_sym_identity_file_token1] = ACTIONS(725), + [aux_sym_ignore_unknown_token1] = ACTIONS(725), + [aux_sym_include_token1] = ACTIONS(725), + [aux_sym_ip_qos_token1] = ACTIONS(725), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(725), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(725), + [aux_sym_kex_algorithms_token1] = ACTIONS(725), + [aux_sym_known_hosts_command_token1] = ACTIONS(725), + [aux_sym_local_command_token1] = ACTIONS(725), + [aux_sym_local_forward_token1] = ACTIONS(725), + [aux_sym_log_level_token1] = ACTIONS(725), + [aux_sym_log_verbose_token1] = ACTIONS(725), + [aux_sym_macs_token1] = ACTIONS(725), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(725), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(725), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(725), + [aux_sym_password_authentication_token1] = ACTIONS(725), + [aux_sym_permit_local_command_token1] = ACTIONS(725), + [aux_sym_permit_remote_open_token1] = ACTIONS(725), + [aux_sym_pkcs11_provider_token1] = ACTIONS(725), + [aux_sym_port_token1] = ACTIONS(725), + [aux_sym_preferred_authentications_token1] = ACTIONS(725), + [aux_sym_protocol_token1] = ACTIONS(725), + [aux_sym_proxy_command_token1] = ACTIONS(725), + [aux_sym_proxy_jump_token1] = ACTIONS(725), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(725), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(725), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(725), + [aux_sym_pubkey_authentication_token1] = ACTIONS(725), + [aux_sym_rekey_limit_token1] = ACTIONS(725), + [aux_sym_remote_command_token1] = ACTIONS(725), + [aux_sym_remote_forward_token1] = ACTIONS(725), + [aux_sym_request_tty_token1] = ACTIONS(725), + [aux_sym_required_rsa_size_token1] = ACTIONS(725), + [aux_sym_revoked_host_keys_token1] = ACTIONS(725), + [aux_sym_security_key_provider_token1] = ACTIONS(725), + [aux_sym_send_env_token1] = ACTIONS(725), + [aux_sym_server_alive_count_max_token1] = ACTIONS(725), + [aux_sym_server_alive_interval_token1] = ACTIONS(725), + [aux_sym_session_type_token1] = ACTIONS(725), + [aux_sym_set_env_token1] = ACTIONS(725), + [aux_sym_stdin_null_token1] = ACTIONS(725), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(725), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(725), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(725), + [aux_sym_syslog_facility_token1] = ACTIONS(725), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(725), + [aux_sym_keep_alive_token1] = ACTIONS(725), + [aux_sym_tag_token1] = ACTIONS(725), + [aux_sym_tunnel_token1] = ACTIONS(727), + [aux_sym_tunnel_device_token1] = ACTIONS(725), + [aux_sym_update_host_keys_token1] = ACTIONS(725), + [aux_sym_use_keychain_token1] = ACTIONS(725), + [aux_sym_use_roaming_token1] = ACTIONS(725), + [aux_sym_user_token1] = ACTIONS(727), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(725), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(725), + [aux_sym_visual_host_key_token1] = ACTIONS(725), + [aux_sym_xauth_location_token1] = ACTIONS(725), }, [28] = { - [ts_builtin_sym_end] = ACTIONS(726), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(728), - [anon_sym_DQUOTE] = ACTIONS(730), - [aux_sym_match_token1] = ACTIONS(726), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(726), - [aux_sym_address_family_token1] = ACTIONS(726), - [aux_sym_batch_mode_token1] = ACTIONS(726), - [aux_sym_bind_address_token1] = ACTIONS(726), - [aux_sym_bind_interface_token1] = ACTIONS(726), - [aux_sym_canonical_domains_token1] = ACTIONS(726), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(726), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(726), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(726), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(726), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(726), - [aux_sym_certificate_file_token1] = ACTIONS(726), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(726), - [aux_sym_channel_timeout_token1] = ACTIONS(726), - [aux_sym_check_host_ip_token1] = ACTIONS(726), - [aux_sym_ciphers_token1] = ACTIONS(726), - [aux_sym_cipher_token1] = ACTIONS(728), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(726), - [aux_sym_compression_token1] = ACTIONS(726), - [aux_sym_connection_attempts_token1] = ACTIONS(726), - [aux_sym_connect_timeout_token1] = ACTIONS(726), - [aux_sym_control_master_token1] = ACTIONS(726), - [aux_sym_control_path_token1] = ACTIONS(726), - [aux_sym_control_persist_token1] = ACTIONS(726), - [aux_sym_dynamic_forward_token1] = ACTIONS(726), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(726), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(726), - [aux_sym_escape_char_token1] = ACTIONS(726), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(726), - [aux_sym_fingerprint_hash_token1] = ACTIONS(726), - [aux_sym_fork_after_authentication_token1] = ACTIONS(726), - [aux_sym_forward_agent_token1] = ACTIONS(726), - [aux_sym_forward_x11_token1] = ACTIONS(728), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(726), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(726), - [aux_sym_gateway_ports_token1] = ACTIONS(726), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(726), - [aux_sym_gssapi_authentication_token1] = ACTIONS(726), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(726), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(726), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(726), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(726), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(726), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(726), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(726), - [aux_sym_hash_known_hosts_token1] = ACTIONS(726), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(726), - [aux_sym_hostbased_authentication_token1] = ACTIONS(726), - [aux_sym_host_key_algorithms_token1] = ACTIONS(726), - [aux_sym_host_key_alias_token1] = ACTIONS(726), - [aux_sym_hostname_token1] = ACTIONS(726), - [aux_sym_identities_only_token1] = ACTIONS(726), - [aux_sym_identity_agent_token1] = ACTIONS(726), - [aux_sym_identity_file_token1] = ACTIONS(726), - [aux_sym_ignore_unknown_token1] = ACTIONS(726), - [aux_sym_include_token1] = ACTIONS(726), - [aux_sym_ip_qos_token1] = ACTIONS(726), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(726), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(726), - [aux_sym_kex_algorithms_token1] = ACTIONS(726), - [aux_sym_known_hosts_command_token1] = ACTIONS(726), - [aux_sym_local_command_token1] = ACTIONS(726), - [aux_sym_local_forward_token1] = ACTIONS(726), - [aux_sym_log_level_token1] = ACTIONS(726), - [aux_sym_log_verbose_token1] = ACTIONS(726), - [aux_sym_macs_token1] = ACTIONS(726), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(726), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(726), - [aux_sym_password_authentication_token1] = ACTIONS(726), - [aux_sym_permit_local_command_token1] = ACTIONS(726), - [aux_sym_permit_remote_open_token1] = ACTIONS(726), - [aux_sym_pkcs11_provider_token1] = ACTIONS(726), - [aux_sym_port_token1] = ACTIONS(726), - [aux_sym_preferred_authentications_token1] = ACTIONS(726), - [aux_sym_protocol_token1] = ACTIONS(726), - [aux_sym_proxy_command_token1] = ACTIONS(726), - [aux_sym_proxy_jump_token1] = ACTIONS(726), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(726), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(726), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(726), - [aux_sym_pubkey_authentication_token1] = ACTIONS(726), - [aux_sym_rekey_limit_token1] = ACTIONS(726), - [aux_sym_remote_command_token1] = ACTIONS(726), - [aux_sym_remote_forward_token1] = ACTIONS(726), - [aux_sym_request_tty_token1] = ACTIONS(726), - [aux_sym_required_rsa_size_token1] = ACTIONS(726), - [aux_sym_revoked_host_keys_token1] = ACTIONS(726), - [aux_sym_security_key_provider_token1] = ACTIONS(726), - [aux_sym_send_env_token1] = ACTIONS(726), - [aux_sym_server_alive_count_max_token1] = ACTIONS(726), - [aux_sym_server_alive_interval_token1] = ACTIONS(726), - [aux_sym_session_type_token1] = ACTIONS(726), - [aux_sym_set_env_token1] = ACTIONS(726), - [aux_sym_stdin_null_token1] = ACTIONS(726), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(726), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(726), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(726), - [aux_sym_syslog_facility_token1] = ACTIONS(726), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(726), - [aux_sym_keep_alive_token1] = ACTIONS(726), - [aux_sym_tag_token1] = ACTIONS(726), - [aux_sym_tunnel_token1] = ACTIONS(728), - [aux_sym_tunnel_device_token1] = ACTIONS(726), - [aux_sym_update_host_keys_token1] = ACTIONS(726), - [aux_sym_use_keychain_token1] = ACTIONS(726), - [aux_sym_use_roaming_token1] = ACTIONS(726), - [aux_sym_user_token1] = ACTIONS(728), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(726), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(726), - [aux_sym_visual_host_key_token1] = ACTIONS(726), - [aux_sym_xauth_location_token1] = ACTIONS(726), + [ts_builtin_sym_end] = ACTIONS(731), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(733), + [anon_sym_DQUOTE] = ACTIONS(735), + [aux_sym_match_token1] = ACTIONS(731), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(731), + [aux_sym_address_family_token1] = ACTIONS(731), + [aux_sym_batch_mode_token1] = ACTIONS(731), + [aux_sym_bind_address_token1] = ACTIONS(731), + [aux_sym_bind_interface_token1] = ACTIONS(731), + [aux_sym_canonical_domains_token1] = ACTIONS(731), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(731), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(731), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(731), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(731), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(731), + [aux_sym_certificate_file_token1] = ACTIONS(731), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(731), + [aux_sym_channel_timeout_token1] = ACTIONS(731), + [aux_sym_check_host_ip_token1] = ACTIONS(731), + [aux_sym_ciphers_token1] = ACTIONS(731), + [aux_sym_cipher_token1] = ACTIONS(733), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(731), + [aux_sym_compression_token1] = ACTIONS(731), + [aux_sym_connection_attempts_token1] = ACTIONS(731), + [aux_sym_connect_timeout_token1] = ACTIONS(731), + [aux_sym_control_master_token1] = ACTIONS(731), + [aux_sym_control_path_token1] = ACTIONS(731), + [aux_sym_control_persist_token1] = ACTIONS(731), + [aux_sym_dynamic_forward_token1] = ACTIONS(731), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(731), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(731), + [aux_sym_escape_char_token1] = ACTIONS(731), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(731), + [aux_sym_fingerprint_hash_token1] = ACTIONS(731), + [aux_sym_fork_after_authentication_token1] = ACTIONS(731), + [aux_sym_forward_agent_token1] = ACTIONS(731), + [aux_sym_forward_x11_token1] = ACTIONS(733), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(731), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(731), + [aux_sym_gateway_ports_token1] = ACTIONS(731), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(731), + [aux_sym_gssapi_authentication_token1] = ACTIONS(731), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(731), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(731), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(731), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(731), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(731), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(731), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(731), + [aux_sym_hash_known_hosts_token1] = ACTIONS(731), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(731), + [aux_sym_hostbased_authentication_token1] = ACTIONS(731), + [aux_sym_host_key_algorithms_token1] = ACTIONS(731), + [aux_sym_host_key_alias_token1] = ACTIONS(731), + [aux_sym_hostname_token1] = ACTIONS(731), + [aux_sym_identities_only_token1] = ACTIONS(731), + [aux_sym_identity_agent_token1] = ACTIONS(731), + [aux_sym_identity_file_token1] = ACTIONS(731), + [aux_sym_ignore_unknown_token1] = ACTIONS(731), + [aux_sym_include_token1] = ACTIONS(731), + [aux_sym_ip_qos_token1] = ACTIONS(731), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(731), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(731), + [aux_sym_kex_algorithms_token1] = ACTIONS(731), + [aux_sym_known_hosts_command_token1] = ACTIONS(731), + [aux_sym_local_command_token1] = ACTIONS(731), + [aux_sym_local_forward_token1] = ACTIONS(731), + [aux_sym_log_level_token1] = ACTIONS(731), + [aux_sym_log_verbose_token1] = ACTIONS(731), + [aux_sym_macs_token1] = ACTIONS(731), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(731), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(731), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(731), + [aux_sym_password_authentication_token1] = ACTIONS(731), + [aux_sym_permit_local_command_token1] = ACTIONS(731), + [aux_sym_permit_remote_open_token1] = ACTIONS(731), + [aux_sym_pkcs11_provider_token1] = ACTIONS(731), + [aux_sym_port_token1] = ACTIONS(731), + [aux_sym_preferred_authentications_token1] = ACTIONS(731), + [aux_sym_protocol_token1] = ACTIONS(731), + [aux_sym_proxy_command_token1] = ACTIONS(731), + [aux_sym_proxy_jump_token1] = ACTIONS(731), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(731), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(731), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(731), + [aux_sym_pubkey_authentication_token1] = ACTIONS(731), + [aux_sym_rekey_limit_token1] = ACTIONS(731), + [aux_sym_remote_command_token1] = ACTIONS(731), + [aux_sym_remote_forward_token1] = ACTIONS(731), + [aux_sym_request_tty_token1] = ACTIONS(731), + [aux_sym_required_rsa_size_token1] = ACTIONS(731), + [aux_sym_revoked_host_keys_token1] = ACTIONS(731), + [aux_sym_security_key_provider_token1] = ACTIONS(731), + [aux_sym_send_env_token1] = ACTIONS(731), + [aux_sym_server_alive_count_max_token1] = ACTIONS(731), + [aux_sym_server_alive_interval_token1] = ACTIONS(731), + [aux_sym_session_type_token1] = ACTIONS(731), + [aux_sym_set_env_token1] = ACTIONS(731), + [aux_sym_stdin_null_token1] = ACTIONS(731), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(731), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(731), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(731), + [aux_sym_syslog_facility_token1] = ACTIONS(731), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(731), + [aux_sym_keep_alive_token1] = ACTIONS(731), + [aux_sym_tag_token1] = ACTIONS(731), + [aux_sym_tunnel_token1] = ACTIONS(733), + [aux_sym_tunnel_device_token1] = ACTIONS(731), + [aux_sym_update_host_keys_token1] = ACTIONS(731), + [aux_sym_use_keychain_token1] = ACTIONS(731), + [aux_sym_use_roaming_token1] = ACTIONS(731), + [aux_sym_user_token1] = ACTIONS(733), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(731), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(731), + [aux_sym_visual_host_key_token1] = ACTIONS(731), + [aux_sym_xauth_location_token1] = ACTIONS(731), }, [29] = { - [ts_builtin_sym_end] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(734), - [anon_sym_DQUOTE] = ACTIONS(736), - [aux_sym_match_token1] = ACTIONS(732), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(732), - [aux_sym_address_family_token1] = ACTIONS(732), - [aux_sym_batch_mode_token1] = ACTIONS(732), - [aux_sym_bind_address_token1] = ACTIONS(732), - [aux_sym_bind_interface_token1] = ACTIONS(732), - [aux_sym_canonical_domains_token1] = ACTIONS(732), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(732), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(732), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(732), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(732), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(732), - [aux_sym_certificate_file_token1] = ACTIONS(732), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(732), - [aux_sym_channel_timeout_token1] = ACTIONS(732), - [aux_sym_check_host_ip_token1] = ACTIONS(732), - [aux_sym_ciphers_token1] = ACTIONS(732), - [aux_sym_cipher_token1] = ACTIONS(734), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(732), - [aux_sym_compression_token1] = ACTIONS(732), - [aux_sym_connection_attempts_token1] = ACTIONS(732), - [aux_sym_connect_timeout_token1] = ACTIONS(732), - [aux_sym_control_master_token1] = ACTIONS(732), - [aux_sym_control_path_token1] = ACTIONS(732), - [aux_sym_control_persist_token1] = ACTIONS(732), - [aux_sym_dynamic_forward_token1] = ACTIONS(732), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(732), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(732), - [aux_sym_escape_char_token1] = ACTIONS(732), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(732), - [aux_sym_fingerprint_hash_token1] = ACTIONS(732), - [aux_sym_fork_after_authentication_token1] = ACTIONS(732), - [aux_sym_forward_agent_token1] = ACTIONS(732), - [aux_sym_forward_x11_token1] = ACTIONS(734), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(732), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(732), - [aux_sym_gateway_ports_token1] = ACTIONS(732), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(732), - [aux_sym_gssapi_authentication_token1] = ACTIONS(732), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(732), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(732), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(732), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(732), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(732), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(732), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(732), - [aux_sym_hash_known_hosts_token1] = ACTIONS(732), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(732), - [aux_sym_hostbased_authentication_token1] = ACTIONS(732), - [aux_sym_host_key_algorithms_token1] = ACTIONS(732), - [aux_sym_host_key_alias_token1] = ACTIONS(732), - [aux_sym_hostname_token1] = ACTIONS(732), - [aux_sym_identities_only_token1] = ACTIONS(732), - [aux_sym_identity_agent_token1] = ACTIONS(732), - [aux_sym_identity_file_token1] = ACTIONS(732), - [aux_sym_ignore_unknown_token1] = ACTIONS(732), - [aux_sym_include_token1] = ACTIONS(732), - [aux_sym_ip_qos_token1] = ACTIONS(732), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(732), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(732), - [aux_sym_kex_algorithms_token1] = ACTIONS(732), - [aux_sym_known_hosts_command_token1] = ACTIONS(732), - [aux_sym_local_command_token1] = ACTIONS(732), - [aux_sym_local_forward_token1] = ACTIONS(732), - [aux_sym_log_level_token1] = ACTIONS(732), - [aux_sym_log_verbose_token1] = ACTIONS(732), - [aux_sym_macs_token1] = ACTIONS(732), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(732), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(732), - [aux_sym_password_authentication_token1] = ACTIONS(732), - [aux_sym_permit_local_command_token1] = ACTIONS(732), - [aux_sym_permit_remote_open_token1] = ACTIONS(732), - [aux_sym_pkcs11_provider_token1] = ACTIONS(732), - [aux_sym_port_token1] = ACTIONS(732), - [aux_sym_preferred_authentications_token1] = ACTIONS(732), - [aux_sym_protocol_token1] = ACTIONS(732), - [aux_sym_proxy_command_token1] = ACTIONS(732), - [aux_sym_proxy_jump_token1] = ACTIONS(732), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(732), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(732), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(732), - [aux_sym_pubkey_authentication_token1] = ACTIONS(732), - [aux_sym_rekey_limit_token1] = ACTIONS(732), - [aux_sym_remote_command_token1] = ACTIONS(732), - [aux_sym_remote_forward_token1] = ACTIONS(732), - [aux_sym_request_tty_token1] = ACTIONS(732), - [aux_sym_required_rsa_size_token1] = ACTIONS(732), - [aux_sym_revoked_host_keys_token1] = ACTIONS(732), - [aux_sym_security_key_provider_token1] = ACTIONS(732), - [aux_sym_send_env_token1] = ACTIONS(732), - [aux_sym_server_alive_count_max_token1] = ACTIONS(732), - [aux_sym_server_alive_interval_token1] = ACTIONS(732), - [aux_sym_session_type_token1] = ACTIONS(732), - [aux_sym_set_env_token1] = ACTIONS(732), - [aux_sym_stdin_null_token1] = ACTIONS(732), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(732), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(732), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(732), - [aux_sym_syslog_facility_token1] = ACTIONS(732), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(732), - [aux_sym_keep_alive_token1] = ACTIONS(732), - [aux_sym_tag_token1] = ACTIONS(732), - [aux_sym_tunnel_token1] = ACTIONS(734), - [aux_sym_tunnel_device_token1] = ACTIONS(732), - [aux_sym_update_host_keys_token1] = ACTIONS(732), - [aux_sym_use_keychain_token1] = ACTIONS(732), - [aux_sym_use_roaming_token1] = ACTIONS(732), - [aux_sym_user_token1] = ACTIONS(734), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(732), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(732), - [aux_sym_visual_host_key_token1] = ACTIONS(732), - [aux_sym_xauth_location_token1] = ACTIONS(732), + [ts_builtin_sym_end] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(739), + [anon_sym_DQUOTE] = ACTIONS(741), + [aux_sym_match_token1] = ACTIONS(737), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(737), + [aux_sym_address_family_token1] = ACTIONS(737), + [aux_sym_batch_mode_token1] = ACTIONS(737), + [aux_sym_bind_address_token1] = ACTIONS(737), + [aux_sym_bind_interface_token1] = ACTIONS(737), + [aux_sym_canonical_domains_token1] = ACTIONS(737), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(737), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(737), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(737), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(737), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(737), + [aux_sym_certificate_file_token1] = ACTIONS(737), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(737), + [aux_sym_channel_timeout_token1] = ACTIONS(737), + [aux_sym_check_host_ip_token1] = ACTIONS(737), + [aux_sym_ciphers_token1] = ACTIONS(737), + [aux_sym_cipher_token1] = ACTIONS(739), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(737), + [aux_sym_compression_token1] = ACTIONS(737), + [aux_sym_connection_attempts_token1] = ACTIONS(737), + [aux_sym_connect_timeout_token1] = ACTIONS(737), + [aux_sym_control_master_token1] = ACTIONS(737), + [aux_sym_control_path_token1] = ACTIONS(737), + [aux_sym_control_persist_token1] = ACTIONS(737), + [aux_sym_dynamic_forward_token1] = ACTIONS(737), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(737), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(737), + [aux_sym_escape_char_token1] = ACTIONS(737), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(737), + [aux_sym_fingerprint_hash_token1] = ACTIONS(737), + [aux_sym_fork_after_authentication_token1] = ACTIONS(737), + [aux_sym_forward_agent_token1] = ACTIONS(737), + [aux_sym_forward_x11_token1] = ACTIONS(739), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(737), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(737), + [aux_sym_gateway_ports_token1] = ACTIONS(737), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(737), + [aux_sym_gssapi_authentication_token1] = ACTIONS(737), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(737), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(737), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(737), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(737), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(737), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(737), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(737), + [aux_sym_hash_known_hosts_token1] = ACTIONS(737), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(737), + [aux_sym_hostbased_authentication_token1] = ACTIONS(737), + [aux_sym_host_key_algorithms_token1] = ACTIONS(737), + [aux_sym_host_key_alias_token1] = ACTIONS(737), + [aux_sym_hostname_token1] = ACTIONS(737), + [aux_sym_identities_only_token1] = ACTIONS(737), + [aux_sym_identity_agent_token1] = ACTIONS(737), + [aux_sym_identity_file_token1] = ACTIONS(737), + [aux_sym_ignore_unknown_token1] = ACTIONS(737), + [aux_sym_include_token1] = ACTIONS(737), + [aux_sym_ip_qos_token1] = ACTIONS(737), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(737), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(737), + [aux_sym_kex_algorithms_token1] = ACTIONS(737), + [aux_sym_known_hosts_command_token1] = ACTIONS(737), + [aux_sym_local_command_token1] = ACTIONS(737), + [aux_sym_local_forward_token1] = ACTIONS(737), + [aux_sym_log_level_token1] = ACTIONS(737), + [aux_sym_log_verbose_token1] = ACTIONS(737), + [aux_sym_macs_token1] = ACTIONS(737), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(737), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(737), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(737), + [aux_sym_password_authentication_token1] = ACTIONS(737), + [aux_sym_permit_local_command_token1] = ACTIONS(737), + [aux_sym_permit_remote_open_token1] = ACTIONS(737), + [aux_sym_pkcs11_provider_token1] = ACTIONS(737), + [aux_sym_port_token1] = ACTIONS(737), + [aux_sym_preferred_authentications_token1] = ACTIONS(737), + [aux_sym_protocol_token1] = ACTIONS(737), + [aux_sym_proxy_command_token1] = ACTIONS(737), + [aux_sym_proxy_jump_token1] = ACTIONS(737), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(737), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(737), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(737), + [aux_sym_pubkey_authentication_token1] = ACTIONS(737), + [aux_sym_rekey_limit_token1] = ACTIONS(737), + [aux_sym_remote_command_token1] = ACTIONS(737), + [aux_sym_remote_forward_token1] = ACTIONS(737), + [aux_sym_request_tty_token1] = ACTIONS(737), + [aux_sym_required_rsa_size_token1] = ACTIONS(737), + [aux_sym_revoked_host_keys_token1] = ACTIONS(737), + [aux_sym_security_key_provider_token1] = ACTIONS(737), + [aux_sym_send_env_token1] = ACTIONS(737), + [aux_sym_server_alive_count_max_token1] = ACTIONS(737), + [aux_sym_server_alive_interval_token1] = ACTIONS(737), + [aux_sym_session_type_token1] = ACTIONS(737), + [aux_sym_set_env_token1] = ACTIONS(737), + [aux_sym_stdin_null_token1] = ACTIONS(737), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(737), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(737), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(737), + [aux_sym_syslog_facility_token1] = ACTIONS(737), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(737), + [aux_sym_keep_alive_token1] = ACTIONS(737), + [aux_sym_tag_token1] = ACTIONS(737), + [aux_sym_tunnel_token1] = ACTIONS(739), + [aux_sym_tunnel_device_token1] = ACTIONS(737), + [aux_sym_update_host_keys_token1] = ACTIONS(737), + [aux_sym_use_keychain_token1] = ACTIONS(737), + [aux_sym_use_roaming_token1] = ACTIONS(737), + [aux_sym_user_token1] = ACTIONS(739), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(737), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(737), + [aux_sym_visual_host_key_token1] = ACTIONS(737), + [aux_sym_xauth_location_token1] = ACTIONS(737), }, [30] = { - [ts_builtin_sym_end] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(740), - [anon_sym_DQUOTE] = ACTIONS(742), - [aux_sym_match_token1] = ACTIONS(738), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(738), - [aux_sym_address_family_token1] = ACTIONS(738), - [aux_sym_batch_mode_token1] = ACTIONS(738), - [aux_sym_bind_address_token1] = ACTIONS(738), - [aux_sym_bind_interface_token1] = ACTIONS(738), - [aux_sym_canonical_domains_token1] = ACTIONS(738), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(738), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(738), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(738), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(738), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(738), - [aux_sym_certificate_file_token1] = ACTIONS(738), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(738), - [aux_sym_channel_timeout_token1] = ACTIONS(738), - [aux_sym_check_host_ip_token1] = ACTIONS(738), - [aux_sym_ciphers_token1] = ACTIONS(738), - [aux_sym_cipher_token1] = ACTIONS(740), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(738), - [aux_sym_compression_token1] = ACTIONS(738), - [aux_sym_connection_attempts_token1] = ACTIONS(738), - [aux_sym_connect_timeout_token1] = ACTIONS(738), - [aux_sym_control_master_token1] = ACTIONS(738), - [aux_sym_control_path_token1] = ACTIONS(738), - [aux_sym_control_persist_token1] = ACTIONS(738), - [aux_sym_dynamic_forward_token1] = ACTIONS(738), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(738), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(738), - [aux_sym_escape_char_token1] = ACTIONS(738), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(738), - [aux_sym_fingerprint_hash_token1] = ACTIONS(738), - [aux_sym_fork_after_authentication_token1] = ACTIONS(738), - [aux_sym_forward_agent_token1] = ACTIONS(738), - [aux_sym_forward_x11_token1] = ACTIONS(740), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(738), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(738), - [aux_sym_gateway_ports_token1] = ACTIONS(738), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(738), - [aux_sym_gssapi_authentication_token1] = ACTIONS(738), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(738), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(738), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(738), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(738), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(738), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(738), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(738), - [aux_sym_hash_known_hosts_token1] = ACTIONS(738), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(738), - [aux_sym_hostbased_authentication_token1] = ACTIONS(738), - [aux_sym_host_key_algorithms_token1] = ACTIONS(738), - [aux_sym_host_key_alias_token1] = ACTIONS(738), - [aux_sym_hostname_token1] = ACTIONS(738), - [aux_sym_identities_only_token1] = ACTIONS(738), - [aux_sym_identity_agent_token1] = ACTIONS(738), - [aux_sym_identity_file_token1] = ACTIONS(738), - [aux_sym_ignore_unknown_token1] = ACTIONS(738), - [aux_sym_include_token1] = ACTIONS(738), - [aux_sym_ip_qos_token1] = ACTIONS(738), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(738), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(738), - [aux_sym_kex_algorithms_token1] = ACTIONS(738), - [aux_sym_known_hosts_command_token1] = ACTIONS(738), - [aux_sym_local_command_token1] = ACTIONS(738), - [aux_sym_local_forward_token1] = ACTIONS(738), - [aux_sym_log_level_token1] = ACTIONS(738), - [aux_sym_log_verbose_token1] = ACTIONS(738), - [aux_sym_macs_token1] = ACTIONS(738), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(738), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(738), - [aux_sym_password_authentication_token1] = ACTIONS(738), - [aux_sym_permit_local_command_token1] = ACTIONS(738), - [aux_sym_permit_remote_open_token1] = ACTIONS(738), - [aux_sym_pkcs11_provider_token1] = ACTIONS(738), - [aux_sym_port_token1] = ACTIONS(738), - [aux_sym_preferred_authentications_token1] = ACTIONS(738), - [aux_sym_protocol_token1] = ACTIONS(738), - [aux_sym_proxy_command_token1] = ACTIONS(738), - [aux_sym_proxy_jump_token1] = ACTIONS(738), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(738), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(738), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(738), - [aux_sym_pubkey_authentication_token1] = ACTIONS(738), - [aux_sym_rekey_limit_token1] = ACTIONS(738), - [aux_sym_remote_command_token1] = ACTIONS(738), - [aux_sym_remote_forward_token1] = ACTIONS(738), - [aux_sym_request_tty_token1] = ACTIONS(738), - [aux_sym_required_rsa_size_token1] = ACTIONS(738), - [aux_sym_revoked_host_keys_token1] = ACTIONS(738), - [aux_sym_security_key_provider_token1] = ACTIONS(738), - [aux_sym_send_env_token1] = ACTIONS(738), - [aux_sym_server_alive_count_max_token1] = ACTIONS(738), - [aux_sym_server_alive_interval_token1] = ACTIONS(738), - [aux_sym_session_type_token1] = ACTIONS(738), - [aux_sym_set_env_token1] = ACTIONS(738), - [aux_sym_stdin_null_token1] = ACTIONS(738), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(738), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(738), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(738), - [aux_sym_syslog_facility_token1] = ACTIONS(738), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(738), - [aux_sym_keep_alive_token1] = ACTIONS(738), - [aux_sym_tag_token1] = ACTIONS(738), - [aux_sym_tunnel_token1] = ACTIONS(740), - [aux_sym_tunnel_device_token1] = ACTIONS(738), - [aux_sym_update_host_keys_token1] = ACTIONS(738), - [aux_sym_use_keychain_token1] = ACTIONS(738), - [aux_sym_use_roaming_token1] = ACTIONS(738), - [aux_sym_user_token1] = ACTIONS(740), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(738), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(738), - [aux_sym_visual_host_key_token1] = ACTIONS(738), - [aux_sym_xauth_location_token1] = ACTIONS(738), + [ts_builtin_sym_end] = ACTIONS(743), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(745), + [anon_sym_DQUOTE] = ACTIONS(747), + [aux_sym_match_token1] = ACTIONS(743), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(743), + [aux_sym_address_family_token1] = ACTIONS(743), + [aux_sym_batch_mode_token1] = ACTIONS(743), + [aux_sym_bind_address_token1] = ACTIONS(743), + [aux_sym_bind_interface_token1] = ACTIONS(743), + [aux_sym_canonical_domains_token1] = ACTIONS(743), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(743), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(743), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(743), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(743), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(743), + [aux_sym_certificate_file_token1] = ACTIONS(743), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(743), + [aux_sym_channel_timeout_token1] = ACTIONS(743), + [aux_sym_check_host_ip_token1] = ACTIONS(743), + [aux_sym_ciphers_token1] = ACTIONS(743), + [aux_sym_cipher_token1] = ACTIONS(745), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(743), + [aux_sym_compression_token1] = ACTIONS(743), + [aux_sym_connection_attempts_token1] = ACTIONS(743), + [aux_sym_connect_timeout_token1] = ACTIONS(743), + [aux_sym_control_master_token1] = ACTIONS(743), + [aux_sym_control_path_token1] = ACTIONS(743), + [aux_sym_control_persist_token1] = ACTIONS(743), + [aux_sym_dynamic_forward_token1] = ACTIONS(743), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(743), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(743), + [aux_sym_escape_char_token1] = ACTIONS(743), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(743), + [aux_sym_fingerprint_hash_token1] = ACTIONS(743), + [aux_sym_fork_after_authentication_token1] = ACTIONS(743), + [aux_sym_forward_agent_token1] = ACTIONS(743), + [aux_sym_forward_x11_token1] = ACTIONS(745), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(743), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(743), + [aux_sym_gateway_ports_token1] = ACTIONS(743), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(743), + [aux_sym_gssapi_authentication_token1] = ACTIONS(743), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(743), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(743), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(743), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(743), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(743), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(743), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(743), + [aux_sym_hash_known_hosts_token1] = ACTIONS(743), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(743), + [aux_sym_hostbased_authentication_token1] = ACTIONS(743), + [aux_sym_host_key_algorithms_token1] = ACTIONS(743), + [aux_sym_host_key_alias_token1] = ACTIONS(743), + [aux_sym_hostname_token1] = ACTIONS(743), + [aux_sym_identities_only_token1] = ACTIONS(743), + [aux_sym_identity_agent_token1] = ACTIONS(743), + [aux_sym_identity_file_token1] = ACTIONS(743), + [aux_sym_ignore_unknown_token1] = ACTIONS(743), + [aux_sym_include_token1] = ACTIONS(743), + [aux_sym_ip_qos_token1] = ACTIONS(743), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(743), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(743), + [aux_sym_kex_algorithms_token1] = ACTIONS(743), + [aux_sym_known_hosts_command_token1] = ACTIONS(743), + [aux_sym_local_command_token1] = ACTIONS(743), + [aux_sym_local_forward_token1] = ACTIONS(743), + [aux_sym_log_level_token1] = ACTIONS(743), + [aux_sym_log_verbose_token1] = ACTIONS(743), + [aux_sym_macs_token1] = ACTIONS(743), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(743), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(743), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(743), + [aux_sym_password_authentication_token1] = ACTIONS(743), + [aux_sym_permit_local_command_token1] = ACTIONS(743), + [aux_sym_permit_remote_open_token1] = ACTIONS(743), + [aux_sym_pkcs11_provider_token1] = ACTIONS(743), + [aux_sym_port_token1] = ACTIONS(743), + [aux_sym_preferred_authentications_token1] = ACTIONS(743), + [aux_sym_protocol_token1] = ACTIONS(743), + [aux_sym_proxy_command_token1] = ACTIONS(743), + [aux_sym_proxy_jump_token1] = ACTIONS(743), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(743), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(743), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(743), + [aux_sym_pubkey_authentication_token1] = ACTIONS(743), + [aux_sym_rekey_limit_token1] = ACTIONS(743), + [aux_sym_remote_command_token1] = ACTIONS(743), + [aux_sym_remote_forward_token1] = ACTIONS(743), + [aux_sym_request_tty_token1] = ACTIONS(743), + [aux_sym_required_rsa_size_token1] = ACTIONS(743), + [aux_sym_revoked_host_keys_token1] = ACTIONS(743), + [aux_sym_security_key_provider_token1] = ACTIONS(743), + [aux_sym_send_env_token1] = ACTIONS(743), + [aux_sym_server_alive_count_max_token1] = ACTIONS(743), + [aux_sym_server_alive_interval_token1] = ACTIONS(743), + [aux_sym_session_type_token1] = ACTIONS(743), + [aux_sym_set_env_token1] = ACTIONS(743), + [aux_sym_stdin_null_token1] = ACTIONS(743), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(743), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(743), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(743), + [aux_sym_syslog_facility_token1] = ACTIONS(743), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(743), + [aux_sym_keep_alive_token1] = ACTIONS(743), + [aux_sym_tag_token1] = ACTIONS(743), + [aux_sym_tunnel_token1] = ACTIONS(745), + [aux_sym_tunnel_device_token1] = ACTIONS(743), + [aux_sym_update_host_keys_token1] = ACTIONS(743), + [aux_sym_use_keychain_token1] = ACTIONS(743), + [aux_sym_use_roaming_token1] = ACTIONS(743), + [aux_sym_user_token1] = ACTIONS(745), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(743), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(743), + [aux_sym_visual_host_key_token1] = ACTIONS(743), + [aux_sym_xauth_location_token1] = ACTIONS(743), }, [31] = { - [ts_builtin_sym_end] = ACTIONS(744), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(746), - [anon_sym_DQUOTE] = ACTIONS(748), - [aux_sym_match_token1] = ACTIONS(744), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(744), - [aux_sym_address_family_token1] = ACTIONS(744), - [aux_sym_batch_mode_token1] = ACTIONS(744), - [aux_sym_bind_address_token1] = ACTIONS(744), - [aux_sym_bind_interface_token1] = ACTIONS(744), - [aux_sym_canonical_domains_token1] = ACTIONS(744), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(744), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(744), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(744), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(744), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(744), - [aux_sym_certificate_file_token1] = ACTIONS(744), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(744), - [aux_sym_channel_timeout_token1] = ACTIONS(744), - [aux_sym_check_host_ip_token1] = ACTIONS(744), - [aux_sym_ciphers_token1] = ACTIONS(744), - [aux_sym_cipher_token1] = ACTIONS(746), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(744), - [aux_sym_compression_token1] = ACTIONS(744), - [aux_sym_connection_attempts_token1] = ACTIONS(744), - [aux_sym_connect_timeout_token1] = ACTIONS(744), - [aux_sym_control_master_token1] = ACTIONS(744), - [aux_sym_control_path_token1] = ACTIONS(744), - [aux_sym_control_persist_token1] = ACTIONS(744), - [aux_sym_dynamic_forward_token1] = ACTIONS(744), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(744), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(744), - [aux_sym_escape_char_token1] = ACTIONS(744), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(744), - [aux_sym_fingerprint_hash_token1] = ACTIONS(744), - [aux_sym_fork_after_authentication_token1] = ACTIONS(744), - [aux_sym_forward_agent_token1] = ACTIONS(744), - [aux_sym_forward_x11_token1] = ACTIONS(746), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(744), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(744), - [aux_sym_gateway_ports_token1] = ACTIONS(744), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(744), - [aux_sym_gssapi_authentication_token1] = ACTIONS(744), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(744), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(744), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(744), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(744), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(744), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(744), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(744), - [aux_sym_hash_known_hosts_token1] = ACTIONS(744), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(744), - [aux_sym_hostbased_authentication_token1] = ACTIONS(744), - [aux_sym_host_key_algorithms_token1] = ACTIONS(744), - [aux_sym_host_key_alias_token1] = ACTIONS(744), - [aux_sym_hostname_token1] = ACTIONS(744), - [aux_sym_identities_only_token1] = ACTIONS(744), - [aux_sym_identity_agent_token1] = ACTIONS(744), - [aux_sym_identity_file_token1] = ACTIONS(744), - [aux_sym_ignore_unknown_token1] = ACTIONS(744), - [aux_sym_include_token1] = ACTIONS(744), - [aux_sym_ip_qos_token1] = ACTIONS(744), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(744), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(744), - [aux_sym_kex_algorithms_token1] = ACTIONS(744), - [aux_sym_known_hosts_command_token1] = ACTIONS(744), - [aux_sym_local_command_token1] = ACTIONS(744), - [aux_sym_local_forward_token1] = ACTIONS(744), - [aux_sym_log_level_token1] = ACTIONS(744), - [aux_sym_log_verbose_token1] = ACTIONS(744), - [aux_sym_macs_token1] = ACTIONS(744), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(744), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(744), - [aux_sym_password_authentication_token1] = ACTIONS(744), - [aux_sym_permit_local_command_token1] = ACTIONS(744), - [aux_sym_permit_remote_open_token1] = ACTIONS(744), - [aux_sym_pkcs11_provider_token1] = ACTIONS(744), - [aux_sym_port_token1] = ACTIONS(744), - [aux_sym_preferred_authentications_token1] = ACTIONS(744), - [aux_sym_protocol_token1] = ACTIONS(744), - [aux_sym_proxy_command_token1] = ACTIONS(744), - [aux_sym_proxy_jump_token1] = ACTIONS(744), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(744), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(744), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(744), - [aux_sym_pubkey_authentication_token1] = ACTIONS(744), - [aux_sym_rekey_limit_token1] = ACTIONS(744), - [aux_sym_remote_command_token1] = ACTIONS(744), - [aux_sym_remote_forward_token1] = ACTIONS(744), - [aux_sym_request_tty_token1] = ACTIONS(744), - [aux_sym_required_rsa_size_token1] = ACTIONS(744), - [aux_sym_revoked_host_keys_token1] = ACTIONS(744), - [aux_sym_security_key_provider_token1] = ACTIONS(744), - [aux_sym_send_env_token1] = ACTIONS(744), - [aux_sym_server_alive_count_max_token1] = ACTIONS(744), - [aux_sym_server_alive_interval_token1] = ACTIONS(744), - [aux_sym_session_type_token1] = ACTIONS(744), - [aux_sym_set_env_token1] = ACTIONS(744), - [aux_sym_stdin_null_token1] = ACTIONS(744), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(744), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(744), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(744), - [aux_sym_syslog_facility_token1] = ACTIONS(744), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(744), - [aux_sym_keep_alive_token1] = ACTIONS(744), - [aux_sym_tag_token1] = ACTIONS(744), - [aux_sym_tunnel_token1] = ACTIONS(746), - [aux_sym_tunnel_device_token1] = ACTIONS(744), - [aux_sym_update_host_keys_token1] = ACTIONS(744), - [aux_sym_use_keychain_token1] = ACTIONS(744), - [aux_sym_use_roaming_token1] = ACTIONS(744), - [aux_sym_user_token1] = ACTIONS(746), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(744), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(744), - [aux_sym_visual_host_key_token1] = ACTIONS(744), - [aux_sym_xauth_location_token1] = ACTIONS(744), + [ts_builtin_sym_end] = ACTIONS(749), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(751), + [anon_sym_DQUOTE] = ACTIONS(753), + [aux_sym_match_token1] = ACTIONS(749), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(749), + [aux_sym_address_family_token1] = ACTIONS(749), + [aux_sym_batch_mode_token1] = ACTIONS(749), + [aux_sym_bind_address_token1] = ACTIONS(749), + [aux_sym_bind_interface_token1] = ACTIONS(749), + [aux_sym_canonical_domains_token1] = ACTIONS(749), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(749), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(749), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(749), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(749), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(749), + [aux_sym_certificate_file_token1] = ACTIONS(749), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(749), + [aux_sym_channel_timeout_token1] = ACTIONS(749), + [aux_sym_check_host_ip_token1] = ACTIONS(749), + [aux_sym_ciphers_token1] = ACTIONS(749), + [aux_sym_cipher_token1] = ACTIONS(751), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(749), + [aux_sym_compression_token1] = ACTIONS(749), + [aux_sym_connection_attempts_token1] = ACTIONS(749), + [aux_sym_connect_timeout_token1] = ACTIONS(749), + [aux_sym_control_master_token1] = ACTIONS(749), + [aux_sym_control_path_token1] = ACTIONS(749), + [aux_sym_control_persist_token1] = ACTIONS(749), + [aux_sym_dynamic_forward_token1] = ACTIONS(749), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(749), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(749), + [aux_sym_escape_char_token1] = ACTIONS(749), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(749), + [aux_sym_fingerprint_hash_token1] = ACTIONS(749), + [aux_sym_fork_after_authentication_token1] = ACTIONS(749), + [aux_sym_forward_agent_token1] = ACTIONS(749), + [aux_sym_forward_x11_token1] = ACTIONS(751), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(749), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(749), + [aux_sym_gateway_ports_token1] = ACTIONS(749), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(749), + [aux_sym_gssapi_authentication_token1] = ACTIONS(749), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(749), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(749), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(749), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(749), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(749), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(749), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(749), + [aux_sym_hash_known_hosts_token1] = ACTIONS(749), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(749), + [aux_sym_hostbased_authentication_token1] = ACTIONS(749), + [aux_sym_host_key_algorithms_token1] = ACTIONS(749), + [aux_sym_host_key_alias_token1] = ACTIONS(749), + [aux_sym_hostname_token1] = ACTIONS(749), + [aux_sym_identities_only_token1] = ACTIONS(749), + [aux_sym_identity_agent_token1] = ACTIONS(749), + [aux_sym_identity_file_token1] = ACTIONS(749), + [aux_sym_ignore_unknown_token1] = ACTIONS(749), + [aux_sym_include_token1] = ACTIONS(749), + [aux_sym_ip_qos_token1] = ACTIONS(749), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(749), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(749), + [aux_sym_kex_algorithms_token1] = ACTIONS(749), + [aux_sym_known_hosts_command_token1] = ACTIONS(749), + [aux_sym_local_command_token1] = ACTIONS(749), + [aux_sym_local_forward_token1] = ACTIONS(749), + [aux_sym_log_level_token1] = ACTIONS(749), + [aux_sym_log_verbose_token1] = ACTIONS(749), + [aux_sym_macs_token1] = ACTIONS(749), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(749), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(749), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(749), + [aux_sym_password_authentication_token1] = ACTIONS(749), + [aux_sym_permit_local_command_token1] = ACTIONS(749), + [aux_sym_permit_remote_open_token1] = ACTIONS(749), + [aux_sym_pkcs11_provider_token1] = ACTIONS(749), + [aux_sym_port_token1] = ACTIONS(749), + [aux_sym_preferred_authentications_token1] = ACTIONS(749), + [aux_sym_protocol_token1] = ACTIONS(749), + [aux_sym_proxy_command_token1] = ACTIONS(749), + [aux_sym_proxy_jump_token1] = ACTIONS(749), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(749), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(749), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(749), + [aux_sym_pubkey_authentication_token1] = ACTIONS(749), + [aux_sym_rekey_limit_token1] = ACTIONS(749), + [aux_sym_remote_command_token1] = ACTIONS(749), + [aux_sym_remote_forward_token1] = ACTIONS(749), + [aux_sym_request_tty_token1] = ACTIONS(749), + [aux_sym_required_rsa_size_token1] = ACTIONS(749), + [aux_sym_revoked_host_keys_token1] = ACTIONS(749), + [aux_sym_security_key_provider_token1] = ACTIONS(749), + [aux_sym_send_env_token1] = ACTIONS(749), + [aux_sym_server_alive_count_max_token1] = ACTIONS(749), + [aux_sym_server_alive_interval_token1] = ACTIONS(749), + [aux_sym_session_type_token1] = ACTIONS(749), + [aux_sym_set_env_token1] = ACTIONS(749), + [aux_sym_stdin_null_token1] = ACTIONS(749), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(749), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(749), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(749), + [aux_sym_syslog_facility_token1] = ACTIONS(749), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(749), + [aux_sym_keep_alive_token1] = ACTIONS(749), + [aux_sym_tag_token1] = ACTIONS(749), + [aux_sym_tunnel_token1] = ACTIONS(751), + [aux_sym_tunnel_device_token1] = ACTIONS(749), + [aux_sym_update_host_keys_token1] = ACTIONS(749), + [aux_sym_use_keychain_token1] = ACTIONS(749), + [aux_sym_use_roaming_token1] = ACTIONS(749), + [aux_sym_user_token1] = ACTIONS(751), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(749), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(749), + [aux_sym_visual_host_key_token1] = ACTIONS(749), + [aux_sym_xauth_location_token1] = ACTIONS(749), }, [32] = { - [ts_builtin_sym_end] = ACTIONS(750), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(752), - [anon_sym_DQUOTE] = ACTIONS(754), - [aux_sym_match_token1] = ACTIONS(750), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(750), - [aux_sym_address_family_token1] = ACTIONS(750), - [aux_sym_batch_mode_token1] = ACTIONS(750), - [aux_sym_bind_address_token1] = ACTIONS(750), - [aux_sym_bind_interface_token1] = ACTIONS(750), - [aux_sym_canonical_domains_token1] = ACTIONS(750), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(750), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(750), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(750), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(750), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(750), - [aux_sym_certificate_file_token1] = ACTIONS(750), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(750), - [aux_sym_channel_timeout_token1] = ACTIONS(750), - [aux_sym_check_host_ip_token1] = ACTIONS(750), - [aux_sym_ciphers_token1] = ACTIONS(750), - [aux_sym_cipher_token1] = ACTIONS(752), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(750), - [aux_sym_compression_token1] = ACTIONS(750), - [aux_sym_connection_attempts_token1] = ACTIONS(750), - [aux_sym_connect_timeout_token1] = ACTIONS(750), - [aux_sym_control_master_token1] = ACTIONS(750), - [aux_sym_control_path_token1] = ACTIONS(750), - [aux_sym_control_persist_token1] = ACTIONS(750), - [aux_sym_dynamic_forward_token1] = ACTIONS(750), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(750), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(750), - [aux_sym_escape_char_token1] = ACTIONS(750), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(750), - [aux_sym_fingerprint_hash_token1] = ACTIONS(750), - [aux_sym_fork_after_authentication_token1] = ACTIONS(750), - [aux_sym_forward_agent_token1] = ACTIONS(750), - [aux_sym_forward_x11_token1] = ACTIONS(752), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(750), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(750), - [aux_sym_gateway_ports_token1] = ACTIONS(750), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(750), - [aux_sym_gssapi_authentication_token1] = ACTIONS(750), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(750), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(750), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(750), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(750), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(750), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(750), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(750), - [aux_sym_hash_known_hosts_token1] = ACTIONS(750), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(750), - [aux_sym_hostbased_authentication_token1] = ACTIONS(750), - [aux_sym_host_key_algorithms_token1] = ACTIONS(750), - [aux_sym_host_key_alias_token1] = ACTIONS(750), - [aux_sym_hostname_token1] = ACTIONS(750), - [aux_sym_identities_only_token1] = ACTIONS(750), - [aux_sym_identity_agent_token1] = ACTIONS(750), - [aux_sym_identity_file_token1] = ACTIONS(750), - [aux_sym_ignore_unknown_token1] = ACTIONS(750), - [aux_sym_include_token1] = ACTIONS(750), - [aux_sym_ip_qos_token1] = ACTIONS(750), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(750), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(750), - [aux_sym_kex_algorithms_token1] = ACTIONS(750), - [aux_sym_known_hosts_command_token1] = ACTIONS(750), - [aux_sym_local_command_token1] = ACTIONS(750), - [aux_sym_local_forward_token1] = ACTIONS(750), - [aux_sym_log_level_token1] = ACTIONS(750), - [aux_sym_log_verbose_token1] = ACTIONS(750), - [aux_sym_macs_token1] = ACTIONS(750), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(750), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(750), - [aux_sym_password_authentication_token1] = ACTIONS(750), - [aux_sym_permit_local_command_token1] = ACTIONS(750), - [aux_sym_permit_remote_open_token1] = ACTIONS(750), - [aux_sym_pkcs11_provider_token1] = ACTIONS(750), - [aux_sym_port_token1] = ACTIONS(750), - [aux_sym_preferred_authentications_token1] = ACTIONS(750), - [aux_sym_protocol_token1] = ACTIONS(750), - [aux_sym_proxy_command_token1] = ACTIONS(750), - [aux_sym_proxy_jump_token1] = ACTIONS(750), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(750), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(750), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(750), - [aux_sym_pubkey_authentication_token1] = ACTIONS(750), - [aux_sym_rekey_limit_token1] = ACTIONS(750), - [aux_sym_remote_command_token1] = ACTIONS(750), - [aux_sym_remote_forward_token1] = ACTIONS(750), - [aux_sym_request_tty_token1] = ACTIONS(750), - [aux_sym_required_rsa_size_token1] = ACTIONS(750), - [aux_sym_revoked_host_keys_token1] = ACTIONS(750), - [aux_sym_security_key_provider_token1] = ACTIONS(750), - [aux_sym_send_env_token1] = ACTIONS(750), - [aux_sym_server_alive_count_max_token1] = ACTIONS(750), - [aux_sym_server_alive_interval_token1] = ACTIONS(750), - [aux_sym_session_type_token1] = ACTIONS(750), - [aux_sym_set_env_token1] = ACTIONS(750), - [aux_sym_stdin_null_token1] = ACTIONS(750), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(750), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(750), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(750), - [aux_sym_syslog_facility_token1] = ACTIONS(750), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(750), - [aux_sym_keep_alive_token1] = ACTIONS(750), - [aux_sym_tag_token1] = ACTIONS(750), - [aux_sym_tunnel_token1] = ACTIONS(752), - [aux_sym_tunnel_device_token1] = ACTIONS(750), - [aux_sym_update_host_keys_token1] = ACTIONS(750), - [aux_sym_use_keychain_token1] = ACTIONS(750), - [aux_sym_use_roaming_token1] = ACTIONS(750), - [aux_sym_user_token1] = ACTIONS(752), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(750), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(750), - [aux_sym_visual_host_key_token1] = ACTIONS(750), - [aux_sym_xauth_location_token1] = ACTIONS(750), + [ts_builtin_sym_end] = ACTIONS(755), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(757), + [anon_sym_DQUOTE] = ACTIONS(759), + [aux_sym_match_token1] = ACTIONS(755), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(755), + [aux_sym_address_family_token1] = ACTIONS(755), + [aux_sym_batch_mode_token1] = ACTIONS(755), + [aux_sym_bind_address_token1] = ACTIONS(755), + [aux_sym_bind_interface_token1] = ACTIONS(755), + [aux_sym_canonical_domains_token1] = ACTIONS(755), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(755), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(755), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(755), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(755), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(755), + [aux_sym_certificate_file_token1] = ACTIONS(755), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(755), + [aux_sym_channel_timeout_token1] = ACTIONS(755), + [aux_sym_check_host_ip_token1] = ACTIONS(755), + [aux_sym_ciphers_token1] = ACTIONS(755), + [aux_sym_cipher_token1] = ACTIONS(757), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(755), + [aux_sym_compression_token1] = ACTIONS(755), + [aux_sym_connection_attempts_token1] = ACTIONS(755), + [aux_sym_connect_timeout_token1] = ACTIONS(755), + [aux_sym_control_master_token1] = ACTIONS(755), + [aux_sym_control_path_token1] = ACTIONS(755), + [aux_sym_control_persist_token1] = ACTIONS(755), + [aux_sym_dynamic_forward_token1] = ACTIONS(755), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(755), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(755), + [aux_sym_escape_char_token1] = ACTIONS(755), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(755), + [aux_sym_fingerprint_hash_token1] = ACTIONS(755), + [aux_sym_fork_after_authentication_token1] = ACTIONS(755), + [aux_sym_forward_agent_token1] = ACTIONS(755), + [aux_sym_forward_x11_token1] = ACTIONS(757), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(755), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(755), + [aux_sym_gateway_ports_token1] = ACTIONS(755), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(755), + [aux_sym_gssapi_authentication_token1] = ACTIONS(755), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(755), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(755), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(755), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(755), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(755), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(755), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(755), + [aux_sym_hash_known_hosts_token1] = ACTIONS(755), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(755), + [aux_sym_hostbased_authentication_token1] = ACTIONS(755), + [aux_sym_host_key_algorithms_token1] = ACTIONS(755), + [aux_sym_host_key_alias_token1] = ACTIONS(755), + [aux_sym_hostname_token1] = ACTIONS(755), + [aux_sym_identities_only_token1] = ACTIONS(755), + [aux_sym_identity_agent_token1] = ACTIONS(755), + [aux_sym_identity_file_token1] = ACTIONS(755), + [aux_sym_ignore_unknown_token1] = ACTIONS(755), + [aux_sym_include_token1] = ACTIONS(755), + [aux_sym_ip_qos_token1] = ACTIONS(755), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(755), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(755), + [aux_sym_kex_algorithms_token1] = ACTIONS(755), + [aux_sym_known_hosts_command_token1] = ACTIONS(755), + [aux_sym_local_command_token1] = ACTIONS(755), + [aux_sym_local_forward_token1] = ACTIONS(755), + [aux_sym_log_level_token1] = ACTIONS(755), + [aux_sym_log_verbose_token1] = ACTIONS(755), + [aux_sym_macs_token1] = ACTIONS(755), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(755), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(755), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(755), + [aux_sym_password_authentication_token1] = ACTIONS(755), + [aux_sym_permit_local_command_token1] = ACTIONS(755), + [aux_sym_permit_remote_open_token1] = ACTIONS(755), + [aux_sym_pkcs11_provider_token1] = ACTIONS(755), + [aux_sym_port_token1] = ACTIONS(755), + [aux_sym_preferred_authentications_token1] = ACTIONS(755), + [aux_sym_protocol_token1] = ACTIONS(755), + [aux_sym_proxy_command_token1] = ACTIONS(755), + [aux_sym_proxy_jump_token1] = ACTIONS(755), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(755), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(755), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(755), + [aux_sym_pubkey_authentication_token1] = ACTIONS(755), + [aux_sym_rekey_limit_token1] = ACTIONS(755), + [aux_sym_remote_command_token1] = ACTIONS(755), + [aux_sym_remote_forward_token1] = ACTIONS(755), + [aux_sym_request_tty_token1] = ACTIONS(755), + [aux_sym_required_rsa_size_token1] = ACTIONS(755), + [aux_sym_revoked_host_keys_token1] = ACTIONS(755), + [aux_sym_security_key_provider_token1] = ACTIONS(755), + [aux_sym_send_env_token1] = ACTIONS(755), + [aux_sym_server_alive_count_max_token1] = ACTIONS(755), + [aux_sym_server_alive_interval_token1] = ACTIONS(755), + [aux_sym_session_type_token1] = ACTIONS(755), + [aux_sym_set_env_token1] = ACTIONS(755), + [aux_sym_stdin_null_token1] = ACTIONS(755), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(755), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(755), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(755), + [aux_sym_syslog_facility_token1] = ACTIONS(755), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(755), + [aux_sym_keep_alive_token1] = ACTIONS(755), + [aux_sym_tag_token1] = ACTIONS(755), + [aux_sym_tunnel_token1] = ACTIONS(757), + [aux_sym_tunnel_device_token1] = ACTIONS(755), + [aux_sym_update_host_keys_token1] = ACTIONS(755), + [aux_sym_use_keychain_token1] = ACTIONS(755), + [aux_sym_use_roaming_token1] = ACTIONS(755), + [aux_sym_user_token1] = ACTIONS(757), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(755), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(755), + [aux_sym_visual_host_key_token1] = ACTIONS(755), + [aux_sym_xauth_location_token1] = ACTIONS(755), }, [33] = { - [ts_builtin_sym_end] = ACTIONS(756), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(760), - [aux_sym_match_token1] = ACTIONS(756), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(756), - [aux_sym_address_family_token1] = ACTIONS(756), - [aux_sym_batch_mode_token1] = ACTIONS(756), - [aux_sym_bind_address_token1] = ACTIONS(756), - [aux_sym_bind_interface_token1] = ACTIONS(756), - [aux_sym_canonical_domains_token1] = ACTIONS(756), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(756), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(756), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(756), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(756), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(756), - [aux_sym_certificate_file_token1] = ACTIONS(756), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(756), - [aux_sym_channel_timeout_token1] = ACTIONS(756), - [aux_sym_check_host_ip_token1] = ACTIONS(756), - [aux_sym_ciphers_token1] = ACTIONS(756), - [aux_sym_cipher_token1] = ACTIONS(758), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(756), - [aux_sym_compression_token1] = ACTIONS(756), - [aux_sym_connection_attempts_token1] = ACTIONS(756), - [aux_sym_connect_timeout_token1] = ACTIONS(756), - [aux_sym_control_master_token1] = ACTIONS(756), - [aux_sym_control_path_token1] = ACTIONS(756), - [aux_sym_control_persist_token1] = ACTIONS(756), - [aux_sym_dynamic_forward_token1] = ACTIONS(756), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(756), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(756), - [aux_sym_escape_char_token1] = ACTIONS(756), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(756), - [aux_sym_fingerprint_hash_token1] = ACTIONS(756), - [aux_sym_fork_after_authentication_token1] = ACTIONS(756), - [aux_sym_forward_agent_token1] = ACTIONS(756), - [aux_sym_forward_x11_token1] = ACTIONS(758), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(756), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(756), - [aux_sym_gateway_ports_token1] = ACTIONS(756), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(756), - [aux_sym_gssapi_authentication_token1] = ACTIONS(756), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(756), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(756), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(756), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(756), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(756), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(756), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(756), - [aux_sym_hash_known_hosts_token1] = ACTIONS(756), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(756), - [aux_sym_hostbased_authentication_token1] = ACTIONS(756), - [aux_sym_host_key_algorithms_token1] = ACTIONS(756), - [aux_sym_host_key_alias_token1] = ACTIONS(756), - [aux_sym_hostname_token1] = ACTIONS(756), - [aux_sym_identities_only_token1] = ACTIONS(756), - [aux_sym_identity_agent_token1] = ACTIONS(756), - [aux_sym_identity_file_token1] = ACTIONS(756), - [aux_sym_ignore_unknown_token1] = ACTIONS(756), - [aux_sym_include_token1] = ACTIONS(756), - [aux_sym_ip_qos_token1] = ACTIONS(756), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(756), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(756), - [aux_sym_kex_algorithms_token1] = ACTIONS(756), - [aux_sym_known_hosts_command_token1] = ACTIONS(756), - [aux_sym_local_command_token1] = ACTIONS(756), - [aux_sym_local_forward_token1] = ACTIONS(756), - [aux_sym_log_level_token1] = ACTIONS(756), - [aux_sym_log_verbose_token1] = ACTIONS(756), - [aux_sym_macs_token1] = ACTIONS(756), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(756), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(756), - [aux_sym_password_authentication_token1] = ACTIONS(756), - [aux_sym_permit_local_command_token1] = ACTIONS(756), - [aux_sym_permit_remote_open_token1] = ACTIONS(756), - [aux_sym_pkcs11_provider_token1] = ACTIONS(756), - [aux_sym_port_token1] = ACTIONS(756), - [aux_sym_preferred_authentications_token1] = ACTIONS(756), - [aux_sym_protocol_token1] = ACTIONS(756), - [aux_sym_proxy_command_token1] = ACTIONS(756), - [aux_sym_proxy_jump_token1] = ACTIONS(756), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(756), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(756), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(756), - [aux_sym_pubkey_authentication_token1] = ACTIONS(756), - [aux_sym_rekey_limit_token1] = ACTIONS(756), - [aux_sym_remote_command_token1] = ACTIONS(756), - [aux_sym_remote_forward_token1] = ACTIONS(756), - [aux_sym_request_tty_token1] = ACTIONS(756), - [aux_sym_required_rsa_size_token1] = ACTIONS(756), - [aux_sym_revoked_host_keys_token1] = ACTIONS(756), - [aux_sym_security_key_provider_token1] = ACTIONS(756), - [aux_sym_send_env_token1] = ACTIONS(756), - [aux_sym_server_alive_count_max_token1] = ACTIONS(756), - [aux_sym_server_alive_interval_token1] = ACTIONS(756), - [aux_sym_session_type_token1] = ACTIONS(756), - [aux_sym_set_env_token1] = ACTIONS(756), - [aux_sym_stdin_null_token1] = ACTIONS(756), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(756), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(756), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(756), - [aux_sym_syslog_facility_token1] = ACTIONS(756), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(756), - [aux_sym_keep_alive_token1] = ACTIONS(756), - [aux_sym_tag_token1] = ACTIONS(756), - [aux_sym_tunnel_token1] = ACTIONS(758), - [aux_sym_tunnel_device_token1] = ACTIONS(756), - [aux_sym_update_host_keys_token1] = ACTIONS(756), - [aux_sym_use_keychain_token1] = ACTIONS(756), - [aux_sym_use_roaming_token1] = ACTIONS(756), - [aux_sym_user_token1] = ACTIONS(758), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(756), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(756), - [aux_sym_visual_host_key_token1] = ACTIONS(756), - [aux_sym_xauth_location_token1] = ACTIONS(756), + [ts_builtin_sym_end] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(763), + [anon_sym_DQUOTE] = ACTIONS(765), + [aux_sym_match_token1] = ACTIONS(761), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(761), + [aux_sym_address_family_token1] = ACTIONS(761), + [aux_sym_batch_mode_token1] = ACTIONS(761), + [aux_sym_bind_address_token1] = ACTIONS(761), + [aux_sym_bind_interface_token1] = ACTIONS(761), + [aux_sym_canonical_domains_token1] = ACTIONS(761), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(761), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(761), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(761), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(761), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(761), + [aux_sym_certificate_file_token1] = ACTIONS(761), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(761), + [aux_sym_channel_timeout_token1] = ACTIONS(761), + [aux_sym_check_host_ip_token1] = ACTIONS(761), + [aux_sym_ciphers_token1] = ACTIONS(761), + [aux_sym_cipher_token1] = ACTIONS(763), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(761), + [aux_sym_compression_token1] = ACTIONS(761), + [aux_sym_connection_attempts_token1] = ACTIONS(761), + [aux_sym_connect_timeout_token1] = ACTIONS(761), + [aux_sym_control_master_token1] = ACTIONS(761), + [aux_sym_control_path_token1] = ACTIONS(761), + [aux_sym_control_persist_token1] = ACTIONS(761), + [aux_sym_dynamic_forward_token1] = ACTIONS(761), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(761), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(761), + [aux_sym_escape_char_token1] = ACTIONS(761), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(761), + [aux_sym_fingerprint_hash_token1] = ACTIONS(761), + [aux_sym_fork_after_authentication_token1] = ACTIONS(761), + [aux_sym_forward_agent_token1] = ACTIONS(761), + [aux_sym_forward_x11_token1] = ACTIONS(763), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(761), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(761), + [aux_sym_gateway_ports_token1] = ACTIONS(761), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(761), + [aux_sym_gssapi_authentication_token1] = ACTIONS(761), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(761), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(761), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(761), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(761), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(761), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(761), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(761), + [aux_sym_hash_known_hosts_token1] = ACTIONS(761), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(761), + [aux_sym_hostbased_authentication_token1] = ACTIONS(761), + [aux_sym_host_key_algorithms_token1] = ACTIONS(761), + [aux_sym_host_key_alias_token1] = ACTIONS(761), + [aux_sym_hostname_token1] = ACTIONS(761), + [aux_sym_identities_only_token1] = ACTIONS(761), + [aux_sym_identity_agent_token1] = ACTIONS(761), + [aux_sym_identity_file_token1] = ACTIONS(761), + [aux_sym_ignore_unknown_token1] = ACTIONS(761), + [aux_sym_include_token1] = ACTIONS(761), + [aux_sym_ip_qos_token1] = ACTIONS(761), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(761), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(761), + [aux_sym_kex_algorithms_token1] = ACTIONS(761), + [aux_sym_known_hosts_command_token1] = ACTIONS(761), + [aux_sym_local_command_token1] = ACTIONS(761), + [aux_sym_local_forward_token1] = ACTIONS(761), + [aux_sym_log_level_token1] = ACTIONS(761), + [aux_sym_log_verbose_token1] = ACTIONS(761), + [aux_sym_macs_token1] = ACTIONS(761), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(761), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(761), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(761), + [aux_sym_password_authentication_token1] = ACTIONS(761), + [aux_sym_permit_local_command_token1] = ACTIONS(761), + [aux_sym_permit_remote_open_token1] = ACTIONS(761), + [aux_sym_pkcs11_provider_token1] = ACTIONS(761), + [aux_sym_port_token1] = ACTIONS(761), + [aux_sym_preferred_authentications_token1] = ACTIONS(761), + [aux_sym_protocol_token1] = ACTIONS(761), + [aux_sym_proxy_command_token1] = ACTIONS(761), + [aux_sym_proxy_jump_token1] = ACTIONS(761), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(761), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(761), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(761), + [aux_sym_pubkey_authentication_token1] = ACTIONS(761), + [aux_sym_rekey_limit_token1] = ACTIONS(761), + [aux_sym_remote_command_token1] = ACTIONS(761), + [aux_sym_remote_forward_token1] = ACTIONS(761), + [aux_sym_request_tty_token1] = ACTIONS(761), + [aux_sym_required_rsa_size_token1] = ACTIONS(761), + [aux_sym_revoked_host_keys_token1] = ACTIONS(761), + [aux_sym_security_key_provider_token1] = ACTIONS(761), + [aux_sym_send_env_token1] = ACTIONS(761), + [aux_sym_server_alive_count_max_token1] = ACTIONS(761), + [aux_sym_server_alive_interval_token1] = ACTIONS(761), + [aux_sym_session_type_token1] = ACTIONS(761), + [aux_sym_set_env_token1] = ACTIONS(761), + [aux_sym_stdin_null_token1] = ACTIONS(761), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(761), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(761), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(761), + [aux_sym_syslog_facility_token1] = ACTIONS(761), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(761), + [aux_sym_keep_alive_token1] = ACTIONS(761), + [aux_sym_tag_token1] = ACTIONS(761), + [aux_sym_tunnel_token1] = ACTIONS(763), + [aux_sym_tunnel_device_token1] = ACTIONS(761), + [aux_sym_update_host_keys_token1] = ACTIONS(761), + [aux_sym_use_keychain_token1] = ACTIONS(761), + [aux_sym_use_roaming_token1] = ACTIONS(761), + [aux_sym_user_token1] = ACTIONS(763), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(761), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(761), + [aux_sym_visual_host_key_token1] = ACTIONS(761), + [aux_sym_xauth_location_token1] = ACTIONS(761), }, [34] = { - [ts_builtin_sym_end] = ACTIONS(762), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(764), - [anon_sym_DQUOTE] = ACTIONS(766), - [aux_sym_match_token1] = ACTIONS(762), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(762), - [aux_sym_address_family_token1] = ACTIONS(762), - [aux_sym_batch_mode_token1] = ACTIONS(762), - [aux_sym_bind_address_token1] = ACTIONS(762), - [aux_sym_bind_interface_token1] = ACTIONS(762), - [aux_sym_canonical_domains_token1] = ACTIONS(762), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(762), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(762), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(762), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(762), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(762), - [aux_sym_certificate_file_token1] = ACTIONS(762), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(762), - [aux_sym_channel_timeout_token1] = ACTIONS(762), - [aux_sym_check_host_ip_token1] = ACTIONS(762), - [aux_sym_ciphers_token1] = ACTIONS(762), - [aux_sym_cipher_token1] = ACTIONS(764), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(762), - [aux_sym_compression_token1] = ACTIONS(762), - [aux_sym_connection_attempts_token1] = ACTIONS(762), - [aux_sym_connect_timeout_token1] = ACTIONS(762), - [aux_sym_control_master_token1] = ACTIONS(762), - [aux_sym_control_path_token1] = ACTIONS(762), - [aux_sym_control_persist_token1] = ACTIONS(762), - [aux_sym_dynamic_forward_token1] = ACTIONS(762), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(762), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(762), - [aux_sym_escape_char_token1] = ACTIONS(762), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(762), - [aux_sym_fingerprint_hash_token1] = ACTIONS(762), - [aux_sym_fork_after_authentication_token1] = ACTIONS(762), - [aux_sym_forward_agent_token1] = ACTIONS(762), - [aux_sym_forward_x11_token1] = ACTIONS(764), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(762), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(762), - [aux_sym_gateway_ports_token1] = ACTIONS(762), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(762), - [aux_sym_gssapi_authentication_token1] = ACTIONS(762), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(762), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(762), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(762), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(762), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(762), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(762), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(762), - [aux_sym_hash_known_hosts_token1] = ACTIONS(762), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(762), - [aux_sym_hostbased_authentication_token1] = ACTIONS(762), - [aux_sym_host_key_algorithms_token1] = ACTIONS(762), - [aux_sym_host_key_alias_token1] = ACTIONS(762), - [aux_sym_hostname_token1] = ACTIONS(762), - [aux_sym_identities_only_token1] = ACTIONS(762), - [aux_sym_identity_agent_token1] = ACTIONS(762), - [aux_sym_identity_file_token1] = ACTIONS(762), - [aux_sym_ignore_unknown_token1] = ACTIONS(762), - [aux_sym_include_token1] = ACTIONS(762), - [aux_sym_ip_qos_token1] = ACTIONS(762), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(762), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(762), - [aux_sym_kex_algorithms_token1] = ACTIONS(762), - [aux_sym_known_hosts_command_token1] = ACTIONS(762), - [aux_sym_local_command_token1] = ACTIONS(762), - [aux_sym_local_forward_token1] = ACTIONS(762), - [aux_sym_log_level_token1] = ACTIONS(762), - [aux_sym_log_verbose_token1] = ACTIONS(762), - [aux_sym_macs_token1] = ACTIONS(762), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(762), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(762), - [aux_sym_password_authentication_token1] = ACTIONS(762), - [aux_sym_permit_local_command_token1] = ACTIONS(762), - [aux_sym_permit_remote_open_token1] = ACTIONS(762), - [aux_sym_pkcs11_provider_token1] = ACTIONS(762), - [aux_sym_port_token1] = ACTIONS(762), - [aux_sym_preferred_authentications_token1] = ACTIONS(762), - [aux_sym_protocol_token1] = ACTIONS(762), - [aux_sym_proxy_command_token1] = ACTIONS(762), - [aux_sym_proxy_jump_token1] = ACTIONS(762), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(762), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(762), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(762), - [aux_sym_pubkey_authentication_token1] = ACTIONS(762), - [aux_sym_rekey_limit_token1] = ACTIONS(762), - [aux_sym_remote_command_token1] = ACTIONS(762), - [aux_sym_remote_forward_token1] = ACTIONS(762), - [aux_sym_request_tty_token1] = ACTIONS(762), - [aux_sym_required_rsa_size_token1] = ACTIONS(762), - [aux_sym_revoked_host_keys_token1] = ACTIONS(762), - [aux_sym_security_key_provider_token1] = ACTIONS(762), - [aux_sym_send_env_token1] = ACTIONS(762), - [aux_sym_server_alive_count_max_token1] = ACTIONS(762), - [aux_sym_server_alive_interval_token1] = ACTIONS(762), - [aux_sym_session_type_token1] = ACTIONS(762), - [aux_sym_set_env_token1] = ACTIONS(762), - [aux_sym_stdin_null_token1] = ACTIONS(762), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(762), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(762), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(762), - [aux_sym_syslog_facility_token1] = ACTIONS(762), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(762), - [aux_sym_keep_alive_token1] = ACTIONS(762), - [aux_sym_tag_token1] = ACTIONS(762), - [aux_sym_tunnel_token1] = ACTIONS(764), - [aux_sym_tunnel_device_token1] = ACTIONS(762), - [aux_sym_update_host_keys_token1] = ACTIONS(762), - [aux_sym_use_keychain_token1] = ACTIONS(762), - [aux_sym_use_roaming_token1] = ACTIONS(762), - [aux_sym_user_token1] = ACTIONS(764), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(762), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(762), - [aux_sym_visual_host_key_token1] = ACTIONS(762), - [aux_sym_xauth_location_token1] = ACTIONS(762), + [ts_builtin_sym_end] = ACTIONS(767), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(769), + [anon_sym_DQUOTE] = ACTIONS(771), + [aux_sym_match_token1] = ACTIONS(767), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(767), + [aux_sym_address_family_token1] = ACTIONS(767), + [aux_sym_batch_mode_token1] = ACTIONS(767), + [aux_sym_bind_address_token1] = ACTIONS(767), + [aux_sym_bind_interface_token1] = ACTIONS(767), + [aux_sym_canonical_domains_token1] = ACTIONS(767), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(767), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(767), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(767), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(767), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(767), + [aux_sym_certificate_file_token1] = ACTIONS(767), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(767), + [aux_sym_channel_timeout_token1] = ACTIONS(767), + [aux_sym_check_host_ip_token1] = ACTIONS(767), + [aux_sym_ciphers_token1] = ACTIONS(767), + [aux_sym_cipher_token1] = ACTIONS(769), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(767), + [aux_sym_compression_token1] = ACTIONS(767), + [aux_sym_connection_attempts_token1] = ACTIONS(767), + [aux_sym_connect_timeout_token1] = ACTIONS(767), + [aux_sym_control_master_token1] = ACTIONS(767), + [aux_sym_control_path_token1] = ACTIONS(767), + [aux_sym_control_persist_token1] = ACTIONS(767), + [aux_sym_dynamic_forward_token1] = ACTIONS(767), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(767), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(767), + [aux_sym_escape_char_token1] = ACTIONS(767), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(767), + [aux_sym_fingerprint_hash_token1] = ACTIONS(767), + [aux_sym_fork_after_authentication_token1] = ACTIONS(767), + [aux_sym_forward_agent_token1] = ACTIONS(767), + [aux_sym_forward_x11_token1] = ACTIONS(769), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(767), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(767), + [aux_sym_gateway_ports_token1] = ACTIONS(767), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(767), + [aux_sym_gssapi_authentication_token1] = ACTIONS(767), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(767), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(767), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(767), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(767), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(767), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(767), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(767), + [aux_sym_hash_known_hosts_token1] = ACTIONS(767), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(767), + [aux_sym_hostbased_authentication_token1] = ACTIONS(767), + [aux_sym_host_key_algorithms_token1] = ACTIONS(767), + [aux_sym_host_key_alias_token1] = ACTIONS(767), + [aux_sym_hostname_token1] = ACTIONS(767), + [aux_sym_identities_only_token1] = ACTIONS(767), + [aux_sym_identity_agent_token1] = ACTIONS(767), + [aux_sym_identity_file_token1] = ACTIONS(767), + [aux_sym_ignore_unknown_token1] = ACTIONS(767), + [aux_sym_include_token1] = ACTIONS(767), + [aux_sym_ip_qos_token1] = ACTIONS(767), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(767), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(767), + [aux_sym_kex_algorithms_token1] = ACTIONS(767), + [aux_sym_known_hosts_command_token1] = ACTIONS(767), + [aux_sym_local_command_token1] = ACTIONS(767), + [aux_sym_local_forward_token1] = ACTIONS(767), + [aux_sym_log_level_token1] = ACTIONS(767), + [aux_sym_log_verbose_token1] = ACTIONS(767), + [aux_sym_macs_token1] = ACTIONS(767), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(767), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(767), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(767), + [aux_sym_password_authentication_token1] = ACTIONS(767), + [aux_sym_permit_local_command_token1] = ACTIONS(767), + [aux_sym_permit_remote_open_token1] = ACTIONS(767), + [aux_sym_pkcs11_provider_token1] = ACTIONS(767), + [aux_sym_port_token1] = ACTIONS(767), + [aux_sym_preferred_authentications_token1] = ACTIONS(767), + [aux_sym_protocol_token1] = ACTIONS(767), + [aux_sym_proxy_command_token1] = ACTIONS(767), + [aux_sym_proxy_jump_token1] = ACTIONS(767), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(767), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(767), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(767), + [aux_sym_pubkey_authentication_token1] = ACTIONS(767), + [aux_sym_rekey_limit_token1] = ACTIONS(767), + [aux_sym_remote_command_token1] = ACTIONS(767), + [aux_sym_remote_forward_token1] = ACTIONS(767), + [aux_sym_request_tty_token1] = ACTIONS(767), + [aux_sym_required_rsa_size_token1] = ACTIONS(767), + [aux_sym_revoked_host_keys_token1] = ACTIONS(767), + [aux_sym_security_key_provider_token1] = ACTIONS(767), + [aux_sym_send_env_token1] = ACTIONS(767), + [aux_sym_server_alive_count_max_token1] = ACTIONS(767), + [aux_sym_server_alive_interval_token1] = ACTIONS(767), + [aux_sym_session_type_token1] = ACTIONS(767), + [aux_sym_set_env_token1] = ACTIONS(767), + [aux_sym_stdin_null_token1] = ACTIONS(767), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(767), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(767), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(767), + [aux_sym_syslog_facility_token1] = ACTIONS(767), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(767), + [aux_sym_keep_alive_token1] = ACTIONS(767), + [aux_sym_tag_token1] = ACTIONS(767), + [aux_sym_tunnel_token1] = ACTIONS(769), + [aux_sym_tunnel_device_token1] = ACTIONS(767), + [aux_sym_update_host_keys_token1] = ACTIONS(767), + [aux_sym_use_keychain_token1] = ACTIONS(767), + [aux_sym_use_roaming_token1] = ACTIONS(767), + [aux_sym_user_token1] = ACTIONS(769), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(767), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(767), + [aux_sym_visual_host_key_token1] = ACTIONS(767), + [aux_sym_xauth_location_token1] = ACTIONS(767), }, [35] = { - [ts_builtin_sym_end] = ACTIONS(768), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(770), - [anon_sym_DQUOTE] = ACTIONS(772), - [aux_sym_match_token1] = ACTIONS(768), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(768), - [aux_sym_address_family_token1] = ACTIONS(768), - [aux_sym_batch_mode_token1] = ACTIONS(768), - [aux_sym_bind_address_token1] = ACTIONS(768), - [aux_sym_bind_interface_token1] = ACTIONS(768), - [aux_sym_canonical_domains_token1] = ACTIONS(768), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(768), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(768), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(768), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(768), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(768), - [aux_sym_certificate_file_token1] = ACTIONS(768), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(768), - [aux_sym_channel_timeout_token1] = ACTIONS(768), - [aux_sym_check_host_ip_token1] = ACTIONS(768), - [aux_sym_ciphers_token1] = ACTIONS(768), - [aux_sym_cipher_token1] = ACTIONS(770), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(768), - [aux_sym_compression_token1] = ACTIONS(768), - [aux_sym_connection_attempts_token1] = ACTIONS(768), - [aux_sym_connect_timeout_token1] = ACTIONS(768), - [aux_sym_control_master_token1] = ACTIONS(768), - [aux_sym_control_path_token1] = ACTIONS(768), - [aux_sym_control_persist_token1] = ACTIONS(768), - [aux_sym_dynamic_forward_token1] = ACTIONS(768), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(768), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(768), - [aux_sym_escape_char_token1] = ACTIONS(768), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(768), - [aux_sym_fingerprint_hash_token1] = ACTIONS(768), - [aux_sym_fork_after_authentication_token1] = ACTIONS(768), - [aux_sym_forward_agent_token1] = ACTIONS(768), - [aux_sym_forward_x11_token1] = ACTIONS(770), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(768), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(768), - [aux_sym_gateway_ports_token1] = ACTIONS(768), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(768), - [aux_sym_gssapi_authentication_token1] = ACTIONS(768), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(768), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(768), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(768), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(768), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(768), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(768), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(768), - [aux_sym_hash_known_hosts_token1] = ACTIONS(768), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(768), - [aux_sym_hostbased_authentication_token1] = ACTIONS(768), - [aux_sym_host_key_algorithms_token1] = ACTIONS(768), - [aux_sym_host_key_alias_token1] = ACTIONS(768), - [aux_sym_hostname_token1] = ACTIONS(768), - [aux_sym_identities_only_token1] = ACTIONS(768), - [aux_sym_identity_agent_token1] = ACTIONS(768), - [aux_sym_identity_file_token1] = ACTIONS(768), - [aux_sym_ignore_unknown_token1] = ACTIONS(768), - [aux_sym_include_token1] = ACTIONS(768), - [aux_sym_ip_qos_token1] = ACTIONS(768), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(768), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(768), - [aux_sym_kex_algorithms_token1] = ACTIONS(768), - [aux_sym_known_hosts_command_token1] = ACTIONS(768), - [aux_sym_local_command_token1] = ACTIONS(768), - [aux_sym_local_forward_token1] = ACTIONS(768), - [aux_sym_log_level_token1] = ACTIONS(768), - [aux_sym_log_verbose_token1] = ACTIONS(768), - [aux_sym_macs_token1] = ACTIONS(768), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(768), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(768), - [aux_sym_password_authentication_token1] = ACTIONS(768), - [aux_sym_permit_local_command_token1] = ACTIONS(768), - [aux_sym_permit_remote_open_token1] = ACTIONS(768), - [aux_sym_pkcs11_provider_token1] = ACTIONS(768), - [aux_sym_port_token1] = ACTIONS(768), - [aux_sym_preferred_authentications_token1] = ACTIONS(768), - [aux_sym_protocol_token1] = ACTIONS(768), - [aux_sym_proxy_command_token1] = ACTIONS(768), - [aux_sym_proxy_jump_token1] = ACTIONS(768), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(768), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(768), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(768), - [aux_sym_pubkey_authentication_token1] = ACTIONS(768), - [aux_sym_rekey_limit_token1] = ACTIONS(768), - [aux_sym_remote_command_token1] = ACTIONS(768), - [aux_sym_remote_forward_token1] = ACTIONS(768), - [aux_sym_request_tty_token1] = ACTIONS(768), - [aux_sym_required_rsa_size_token1] = ACTIONS(768), - [aux_sym_revoked_host_keys_token1] = ACTIONS(768), - [aux_sym_security_key_provider_token1] = ACTIONS(768), - [aux_sym_send_env_token1] = ACTIONS(768), - [aux_sym_server_alive_count_max_token1] = ACTIONS(768), - [aux_sym_server_alive_interval_token1] = ACTIONS(768), - [aux_sym_session_type_token1] = ACTIONS(768), - [aux_sym_set_env_token1] = ACTIONS(768), - [aux_sym_stdin_null_token1] = ACTIONS(768), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(768), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(768), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(768), - [aux_sym_syslog_facility_token1] = ACTIONS(768), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(768), - [aux_sym_keep_alive_token1] = ACTIONS(768), - [aux_sym_tag_token1] = ACTIONS(768), - [aux_sym_tunnel_token1] = ACTIONS(770), - [aux_sym_tunnel_device_token1] = ACTIONS(768), - [aux_sym_update_host_keys_token1] = ACTIONS(768), - [aux_sym_use_keychain_token1] = ACTIONS(768), - [aux_sym_use_roaming_token1] = ACTIONS(768), - [aux_sym_user_token1] = ACTIONS(770), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(768), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(768), - [aux_sym_visual_host_key_token1] = ACTIONS(768), - [aux_sym_xauth_location_token1] = ACTIONS(768), + [ts_builtin_sym_end] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(775), + [anon_sym_DQUOTE] = ACTIONS(777), + [aux_sym_match_token1] = ACTIONS(773), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(773), + [aux_sym_address_family_token1] = ACTIONS(773), + [aux_sym_batch_mode_token1] = ACTIONS(773), + [aux_sym_bind_address_token1] = ACTIONS(773), + [aux_sym_bind_interface_token1] = ACTIONS(773), + [aux_sym_canonical_domains_token1] = ACTIONS(773), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(773), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(773), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(773), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(773), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(773), + [aux_sym_certificate_file_token1] = ACTIONS(773), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(773), + [aux_sym_channel_timeout_token1] = ACTIONS(773), + [aux_sym_check_host_ip_token1] = ACTIONS(773), + [aux_sym_ciphers_token1] = ACTIONS(773), + [aux_sym_cipher_token1] = ACTIONS(775), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(773), + [aux_sym_compression_token1] = ACTIONS(773), + [aux_sym_connection_attempts_token1] = ACTIONS(773), + [aux_sym_connect_timeout_token1] = ACTIONS(773), + [aux_sym_control_master_token1] = ACTIONS(773), + [aux_sym_control_path_token1] = ACTIONS(773), + [aux_sym_control_persist_token1] = ACTIONS(773), + [aux_sym_dynamic_forward_token1] = ACTIONS(773), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(773), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(773), + [aux_sym_escape_char_token1] = ACTIONS(773), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(773), + [aux_sym_fingerprint_hash_token1] = ACTIONS(773), + [aux_sym_fork_after_authentication_token1] = ACTIONS(773), + [aux_sym_forward_agent_token1] = ACTIONS(773), + [aux_sym_forward_x11_token1] = ACTIONS(775), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(773), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(773), + [aux_sym_gateway_ports_token1] = ACTIONS(773), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(773), + [aux_sym_gssapi_authentication_token1] = ACTIONS(773), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(773), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(773), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(773), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(773), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(773), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(773), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(773), + [aux_sym_hash_known_hosts_token1] = ACTIONS(773), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(773), + [aux_sym_hostbased_authentication_token1] = ACTIONS(773), + [aux_sym_host_key_algorithms_token1] = ACTIONS(773), + [aux_sym_host_key_alias_token1] = ACTIONS(773), + [aux_sym_hostname_token1] = ACTIONS(773), + [aux_sym_identities_only_token1] = ACTIONS(773), + [aux_sym_identity_agent_token1] = ACTIONS(773), + [aux_sym_identity_file_token1] = ACTIONS(773), + [aux_sym_ignore_unknown_token1] = ACTIONS(773), + [aux_sym_include_token1] = ACTIONS(773), + [aux_sym_ip_qos_token1] = ACTIONS(773), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(773), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(773), + [aux_sym_kex_algorithms_token1] = ACTIONS(773), + [aux_sym_known_hosts_command_token1] = ACTIONS(773), + [aux_sym_local_command_token1] = ACTIONS(773), + [aux_sym_local_forward_token1] = ACTIONS(773), + [aux_sym_log_level_token1] = ACTIONS(773), + [aux_sym_log_verbose_token1] = ACTIONS(773), + [aux_sym_macs_token1] = ACTIONS(773), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(773), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(773), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(773), + [aux_sym_password_authentication_token1] = ACTIONS(773), + [aux_sym_permit_local_command_token1] = ACTIONS(773), + [aux_sym_permit_remote_open_token1] = ACTIONS(773), + [aux_sym_pkcs11_provider_token1] = ACTIONS(773), + [aux_sym_port_token1] = ACTIONS(773), + [aux_sym_preferred_authentications_token1] = ACTIONS(773), + [aux_sym_protocol_token1] = ACTIONS(773), + [aux_sym_proxy_command_token1] = ACTIONS(773), + [aux_sym_proxy_jump_token1] = ACTIONS(773), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(773), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(773), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(773), + [aux_sym_pubkey_authentication_token1] = ACTIONS(773), + [aux_sym_rekey_limit_token1] = ACTIONS(773), + [aux_sym_remote_command_token1] = ACTIONS(773), + [aux_sym_remote_forward_token1] = ACTIONS(773), + [aux_sym_request_tty_token1] = ACTIONS(773), + [aux_sym_required_rsa_size_token1] = ACTIONS(773), + [aux_sym_revoked_host_keys_token1] = ACTIONS(773), + [aux_sym_security_key_provider_token1] = ACTIONS(773), + [aux_sym_send_env_token1] = ACTIONS(773), + [aux_sym_server_alive_count_max_token1] = ACTIONS(773), + [aux_sym_server_alive_interval_token1] = ACTIONS(773), + [aux_sym_session_type_token1] = ACTIONS(773), + [aux_sym_set_env_token1] = ACTIONS(773), + [aux_sym_stdin_null_token1] = ACTIONS(773), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(773), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(773), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(773), + [aux_sym_syslog_facility_token1] = ACTIONS(773), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(773), + [aux_sym_keep_alive_token1] = ACTIONS(773), + [aux_sym_tag_token1] = ACTIONS(773), + [aux_sym_tunnel_token1] = ACTIONS(775), + [aux_sym_tunnel_device_token1] = ACTIONS(773), + [aux_sym_update_host_keys_token1] = ACTIONS(773), + [aux_sym_use_keychain_token1] = ACTIONS(773), + [aux_sym_use_roaming_token1] = ACTIONS(773), + [aux_sym_user_token1] = ACTIONS(775), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(773), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(773), + [aux_sym_visual_host_key_token1] = ACTIONS(773), + [aux_sym_xauth_location_token1] = ACTIONS(773), }, [36] = { - [ts_builtin_sym_end] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(776), - [anon_sym_DQUOTE] = ACTIONS(778), - [aux_sym_match_token1] = ACTIONS(774), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(774), - [aux_sym_address_family_token1] = ACTIONS(774), - [aux_sym_batch_mode_token1] = ACTIONS(774), - [aux_sym_bind_address_token1] = ACTIONS(774), - [aux_sym_bind_interface_token1] = ACTIONS(774), - [aux_sym_canonical_domains_token1] = ACTIONS(774), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(774), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(774), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(774), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(774), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(774), - [aux_sym_certificate_file_token1] = ACTIONS(774), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(774), - [aux_sym_channel_timeout_token1] = ACTIONS(774), - [aux_sym_check_host_ip_token1] = ACTIONS(774), - [aux_sym_ciphers_token1] = ACTIONS(774), - [aux_sym_cipher_token1] = ACTIONS(776), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(774), - [aux_sym_compression_token1] = ACTIONS(774), - [aux_sym_connection_attempts_token1] = ACTIONS(774), - [aux_sym_connect_timeout_token1] = ACTIONS(774), - [aux_sym_control_master_token1] = ACTIONS(774), - [aux_sym_control_path_token1] = ACTIONS(774), - [aux_sym_control_persist_token1] = ACTIONS(774), - [aux_sym_dynamic_forward_token1] = ACTIONS(774), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(774), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(774), - [aux_sym_escape_char_token1] = ACTIONS(774), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(774), - [aux_sym_fingerprint_hash_token1] = ACTIONS(774), - [aux_sym_fork_after_authentication_token1] = ACTIONS(774), - [aux_sym_forward_agent_token1] = ACTIONS(774), - [aux_sym_forward_x11_token1] = ACTIONS(776), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(774), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(774), - [aux_sym_gateway_ports_token1] = ACTIONS(774), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(774), - [aux_sym_gssapi_authentication_token1] = ACTIONS(774), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(774), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(774), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(774), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(774), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(774), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(774), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(774), - [aux_sym_hash_known_hosts_token1] = ACTIONS(774), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(774), - [aux_sym_hostbased_authentication_token1] = ACTIONS(774), - [aux_sym_host_key_algorithms_token1] = ACTIONS(774), - [aux_sym_host_key_alias_token1] = ACTIONS(774), - [aux_sym_hostname_token1] = ACTIONS(774), - [aux_sym_identities_only_token1] = ACTIONS(774), - [aux_sym_identity_agent_token1] = ACTIONS(774), - [aux_sym_identity_file_token1] = ACTIONS(774), - [aux_sym_ignore_unknown_token1] = ACTIONS(774), - [aux_sym_include_token1] = ACTIONS(774), - [aux_sym_ip_qos_token1] = ACTIONS(774), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(774), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(774), - [aux_sym_kex_algorithms_token1] = ACTIONS(774), - [aux_sym_known_hosts_command_token1] = ACTIONS(774), - [aux_sym_local_command_token1] = ACTIONS(774), - [aux_sym_local_forward_token1] = ACTIONS(774), - [aux_sym_log_level_token1] = ACTIONS(774), - [aux_sym_log_verbose_token1] = ACTIONS(774), - [aux_sym_macs_token1] = ACTIONS(774), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(774), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(774), - [aux_sym_password_authentication_token1] = ACTIONS(774), - [aux_sym_permit_local_command_token1] = ACTIONS(774), - [aux_sym_permit_remote_open_token1] = ACTIONS(774), - [aux_sym_pkcs11_provider_token1] = ACTIONS(774), - [aux_sym_port_token1] = ACTIONS(774), - [aux_sym_preferred_authentications_token1] = ACTIONS(774), - [aux_sym_protocol_token1] = ACTIONS(774), - [aux_sym_proxy_command_token1] = ACTIONS(774), - [aux_sym_proxy_jump_token1] = ACTIONS(774), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(774), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(774), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(774), - [aux_sym_pubkey_authentication_token1] = ACTIONS(774), - [aux_sym_rekey_limit_token1] = ACTIONS(774), - [aux_sym_remote_command_token1] = ACTIONS(774), - [aux_sym_remote_forward_token1] = ACTIONS(774), - [aux_sym_request_tty_token1] = ACTIONS(774), - [aux_sym_required_rsa_size_token1] = ACTIONS(774), - [aux_sym_revoked_host_keys_token1] = ACTIONS(774), - [aux_sym_security_key_provider_token1] = ACTIONS(774), - [aux_sym_send_env_token1] = ACTIONS(774), - [aux_sym_server_alive_count_max_token1] = ACTIONS(774), - [aux_sym_server_alive_interval_token1] = ACTIONS(774), - [aux_sym_session_type_token1] = ACTIONS(774), - [aux_sym_set_env_token1] = ACTIONS(774), - [aux_sym_stdin_null_token1] = ACTIONS(774), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(774), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(774), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(774), - [aux_sym_syslog_facility_token1] = ACTIONS(774), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(774), - [aux_sym_keep_alive_token1] = ACTIONS(774), - [aux_sym_tag_token1] = ACTIONS(774), - [aux_sym_tunnel_token1] = ACTIONS(776), - [aux_sym_tunnel_device_token1] = ACTIONS(774), - [aux_sym_update_host_keys_token1] = ACTIONS(774), - [aux_sym_use_keychain_token1] = ACTIONS(774), - [aux_sym_use_roaming_token1] = ACTIONS(774), - [aux_sym_user_token1] = ACTIONS(776), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(774), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(774), - [aux_sym_visual_host_key_token1] = ACTIONS(774), - [aux_sym_xauth_location_token1] = ACTIONS(774), + [ts_builtin_sym_end] = ACTIONS(779), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(783), + [aux_sym_match_token1] = ACTIONS(779), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(779), + [aux_sym_address_family_token1] = ACTIONS(779), + [aux_sym_batch_mode_token1] = ACTIONS(779), + [aux_sym_bind_address_token1] = ACTIONS(779), + [aux_sym_bind_interface_token1] = ACTIONS(779), + [aux_sym_canonical_domains_token1] = ACTIONS(779), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(779), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(779), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(779), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(779), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(779), + [aux_sym_certificate_file_token1] = ACTIONS(779), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(779), + [aux_sym_channel_timeout_token1] = ACTIONS(779), + [aux_sym_check_host_ip_token1] = ACTIONS(779), + [aux_sym_ciphers_token1] = ACTIONS(779), + [aux_sym_cipher_token1] = ACTIONS(781), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(779), + [aux_sym_compression_token1] = ACTIONS(779), + [aux_sym_connection_attempts_token1] = ACTIONS(779), + [aux_sym_connect_timeout_token1] = ACTIONS(779), + [aux_sym_control_master_token1] = ACTIONS(779), + [aux_sym_control_path_token1] = ACTIONS(779), + [aux_sym_control_persist_token1] = ACTIONS(779), + [aux_sym_dynamic_forward_token1] = ACTIONS(779), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(779), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(779), + [aux_sym_escape_char_token1] = ACTIONS(779), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(779), + [aux_sym_fingerprint_hash_token1] = ACTIONS(779), + [aux_sym_fork_after_authentication_token1] = ACTIONS(779), + [aux_sym_forward_agent_token1] = ACTIONS(779), + [aux_sym_forward_x11_token1] = ACTIONS(781), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(779), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(779), + [aux_sym_gateway_ports_token1] = ACTIONS(779), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(779), + [aux_sym_gssapi_authentication_token1] = ACTIONS(779), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(779), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(779), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(779), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(779), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(779), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(779), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(779), + [aux_sym_hash_known_hosts_token1] = ACTIONS(779), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(779), + [aux_sym_hostbased_authentication_token1] = ACTIONS(779), + [aux_sym_host_key_algorithms_token1] = ACTIONS(779), + [aux_sym_host_key_alias_token1] = ACTIONS(779), + [aux_sym_hostname_token1] = ACTIONS(779), + [aux_sym_identities_only_token1] = ACTIONS(779), + [aux_sym_identity_agent_token1] = ACTIONS(779), + [aux_sym_identity_file_token1] = ACTIONS(779), + [aux_sym_ignore_unknown_token1] = ACTIONS(779), + [aux_sym_include_token1] = ACTIONS(779), + [aux_sym_ip_qos_token1] = ACTIONS(779), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(779), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(779), + [aux_sym_kex_algorithms_token1] = ACTIONS(779), + [aux_sym_known_hosts_command_token1] = ACTIONS(779), + [aux_sym_local_command_token1] = ACTIONS(779), + [aux_sym_local_forward_token1] = ACTIONS(779), + [aux_sym_log_level_token1] = ACTIONS(779), + [aux_sym_log_verbose_token1] = ACTIONS(779), + [aux_sym_macs_token1] = ACTIONS(779), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(779), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(779), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(779), + [aux_sym_password_authentication_token1] = ACTIONS(779), + [aux_sym_permit_local_command_token1] = ACTIONS(779), + [aux_sym_permit_remote_open_token1] = ACTIONS(779), + [aux_sym_pkcs11_provider_token1] = ACTIONS(779), + [aux_sym_port_token1] = ACTIONS(779), + [aux_sym_preferred_authentications_token1] = ACTIONS(779), + [aux_sym_protocol_token1] = ACTIONS(779), + [aux_sym_proxy_command_token1] = ACTIONS(779), + [aux_sym_proxy_jump_token1] = ACTIONS(779), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(779), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(779), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(779), + [aux_sym_pubkey_authentication_token1] = ACTIONS(779), + [aux_sym_rekey_limit_token1] = ACTIONS(779), + [aux_sym_remote_command_token1] = ACTIONS(779), + [aux_sym_remote_forward_token1] = ACTIONS(779), + [aux_sym_request_tty_token1] = ACTIONS(779), + [aux_sym_required_rsa_size_token1] = ACTIONS(779), + [aux_sym_revoked_host_keys_token1] = ACTIONS(779), + [aux_sym_security_key_provider_token1] = ACTIONS(779), + [aux_sym_send_env_token1] = ACTIONS(779), + [aux_sym_server_alive_count_max_token1] = ACTIONS(779), + [aux_sym_server_alive_interval_token1] = ACTIONS(779), + [aux_sym_session_type_token1] = ACTIONS(779), + [aux_sym_set_env_token1] = ACTIONS(779), + [aux_sym_stdin_null_token1] = ACTIONS(779), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(779), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(779), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(779), + [aux_sym_syslog_facility_token1] = ACTIONS(779), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(779), + [aux_sym_keep_alive_token1] = ACTIONS(779), + [aux_sym_tag_token1] = ACTIONS(779), + [aux_sym_tunnel_token1] = ACTIONS(781), + [aux_sym_tunnel_device_token1] = ACTIONS(779), + [aux_sym_update_host_keys_token1] = ACTIONS(779), + [aux_sym_use_keychain_token1] = ACTIONS(779), + [aux_sym_use_roaming_token1] = ACTIONS(779), + [aux_sym_user_token1] = ACTIONS(781), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(779), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(779), + [aux_sym_visual_host_key_token1] = ACTIONS(779), + [aux_sym_xauth_location_token1] = ACTIONS(779), }, [37] = { - [ts_builtin_sym_end] = ACTIONS(780), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(782), - [anon_sym_DQUOTE] = ACTIONS(784), - [aux_sym_match_token1] = ACTIONS(780), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(780), - [aux_sym_address_family_token1] = ACTIONS(780), - [aux_sym_batch_mode_token1] = ACTIONS(780), - [aux_sym_bind_address_token1] = ACTIONS(780), - [aux_sym_bind_interface_token1] = ACTIONS(780), - [aux_sym_canonical_domains_token1] = ACTIONS(780), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(780), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(780), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(780), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(780), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(780), - [aux_sym_certificate_file_token1] = ACTIONS(780), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(780), - [aux_sym_channel_timeout_token1] = ACTIONS(780), - [aux_sym_check_host_ip_token1] = ACTIONS(780), - [aux_sym_ciphers_token1] = ACTIONS(780), - [aux_sym_cipher_token1] = ACTIONS(782), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(780), - [aux_sym_compression_token1] = ACTIONS(780), - [aux_sym_connection_attempts_token1] = ACTIONS(780), - [aux_sym_connect_timeout_token1] = ACTIONS(780), - [aux_sym_control_master_token1] = ACTIONS(780), - [aux_sym_control_path_token1] = ACTIONS(780), - [aux_sym_control_persist_token1] = ACTIONS(780), - [aux_sym_dynamic_forward_token1] = ACTIONS(780), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(780), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(780), - [aux_sym_escape_char_token1] = ACTIONS(780), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(780), - [aux_sym_fingerprint_hash_token1] = ACTIONS(780), - [aux_sym_fork_after_authentication_token1] = ACTIONS(780), - [aux_sym_forward_agent_token1] = ACTIONS(780), - [aux_sym_forward_x11_token1] = ACTIONS(782), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(780), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(780), - [aux_sym_gateway_ports_token1] = ACTIONS(780), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(780), - [aux_sym_gssapi_authentication_token1] = ACTIONS(780), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(780), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(780), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(780), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(780), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(780), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(780), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(780), - [aux_sym_hash_known_hosts_token1] = ACTIONS(780), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(780), - [aux_sym_hostbased_authentication_token1] = ACTIONS(780), - [aux_sym_host_key_algorithms_token1] = ACTIONS(780), - [aux_sym_host_key_alias_token1] = ACTIONS(780), - [aux_sym_hostname_token1] = ACTIONS(780), - [aux_sym_identities_only_token1] = ACTIONS(780), - [aux_sym_identity_agent_token1] = ACTIONS(780), - [aux_sym_identity_file_token1] = ACTIONS(780), - [aux_sym_ignore_unknown_token1] = ACTIONS(780), - [aux_sym_include_token1] = ACTIONS(780), - [aux_sym_ip_qos_token1] = ACTIONS(780), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(780), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(780), - [aux_sym_kex_algorithms_token1] = ACTIONS(780), - [aux_sym_known_hosts_command_token1] = ACTIONS(780), - [aux_sym_local_command_token1] = ACTIONS(780), - [aux_sym_local_forward_token1] = ACTIONS(780), - [aux_sym_log_level_token1] = ACTIONS(780), - [aux_sym_log_verbose_token1] = ACTIONS(780), - [aux_sym_macs_token1] = ACTIONS(780), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(780), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(780), - [aux_sym_password_authentication_token1] = ACTIONS(780), - [aux_sym_permit_local_command_token1] = ACTIONS(780), - [aux_sym_permit_remote_open_token1] = ACTIONS(780), - [aux_sym_pkcs11_provider_token1] = ACTIONS(780), - [aux_sym_port_token1] = ACTIONS(780), - [aux_sym_preferred_authentications_token1] = ACTIONS(780), - [aux_sym_protocol_token1] = ACTIONS(780), - [aux_sym_proxy_command_token1] = ACTIONS(780), - [aux_sym_proxy_jump_token1] = ACTIONS(780), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(780), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(780), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(780), - [aux_sym_pubkey_authentication_token1] = ACTIONS(780), - [aux_sym_rekey_limit_token1] = ACTIONS(780), - [aux_sym_remote_command_token1] = ACTIONS(780), - [aux_sym_remote_forward_token1] = ACTIONS(780), - [aux_sym_request_tty_token1] = ACTIONS(780), - [aux_sym_required_rsa_size_token1] = ACTIONS(780), - [aux_sym_revoked_host_keys_token1] = ACTIONS(780), - [aux_sym_security_key_provider_token1] = ACTIONS(780), - [aux_sym_send_env_token1] = ACTIONS(780), - [aux_sym_server_alive_count_max_token1] = ACTIONS(780), - [aux_sym_server_alive_interval_token1] = ACTIONS(780), - [aux_sym_session_type_token1] = ACTIONS(780), - [aux_sym_set_env_token1] = ACTIONS(780), - [aux_sym_stdin_null_token1] = ACTIONS(780), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(780), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(780), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(780), - [aux_sym_syslog_facility_token1] = ACTIONS(780), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(780), - [aux_sym_keep_alive_token1] = ACTIONS(780), - [aux_sym_tag_token1] = ACTIONS(780), - [aux_sym_tunnel_token1] = ACTIONS(782), - [aux_sym_tunnel_device_token1] = ACTIONS(780), - [aux_sym_update_host_keys_token1] = ACTIONS(780), - [aux_sym_use_keychain_token1] = ACTIONS(780), - [aux_sym_use_roaming_token1] = ACTIONS(780), - [aux_sym_user_token1] = ACTIONS(782), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(780), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(780), - [aux_sym_visual_host_key_token1] = ACTIONS(780), - [aux_sym_xauth_location_token1] = ACTIONS(780), + [ts_builtin_sym_end] = ACTIONS(785), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(789), + [aux_sym_match_token1] = ACTIONS(785), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(785), + [aux_sym_address_family_token1] = ACTIONS(785), + [aux_sym_batch_mode_token1] = ACTIONS(785), + [aux_sym_bind_address_token1] = ACTIONS(785), + [aux_sym_bind_interface_token1] = ACTIONS(785), + [aux_sym_canonical_domains_token1] = ACTIONS(785), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(785), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(785), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(785), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(785), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(785), + [aux_sym_certificate_file_token1] = ACTIONS(785), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(785), + [aux_sym_channel_timeout_token1] = ACTIONS(785), + [aux_sym_check_host_ip_token1] = ACTIONS(785), + [aux_sym_ciphers_token1] = ACTIONS(785), + [aux_sym_cipher_token1] = ACTIONS(787), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(785), + [aux_sym_compression_token1] = ACTIONS(785), + [aux_sym_connection_attempts_token1] = ACTIONS(785), + [aux_sym_connect_timeout_token1] = ACTIONS(785), + [aux_sym_control_master_token1] = ACTIONS(785), + [aux_sym_control_path_token1] = ACTIONS(785), + [aux_sym_control_persist_token1] = ACTIONS(785), + [aux_sym_dynamic_forward_token1] = ACTIONS(785), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(785), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(785), + [aux_sym_escape_char_token1] = ACTIONS(785), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(785), + [aux_sym_fingerprint_hash_token1] = ACTIONS(785), + [aux_sym_fork_after_authentication_token1] = ACTIONS(785), + [aux_sym_forward_agent_token1] = ACTIONS(785), + [aux_sym_forward_x11_token1] = ACTIONS(787), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(785), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(785), + [aux_sym_gateway_ports_token1] = ACTIONS(785), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(785), + [aux_sym_gssapi_authentication_token1] = ACTIONS(785), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(785), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(785), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(785), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(785), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(785), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(785), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(785), + [aux_sym_hash_known_hosts_token1] = ACTIONS(785), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(785), + [aux_sym_hostbased_authentication_token1] = ACTIONS(785), + [aux_sym_host_key_algorithms_token1] = ACTIONS(785), + [aux_sym_host_key_alias_token1] = ACTIONS(785), + [aux_sym_hostname_token1] = ACTIONS(785), + [aux_sym_identities_only_token1] = ACTIONS(785), + [aux_sym_identity_agent_token1] = ACTIONS(785), + [aux_sym_identity_file_token1] = ACTIONS(785), + [aux_sym_ignore_unknown_token1] = ACTIONS(785), + [aux_sym_include_token1] = ACTIONS(785), + [aux_sym_ip_qos_token1] = ACTIONS(785), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(785), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(785), + [aux_sym_kex_algorithms_token1] = ACTIONS(785), + [aux_sym_known_hosts_command_token1] = ACTIONS(785), + [aux_sym_local_command_token1] = ACTIONS(785), + [aux_sym_local_forward_token1] = ACTIONS(785), + [aux_sym_log_level_token1] = ACTIONS(785), + [aux_sym_log_verbose_token1] = ACTIONS(785), + [aux_sym_macs_token1] = ACTIONS(785), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(785), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(785), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(785), + [aux_sym_password_authentication_token1] = ACTIONS(785), + [aux_sym_permit_local_command_token1] = ACTIONS(785), + [aux_sym_permit_remote_open_token1] = ACTIONS(785), + [aux_sym_pkcs11_provider_token1] = ACTIONS(785), + [aux_sym_port_token1] = ACTIONS(785), + [aux_sym_preferred_authentications_token1] = ACTIONS(785), + [aux_sym_protocol_token1] = ACTIONS(785), + [aux_sym_proxy_command_token1] = ACTIONS(785), + [aux_sym_proxy_jump_token1] = ACTIONS(785), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(785), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(785), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(785), + [aux_sym_pubkey_authentication_token1] = ACTIONS(785), + [aux_sym_rekey_limit_token1] = ACTIONS(785), + [aux_sym_remote_command_token1] = ACTIONS(785), + [aux_sym_remote_forward_token1] = ACTIONS(785), + [aux_sym_request_tty_token1] = ACTIONS(785), + [aux_sym_required_rsa_size_token1] = ACTIONS(785), + [aux_sym_revoked_host_keys_token1] = ACTIONS(785), + [aux_sym_security_key_provider_token1] = ACTIONS(785), + [aux_sym_send_env_token1] = ACTIONS(785), + [aux_sym_server_alive_count_max_token1] = ACTIONS(785), + [aux_sym_server_alive_interval_token1] = ACTIONS(785), + [aux_sym_session_type_token1] = ACTIONS(785), + [aux_sym_set_env_token1] = ACTIONS(785), + [aux_sym_stdin_null_token1] = ACTIONS(785), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(785), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(785), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(785), + [aux_sym_syslog_facility_token1] = ACTIONS(785), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(785), + [aux_sym_keep_alive_token1] = ACTIONS(785), + [aux_sym_tag_token1] = ACTIONS(785), + [aux_sym_tunnel_token1] = ACTIONS(787), + [aux_sym_tunnel_device_token1] = ACTIONS(785), + [aux_sym_update_host_keys_token1] = ACTIONS(785), + [aux_sym_use_keychain_token1] = ACTIONS(785), + [aux_sym_use_roaming_token1] = ACTIONS(785), + [aux_sym_user_token1] = ACTIONS(787), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(785), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(785), + [aux_sym_visual_host_key_token1] = ACTIONS(785), + [aux_sym_xauth_location_token1] = ACTIONS(785), }, [38] = { - [ts_builtin_sym_end] = ACTIONS(786), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(788), - [anon_sym_DQUOTE] = ACTIONS(790), - [aux_sym_match_token1] = ACTIONS(786), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(786), - [aux_sym_address_family_token1] = ACTIONS(786), - [aux_sym_batch_mode_token1] = ACTIONS(786), - [aux_sym_bind_address_token1] = ACTIONS(786), - [aux_sym_bind_interface_token1] = ACTIONS(786), - [aux_sym_canonical_domains_token1] = ACTIONS(786), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(786), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(786), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(786), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(786), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(786), - [aux_sym_certificate_file_token1] = ACTIONS(786), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(786), - [aux_sym_channel_timeout_token1] = ACTIONS(786), - [aux_sym_check_host_ip_token1] = ACTIONS(786), - [aux_sym_ciphers_token1] = ACTIONS(786), - [aux_sym_cipher_token1] = ACTIONS(788), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(786), - [aux_sym_compression_token1] = ACTIONS(786), - [aux_sym_connection_attempts_token1] = ACTIONS(786), - [aux_sym_connect_timeout_token1] = ACTIONS(786), - [aux_sym_control_master_token1] = ACTIONS(786), - [aux_sym_control_path_token1] = ACTIONS(786), - [aux_sym_control_persist_token1] = ACTIONS(786), - [aux_sym_dynamic_forward_token1] = ACTIONS(786), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(786), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(786), - [aux_sym_escape_char_token1] = ACTIONS(786), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(786), - [aux_sym_fingerprint_hash_token1] = ACTIONS(786), - [aux_sym_fork_after_authentication_token1] = ACTIONS(786), - [aux_sym_forward_agent_token1] = ACTIONS(786), - [aux_sym_forward_x11_token1] = ACTIONS(788), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(786), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(786), - [aux_sym_gateway_ports_token1] = ACTIONS(786), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(786), - [aux_sym_gssapi_authentication_token1] = ACTIONS(786), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(786), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(786), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(786), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(786), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(786), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(786), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(786), - [aux_sym_hash_known_hosts_token1] = ACTIONS(786), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(786), - [aux_sym_hostbased_authentication_token1] = ACTIONS(786), - [aux_sym_host_key_algorithms_token1] = ACTIONS(786), - [aux_sym_host_key_alias_token1] = ACTIONS(786), - [aux_sym_hostname_token1] = ACTIONS(786), - [aux_sym_identities_only_token1] = ACTIONS(786), - [aux_sym_identity_agent_token1] = ACTIONS(786), - [aux_sym_identity_file_token1] = ACTIONS(786), - [aux_sym_ignore_unknown_token1] = ACTIONS(786), - [aux_sym_include_token1] = ACTIONS(786), - [aux_sym_ip_qos_token1] = ACTIONS(786), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(786), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(786), - [aux_sym_kex_algorithms_token1] = ACTIONS(786), - [aux_sym_known_hosts_command_token1] = ACTIONS(786), - [aux_sym_local_command_token1] = ACTIONS(786), - [aux_sym_local_forward_token1] = ACTIONS(786), - [aux_sym_log_level_token1] = ACTIONS(786), - [aux_sym_log_verbose_token1] = ACTIONS(786), - [aux_sym_macs_token1] = ACTIONS(786), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(786), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(786), - [aux_sym_password_authentication_token1] = ACTIONS(786), - [aux_sym_permit_local_command_token1] = ACTIONS(786), - [aux_sym_permit_remote_open_token1] = ACTIONS(786), - [aux_sym_pkcs11_provider_token1] = ACTIONS(786), - [aux_sym_port_token1] = ACTIONS(786), - [aux_sym_preferred_authentications_token1] = ACTIONS(786), - [aux_sym_protocol_token1] = ACTIONS(786), - [aux_sym_proxy_command_token1] = ACTIONS(786), - [aux_sym_proxy_jump_token1] = ACTIONS(786), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(786), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(786), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(786), - [aux_sym_pubkey_authentication_token1] = ACTIONS(786), - [aux_sym_rekey_limit_token1] = ACTIONS(786), - [aux_sym_remote_command_token1] = ACTIONS(786), - [aux_sym_remote_forward_token1] = ACTIONS(786), - [aux_sym_request_tty_token1] = ACTIONS(786), - [aux_sym_required_rsa_size_token1] = ACTIONS(786), - [aux_sym_revoked_host_keys_token1] = ACTIONS(786), - [aux_sym_security_key_provider_token1] = ACTIONS(786), - [aux_sym_send_env_token1] = ACTIONS(786), - [aux_sym_server_alive_count_max_token1] = ACTIONS(786), - [aux_sym_server_alive_interval_token1] = ACTIONS(786), - [aux_sym_session_type_token1] = ACTIONS(786), - [aux_sym_set_env_token1] = ACTIONS(786), - [aux_sym_stdin_null_token1] = ACTIONS(786), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(786), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(786), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(786), - [aux_sym_syslog_facility_token1] = ACTIONS(786), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(786), - [aux_sym_keep_alive_token1] = ACTIONS(786), - [aux_sym_tag_token1] = ACTIONS(786), - [aux_sym_tunnel_token1] = ACTIONS(788), - [aux_sym_tunnel_device_token1] = ACTIONS(786), - [aux_sym_update_host_keys_token1] = ACTIONS(786), - [aux_sym_use_keychain_token1] = ACTIONS(786), - [aux_sym_use_roaming_token1] = ACTIONS(786), - [aux_sym_user_token1] = ACTIONS(788), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(786), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(786), - [aux_sym_visual_host_key_token1] = ACTIONS(786), - [aux_sym_xauth_location_token1] = ACTIONS(786), + [ts_builtin_sym_end] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(793), + [anon_sym_DQUOTE] = ACTIONS(795), + [aux_sym_match_token1] = ACTIONS(791), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(791), + [aux_sym_address_family_token1] = ACTIONS(791), + [aux_sym_batch_mode_token1] = ACTIONS(791), + [aux_sym_bind_address_token1] = ACTIONS(791), + [aux_sym_bind_interface_token1] = ACTIONS(791), + [aux_sym_canonical_domains_token1] = ACTIONS(791), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(791), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(791), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(791), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(791), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(791), + [aux_sym_certificate_file_token1] = ACTIONS(791), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(791), + [aux_sym_channel_timeout_token1] = ACTIONS(791), + [aux_sym_check_host_ip_token1] = ACTIONS(791), + [aux_sym_ciphers_token1] = ACTIONS(791), + [aux_sym_cipher_token1] = ACTIONS(793), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(791), + [aux_sym_compression_token1] = ACTIONS(791), + [aux_sym_connection_attempts_token1] = ACTIONS(791), + [aux_sym_connect_timeout_token1] = ACTIONS(791), + [aux_sym_control_master_token1] = ACTIONS(791), + [aux_sym_control_path_token1] = ACTIONS(791), + [aux_sym_control_persist_token1] = ACTIONS(791), + [aux_sym_dynamic_forward_token1] = ACTIONS(791), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(791), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(791), + [aux_sym_escape_char_token1] = ACTIONS(791), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(791), + [aux_sym_fingerprint_hash_token1] = ACTIONS(791), + [aux_sym_fork_after_authentication_token1] = ACTIONS(791), + [aux_sym_forward_agent_token1] = ACTIONS(791), + [aux_sym_forward_x11_token1] = ACTIONS(793), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(791), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(791), + [aux_sym_gateway_ports_token1] = ACTIONS(791), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(791), + [aux_sym_gssapi_authentication_token1] = ACTIONS(791), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(791), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(791), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(791), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(791), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(791), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(791), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(791), + [aux_sym_hash_known_hosts_token1] = ACTIONS(791), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(791), + [aux_sym_hostbased_authentication_token1] = ACTIONS(791), + [aux_sym_host_key_algorithms_token1] = ACTIONS(791), + [aux_sym_host_key_alias_token1] = ACTIONS(791), + [aux_sym_hostname_token1] = ACTIONS(791), + [aux_sym_identities_only_token1] = ACTIONS(791), + [aux_sym_identity_agent_token1] = ACTIONS(791), + [aux_sym_identity_file_token1] = ACTIONS(791), + [aux_sym_ignore_unknown_token1] = ACTIONS(791), + [aux_sym_include_token1] = ACTIONS(791), + [aux_sym_ip_qos_token1] = ACTIONS(791), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(791), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(791), + [aux_sym_kex_algorithms_token1] = ACTIONS(791), + [aux_sym_known_hosts_command_token1] = ACTIONS(791), + [aux_sym_local_command_token1] = ACTIONS(791), + [aux_sym_local_forward_token1] = ACTIONS(791), + [aux_sym_log_level_token1] = ACTIONS(791), + [aux_sym_log_verbose_token1] = ACTIONS(791), + [aux_sym_macs_token1] = ACTIONS(791), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(791), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(791), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(791), + [aux_sym_password_authentication_token1] = ACTIONS(791), + [aux_sym_permit_local_command_token1] = ACTIONS(791), + [aux_sym_permit_remote_open_token1] = ACTIONS(791), + [aux_sym_pkcs11_provider_token1] = ACTIONS(791), + [aux_sym_port_token1] = ACTIONS(791), + [aux_sym_preferred_authentications_token1] = ACTIONS(791), + [aux_sym_protocol_token1] = ACTIONS(791), + [aux_sym_proxy_command_token1] = ACTIONS(791), + [aux_sym_proxy_jump_token1] = ACTIONS(791), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(791), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(791), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(791), + [aux_sym_pubkey_authentication_token1] = ACTIONS(791), + [aux_sym_rekey_limit_token1] = ACTIONS(791), + [aux_sym_remote_command_token1] = ACTIONS(791), + [aux_sym_remote_forward_token1] = ACTIONS(791), + [aux_sym_request_tty_token1] = ACTIONS(791), + [aux_sym_required_rsa_size_token1] = ACTIONS(791), + [aux_sym_revoked_host_keys_token1] = ACTIONS(791), + [aux_sym_security_key_provider_token1] = ACTIONS(791), + [aux_sym_send_env_token1] = ACTIONS(791), + [aux_sym_server_alive_count_max_token1] = ACTIONS(791), + [aux_sym_server_alive_interval_token1] = ACTIONS(791), + [aux_sym_session_type_token1] = ACTIONS(791), + [aux_sym_set_env_token1] = ACTIONS(791), + [aux_sym_stdin_null_token1] = ACTIONS(791), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(791), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(791), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(791), + [aux_sym_syslog_facility_token1] = ACTIONS(791), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(791), + [aux_sym_keep_alive_token1] = ACTIONS(791), + [aux_sym_tag_token1] = ACTIONS(791), + [aux_sym_tunnel_token1] = ACTIONS(793), + [aux_sym_tunnel_device_token1] = ACTIONS(791), + [aux_sym_update_host_keys_token1] = ACTIONS(791), + [aux_sym_use_keychain_token1] = ACTIONS(791), + [aux_sym_use_roaming_token1] = ACTIONS(791), + [aux_sym_user_token1] = ACTIONS(793), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(791), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(791), + [aux_sym_visual_host_key_token1] = ACTIONS(791), + [aux_sym_xauth_location_token1] = ACTIONS(791), }, [39] = { - [ts_builtin_sym_end] = ACTIONS(792), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(796), - [aux_sym_match_token1] = ACTIONS(792), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(792), - [aux_sym_address_family_token1] = ACTIONS(792), - [aux_sym_batch_mode_token1] = ACTIONS(792), - [aux_sym_bind_address_token1] = ACTIONS(792), - [aux_sym_bind_interface_token1] = ACTIONS(792), - [aux_sym_canonical_domains_token1] = ACTIONS(792), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(792), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(792), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(792), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(792), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(792), - [aux_sym_certificate_file_token1] = ACTIONS(792), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(792), - [aux_sym_channel_timeout_token1] = ACTIONS(792), - [aux_sym_check_host_ip_token1] = ACTIONS(792), - [aux_sym_ciphers_token1] = ACTIONS(792), - [aux_sym_cipher_token1] = ACTIONS(794), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(792), - [aux_sym_compression_token1] = ACTIONS(792), - [aux_sym_connection_attempts_token1] = ACTIONS(792), - [aux_sym_connect_timeout_token1] = ACTIONS(792), - [aux_sym_control_master_token1] = ACTIONS(792), - [aux_sym_control_path_token1] = ACTIONS(792), - [aux_sym_control_persist_token1] = ACTIONS(792), - [aux_sym_dynamic_forward_token1] = ACTIONS(792), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(792), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(792), - [aux_sym_escape_char_token1] = ACTIONS(792), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(792), - [aux_sym_fingerprint_hash_token1] = ACTIONS(792), - [aux_sym_fork_after_authentication_token1] = ACTIONS(792), - [aux_sym_forward_agent_token1] = ACTIONS(792), - [aux_sym_forward_x11_token1] = ACTIONS(794), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(792), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(792), - [aux_sym_gateway_ports_token1] = ACTIONS(792), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(792), - [aux_sym_gssapi_authentication_token1] = ACTIONS(792), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(792), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(792), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(792), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(792), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(792), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(792), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(792), - [aux_sym_hash_known_hosts_token1] = ACTIONS(792), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(792), - [aux_sym_hostbased_authentication_token1] = ACTIONS(792), - [aux_sym_host_key_algorithms_token1] = ACTIONS(792), - [aux_sym_host_key_alias_token1] = ACTIONS(792), - [aux_sym_hostname_token1] = ACTIONS(792), - [aux_sym_identities_only_token1] = ACTIONS(792), - [aux_sym_identity_agent_token1] = ACTIONS(792), - [aux_sym_identity_file_token1] = ACTIONS(792), - [aux_sym_ignore_unknown_token1] = ACTIONS(792), - [aux_sym_include_token1] = ACTIONS(792), - [aux_sym_ip_qos_token1] = ACTIONS(792), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(792), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(792), - [aux_sym_kex_algorithms_token1] = ACTIONS(792), - [aux_sym_known_hosts_command_token1] = ACTIONS(792), - [aux_sym_local_command_token1] = ACTIONS(792), - [aux_sym_local_forward_token1] = ACTIONS(792), - [aux_sym_log_level_token1] = ACTIONS(792), - [aux_sym_log_verbose_token1] = ACTIONS(792), - [aux_sym_macs_token1] = ACTIONS(792), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(792), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(792), - [aux_sym_password_authentication_token1] = ACTIONS(792), - [aux_sym_permit_local_command_token1] = ACTIONS(792), - [aux_sym_permit_remote_open_token1] = ACTIONS(792), - [aux_sym_pkcs11_provider_token1] = ACTIONS(792), - [aux_sym_port_token1] = ACTIONS(792), - [aux_sym_preferred_authentications_token1] = ACTIONS(792), - [aux_sym_protocol_token1] = ACTIONS(792), - [aux_sym_proxy_command_token1] = ACTIONS(792), - [aux_sym_proxy_jump_token1] = ACTIONS(792), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(792), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(792), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(792), - [aux_sym_pubkey_authentication_token1] = ACTIONS(792), - [aux_sym_rekey_limit_token1] = ACTIONS(792), - [aux_sym_remote_command_token1] = ACTIONS(792), - [aux_sym_remote_forward_token1] = ACTIONS(792), - [aux_sym_request_tty_token1] = ACTIONS(792), - [aux_sym_required_rsa_size_token1] = ACTIONS(792), - [aux_sym_revoked_host_keys_token1] = ACTIONS(792), - [aux_sym_security_key_provider_token1] = ACTIONS(792), - [aux_sym_send_env_token1] = ACTIONS(792), - [aux_sym_server_alive_count_max_token1] = ACTIONS(792), - [aux_sym_server_alive_interval_token1] = ACTIONS(792), - [aux_sym_session_type_token1] = ACTIONS(792), - [aux_sym_set_env_token1] = ACTIONS(792), - [aux_sym_stdin_null_token1] = ACTIONS(792), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(792), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(792), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(792), - [aux_sym_syslog_facility_token1] = ACTIONS(792), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(792), - [aux_sym_keep_alive_token1] = ACTIONS(792), - [aux_sym_tag_token1] = ACTIONS(792), - [aux_sym_tunnel_token1] = ACTIONS(794), - [aux_sym_tunnel_device_token1] = ACTIONS(792), - [aux_sym_update_host_keys_token1] = ACTIONS(792), - [aux_sym_use_keychain_token1] = ACTIONS(792), - [aux_sym_use_roaming_token1] = ACTIONS(792), - [aux_sym_user_token1] = ACTIONS(794), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(792), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(792), - [aux_sym_visual_host_key_token1] = ACTIONS(792), - [aux_sym_xauth_location_token1] = ACTIONS(792), + [ts_builtin_sym_end] = ACTIONS(797), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(799), + [anon_sym_DQUOTE] = ACTIONS(801), + [aux_sym_match_token1] = ACTIONS(797), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(797), + [aux_sym_address_family_token1] = ACTIONS(797), + [aux_sym_batch_mode_token1] = ACTIONS(797), + [aux_sym_bind_address_token1] = ACTIONS(797), + [aux_sym_bind_interface_token1] = ACTIONS(797), + [aux_sym_canonical_domains_token1] = ACTIONS(797), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(797), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(797), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(797), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(797), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(797), + [aux_sym_certificate_file_token1] = ACTIONS(797), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(797), + [aux_sym_channel_timeout_token1] = ACTIONS(797), + [aux_sym_check_host_ip_token1] = ACTIONS(797), + [aux_sym_ciphers_token1] = ACTIONS(797), + [aux_sym_cipher_token1] = ACTIONS(799), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(797), + [aux_sym_compression_token1] = ACTIONS(797), + [aux_sym_connection_attempts_token1] = ACTIONS(797), + [aux_sym_connect_timeout_token1] = ACTIONS(797), + [aux_sym_control_master_token1] = ACTIONS(797), + [aux_sym_control_path_token1] = ACTIONS(797), + [aux_sym_control_persist_token1] = ACTIONS(797), + [aux_sym_dynamic_forward_token1] = ACTIONS(797), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(797), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(797), + [aux_sym_escape_char_token1] = ACTIONS(797), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(797), + [aux_sym_fingerprint_hash_token1] = ACTIONS(797), + [aux_sym_fork_after_authentication_token1] = ACTIONS(797), + [aux_sym_forward_agent_token1] = ACTIONS(797), + [aux_sym_forward_x11_token1] = ACTIONS(799), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(797), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(797), + [aux_sym_gateway_ports_token1] = ACTIONS(797), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(797), + [aux_sym_gssapi_authentication_token1] = ACTIONS(797), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(797), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(797), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(797), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(797), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(797), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(797), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(797), + [aux_sym_hash_known_hosts_token1] = ACTIONS(797), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(797), + [aux_sym_hostbased_authentication_token1] = ACTIONS(797), + [aux_sym_host_key_algorithms_token1] = ACTIONS(797), + [aux_sym_host_key_alias_token1] = ACTIONS(797), + [aux_sym_hostname_token1] = ACTIONS(797), + [aux_sym_identities_only_token1] = ACTIONS(797), + [aux_sym_identity_agent_token1] = ACTIONS(797), + [aux_sym_identity_file_token1] = ACTIONS(797), + [aux_sym_ignore_unknown_token1] = ACTIONS(797), + [aux_sym_include_token1] = ACTIONS(797), + [aux_sym_ip_qos_token1] = ACTIONS(797), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(797), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(797), + [aux_sym_kex_algorithms_token1] = ACTIONS(797), + [aux_sym_known_hosts_command_token1] = ACTIONS(797), + [aux_sym_local_command_token1] = ACTIONS(797), + [aux_sym_local_forward_token1] = ACTIONS(797), + [aux_sym_log_level_token1] = ACTIONS(797), + [aux_sym_log_verbose_token1] = ACTIONS(797), + [aux_sym_macs_token1] = ACTIONS(797), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(797), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(797), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(797), + [aux_sym_password_authentication_token1] = ACTIONS(797), + [aux_sym_permit_local_command_token1] = ACTIONS(797), + [aux_sym_permit_remote_open_token1] = ACTIONS(797), + [aux_sym_pkcs11_provider_token1] = ACTIONS(797), + [aux_sym_port_token1] = ACTIONS(797), + [aux_sym_preferred_authentications_token1] = ACTIONS(797), + [aux_sym_protocol_token1] = ACTIONS(797), + [aux_sym_proxy_command_token1] = ACTIONS(797), + [aux_sym_proxy_jump_token1] = ACTIONS(797), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(797), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(797), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(797), + [aux_sym_pubkey_authentication_token1] = ACTIONS(797), + [aux_sym_rekey_limit_token1] = ACTIONS(797), + [aux_sym_remote_command_token1] = ACTIONS(797), + [aux_sym_remote_forward_token1] = ACTIONS(797), + [aux_sym_request_tty_token1] = ACTIONS(797), + [aux_sym_required_rsa_size_token1] = ACTIONS(797), + [aux_sym_revoked_host_keys_token1] = ACTIONS(797), + [aux_sym_security_key_provider_token1] = ACTIONS(797), + [aux_sym_send_env_token1] = ACTIONS(797), + [aux_sym_server_alive_count_max_token1] = ACTIONS(797), + [aux_sym_server_alive_interval_token1] = ACTIONS(797), + [aux_sym_session_type_token1] = ACTIONS(797), + [aux_sym_set_env_token1] = ACTIONS(797), + [aux_sym_stdin_null_token1] = ACTIONS(797), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(797), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(797), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(797), + [aux_sym_syslog_facility_token1] = ACTIONS(797), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(797), + [aux_sym_keep_alive_token1] = ACTIONS(797), + [aux_sym_tag_token1] = ACTIONS(797), + [aux_sym_tunnel_token1] = ACTIONS(799), + [aux_sym_tunnel_device_token1] = ACTIONS(797), + [aux_sym_update_host_keys_token1] = ACTIONS(797), + [aux_sym_use_keychain_token1] = ACTIONS(797), + [aux_sym_use_roaming_token1] = ACTIONS(797), + [aux_sym_user_token1] = ACTIONS(799), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(797), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(797), + [aux_sym_visual_host_key_token1] = ACTIONS(797), + [aux_sym_xauth_location_token1] = ACTIONS(797), }, [40] = { - [ts_builtin_sym_end] = ACTIONS(798), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(800), - [anon_sym_DQUOTE] = ACTIONS(802), - [aux_sym_match_token1] = ACTIONS(798), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(798), - [aux_sym_address_family_token1] = ACTIONS(798), - [aux_sym_batch_mode_token1] = ACTIONS(798), - [aux_sym_bind_address_token1] = ACTIONS(798), - [aux_sym_bind_interface_token1] = ACTIONS(798), - [aux_sym_canonical_domains_token1] = ACTIONS(798), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(798), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(798), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(798), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(798), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(798), - [aux_sym_certificate_file_token1] = ACTIONS(798), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(798), - [aux_sym_channel_timeout_token1] = ACTIONS(798), - [aux_sym_check_host_ip_token1] = ACTIONS(798), - [aux_sym_ciphers_token1] = ACTIONS(798), - [aux_sym_cipher_token1] = ACTIONS(800), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(798), - [aux_sym_compression_token1] = ACTIONS(798), - [aux_sym_connection_attempts_token1] = ACTIONS(798), - [aux_sym_connect_timeout_token1] = ACTIONS(798), - [aux_sym_control_master_token1] = ACTIONS(798), - [aux_sym_control_path_token1] = ACTIONS(798), - [aux_sym_control_persist_token1] = ACTIONS(798), - [aux_sym_dynamic_forward_token1] = ACTIONS(798), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(798), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(798), - [aux_sym_escape_char_token1] = ACTIONS(798), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(798), - [aux_sym_fingerprint_hash_token1] = ACTIONS(798), - [aux_sym_fork_after_authentication_token1] = ACTIONS(798), - [aux_sym_forward_agent_token1] = ACTIONS(798), - [aux_sym_forward_x11_token1] = ACTIONS(800), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(798), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(798), - [aux_sym_gateway_ports_token1] = ACTIONS(798), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(798), - [aux_sym_gssapi_authentication_token1] = ACTIONS(798), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(798), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(798), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(798), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(798), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(798), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(798), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(798), - [aux_sym_hash_known_hosts_token1] = ACTIONS(798), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(798), - [aux_sym_hostbased_authentication_token1] = ACTIONS(798), - [aux_sym_host_key_algorithms_token1] = ACTIONS(798), - [aux_sym_host_key_alias_token1] = ACTIONS(798), - [aux_sym_hostname_token1] = ACTIONS(798), - [aux_sym_identities_only_token1] = ACTIONS(798), - [aux_sym_identity_agent_token1] = ACTIONS(798), - [aux_sym_identity_file_token1] = ACTIONS(798), - [aux_sym_ignore_unknown_token1] = ACTIONS(798), - [aux_sym_include_token1] = ACTIONS(798), - [aux_sym_ip_qos_token1] = ACTIONS(798), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(798), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(798), - [aux_sym_kex_algorithms_token1] = ACTIONS(798), - [aux_sym_known_hosts_command_token1] = ACTIONS(798), - [aux_sym_local_command_token1] = ACTIONS(798), - [aux_sym_local_forward_token1] = ACTIONS(798), - [aux_sym_log_level_token1] = ACTIONS(798), - [aux_sym_log_verbose_token1] = ACTIONS(798), - [aux_sym_macs_token1] = ACTIONS(798), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(798), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(798), - [aux_sym_password_authentication_token1] = ACTIONS(798), - [aux_sym_permit_local_command_token1] = ACTIONS(798), - [aux_sym_permit_remote_open_token1] = ACTIONS(798), - [aux_sym_pkcs11_provider_token1] = ACTIONS(798), - [aux_sym_port_token1] = ACTIONS(798), - [aux_sym_preferred_authentications_token1] = ACTIONS(798), - [aux_sym_protocol_token1] = ACTIONS(798), - [aux_sym_proxy_command_token1] = ACTIONS(798), - [aux_sym_proxy_jump_token1] = ACTIONS(798), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(798), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(798), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(798), - [aux_sym_pubkey_authentication_token1] = ACTIONS(798), - [aux_sym_rekey_limit_token1] = ACTIONS(798), - [aux_sym_remote_command_token1] = ACTIONS(798), - [aux_sym_remote_forward_token1] = ACTIONS(798), - [aux_sym_request_tty_token1] = ACTIONS(798), - [aux_sym_required_rsa_size_token1] = ACTIONS(798), - [aux_sym_revoked_host_keys_token1] = ACTIONS(798), - [aux_sym_security_key_provider_token1] = ACTIONS(798), - [aux_sym_send_env_token1] = ACTIONS(798), - [aux_sym_server_alive_count_max_token1] = ACTIONS(798), - [aux_sym_server_alive_interval_token1] = ACTIONS(798), - [aux_sym_session_type_token1] = ACTIONS(798), - [aux_sym_set_env_token1] = ACTIONS(798), - [aux_sym_stdin_null_token1] = ACTIONS(798), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(798), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(798), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(798), - [aux_sym_syslog_facility_token1] = ACTIONS(798), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(798), - [aux_sym_keep_alive_token1] = ACTIONS(798), - [aux_sym_tag_token1] = ACTIONS(798), - [aux_sym_tunnel_token1] = ACTIONS(800), - [aux_sym_tunnel_device_token1] = ACTIONS(798), - [aux_sym_update_host_keys_token1] = ACTIONS(798), - [aux_sym_use_keychain_token1] = ACTIONS(798), - [aux_sym_use_roaming_token1] = ACTIONS(798), - [aux_sym_user_token1] = ACTIONS(800), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(798), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(798), - [aux_sym_visual_host_key_token1] = ACTIONS(798), - [aux_sym_xauth_location_token1] = ACTIONS(798), + [ts_builtin_sym_end] = ACTIONS(803), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(807), + [aux_sym_match_token1] = ACTIONS(803), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(803), + [aux_sym_address_family_token1] = ACTIONS(803), + [aux_sym_batch_mode_token1] = ACTIONS(803), + [aux_sym_bind_address_token1] = ACTIONS(803), + [aux_sym_bind_interface_token1] = ACTIONS(803), + [aux_sym_canonical_domains_token1] = ACTIONS(803), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(803), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(803), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(803), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(803), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(803), + [aux_sym_certificate_file_token1] = ACTIONS(803), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(803), + [aux_sym_channel_timeout_token1] = ACTIONS(803), + [aux_sym_check_host_ip_token1] = ACTIONS(803), + [aux_sym_ciphers_token1] = ACTIONS(803), + [aux_sym_cipher_token1] = ACTIONS(805), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(803), + [aux_sym_compression_token1] = ACTIONS(803), + [aux_sym_connection_attempts_token1] = ACTIONS(803), + [aux_sym_connect_timeout_token1] = ACTIONS(803), + [aux_sym_control_master_token1] = ACTIONS(803), + [aux_sym_control_path_token1] = ACTIONS(803), + [aux_sym_control_persist_token1] = ACTIONS(803), + [aux_sym_dynamic_forward_token1] = ACTIONS(803), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(803), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(803), + [aux_sym_escape_char_token1] = ACTIONS(803), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(803), + [aux_sym_fingerprint_hash_token1] = ACTIONS(803), + [aux_sym_fork_after_authentication_token1] = ACTIONS(803), + [aux_sym_forward_agent_token1] = ACTIONS(803), + [aux_sym_forward_x11_token1] = ACTIONS(805), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(803), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(803), + [aux_sym_gateway_ports_token1] = ACTIONS(803), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(803), + [aux_sym_gssapi_authentication_token1] = ACTIONS(803), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(803), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(803), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(803), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(803), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(803), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(803), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(803), + [aux_sym_hash_known_hosts_token1] = ACTIONS(803), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(803), + [aux_sym_hostbased_authentication_token1] = ACTIONS(803), + [aux_sym_host_key_algorithms_token1] = ACTIONS(803), + [aux_sym_host_key_alias_token1] = ACTIONS(803), + [aux_sym_hostname_token1] = ACTIONS(803), + [aux_sym_identities_only_token1] = ACTIONS(803), + [aux_sym_identity_agent_token1] = ACTIONS(803), + [aux_sym_identity_file_token1] = ACTIONS(803), + [aux_sym_ignore_unknown_token1] = ACTIONS(803), + [aux_sym_include_token1] = ACTIONS(803), + [aux_sym_ip_qos_token1] = ACTIONS(803), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(803), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(803), + [aux_sym_kex_algorithms_token1] = ACTIONS(803), + [aux_sym_known_hosts_command_token1] = ACTIONS(803), + [aux_sym_local_command_token1] = ACTIONS(803), + [aux_sym_local_forward_token1] = ACTIONS(803), + [aux_sym_log_level_token1] = ACTIONS(803), + [aux_sym_log_verbose_token1] = ACTIONS(803), + [aux_sym_macs_token1] = ACTIONS(803), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(803), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(803), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(803), + [aux_sym_password_authentication_token1] = ACTIONS(803), + [aux_sym_permit_local_command_token1] = ACTIONS(803), + [aux_sym_permit_remote_open_token1] = ACTIONS(803), + [aux_sym_pkcs11_provider_token1] = ACTIONS(803), + [aux_sym_port_token1] = ACTIONS(803), + [aux_sym_preferred_authentications_token1] = ACTIONS(803), + [aux_sym_protocol_token1] = ACTIONS(803), + [aux_sym_proxy_command_token1] = ACTIONS(803), + [aux_sym_proxy_jump_token1] = ACTIONS(803), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(803), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(803), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(803), + [aux_sym_pubkey_authentication_token1] = ACTIONS(803), + [aux_sym_rekey_limit_token1] = ACTIONS(803), + [aux_sym_remote_command_token1] = ACTIONS(803), + [aux_sym_remote_forward_token1] = ACTIONS(803), + [aux_sym_request_tty_token1] = ACTIONS(803), + [aux_sym_required_rsa_size_token1] = ACTIONS(803), + [aux_sym_revoked_host_keys_token1] = ACTIONS(803), + [aux_sym_security_key_provider_token1] = ACTIONS(803), + [aux_sym_send_env_token1] = ACTIONS(803), + [aux_sym_server_alive_count_max_token1] = ACTIONS(803), + [aux_sym_server_alive_interval_token1] = ACTIONS(803), + [aux_sym_session_type_token1] = ACTIONS(803), + [aux_sym_set_env_token1] = ACTIONS(803), + [aux_sym_stdin_null_token1] = ACTIONS(803), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(803), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(803), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(803), + [aux_sym_syslog_facility_token1] = ACTIONS(803), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(803), + [aux_sym_keep_alive_token1] = ACTIONS(803), + [aux_sym_tag_token1] = ACTIONS(803), + [aux_sym_tunnel_token1] = ACTIONS(805), + [aux_sym_tunnel_device_token1] = ACTIONS(803), + [aux_sym_update_host_keys_token1] = ACTIONS(803), + [aux_sym_use_keychain_token1] = ACTIONS(803), + [aux_sym_use_roaming_token1] = ACTIONS(803), + [aux_sym_user_token1] = ACTIONS(805), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(803), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(803), + [aux_sym_visual_host_key_token1] = ACTIONS(803), + [aux_sym_xauth_location_token1] = ACTIONS(803), }, [41] = { - [ts_builtin_sym_end] = ACTIONS(804), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(808), - [aux_sym_match_token1] = ACTIONS(804), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(804), - [aux_sym_address_family_token1] = ACTIONS(804), - [aux_sym_batch_mode_token1] = ACTIONS(804), - [aux_sym_bind_address_token1] = ACTIONS(804), - [aux_sym_bind_interface_token1] = ACTIONS(804), - [aux_sym_canonical_domains_token1] = ACTIONS(804), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(804), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(804), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(804), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(804), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(804), - [aux_sym_certificate_file_token1] = ACTIONS(804), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(804), - [aux_sym_channel_timeout_token1] = ACTIONS(804), - [aux_sym_check_host_ip_token1] = ACTIONS(804), - [aux_sym_ciphers_token1] = ACTIONS(804), - [aux_sym_cipher_token1] = ACTIONS(806), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(804), - [aux_sym_compression_token1] = ACTIONS(804), - [aux_sym_connection_attempts_token1] = ACTIONS(804), - [aux_sym_connect_timeout_token1] = ACTIONS(804), - [aux_sym_control_master_token1] = ACTIONS(804), - [aux_sym_control_path_token1] = ACTIONS(804), - [aux_sym_control_persist_token1] = ACTIONS(804), - [aux_sym_dynamic_forward_token1] = ACTIONS(804), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(804), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(804), - [aux_sym_escape_char_token1] = ACTIONS(804), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(804), - [aux_sym_fingerprint_hash_token1] = ACTIONS(804), - [aux_sym_fork_after_authentication_token1] = ACTIONS(804), - [aux_sym_forward_agent_token1] = ACTIONS(804), - [aux_sym_forward_x11_token1] = ACTIONS(806), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(804), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(804), - [aux_sym_gateway_ports_token1] = ACTIONS(804), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(804), - [aux_sym_gssapi_authentication_token1] = ACTIONS(804), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(804), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(804), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(804), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(804), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(804), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(804), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(804), - [aux_sym_hash_known_hosts_token1] = ACTIONS(804), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(804), - [aux_sym_hostbased_authentication_token1] = ACTIONS(804), - [aux_sym_host_key_algorithms_token1] = ACTIONS(804), - [aux_sym_host_key_alias_token1] = ACTIONS(804), - [aux_sym_hostname_token1] = ACTIONS(804), - [aux_sym_identities_only_token1] = ACTIONS(804), - [aux_sym_identity_agent_token1] = ACTIONS(804), - [aux_sym_identity_file_token1] = ACTIONS(804), - [aux_sym_ignore_unknown_token1] = ACTIONS(804), - [aux_sym_include_token1] = ACTIONS(804), - [aux_sym_ip_qos_token1] = ACTIONS(804), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(804), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(804), - [aux_sym_kex_algorithms_token1] = ACTIONS(804), - [aux_sym_known_hosts_command_token1] = ACTIONS(804), - [aux_sym_local_command_token1] = ACTIONS(804), - [aux_sym_local_forward_token1] = ACTIONS(804), - [aux_sym_log_level_token1] = ACTIONS(804), - [aux_sym_log_verbose_token1] = ACTIONS(804), - [aux_sym_macs_token1] = ACTIONS(804), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(804), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(804), - [aux_sym_password_authentication_token1] = ACTIONS(804), - [aux_sym_permit_local_command_token1] = ACTIONS(804), - [aux_sym_permit_remote_open_token1] = ACTIONS(804), - [aux_sym_pkcs11_provider_token1] = ACTIONS(804), - [aux_sym_port_token1] = ACTIONS(804), - [aux_sym_preferred_authentications_token1] = ACTIONS(804), - [aux_sym_protocol_token1] = ACTIONS(804), - [aux_sym_proxy_command_token1] = ACTIONS(804), - [aux_sym_proxy_jump_token1] = ACTIONS(804), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(804), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(804), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(804), - [aux_sym_pubkey_authentication_token1] = ACTIONS(804), - [aux_sym_rekey_limit_token1] = ACTIONS(804), - [aux_sym_remote_command_token1] = ACTIONS(804), - [aux_sym_remote_forward_token1] = ACTIONS(804), - [aux_sym_request_tty_token1] = ACTIONS(804), - [aux_sym_required_rsa_size_token1] = ACTIONS(804), - [aux_sym_revoked_host_keys_token1] = ACTIONS(804), - [aux_sym_security_key_provider_token1] = ACTIONS(804), - [aux_sym_send_env_token1] = ACTIONS(804), - [aux_sym_server_alive_count_max_token1] = ACTIONS(804), - [aux_sym_server_alive_interval_token1] = ACTIONS(804), - [aux_sym_session_type_token1] = ACTIONS(804), - [aux_sym_set_env_token1] = ACTIONS(804), - [aux_sym_stdin_null_token1] = ACTIONS(804), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(804), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(804), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(804), - [aux_sym_syslog_facility_token1] = ACTIONS(804), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(804), - [aux_sym_keep_alive_token1] = ACTIONS(804), - [aux_sym_tag_token1] = ACTIONS(804), - [aux_sym_tunnel_token1] = ACTIONS(806), - [aux_sym_tunnel_device_token1] = ACTIONS(804), - [aux_sym_update_host_keys_token1] = ACTIONS(804), - [aux_sym_use_keychain_token1] = ACTIONS(804), - [aux_sym_use_roaming_token1] = ACTIONS(804), - [aux_sym_user_token1] = ACTIONS(806), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(804), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(804), - [aux_sym_visual_host_key_token1] = ACTIONS(804), - [aux_sym_xauth_location_token1] = ACTIONS(804), + [ts_builtin_sym_end] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(811), + [anon_sym_DQUOTE] = ACTIONS(813), + [aux_sym_match_token1] = ACTIONS(809), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(809), + [aux_sym_address_family_token1] = ACTIONS(809), + [aux_sym_batch_mode_token1] = ACTIONS(809), + [aux_sym_bind_address_token1] = ACTIONS(809), + [aux_sym_bind_interface_token1] = ACTIONS(809), + [aux_sym_canonical_domains_token1] = ACTIONS(809), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(809), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(809), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(809), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(809), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(809), + [aux_sym_certificate_file_token1] = ACTIONS(809), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(809), + [aux_sym_channel_timeout_token1] = ACTIONS(809), + [aux_sym_check_host_ip_token1] = ACTIONS(809), + [aux_sym_ciphers_token1] = ACTIONS(809), + [aux_sym_cipher_token1] = ACTIONS(811), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(809), + [aux_sym_compression_token1] = ACTIONS(809), + [aux_sym_connection_attempts_token1] = ACTIONS(809), + [aux_sym_connect_timeout_token1] = ACTIONS(809), + [aux_sym_control_master_token1] = ACTIONS(809), + [aux_sym_control_path_token1] = ACTIONS(809), + [aux_sym_control_persist_token1] = ACTIONS(809), + [aux_sym_dynamic_forward_token1] = ACTIONS(809), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(809), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(809), + [aux_sym_escape_char_token1] = ACTIONS(809), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(809), + [aux_sym_fingerprint_hash_token1] = ACTIONS(809), + [aux_sym_fork_after_authentication_token1] = ACTIONS(809), + [aux_sym_forward_agent_token1] = ACTIONS(809), + [aux_sym_forward_x11_token1] = ACTIONS(811), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(809), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(809), + [aux_sym_gateway_ports_token1] = ACTIONS(809), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(809), + [aux_sym_gssapi_authentication_token1] = ACTIONS(809), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(809), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(809), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(809), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(809), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(809), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(809), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(809), + [aux_sym_hash_known_hosts_token1] = ACTIONS(809), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(809), + [aux_sym_hostbased_authentication_token1] = ACTIONS(809), + [aux_sym_host_key_algorithms_token1] = ACTIONS(809), + [aux_sym_host_key_alias_token1] = ACTIONS(809), + [aux_sym_hostname_token1] = ACTIONS(809), + [aux_sym_identities_only_token1] = ACTIONS(809), + [aux_sym_identity_agent_token1] = ACTIONS(809), + [aux_sym_identity_file_token1] = ACTIONS(809), + [aux_sym_ignore_unknown_token1] = ACTIONS(809), + [aux_sym_include_token1] = ACTIONS(809), + [aux_sym_ip_qos_token1] = ACTIONS(809), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(809), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(809), + [aux_sym_kex_algorithms_token1] = ACTIONS(809), + [aux_sym_known_hosts_command_token1] = ACTIONS(809), + [aux_sym_local_command_token1] = ACTIONS(809), + [aux_sym_local_forward_token1] = ACTIONS(809), + [aux_sym_log_level_token1] = ACTIONS(809), + [aux_sym_log_verbose_token1] = ACTIONS(809), + [aux_sym_macs_token1] = ACTIONS(809), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(809), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(809), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(809), + [aux_sym_password_authentication_token1] = ACTIONS(809), + [aux_sym_permit_local_command_token1] = ACTIONS(809), + [aux_sym_permit_remote_open_token1] = ACTIONS(809), + [aux_sym_pkcs11_provider_token1] = ACTIONS(809), + [aux_sym_port_token1] = ACTIONS(809), + [aux_sym_preferred_authentications_token1] = ACTIONS(809), + [aux_sym_protocol_token1] = ACTIONS(809), + [aux_sym_proxy_command_token1] = ACTIONS(809), + [aux_sym_proxy_jump_token1] = ACTIONS(809), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(809), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(809), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(809), + [aux_sym_pubkey_authentication_token1] = ACTIONS(809), + [aux_sym_rekey_limit_token1] = ACTIONS(809), + [aux_sym_remote_command_token1] = ACTIONS(809), + [aux_sym_remote_forward_token1] = ACTIONS(809), + [aux_sym_request_tty_token1] = ACTIONS(809), + [aux_sym_required_rsa_size_token1] = ACTIONS(809), + [aux_sym_revoked_host_keys_token1] = ACTIONS(809), + [aux_sym_security_key_provider_token1] = ACTIONS(809), + [aux_sym_send_env_token1] = ACTIONS(809), + [aux_sym_server_alive_count_max_token1] = ACTIONS(809), + [aux_sym_server_alive_interval_token1] = ACTIONS(809), + [aux_sym_session_type_token1] = ACTIONS(809), + [aux_sym_set_env_token1] = ACTIONS(809), + [aux_sym_stdin_null_token1] = ACTIONS(809), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(809), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(809), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(809), + [aux_sym_syslog_facility_token1] = ACTIONS(809), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(809), + [aux_sym_keep_alive_token1] = ACTIONS(809), + [aux_sym_tag_token1] = ACTIONS(809), + [aux_sym_tunnel_token1] = ACTIONS(811), + [aux_sym_tunnel_device_token1] = ACTIONS(809), + [aux_sym_update_host_keys_token1] = ACTIONS(809), + [aux_sym_use_keychain_token1] = ACTIONS(809), + [aux_sym_use_roaming_token1] = ACTIONS(809), + [aux_sym_user_token1] = ACTIONS(811), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(809), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(809), + [aux_sym_visual_host_key_token1] = ACTIONS(809), + [aux_sym_xauth_location_token1] = ACTIONS(809), }, [42] = { - [ts_builtin_sym_end] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(812), - [anon_sym_DQUOTE] = ACTIONS(814), - [aux_sym_match_token1] = ACTIONS(810), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(810), - [aux_sym_address_family_token1] = ACTIONS(810), - [aux_sym_batch_mode_token1] = ACTIONS(810), - [aux_sym_bind_address_token1] = ACTIONS(810), - [aux_sym_bind_interface_token1] = ACTIONS(810), - [aux_sym_canonical_domains_token1] = ACTIONS(810), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(810), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(810), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(810), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(810), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(810), - [aux_sym_certificate_file_token1] = ACTIONS(810), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(810), - [aux_sym_channel_timeout_token1] = ACTIONS(810), - [aux_sym_check_host_ip_token1] = ACTIONS(810), - [aux_sym_ciphers_token1] = ACTIONS(810), - [aux_sym_cipher_token1] = ACTIONS(812), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(810), - [aux_sym_compression_token1] = ACTIONS(810), - [aux_sym_connection_attempts_token1] = ACTIONS(810), - [aux_sym_connect_timeout_token1] = ACTIONS(810), - [aux_sym_control_master_token1] = ACTIONS(810), - [aux_sym_control_path_token1] = ACTIONS(810), - [aux_sym_control_persist_token1] = ACTIONS(810), - [aux_sym_dynamic_forward_token1] = ACTIONS(810), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(810), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(810), - [aux_sym_escape_char_token1] = ACTIONS(810), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(810), - [aux_sym_fingerprint_hash_token1] = ACTIONS(810), - [aux_sym_fork_after_authentication_token1] = ACTIONS(810), - [aux_sym_forward_agent_token1] = ACTIONS(810), - [aux_sym_forward_x11_token1] = ACTIONS(812), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(810), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(810), - [aux_sym_gateway_ports_token1] = ACTIONS(810), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(810), - [aux_sym_gssapi_authentication_token1] = ACTIONS(810), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(810), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(810), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(810), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(810), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(810), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(810), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(810), - [aux_sym_hash_known_hosts_token1] = ACTIONS(810), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(810), - [aux_sym_hostbased_authentication_token1] = ACTIONS(810), - [aux_sym_host_key_algorithms_token1] = ACTIONS(810), - [aux_sym_host_key_alias_token1] = ACTIONS(810), - [aux_sym_hostname_token1] = ACTIONS(810), - [aux_sym_identities_only_token1] = ACTIONS(810), - [aux_sym_identity_agent_token1] = ACTIONS(810), - [aux_sym_identity_file_token1] = ACTIONS(810), - [aux_sym_ignore_unknown_token1] = ACTIONS(810), - [aux_sym_include_token1] = ACTIONS(810), - [aux_sym_ip_qos_token1] = ACTIONS(810), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(810), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(810), - [aux_sym_kex_algorithms_token1] = ACTIONS(810), - [aux_sym_known_hosts_command_token1] = ACTIONS(810), - [aux_sym_local_command_token1] = ACTIONS(810), - [aux_sym_local_forward_token1] = ACTIONS(810), - [aux_sym_log_level_token1] = ACTIONS(810), - [aux_sym_log_verbose_token1] = ACTIONS(810), - [aux_sym_macs_token1] = ACTIONS(810), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(810), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(810), - [aux_sym_password_authentication_token1] = ACTIONS(810), - [aux_sym_permit_local_command_token1] = ACTIONS(810), - [aux_sym_permit_remote_open_token1] = ACTIONS(810), - [aux_sym_pkcs11_provider_token1] = ACTIONS(810), - [aux_sym_port_token1] = ACTIONS(810), - [aux_sym_preferred_authentications_token1] = ACTIONS(810), - [aux_sym_protocol_token1] = ACTIONS(810), - [aux_sym_proxy_command_token1] = ACTIONS(810), - [aux_sym_proxy_jump_token1] = ACTIONS(810), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(810), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(810), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(810), - [aux_sym_pubkey_authentication_token1] = ACTIONS(810), - [aux_sym_rekey_limit_token1] = ACTIONS(810), - [aux_sym_remote_command_token1] = ACTIONS(810), - [aux_sym_remote_forward_token1] = ACTIONS(810), - [aux_sym_request_tty_token1] = ACTIONS(810), - [aux_sym_required_rsa_size_token1] = ACTIONS(810), - [aux_sym_revoked_host_keys_token1] = ACTIONS(810), - [aux_sym_security_key_provider_token1] = ACTIONS(810), - [aux_sym_send_env_token1] = ACTIONS(810), - [aux_sym_server_alive_count_max_token1] = ACTIONS(810), - [aux_sym_server_alive_interval_token1] = ACTIONS(810), - [aux_sym_session_type_token1] = ACTIONS(810), - [aux_sym_set_env_token1] = ACTIONS(810), - [aux_sym_stdin_null_token1] = ACTIONS(810), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(810), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(810), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(810), - [aux_sym_syslog_facility_token1] = ACTIONS(810), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(810), - [aux_sym_keep_alive_token1] = ACTIONS(810), - [aux_sym_tag_token1] = ACTIONS(810), - [aux_sym_tunnel_token1] = ACTIONS(812), - [aux_sym_tunnel_device_token1] = ACTIONS(810), - [aux_sym_update_host_keys_token1] = ACTIONS(810), - [aux_sym_use_keychain_token1] = ACTIONS(810), - [aux_sym_use_roaming_token1] = ACTIONS(810), - [aux_sym_user_token1] = ACTIONS(812), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(810), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(810), - [aux_sym_visual_host_key_token1] = ACTIONS(810), - [aux_sym_xauth_location_token1] = ACTIONS(810), + [ts_builtin_sym_end] = ACTIONS(815), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(817), + [anon_sym_DQUOTE] = ACTIONS(819), + [aux_sym_match_token1] = ACTIONS(815), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(815), + [aux_sym_address_family_token1] = ACTIONS(815), + [aux_sym_batch_mode_token1] = ACTIONS(815), + [aux_sym_bind_address_token1] = ACTIONS(815), + [aux_sym_bind_interface_token1] = ACTIONS(815), + [aux_sym_canonical_domains_token1] = ACTIONS(815), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(815), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(815), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(815), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(815), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(815), + [aux_sym_certificate_file_token1] = ACTIONS(815), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(815), + [aux_sym_channel_timeout_token1] = ACTIONS(815), + [aux_sym_check_host_ip_token1] = ACTIONS(815), + [aux_sym_ciphers_token1] = ACTIONS(815), + [aux_sym_cipher_token1] = ACTIONS(817), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(815), + [aux_sym_compression_token1] = ACTIONS(815), + [aux_sym_connection_attempts_token1] = ACTIONS(815), + [aux_sym_connect_timeout_token1] = ACTIONS(815), + [aux_sym_control_master_token1] = ACTIONS(815), + [aux_sym_control_path_token1] = ACTIONS(815), + [aux_sym_control_persist_token1] = ACTIONS(815), + [aux_sym_dynamic_forward_token1] = ACTIONS(815), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(815), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(815), + [aux_sym_escape_char_token1] = ACTIONS(815), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(815), + [aux_sym_fingerprint_hash_token1] = ACTIONS(815), + [aux_sym_fork_after_authentication_token1] = ACTIONS(815), + [aux_sym_forward_agent_token1] = ACTIONS(815), + [aux_sym_forward_x11_token1] = ACTIONS(817), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(815), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(815), + [aux_sym_gateway_ports_token1] = ACTIONS(815), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(815), + [aux_sym_gssapi_authentication_token1] = ACTIONS(815), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(815), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(815), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(815), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(815), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(815), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(815), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(815), + [aux_sym_hash_known_hosts_token1] = ACTIONS(815), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(815), + [aux_sym_hostbased_authentication_token1] = ACTIONS(815), + [aux_sym_host_key_algorithms_token1] = ACTIONS(815), + [aux_sym_host_key_alias_token1] = ACTIONS(815), + [aux_sym_hostname_token1] = ACTIONS(815), + [aux_sym_identities_only_token1] = ACTIONS(815), + [aux_sym_identity_agent_token1] = ACTIONS(815), + [aux_sym_identity_file_token1] = ACTIONS(815), + [aux_sym_ignore_unknown_token1] = ACTIONS(815), + [aux_sym_include_token1] = ACTIONS(815), + [aux_sym_ip_qos_token1] = ACTIONS(815), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(815), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(815), + [aux_sym_kex_algorithms_token1] = ACTIONS(815), + [aux_sym_known_hosts_command_token1] = ACTIONS(815), + [aux_sym_local_command_token1] = ACTIONS(815), + [aux_sym_local_forward_token1] = ACTIONS(815), + [aux_sym_log_level_token1] = ACTIONS(815), + [aux_sym_log_verbose_token1] = ACTIONS(815), + [aux_sym_macs_token1] = ACTIONS(815), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(815), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(815), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(815), + [aux_sym_password_authentication_token1] = ACTIONS(815), + [aux_sym_permit_local_command_token1] = ACTIONS(815), + [aux_sym_permit_remote_open_token1] = ACTIONS(815), + [aux_sym_pkcs11_provider_token1] = ACTIONS(815), + [aux_sym_port_token1] = ACTIONS(815), + [aux_sym_preferred_authentications_token1] = ACTIONS(815), + [aux_sym_protocol_token1] = ACTIONS(815), + [aux_sym_proxy_command_token1] = ACTIONS(815), + [aux_sym_proxy_jump_token1] = ACTIONS(815), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(815), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(815), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(815), + [aux_sym_pubkey_authentication_token1] = ACTIONS(815), + [aux_sym_rekey_limit_token1] = ACTIONS(815), + [aux_sym_remote_command_token1] = ACTIONS(815), + [aux_sym_remote_forward_token1] = ACTIONS(815), + [aux_sym_request_tty_token1] = ACTIONS(815), + [aux_sym_required_rsa_size_token1] = ACTIONS(815), + [aux_sym_revoked_host_keys_token1] = ACTIONS(815), + [aux_sym_security_key_provider_token1] = ACTIONS(815), + [aux_sym_send_env_token1] = ACTIONS(815), + [aux_sym_server_alive_count_max_token1] = ACTIONS(815), + [aux_sym_server_alive_interval_token1] = ACTIONS(815), + [aux_sym_session_type_token1] = ACTIONS(815), + [aux_sym_set_env_token1] = ACTIONS(815), + [aux_sym_stdin_null_token1] = ACTIONS(815), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(815), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(815), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(815), + [aux_sym_syslog_facility_token1] = ACTIONS(815), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(815), + [aux_sym_keep_alive_token1] = ACTIONS(815), + [aux_sym_tag_token1] = ACTIONS(815), + [aux_sym_tunnel_token1] = ACTIONS(817), + [aux_sym_tunnel_device_token1] = ACTIONS(815), + [aux_sym_update_host_keys_token1] = ACTIONS(815), + [aux_sym_use_keychain_token1] = ACTIONS(815), + [aux_sym_use_roaming_token1] = ACTIONS(815), + [aux_sym_user_token1] = ACTIONS(817), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(815), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(815), + [aux_sym_visual_host_key_token1] = ACTIONS(815), + [aux_sym_xauth_location_token1] = ACTIONS(815), }, [43] = { - [ts_builtin_sym_end] = ACTIONS(816), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(818), - [anon_sym_DQUOTE] = ACTIONS(820), - [aux_sym_match_token1] = ACTIONS(816), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(816), - [aux_sym_address_family_token1] = ACTIONS(816), - [aux_sym_batch_mode_token1] = ACTIONS(816), - [aux_sym_bind_address_token1] = ACTIONS(816), - [aux_sym_bind_interface_token1] = ACTIONS(816), - [aux_sym_canonical_domains_token1] = ACTIONS(816), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(816), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(816), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(816), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(816), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(816), - [aux_sym_certificate_file_token1] = ACTIONS(816), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(816), - [aux_sym_channel_timeout_token1] = ACTIONS(816), - [aux_sym_check_host_ip_token1] = ACTIONS(816), - [aux_sym_ciphers_token1] = ACTIONS(816), - [aux_sym_cipher_token1] = ACTIONS(818), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(816), - [aux_sym_compression_token1] = ACTIONS(816), - [aux_sym_connection_attempts_token1] = ACTIONS(816), - [aux_sym_connect_timeout_token1] = ACTIONS(816), - [aux_sym_control_master_token1] = ACTIONS(816), - [aux_sym_control_path_token1] = ACTIONS(816), - [aux_sym_control_persist_token1] = ACTIONS(816), - [aux_sym_dynamic_forward_token1] = ACTIONS(816), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(816), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(816), - [aux_sym_escape_char_token1] = ACTIONS(816), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(816), - [aux_sym_fingerprint_hash_token1] = ACTIONS(816), - [aux_sym_fork_after_authentication_token1] = ACTIONS(816), - [aux_sym_forward_agent_token1] = ACTIONS(816), - [aux_sym_forward_x11_token1] = ACTIONS(818), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(816), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(816), - [aux_sym_gateway_ports_token1] = ACTIONS(816), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(816), - [aux_sym_gssapi_authentication_token1] = ACTIONS(816), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(816), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(816), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(816), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(816), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(816), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(816), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(816), - [aux_sym_hash_known_hosts_token1] = ACTIONS(816), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(816), - [aux_sym_hostbased_authentication_token1] = ACTIONS(816), - [aux_sym_host_key_algorithms_token1] = ACTIONS(816), - [aux_sym_host_key_alias_token1] = ACTIONS(816), - [aux_sym_hostname_token1] = ACTIONS(816), - [aux_sym_identities_only_token1] = ACTIONS(816), - [aux_sym_identity_agent_token1] = ACTIONS(816), - [aux_sym_identity_file_token1] = ACTIONS(816), - [aux_sym_ignore_unknown_token1] = ACTIONS(816), - [aux_sym_include_token1] = ACTIONS(816), - [aux_sym_ip_qos_token1] = ACTIONS(816), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(816), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(816), - [aux_sym_kex_algorithms_token1] = ACTIONS(816), - [aux_sym_known_hosts_command_token1] = ACTIONS(816), - [aux_sym_local_command_token1] = ACTIONS(816), - [aux_sym_local_forward_token1] = ACTIONS(816), - [aux_sym_log_level_token1] = ACTIONS(816), - [aux_sym_log_verbose_token1] = ACTIONS(816), - [aux_sym_macs_token1] = ACTIONS(816), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(816), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(816), - [aux_sym_password_authentication_token1] = ACTIONS(816), - [aux_sym_permit_local_command_token1] = ACTIONS(816), - [aux_sym_permit_remote_open_token1] = ACTIONS(816), - [aux_sym_pkcs11_provider_token1] = ACTIONS(816), - [aux_sym_port_token1] = ACTIONS(816), - [aux_sym_preferred_authentications_token1] = ACTIONS(816), - [aux_sym_protocol_token1] = ACTIONS(816), - [aux_sym_proxy_command_token1] = ACTIONS(816), - [aux_sym_proxy_jump_token1] = ACTIONS(816), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(816), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(816), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(816), - [aux_sym_pubkey_authentication_token1] = ACTIONS(816), - [aux_sym_rekey_limit_token1] = ACTIONS(816), - [aux_sym_remote_command_token1] = ACTIONS(816), - [aux_sym_remote_forward_token1] = ACTIONS(816), - [aux_sym_request_tty_token1] = ACTIONS(816), - [aux_sym_required_rsa_size_token1] = ACTIONS(816), - [aux_sym_revoked_host_keys_token1] = ACTIONS(816), - [aux_sym_security_key_provider_token1] = ACTIONS(816), - [aux_sym_send_env_token1] = ACTIONS(816), - [aux_sym_server_alive_count_max_token1] = ACTIONS(816), - [aux_sym_server_alive_interval_token1] = ACTIONS(816), - [aux_sym_session_type_token1] = ACTIONS(816), - [aux_sym_set_env_token1] = ACTIONS(816), - [aux_sym_stdin_null_token1] = ACTIONS(816), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(816), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(816), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(816), - [aux_sym_syslog_facility_token1] = ACTIONS(816), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(816), - [aux_sym_keep_alive_token1] = ACTIONS(816), - [aux_sym_tag_token1] = ACTIONS(816), - [aux_sym_tunnel_token1] = ACTIONS(818), - [aux_sym_tunnel_device_token1] = ACTIONS(816), - [aux_sym_update_host_keys_token1] = ACTIONS(816), - [aux_sym_use_keychain_token1] = ACTIONS(816), - [aux_sym_use_roaming_token1] = ACTIONS(816), - [aux_sym_user_token1] = ACTIONS(818), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(816), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(816), - [aux_sym_visual_host_key_token1] = ACTIONS(816), - [aux_sym_xauth_location_token1] = ACTIONS(816), + [ts_builtin_sym_end] = ACTIONS(821), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [aux_sym_match_token1] = ACTIONS(821), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(821), + [aux_sym_address_family_token1] = ACTIONS(821), + [aux_sym_batch_mode_token1] = ACTIONS(821), + [aux_sym_bind_address_token1] = ACTIONS(821), + [aux_sym_bind_interface_token1] = ACTIONS(821), + [aux_sym_canonical_domains_token1] = ACTIONS(821), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(821), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(821), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(821), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(821), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(821), + [aux_sym_certificate_file_token1] = ACTIONS(821), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(821), + [aux_sym_channel_timeout_token1] = ACTIONS(821), + [aux_sym_check_host_ip_token1] = ACTIONS(821), + [aux_sym_ciphers_token1] = ACTIONS(821), + [aux_sym_cipher_token1] = ACTIONS(823), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(821), + [aux_sym_compression_token1] = ACTIONS(821), + [aux_sym_connection_attempts_token1] = ACTIONS(821), + [aux_sym_connect_timeout_token1] = ACTIONS(821), + [aux_sym_control_master_token1] = ACTIONS(821), + [aux_sym_control_path_token1] = ACTIONS(821), + [aux_sym_control_persist_token1] = ACTIONS(821), + [aux_sym_dynamic_forward_token1] = ACTIONS(821), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(821), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(821), + [aux_sym_escape_char_token1] = ACTIONS(821), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(821), + [aux_sym_fingerprint_hash_token1] = ACTIONS(821), + [aux_sym_fork_after_authentication_token1] = ACTIONS(821), + [aux_sym_forward_agent_token1] = ACTIONS(821), + [aux_sym_forward_x11_token1] = ACTIONS(823), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(821), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(821), + [aux_sym_gateway_ports_token1] = ACTIONS(821), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(821), + [aux_sym_gssapi_authentication_token1] = ACTIONS(821), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(821), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(821), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(821), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(821), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(821), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(821), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(821), + [aux_sym_hash_known_hosts_token1] = ACTIONS(821), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(821), + [aux_sym_hostbased_authentication_token1] = ACTIONS(821), + [aux_sym_host_key_algorithms_token1] = ACTIONS(821), + [aux_sym_host_key_alias_token1] = ACTIONS(821), + [aux_sym_hostname_token1] = ACTIONS(821), + [aux_sym_identities_only_token1] = ACTIONS(821), + [aux_sym_identity_agent_token1] = ACTIONS(821), + [aux_sym_identity_file_token1] = ACTIONS(821), + [aux_sym_ignore_unknown_token1] = ACTIONS(821), + [aux_sym_include_token1] = ACTIONS(821), + [aux_sym_ip_qos_token1] = ACTIONS(821), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(821), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(821), + [aux_sym_kex_algorithms_token1] = ACTIONS(821), + [aux_sym_known_hosts_command_token1] = ACTIONS(821), + [aux_sym_local_command_token1] = ACTIONS(821), + [aux_sym_local_forward_token1] = ACTIONS(821), + [aux_sym_log_level_token1] = ACTIONS(821), + [aux_sym_log_verbose_token1] = ACTIONS(821), + [aux_sym_macs_token1] = ACTIONS(821), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(821), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(821), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(821), + [aux_sym_password_authentication_token1] = ACTIONS(821), + [aux_sym_permit_local_command_token1] = ACTIONS(821), + [aux_sym_permit_remote_open_token1] = ACTIONS(821), + [aux_sym_pkcs11_provider_token1] = ACTIONS(821), + [aux_sym_port_token1] = ACTIONS(821), + [aux_sym_preferred_authentications_token1] = ACTIONS(821), + [aux_sym_protocol_token1] = ACTIONS(821), + [aux_sym_proxy_command_token1] = ACTIONS(821), + [aux_sym_proxy_jump_token1] = ACTIONS(821), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(821), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(821), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(821), + [aux_sym_pubkey_authentication_token1] = ACTIONS(821), + [aux_sym_rekey_limit_token1] = ACTIONS(821), + [aux_sym_remote_command_token1] = ACTIONS(821), + [aux_sym_remote_forward_token1] = ACTIONS(821), + [aux_sym_request_tty_token1] = ACTIONS(821), + [aux_sym_required_rsa_size_token1] = ACTIONS(821), + [aux_sym_revoked_host_keys_token1] = ACTIONS(821), + [aux_sym_security_key_provider_token1] = ACTIONS(821), + [aux_sym_send_env_token1] = ACTIONS(821), + [aux_sym_server_alive_count_max_token1] = ACTIONS(821), + [aux_sym_server_alive_interval_token1] = ACTIONS(821), + [aux_sym_session_type_token1] = ACTIONS(821), + [aux_sym_set_env_token1] = ACTIONS(821), + [aux_sym_stdin_null_token1] = ACTIONS(821), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(821), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(821), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(821), + [aux_sym_syslog_facility_token1] = ACTIONS(821), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(821), + [aux_sym_keep_alive_token1] = ACTIONS(821), + [aux_sym_tag_token1] = ACTIONS(821), + [aux_sym_tunnel_token1] = ACTIONS(823), + [aux_sym_tunnel_device_token1] = ACTIONS(821), + [aux_sym_update_host_keys_token1] = ACTIONS(821), + [aux_sym_use_keychain_token1] = ACTIONS(821), + [aux_sym_use_roaming_token1] = ACTIONS(821), + [aux_sym_user_token1] = ACTIONS(823), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(821), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(821), + [aux_sym_visual_host_key_token1] = ACTIONS(821), + [aux_sym_xauth_location_token1] = ACTIONS(821), }, [44] = { - [ts_builtin_sym_end] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(824), - [anon_sym_DQUOTE] = ACTIONS(826), - [aux_sym_match_token1] = ACTIONS(822), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(822), - [aux_sym_address_family_token1] = ACTIONS(822), - [aux_sym_batch_mode_token1] = ACTIONS(822), - [aux_sym_bind_address_token1] = ACTIONS(822), - [aux_sym_bind_interface_token1] = ACTIONS(822), - [aux_sym_canonical_domains_token1] = ACTIONS(822), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(822), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(822), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(822), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(822), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(822), - [aux_sym_certificate_file_token1] = ACTIONS(822), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(822), - [aux_sym_channel_timeout_token1] = ACTIONS(822), - [aux_sym_check_host_ip_token1] = ACTIONS(822), - [aux_sym_ciphers_token1] = ACTIONS(822), - [aux_sym_cipher_token1] = ACTIONS(824), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(822), - [aux_sym_compression_token1] = ACTIONS(822), - [aux_sym_connection_attempts_token1] = ACTIONS(822), - [aux_sym_connect_timeout_token1] = ACTIONS(822), - [aux_sym_control_master_token1] = ACTIONS(822), - [aux_sym_control_path_token1] = ACTIONS(822), - [aux_sym_control_persist_token1] = ACTIONS(822), - [aux_sym_dynamic_forward_token1] = ACTIONS(822), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(822), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(822), - [aux_sym_escape_char_token1] = ACTIONS(822), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(822), - [aux_sym_fingerprint_hash_token1] = ACTIONS(822), - [aux_sym_fork_after_authentication_token1] = ACTIONS(822), - [aux_sym_forward_agent_token1] = ACTIONS(822), - [aux_sym_forward_x11_token1] = ACTIONS(824), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(822), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(822), - [aux_sym_gateway_ports_token1] = ACTIONS(822), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(822), - [aux_sym_gssapi_authentication_token1] = ACTIONS(822), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(822), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(822), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(822), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(822), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(822), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(822), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(822), - [aux_sym_hash_known_hosts_token1] = ACTIONS(822), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(822), - [aux_sym_hostbased_authentication_token1] = ACTIONS(822), - [aux_sym_host_key_algorithms_token1] = ACTIONS(822), - [aux_sym_host_key_alias_token1] = ACTIONS(822), - [aux_sym_hostname_token1] = ACTIONS(822), - [aux_sym_identities_only_token1] = ACTIONS(822), - [aux_sym_identity_agent_token1] = ACTIONS(822), - [aux_sym_identity_file_token1] = ACTIONS(822), - [aux_sym_ignore_unknown_token1] = ACTIONS(822), - [aux_sym_include_token1] = ACTIONS(822), - [aux_sym_ip_qos_token1] = ACTIONS(822), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(822), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(822), - [aux_sym_kex_algorithms_token1] = ACTIONS(822), - [aux_sym_known_hosts_command_token1] = ACTIONS(822), - [aux_sym_local_command_token1] = ACTIONS(822), - [aux_sym_local_forward_token1] = ACTIONS(822), - [aux_sym_log_level_token1] = ACTIONS(822), - [aux_sym_log_verbose_token1] = ACTIONS(822), - [aux_sym_macs_token1] = ACTIONS(822), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(822), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(822), - [aux_sym_password_authentication_token1] = ACTIONS(822), - [aux_sym_permit_local_command_token1] = ACTIONS(822), - [aux_sym_permit_remote_open_token1] = ACTIONS(822), - [aux_sym_pkcs11_provider_token1] = ACTIONS(822), - [aux_sym_port_token1] = ACTIONS(822), - [aux_sym_preferred_authentications_token1] = ACTIONS(822), - [aux_sym_protocol_token1] = ACTIONS(822), - [aux_sym_proxy_command_token1] = ACTIONS(822), - [aux_sym_proxy_jump_token1] = ACTIONS(822), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(822), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(822), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(822), - [aux_sym_pubkey_authentication_token1] = ACTIONS(822), - [aux_sym_rekey_limit_token1] = ACTIONS(822), - [aux_sym_remote_command_token1] = ACTIONS(822), - [aux_sym_remote_forward_token1] = ACTIONS(822), - [aux_sym_request_tty_token1] = ACTIONS(822), - [aux_sym_required_rsa_size_token1] = ACTIONS(822), - [aux_sym_revoked_host_keys_token1] = ACTIONS(822), - [aux_sym_security_key_provider_token1] = ACTIONS(822), - [aux_sym_send_env_token1] = ACTIONS(822), - [aux_sym_server_alive_count_max_token1] = ACTIONS(822), - [aux_sym_server_alive_interval_token1] = ACTIONS(822), - [aux_sym_session_type_token1] = ACTIONS(822), - [aux_sym_set_env_token1] = ACTIONS(822), - [aux_sym_stdin_null_token1] = ACTIONS(822), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(822), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(822), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(822), - [aux_sym_syslog_facility_token1] = ACTIONS(822), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(822), - [aux_sym_keep_alive_token1] = ACTIONS(822), - [aux_sym_tag_token1] = ACTIONS(822), - [aux_sym_tunnel_token1] = ACTIONS(824), - [aux_sym_tunnel_device_token1] = ACTIONS(822), - [aux_sym_update_host_keys_token1] = ACTIONS(822), - [aux_sym_use_keychain_token1] = ACTIONS(822), - [aux_sym_use_roaming_token1] = ACTIONS(822), - [aux_sym_user_token1] = ACTIONS(824), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(822), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(822), - [aux_sym_visual_host_key_token1] = ACTIONS(822), - [aux_sym_xauth_location_token1] = ACTIONS(822), + [ts_builtin_sym_end] = ACTIONS(827), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(829), + [anon_sym_DQUOTE] = ACTIONS(831), + [aux_sym_match_token1] = ACTIONS(827), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(827), + [aux_sym_address_family_token1] = ACTIONS(827), + [aux_sym_batch_mode_token1] = ACTIONS(827), + [aux_sym_bind_address_token1] = ACTIONS(827), + [aux_sym_bind_interface_token1] = ACTIONS(827), + [aux_sym_canonical_domains_token1] = ACTIONS(827), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(827), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(827), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(827), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(827), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(827), + [aux_sym_certificate_file_token1] = ACTIONS(827), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(827), + [aux_sym_channel_timeout_token1] = ACTIONS(827), + [aux_sym_check_host_ip_token1] = ACTIONS(827), + [aux_sym_ciphers_token1] = ACTIONS(827), + [aux_sym_cipher_token1] = ACTIONS(829), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(827), + [aux_sym_compression_token1] = ACTIONS(827), + [aux_sym_connection_attempts_token1] = ACTIONS(827), + [aux_sym_connect_timeout_token1] = ACTIONS(827), + [aux_sym_control_master_token1] = ACTIONS(827), + [aux_sym_control_path_token1] = ACTIONS(827), + [aux_sym_control_persist_token1] = ACTIONS(827), + [aux_sym_dynamic_forward_token1] = ACTIONS(827), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(827), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(827), + [aux_sym_escape_char_token1] = ACTIONS(827), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(827), + [aux_sym_fingerprint_hash_token1] = ACTIONS(827), + [aux_sym_fork_after_authentication_token1] = ACTIONS(827), + [aux_sym_forward_agent_token1] = ACTIONS(827), + [aux_sym_forward_x11_token1] = ACTIONS(829), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(827), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(827), + [aux_sym_gateway_ports_token1] = ACTIONS(827), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(827), + [aux_sym_gssapi_authentication_token1] = ACTIONS(827), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(827), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(827), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(827), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(827), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(827), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(827), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(827), + [aux_sym_hash_known_hosts_token1] = ACTIONS(827), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(827), + [aux_sym_hostbased_authentication_token1] = ACTIONS(827), + [aux_sym_host_key_algorithms_token1] = ACTIONS(827), + [aux_sym_host_key_alias_token1] = ACTIONS(827), + [aux_sym_hostname_token1] = ACTIONS(827), + [aux_sym_identities_only_token1] = ACTIONS(827), + [aux_sym_identity_agent_token1] = ACTIONS(827), + [aux_sym_identity_file_token1] = ACTIONS(827), + [aux_sym_ignore_unknown_token1] = ACTIONS(827), + [aux_sym_include_token1] = ACTIONS(827), + [aux_sym_ip_qos_token1] = ACTIONS(827), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(827), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(827), + [aux_sym_kex_algorithms_token1] = ACTIONS(827), + [aux_sym_known_hosts_command_token1] = ACTIONS(827), + [aux_sym_local_command_token1] = ACTIONS(827), + [aux_sym_local_forward_token1] = ACTIONS(827), + [aux_sym_log_level_token1] = ACTIONS(827), + [aux_sym_log_verbose_token1] = ACTIONS(827), + [aux_sym_macs_token1] = ACTIONS(827), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(827), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(827), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(827), + [aux_sym_password_authentication_token1] = ACTIONS(827), + [aux_sym_permit_local_command_token1] = ACTIONS(827), + [aux_sym_permit_remote_open_token1] = ACTIONS(827), + [aux_sym_pkcs11_provider_token1] = ACTIONS(827), + [aux_sym_port_token1] = ACTIONS(827), + [aux_sym_preferred_authentications_token1] = ACTIONS(827), + [aux_sym_protocol_token1] = ACTIONS(827), + [aux_sym_proxy_command_token1] = ACTIONS(827), + [aux_sym_proxy_jump_token1] = ACTIONS(827), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(827), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(827), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(827), + [aux_sym_pubkey_authentication_token1] = ACTIONS(827), + [aux_sym_rekey_limit_token1] = ACTIONS(827), + [aux_sym_remote_command_token1] = ACTIONS(827), + [aux_sym_remote_forward_token1] = ACTIONS(827), + [aux_sym_request_tty_token1] = ACTIONS(827), + [aux_sym_required_rsa_size_token1] = ACTIONS(827), + [aux_sym_revoked_host_keys_token1] = ACTIONS(827), + [aux_sym_security_key_provider_token1] = ACTIONS(827), + [aux_sym_send_env_token1] = ACTIONS(827), + [aux_sym_server_alive_count_max_token1] = ACTIONS(827), + [aux_sym_server_alive_interval_token1] = ACTIONS(827), + [aux_sym_session_type_token1] = ACTIONS(827), + [aux_sym_set_env_token1] = ACTIONS(827), + [aux_sym_stdin_null_token1] = ACTIONS(827), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(827), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(827), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(827), + [aux_sym_syslog_facility_token1] = ACTIONS(827), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(827), + [aux_sym_keep_alive_token1] = ACTIONS(827), + [aux_sym_tag_token1] = ACTIONS(827), + [aux_sym_tunnel_token1] = ACTIONS(829), + [aux_sym_tunnel_device_token1] = ACTIONS(827), + [aux_sym_update_host_keys_token1] = ACTIONS(827), + [aux_sym_use_keychain_token1] = ACTIONS(827), + [aux_sym_use_roaming_token1] = ACTIONS(827), + [aux_sym_user_token1] = ACTIONS(829), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(827), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(827), + [aux_sym_visual_host_key_token1] = ACTIONS(827), + [aux_sym_xauth_location_token1] = ACTIONS(827), }, [45] = { - [ts_builtin_sym_end] = ACTIONS(828), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(832), - [aux_sym_match_token1] = ACTIONS(828), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(828), - [aux_sym_address_family_token1] = ACTIONS(828), - [aux_sym_batch_mode_token1] = ACTIONS(828), - [aux_sym_bind_address_token1] = ACTIONS(828), - [aux_sym_bind_interface_token1] = ACTIONS(828), - [aux_sym_canonical_domains_token1] = ACTIONS(828), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(828), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(828), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(828), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(828), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(828), - [aux_sym_certificate_file_token1] = ACTIONS(828), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(828), - [aux_sym_channel_timeout_token1] = ACTIONS(828), - [aux_sym_check_host_ip_token1] = ACTIONS(828), - [aux_sym_ciphers_token1] = ACTIONS(828), - [aux_sym_cipher_token1] = ACTIONS(830), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(828), - [aux_sym_compression_token1] = ACTIONS(828), - [aux_sym_connection_attempts_token1] = ACTIONS(828), - [aux_sym_connect_timeout_token1] = ACTIONS(828), - [aux_sym_control_master_token1] = ACTIONS(828), - [aux_sym_control_path_token1] = ACTIONS(828), - [aux_sym_control_persist_token1] = ACTIONS(828), - [aux_sym_dynamic_forward_token1] = ACTIONS(828), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(828), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(828), - [aux_sym_escape_char_token1] = ACTIONS(828), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(828), - [aux_sym_fingerprint_hash_token1] = ACTIONS(828), - [aux_sym_fork_after_authentication_token1] = ACTIONS(828), - [aux_sym_forward_agent_token1] = ACTIONS(828), - [aux_sym_forward_x11_token1] = ACTIONS(830), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(828), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(828), - [aux_sym_gateway_ports_token1] = ACTIONS(828), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(828), - [aux_sym_gssapi_authentication_token1] = ACTIONS(828), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(828), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(828), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(828), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(828), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(828), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(828), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(828), - [aux_sym_hash_known_hosts_token1] = ACTIONS(828), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(828), - [aux_sym_hostbased_authentication_token1] = ACTIONS(828), - [aux_sym_host_key_algorithms_token1] = ACTIONS(828), - [aux_sym_host_key_alias_token1] = ACTIONS(828), - [aux_sym_hostname_token1] = ACTIONS(828), - [aux_sym_identities_only_token1] = ACTIONS(828), - [aux_sym_identity_agent_token1] = ACTIONS(828), - [aux_sym_identity_file_token1] = ACTIONS(828), - [aux_sym_ignore_unknown_token1] = ACTIONS(828), - [aux_sym_include_token1] = ACTIONS(828), - [aux_sym_ip_qos_token1] = ACTIONS(828), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(828), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(828), - [aux_sym_kex_algorithms_token1] = ACTIONS(828), - [aux_sym_known_hosts_command_token1] = ACTIONS(828), - [aux_sym_local_command_token1] = ACTIONS(828), - [aux_sym_local_forward_token1] = ACTIONS(828), - [aux_sym_log_level_token1] = ACTIONS(828), - [aux_sym_log_verbose_token1] = ACTIONS(828), - [aux_sym_macs_token1] = ACTIONS(828), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(828), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(828), - [aux_sym_password_authentication_token1] = ACTIONS(828), - [aux_sym_permit_local_command_token1] = ACTIONS(828), - [aux_sym_permit_remote_open_token1] = ACTIONS(828), - [aux_sym_pkcs11_provider_token1] = ACTIONS(828), - [aux_sym_port_token1] = ACTIONS(828), - [aux_sym_preferred_authentications_token1] = ACTIONS(828), - [aux_sym_protocol_token1] = ACTIONS(828), - [aux_sym_proxy_command_token1] = ACTIONS(828), - [aux_sym_proxy_jump_token1] = ACTIONS(828), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(828), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(828), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(828), - [aux_sym_pubkey_authentication_token1] = ACTIONS(828), - [aux_sym_rekey_limit_token1] = ACTIONS(828), - [aux_sym_remote_command_token1] = ACTIONS(828), - [aux_sym_remote_forward_token1] = ACTIONS(828), - [aux_sym_request_tty_token1] = ACTIONS(828), - [aux_sym_required_rsa_size_token1] = ACTIONS(828), - [aux_sym_revoked_host_keys_token1] = ACTIONS(828), - [aux_sym_security_key_provider_token1] = ACTIONS(828), - [aux_sym_send_env_token1] = ACTIONS(828), - [aux_sym_server_alive_count_max_token1] = ACTIONS(828), - [aux_sym_server_alive_interval_token1] = ACTIONS(828), - [aux_sym_session_type_token1] = ACTIONS(828), - [aux_sym_set_env_token1] = ACTIONS(828), - [aux_sym_stdin_null_token1] = ACTIONS(828), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(828), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(828), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(828), - [aux_sym_syslog_facility_token1] = ACTIONS(828), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(828), - [aux_sym_keep_alive_token1] = ACTIONS(828), - [aux_sym_tag_token1] = ACTIONS(828), - [aux_sym_tunnel_token1] = ACTIONS(830), - [aux_sym_tunnel_device_token1] = ACTIONS(828), - [aux_sym_update_host_keys_token1] = ACTIONS(828), - [aux_sym_use_keychain_token1] = ACTIONS(828), - [aux_sym_use_roaming_token1] = ACTIONS(828), - [aux_sym_user_token1] = ACTIONS(830), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(828), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(828), - [aux_sym_visual_host_key_token1] = ACTIONS(828), - [aux_sym_xauth_location_token1] = ACTIONS(828), + [ts_builtin_sym_end] = ACTIONS(833), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(835), + [anon_sym_DQUOTE] = ACTIONS(837), + [aux_sym_match_token1] = ACTIONS(833), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(833), + [aux_sym_address_family_token1] = ACTIONS(833), + [aux_sym_batch_mode_token1] = ACTIONS(833), + [aux_sym_bind_address_token1] = ACTIONS(833), + [aux_sym_bind_interface_token1] = ACTIONS(833), + [aux_sym_canonical_domains_token1] = ACTIONS(833), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(833), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(833), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(833), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(833), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(833), + [aux_sym_certificate_file_token1] = ACTIONS(833), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(833), + [aux_sym_channel_timeout_token1] = ACTIONS(833), + [aux_sym_check_host_ip_token1] = ACTIONS(833), + [aux_sym_ciphers_token1] = ACTIONS(833), + [aux_sym_cipher_token1] = ACTIONS(835), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(833), + [aux_sym_compression_token1] = ACTIONS(833), + [aux_sym_connection_attempts_token1] = ACTIONS(833), + [aux_sym_connect_timeout_token1] = ACTIONS(833), + [aux_sym_control_master_token1] = ACTIONS(833), + [aux_sym_control_path_token1] = ACTIONS(833), + [aux_sym_control_persist_token1] = ACTIONS(833), + [aux_sym_dynamic_forward_token1] = ACTIONS(833), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(833), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(833), + [aux_sym_escape_char_token1] = ACTIONS(833), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(833), + [aux_sym_fingerprint_hash_token1] = ACTIONS(833), + [aux_sym_fork_after_authentication_token1] = ACTIONS(833), + [aux_sym_forward_agent_token1] = ACTIONS(833), + [aux_sym_forward_x11_token1] = ACTIONS(835), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(833), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(833), + [aux_sym_gateway_ports_token1] = ACTIONS(833), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(833), + [aux_sym_gssapi_authentication_token1] = ACTIONS(833), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(833), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(833), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(833), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(833), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(833), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(833), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(833), + [aux_sym_hash_known_hosts_token1] = ACTIONS(833), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(833), + [aux_sym_hostbased_authentication_token1] = ACTIONS(833), + [aux_sym_host_key_algorithms_token1] = ACTIONS(833), + [aux_sym_host_key_alias_token1] = ACTIONS(833), + [aux_sym_hostname_token1] = ACTIONS(833), + [aux_sym_identities_only_token1] = ACTIONS(833), + [aux_sym_identity_agent_token1] = ACTIONS(833), + [aux_sym_identity_file_token1] = ACTIONS(833), + [aux_sym_ignore_unknown_token1] = ACTIONS(833), + [aux_sym_include_token1] = ACTIONS(833), + [aux_sym_ip_qos_token1] = ACTIONS(833), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(833), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(833), + [aux_sym_kex_algorithms_token1] = ACTIONS(833), + [aux_sym_known_hosts_command_token1] = ACTIONS(833), + [aux_sym_local_command_token1] = ACTIONS(833), + [aux_sym_local_forward_token1] = ACTIONS(833), + [aux_sym_log_level_token1] = ACTIONS(833), + [aux_sym_log_verbose_token1] = ACTIONS(833), + [aux_sym_macs_token1] = ACTIONS(833), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(833), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(833), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(833), + [aux_sym_password_authentication_token1] = ACTIONS(833), + [aux_sym_permit_local_command_token1] = ACTIONS(833), + [aux_sym_permit_remote_open_token1] = ACTIONS(833), + [aux_sym_pkcs11_provider_token1] = ACTIONS(833), + [aux_sym_port_token1] = ACTIONS(833), + [aux_sym_preferred_authentications_token1] = ACTIONS(833), + [aux_sym_protocol_token1] = ACTIONS(833), + [aux_sym_proxy_command_token1] = ACTIONS(833), + [aux_sym_proxy_jump_token1] = ACTIONS(833), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(833), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(833), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(833), + [aux_sym_pubkey_authentication_token1] = ACTIONS(833), + [aux_sym_rekey_limit_token1] = ACTIONS(833), + [aux_sym_remote_command_token1] = ACTIONS(833), + [aux_sym_remote_forward_token1] = ACTIONS(833), + [aux_sym_request_tty_token1] = ACTIONS(833), + [aux_sym_required_rsa_size_token1] = ACTIONS(833), + [aux_sym_revoked_host_keys_token1] = ACTIONS(833), + [aux_sym_security_key_provider_token1] = ACTIONS(833), + [aux_sym_send_env_token1] = ACTIONS(833), + [aux_sym_server_alive_count_max_token1] = ACTIONS(833), + [aux_sym_server_alive_interval_token1] = ACTIONS(833), + [aux_sym_session_type_token1] = ACTIONS(833), + [aux_sym_set_env_token1] = ACTIONS(833), + [aux_sym_stdin_null_token1] = ACTIONS(833), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(833), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(833), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(833), + [aux_sym_syslog_facility_token1] = ACTIONS(833), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(833), + [aux_sym_keep_alive_token1] = ACTIONS(833), + [aux_sym_tag_token1] = ACTIONS(833), + [aux_sym_tunnel_token1] = ACTIONS(835), + [aux_sym_tunnel_device_token1] = ACTIONS(833), + [aux_sym_update_host_keys_token1] = ACTIONS(833), + [aux_sym_use_keychain_token1] = ACTIONS(833), + [aux_sym_use_roaming_token1] = ACTIONS(833), + [aux_sym_user_token1] = ACTIONS(835), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(833), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(833), + [aux_sym_visual_host_key_token1] = ACTIONS(833), + [aux_sym_xauth_location_token1] = ACTIONS(833), }, [46] = { - [ts_builtin_sym_end] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(836), - [anon_sym_DQUOTE] = ACTIONS(838), - [aux_sym_match_token1] = ACTIONS(834), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(834), - [aux_sym_address_family_token1] = ACTIONS(834), - [aux_sym_batch_mode_token1] = ACTIONS(834), - [aux_sym_bind_address_token1] = ACTIONS(834), - [aux_sym_bind_interface_token1] = ACTIONS(834), - [aux_sym_canonical_domains_token1] = ACTIONS(834), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(834), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(834), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(834), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(834), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(834), - [aux_sym_certificate_file_token1] = ACTIONS(834), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(834), - [aux_sym_channel_timeout_token1] = ACTIONS(834), - [aux_sym_check_host_ip_token1] = ACTIONS(834), - [aux_sym_ciphers_token1] = ACTIONS(834), - [aux_sym_cipher_token1] = ACTIONS(836), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(834), - [aux_sym_compression_token1] = ACTIONS(834), - [aux_sym_connection_attempts_token1] = ACTIONS(834), - [aux_sym_connect_timeout_token1] = ACTIONS(834), - [aux_sym_control_master_token1] = ACTIONS(834), - [aux_sym_control_path_token1] = ACTIONS(834), - [aux_sym_control_persist_token1] = ACTIONS(834), - [aux_sym_dynamic_forward_token1] = ACTIONS(834), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(834), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(834), - [aux_sym_escape_char_token1] = ACTIONS(834), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(834), - [aux_sym_fingerprint_hash_token1] = ACTIONS(834), - [aux_sym_fork_after_authentication_token1] = ACTIONS(834), - [aux_sym_forward_agent_token1] = ACTIONS(834), - [aux_sym_forward_x11_token1] = ACTIONS(836), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(834), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(834), - [aux_sym_gateway_ports_token1] = ACTIONS(834), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(834), - [aux_sym_gssapi_authentication_token1] = ACTIONS(834), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(834), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(834), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(834), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(834), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(834), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(834), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(834), - [aux_sym_hash_known_hosts_token1] = ACTIONS(834), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(834), - [aux_sym_hostbased_authentication_token1] = ACTIONS(834), - [aux_sym_host_key_algorithms_token1] = ACTIONS(834), - [aux_sym_host_key_alias_token1] = ACTIONS(834), - [aux_sym_hostname_token1] = ACTIONS(834), - [aux_sym_identities_only_token1] = ACTIONS(834), - [aux_sym_identity_agent_token1] = ACTIONS(834), - [aux_sym_identity_file_token1] = ACTIONS(834), - [aux_sym_ignore_unknown_token1] = ACTIONS(834), - [aux_sym_include_token1] = ACTIONS(834), - [aux_sym_ip_qos_token1] = ACTIONS(834), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(834), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(834), - [aux_sym_kex_algorithms_token1] = ACTIONS(834), - [aux_sym_known_hosts_command_token1] = ACTIONS(834), - [aux_sym_local_command_token1] = ACTIONS(834), - [aux_sym_local_forward_token1] = ACTIONS(834), - [aux_sym_log_level_token1] = ACTIONS(834), - [aux_sym_log_verbose_token1] = ACTIONS(834), - [aux_sym_macs_token1] = ACTIONS(834), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(834), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(834), - [aux_sym_password_authentication_token1] = ACTIONS(834), - [aux_sym_permit_local_command_token1] = ACTIONS(834), - [aux_sym_permit_remote_open_token1] = ACTIONS(834), - [aux_sym_pkcs11_provider_token1] = ACTIONS(834), - [aux_sym_port_token1] = ACTIONS(834), - [aux_sym_preferred_authentications_token1] = ACTIONS(834), - [aux_sym_protocol_token1] = ACTIONS(834), - [aux_sym_proxy_command_token1] = ACTIONS(834), - [aux_sym_proxy_jump_token1] = ACTIONS(834), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(834), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(834), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(834), - [aux_sym_pubkey_authentication_token1] = ACTIONS(834), - [aux_sym_rekey_limit_token1] = ACTIONS(834), - [aux_sym_remote_command_token1] = ACTIONS(834), - [aux_sym_remote_forward_token1] = ACTIONS(834), - [aux_sym_request_tty_token1] = ACTIONS(834), - [aux_sym_required_rsa_size_token1] = ACTIONS(834), - [aux_sym_revoked_host_keys_token1] = ACTIONS(834), - [aux_sym_security_key_provider_token1] = ACTIONS(834), - [aux_sym_send_env_token1] = ACTIONS(834), - [aux_sym_server_alive_count_max_token1] = ACTIONS(834), - [aux_sym_server_alive_interval_token1] = ACTIONS(834), - [aux_sym_session_type_token1] = ACTIONS(834), - [aux_sym_set_env_token1] = ACTIONS(834), - [aux_sym_stdin_null_token1] = ACTIONS(834), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(834), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(834), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(834), - [aux_sym_syslog_facility_token1] = ACTIONS(834), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(834), - [aux_sym_keep_alive_token1] = ACTIONS(834), - [aux_sym_tag_token1] = ACTIONS(834), - [aux_sym_tunnel_token1] = ACTIONS(836), - [aux_sym_tunnel_device_token1] = ACTIONS(834), - [aux_sym_update_host_keys_token1] = ACTIONS(834), - [aux_sym_use_keychain_token1] = ACTIONS(834), - [aux_sym_use_roaming_token1] = ACTIONS(834), - [aux_sym_user_token1] = ACTIONS(836), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(834), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(834), - [aux_sym_visual_host_key_token1] = ACTIONS(834), - [aux_sym_xauth_location_token1] = ACTIONS(834), + [ts_builtin_sym_end] = ACTIONS(839), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(841), + [anon_sym_DQUOTE] = ACTIONS(843), + [aux_sym_match_token1] = ACTIONS(839), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(839), + [aux_sym_address_family_token1] = ACTIONS(839), + [aux_sym_batch_mode_token1] = ACTIONS(839), + [aux_sym_bind_address_token1] = ACTIONS(839), + [aux_sym_bind_interface_token1] = ACTIONS(839), + [aux_sym_canonical_domains_token1] = ACTIONS(839), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(839), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(839), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(839), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(839), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(839), + [aux_sym_certificate_file_token1] = ACTIONS(839), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(839), + [aux_sym_channel_timeout_token1] = ACTIONS(839), + [aux_sym_check_host_ip_token1] = ACTIONS(839), + [aux_sym_ciphers_token1] = ACTIONS(839), + [aux_sym_cipher_token1] = ACTIONS(841), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(839), + [aux_sym_compression_token1] = ACTIONS(839), + [aux_sym_connection_attempts_token1] = ACTIONS(839), + [aux_sym_connect_timeout_token1] = ACTIONS(839), + [aux_sym_control_master_token1] = ACTIONS(839), + [aux_sym_control_path_token1] = ACTIONS(839), + [aux_sym_control_persist_token1] = ACTIONS(839), + [aux_sym_dynamic_forward_token1] = ACTIONS(839), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(839), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(839), + [aux_sym_escape_char_token1] = ACTIONS(839), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(839), + [aux_sym_fingerprint_hash_token1] = ACTIONS(839), + [aux_sym_fork_after_authentication_token1] = ACTIONS(839), + [aux_sym_forward_agent_token1] = ACTIONS(839), + [aux_sym_forward_x11_token1] = ACTIONS(841), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(839), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(839), + [aux_sym_gateway_ports_token1] = ACTIONS(839), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(839), + [aux_sym_gssapi_authentication_token1] = ACTIONS(839), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(839), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(839), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(839), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(839), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(839), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(839), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(839), + [aux_sym_hash_known_hosts_token1] = ACTIONS(839), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(839), + [aux_sym_hostbased_authentication_token1] = ACTIONS(839), + [aux_sym_host_key_algorithms_token1] = ACTIONS(839), + [aux_sym_host_key_alias_token1] = ACTIONS(839), + [aux_sym_hostname_token1] = ACTIONS(839), + [aux_sym_identities_only_token1] = ACTIONS(839), + [aux_sym_identity_agent_token1] = ACTIONS(839), + [aux_sym_identity_file_token1] = ACTIONS(839), + [aux_sym_ignore_unknown_token1] = ACTIONS(839), + [aux_sym_include_token1] = ACTIONS(839), + [aux_sym_ip_qos_token1] = ACTIONS(839), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(839), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(839), + [aux_sym_kex_algorithms_token1] = ACTIONS(839), + [aux_sym_known_hosts_command_token1] = ACTIONS(839), + [aux_sym_local_command_token1] = ACTIONS(839), + [aux_sym_local_forward_token1] = ACTIONS(839), + [aux_sym_log_level_token1] = ACTIONS(839), + [aux_sym_log_verbose_token1] = ACTIONS(839), + [aux_sym_macs_token1] = ACTIONS(839), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(839), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(839), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(839), + [aux_sym_password_authentication_token1] = ACTIONS(839), + [aux_sym_permit_local_command_token1] = ACTIONS(839), + [aux_sym_permit_remote_open_token1] = ACTIONS(839), + [aux_sym_pkcs11_provider_token1] = ACTIONS(839), + [aux_sym_port_token1] = ACTIONS(839), + [aux_sym_preferred_authentications_token1] = ACTIONS(839), + [aux_sym_protocol_token1] = ACTIONS(839), + [aux_sym_proxy_command_token1] = ACTIONS(839), + [aux_sym_proxy_jump_token1] = ACTIONS(839), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(839), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(839), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(839), + [aux_sym_pubkey_authentication_token1] = ACTIONS(839), + [aux_sym_rekey_limit_token1] = ACTIONS(839), + [aux_sym_remote_command_token1] = ACTIONS(839), + [aux_sym_remote_forward_token1] = ACTIONS(839), + [aux_sym_request_tty_token1] = ACTIONS(839), + [aux_sym_required_rsa_size_token1] = ACTIONS(839), + [aux_sym_revoked_host_keys_token1] = ACTIONS(839), + [aux_sym_security_key_provider_token1] = ACTIONS(839), + [aux_sym_send_env_token1] = ACTIONS(839), + [aux_sym_server_alive_count_max_token1] = ACTIONS(839), + [aux_sym_server_alive_interval_token1] = ACTIONS(839), + [aux_sym_session_type_token1] = ACTIONS(839), + [aux_sym_set_env_token1] = ACTIONS(839), + [aux_sym_stdin_null_token1] = ACTIONS(839), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(839), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(839), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(839), + [aux_sym_syslog_facility_token1] = ACTIONS(839), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(839), + [aux_sym_keep_alive_token1] = ACTIONS(839), + [aux_sym_tag_token1] = ACTIONS(839), + [aux_sym_tunnel_token1] = ACTIONS(841), + [aux_sym_tunnel_device_token1] = ACTIONS(839), + [aux_sym_update_host_keys_token1] = ACTIONS(839), + [aux_sym_use_keychain_token1] = ACTIONS(839), + [aux_sym_use_roaming_token1] = ACTIONS(839), + [aux_sym_user_token1] = ACTIONS(841), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(839), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(839), + [aux_sym_visual_host_key_token1] = ACTIONS(839), + [aux_sym_xauth_location_token1] = ACTIONS(839), }, [47] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(842), - [anon_sym_DQUOTE] = ACTIONS(844), - [aux_sym_match_token1] = ACTIONS(840), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(840), - [aux_sym_address_family_token1] = ACTIONS(840), - [aux_sym_batch_mode_token1] = ACTIONS(840), - [aux_sym_bind_address_token1] = ACTIONS(840), - [aux_sym_bind_interface_token1] = ACTIONS(840), - [aux_sym_canonical_domains_token1] = ACTIONS(840), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(840), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(840), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(840), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(840), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(840), - [aux_sym_certificate_file_token1] = ACTIONS(840), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(840), - [aux_sym_channel_timeout_token1] = ACTIONS(840), - [aux_sym_check_host_ip_token1] = ACTIONS(840), - [aux_sym_ciphers_token1] = ACTIONS(840), - [aux_sym_cipher_token1] = ACTIONS(842), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(840), - [aux_sym_compression_token1] = ACTIONS(840), - [aux_sym_connection_attempts_token1] = ACTIONS(840), - [aux_sym_connect_timeout_token1] = ACTIONS(840), - [aux_sym_control_master_token1] = ACTIONS(840), - [aux_sym_control_path_token1] = ACTIONS(840), - [aux_sym_control_persist_token1] = ACTIONS(840), - [aux_sym_dynamic_forward_token1] = ACTIONS(840), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(840), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(840), - [aux_sym_escape_char_token1] = ACTIONS(840), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(840), - [aux_sym_fingerprint_hash_token1] = ACTIONS(840), - [aux_sym_fork_after_authentication_token1] = ACTIONS(840), - [aux_sym_forward_agent_token1] = ACTIONS(840), - [aux_sym_forward_x11_token1] = ACTIONS(842), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(840), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(840), - [aux_sym_gateway_ports_token1] = ACTIONS(840), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(840), - [aux_sym_gssapi_authentication_token1] = ACTIONS(840), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(840), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(840), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(840), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(840), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(840), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(840), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(840), - [aux_sym_hash_known_hosts_token1] = ACTIONS(840), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(840), - [aux_sym_hostbased_authentication_token1] = ACTIONS(840), - [aux_sym_host_key_algorithms_token1] = ACTIONS(840), - [aux_sym_host_key_alias_token1] = ACTIONS(840), - [aux_sym_hostname_token1] = ACTIONS(840), - [aux_sym_identities_only_token1] = ACTIONS(840), - [aux_sym_identity_agent_token1] = ACTIONS(840), - [aux_sym_identity_file_token1] = ACTIONS(840), - [aux_sym_ignore_unknown_token1] = ACTIONS(840), - [aux_sym_include_token1] = ACTIONS(840), - [aux_sym_ip_qos_token1] = ACTIONS(840), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(840), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(840), - [aux_sym_kex_algorithms_token1] = ACTIONS(840), - [aux_sym_known_hosts_command_token1] = ACTIONS(840), - [aux_sym_local_command_token1] = ACTIONS(840), - [aux_sym_local_forward_token1] = ACTIONS(840), - [aux_sym_log_level_token1] = ACTIONS(840), - [aux_sym_log_verbose_token1] = ACTIONS(840), - [aux_sym_macs_token1] = ACTIONS(840), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(840), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(840), - [aux_sym_password_authentication_token1] = ACTIONS(840), - [aux_sym_permit_local_command_token1] = ACTIONS(840), - [aux_sym_permit_remote_open_token1] = ACTIONS(840), - [aux_sym_pkcs11_provider_token1] = ACTIONS(840), - [aux_sym_port_token1] = ACTIONS(840), - [aux_sym_preferred_authentications_token1] = ACTIONS(840), - [aux_sym_protocol_token1] = ACTIONS(840), - [aux_sym_proxy_command_token1] = ACTIONS(840), - [aux_sym_proxy_jump_token1] = ACTIONS(840), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(840), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(840), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(840), - [aux_sym_pubkey_authentication_token1] = ACTIONS(840), - [aux_sym_rekey_limit_token1] = ACTIONS(840), - [aux_sym_remote_command_token1] = ACTIONS(840), - [aux_sym_remote_forward_token1] = ACTIONS(840), - [aux_sym_request_tty_token1] = ACTIONS(840), - [aux_sym_required_rsa_size_token1] = ACTIONS(840), - [aux_sym_revoked_host_keys_token1] = ACTIONS(840), - [aux_sym_security_key_provider_token1] = ACTIONS(840), - [aux_sym_send_env_token1] = ACTIONS(840), - [aux_sym_server_alive_count_max_token1] = ACTIONS(840), - [aux_sym_server_alive_interval_token1] = ACTIONS(840), - [aux_sym_session_type_token1] = ACTIONS(840), - [aux_sym_set_env_token1] = ACTIONS(840), - [aux_sym_stdin_null_token1] = ACTIONS(840), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(840), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(840), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(840), - [aux_sym_syslog_facility_token1] = ACTIONS(840), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(840), - [aux_sym_keep_alive_token1] = ACTIONS(840), - [aux_sym_tag_token1] = ACTIONS(840), - [aux_sym_tunnel_token1] = ACTIONS(842), - [aux_sym_tunnel_device_token1] = ACTIONS(840), - [aux_sym_update_host_keys_token1] = ACTIONS(840), - [aux_sym_use_keychain_token1] = ACTIONS(840), - [aux_sym_use_roaming_token1] = ACTIONS(840), - [aux_sym_user_token1] = ACTIONS(842), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(840), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(840), - [aux_sym_visual_host_key_token1] = ACTIONS(840), - [aux_sym_xauth_location_token1] = ACTIONS(840), + [ts_builtin_sym_end] = ACTIONS(845), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(847), + [anon_sym_DQUOTE] = ACTIONS(849), + [aux_sym_match_token1] = ACTIONS(845), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(845), + [aux_sym_address_family_token1] = ACTIONS(845), + [aux_sym_batch_mode_token1] = ACTIONS(845), + [aux_sym_bind_address_token1] = ACTIONS(845), + [aux_sym_bind_interface_token1] = ACTIONS(845), + [aux_sym_canonical_domains_token1] = ACTIONS(845), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(845), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(845), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(845), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(845), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(845), + [aux_sym_certificate_file_token1] = ACTIONS(845), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(845), + [aux_sym_channel_timeout_token1] = ACTIONS(845), + [aux_sym_check_host_ip_token1] = ACTIONS(845), + [aux_sym_ciphers_token1] = ACTIONS(845), + [aux_sym_cipher_token1] = ACTIONS(847), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(845), + [aux_sym_compression_token1] = ACTIONS(845), + [aux_sym_connection_attempts_token1] = ACTIONS(845), + [aux_sym_connect_timeout_token1] = ACTIONS(845), + [aux_sym_control_master_token1] = ACTIONS(845), + [aux_sym_control_path_token1] = ACTIONS(845), + [aux_sym_control_persist_token1] = ACTIONS(845), + [aux_sym_dynamic_forward_token1] = ACTIONS(845), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(845), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(845), + [aux_sym_escape_char_token1] = ACTIONS(845), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(845), + [aux_sym_fingerprint_hash_token1] = ACTIONS(845), + [aux_sym_fork_after_authentication_token1] = ACTIONS(845), + [aux_sym_forward_agent_token1] = ACTIONS(845), + [aux_sym_forward_x11_token1] = ACTIONS(847), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(845), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(845), + [aux_sym_gateway_ports_token1] = ACTIONS(845), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(845), + [aux_sym_gssapi_authentication_token1] = ACTIONS(845), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(845), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(845), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(845), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(845), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(845), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(845), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(845), + [aux_sym_hash_known_hosts_token1] = ACTIONS(845), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(845), + [aux_sym_hostbased_authentication_token1] = ACTIONS(845), + [aux_sym_host_key_algorithms_token1] = ACTIONS(845), + [aux_sym_host_key_alias_token1] = ACTIONS(845), + [aux_sym_hostname_token1] = ACTIONS(845), + [aux_sym_identities_only_token1] = ACTIONS(845), + [aux_sym_identity_agent_token1] = ACTIONS(845), + [aux_sym_identity_file_token1] = ACTIONS(845), + [aux_sym_ignore_unknown_token1] = ACTIONS(845), + [aux_sym_include_token1] = ACTIONS(845), + [aux_sym_ip_qos_token1] = ACTIONS(845), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(845), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(845), + [aux_sym_kex_algorithms_token1] = ACTIONS(845), + [aux_sym_known_hosts_command_token1] = ACTIONS(845), + [aux_sym_local_command_token1] = ACTIONS(845), + [aux_sym_local_forward_token1] = ACTIONS(845), + [aux_sym_log_level_token1] = ACTIONS(845), + [aux_sym_log_verbose_token1] = ACTIONS(845), + [aux_sym_macs_token1] = ACTIONS(845), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(845), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(845), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(845), + [aux_sym_password_authentication_token1] = ACTIONS(845), + [aux_sym_permit_local_command_token1] = ACTIONS(845), + [aux_sym_permit_remote_open_token1] = ACTIONS(845), + [aux_sym_pkcs11_provider_token1] = ACTIONS(845), + [aux_sym_port_token1] = ACTIONS(845), + [aux_sym_preferred_authentications_token1] = ACTIONS(845), + [aux_sym_protocol_token1] = ACTIONS(845), + [aux_sym_proxy_command_token1] = ACTIONS(845), + [aux_sym_proxy_jump_token1] = ACTIONS(845), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(845), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(845), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(845), + [aux_sym_pubkey_authentication_token1] = ACTIONS(845), + [aux_sym_rekey_limit_token1] = ACTIONS(845), + [aux_sym_remote_command_token1] = ACTIONS(845), + [aux_sym_remote_forward_token1] = ACTIONS(845), + [aux_sym_request_tty_token1] = ACTIONS(845), + [aux_sym_required_rsa_size_token1] = ACTIONS(845), + [aux_sym_revoked_host_keys_token1] = ACTIONS(845), + [aux_sym_security_key_provider_token1] = ACTIONS(845), + [aux_sym_send_env_token1] = ACTIONS(845), + [aux_sym_server_alive_count_max_token1] = ACTIONS(845), + [aux_sym_server_alive_interval_token1] = ACTIONS(845), + [aux_sym_session_type_token1] = ACTIONS(845), + [aux_sym_set_env_token1] = ACTIONS(845), + [aux_sym_stdin_null_token1] = ACTIONS(845), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(845), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(845), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(845), + [aux_sym_syslog_facility_token1] = ACTIONS(845), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(845), + [aux_sym_keep_alive_token1] = ACTIONS(845), + [aux_sym_tag_token1] = ACTIONS(845), + [aux_sym_tunnel_token1] = ACTIONS(847), + [aux_sym_tunnel_device_token1] = ACTIONS(845), + [aux_sym_update_host_keys_token1] = ACTIONS(845), + [aux_sym_use_keychain_token1] = ACTIONS(845), + [aux_sym_use_roaming_token1] = ACTIONS(845), + [aux_sym_user_token1] = ACTIONS(847), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(845), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(845), + [aux_sym_visual_host_key_token1] = ACTIONS(845), + [aux_sym_xauth_location_token1] = ACTIONS(845), }, [48] = { - [ts_builtin_sym_end] = ACTIONS(846), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(848), - [anon_sym_DQUOTE] = ACTIONS(850), - [aux_sym_match_token1] = ACTIONS(846), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(846), - [aux_sym_address_family_token1] = ACTIONS(846), - [aux_sym_batch_mode_token1] = ACTIONS(846), - [aux_sym_bind_address_token1] = ACTIONS(846), - [aux_sym_bind_interface_token1] = ACTIONS(846), - [aux_sym_canonical_domains_token1] = ACTIONS(846), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(846), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(846), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(846), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(846), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(846), - [aux_sym_certificate_file_token1] = ACTIONS(846), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(846), - [aux_sym_channel_timeout_token1] = ACTIONS(846), - [aux_sym_check_host_ip_token1] = ACTIONS(846), - [aux_sym_ciphers_token1] = ACTIONS(846), - [aux_sym_cipher_token1] = ACTIONS(848), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(846), - [aux_sym_compression_token1] = ACTIONS(846), - [aux_sym_connection_attempts_token1] = ACTIONS(846), - [aux_sym_connect_timeout_token1] = ACTIONS(846), - [aux_sym_control_master_token1] = ACTIONS(846), - [aux_sym_control_path_token1] = ACTIONS(846), - [aux_sym_control_persist_token1] = ACTIONS(846), - [aux_sym_dynamic_forward_token1] = ACTIONS(846), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(846), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(846), - [aux_sym_escape_char_token1] = ACTIONS(846), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(846), - [aux_sym_fingerprint_hash_token1] = ACTIONS(846), - [aux_sym_fork_after_authentication_token1] = ACTIONS(846), - [aux_sym_forward_agent_token1] = ACTIONS(846), - [aux_sym_forward_x11_token1] = ACTIONS(848), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(846), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(846), - [aux_sym_gateway_ports_token1] = ACTIONS(846), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(846), - [aux_sym_gssapi_authentication_token1] = ACTIONS(846), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(846), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(846), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(846), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(846), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(846), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(846), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(846), - [aux_sym_hash_known_hosts_token1] = ACTIONS(846), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(846), - [aux_sym_hostbased_authentication_token1] = ACTIONS(846), - [aux_sym_host_key_algorithms_token1] = ACTIONS(846), - [aux_sym_host_key_alias_token1] = ACTIONS(846), - [aux_sym_hostname_token1] = ACTIONS(846), - [aux_sym_identities_only_token1] = ACTIONS(846), - [aux_sym_identity_agent_token1] = ACTIONS(846), - [aux_sym_identity_file_token1] = ACTIONS(846), - [aux_sym_ignore_unknown_token1] = ACTIONS(846), - [aux_sym_include_token1] = ACTIONS(846), - [aux_sym_ip_qos_token1] = ACTIONS(846), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(846), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(846), - [aux_sym_kex_algorithms_token1] = ACTIONS(846), - [aux_sym_known_hosts_command_token1] = ACTIONS(846), - [aux_sym_local_command_token1] = ACTIONS(846), - [aux_sym_local_forward_token1] = ACTIONS(846), - [aux_sym_log_level_token1] = ACTIONS(846), - [aux_sym_log_verbose_token1] = ACTIONS(846), - [aux_sym_macs_token1] = ACTIONS(846), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(846), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(846), - [aux_sym_password_authentication_token1] = ACTIONS(846), - [aux_sym_permit_local_command_token1] = ACTIONS(846), - [aux_sym_permit_remote_open_token1] = ACTIONS(846), - [aux_sym_pkcs11_provider_token1] = ACTIONS(846), - [aux_sym_port_token1] = ACTIONS(846), - [aux_sym_preferred_authentications_token1] = ACTIONS(846), - [aux_sym_protocol_token1] = ACTIONS(846), - [aux_sym_proxy_command_token1] = ACTIONS(846), - [aux_sym_proxy_jump_token1] = ACTIONS(846), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(846), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(846), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(846), - [aux_sym_pubkey_authentication_token1] = ACTIONS(846), - [aux_sym_rekey_limit_token1] = ACTIONS(846), - [aux_sym_remote_command_token1] = ACTIONS(846), - [aux_sym_remote_forward_token1] = ACTIONS(846), - [aux_sym_request_tty_token1] = ACTIONS(846), - [aux_sym_required_rsa_size_token1] = ACTIONS(846), - [aux_sym_revoked_host_keys_token1] = ACTIONS(846), - [aux_sym_security_key_provider_token1] = ACTIONS(846), - [aux_sym_send_env_token1] = ACTIONS(846), - [aux_sym_server_alive_count_max_token1] = ACTIONS(846), - [aux_sym_server_alive_interval_token1] = ACTIONS(846), - [aux_sym_session_type_token1] = ACTIONS(846), - [aux_sym_set_env_token1] = ACTIONS(846), - [aux_sym_stdin_null_token1] = ACTIONS(846), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(846), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(846), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(846), - [aux_sym_syslog_facility_token1] = ACTIONS(846), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(846), - [aux_sym_keep_alive_token1] = ACTIONS(846), - [aux_sym_tag_token1] = ACTIONS(846), - [aux_sym_tunnel_token1] = ACTIONS(848), - [aux_sym_tunnel_device_token1] = ACTIONS(846), - [aux_sym_update_host_keys_token1] = ACTIONS(846), - [aux_sym_use_keychain_token1] = ACTIONS(846), - [aux_sym_use_roaming_token1] = ACTIONS(846), - [aux_sym_user_token1] = ACTIONS(848), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(846), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(846), - [aux_sym_visual_host_key_token1] = ACTIONS(846), - [aux_sym_xauth_location_token1] = ACTIONS(846), + [ts_builtin_sym_end] = ACTIONS(851), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(853), + [anon_sym_DQUOTE] = ACTIONS(855), + [aux_sym_match_token1] = ACTIONS(851), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(851), + [aux_sym_address_family_token1] = ACTIONS(851), + [aux_sym_batch_mode_token1] = ACTIONS(851), + [aux_sym_bind_address_token1] = ACTIONS(851), + [aux_sym_bind_interface_token1] = ACTIONS(851), + [aux_sym_canonical_domains_token1] = ACTIONS(851), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(851), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(851), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(851), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(851), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(851), + [aux_sym_certificate_file_token1] = ACTIONS(851), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(851), + [aux_sym_channel_timeout_token1] = ACTIONS(851), + [aux_sym_check_host_ip_token1] = ACTIONS(851), + [aux_sym_ciphers_token1] = ACTIONS(851), + [aux_sym_cipher_token1] = ACTIONS(853), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(851), + [aux_sym_compression_token1] = ACTIONS(851), + [aux_sym_connection_attempts_token1] = ACTIONS(851), + [aux_sym_connect_timeout_token1] = ACTIONS(851), + [aux_sym_control_master_token1] = ACTIONS(851), + [aux_sym_control_path_token1] = ACTIONS(851), + [aux_sym_control_persist_token1] = ACTIONS(851), + [aux_sym_dynamic_forward_token1] = ACTIONS(851), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(851), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(851), + [aux_sym_escape_char_token1] = ACTIONS(851), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(851), + [aux_sym_fingerprint_hash_token1] = ACTIONS(851), + [aux_sym_fork_after_authentication_token1] = ACTIONS(851), + [aux_sym_forward_agent_token1] = ACTIONS(851), + [aux_sym_forward_x11_token1] = ACTIONS(853), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(851), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(851), + [aux_sym_gateway_ports_token1] = ACTIONS(851), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(851), + [aux_sym_gssapi_authentication_token1] = ACTIONS(851), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(851), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(851), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(851), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(851), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(851), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(851), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(851), + [aux_sym_hash_known_hosts_token1] = ACTIONS(851), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(851), + [aux_sym_hostbased_authentication_token1] = ACTIONS(851), + [aux_sym_host_key_algorithms_token1] = ACTIONS(851), + [aux_sym_host_key_alias_token1] = ACTIONS(851), + [aux_sym_hostname_token1] = ACTIONS(851), + [aux_sym_identities_only_token1] = ACTIONS(851), + [aux_sym_identity_agent_token1] = ACTIONS(851), + [aux_sym_identity_file_token1] = ACTIONS(851), + [aux_sym_ignore_unknown_token1] = ACTIONS(851), + [aux_sym_include_token1] = ACTIONS(851), + [aux_sym_ip_qos_token1] = ACTIONS(851), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(851), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(851), + [aux_sym_kex_algorithms_token1] = ACTIONS(851), + [aux_sym_known_hosts_command_token1] = ACTIONS(851), + [aux_sym_local_command_token1] = ACTIONS(851), + [aux_sym_local_forward_token1] = ACTIONS(851), + [aux_sym_log_level_token1] = ACTIONS(851), + [aux_sym_log_verbose_token1] = ACTIONS(851), + [aux_sym_macs_token1] = ACTIONS(851), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(851), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(851), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(851), + [aux_sym_password_authentication_token1] = ACTIONS(851), + [aux_sym_permit_local_command_token1] = ACTIONS(851), + [aux_sym_permit_remote_open_token1] = ACTIONS(851), + [aux_sym_pkcs11_provider_token1] = ACTIONS(851), + [aux_sym_port_token1] = ACTIONS(851), + [aux_sym_preferred_authentications_token1] = ACTIONS(851), + [aux_sym_protocol_token1] = ACTIONS(851), + [aux_sym_proxy_command_token1] = ACTIONS(851), + [aux_sym_proxy_jump_token1] = ACTIONS(851), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(851), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(851), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(851), + [aux_sym_pubkey_authentication_token1] = ACTIONS(851), + [aux_sym_rekey_limit_token1] = ACTIONS(851), + [aux_sym_remote_command_token1] = ACTIONS(851), + [aux_sym_remote_forward_token1] = ACTIONS(851), + [aux_sym_request_tty_token1] = ACTIONS(851), + [aux_sym_required_rsa_size_token1] = ACTIONS(851), + [aux_sym_revoked_host_keys_token1] = ACTIONS(851), + [aux_sym_security_key_provider_token1] = ACTIONS(851), + [aux_sym_send_env_token1] = ACTIONS(851), + [aux_sym_server_alive_count_max_token1] = ACTIONS(851), + [aux_sym_server_alive_interval_token1] = ACTIONS(851), + [aux_sym_session_type_token1] = ACTIONS(851), + [aux_sym_set_env_token1] = ACTIONS(851), + [aux_sym_stdin_null_token1] = ACTIONS(851), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(851), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(851), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(851), + [aux_sym_syslog_facility_token1] = ACTIONS(851), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(851), + [aux_sym_keep_alive_token1] = ACTIONS(851), + [aux_sym_tag_token1] = ACTIONS(851), + [aux_sym_tunnel_token1] = ACTIONS(853), + [aux_sym_tunnel_device_token1] = ACTIONS(851), + [aux_sym_update_host_keys_token1] = ACTIONS(851), + [aux_sym_use_keychain_token1] = ACTIONS(851), + [aux_sym_use_roaming_token1] = ACTIONS(851), + [aux_sym_user_token1] = ACTIONS(853), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(851), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(851), + [aux_sym_visual_host_key_token1] = ACTIONS(851), + [aux_sym_xauth_location_token1] = ACTIONS(851), }, [49] = { - [ts_builtin_sym_end] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(854), - [anon_sym_DQUOTE] = ACTIONS(856), - [aux_sym_match_token1] = ACTIONS(852), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(852), - [aux_sym_address_family_token1] = ACTIONS(852), - [aux_sym_batch_mode_token1] = ACTIONS(852), - [aux_sym_bind_address_token1] = ACTIONS(852), - [aux_sym_bind_interface_token1] = ACTIONS(852), - [aux_sym_canonical_domains_token1] = ACTIONS(852), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(852), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(852), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(852), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(852), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(852), - [aux_sym_certificate_file_token1] = ACTIONS(852), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(852), - [aux_sym_channel_timeout_token1] = ACTIONS(852), - [aux_sym_check_host_ip_token1] = ACTIONS(852), - [aux_sym_ciphers_token1] = ACTIONS(852), - [aux_sym_cipher_token1] = ACTIONS(854), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(852), - [aux_sym_compression_token1] = ACTIONS(852), - [aux_sym_connection_attempts_token1] = ACTIONS(852), - [aux_sym_connect_timeout_token1] = ACTIONS(852), - [aux_sym_control_master_token1] = ACTIONS(852), - [aux_sym_control_path_token1] = ACTIONS(852), - [aux_sym_control_persist_token1] = ACTIONS(852), - [aux_sym_dynamic_forward_token1] = ACTIONS(852), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(852), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(852), - [aux_sym_escape_char_token1] = ACTIONS(852), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(852), - [aux_sym_fingerprint_hash_token1] = ACTIONS(852), - [aux_sym_fork_after_authentication_token1] = ACTIONS(852), - [aux_sym_forward_agent_token1] = ACTIONS(852), - [aux_sym_forward_x11_token1] = ACTIONS(854), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(852), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(852), - [aux_sym_gateway_ports_token1] = ACTIONS(852), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(852), - [aux_sym_gssapi_authentication_token1] = ACTIONS(852), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(852), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(852), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(852), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(852), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(852), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(852), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(852), - [aux_sym_hash_known_hosts_token1] = ACTIONS(852), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(852), - [aux_sym_hostbased_authentication_token1] = ACTIONS(852), - [aux_sym_host_key_algorithms_token1] = ACTIONS(852), - [aux_sym_host_key_alias_token1] = ACTIONS(852), - [aux_sym_hostname_token1] = ACTIONS(852), - [aux_sym_identities_only_token1] = ACTIONS(852), - [aux_sym_identity_agent_token1] = ACTIONS(852), - [aux_sym_identity_file_token1] = ACTIONS(852), - [aux_sym_ignore_unknown_token1] = ACTIONS(852), - [aux_sym_include_token1] = ACTIONS(852), - [aux_sym_ip_qos_token1] = ACTIONS(852), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(852), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(852), - [aux_sym_kex_algorithms_token1] = ACTIONS(852), - [aux_sym_known_hosts_command_token1] = ACTIONS(852), - [aux_sym_local_command_token1] = ACTIONS(852), - [aux_sym_local_forward_token1] = ACTIONS(852), - [aux_sym_log_level_token1] = ACTIONS(852), - [aux_sym_log_verbose_token1] = ACTIONS(852), - [aux_sym_macs_token1] = ACTIONS(852), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(852), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(852), - [aux_sym_password_authentication_token1] = ACTIONS(852), - [aux_sym_permit_local_command_token1] = ACTIONS(852), - [aux_sym_permit_remote_open_token1] = ACTIONS(852), - [aux_sym_pkcs11_provider_token1] = ACTIONS(852), - [aux_sym_port_token1] = ACTIONS(852), - [aux_sym_preferred_authentications_token1] = ACTIONS(852), - [aux_sym_protocol_token1] = ACTIONS(852), - [aux_sym_proxy_command_token1] = ACTIONS(852), - [aux_sym_proxy_jump_token1] = ACTIONS(852), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(852), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(852), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(852), - [aux_sym_pubkey_authentication_token1] = ACTIONS(852), - [aux_sym_rekey_limit_token1] = ACTIONS(852), - [aux_sym_remote_command_token1] = ACTIONS(852), - [aux_sym_remote_forward_token1] = ACTIONS(852), - [aux_sym_request_tty_token1] = ACTIONS(852), - [aux_sym_required_rsa_size_token1] = ACTIONS(852), - [aux_sym_revoked_host_keys_token1] = ACTIONS(852), - [aux_sym_security_key_provider_token1] = ACTIONS(852), - [aux_sym_send_env_token1] = ACTIONS(852), - [aux_sym_server_alive_count_max_token1] = ACTIONS(852), - [aux_sym_server_alive_interval_token1] = ACTIONS(852), - [aux_sym_session_type_token1] = ACTIONS(852), - [aux_sym_set_env_token1] = ACTIONS(852), - [aux_sym_stdin_null_token1] = ACTIONS(852), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(852), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(852), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(852), - [aux_sym_syslog_facility_token1] = ACTIONS(852), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(852), - [aux_sym_keep_alive_token1] = ACTIONS(852), - [aux_sym_tag_token1] = ACTIONS(852), - [aux_sym_tunnel_token1] = ACTIONS(854), - [aux_sym_tunnel_device_token1] = ACTIONS(852), - [aux_sym_update_host_keys_token1] = ACTIONS(852), - [aux_sym_use_keychain_token1] = ACTIONS(852), - [aux_sym_use_roaming_token1] = ACTIONS(852), - [aux_sym_user_token1] = ACTIONS(854), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(852), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(852), - [aux_sym_visual_host_key_token1] = ACTIONS(852), - [aux_sym_xauth_location_token1] = ACTIONS(852), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(859), + [anon_sym_DQUOTE] = ACTIONS(861), + [aux_sym_match_token1] = ACTIONS(857), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(857), + [aux_sym_address_family_token1] = ACTIONS(857), + [aux_sym_batch_mode_token1] = ACTIONS(857), + [aux_sym_bind_address_token1] = ACTIONS(857), + [aux_sym_bind_interface_token1] = ACTIONS(857), + [aux_sym_canonical_domains_token1] = ACTIONS(857), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(857), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(857), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(857), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(857), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(857), + [aux_sym_certificate_file_token1] = ACTIONS(857), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(857), + [aux_sym_channel_timeout_token1] = ACTIONS(857), + [aux_sym_check_host_ip_token1] = ACTIONS(857), + [aux_sym_ciphers_token1] = ACTIONS(857), + [aux_sym_cipher_token1] = ACTIONS(859), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(857), + [aux_sym_compression_token1] = ACTIONS(857), + [aux_sym_connection_attempts_token1] = ACTIONS(857), + [aux_sym_connect_timeout_token1] = ACTIONS(857), + [aux_sym_control_master_token1] = ACTIONS(857), + [aux_sym_control_path_token1] = ACTIONS(857), + [aux_sym_control_persist_token1] = ACTIONS(857), + [aux_sym_dynamic_forward_token1] = ACTIONS(857), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(857), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(857), + [aux_sym_escape_char_token1] = ACTIONS(857), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(857), + [aux_sym_fingerprint_hash_token1] = ACTIONS(857), + [aux_sym_fork_after_authentication_token1] = ACTIONS(857), + [aux_sym_forward_agent_token1] = ACTIONS(857), + [aux_sym_forward_x11_token1] = ACTIONS(859), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(857), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(857), + [aux_sym_gateway_ports_token1] = ACTIONS(857), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(857), + [aux_sym_gssapi_authentication_token1] = ACTIONS(857), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(857), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(857), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(857), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(857), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(857), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(857), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(857), + [aux_sym_hash_known_hosts_token1] = ACTIONS(857), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(857), + [aux_sym_hostbased_authentication_token1] = ACTIONS(857), + [aux_sym_host_key_algorithms_token1] = ACTIONS(857), + [aux_sym_host_key_alias_token1] = ACTIONS(857), + [aux_sym_hostname_token1] = ACTIONS(857), + [aux_sym_identities_only_token1] = ACTIONS(857), + [aux_sym_identity_agent_token1] = ACTIONS(857), + [aux_sym_identity_file_token1] = ACTIONS(857), + [aux_sym_ignore_unknown_token1] = ACTIONS(857), + [aux_sym_include_token1] = ACTIONS(857), + [aux_sym_ip_qos_token1] = ACTIONS(857), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(857), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(857), + [aux_sym_kex_algorithms_token1] = ACTIONS(857), + [aux_sym_known_hosts_command_token1] = ACTIONS(857), + [aux_sym_local_command_token1] = ACTIONS(857), + [aux_sym_local_forward_token1] = ACTIONS(857), + [aux_sym_log_level_token1] = ACTIONS(857), + [aux_sym_log_verbose_token1] = ACTIONS(857), + [aux_sym_macs_token1] = ACTIONS(857), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(857), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(857), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(857), + [aux_sym_password_authentication_token1] = ACTIONS(857), + [aux_sym_permit_local_command_token1] = ACTIONS(857), + [aux_sym_permit_remote_open_token1] = ACTIONS(857), + [aux_sym_pkcs11_provider_token1] = ACTIONS(857), + [aux_sym_port_token1] = ACTIONS(857), + [aux_sym_preferred_authentications_token1] = ACTIONS(857), + [aux_sym_protocol_token1] = ACTIONS(857), + [aux_sym_proxy_command_token1] = ACTIONS(857), + [aux_sym_proxy_jump_token1] = ACTIONS(857), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(857), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(857), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(857), + [aux_sym_pubkey_authentication_token1] = ACTIONS(857), + [aux_sym_rekey_limit_token1] = ACTIONS(857), + [aux_sym_remote_command_token1] = ACTIONS(857), + [aux_sym_remote_forward_token1] = ACTIONS(857), + [aux_sym_request_tty_token1] = ACTIONS(857), + [aux_sym_required_rsa_size_token1] = ACTIONS(857), + [aux_sym_revoked_host_keys_token1] = ACTIONS(857), + [aux_sym_security_key_provider_token1] = ACTIONS(857), + [aux_sym_send_env_token1] = ACTIONS(857), + [aux_sym_server_alive_count_max_token1] = ACTIONS(857), + [aux_sym_server_alive_interval_token1] = ACTIONS(857), + [aux_sym_session_type_token1] = ACTIONS(857), + [aux_sym_set_env_token1] = ACTIONS(857), + [aux_sym_stdin_null_token1] = ACTIONS(857), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(857), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(857), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(857), + [aux_sym_syslog_facility_token1] = ACTIONS(857), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(857), + [aux_sym_keep_alive_token1] = ACTIONS(857), + [aux_sym_tag_token1] = ACTIONS(857), + [aux_sym_tunnel_token1] = ACTIONS(859), + [aux_sym_tunnel_device_token1] = ACTIONS(857), + [aux_sym_update_host_keys_token1] = ACTIONS(857), + [aux_sym_use_keychain_token1] = ACTIONS(857), + [aux_sym_use_roaming_token1] = ACTIONS(857), + [aux_sym_user_token1] = ACTIONS(859), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(857), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(857), + [aux_sym_visual_host_key_token1] = ACTIONS(857), + [aux_sym_xauth_location_token1] = ACTIONS(857), }, [50] = { - [ts_builtin_sym_end] = ACTIONS(858), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(860), - [anon_sym_DQUOTE] = ACTIONS(862), - [aux_sym_match_token1] = ACTIONS(858), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(858), - [aux_sym_address_family_token1] = ACTIONS(858), - [aux_sym_batch_mode_token1] = ACTIONS(858), - [aux_sym_bind_address_token1] = ACTIONS(858), - [aux_sym_bind_interface_token1] = ACTIONS(858), - [aux_sym_canonical_domains_token1] = ACTIONS(858), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(858), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(858), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(858), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(858), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(858), - [aux_sym_certificate_file_token1] = ACTIONS(858), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(858), - [aux_sym_channel_timeout_token1] = ACTIONS(858), - [aux_sym_check_host_ip_token1] = ACTIONS(858), - [aux_sym_ciphers_token1] = ACTIONS(858), - [aux_sym_cipher_token1] = ACTIONS(860), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(858), - [aux_sym_compression_token1] = ACTIONS(858), - [aux_sym_connection_attempts_token1] = ACTIONS(858), - [aux_sym_connect_timeout_token1] = ACTIONS(858), - [aux_sym_control_master_token1] = ACTIONS(858), - [aux_sym_control_path_token1] = ACTIONS(858), - [aux_sym_control_persist_token1] = ACTIONS(858), - [aux_sym_dynamic_forward_token1] = ACTIONS(858), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(858), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(858), - [aux_sym_escape_char_token1] = ACTIONS(858), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(858), - [aux_sym_fingerprint_hash_token1] = ACTIONS(858), - [aux_sym_fork_after_authentication_token1] = ACTIONS(858), - [aux_sym_forward_agent_token1] = ACTIONS(858), - [aux_sym_forward_x11_token1] = ACTIONS(860), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(858), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(858), - [aux_sym_gateway_ports_token1] = ACTIONS(858), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(858), - [aux_sym_gssapi_authentication_token1] = ACTIONS(858), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(858), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(858), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(858), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(858), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(858), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(858), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(858), - [aux_sym_hash_known_hosts_token1] = ACTIONS(858), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(858), - [aux_sym_hostbased_authentication_token1] = ACTIONS(858), - [aux_sym_host_key_algorithms_token1] = ACTIONS(858), - [aux_sym_host_key_alias_token1] = ACTIONS(858), - [aux_sym_hostname_token1] = ACTIONS(858), - [aux_sym_identities_only_token1] = ACTIONS(858), - [aux_sym_identity_agent_token1] = ACTIONS(858), - [aux_sym_identity_file_token1] = ACTIONS(858), - [aux_sym_ignore_unknown_token1] = ACTIONS(858), - [aux_sym_include_token1] = ACTIONS(858), - [aux_sym_ip_qos_token1] = ACTIONS(858), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(858), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(858), - [aux_sym_kex_algorithms_token1] = ACTIONS(858), - [aux_sym_known_hosts_command_token1] = ACTIONS(858), - [aux_sym_local_command_token1] = ACTIONS(858), - [aux_sym_local_forward_token1] = ACTIONS(858), - [aux_sym_log_level_token1] = ACTIONS(858), - [aux_sym_log_verbose_token1] = ACTIONS(858), - [aux_sym_macs_token1] = ACTIONS(858), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(858), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(858), - [aux_sym_password_authentication_token1] = ACTIONS(858), - [aux_sym_permit_local_command_token1] = ACTIONS(858), - [aux_sym_permit_remote_open_token1] = ACTIONS(858), - [aux_sym_pkcs11_provider_token1] = ACTIONS(858), - [aux_sym_port_token1] = ACTIONS(858), - [aux_sym_preferred_authentications_token1] = ACTIONS(858), - [aux_sym_protocol_token1] = ACTIONS(858), - [aux_sym_proxy_command_token1] = ACTIONS(858), - [aux_sym_proxy_jump_token1] = ACTIONS(858), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(858), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(858), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(858), - [aux_sym_pubkey_authentication_token1] = ACTIONS(858), - [aux_sym_rekey_limit_token1] = ACTIONS(858), - [aux_sym_remote_command_token1] = ACTIONS(858), - [aux_sym_remote_forward_token1] = ACTIONS(858), - [aux_sym_request_tty_token1] = ACTIONS(858), - [aux_sym_required_rsa_size_token1] = ACTIONS(858), - [aux_sym_revoked_host_keys_token1] = ACTIONS(858), - [aux_sym_security_key_provider_token1] = ACTIONS(858), - [aux_sym_send_env_token1] = ACTIONS(858), - [aux_sym_server_alive_count_max_token1] = ACTIONS(858), - [aux_sym_server_alive_interval_token1] = ACTIONS(858), - [aux_sym_session_type_token1] = ACTIONS(858), - [aux_sym_set_env_token1] = ACTIONS(858), - [aux_sym_stdin_null_token1] = ACTIONS(858), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(858), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(858), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(858), - [aux_sym_syslog_facility_token1] = ACTIONS(858), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(858), - [aux_sym_keep_alive_token1] = ACTIONS(858), - [aux_sym_tag_token1] = ACTIONS(858), - [aux_sym_tunnel_token1] = ACTIONS(860), - [aux_sym_tunnel_device_token1] = ACTIONS(858), - [aux_sym_update_host_keys_token1] = ACTIONS(858), - [aux_sym_use_keychain_token1] = ACTIONS(858), - [aux_sym_use_roaming_token1] = ACTIONS(858), - [aux_sym_user_token1] = ACTIONS(860), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(858), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(858), - [aux_sym_visual_host_key_token1] = ACTIONS(858), - [aux_sym_xauth_location_token1] = ACTIONS(858), + [ts_builtin_sym_end] = ACTIONS(863), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(865), + [anon_sym_DQUOTE] = ACTIONS(867), + [aux_sym_match_token1] = ACTIONS(863), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(863), + [aux_sym_address_family_token1] = ACTIONS(863), + [aux_sym_batch_mode_token1] = ACTIONS(863), + [aux_sym_bind_address_token1] = ACTIONS(863), + [aux_sym_bind_interface_token1] = ACTIONS(863), + [aux_sym_canonical_domains_token1] = ACTIONS(863), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(863), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(863), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(863), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(863), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(863), + [aux_sym_certificate_file_token1] = ACTIONS(863), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(863), + [aux_sym_channel_timeout_token1] = ACTIONS(863), + [aux_sym_check_host_ip_token1] = ACTIONS(863), + [aux_sym_ciphers_token1] = ACTIONS(863), + [aux_sym_cipher_token1] = ACTIONS(865), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(863), + [aux_sym_compression_token1] = ACTIONS(863), + [aux_sym_connection_attempts_token1] = ACTIONS(863), + [aux_sym_connect_timeout_token1] = ACTIONS(863), + [aux_sym_control_master_token1] = ACTIONS(863), + [aux_sym_control_path_token1] = ACTIONS(863), + [aux_sym_control_persist_token1] = ACTIONS(863), + [aux_sym_dynamic_forward_token1] = ACTIONS(863), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(863), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(863), + [aux_sym_escape_char_token1] = ACTIONS(863), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(863), + [aux_sym_fingerprint_hash_token1] = ACTIONS(863), + [aux_sym_fork_after_authentication_token1] = ACTIONS(863), + [aux_sym_forward_agent_token1] = ACTIONS(863), + [aux_sym_forward_x11_token1] = ACTIONS(865), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(863), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(863), + [aux_sym_gateway_ports_token1] = ACTIONS(863), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(863), + [aux_sym_gssapi_authentication_token1] = ACTIONS(863), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(863), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(863), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(863), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(863), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(863), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(863), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(863), + [aux_sym_hash_known_hosts_token1] = ACTIONS(863), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(863), + [aux_sym_hostbased_authentication_token1] = ACTIONS(863), + [aux_sym_host_key_algorithms_token1] = ACTIONS(863), + [aux_sym_host_key_alias_token1] = ACTIONS(863), + [aux_sym_hostname_token1] = ACTIONS(863), + [aux_sym_identities_only_token1] = ACTIONS(863), + [aux_sym_identity_agent_token1] = ACTIONS(863), + [aux_sym_identity_file_token1] = ACTIONS(863), + [aux_sym_ignore_unknown_token1] = ACTIONS(863), + [aux_sym_include_token1] = ACTIONS(863), + [aux_sym_ip_qos_token1] = ACTIONS(863), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(863), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(863), + [aux_sym_kex_algorithms_token1] = ACTIONS(863), + [aux_sym_known_hosts_command_token1] = ACTIONS(863), + [aux_sym_local_command_token1] = ACTIONS(863), + [aux_sym_local_forward_token1] = ACTIONS(863), + [aux_sym_log_level_token1] = ACTIONS(863), + [aux_sym_log_verbose_token1] = ACTIONS(863), + [aux_sym_macs_token1] = ACTIONS(863), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(863), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(863), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(863), + [aux_sym_password_authentication_token1] = ACTIONS(863), + [aux_sym_permit_local_command_token1] = ACTIONS(863), + [aux_sym_permit_remote_open_token1] = ACTIONS(863), + [aux_sym_pkcs11_provider_token1] = ACTIONS(863), + [aux_sym_port_token1] = ACTIONS(863), + [aux_sym_preferred_authentications_token1] = ACTIONS(863), + [aux_sym_protocol_token1] = ACTIONS(863), + [aux_sym_proxy_command_token1] = ACTIONS(863), + [aux_sym_proxy_jump_token1] = ACTIONS(863), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(863), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(863), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(863), + [aux_sym_pubkey_authentication_token1] = ACTIONS(863), + [aux_sym_rekey_limit_token1] = ACTIONS(863), + [aux_sym_remote_command_token1] = ACTIONS(863), + [aux_sym_remote_forward_token1] = ACTIONS(863), + [aux_sym_request_tty_token1] = ACTIONS(863), + [aux_sym_required_rsa_size_token1] = ACTIONS(863), + [aux_sym_revoked_host_keys_token1] = ACTIONS(863), + [aux_sym_security_key_provider_token1] = ACTIONS(863), + [aux_sym_send_env_token1] = ACTIONS(863), + [aux_sym_server_alive_count_max_token1] = ACTIONS(863), + [aux_sym_server_alive_interval_token1] = ACTIONS(863), + [aux_sym_session_type_token1] = ACTIONS(863), + [aux_sym_set_env_token1] = ACTIONS(863), + [aux_sym_stdin_null_token1] = ACTIONS(863), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(863), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(863), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(863), + [aux_sym_syslog_facility_token1] = ACTIONS(863), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(863), + [aux_sym_keep_alive_token1] = ACTIONS(863), + [aux_sym_tag_token1] = ACTIONS(863), + [aux_sym_tunnel_token1] = ACTIONS(865), + [aux_sym_tunnel_device_token1] = ACTIONS(863), + [aux_sym_update_host_keys_token1] = ACTIONS(863), + [aux_sym_use_keychain_token1] = ACTIONS(863), + [aux_sym_use_roaming_token1] = ACTIONS(863), + [aux_sym_user_token1] = ACTIONS(865), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(863), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(863), + [aux_sym_visual_host_key_token1] = ACTIONS(863), + [aux_sym_xauth_location_token1] = ACTIONS(863), }, [51] = { - [ts_builtin_sym_end] = ACTIONS(864), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(868), - [aux_sym_match_token1] = ACTIONS(864), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(864), - [aux_sym_address_family_token1] = ACTIONS(864), - [aux_sym_batch_mode_token1] = ACTIONS(864), - [aux_sym_bind_address_token1] = ACTIONS(864), - [aux_sym_bind_interface_token1] = ACTIONS(864), - [aux_sym_canonical_domains_token1] = ACTIONS(864), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(864), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(864), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(864), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(864), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(864), - [aux_sym_certificate_file_token1] = ACTIONS(864), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(864), - [aux_sym_channel_timeout_token1] = ACTIONS(864), - [aux_sym_check_host_ip_token1] = ACTIONS(864), - [aux_sym_ciphers_token1] = ACTIONS(864), - [aux_sym_cipher_token1] = ACTIONS(866), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(864), - [aux_sym_compression_token1] = ACTIONS(864), - [aux_sym_connection_attempts_token1] = ACTIONS(864), - [aux_sym_connect_timeout_token1] = ACTIONS(864), - [aux_sym_control_master_token1] = ACTIONS(864), - [aux_sym_control_path_token1] = ACTIONS(864), - [aux_sym_control_persist_token1] = ACTIONS(864), - [aux_sym_dynamic_forward_token1] = ACTIONS(864), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(864), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(864), - [aux_sym_escape_char_token1] = ACTIONS(864), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(864), - [aux_sym_fingerprint_hash_token1] = ACTIONS(864), - [aux_sym_fork_after_authentication_token1] = ACTIONS(864), - [aux_sym_forward_agent_token1] = ACTIONS(864), - [aux_sym_forward_x11_token1] = ACTIONS(866), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(864), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(864), - [aux_sym_gateway_ports_token1] = ACTIONS(864), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(864), - [aux_sym_gssapi_authentication_token1] = ACTIONS(864), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(864), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(864), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(864), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(864), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(864), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(864), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(864), - [aux_sym_hash_known_hosts_token1] = ACTIONS(864), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(864), - [aux_sym_hostbased_authentication_token1] = ACTIONS(864), - [aux_sym_host_key_algorithms_token1] = ACTIONS(864), - [aux_sym_host_key_alias_token1] = ACTIONS(864), - [aux_sym_hostname_token1] = ACTIONS(864), - [aux_sym_identities_only_token1] = ACTIONS(864), - [aux_sym_identity_agent_token1] = ACTIONS(864), - [aux_sym_identity_file_token1] = ACTIONS(864), - [aux_sym_ignore_unknown_token1] = ACTIONS(864), - [aux_sym_include_token1] = ACTIONS(864), - [aux_sym_ip_qos_token1] = ACTIONS(864), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(864), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(864), - [aux_sym_kex_algorithms_token1] = ACTIONS(864), - [aux_sym_known_hosts_command_token1] = ACTIONS(864), - [aux_sym_local_command_token1] = ACTIONS(864), - [aux_sym_local_forward_token1] = ACTIONS(864), - [aux_sym_log_level_token1] = ACTIONS(864), - [aux_sym_log_verbose_token1] = ACTIONS(864), - [aux_sym_macs_token1] = ACTIONS(864), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(864), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(864), - [aux_sym_password_authentication_token1] = ACTIONS(864), - [aux_sym_permit_local_command_token1] = ACTIONS(864), - [aux_sym_permit_remote_open_token1] = ACTIONS(864), - [aux_sym_pkcs11_provider_token1] = ACTIONS(864), - [aux_sym_port_token1] = ACTIONS(864), - [aux_sym_preferred_authentications_token1] = ACTIONS(864), - [aux_sym_protocol_token1] = ACTIONS(864), - [aux_sym_proxy_command_token1] = ACTIONS(864), - [aux_sym_proxy_jump_token1] = ACTIONS(864), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(864), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(864), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(864), - [aux_sym_pubkey_authentication_token1] = ACTIONS(864), - [aux_sym_rekey_limit_token1] = ACTIONS(864), - [aux_sym_remote_command_token1] = ACTIONS(864), - [aux_sym_remote_forward_token1] = ACTIONS(864), - [aux_sym_request_tty_token1] = ACTIONS(864), - [aux_sym_required_rsa_size_token1] = ACTIONS(864), - [aux_sym_revoked_host_keys_token1] = ACTIONS(864), - [aux_sym_security_key_provider_token1] = ACTIONS(864), - [aux_sym_send_env_token1] = ACTIONS(864), - [aux_sym_server_alive_count_max_token1] = ACTIONS(864), - [aux_sym_server_alive_interval_token1] = ACTIONS(864), - [aux_sym_session_type_token1] = ACTIONS(864), - [aux_sym_set_env_token1] = ACTIONS(864), - [aux_sym_stdin_null_token1] = ACTIONS(864), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(864), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(864), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(864), - [aux_sym_syslog_facility_token1] = ACTIONS(864), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(864), - [aux_sym_keep_alive_token1] = ACTIONS(864), - [aux_sym_tag_token1] = ACTIONS(864), - [aux_sym_tunnel_token1] = ACTIONS(866), - [aux_sym_tunnel_device_token1] = ACTIONS(864), - [aux_sym_update_host_keys_token1] = ACTIONS(864), - [aux_sym_use_keychain_token1] = ACTIONS(864), - [aux_sym_use_roaming_token1] = ACTIONS(864), - [aux_sym_user_token1] = ACTIONS(866), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(864), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(864), - [aux_sym_visual_host_key_token1] = ACTIONS(864), - [aux_sym_xauth_location_token1] = ACTIONS(864), + [ts_builtin_sym_end] = ACTIONS(869), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(871), + [anon_sym_DQUOTE] = ACTIONS(873), + [aux_sym_match_token1] = ACTIONS(869), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(869), + [aux_sym_address_family_token1] = ACTIONS(869), + [aux_sym_batch_mode_token1] = ACTIONS(869), + [aux_sym_bind_address_token1] = ACTIONS(869), + [aux_sym_bind_interface_token1] = ACTIONS(869), + [aux_sym_canonical_domains_token1] = ACTIONS(869), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(869), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(869), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(869), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(869), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(869), + [aux_sym_certificate_file_token1] = ACTIONS(869), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(869), + [aux_sym_channel_timeout_token1] = ACTIONS(869), + [aux_sym_check_host_ip_token1] = ACTIONS(869), + [aux_sym_ciphers_token1] = ACTIONS(869), + [aux_sym_cipher_token1] = ACTIONS(871), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(869), + [aux_sym_compression_token1] = ACTIONS(869), + [aux_sym_connection_attempts_token1] = ACTIONS(869), + [aux_sym_connect_timeout_token1] = ACTIONS(869), + [aux_sym_control_master_token1] = ACTIONS(869), + [aux_sym_control_path_token1] = ACTIONS(869), + [aux_sym_control_persist_token1] = ACTIONS(869), + [aux_sym_dynamic_forward_token1] = ACTIONS(869), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(869), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(869), + [aux_sym_escape_char_token1] = ACTIONS(869), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(869), + [aux_sym_fingerprint_hash_token1] = ACTIONS(869), + [aux_sym_fork_after_authentication_token1] = ACTIONS(869), + [aux_sym_forward_agent_token1] = ACTIONS(869), + [aux_sym_forward_x11_token1] = ACTIONS(871), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(869), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(869), + [aux_sym_gateway_ports_token1] = ACTIONS(869), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(869), + [aux_sym_gssapi_authentication_token1] = ACTIONS(869), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(869), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(869), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(869), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(869), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(869), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(869), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(869), + [aux_sym_hash_known_hosts_token1] = ACTIONS(869), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(869), + [aux_sym_hostbased_authentication_token1] = ACTIONS(869), + [aux_sym_host_key_algorithms_token1] = ACTIONS(869), + [aux_sym_host_key_alias_token1] = ACTIONS(869), + [aux_sym_hostname_token1] = ACTIONS(869), + [aux_sym_identities_only_token1] = ACTIONS(869), + [aux_sym_identity_agent_token1] = ACTIONS(869), + [aux_sym_identity_file_token1] = ACTIONS(869), + [aux_sym_ignore_unknown_token1] = ACTIONS(869), + [aux_sym_include_token1] = ACTIONS(869), + [aux_sym_ip_qos_token1] = ACTIONS(869), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(869), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(869), + [aux_sym_kex_algorithms_token1] = ACTIONS(869), + [aux_sym_known_hosts_command_token1] = ACTIONS(869), + [aux_sym_local_command_token1] = ACTIONS(869), + [aux_sym_local_forward_token1] = ACTIONS(869), + [aux_sym_log_level_token1] = ACTIONS(869), + [aux_sym_log_verbose_token1] = ACTIONS(869), + [aux_sym_macs_token1] = ACTIONS(869), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(869), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(869), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(869), + [aux_sym_password_authentication_token1] = ACTIONS(869), + [aux_sym_permit_local_command_token1] = ACTIONS(869), + [aux_sym_permit_remote_open_token1] = ACTIONS(869), + [aux_sym_pkcs11_provider_token1] = ACTIONS(869), + [aux_sym_port_token1] = ACTIONS(869), + [aux_sym_preferred_authentications_token1] = ACTIONS(869), + [aux_sym_protocol_token1] = ACTIONS(869), + [aux_sym_proxy_command_token1] = ACTIONS(869), + [aux_sym_proxy_jump_token1] = ACTIONS(869), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(869), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(869), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(869), + [aux_sym_pubkey_authentication_token1] = ACTIONS(869), + [aux_sym_rekey_limit_token1] = ACTIONS(869), + [aux_sym_remote_command_token1] = ACTIONS(869), + [aux_sym_remote_forward_token1] = ACTIONS(869), + [aux_sym_request_tty_token1] = ACTIONS(869), + [aux_sym_required_rsa_size_token1] = ACTIONS(869), + [aux_sym_revoked_host_keys_token1] = ACTIONS(869), + [aux_sym_security_key_provider_token1] = ACTIONS(869), + [aux_sym_send_env_token1] = ACTIONS(869), + [aux_sym_server_alive_count_max_token1] = ACTIONS(869), + [aux_sym_server_alive_interval_token1] = ACTIONS(869), + [aux_sym_session_type_token1] = ACTIONS(869), + [aux_sym_set_env_token1] = ACTIONS(869), + [aux_sym_stdin_null_token1] = ACTIONS(869), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(869), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(869), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(869), + [aux_sym_syslog_facility_token1] = ACTIONS(869), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(869), + [aux_sym_keep_alive_token1] = ACTIONS(869), + [aux_sym_tag_token1] = ACTIONS(869), + [aux_sym_tunnel_token1] = ACTIONS(871), + [aux_sym_tunnel_device_token1] = ACTIONS(869), + [aux_sym_update_host_keys_token1] = ACTIONS(869), + [aux_sym_use_keychain_token1] = ACTIONS(869), + [aux_sym_use_roaming_token1] = ACTIONS(869), + [aux_sym_user_token1] = ACTIONS(871), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(869), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(869), + [aux_sym_visual_host_key_token1] = ACTIONS(869), + [aux_sym_xauth_location_token1] = ACTIONS(869), }, [52] = { - [ts_builtin_sym_end] = ACTIONS(870), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(872), - [anon_sym_DQUOTE] = ACTIONS(874), - [aux_sym_match_token1] = ACTIONS(870), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(870), - [aux_sym_address_family_token1] = ACTIONS(870), - [aux_sym_batch_mode_token1] = ACTIONS(870), - [aux_sym_bind_address_token1] = ACTIONS(870), - [aux_sym_bind_interface_token1] = ACTIONS(870), - [aux_sym_canonical_domains_token1] = ACTIONS(870), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(870), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(870), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(870), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(870), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(870), - [aux_sym_certificate_file_token1] = ACTIONS(870), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(870), - [aux_sym_channel_timeout_token1] = ACTIONS(870), - [aux_sym_check_host_ip_token1] = ACTIONS(870), - [aux_sym_ciphers_token1] = ACTIONS(870), - [aux_sym_cipher_token1] = ACTIONS(872), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(870), - [aux_sym_compression_token1] = ACTIONS(870), - [aux_sym_connection_attempts_token1] = ACTIONS(870), - [aux_sym_connect_timeout_token1] = ACTIONS(870), - [aux_sym_control_master_token1] = ACTIONS(870), - [aux_sym_control_path_token1] = ACTIONS(870), - [aux_sym_control_persist_token1] = ACTIONS(870), - [aux_sym_dynamic_forward_token1] = ACTIONS(870), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(870), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(870), - [aux_sym_escape_char_token1] = ACTIONS(870), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(870), - [aux_sym_fingerprint_hash_token1] = ACTIONS(870), - [aux_sym_fork_after_authentication_token1] = ACTIONS(870), - [aux_sym_forward_agent_token1] = ACTIONS(870), - [aux_sym_forward_x11_token1] = ACTIONS(872), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(870), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(870), - [aux_sym_gateway_ports_token1] = ACTIONS(870), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(870), - [aux_sym_gssapi_authentication_token1] = ACTIONS(870), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(870), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(870), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(870), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(870), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(870), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(870), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(870), - [aux_sym_hash_known_hosts_token1] = ACTIONS(870), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(870), - [aux_sym_hostbased_authentication_token1] = ACTIONS(870), - [aux_sym_host_key_algorithms_token1] = ACTIONS(870), - [aux_sym_host_key_alias_token1] = ACTIONS(870), - [aux_sym_hostname_token1] = ACTIONS(870), - [aux_sym_identities_only_token1] = ACTIONS(870), - [aux_sym_identity_agent_token1] = ACTIONS(870), - [aux_sym_identity_file_token1] = ACTIONS(870), - [aux_sym_ignore_unknown_token1] = ACTIONS(870), - [aux_sym_include_token1] = ACTIONS(870), - [aux_sym_ip_qos_token1] = ACTIONS(870), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(870), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(870), - [aux_sym_kex_algorithms_token1] = ACTIONS(870), - [aux_sym_known_hosts_command_token1] = ACTIONS(870), - [aux_sym_local_command_token1] = ACTIONS(870), - [aux_sym_local_forward_token1] = ACTIONS(870), - [aux_sym_log_level_token1] = ACTIONS(870), - [aux_sym_log_verbose_token1] = ACTIONS(870), - [aux_sym_macs_token1] = ACTIONS(870), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(870), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(870), - [aux_sym_password_authentication_token1] = ACTIONS(870), - [aux_sym_permit_local_command_token1] = ACTIONS(870), - [aux_sym_permit_remote_open_token1] = ACTIONS(870), - [aux_sym_pkcs11_provider_token1] = ACTIONS(870), - [aux_sym_port_token1] = ACTIONS(870), - [aux_sym_preferred_authentications_token1] = ACTIONS(870), - [aux_sym_protocol_token1] = ACTIONS(870), - [aux_sym_proxy_command_token1] = ACTIONS(870), - [aux_sym_proxy_jump_token1] = ACTIONS(870), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(870), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(870), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(870), - [aux_sym_pubkey_authentication_token1] = ACTIONS(870), - [aux_sym_rekey_limit_token1] = ACTIONS(870), - [aux_sym_remote_command_token1] = ACTIONS(870), - [aux_sym_remote_forward_token1] = ACTIONS(870), - [aux_sym_request_tty_token1] = ACTIONS(870), - [aux_sym_required_rsa_size_token1] = ACTIONS(870), - [aux_sym_revoked_host_keys_token1] = ACTIONS(870), - [aux_sym_security_key_provider_token1] = ACTIONS(870), - [aux_sym_send_env_token1] = ACTIONS(870), - [aux_sym_server_alive_count_max_token1] = ACTIONS(870), - [aux_sym_server_alive_interval_token1] = ACTIONS(870), - [aux_sym_session_type_token1] = ACTIONS(870), - [aux_sym_set_env_token1] = ACTIONS(870), - [aux_sym_stdin_null_token1] = ACTIONS(870), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(870), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(870), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(870), - [aux_sym_syslog_facility_token1] = ACTIONS(870), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(870), - [aux_sym_keep_alive_token1] = ACTIONS(870), - [aux_sym_tag_token1] = ACTIONS(870), - [aux_sym_tunnel_token1] = ACTIONS(872), - [aux_sym_tunnel_device_token1] = ACTIONS(870), - [aux_sym_update_host_keys_token1] = ACTIONS(870), - [aux_sym_use_keychain_token1] = ACTIONS(870), - [aux_sym_use_roaming_token1] = ACTIONS(870), - [aux_sym_user_token1] = ACTIONS(872), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(870), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(870), - [aux_sym_visual_host_key_token1] = ACTIONS(870), - [aux_sym_xauth_location_token1] = ACTIONS(870), + [ts_builtin_sym_end] = ACTIONS(875), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(877), + [anon_sym_DQUOTE] = ACTIONS(879), + [aux_sym_match_token1] = ACTIONS(875), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(875), + [aux_sym_address_family_token1] = ACTIONS(875), + [aux_sym_batch_mode_token1] = ACTIONS(875), + [aux_sym_bind_address_token1] = ACTIONS(875), + [aux_sym_bind_interface_token1] = ACTIONS(875), + [aux_sym_canonical_domains_token1] = ACTIONS(875), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(875), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(875), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(875), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(875), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(875), + [aux_sym_certificate_file_token1] = ACTIONS(875), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(875), + [aux_sym_channel_timeout_token1] = ACTIONS(875), + [aux_sym_check_host_ip_token1] = ACTIONS(875), + [aux_sym_ciphers_token1] = ACTIONS(875), + [aux_sym_cipher_token1] = ACTIONS(877), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(875), + [aux_sym_compression_token1] = ACTIONS(875), + [aux_sym_connection_attempts_token1] = ACTIONS(875), + [aux_sym_connect_timeout_token1] = ACTIONS(875), + [aux_sym_control_master_token1] = ACTIONS(875), + [aux_sym_control_path_token1] = ACTIONS(875), + [aux_sym_control_persist_token1] = ACTIONS(875), + [aux_sym_dynamic_forward_token1] = ACTIONS(875), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(875), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(875), + [aux_sym_escape_char_token1] = ACTIONS(875), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(875), + [aux_sym_fingerprint_hash_token1] = ACTIONS(875), + [aux_sym_fork_after_authentication_token1] = ACTIONS(875), + [aux_sym_forward_agent_token1] = ACTIONS(875), + [aux_sym_forward_x11_token1] = ACTIONS(877), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(875), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(875), + [aux_sym_gateway_ports_token1] = ACTIONS(875), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(875), + [aux_sym_gssapi_authentication_token1] = ACTIONS(875), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(875), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(875), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(875), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(875), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(875), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(875), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(875), + [aux_sym_hash_known_hosts_token1] = ACTIONS(875), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(875), + [aux_sym_hostbased_authentication_token1] = ACTIONS(875), + [aux_sym_host_key_algorithms_token1] = ACTIONS(875), + [aux_sym_host_key_alias_token1] = ACTIONS(875), + [aux_sym_hostname_token1] = ACTIONS(875), + [aux_sym_identities_only_token1] = ACTIONS(875), + [aux_sym_identity_agent_token1] = ACTIONS(875), + [aux_sym_identity_file_token1] = ACTIONS(875), + [aux_sym_ignore_unknown_token1] = ACTIONS(875), + [aux_sym_include_token1] = ACTIONS(875), + [aux_sym_ip_qos_token1] = ACTIONS(875), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(875), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(875), + [aux_sym_kex_algorithms_token1] = ACTIONS(875), + [aux_sym_known_hosts_command_token1] = ACTIONS(875), + [aux_sym_local_command_token1] = ACTIONS(875), + [aux_sym_local_forward_token1] = ACTIONS(875), + [aux_sym_log_level_token1] = ACTIONS(875), + [aux_sym_log_verbose_token1] = ACTIONS(875), + [aux_sym_macs_token1] = ACTIONS(875), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(875), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(875), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(875), + [aux_sym_password_authentication_token1] = ACTIONS(875), + [aux_sym_permit_local_command_token1] = ACTIONS(875), + [aux_sym_permit_remote_open_token1] = ACTIONS(875), + [aux_sym_pkcs11_provider_token1] = ACTIONS(875), + [aux_sym_port_token1] = ACTIONS(875), + [aux_sym_preferred_authentications_token1] = ACTIONS(875), + [aux_sym_protocol_token1] = ACTIONS(875), + [aux_sym_proxy_command_token1] = ACTIONS(875), + [aux_sym_proxy_jump_token1] = ACTIONS(875), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(875), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(875), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(875), + [aux_sym_pubkey_authentication_token1] = ACTIONS(875), + [aux_sym_rekey_limit_token1] = ACTIONS(875), + [aux_sym_remote_command_token1] = ACTIONS(875), + [aux_sym_remote_forward_token1] = ACTIONS(875), + [aux_sym_request_tty_token1] = ACTIONS(875), + [aux_sym_required_rsa_size_token1] = ACTIONS(875), + [aux_sym_revoked_host_keys_token1] = ACTIONS(875), + [aux_sym_security_key_provider_token1] = ACTIONS(875), + [aux_sym_send_env_token1] = ACTIONS(875), + [aux_sym_server_alive_count_max_token1] = ACTIONS(875), + [aux_sym_server_alive_interval_token1] = ACTIONS(875), + [aux_sym_session_type_token1] = ACTIONS(875), + [aux_sym_set_env_token1] = ACTIONS(875), + [aux_sym_stdin_null_token1] = ACTIONS(875), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(875), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(875), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(875), + [aux_sym_syslog_facility_token1] = ACTIONS(875), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(875), + [aux_sym_keep_alive_token1] = ACTIONS(875), + [aux_sym_tag_token1] = ACTIONS(875), + [aux_sym_tunnel_token1] = ACTIONS(877), + [aux_sym_tunnel_device_token1] = ACTIONS(875), + [aux_sym_update_host_keys_token1] = ACTIONS(875), + [aux_sym_use_keychain_token1] = ACTIONS(875), + [aux_sym_use_roaming_token1] = ACTIONS(875), + [aux_sym_user_token1] = ACTIONS(877), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(875), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(875), + [aux_sym_visual_host_key_token1] = ACTIONS(875), + [aux_sym_xauth_location_token1] = ACTIONS(875), }, [53] = { - [ts_builtin_sym_end] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(878), - [anon_sym_DQUOTE] = ACTIONS(880), - [aux_sym_match_token1] = ACTIONS(876), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(876), - [aux_sym_address_family_token1] = ACTIONS(876), - [aux_sym_batch_mode_token1] = ACTIONS(876), - [aux_sym_bind_address_token1] = ACTIONS(876), - [aux_sym_bind_interface_token1] = ACTIONS(876), - [aux_sym_canonical_domains_token1] = ACTIONS(876), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(876), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(876), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(876), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(876), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(876), - [aux_sym_certificate_file_token1] = ACTIONS(876), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(876), - [aux_sym_channel_timeout_token1] = ACTIONS(876), - [aux_sym_check_host_ip_token1] = ACTIONS(876), - [aux_sym_ciphers_token1] = ACTIONS(876), - [aux_sym_cipher_token1] = ACTIONS(878), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(876), - [aux_sym_compression_token1] = ACTIONS(876), - [aux_sym_connection_attempts_token1] = ACTIONS(876), - [aux_sym_connect_timeout_token1] = ACTIONS(876), - [aux_sym_control_master_token1] = ACTIONS(876), - [aux_sym_control_path_token1] = ACTIONS(876), - [aux_sym_control_persist_token1] = ACTIONS(876), - [aux_sym_dynamic_forward_token1] = ACTIONS(876), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(876), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(876), - [aux_sym_escape_char_token1] = ACTIONS(876), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(876), - [aux_sym_fingerprint_hash_token1] = ACTIONS(876), - [aux_sym_fork_after_authentication_token1] = ACTIONS(876), - [aux_sym_forward_agent_token1] = ACTIONS(876), - [aux_sym_forward_x11_token1] = ACTIONS(878), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(876), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(876), - [aux_sym_gateway_ports_token1] = ACTIONS(876), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(876), - [aux_sym_gssapi_authentication_token1] = ACTIONS(876), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(876), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(876), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(876), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(876), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(876), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(876), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(876), - [aux_sym_hash_known_hosts_token1] = ACTIONS(876), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(876), - [aux_sym_hostbased_authentication_token1] = ACTIONS(876), - [aux_sym_host_key_algorithms_token1] = ACTIONS(876), - [aux_sym_host_key_alias_token1] = ACTIONS(876), - [aux_sym_hostname_token1] = ACTIONS(876), - [aux_sym_identities_only_token1] = ACTIONS(876), - [aux_sym_identity_agent_token1] = ACTIONS(876), - [aux_sym_identity_file_token1] = ACTIONS(876), - [aux_sym_ignore_unknown_token1] = ACTIONS(876), - [aux_sym_include_token1] = ACTIONS(876), - [aux_sym_ip_qos_token1] = ACTIONS(876), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(876), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(876), - [aux_sym_kex_algorithms_token1] = ACTIONS(876), - [aux_sym_known_hosts_command_token1] = ACTIONS(876), - [aux_sym_local_command_token1] = ACTIONS(876), - [aux_sym_local_forward_token1] = ACTIONS(876), - [aux_sym_log_level_token1] = ACTIONS(876), - [aux_sym_log_verbose_token1] = ACTIONS(876), - [aux_sym_macs_token1] = ACTIONS(876), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(876), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(876), - [aux_sym_password_authentication_token1] = ACTIONS(876), - [aux_sym_permit_local_command_token1] = ACTIONS(876), - [aux_sym_permit_remote_open_token1] = ACTIONS(876), - [aux_sym_pkcs11_provider_token1] = ACTIONS(876), - [aux_sym_port_token1] = ACTIONS(876), - [aux_sym_preferred_authentications_token1] = ACTIONS(876), - [aux_sym_protocol_token1] = ACTIONS(876), - [aux_sym_proxy_command_token1] = ACTIONS(876), - [aux_sym_proxy_jump_token1] = ACTIONS(876), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(876), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(876), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(876), - [aux_sym_pubkey_authentication_token1] = ACTIONS(876), - [aux_sym_rekey_limit_token1] = ACTIONS(876), - [aux_sym_remote_command_token1] = ACTIONS(876), - [aux_sym_remote_forward_token1] = ACTIONS(876), - [aux_sym_request_tty_token1] = ACTIONS(876), - [aux_sym_required_rsa_size_token1] = ACTIONS(876), - [aux_sym_revoked_host_keys_token1] = ACTIONS(876), - [aux_sym_security_key_provider_token1] = ACTIONS(876), - [aux_sym_send_env_token1] = ACTIONS(876), - [aux_sym_server_alive_count_max_token1] = ACTIONS(876), - [aux_sym_server_alive_interval_token1] = ACTIONS(876), - [aux_sym_session_type_token1] = ACTIONS(876), - [aux_sym_set_env_token1] = ACTIONS(876), - [aux_sym_stdin_null_token1] = ACTIONS(876), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(876), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(876), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(876), - [aux_sym_syslog_facility_token1] = ACTIONS(876), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(876), - [aux_sym_keep_alive_token1] = ACTIONS(876), - [aux_sym_tag_token1] = ACTIONS(876), - [aux_sym_tunnel_token1] = ACTIONS(878), - [aux_sym_tunnel_device_token1] = ACTIONS(876), - [aux_sym_update_host_keys_token1] = ACTIONS(876), - [aux_sym_use_keychain_token1] = ACTIONS(876), - [aux_sym_use_roaming_token1] = ACTIONS(876), - [aux_sym_user_token1] = ACTIONS(878), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(876), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(876), - [aux_sym_visual_host_key_token1] = ACTIONS(876), - [aux_sym_xauth_location_token1] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(881), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(885), + [aux_sym_match_token1] = ACTIONS(881), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(881), + [aux_sym_address_family_token1] = ACTIONS(881), + [aux_sym_batch_mode_token1] = ACTIONS(881), + [aux_sym_bind_address_token1] = ACTIONS(881), + [aux_sym_bind_interface_token1] = ACTIONS(881), + [aux_sym_canonical_domains_token1] = ACTIONS(881), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(881), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(881), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(881), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(881), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(881), + [aux_sym_certificate_file_token1] = ACTIONS(881), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(881), + [aux_sym_channel_timeout_token1] = ACTIONS(881), + [aux_sym_check_host_ip_token1] = ACTIONS(881), + [aux_sym_ciphers_token1] = ACTIONS(881), + [aux_sym_cipher_token1] = ACTIONS(883), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(881), + [aux_sym_compression_token1] = ACTIONS(881), + [aux_sym_connection_attempts_token1] = ACTIONS(881), + [aux_sym_connect_timeout_token1] = ACTIONS(881), + [aux_sym_control_master_token1] = ACTIONS(881), + [aux_sym_control_path_token1] = ACTIONS(881), + [aux_sym_control_persist_token1] = ACTIONS(881), + [aux_sym_dynamic_forward_token1] = ACTIONS(881), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(881), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(881), + [aux_sym_escape_char_token1] = ACTIONS(881), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(881), + [aux_sym_fingerprint_hash_token1] = ACTIONS(881), + [aux_sym_fork_after_authentication_token1] = ACTIONS(881), + [aux_sym_forward_agent_token1] = ACTIONS(881), + [aux_sym_forward_x11_token1] = ACTIONS(883), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(881), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(881), + [aux_sym_gateway_ports_token1] = ACTIONS(881), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(881), + [aux_sym_gssapi_authentication_token1] = ACTIONS(881), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(881), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(881), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(881), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(881), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(881), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(881), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(881), + [aux_sym_hash_known_hosts_token1] = ACTIONS(881), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(881), + [aux_sym_hostbased_authentication_token1] = ACTIONS(881), + [aux_sym_host_key_algorithms_token1] = ACTIONS(881), + [aux_sym_host_key_alias_token1] = ACTIONS(881), + [aux_sym_hostname_token1] = ACTIONS(881), + [aux_sym_identities_only_token1] = ACTIONS(881), + [aux_sym_identity_agent_token1] = ACTIONS(881), + [aux_sym_identity_file_token1] = ACTIONS(881), + [aux_sym_ignore_unknown_token1] = ACTIONS(881), + [aux_sym_include_token1] = ACTIONS(881), + [aux_sym_ip_qos_token1] = ACTIONS(881), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(881), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(881), + [aux_sym_kex_algorithms_token1] = ACTIONS(881), + [aux_sym_known_hosts_command_token1] = ACTIONS(881), + [aux_sym_local_command_token1] = ACTIONS(881), + [aux_sym_local_forward_token1] = ACTIONS(881), + [aux_sym_log_level_token1] = ACTIONS(881), + [aux_sym_log_verbose_token1] = ACTIONS(881), + [aux_sym_macs_token1] = ACTIONS(881), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(881), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(881), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(881), + [aux_sym_password_authentication_token1] = ACTIONS(881), + [aux_sym_permit_local_command_token1] = ACTIONS(881), + [aux_sym_permit_remote_open_token1] = ACTIONS(881), + [aux_sym_pkcs11_provider_token1] = ACTIONS(881), + [aux_sym_port_token1] = ACTIONS(881), + [aux_sym_preferred_authentications_token1] = ACTIONS(881), + [aux_sym_protocol_token1] = ACTIONS(881), + [aux_sym_proxy_command_token1] = ACTIONS(881), + [aux_sym_proxy_jump_token1] = ACTIONS(881), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(881), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(881), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(881), + [aux_sym_pubkey_authentication_token1] = ACTIONS(881), + [aux_sym_rekey_limit_token1] = ACTIONS(881), + [aux_sym_remote_command_token1] = ACTIONS(881), + [aux_sym_remote_forward_token1] = ACTIONS(881), + [aux_sym_request_tty_token1] = ACTIONS(881), + [aux_sym_required_rsa_size_token1] = ACTIONS(881), + [aux_sym_revoked_host_keys_token1] = ACTIONS(881), + [aux_sym_security_key_provider_token1] = ACTIONS(881), + [aux_sym_send_env_token1] = ACTIONS(881), + [aux_sym_server_alive_count_max_token1] = ACTIONS(881), + [aux_sym_server_alive_interval_token1] = ACTIONS(881), + [aux_sym_session_type_token1] = ACTIONS(881), + [aux_sym_set_env_token1] = ACTIONS(881), + [aux_sym_stdin_null_token1] = ACTIONS(881), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(881), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(881), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(881), + [aux_sym_syslog_facility_token1] = ACTIONS(881), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(881), + [aux_sym_keep_alive_token1] = ACTIONS(881), + [aux_sym_tag_token1] = ACTIONS(881), + [aux_sym_tunnel_token1] = ACTIONS(883), + [aux_sym_tunnel_device_token1] = ACTIONS(881), + [aux_sym_update_host_keys_token1] = ACTIONS(881), + [aux_sym_use_keychain_token1] = ACTIONS(881), + [aux_sym_use_roaming_token1] = ACTIONS(881), + [aux_sym_user_token1] = ACTIONS(883), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(881), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(881), + [aux_sym_visual_host_key_token1] = ACTIONS(881), + [aux_sym_xauth_location_token1] = ACTIONS(881), }, [54] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(884), - [anon_sym_DQUOTE] = ACTIONS(886), - [aux_sym_match_token1] = ACTIONS(882), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(882), - [aux_sym_address_family_token1] = ACTIONS(882), - [aux_sym_batch_mode_token1] = ACTIONS(882), - [aux_sym_bind_address_token1] = ACTIONS(882), - [aux_sym_bind_interface_token1] = ACTIONS(882), - [aux_sym_canonical_domains_token1] = ACTIONS(882), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(882), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(882), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(882), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(882), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(882), - [aux_sym_certificate_file_token1] = ACTIONS(882), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(882), - [aux_sym_channel_timeout_token1] = ACTIONS(882), - [aux_sym_check_host_ip_token1] = ACTIONS(882), - [aux_sym_ciphers_token1] = ACTIONS(882), - [aux_sym_cipher_token1] = ACTIONS(884), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(882), - [aux_sym_compression_token1] = ACTIONS(882), - [aux_sym_connection_attempts_token1] = ACTIONS(882), - [aux_sym_connect_timeout_token1] = ACTIONS(882), - [aux_sym_control_master_token1] = ACTIONS(882), - [aux_sym_control_path_token1] = ACTIONS(882), - [aux_sym_control_persist_token1] = ACTIONS(882), - [aux_sym_dynamic_forward_token1] = ACTIONS(882), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(882), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(882), - [aux_sym_escape_char_token1] = ACTIONS(882), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(882), - [aux_sym_fingerprint_hash_token1] = ACTIONS(882), - [aux_sym_fork_after_authentication_token1] = ACTIONS(882), - [aux_sym_forward_agent_token1] = ACTIONS(882), - [aux_sym_forward_x11_token1] = ACTIONS(884), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(882), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(882), - [aux_sym_gateway_ports_token1] = ACTIONS(882), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(882), - [aux_sym_gssapi_authentication_token1] = ACTIONS(882), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(882), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(882), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(882), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(882), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(882), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(882), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(882), - [aux_sym_hash_known_hosts_token1] = ACTIONS(882), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(882), - [aux_sym_hostbased_authentication_token1] = ACTIONS(882), - [aux_sym_host_key_algorithms_token1] = ACTIONS(882), - [aux_sym_host_key_alias_token1] = ACTIONS(882), - [aux_sym_hostname_token1] = ACTIONS(882), - [aux_sym_identities_only_token1] = ACTIONS(882), - [aux_sym_identity_agent_token1] = ACTIONS(882), - [aux_sym_identity_file_token1] = ACTIONS(882), - [aux_sym_ignore_unknown_token1] = ACTIONS(882), - [aux_sym_include_token1] = ACTIONS(882), - [aux_sym_ip_qos_token1] = ACTIONS(882), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(882), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(882), - [aux_sym_kex_algorithms_token1] = ACTIONS(882), - [aux_sym_known_hosts_command_token1] = ACTIONS(882), - [aux_sym_local_command_token1] = ACTIONS(882), - [aux_sym_local_forward_token1] = ACTIONS(882), - [aux_sym_log_level_token1] = ACTIONS(882), - [aux_sym_log_verbose_token1] = ACTIONS(882), - [aux_sym_macs_token1] = ACTIONS(882), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(882), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(882), - [aux_sym_password_authentication_token1] = ACTIONS(882), - [aux_sym_permit_local_command_token1] = ACTIONS(882), - [aux_sym_permit_remote_open_token1] = ACTIONS(882), - [aux_sym_pkcs11_provider_token1] = ACTIONS(882), - [aux_sym_port_token1] = ACTIONS(882), - [aux_sym_preferred_authentications_token1] = ACTIONS(882), - [aux_sym_protocol_token1] = ACTIONS(882), - [aux_sym_proxy_command_token1] = ACTIONS(882), - [aux_sym_proxy_jump_token1] = ACTIONS(882), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(882), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(882), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(882), - [aux_sym_pubkey_authentication_token1] = ACTIONS(882), - [aux_sym_rekey_limit_token1] = ACTIONS(882), - [aux_sym_remote_command_token1] = ACTIONS(882), - [aux_sym_remote_forward_token1] = ACTIONS(882), - [aux_sym_request_tty_token1] = ACTIONS(882), - [aux_sym_required_rsa_size_token1] = ACTIONS(882), - [aux_sym_revoked_host_keys_token1] = ACTIONS(882), - [aux_sym_security_key_provider_token1] = ACTIONS(882), - [aux_sym_send_env_token1] = ACTIONS(882), - [aux_sym_server_alive_count_max_token1] = ACTIONS(882), - [aux_sym_server_alive_interval_token1] = ACTIONS(882), - [aux_sym_session_type_token1] = ACTIONS(882), - [aux_sym_set_env_token1] = ACTIONS(882), - [aux_sym_stdin_null_token1] = ACTIONS(882), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(882), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(882), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(882), - [aux_sym_syslog_facility_token1] = ACTIONS(882), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(882), - [aux_sym_keep_alive_token1] = ACTIONS(882), - [aux_sym_tag_token1] = ACTIONS(882), - [aux_sym_tunnel_token1] = ACTIONS(884), - [aux_sym_tunnel_device_token1] = ACTIONS(882), - [aux_sym_update_host_keys_token1] = ACTIONS(882), - [aux_sym_use_keychain_token1] = ACTIONS(882), - [aux_sym_use_roaming_token1] = ACTIONS(882), - [aux_sym_user_token1] = ACTIONS(884), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(882), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(882), - [aux_sym_visual_host_key_token1] = ACTIONS(882), - [aux_sym_xauth_location_token1] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(887), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(889), + [anon_sym_DQUOTE] = ACTIONS(891), + [aux_sym_match_token1] = ACTIONS(887), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(887), + [aux_sym_address_family_token1] = ACTIONS(887), + [aux_sym_batch_mode_token1] = ACTIONS(887), + [aux_sym_bind_address_token1] = ACTIONS(887), + [aux_sym_bind_interface_token1] = ACTIONS(887), + [aux_sym_canonical_domains_token1] = ACTIONS(887), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(887), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(887), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(887), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(887), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(887), + [aux_sym_certificate_file_token1] = ACTIONS(887), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(887), + [aux_sym_channel_timeout_token1] = ACTIONS(887), + [aux_sym_check_host_ip_token1] = ACTIONS(887), + [aux_sym_ciphers_token1] = ACTIONS(887), + [aux_sym_cipher_token1] = ACTIONS(889), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(887), + [aux_sym_compression_token1] = ACTIONS(887), + [aux_sym_connection_attempts_token1] = ACTIONS(887), + [aux_sym_connect_timeout_token1] = ACTIONS(887), + [aux_sym_control_master_token1] = ACTIONS(887), + [aux_sym_control_path_token1] = ACTIONS(887), + [aux_sym_control_persist_token1] = ACTIONS(887), + [aux_sym_dynamic_forward_token1] = ACTIONS(887), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(887), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(887), + [aux_sym_escape_char_token1] = ACTIONS(887), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(887), + [aux_sym_fingerprint_hash_token1] = ACTIONS(887), + [aux_sym_fork_after_authentication_token1] = ACTIONS(887), + [aux_sym_forward_agent_token1] = ACTIONS(887), + [aux_sym_forward_x11_token1] = ACTIONS(889), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(887), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(887), + [aux_sym_gateway_ports_token1] = ACTIONS(887), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(887), + [aux_sym_gssapi_authentication_token1] = ACTIONS(887), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(887), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(887), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(887), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(887), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(887), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(887), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(887), + [aux_sym_hash_known_hosts_token1] = ACTIONS(887), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(887), + [aux_sym_hostbased_authentication_token1] = ACTIONS(887), + [aux_sym_host_key_algorithms_token1] = ACTIONS(887), + [aux_sym_host_key_alias_token1] = ACTIONS(887), + [aux_sym_hostname_token1] = ACTIONS(887), + [aux_sym_identities_only_token1] = ACTIONS(887), + [aux_sym_identity_agent_token1] = ACTIONS(887), + [aux_sym_identity_file_token1] = ACTIONS(887), + [aux_sym_ignore_unknown_token1] = ACTIONS(887), + [aux_sym_include_token1] = ACTIONS(887), + [aux_sym_ip_qos_token1] = ACTIONS(887), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(887), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(887), + [aux_sym_kex_algorithms_token1] = ACTIONS(887), + [aux_sym_known_hosts_command_token1] = ACTIONS(887), + [aux_sym_local_command_token1] = ACTIONS(887), + [aux_sym_local_forward_token1] = ACTIONS(887), + [aux_sym_log_level_token1] = ACTIONS(887), + [aux_sym_log_verbose_token1] = ACTIONS(887), + [aux_sym_macs_token1] = ACTIONS(887), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(887), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(887), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(887), + [aux_sym_password_authentication_token1] = ACTIONS(887), + [aux_sym_permit_local_command_token1] = ACTIONS(887), + [aux_sym_permit_remote_open_token1] = ACTIONS(887), + [aux_sym_pkcs11_provider_token1] = ACTIONS(887), + [aux_sym_port_token1] = ACTIONS(887), + [aux_sym_preferred_authentications_token1] = ACTIONS(887), + [aux_sym_protocol_token1] = ACTIONS(887), + [aux_sym_proxy_command_token1] = ACTIONS(887), + [aux_sym_proxy_jump_token1] = ACTIONS(887), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(887), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(887), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(887), + [aux_sym_pubkey_authentication_token1] = ACTIONS(887), + [aux_sym_rekey_limit_token1] = ACTIONS(887), + [aux_sym_remote_command_token1] = ACTIONS(887), + [aux_sym_remote_forward_token1] = ACTIONS(887), + [aux_sym_request_tty_token1] = ACTIONS(887), + [aux_sym_required_rsa_size_token1] = ACTIONS(887), + [aux_sym_revoked_host_keys_token1] = ACTIONS(887), + [aux_sym_security_key_provider_token1] = ACTIONS(887), + [aux_sym_send_env_token1] = ACTIONS(887), + [aux_sym_server_alive_count_max_token1] = ACTIONS(887), + [aux_sym_server_alive_interval_token1] = ACTIONS(887), + [aux_sym_session_type_token1] = ACTIONS(887), + [aux_sym_set_env_token1] = ACTIONS(887), + [aux_sym_stdin_null_token1] = ACTIONS(887), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(887), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(887), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(887), + [aux_sym_syslog_facility_token1] = ACTIONS(887), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(887), + [aux_sym_keep_alive_token1] = ACTIONS(887), + [aux_sym_tag_token1] = ACTIONS(887), + [aux_sym_tunnel_token1] = ACTIONS(889), + [aux_sym_tunnel_device_token1] = ACTIONS(887), + [aux_sym_update_host_keys_token1] = ACTIONS(887), + [aux_sym_use_keychain_token1] = ACTIONS(887), + [aux_sym_use_roaming_token1] = ACTIONS(887), + [aux_sym_user_token1] = ACTIONS(889), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(887), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(887), + [aux_sym_visual_host_key_token1] = ACTIONS(887), + [aux_sym_xauth_location_token1] = ACTIONS(887), }, [55] = { - [ts_builtin_sym_end] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(890), - [anon_sym_DQUOTE] = ACTIONS(892), - [aux_sym_match_token1] = ACTIONS(888), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(888), - [aux_sym_address_family_token1] = ACTIONS(888), - [aux_sym_batch_mode_token1] = ACTIONS(888), - [aux_sym_bind_address_token1] = ACTIONS(888), - [aux_sym_bind_interface_token1] = ACTIONS(888), - [aux_sym_canonical_domains_token1] = ACTIONS(888), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(888), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(888), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(888), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(888), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(888), - [aux_sym_certificate_file_token1] = ACTIONS(888), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(888), - [aux_sym_channel_timeout_token1] = ACTIONS(888), - [aux_sym_check_host_ip_token1] = ACTIONS(888), - [aux_sym_ciphers_token1] = ACTIONS(888), - [aux_sym_cipher_token1] = ACTIONS(890), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(888), - [aux_sym_compression_token1] = ACTIONS(888), - [aux_sym_connection_attempts_token1] = ACTIONS(888), - [aux_sym_connect_timeout_token1] = ACTIONS(888), - [aux_sym_control_master_token1] = ACTIONS(888), - [aux_sym_control_path_token1] = ACTIONS(888), - [aux_sym_control_persist_token1] = ACTIONS(888), - [aux_sym_dynamic_forward_token1] = ACTIONS(888), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(888), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(888), - [aux_sym_escape_char_token1] = ACTIONS(888), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(888), - [aux_sym_fingerprint_hash_token1] = ACTIONS(888), - [aux_sym_fork_after_authentication_token1] = ACTIONS(888), - [aux_sym_forward_agent_token1] = ACTIONS(888), - [aux_sym_forward_x11_token1] = ACTIONS(890), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(888), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(888), - [aux_sym_gateway_ports_token1] = ACTIONS(888), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(888), - [aux_sym_gssapi_authentication_token1] = ACTIONS(888), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(888), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(888), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(888), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(888), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(888), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(888), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(888), - [aux_sym_hash_known_hosts_token1] = ACTIONS(888), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(888), - [aux_sym_hostbased_authentication_token1] = ACTIONS(888), - [aux_sym_host_key_algorithms_token1] = ACTIONS(888), - [aux_sym_host_key_alias_token1] = ACTIONS(888), - [aux_sym_hostname_token1] = ACTIONS(888), - [aux_sym_identities_only_token1] = ACTIONS(888), - [aux_sym_identity_agent_token1] = ACTIONS(888), - [aux_sym_identity_file_token1] = ACTIONS(888), - [aux_sym_ignore_unknown_token1] = ACTIONS(888), - [aux_sym_include_token1] = ACTIONS(888), - [aux_sym_ip_qos_token1] = ACTIONS(888), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(888), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(888), - [aux_sym_kex_algorithms_token1] = ACTIONS(888), - [aux_sym_known_hosts_command_token1] = ACTIONS(888), - [aux_sym_local_command_token1] = ACTIONS(888), - [aux_sym_local_forward_token1] = ACTIONS(888), - [aux_sym_log_level_token1] = ACTIONS(888), - [aux_sym_log_verbose_token1] = ACTIONS(888), - [aux_sym_macs_token1] = ACTIONS(888), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(888), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(888), - [aux_sym_password_authentication_token1] = ACTIONS(888), - [aux_sym_permit_local_command_token1] = ACTIONS(888), - [aux_sym_permit_remote_open_token1] = ACTIONS(888), - [aux_sym_pkcs11_provider_token1] = ACTIONS(888), - [aux_sym_port_token1] = ACTIONS(888), - [aux_sym_preferred_authentications_token1] = ACTIONS(888), - [aux_sym_protocol_token1] = ACTIONS(888), - [aux_sym_proxy_command_token1] = ACTIONS(888), - [aux_sym_proxy_jump_token1] = ACTIONS(888), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(888), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(888), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(888), - [aux_sym_pubkey_authentication_token1] = ACTIONS(888), - [aux_sym_rekey_limit_token1] = ACTIONS(888), - [aux_sym_remote_command_token1] = ACTIONS(888), - [aux_sym_remote_forward_token1] = ACTIONS(888), - [aux_sym_request_tty_token1] = ACTIONS(888), - [aux_sym_required_rsa_size_token1] = ACTIONS(888), - [aux_sym_revoked_host_keys_token1] = ACTIONS(888), - [aux_sym_security_key_provider_token1] = ACTIONS(888), - [aux_sym_send_env_token1] = ACTIONS(888), - [aux_sym_server_alive_count_max_token1] = ACTIONS(888), - [aux_sym_server_alive_interval_token1] = ACTIONS(888), - [aux_sym_session_type_token1] = ACTIONS(888), - [aux_sym_set_env_token1] = ACTIONS(888), - [aux_sym_stdin_null_token1] = ACTIONS(888), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(888), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(888), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(888), - [aux_sym_syslog_facility_token1] = ACTIONS(888), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(888), - [aux_sym_keep_alive_token1] = ACTIONS(888), - [aux_sym_tag_token1] = ACTIONS(888), - [aux_sym_tunnel_token1] = ACTIONS(890), - [aux_sym_tunnel_device_token1] = ACTIONS(888), - [aux_sym_update_host_keys_token1] = ACTIONS(888), - [aux_sym_use_keychain_token1] = ACTIONS(888), - [aux_sym_use_roaming_token1] = ACTIONS(888), - [aux_sym_user_token1] = ACTIONS(890), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(888), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(888), - [aux_sym_visual_host_key_token1] = ACTIONS(888), - [aux_sym_xauth_location_token1] = ACTIONS(888), + [ts_builtin_sym_end] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(897), + [aux_sym_match_token1] = ACTIONS(893), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(893), + [aux_sym_address_family_token1] = ACTIONS(893), + [aux_sym_batch_mode_token1] = ACTIONS(893), + [aux_sym_bind_address_token1] = ACTIONS(893), + [aux_sym_bind_interface_token1] = ACTIONS(893), + [aux_sym_canonical_domains_token1] = ACTIONS(893), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(893), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(893), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(893), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(893), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(893), + [aux_sym_certificate_file_token1] = ACTIONS(893), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(893), + [aux_sym_channel_timeout_token1] = ACTIONS(893), + [aux_sym_check_host_ip_token1] = ACTIONS(893), + [aux_sym_ciphers_token1] = ACTIONS(893), + [aux_sym_cipher_token1] = ACTIONS(895), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(893), + [aux_sym_compression_token1] = ACTIONS(893), + [aux_sym_connection_attempts_token1] = ACTIONS(893), + [aux_sym_connect_timeout_token1] = ACTIONS(893), + [aux_sym_control_master_token1] = ACTIONS(893), + [aux_sym_control_path_token1] = ACTIONS(893), + [aux_sym_control_persist_token1] = ACTIONS(893), + [aux_sym_dynamic_forward_token1] = ACTIONS(893), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(893), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(893), + [aux_sym_escape_char_token1] = ACTIONS(893), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(893), + [aux_sym_fingerprint_hash_token1] = ACTIONS(893), + [aux_sym_fork_after_authentication_token1] = ACTIONS(893), + [aux_sym_forward_agent_token1] = ACTIONS(893), + [aux_sym_forward_x11_token1] = ACTIONS(895), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(893), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(893), + [aux_sym_gateway_ports_token1] = ACTIONS(893), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(893), + [aux_sym_gssapi_authentication_token1] = ACTIONS(893), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(893), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(893), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(893), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(893), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(893), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(893), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(893), + [aux_sym_hash_known_hosts_token1] = ACTIONS(893), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(893), + [aux_sym_hostbased_authentication_token1] = ACTIONS(893), + [aux_sym_host_key_algorithms_token1] = ACTIONS(893), + [aux_sym_host_key_alias_token1] = ACTIONS(893), + [aux_sym_hostname_token1] = ACTIONS(893), + [aux_sym_identities_only_token1] = ACTIONS(893), + [aux_sym_identity_agent_token1] = ACTIONS(893), + [aux_sym_identity_file_token1] = ACTIONS(893), + [aux_sym_ignore_unknown_token1] = ACTIONS(893), + [aux_sym_include_token1] = ACTIONS(893), + [aux_sym_ip_qos_token1] = ACTIONS(893), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(893), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(893), + [aux_sym_kex_algorithms_token1] = ACTIONS(893), + [aux_sym_known_hosts_command_token1] = ACTIONS(893), + [aux_sym_local_command_token1] = ACTIONS(893), + [aux_sym_local_forward_token1] = ACTIONS(893), + [aux_sym_log_level_token1] = ACTIONS(893), + [aux_sym_log_verbose_token1] = ACTIONS(893), + [aux_sym_macs_token1] = ACTIONS(893), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(893), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(893), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(893), + [aux_sym_password_authentication_token1] = ACTIONS(893), + [aux_sym_permit_local_command_token1] = ACTIONS(893), + [aux_sym_permit_remote_open_token1] = ACTIONS(893), + [aux_sym_pkcs11_provider_token1] = ACTIONS(893), + [aux_sym_port_token1] = ACTIONS(893), + [aux_sym_preferred_authentications_token1] = ACTIONS(893), + [aux_sym_protocol_token1] = ACTIONS(893), + [aux_sym_proxy_command_token1] = ACTIONS(893), + [aux_sym_proxy_jump_token1] = ACTIONS(893), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(893), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(893), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(893), + [aux_sym_pubkey_authentication_token1] = ACTIONS(893), + [aux_sym_rekey_limit_token1] = ACTIONS(893), + [aux_sym_remote_command_token1] = ACTIONS(893), + [aux_sym_remote_forward_token1] = ACTIONS(893), + [aux_sym_request_tty_token1] = ACTIONS(893), + [aux_sym_required_rsa_size_token1] = ACTIONS(893), + [aux_sym_revoked_host_keys_token1] = ACTIONS(893), + [aux_sym_security_key_provider_token1] = ACTIONS(893), + [aux_sym_send_env_token1] = ACTIONS(893), + [aux_sym_server_alive_count_max_token1] = ACTIONS(893), + [aux_sym_server_alive_interval_token1] = ACTIONS(893), + [aux_sym_session_type_token1] = ACTIONS(893), + [aux_sym_set_env_token1] = ACTIONS(893), + [aux_sym_stdin_null_token1] = ACTIONS(893), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(893), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(893), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(893), + [aux_sym_syslog_facility_token1] = ACTIONS(893), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(893), + [aux_sym_keep_alive_token1] = ACTIONS(893), + [aux_sym_tag_token1] = ACTIONS(893), + [aux_sym_tunnel_token1] = ACTIONS(895), + [aux_sym_tunnel_device_token1] = ACTIONS(893), + [aux_sym_update_host_keys_token1] = ACTIONS(893), + [aux_sym_use_keychain_token1] = ACTIONS(893), + [aux_sym_use_roaming_token1] = ACTIONS(893), + [aux_sym_user_token1] = ACTIONS(895), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(893), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(893), + [aux_sym_visual_host_key_token1] = ACTIONS(893), + [aux_sym_xauth_location_token1] = ACTIONS(893), }, [56] = { - [ts_builtin_sym_end] = ACTIONS(894), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(896), - [anon_sym_DQUOTE] = ACTIONS(898), - [aux_sym_match_token1] = ACTIONS(894), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(894), - [aux_sym_address_family_token1] = ACTIONS(894), - [aux_sym_batch_mode_token1] = ACTIONS(894), - [aux_sym_bind_address_token1] = ACTIONS(894), - [aux_sym_bind_interface_token1] = ACTIONS(894), - [aux_sym_canonical_domains_token1] = ACTIONS(894), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(894), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(894), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(894), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(894), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(894), - [aux_sym_certificate_file_token1] = ACTIONS(894), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(894), - [aux_sym_channel_timeout_token1] = ACTIONS(894), - [aux_sym_check_host_ip_token1] = ACTIONS(894), - [aux_sym_ciphers_token1] = ACTIONS(894), - [aux_sym_cipher_token1] = ACTIONS(896), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(894), - [aux_sym_compression_token1] = ACTIONS(894), - [aux_sym_connection_attempts_token1] = ACTIONS(894), - [aux_sym_connect_timeout_token1] = ACTIONS(894), - [aux_sym_control_master_token1] = ACTIONS(894), - [aux_sym_control_path_token1] = ACTIONS(894), - [aux_sym_control_persist_token1] = ACTIONS(894), - [aux_sym_dynamic_forward_token1] = ACTIONS(894), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(894), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(894), - [aux_sym_escape_char_token1] = ACTIONS(894), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(894), - [aux_sym_fingerprint_hash_token1] = ACTIONS(894), - [aux_sym_fork_after_authentication_token1] = ACTIONS(894), - [aux_sym_forward_agent_token1] = ACTIONS(894), - [aux_sym_forward_x11_token1] = ACTIONS(896), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(894), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(894), - [aux_sym_gateway_ports_token1] = ACTIONS(894), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(894), - [aux_sym_gssapi_authentication_token1] = ACTIONS(894), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(894), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(894), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(894), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(894), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(894), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(894), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(894), - [aux_sym_hash_known_hosts_token1] = ACTIONS(894), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(894), - [aux_sym_hostbased_authentication_token1] = ACTIONS(894), - [aux_sym_host_key_algorithms_token1] = ACTIONS(894), - [aux_sym_host_key_alias_token1] = ACTIONS(894), - [aux_sym_hostname_token1] = ACTIONS(894), - [aux_sym_identities_only_token1] = ACTIONS(894), - [aux_sym_identity_agent_token1] = ACTIONS(894), - [aux_sym_identity_file_token1] = ACTIONS(894), - [aux_sym_ignore_unknown_token1] = ACTIONS(894), - [aux_sym_include_token1] = ACTIONS(894), - [aux_sym_ip_qos_token1] = ACTIONS(894), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(894), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(894), - [aux_sym_kex_algorithms_token1] = ACTIONS(894), - [aux_sym_known_hosts_command_token1] = ACTIONS(894), - [aux_sym_local_command_token1] = ACTIONS(894), - [aux_sym_local_forward_token1] = ACTIONS(894), - [aux_sym_log_level_token1] = ACTIONS(894), - [aux_sym_log_verbose_token1] = ACTIONS(894), - [aux_sym_macs_token1] = ACTIONS(894), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(894), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(894), - [aux_sym_password_authentication_token1] = ACTIONS(894), - [aux_sym_permit_local_command_token1] = ACTIONS(894), - [aux_sym_permit_remote_open_token1] = ACTIONS(894), - [aux_sym_pkcs11_provider_token1] = ACTIONS(894), - [aux_sym_port_token1] = ACTIONS(894), - [aux_sym_preferred_authentications_token1] = ACTIONS(894), - [aux_sym_protocol_token1] = ACTIONS(894), - [aux_sym_proxy_command_token1] = ACTIONS(894), - [aux_sym_proxy_jump_token1] = ACTIONS(894), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(894), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(894), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(894), - [aux_sym_pubkey_authentication_token1] = ACTIONS(894), - [aux_sym_rekey_limit_token1] = ACTIONS(894), - [aux_sym_remote_command_token1] = ACTIONS(894), - [aux_sym_remote_forward_token1] = ACTIONS(894), - [aux_sym_request_tty_token1] = ACTIONS(894), - [aux_sym_required_rsa_size_token1] = ACTIONS(894), - [aux_sym_revoked_host_keys_token1] = ACTIONS(894), - [aux_sym_security_key_provider_token1] = ACTIONS(894), - [aux_sym_send_env_token1] = ACTIONS(894), - [aux_sym_server_alive_count_max_token1] = ACTIONS(894), - [aux_sym_server_alive_interval_token1] = ACTIONS(894), - [aux_sym_session_type_token1] = ACTIONS(894), - [aux_sym_set_env_token1] = ACTIONS(894), - [aux_sym_stdin_null_token1] = ACTIONS(894), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(894), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(894), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(894), - [aux_sym_syslog_facility_token1] = ACTIONS(894), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(894), - [aux_sym_keep_alive_token1] = ACTIONS(894), - [aux_sym_tag_token1] = ACTIONS(894), - [aux_sym_tunnel_token1] = ACTIONS(896), - [aux_sym_tunnel_device_token1] = ACTIONS(894), - [aux_sym_update_host_keys_token1] = ACTIONS(894), - [aux_sym_use_keychain_token1] = ACTIONS(894), - [aux_sym_use_roaming_token1] = ACTIONS(894), - [aux_sym_user_token1] = ACTIONS(896), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(894), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(894), - [aux_sym_visual_host_key_token1] = ACTIONS(894), - [aux_sym_xauth_location_token1] = ACTIONS(894), + [ts_builtin_sym_end] = ACTIONS(899), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(903), + [aux_sym_match_token1] = ACTIONS(899), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(899), + [aux_sym_address_family_token1] = ACTIONS(899), + [aux_sym_batch_mode_token1] = ACTIONS(899), + [aux_sym_bind_address_token1] = ACTIONS(899), + [aux_sym_bind_interface_token1] = ACTIONS(899), + [aux_sym_canonical_domains_token1] = ACTIONS(899), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(899), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(899), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(899), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(899), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(899), + [aux_sym_certificate_file_token1] = ACTIONS(899), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(899), + [aux_sym_channel_timeout_token1] = ACTIONS(899), + [aux_sym_check_host_ip_token1] = ACTIONS(899), + [aux_sym_ciphers_token1] = ACTIONS(899), + [aux_sym_cipher_token1] = ACTIONS(901), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(899), + [aux_sym_compression_token1] = ACTIONS(899), + [aux_sym_connection_attempts_token1] = ACTIONS(899), + [aux_sym_connect_timeout_token1] = ACTIONS(899), + [aux_sym_control_master_token1] = ACTIONS(899), + [aux_sym_control_path_token1] = ACTIONS(899), + [aux_sym_control_persist_token1] = ACTIONS(899), + [aux_sym_dynamic_forward_token1] = ACTIONS(899), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(899), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(899), + [aux_sym_escape_char_token1] = ACTIONS(899), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(899), + [aux_sym_fingerprint_hash_token1] = ACTIONS(899), + [aux_sym_fork_after_authentication_token1] = ACTIONS(899), + [aux_sym_forward_agent_token1] = ACTIONS(899), + [aux_sym_forward_x11_token1] = ACTIONS(901), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(899), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(899), + [aux_sym_gateway_ports_token1] = ACTIONS(899), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(899), + [aux_sym_gssapi_authentication_token1] = ACTIONS(899), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(899), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(899), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(899), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(899), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(899), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(899), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(899), + [aux_sym_hash_known_hosts_token1] = ACTIONS(899), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(899), + [aux_sym_hostbased_authentication_token1] = ACTIONS(899), + [aux_sym_host_key_algorithms_token1] = ACTIONS(899), + [aux_sym_host_key_alias_token1] = ACTIONS(899), + [aux_sym_hostname_token1] = ACTIONS(899), + [aux_sym_identities_only_token1] = ACTIONS(899), + [aux_sym_identity_agent_token1] = ACTIONS(899), + [aux_sym_identity_file_token1] = ACTIONS(899), + [aux_sym_ignore_unknown_token1] = ACTIONS(899), + [aux_sym_include_token1] = ACTIONS(899), + [aux_sym_ip_qos_token1] = ACTIONS(899), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(899), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(899), + [aux_sym_kex_algorithms_token1] = ACTIONS(899), + [aux_sym_known_hosts_command_token1] = ACTIONS(899), + [aux_sym_local_command_token1] = ACTIONS(899), + [aux_sym_local_forward_token1] = ACTIONS(899), + [aux_sym_log_level_token1] = ACTIONS(899), + [aux_sym_log_verbose_token1] = ACTIONS(899), + [aux_sym_macs_token1] = ACTIONS(899), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(899), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(899), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(899), + [aux_sym_password_authentication_token1] = ACTIONS(899), + [aux_sym_permit_local_command_token1] = ACTIONS(899), + [aux_sym_permit_remote_open_token1] = ACTIONS(899), + [aux_sym_pkcs11_provider_token1] = ACTIONS(899), + [aux_sym_port_token1] = ACTIONS(899), + [aux_sym_preferred_authentications_token1] = ACTIONS(899), + [aux_sym_protocol_token1] = ACTIONS(899), + [aux_sym_proxy_command_token1] = ACTIONS(899), + [aux_sym_proxy_jump_token1] = ACTIONS(899), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(899), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(899), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(899), + [aux_sym_pubkey_authentication_token1] = ACTIONS(899), + [aux_sym_rekey_limit_token1] = ACTIONS(899), + [aux_sym_remote_command_token1] = ACTIONS(899), + [aux_sym_remote_forward_token1] = ACTIONS(899), + [aux_sym_request_tty_token1] = ACTIONS(899), + [aux_sym_required_rsa_size_token1] = ACTIONS(899), + [aux_sym_revoked_host_keys_token1] = ACTIONS(899), + [aux_sym_security_key_provider_token1] = ACTIONS(899), + [aux_sym_send_env_token1] = ACTIONS(899), + [aux_sym_server_alive_count_max_token1] = ACTIONS(899), + [aux_sym_server_alive_interval_token1] = ACTIONS(899), + [aux_sym_session_type_token1] = ACTIONS(899), + [aux_sym_set_env_token1] = ACTIONS(899), + [aux_sym_stdin_null_token1] = ACTIONS(899), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(899), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(899), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(899), + [aux_sym_syslog_facility_token1] = ACTIONS(899), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(899), + [aux_sym_keep_alive_token1] = ACTIONS(899), + [aux_sym_tag_token1] = ACTIONS(899), + [aux_sym_tunnel_token1] = ACTIONS(901), + [aux_sym_tunnel_device_token1] = ACTIONS(899), + [aux_sym_update_host_keys_token1] = ACTIONS(899), + [aux_sym_use_keychain_token1] = ACTIONS(899), + [aux_sym_use_roaming_token1] = ACTIONS(899), + [aux_sym_user_token1] = ACTIONS(901), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(899), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(899), + [aux_sym_visual_host_key_token1] = ACTIONS(899), + [aux_sym_xauth_location_token1] = ACTIONS(899), }, [57] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(902), - [anon_sym_DQUOTE] = ACTIONS(904), - [aux_sym_match_token1] = ACTIONS(900), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(900), - [aux_sym_address_family_token1] = ACTIONS(900), - [aux_sym_batch_mode_token1] = ACTIONS(900), - [aux_sym_bind_address_token1] = ACTIONS(900), - [aux_sym_bind_interface_token1] = ACTIONS(900), - [aux_sym_canonical_domains_token1] = ACTIONS(900), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(900), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(900), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(900), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(900), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(900), - [aux_sym_certificate_file_token1] = ACTIONS(900), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(900), - [aux_sym_channel_timeout_token1] = ACTIONS(900), - [aux_sym_check_host_ip_token1] = ACTIONS(900), - [aux_sym_ciphers_token1] = ACTIONS(900), - [aux_sym_cipher_token1] = ACTIONS(902), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(900), - [aux_sym_compression_token1] = ACTIONS(900), - [aux_sym_connection_attempts_token1] = ACTIONS(900), - [aux_sym_connect_timeout_token1] = ACTIONS(900), - [aux_sym_control_master_token1] = ACTIONS(900), - [aux_sym_control_path_token1] = ACTIONS(900), - [aux_sym_control_persist_token1] = ACTIONS(900), - [aux_sym_dynamic_forward_token1] = ACTIONS(900), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(900), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(900), - [aux_sym_escape_char_token1] = ACTIONS(900), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(900), - [aux_sym_fingerprint_hash_token1] = ACTIONS(900), - [aux_sym_fork_after_authentication_token1] = ACTIONS(900), - [aux_sym_forward_agent_token1] = ACTIONS(900), - [aux_sym_forward_x11_token1] = ACTIONS(902), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(900), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(900), - [aux_sym_gateway_ports_token1] = ACTIONS(900), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(900), - [aux_sym_gssapi_authentication_token1] = ACTIONS(900), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(900), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(900), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(900), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(900), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(900), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(900), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(900), - [aux_sym_hash_known_hosts_token1] = ACTIONS(900), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(900), - [aux_sym_hostbased_authentication_token1] = ACTIONS(900), - [aux_sym_host_key_algorithms_token1] = ACTIONS(900), - [aux_sym_host_key_alias_token1] = ACTIONS(900), - [aux_sym_hostname_token1] = ACTIONS(900), - [aux_sym_identities_only_token1] = ACTIONS(900), - [aux_sym_identity_agent_token1] = ACTIONS(900), - [aux_sym_identity_file_token1] = ACTIONS(900), - [aux_sym_ignore_unknown_token1] = ACTIONS(900), - [aux_sym_include_token1] = ACTIONS(900), - [aux_sym_ip_qos_token1] = ACTIONS(900), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(900), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(900), - [aux_sym_kex_algorithms_token1] = ACTIONS(900), - [aux_sym_known_hosts_command_token1] = ACTIONS(900), - [aux_sym_local_command_token1] = ACTIONS(900), - [aux_sym_local_forward_token1] = ACTIONS(900), - [aux_sym_log_level_token1] = ACTIONS(900), - [aux_sym_log_verbose_token1] = ACTIONS(900), - [aux_sym_macs_token1] = ACTIONS(900), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(900), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(900), - [aux_sym_password_authentication_token1] = ACTIONS(900), - [aux_sym_permit_local_command_token1] = ACTIONS(900), - [aux_sym_permit_remote_open_token1] = ACTIONS(900), - [aux_sym_pkcs11_provider_token1] = ACTIONS(900), - [aux_sym_port_token1] = ACTIONS(900), - [aux_sym_preferred_authentications_token1] = ACTIONS(900), - [aux_sym_protocol_token1] = ACTIONS(900), - [aux_sym_proxy_command_token1] = ACTIONS(900), - [aux_sym_proxy_jump_token1] = ACTIONS(900), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(900), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(900), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(900), - [aux_sym_pubkey_authentication_token1] = ACTIONS(900), - [aux_sym_rekey_limit_token1] = ACTIONS(900), - [aux_sym_remote_command_token1] = ACTIONS(900), - [aux_sym_remote_forward_token1] = ACTIONS(900), - [aux_sym_request_tty_token1] = ACTIONS(900), - [aux_sym_required_rsa_size_token1] = ACTIONS(900), - [aux_sym_revoked_host_keys_token1] = ACTIONS(900), - [aux_sym_security_key_provider_token1] = ACTIONS(900), - [aux_sym_send_env_token1] = ACTIONS(900), - [aux_sym_server_alive_count_max_token1] = ACTIONS(900), - [aux_sym_server_alive_interval_token1] = ACTIONS(900), - [aux_sym_session_type_token1] = ACTIONS(900), - [aux_sym_set_env_token1] = ACTIONS(900), - [aux_sym_stdin_null_token1] = ACTIONS(900), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(900), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(900), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(900), - [aux_sym_syslog_facility_token1] = ACTIONS(900), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(900), - [aux_sym_keep_alive_token1] = ACTIONS(900), - [aux_sym_tag_token1] = ACTIONS(900), - [aux_sym_tunnel_token1] = ACTIONS(902), - [aux_sym_tunnel_device_token1] = ACTIONS(900), - [aux_sym_update_host_keys_token1] = ACTIONS(900), - [aux_sym_use_keychain_token1] = ACTIONS(900), - [aux_sym_use_roaming_token1] = ACTIONS(900), - [aux_sym_user_token1] = ACTIONS(902), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(900), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(900), - [aux_sym_visual_host_key_token1] = ACTIONS(900), - [aux_sym_xauth_location_token1] = ACTIONS(900), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(907), + [anon_sym_DQUOTE] = ACTIONS(909), + [aux_sym_match_token1] = ACTIONS(905), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(905), + [aux_sym_address_family_token1] = ACTIONS(905), + [aux_sym_batch_mode_token1] = ACTIONS(905), + [aux_sym_bind_address_token1] = ACTIONS(905), + [aux_sym_bind_interface_token1] = ACTIONS(905), + [aux_sym_canonical_domains_token1] = ACTIONS(905), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(905), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(905), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(905), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(905), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(905), + [aux_sym_certificate_file_token1] = ACTIONS(905), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(905), + [aux_sym_channel_timeout_token1] = ACTIONS(905), + [aux_sym_check_host_ip_token1] = ACTIONS(905), + [aux_sym_ciphers_token1] = ACTIONS(905), + [aux_sym_cipher_token1] = ACTIONS(907), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(905), + [aux_sym_compression_token1] = ACTIONS(905), + [aux_sym_connection_attempts_token1] = ACTIONS(905), + [aux_sym_connect_timeout_token1] = ACTIONS(905), + [aux_sym_control_master_token1] = ACTIONS(905), + [aux_sym_control_path_token1] = ACTIONS(905), + [aux_sym_control_persist_token1] = ACTIONS(905), + [aux_sym_dynamic_forward_token1] = ACTIONS(905), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(905), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(905), + [aux_sym_escape_char_token1] = ACTIONS(905), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(905), + [aux_sym_fingerprint_hash_token1] = ACTIONS(905), + [aux_sym_fork_after_authentication_token1] = ACTIONS(905), + [aux_sym_forward_agent_token1] = ACTIONS(905), + [aux_sym_forward_x11_token1] = ACTIONS(907), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(905), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(905), + [aux_sym_gateway_ports_token1] = ACTIONS(905), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(905), + [aux_sym_gssapi_authentication_token1] = ACTIONS(905), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(905), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(905), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(905), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(905), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(905), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(905), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(905), + [aux_sym_hash_known_hosts_token1] = ACTIONS(905), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(905), + [aux_sym_hostbased_authentication_token1] = ACTIONS(905), + [aux_sym_host_key_algorithms_token1] = ACTIONS(905), + [aux_sym_host_key_alias_token1] = ACTIONS(905), + [aux_sym_hostname_token1] = ACTIONS(905), + [aux_sym_identities_only_token1] = ACTIONS(905), + [aux_sym_identity_agent_token1] = ACTIONS(905), + [aux_sym_identity_file_token1] = ACTIONS(905), + [aux_sym_ignore_unknown_token1] = ACTIONS(905), + [aux_sym_include_token1] = ACTIONS(905), + [aux_sym_ip_qos_token1] = ACTIONS(905), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(905), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(905), + [aux_sym_kex_algorithms_token1] = ACTIONS(905), + [aux_sym_known_hosts_command_token1] = ACTIONS(905), + [aux_sym_local_command_token1] = ACTIONS(905), + [aux_sym_local_forward_token1] = ACTIONS(905), + [aux_sym_log_level_token1] = ACTIONS(905), + [aux_sym_log_verbose_token1] = ACTIONS(905), + [aux_sym_macs_token1] = ACTIONS(905), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(905), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(905), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(905), + [aux_sym_password_authentication_token1] = ACTIONS(905), + [aux_sym_permit_local_command_token1] = ACTIONS(905), + [aux_sym_permit_remote_open_token1] = ACTIONS(905), + [aux_sym_pkcs11_provider_token1] = ACTIONS(905), + [aux_sym_port_token1] = ACTIONS(905), + [aux_sym_preferred_authentications_token1] = ACTIONS(905), + [aux_sym_protocol_token1] = ACTIONS(905), + [aux_sym_proxy_command_token1] = ACTIONS(905), + [aux_sym_proxy_jump_token1] = ACTIONS(905), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(905), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(905), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(905), + [aux_sym_pubkey_authentication_token1] = ACTIONS(905), + [aux_sym_rekey_limit_token1] = ACTIONS(905), + [aux_sym_remote_command_token1] = ACTIONS(905), + [aux_sym_remote_forward_token1] = ACTIONS(905), + [aux_sym_request_tty_token1] = ACTIONS(905), + [aux_sym_required_rsa_size_token1] = ACTIONS(905), + [aux_sym_revoked_host_keys_token1] = ACTIONS(905), + [aux_sym_security_key_provider_token1] = ACTIONS(905), + [aux_sym_send_env_token1] = ACTIONS(905), + [aux_sym_server_alive_count_max_token1] = ACTIONS(905), + [aux_sym_server_alive_interval_token1] = ACTIONS(905), + [aux_sym_session_type_token1] = ACTIONS(905), + [aux_sym_set_env_token1] = ACTIONS(905), + [aux_sym_stdin_null_token1] = ACTIONS(905), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(905), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(905), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(905), + [aux_sym_syslog_facility_token1] = ACTIONS(905), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(905), + [aux_sym_keep_alive_token1] = ACTIONS(905), + [aux_sym_tag_token1] = ACTIONS(905), + [aux_sym_tunnel_token1] = ACTIONS(907), + [aux_sym_tunnel_device_token1] = ACTIONS(905), + [aux_sym_update_host_keys_token1] = ACTIONS(905), + [aux_sym_use_keychain_token1] = ACTIONS(905), + [aux_sym_use_roaming_token1] = ACTIONS(905), + [aux_sym_user_token1] = ACTIONS(907), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(905), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(905), + [aux_sym_visual_host_key_token1] = ACTIONS(905), + [aux_sym_xauth_location_token1] = ACTIONS(905), }, [58] = { - [ts_builtin_sym_end] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(908), - [anon_sym_DQUOTE] = ACTIONS(910), - [aux_sym_match_token1] = ACTIONS(906), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(906), - [aux_sym_address_family_token1] = ACTIONS(906), - [aux_sym_batch_mode_token1] = ACTIONS(906), - [aux_sym_bind_address_token1] = ACTIONS(906), - [aux_sym_bind_interface_token1] = ACTIONS(906), - [aux_sym_canonical_domains_token1] = ACTIONS(906), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(906), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(906), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(906), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(906), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(906), - [aux_sym_certificate_file_token1] = ACTIONS(906), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(906), - [aux_sym_channel_timeout_token1] = ACTIONS(906), - [aux_sym_check_host_ip_token1] = ACTIONS(906), - [aux_sym_ciphers_token1] = ACTIONS(906), - [aux_sym_cipher_token1] = ACTIONS(908), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(906), - [aux_sym_compression_token1] = ACTIONS(906), - [aux_sym_connection_attempts_token1] = ACTIONS(906), - [aux_sym_connect_timeout_token1] = ACTIONS(906), - [aux_sym_control_master_token1] = ACTIONS(906), - [aux_sym_control_path_token1] = ACTIONS(906), - [aux_sym_control_persist_token1] = ACTIONS(906), - [aux_sym_dynamic_forward_token1] = ACTIONS(906), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(906), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(906), - [aux_sym_escape_char_token1] = ACTIONS(906), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(906), - [aux_sym_fingerprint_hash_token1] = ACTIONS(906), - [aux_sym_fork_after_authentication_token1] = ACTIONS(906), - [aux_sym_forward_agent_token1] = ACTIONS(906), - [aux_sym_forward_x11_token1] = ACTIONS(908), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(906), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(906), - [aux_sym_gateway_ports_token1] = ACTIONS(906), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(906), - [aux_sym_gssapi_authentication_token1] = ACTIONS(906), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(906), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(906), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(906), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(906), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(906), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(906), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(906), - [aux_sym_hash_known_hosts_token1] = ACTIONS(906), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(906), - [aux_sym_hostbased_authentication_token1] = ACTIONS(906), - [aux_sym_host_key_algorithms_token1] = ACTIONS(906), - [aux_sym_host_key_alias_token1] = ACTIONS(906), - [aux_sym_hostname_token1] = ACTIONS(906), - [aux_sym_identities_only_token1] = ACTIONS(906), - [aux_sym_identity_agent_token1] = ACTIONS(906), - [aux_sym_identity_file_token1] = ACTIONS(906), - [aux_sym_ignore_unknown_token1] = ACTIONS(906), - [aux_sym_include_token1] = ACTIONS(906), - [aux_sym_ip_qos_token1] = ACTIONS(906), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(906), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(906), - [aux_sym_kex_algorithms_token1] = ACTIONS(906), - [aux_sym_known_hosts_command_token1] = ACTIONS(906), - [aux_sym_local_command_token1] = ACTIONS(906), - [aux_sym_local_forward_token1] = ACTIONS(906), - [aux_sym_log_level_token1] = ACTIONS(906), - [aux_sym_log_verbose_token1] = ACTIONS(906), - [aux_sym_macs_token1] = ACTIONS(906), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(906), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(906), - [aux_sym_password_authentication_token1] = ACTIONS(906), - [aux_sym_permit_local_command_token1] = ACTIONS(906), - [aux_sym_permit_remote_open_token1] = ACTIONS(906), - [aux_sym_pkcs11_provider_token1] = ACTIONS(906), - [aux_sym_port_token1] = ACTIONS(906), - [aux_sym_preferred_authentications_token1] = ACTIONS(906), - [aux_sym_protocol_token1] = ACTIONS(906), - [aux_sym_proxy_command_token1] = ACTIONS(906), - [aux_sym_proxy_jump_token1] = ACTIONS(906), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(906), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(906), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(906), - [aux_sym_pubkey_authentication_token1] = ACTIONS(906), - [aux_sym_rekey_limit_token1] = ACTIONS(906), - [aux_sym_remote_command_token1] = ACTIONS(906), - [aux_sym_remote_forward_token1] = ACTIONS(906), - [aux_sym_request_tty_token1] = ACTIONS(906), - [aux_sym_required_rsa_size_token1] = ACTIONS(906), - [aux_sym_revoked_host_keys_token1] = ACTIONS(906), - [aux_sym_security_key_provider_token1] = ACTIONS(906), - [aux_sym_send_env_token1] = ACTIONS(906), - [aux_sym_server_alive_count_max_token1] = ACTIONS(906), - [aux_sym_server_alive_interval_token1] = ACTIONS(906), - [aux_sym_session_type_token1] = ACTIONS(906), - [aux_sym_set_env_token1] = ACTIONS(906), - [aux_sym_stdin_null_token1] = ACTIONS(906), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(906), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(906), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(906), - [aux_sym_syslog_facility_token1] = ACTIONS(906), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(906), - [aux_sym_keep_alive_token1] = ACTIONS(906), - [aux_sym_tag_token1] = ACTIONS(906), - [aux_sym_tunnel_token1] = ACTIONS(908), - [aux_sym_tunnel_device_token1] = ACTIONS(906), - [aux_sym_update_host_keys_token1] = ACTIONS(906), - [aux_sym_use_keychain_token1] = ACTIONS(906), - [aux_sym_use_roaming_token1] = ACTIONS(906), - [aux_sym_user_token1] = ACTIONS(908), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(906), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(906), - [aux_sym_visual_host_key_token1] = ACTIONS(906), - [aux_sym_xauth_location_token1] = ACTIONS(906), + [ts_builtin_sym_end] = ACTIONS(911), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(913), + [anon_sym_DQUOTE] = ACTIONS(915), + [aux_sym_match_token1] = ACTIONS(911), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(911), + [aux_sym_address_family_token1] = ACTIONS(911), + [aux_sym_batch_mode_token1] = ACTIONS(911), + [aux_sym_bind_address_token1] = ACTIONS(911), + [aux_sym_bind_interface_token1] = ACTIONS(911), + [aux_sym_canonical_domains_token1] = ACTIONS(911), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(911), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(911), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(911), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(911), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(911), + [aux_sym_certificate_file_token1] = ACTIONS(911), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(911), + [aux_sym_channel_timeout_token1] = ACTIONS(911), + [aux_sym_check_host_ip_token1] = ACTIONS(911), + [aux_sym_ciphers_token1] = ACTIONS(911), + [aux_sym_cipher_token1] = ACTIONS(913), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(911), + [aux_sym_compression_token1] = ACTIONS(911), + [aux_sym_connection_attempts_token1] = ACTIONS(911), + [aux_sym_connect_timeout_token1] = ACTIONS(911), + [aux_sym_control_master_token1] = ACTIONS(911), + [aux_sym_control_path_token1] = ACTIONS(911), + [aux_sym_control_persist_token1] = ACTIONS(911), + [aux_sym_dynamic_forward_token1] = ACTIONS(911), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(911), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(911), + [aux_sym_escape_char_token1] = ACTIONS(911), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(911), + [aux_sym_fingerprint_hash_token1] = ACTIONS(911), + [aux_sym_fork_after_authentication_token1] = ACTIONS(911), + [aux_sym_forward_agent_token1] = ACTIONS(911), + [aux_sym_forward_x11_token1] = ACTIONS(913), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(911), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(911), + [aux_sym_gateway_ports_token1] = ACTIONS(911), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(911), + [aux_sym_gssapi_authentication_token1] = ACTIONS(911), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(911), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(911), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(911), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(911), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(911), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(911), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(911), + [aux_sym_hash_known_hosts_token1] = ACTIONS(911), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(911), + [aux_sym_hostbased_authentication_token1] = ACTIONS(911), + [aux_sym_host_key_algorithms_token1] = ACTIONS(911), + [aux_sym_host_key_alias_token1] = ACTIONS(911), + [aux_sym_hostname_token1] = ACTIONS(911), + [aux_sym_identities_only_token1] = ACTIONS(911), + [aux_sym_identity_agent_token1] = ACTIONS(911), + [aux_sym_identity_file_token1] = ACTIONS(911), + [aux_sym_ignore_unknown_token1] = ACTIONS(911), + [aux_sym_include_token1] = ACTIONS(911), + [aux_sym_ip_qos_token1] = ACTIONS(911), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(911), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(911), + [aux_sym_kex_algorithms_token1] = ACTIONS(911), + [aux_sym_known_hosts_command_token1] = ACTIONS(911), + [aux_sym_local_command_token1] = ACTIONS(911), + [aux_sym_local_forward_token1] = ACTIONS(911), + [aux_sym_log_level_token1] = ACTIONS(911), + [aux_sym_log_verbose_token1] = ACTIONS(911), + [aux_sym_macs_token1] = ACTIONS(911), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(911), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(911), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(911), + [aux_sym_password_authentication_token1] = ACTIONS(911), + [aux_sym_permit_local_command_token1] = ACTIONS(911), + [aux_sym_permit_remote_open_token1] = ACTIONS(911), + [aux_sym_pkcs11_provider_token1] = ACTIONS(911), + [aux_sym_port_token1] = ACTIONS(911), + [aux_sym_preferred_authentications_token1] = ACTIONS(911), + [aux_sym_protocol_token1] = ACTIONS(911), + [aux_sym_proxy_command_token1] = ACTIONS(911), + [aux_sym_proxy_jump_token1] = ACTIONS(911), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(911), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(911), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(911), + [aux_sym_pubkey_authentication_token1] = ACTIONS(911), + [aux_sym_rekey_limit_token1] = ACTIONS(911), + [aux_sym_remote_command_token1] = ACTIONS(911), + [aux_sym_remote_forward_token1] = ACTIONS(911), + [aux_sym_request_tty_token1] = ACTIONS(911), + [aux_sym_required_rsa_size_token1] = ACTIONS(911), + [aux_sym_revoked_host_keys_token1] = ACTIONS(911), + [aux_sym_security_key_provider_token1] = ACTIONS(911), + [aux_sym_send_env_token1] = ACTIONS(911), + [aux_sym_server_alive_count_max_token1] = ACTIONS(911), + [aux_sym_server_alive_interval_token1] = ACTIONS(911), + [aux_sym_session_type_token1] = ACTIONS(911), + [aux_sym_set_env_token1] = ACTIONS(911), + [aux_sym_stdin_null_token1] = ACTIONS(911), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(911), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(911), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(911), + [aux_sym_syslog_facility_token1] = ACTIONS(911), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(911), + [aux_sym_keep_alive_token1] = ACTIONS(911), + [aux_sym_tag_token1] = ACTIONS(911), + [aux_sym_tunnel_token1] = ACTIONS(913), + [aux_sym_tunnel_device_token1] = ACTIONS(911), + [aux_sym_update_host_keys_token1] = ACTIONS(911), + [aux_sym_use_keychain_token1] = ACTIONS(911), + [aux_sym_use_roaming_token1] = ACTIONS(911), + [aux_sym_user_token1] = ACTIONS(913), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(911), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(911), + [aux_sym_visual_host_key_token1] = ACTIONS(911), + [aux_sym_xauth_location_token1] = ACTIONS(911), }, [59] = { - [ts_builtin_sym_end] = ACTIONS(912), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_match_token1] = ACTIONS(912), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(912), - [aux_sym_address_family_token1] = ACTIONS(912), - [aux_sym_batch_mode_token1] = ACTIONS(912), - [aux_sym_bind_address_token1] = ACTIONS(912), - [aux_sym_bind_interface_token1] = ACTIONS(912), - [aux_sym_canonical_domains_token1] = ACTIONS(912), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(912), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(912), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(912), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(912), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(912), - [aux_sym_certificate_file_token1] = ACTIONS(912), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(912), - [aux_sym_channel_timeout_token1] = ACTIONS(912), - [aux_sym_check_host_ip_token1] = ACTIONS(912), - [aux_sym_ciphers_token1] = ACTIONS(912), - [aux_sym_cipher_token1] = ACTIONS(914), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(912), - [aux_sym_compression_token1] = ACTIONS(912), - [aux_sym_connection_attempts_token1] = ACTIONS(912), - [aux_sym_connect_timeout_token1] = ACTIONS(912), - [aux_sym_control_master_token1] = ACTIONS(912), - [aux_sym_control_path_token1] = ACTIONS(912), - [aux_sym_control_persist_token1] = ACTIONS(912), - [aux_sym_dynamic_forward_token1] = ACTIONS(912), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(912), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(912), - [aux_sym_escape_char_token1] = ACTIONS(912), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(912), - [aux_sym_fingerprint_hash_token1] = ACTIONS(912), - [aux_sym_fork_after_authentication_token1] = ACTIONS(912), - [aux_sym_forward_agent_token1] = ACTIONS(912), - [aux_sym_forward_x11_token1] = ACTIONS(914), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(912), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(912), - [aux_sym_gateway_ports_token1] = ACTIONS(912), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(912), - [aux_sym_gssapi_authentication_token1] = ACTIONS(912), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(912), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(912), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(912), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(912), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(912), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(912), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(912), - [aux_sym_hash_known_hosts_token1] = ACTIONS(912), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(912), - [aux_sym_hostbased_authentication_token1] = ACTIONS(912), - [aux_sym_host_key_algorithms_token1] = ACTIONS(912), - [aux_sym_host_key_alias_token1] = ACTIONS(912), - [aux_sym_hostname_token1] = ACTIONS(912), - [aux_sym_identities_only_token1] = ACTIONS(912), - [aux_sym_identity_agent_token1] = ACTIONS(912), - [aux_sym_identity_file_token1] = ACTIONS(912), - [aux_sym_ignore_unknown_token1] = ACTIONS(912), - [aux_sym_include_token1] = ACTIONS(912), - [aux_sym_ip_qos_token1] = ACTIONS(912), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(912), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(912), - [aux_sym_kex_algorithms_token1] = ACTIONS(912), - [aux_sym_known_hosts_command_token1] = ACTIONS(912), - [aux_sym_local_command_token1] = ACTIONS(912), - [aux_sym_local_forward_token1] = ACTIONS(912), - [aux_sym_log_level_token1] = ACTIONS(912), - [aux_sym_log_verbose_token1] = ACTIONS(912), - [aux_sym_macs_token1] = ACTIONS(912), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(912), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(912), - [aux_sym_password_authentication_token1] = ACTIONS(912), - [aux_sym_permit_local_command_token1] = ACTIONS(912), - [aux_sym_permit_remote_open_token1] = ACTIONS(912), - [aux_sym_pkcs11_provider_token1] = ACTIONS(912), - [aux_sym_port_token1] = ACTIONS(912), - [aux_sym_preferred_authentications_token1] = ACTIONS(912), - [aux_sym_protocol_token1] = ACTIONS(912), - [aux_sym_proxy_command_token1] = ACTIONS(912), - [aux_sym_proxy_jump_token1] = ACTIONS(912), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(912), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(912), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(912), - [aux_sym_pubkey_authentication_token1] = ACTIONS(912), - [aux_sym_rekey_limit_token1] = ACTIONS(912), - [aux_sym_remote_command_token1] = ACTIONS(912), - [aux_sym_remote_forward_token1] = ACTIONS(912), - [aux_sym_request_tty_token1] = ACTIONS(912), - [aux_sym_required_rsa_size_token1] = ACTIONS(912), - [aux_sym_revoked_host_keys_token1] = ACTIONS(912), - [aux_sym_security_key_provider_token1] = ACTIONS(912), - [aux_sym_send_env_token1] = ACTIONS(912), - [aux_sym_server_alive_count_max_token1] = ACTIONS(912), - [aux_sym_server_alive_interval_token1] = ACTIONS(912), - [aux_sym_session_type_token1] = ACTIONS(912), - [aux_sym_set_env_token1] = ACTIONS(912), - [aux_sym_stdin_null_token1] = ACTIONS(912), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(912), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(912), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(912), - [aux_sym_syslog_facility_token1] = ACTIONS(912), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(912), - [aux_sym_keep_alive_token1] = ACTIONS(912), - [aux_sym_tag_token1] = ACTIONS(912), - [aux_sym_tunnel_token1] = ACTIONS(914), - [aux_sym_tunnel_device_token1] = ACTIONS(912), - [aux_sym_update_host_keys_token1] = ACTIONS(912), - [aux_sym_use_keychain_token1] = ACTIONS(912), - [aux_sym_use_roaming_token1] = ACTIONS(912), - [aux_sym_user_token1] = ACTIONS(914), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(912), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(912), - [aux_sym_visual_host_key_token1] = ACTIONS(912), - [aux_sym_xauth_location_token1] = ACTIONS(912), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(919), + [anon_sym_DQUOTE] = ACTIONS(921), + [aux_sym_match_token1] = ACTIONS(917), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(917), + [aux_sym_address_family_token1] = ACTIONS(917), + [aux_sym_batch_mode_token1] = ACTIONS(917), + [aux_sym_bind_address_token1] = ACTIONS(917), + [aux_sym_bind_interface_token1] = ACTIONS(917), + [aux_sym_canonical_domains_token1] = ACTIONS(917), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(917), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(917), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(917), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(917), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(917), + [aux_sym_certificate_file_token1] = ACTIONS(917), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(917), + [aux_sym_channel_timeout_token1] = ACTIONS(917), + [aux_sym_check_host_ip_token1] = ACTIONS(917), + [aux_sym_ciphers_token1] = ACTIONS(917), + [aux_sym_cipher_token1] = ACTIONS(919), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(917), + [aux_sym_compression_token1] = ACTIONS(917), + [aux_sym_connection_attempts_token1] = ACTIONS(917), + [aux_sym_connect_timeout_token1] = ACTIONS(917), + [aux_sym_control_master_token1] = ACTIONS(917), + [aux_sym_control_path_token1] = ACTIONS(917), + [aux_sym_control_persist_token1] = ACTIONS(917), + [aux_sym_dynamic_forward_token1] = ACTIONS(917), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(917), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(917), + [aux_sym_escape_char_token1] = ACTIONS(917), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(917), + [aux_sym_fingerprint_hash_token1] = ACTIONS(917), + [aux_sym_fork_after_authentication_token1] = ACTIONS(917), + [aux_sym_forward_agent_token1] = ACTIONS(917), + [aux_sym_forward_x11_token1] = ACTIONS(919), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(917), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(917), + [aux_sym_gateway_ports_token1] = ACTIONS(917), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(917), + [aux_sym_gssapi_authentication_token1] = ACTIONS(917), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(917), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(917), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(917), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(917), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(917), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(917), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(917), + [aux_sym_hash_known_hosts_token1] = ACTIONS(917), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(917), + [aux_sym_hostbased_authentication_token1] = ACTIONS(917), + [aux_sym_host_key_algorithms_token1] = ACTIONS(917), + [aux_sym_host_key_alias_token1] = ACTIONS(917), + [aux_sym_hostname_token1] = ACTIONS(917), + [aux_sym_identities_only_token1] = ACTIONS(917), + [aux_sym_identity_agent_token1] = ACTIONS(917), + [aux_sym_identity_file_token1] = ACTIONS(917), + [aux_sym_ignore_unknown_token1] = ACTIONS(917), + [aux_sym_include_token1] = ACTIONS(917), + [aux_sym_ip_qos_token1] = ACTIONS(917), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(917), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(917), + [aux_sym_kex_algorithms_token1] = ACTIONS(917), + [aux_sym_known_hosts_command_token1] = ACTIONS(917), + [aux_sym_local_command_token1] = ACTIONS(917), + [aux_sym_local_forward_token1] = ACTIONS(917), + [aux_sym_log_level_token1] = ACTIONS(917), + [aux_sym_log_verbose_token1] = ACTIONS(917), + [aux_sym_macs_token1] = ACTIONS(917), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(917), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(917), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(917), + [aux_sym_password_authentication_token1] = ACTIONS(917), + [aux_sym_permit_local_command_token1] = ACTIONS(917), + [aux_sym_permit_remote_open_token1] = ACTIONS(917), + [aux_sym_pkcs11_provider_token1] = ACTIONS(917), + [aux_sym_port_token1] = ACTIONS(917), + [aux_sym_preferred_authentications_token1] = ACTIONS(917), + [aux_sym_protocol_token1] = ACTIONS(917), + [aux_sym_proxy_command_token1] = ACTIONS(917), + [aux_sym_proxy_jump_token1] = ACTIONS(917), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(917), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(917), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(917), + [aux_sym_pubkey_authentication_token1] = ACTIONS(917), + [aux_sym_rekey_limit_token1] = ACTIONS(917), + [aux_sym_remote_command_token1] = ACTIONS(917), + [aux_sym_remote_forward_token1] = ACTIONS(917), + [aux_sym_request_tty_token1] = ACTIONS(917), + [aux_sym_required_rsa_size_token1] = ACTIONS(917), + [aux_sym_revoked_host_keys_token1] = ACTIONS(917), + [aux_sym_security_key_provider_token1] = ACTIONS(917), + [aux_sym_send_env_token1] = ACTIONS(917), + [aux_sym_server_alive_count_max_token1] = ACTIONS(917), + [aux_sym_server_alive_interval_token1] = ACTIONS(917), + [aux_sym_session_type_token1] = ACTIONS(917), + [aux_sym_set_env_token1] = ACTIONS(917), + [aux_sym_stdin_null_token1] = ACTIONS(917), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(917), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(917), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(917), + [aux_sym_syslog_facility_token1] = ACTIONS(917), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(917), + [aux_sym_keep_alive_token1] = ACTIONS(917), + [aux_sym_tag_token1] = ACTIONS(917), + [aux_sym_tunnel_token1] = ACTIONS(919), + [aux_sym_tunnel_device_token1] = ACTIONS(917), + [aux_sym_update_host_keys_token1] = ACTIONS(917), + [aux_sym_use_keychain_token1] = ACTIONS(917), + [aux_sym_use_roaming_token1] = ACTIONS(917), + [aux_sym_user_token1] = ACTIONS(919), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(917), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(917), + [aux_sym_visual_host_key_token1] = ACTIONS(917), + [aux_sym_xauth_location_token1] = ACTIONS(917), }, [60] = { - [ts_builtin_sym_end] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(920), - [anon_sym_DQUOTE] = ACTIONS(922), - [aux_sym_match_token1] = ACTIONS(918), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(918), - [aux_sym_address_family_token1] = ACTIONS(918), - [aux_sym_batch_mode_token1] = ACTIONS(918), - [aux_sym_bind_address_token1] = ACTIONS(918), - [aux_sym_bind_interface_token1] = ACTIONS(918), - [aux_sym_canonical_domains_token1] = ACTIONS(918), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(918), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(918), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(918), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(918), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(918), - [aux_sym_certificate_file_token1] = ACTIONS(918), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(918), - [aux_sym_channel_timeout_token1] = ACTIONS(918), - [aux_sym_check_host_ip_token1] = ACTIONS(918), - [aux_sym_ciphers_token1] = ACTIONS(918), - [aux_sym_cipher_token1] = ACTIONS(920), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(918), - [aux_sym_compression_token1] = ACTIONS(918), - [aux_sym_connection_attempts_token1] = ACTIONS(918), - [aux_sym_connect_timeout_token1] = ACTIONS(918), - [aux_sym_control_master_token1] = ACTIONS(918), - [aux_sym_control_path_token1] = ACTIONS(918), - [aux_sym_control_persist_token1] = ACTIONS(918), - [aux_sym_dynamic_forward_token1] = ACTIONS(918), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(918), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(918), - [aux_sym_escape_char_token1] = ACTIONS(918), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(918), - [aux_sym_fingerprint_hash_token1] = ACTIONS(918), - [aux_sym_fork_after_authentication_token1] = ACTIONS(918), - [aux_sym_forward_agent_token1] = ACTIONS(918), - [aux_sym_forward_x11_token1] = ACTIONS(920), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(918), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(918), - [aux_sym_gateway_ports_token1] = ACTIONS(918), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(918), - [aux_sym_gssapi_authentication_token1] = ACTIONS(918), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(918), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(918), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(918), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(918), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(918), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(918), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(918), - [aux_sym_hash_known_hosts_token1] = ACTIONS(918), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(918), - [aux_sym_hostbased_authentication_token1] = ACTIONS(918), - [aux_sym_host_key_algorithms_token1] = ACTIONS(918), - [aux_sym_host_key_alias_token1] = ACTIONS(918), - [aux_sym_hostname_token1] = ACTIONS(918), - [aux_sym_identities_only_token1] = ACTIONS(918), - [aux_sym_identity_agent_token1] = ACTIONS(918), - [aux_sym_identity_file_token1] = ACTIONS(918), - [aux_sym_ignore_unknown_token1] = ACTIONS(918), - [aux_sym_include_token1] = ACTIONS(918), - [aux_sym_ip_qos_token1] = ACTIONS(918), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(918), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(918), - [aux_sym_kex_algorithms_token1] = ACTIONS(918), - [aux_sym_known_hosts_command_token1] = ACTIONS(918), - [aux_sym_local_command_token1] = ACTIONS(918), - [aux_sym_local_forward_token1] = ACTIONS(918), - [aux_sym_log_level_token1] = ACTIONS(918), - [aux_sym_log_verbose_token1] = ACTIONS(918), - [aux_sym_macs_token1] = ACTIONS(918), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(918), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(918), - [aux_sym_password_authentication_token1] = ACTIONS(918), - [aux_sym_permit_local_command_token1] = ACTIONS(918), - [aux_sym_permit_remote_open_token1] = ACTIONS(918), - [aux_sym_pkcs11_provider_token1] = ACTIONS(918), - [aux_sym_port_token1] = ACTIONS(918), - [aux_sym_preferred_authentications_token1] = ACTIONS(918), - [aux_sym_protocol_token1] = ACTIONS(918), - [aux_sym_proxy_command_token1] = ACTIONS(918), - [aux_sym_proxy_jump_token1] = ACTIONS(918), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(918), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(918), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(918), - [aux_sym_pubkey_authentication_token1] = ACTIONS(918), - [aux_sym_rekey_limit_token1] = ACTIONS(918), - [aux_sym_remote_command_token1] = ACTIONS(918), - [aux_sym_remote_forward_token1] = ACTIONS(918), - [aux_sym_request_tty_token1] = ACTIONS(918), - [aux_sym_required_rsa_size_token1] = ACTIONS(918), - [aux_sym_revoked_host_keys_token1] = ACTIONS(918), - [aux_sym_security_key_provider_token1] = ACTIONS(918), - [aux_sym_send_env_token1] = ACTIONS(918), - [aux_sym_server_alive_count_max_token1] = ACTIONS(918), - [aux_sym_server_alive_interval_token1] = ACTIONS(918), - [aux_sym_session_type_token1] = ACTIONS(918), - [aux_sym_set_env_token1] = ACTIONS(918), - [aux_sym_stdin_null_token1] = ACTIONS(918), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(918), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(918), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(918), - [aux_sym_syslog_facility_token1] = ACTIONS(918), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(918), - [aux_sym_keep_alive_token1] = ACTIONS(918), - [aux_sym_tag_token1] = ACTIONS(918), - [aux_sym_tunnel_token1] = ACTIONS(920), - [aux_sym_tunnel_device_token1] = ACTIONS(918), - [aux_sym_update_host_keys_token1] = ACTIONS(918), - [aux_sym_use_keychain_token1] = ACTIONS(918), - [aux_sym_use_roaming_token1] = ACTIONS(918), - [aux_sym_user_token1] = ACTIONS(920), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(918), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(918), - [aux_sym_visual_host_key_token1] = ACTIONS(918), - [aux_sym_xauth_location_token1] = ACTIONS(918), + [ts_builtin_sym_end] = ACTIONS(923), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(927), + [aux_sym_match_token1] = ACTIONS(923), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(923), + [aux_sym_address_family_token1] = ACTIONS(923), + [aux_sym_batch_mode_token1] = ACTIONS(923), + [aux_sym_bind_address_token1] = ACTIONS(923), + [aux_sym_bind_interface_token1] = ACTIONS(923), + [aux_sym_canonical_domains_token1] = ACTIONS(923), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(923), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(923), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(923), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(923), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(923), + [aux_sym_certificate_file_token1] = ACTIONS(923), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(923), + [aux_sym_channel_timeout_token1] = ACTIONS(923), + [aux_sym_check_host_ip_token1] = ACTIONS(923), + [aux_sym_ciphers_token1] = ACTIONS(923), + [aux_sym_cipher_token1] = ACTIONS(925), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(923), + [aux_sym_compression_token1] = ACTIONS(923), + [aux_sym_connection_attempts_token1] = ACTIONS(923), + [aux_sym_connect_timeout_token1] = ACTIONS(923), + [aux_sym_control_master_token1] = ACTIONS(923), + [aux_sym_control_path_token1] = ACTIONS(923), + [aux_sym_control_persist_token1] = ACTIONS(923), + [aux_sym_dynamic_forward_token1] = ACTIONS(923), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(923), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(923), + [aux_sym_escape_char_token1] = ACTIONS(923), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(923), + [aux_sym_fingerprint_hash_token1] = ACTIONS(923), + [aux_sym_fork_after_authentication_token1] = ACTIONS(923), + [aux_sym_forward_agent_token1] = ACTIONS(923), + [aux_sym_forward_x11_token1] = ACTIONS(925), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(923), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(923), + [aux_sym_gateway_ports_token1] = ACTIONS(923), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(923), + [aux_sym_gssapi_authentication_token1] = ACTIONS(923), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(923), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(923), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(923), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(923), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(923), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(923), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(923), + [aux_sym_hash_known_hosts_token1] = ACTIONS(923), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(923), + [aux_sym_hostbased_authentication_token1] = ACTIONS(923), + [aux_sym_host_key_algorithms_token1] = ACTIONS(923), + [aux_sym_host_key_alias_token1] = ACTIONS(923), + [aux_sym_hostname_token1] = ACTIONS(923), + [aux_sym_identities_only_token1] = ACTIONS(923), + [aux_sym_identity_agent_token1] = ACTIONS(923), + [aux_sym_identity_file_token1] = ACTIONS(923), + [aux_sym_ignore_unknown_token1] = ACTIONS(923), + [aux_sym_include_token1] = ACTIONS(923), + [aux_sym_ip_qos_token1] = ACTIONS(923), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(923), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(923), + [aux_sym_kex_algorithms_token1] = ACTIONS(923), + [aux_sym_known_hosts_command_token1] = ACTIONS(923), + [aux_sym_local_command_token1] = ACTIONS(923), + [aux_sym_local_forward_token1] = ACTIONS(923), + [aux_sym_log_level_token1] = ACTIONS(923), + [aux_sym_log_verbose_token1] = ACTIONS(923), + [aux_sym_macs_token1] = ACTIONS(923), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(923), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(923), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(923), + [aux_sym_password_authentication_token1] = ACTIONS(923), + [aux_sym_permit_local_command_token1] = ACTIONS(923), + [aux_sym_permit_remote_open_token1] = ACTIONS(923), + [aux_sym_pkcs11_provider_token1] = ACTIONS(923), + [aux_sym_port_token1] = ACTIONS(923), + [aux_sym_preferred_authentications_token1] = ACTIONS(923), + [aux_sym_protocol_token1] = ACTIONS(923), + [aux_sym_proxy_command_token1] = ACTIONS(923), + [aux_sym_proxy_jump_token1] = ACTIONS(923), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(923), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(923), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(923), + [aux_sym_pubkey_authentication_token1] = ACTIONS(923), + [aux_sym_rekey_limit_token1] = ACTIONS(923), + [aux_sym_remote_command_token1] = ACTIONS(923), + [aux_sym_remote_forward_token1] = ACTIONS(923), + [aux_sym_request_tty_token1] = ACTIONS(923), + [aux_sym_required_rsa_size_token1] = ACTIONS(923), + [aux_sym_revoked_host_keys_token1] = ACTIONS(923), + [aux_sym_security_key_provider_token1] = ACTIONS(923), + [aux_sym_send_env_token1] = ACTIONS(923), + [aux_sym_server_alive_count_max_token1] = ACTIONS(923), + [aux_sym_server_alive_interval_token1] = ACTIONS(923), + [aux_sym_session_type_token1] = ACTIONS(923), + [aux_sym_set_env_token1] = ACTIONS(923), + [aux_sym_stdin_null_token1] = ACTIONS(923), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(923), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(923), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(923), + [aux_sym_syslog_facility_token1] = ACTIONS(923), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(923), + [aux_sym_keep_alive_token1] = ACTIONS(923), + [aux_sym_tag_token1] = ACTIONS(923), + [aux_sym_tunnel_token1] = ACTIONS(925), + [aux_sym_tunnel_device_token1] = ACTIONS(923), + [aux_sym_update_host_keys_token1] = ACTIONS(923), + [aux_sym_use_keychain_token1] = ACTIONS(923), + [aux_sym_use_roaming_token1] = ACTIONS(923), + [aux_sym_user_token1] = ACTIONS(925), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(923), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(923), + [aux_sym_visual_host_key_token1] = ACTIONS(923), + [aux_sym_xauth_location_token1] = ACTIONS(923), }, [61] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(926), - [anon_sym_DQUOTE] = ACTIONS(928), - [aux_sym_match_token1] = ACTIONS(924), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(924), - [aux_sym_address_family_token1] = ACTIONS(924), - [aux_sym_batch_mode_token1] = ACTIONS(924), - [aux_sym_bind_address_token1] = ACTIONS(924), - [aux_sym_bind_interface_token1] = ACTIONS(924), - [aux_sym_canonical_domains_token1] = ACTIONS(924), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(924), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(924), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(924), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(924), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(924), - [aux_sym_certificate_file_token1] = ACTIONS(924), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(924), - [aux_sym_channel_timeout_token1] = ACTIONS(924), - [aux_sym_check_host_ip_token1] = ACTIONS(924), - [aux_sym_ciphers_token1] = ACTIONS(924), - [aux_sym_cipher_token1] = ACTIONS(926), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(924), - [aux_sym_compression_token1] = ACTIONS(924), - [aux_sym_connection_attempts_token1] = ACTIONS(924), - [aux_sym_connect_timeout_token1] = ACTIONS(924), - [aux_sym_control_master_token1] = ACTIONS(924), - [aux_sym_control_path_token1] = ACTIONS(924), - [aux_sym_control_persist_token1] = ACTIONS(924), - [aux_sym_dynamic_forward_token1] = ACTIONS(924), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(924), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(924), - [aux_sym_escape_char_token1] = ACTIONS(924), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(924), - [aux_sym_fingerprint_hash_token1] = ACTIONS(924), - [aux_sym_fork_after_authentication_token1] = ACTIONS(924), - [aux_sym_forward_agent_token1] = ACTIONS(924), - [aux_sym_forward_x11_token1] = ACTIONS(926), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(924), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(924), - [aux_sym_gateway_ports_token1] = ACTIONS(924), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(924), - [aux_sym_gssapi_authentication_token1] = ACTIONS(924), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(924), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(924), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(924), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(924), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(924), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(924), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(924), - [aux_sym_hash_known_hosts_token1] = ACTIONS(924), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(924), - [aux_sym_hostbased_authentication_token1] = ACTIONS(924), - [aux_sym_host_key_algorithms_token1] = ACTIONS(924), - [aux_sym_host_key_alias_token1] = ACTIONS(924), - [aux_sym_hostname_token1] = ACTIONS(924), - [aux_sym_identities_only_token1] = ACTIONS(924), - [aux_sym_identity_agent_token1] = ACTIONS(924), - [aux_sym_identity_file_token1] = ACTIONS(924), - [aux_sym_ignore_unknown_token1] = ACTIONS(924), - [aux_sym_include_token1] = ACTIONS(924), - [aux_sym_ip_qos_token1] = ACTIONS(924), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(924), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(924), - [aux_sym_kex_algorithms_token1] = ACTIONS(924), - [aux_sym_known_hosts_command_token1] = ACTIONS(924), - [aux_sym_local_command_token1] = ACTIONS(924), - [aux_sym_local_forward_token1] = ACTIONS(924), - [aux_sym_log_level_token1] = ACTIONS(924), - [aux_sym_log_verbose_token1] = ACTIONS(924), - [aux_sym_macs_token1] = ACTIONS(924), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(924), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(924), - [aux_sym_password_authentication_token1] = ACTIONS(924), - [aux_sym_permit_local_command_token1] = ACTIONS(924), - [aux_sym_permit_remote_open_token1] = ACTIONS(924), - [aux_sym_pkcs11_provider_token1] = ACTIONS(924), - [aux_sym_port_token1] = ACTIONS(924), - [aux_sym_preferred_authentications_token1] = ACTIONS(924), - [aux_sym_protocol_token1] = ACTIONS(924), - [aux_sym_proxy_command_token1] = ACTIONS(924), - [aux_sym_proxy_jump_token1] = ACTIONS(924), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(924), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(924), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(924), - [aux_sym_pubkey_authentication_token1] = ACTIONS(924), - [aux_sym_rekey_limit_token1] = ACTIONS(924), - [aux_sym_remote_command_token1] = ACTIONS(924), - [aux_sym_remote_forward_token1] = ACTIONS(924), - [aux_sym_request_tty_token1] = ACTIONS(924), - [aux_sym_required_rsa_size_token1] = ACTIONS(924), - [aux_sym_revoked_host_keys_token1] = ACTIONS(924), - [aux_sym_security_key_provider_token1] = ACTIONS(924), - [aux_sym_send_env_token1] = ACTIONS(924), - [aux_sym_server_alive_count_max_token1] = ACTIONS(924), - [aux_sym_server_alive_interval_token1] = ACTIONS(924), - [aux_sym_session_type_token1] = ACTIONS(924), - [aux_sym_set_env_token1] = ACTIONS(924), - [aux_sym_stdin_null_token1] = ACTIONS(924), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(924), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(924), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(924), - [aux_sym_syslog_facility_token1] = ACTIONS(924), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(924), - [aux_sym_keep_alive_token1] = ACTIONS(924), - [aux_sym_tag_token1] = ACTIONS(924), - [aux_sym_tunnel_token1] = ACTIONS(926), - [aux_sym_tunnel_device_token1] = ACTIONS(924), - [aux_sym_update_host_keys_token1] = ACTIONS(924), - [aux_sym_use_keychain_token1] = ACTIONS(924), - [aux_sym_use_roaming_token1] = ACTIONS(924), - [aux_sym_user_token1] = ACTIONS(926), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(924), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(924), - [aux_sym_visual_host_key_token1] = ACTIONS(924), - [aux_sym_xauth_location_token1] = ACTIONS(924), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(931), + [anon_sym_DQUOTE] = ACTIONS(933), + [aux_sym_match_token1] = ACTIONS(929), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(929), + [aux_sym_address_family_token1] = ACTIONS(929), + [aux_sym_batch_mode_token1] = ACTIONS(929), + [aux_sym_bind_address_token1] = ACTIONS(929), + [aux_sym_bind_interface_token1] = ACTIONS(929), + [aux_sym_canonical_domains_token1] = ACTIONS(929), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(929), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(929), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(929), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(929), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(929), + [aux_sym_certificate_file_token1] = ACTIONS(929), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(929), + [aux_sym_channel_timeout_token1] = ACTIONS(929), + [aux_sym_check_host_ip_token1] = ACTIONS(929), + [aux_sym_ciphers_token1] = ACTIONS(929), + [aux_sym_cipher_token1] = ACTIONS(931), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(929), + [aux_sym_compression_token1] = ACTIONS(929), + [aux_sym_connection_attempts_token1] = ACTIONS(929), + [aux_sym_connect_timeout_token1] = ACTIONS(929), + [aux_sym_control_master_token1] = ACTIONS(929), + [aux_sym_control_path_token1] = ACTIONS(929), + [aux_sym_control_persist_token1] = ACTIONS(929), + [aux_sym_dynamic_forward_token1] = ACTIONS(929), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(929), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(929), + [aux_sym_escape_char_token1] = ACTIONS(929), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(929), + [aux_sym_fingerprint_hash_token1] = ACTIONS(929), + [aux_sym_fork_after_authentication_token1] = ACTIONS(929), + [aux_sym_forward_agent_token1] = ACTIONS(929), + [aux_sym_forward_x11_token1] = ACTIONS(931), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(929), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(929), + [aux_sym_gateway_ports_token1] = ACTIONS(929), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(929), + [aux_sym_gssapi_authentication_token1] = ACTIONS(929), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(929), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(929), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(929), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(929), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(929), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(929), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(929), + [aux_sym_hash_known_hosts_token1] = ACTIONS(929), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(929), + [aux_sym_hostbased_authentication_token1] = ACTIONS(929), + [aux_sym_host_key_algorithms_token1] = ACTIONS(929), + [aux_sym_host_key_alias_token1] = ACTIONS(929), + [aux_sym_hostname_token1] = ACTIONS(929), + [aux_sym_identities_only_token1] = ACTIONS(929), + [aux_sym_identity_agent_token1] = ACTIONS(929), + [aux_sym_identity_file_token1] = ACTIONS(929), + [aux_sym_ignore_unknown_token1] = ACTIONS(929), + [aux_sym_include_token1] = ACTIONS(929), + [aux_sym_ip_qos_token1] = ACTIONS(929), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(929), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(929), + [aux_sym_kex_algorithms_token1] = ACTIONS(929), + [aux_sym_known_hosts_command_token1] = ACTIONS(929), + [aux_sym_local_command_token1] = ACTIONS(929), + [aux_sym_local_forward_token1] = ACTIONS(929), + [aux_sym_log_level_token1] = ACTIONS(929), + [aux_sym_log_verbose_token1] = ACTIONS(929), + [aux_sym_macs_token1] = ACTIONS(929), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(929), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(929), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(929), + [aux_sym_password_authentication_token1] = ACTIONS(929), + [aux_sym_permit_local_command_token1] = ACTIONS(929), + [aux_sym_permit_remote_open_token1] = ACTIONS(929), + [aux_sym_pkcs11_provider_token1] = ACTIONS(929), + [aux_sym_port_token1] = ACTIONS(929), + [aux_sym_preferred_authentications_token1] = ACTIONS(929), + [aux_sym_protocol_token1] = ACTIONS(929), + [aux_sym_proxy_command_token1] = ACTIONS(929), + [aux_sym_proxy_jump_token1] = ACTIONS(929), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(929), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(929), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(929), + [aux_sym_pubkey_authentication_token1] = ACTIONS(929), + [aux_sym_rekey_limit_token1] = ACTIONS(929), + [aux_sym_remote_command_token1] = ACTIONS(929), + [aux_sym_remote_forward_token1] = ACTIONS(929), + [aux_sym_request_tty_token1] = ACTIONS(929), + [aux_sym_required_rsa_size_token1] = ACTIONS(929), + [aux_sym_revoked_host_keys_token1] = ACTIONS(929), + [aux_sym_security_key_provider_token1] = ACTIONS(929), + [aux_sym_send_env_token1] = ACTIONS(929), + [aux_sym_server_alive_count_max_token1] = ACTIONS(929), + [aux_sym_server_alive_interval_token1] = ACTIONS(929), + [aux_sym_session_type_token1] = ACTIONS(929), + [aux_sym_set_env_token1] = ACTIONS(929), + [aux_sym_stdin_null_token1] = ACTIONS(929), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(929), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(929), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(929), + [aux_sym_syslog_facility_token1] = ACTIONS(929), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(929), + [aux_sym_keep_alive_token1] = ACTIONS(929), + [aux_sym_tag_token1] = ACTIONS(929), + [aux_sym_tunnel_token1] = ACTIONS(931), + [aux_sym_tunnel_device_token1] = ACTIONS(929), + [aux_sym_update_host_keys_token1] = ACTIONS(929), + [aux_sym_use_keychain_token1] = ACTIONS(929), + [aux_sym_use_roaming_token1] = ACTIONS(929), + [aux_sym_user_token1] = ACTIONS(931), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(929), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(929), + [aux_sym_visual_host_key_token1] = ACTIONS(929), + [aux_sym_xauth_location_token1] = ACTIONS(929), }, [62] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(934), - [aux_sym_match_token1] = ACTIONS(930), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(930), - [aux_sym_address_family_token1] = ACTIONS(930), - [aux_sym_batch_mode_token1] = ACTIONS(930), - [aux_sym_bind_address_token1] = ACTIONS(930), - [aux_sym_bind_interface_token1] = ACTIONS(930), - [aux_sym_canonical_domains_token1] = ACTIONS(930), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(930), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(930), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(930), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(930), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(930), - [aux_sym_certificate_file_token1] = ACTIONS(930), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(930), - [aux_sym_channel_timeout_token1] = ACTIONS(930), - [aux_sym_check_host_ip_token1] = ACTIONS(930), - [aux_sym_ciphers_token1] = ACTIONS(930), - [aux_sym_cipher_token1] = ACTIONS(932), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(930), - [aux_sym_compression_token1] = ACTIONS(930), - [aux_sym_connection_attempts_token1] = ACTIONS(930), - [aux_sym_connect_timeout_token1] = ACTIONS(930), - [aux_sym_control_master_token1] = ACTIONS(930), - [aux_sym_control_path_token1] = ACTIONS(930), - [aux_sym_control_persist_token1] = ACTIONS(930), - [aux_sym_dynamic_forward_token1] = ACTIONS(930), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(930), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(930), - [aux_sym_escape_char_token1] = ACTIONS(930), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(930), - [aux_sym_fingerprint_hash_token1] = ACTIONS(930), - [aux_sym_fork_after_authentication_token1] = ACTIONS(930), - [aux_sym_forward_agent_token1] = ACTIONS(930), - [aux_sym_forward_x11_token1] = ACTIONS(932), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(930), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(930), - [aux_sym_gateway_ports_token1] = ACTIONS(930), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(930), - [aux_sym_gssapi_authentication_token1] = ACTIONS(930), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(930), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(930), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(930), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(930), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(930), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(930), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(930), - [aux_sym_hash_known_hosts_token1] = ACTIONS(930), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(930), - [aux_sym_hostbased_authentication_token1] = ACTIONS(930), - [aux_sym_host_key_algorithms_token1] = ACTIONS(930), - [aux_sym_host_key_alias_token1] = ACTIONS(930), - [aux_sym_hostname_token1] = ACTIONS(930), - [aux_sym_identities_only_token1] = ACTIONS(930), - [aux_sym_identity_agent_token1] = ACTIONS(930), - [aux_sym_identity_file_token1] = ACTIONS(930), - [aux_sym_ignore_unknown_token1] = ACTIONS(930), - [aux_sym_include_token1] = ACTIONS(930), - [aux_sym_ip_qos_token1] = ACTIONS(930), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(930), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(930), - [aux_sym_kex_algorithms_token1] = ACTIONS(930), - [aux_sym_known_hosts_command_token1] = ACTIONS(930), - [aux_sym_local_command_token1] = ACTIONS(930), - [aux_sym_local_forward_token1] = ACTIONS(930), - [aux_sym_log_level_token1] = ACTIONS(930), - [aux_sym_log_verbose_token1] = ACTIONS(930), - [aux_sym_macs_token1] = ACTIONS(930), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(930), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(930), - [aux_sym_password_authentication_token1] = ACTIONS(930), - [aux_sym_permit_local_command_token1] = ACTIONS(930), - [aux_sym_permit_remote_open_token1] = ACTIONS(930), - [aux_sym_pkcs11_provider_token1] = ACTIONS(930), - [aux_sym_port_token1] = ACTIONS(930), - [aux_sym_preferred_authentications_token1] = ACTIONS(930), - [aux_sym_protocol_token1] = ACTIONS(930), - [aux_sym_proxy_command_token1] = ACTIONS(930), - [aux_sym_proxy_jump_token1] = ACTIONS(930), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(930), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(930), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(930), - [aux_sym_pubkey_authentication_token1] = ACTIONS(930), - [aux_sym_rekey_limit_token1] = ACTIONS(930), - [aux_sym_remote_command_token1] = ACTIONS(930), - [aux_sym_remote_forward_token1] = ACTIONS(930), - [aux_sym_request_tty_token1] = ACTIONS(930), - [aux_sym_required_rsa_size_token1] = ACTIONS(930), - [aux_sym_revoked_host_keys_token1] = ACTIONS(930), - [aux_sym_security_key_provider_token1] = ACTIONS(930), - [aux_sym_send_env_token1] = ACTIONS(930), - [aux_sym_server_alive_count_max_token1] = ACTIONS(930), - [aux_sym_server_alive_interval_token1] = ACTIONS(930), - [aux_sym_session_type_token1] = ACTIONS(930), - [aux_sym_set_env_token1] = ACTIONS(930), - [aux_sym_stdin_null_token1] = ACTIONS(930), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(930), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(930), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(930), - [aux_sym_syslog_facility_token1] = ACTIONS(930), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(930), - [aux_sym_keep_alive_token1] = ACTIONS(930), - [aux_sym_tag_token1] = ACTIONS(930), - [aux_sym_tunnel_token1] = ACTIONS(932), - [aux_sym_tunnel_device_token1] = ACTIONS(930), - [aux_sym_update_host_keys_token1] = ACTIONS(930), - [aux_sym_use_keychain_token1] = ACTIONS(930), - [aux_sym_use_roaming_token1] = ACTIONS(930), - [aux_sym_user_token1] = ACTIONS(932), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(930), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(930), - [aux_sym_visual_host_key_token1] = ACTIONS(930), - [aux_sym_xauth_location_token1] = ACTIONS(930), + [ts_builtin_sym_end] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(939), + [aux_sym_match_token1] = ACTIONS(935), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(935), + [aux_sym_address_family_token1] = ACTIONS(935), + [aux_sym_batch_mode_token1] = ACTIONS(935), + [aux_sym_bind_address_token1] = ACTIONS(935), + [aux_sym_bind_interface_token1] = ACTIONS(935), + [aux_sym_canonical_domains_token1] = ACTIONS(935), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(935), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(935), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(935), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(935), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(935), + [aux_sym_certificate_file_token1] = ACTIONS(935), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(935), + [aux_sym_channel_timeout_token1] = ACTIONS(935), + [aux_sym_check_host_ip_token1] = ACTIONS(935), + [aux_sym_ciphers_token1] = ACTIONS(935), + [aux_sym_cipher_token1] = ACTIONS(937), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(935), + [aux_sym_compression_token1] = ACTIONS(935), + [aux_sym_connection_attempts_token1] = ACTIONS(935), + [aux_sym_connect_timeout_token1] = ACTIONS(935), + [aux_sym_control_master_token1] = ACTIONS(935), + [aux_sym_control_path_token1] = ACTIONS(935), + [aux_sym_control_persist_token1] = ACTIONS(935), + [aux_sym_dynamic_forward_token1] = ACTIONS(935), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(935), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(935), + [aux_sym_escape_char_token1] = ACTIONS(935), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(935), + [aux_sym_fingerprint_hash_token1] = ACTIONS(935), + [aux_sym_fork_after_authentication_token1] = ACTIONS(935), + [aux_sym_forward_agent_token1] = ACTIONS(935), + [aux_sym_forward_x11_token1] = ACTIONS(937), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(935), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(935), + [aux_sym_gateway_ports_token1] = ACTIONS(935), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(935), + [aux_sym_gssapi_authentication_token1] = ACTIONS(935), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(935), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(935), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(935), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(935), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(935), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(935), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(935), + [aux_sym_hash_known_hosts_token1] = ACTIONS(935), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(935), + [aux_sym_hostbased_authentication_token1] = ACTIONS(935), + [aux_sym_host_key_algorithms_token1] = ACTIONS(935), + [aux_sym_host_key_alias_token1] = ACTIONS(935), + [aux_sym_hostname_token1] = ACTIONS(935), + [aux_sym_identities_only_token1] = ACTIONS(935), + [aux_sym_identity_agent_token1] = ACTIONS(935), + [aux_sym_identity_file_token1] = ACTIONS(935), + [aux_sym_ignore_unknown_token1] = ACTIONS(935), + [aux_sym_include_token1] = ACTIONS(935), + [aux_sym_ip_qos_token1] = ACTIONS(935), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(935), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(935), + [aux_sym_kex_algorithms_token1] = ACTIONS(935), + [aux_sym_known_hosts_command_token1] = ACTIONS(935), + [aux_sym_local_command_token1] = ACTIONS(935), + [aux_sym_local_forward_token1] = ACTIONS(935), + [aux_sym_log_level_token1] = ACTIONS(935), + [aux_sym_log_verbose_token1] = ACTIONS(935), + [aux_sym_macs_token1] = ACTIONS(935), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(935), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(935), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(935), + [aux_sym_password_authentication_token1] = ACTIONS(935), + [aux_sym_permit_local_command_token1] = ACTIONS(935), + [aux_sym_permit_remote_open_token1] = ACTIONS(935), + [aux_sym_pkcs11_provider_token1] = ACTIONS(935), + [aux_sym_port_token1] = ACTIONS(935), + [aux_sym_preferred_authentications_token1] = ACTIONS(935), + [aux_sym_protocol_token1] = ACTIONS(935), + [aux_sym_proxy_command_token1] = ACTIONS(935), + [aux_sym_proxy_jump_token1] = ACTIONS(935), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(935), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(935), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(935), + [aux_sym_pubkey_authentication_token1] = ACTIONS(935), + [aux_sym_rekey_limit_token1] = ACTIONS(935), + [aux_sym_remote_command_token1] = ACTIONS(935), + [aux_sym_remote_forward_token1] = ACTIONS(935), + [aux_sym_request_tty_token1] = ACTIONS(935), + [aux_sym_required_rsa_size_token1] = ACTIONS(935), + [aux_sym_revoked_host_keys_token1] = ACTIONS(935), + [aux_sym_security_key_provider_token1] = ACTIONS(935), + [aux_sym_send_env_token1] = ACTIONS(935), + [aux_sym_server_alive_count_max_token1] = ACTIONS(935), + [aux_sym_server_alive_interval_token1] = ACTIONS(935), + [aux_sym_session_type_token1] = ACTIONS(935), + [aux_sym_set_env_token1] = ACTIONS(935), + [aux_sym_stdin_null_token1] = ACTIONS(935), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(935), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(935), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(935), + [aux_sym_syslog_facility_token1] = ACTIONS(935), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(935), + [aux_sym_keep_alive_token1] = ACTIONS(935), + [aux_sym_tag_token1] = ACTIONS(935), + [aux_sym_tunnel_token1] = ACTIONS(937), + [aux_sym_tunnel_device_token1] = ACTIONS(935), + [aux_sym_update_host_keys_token1] = ACTIONS(935), + [aux_sym_use_keychain_token1] = ACTIONS(935), + [aux_sym_use_roaming_token1] = ACTIONS(935), + [aux_sym_user_token1] = ACTIONS(937), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(935), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(935), + [aux_sym_visual_host_key_token1] = ACTIONS(935), + [aux_sym_xauth_location_token1] = ACTIONS(935), }, [63] = { - [ts_builtin_sym_end] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(938), - [anon_sym_DQUOTE] = ACTIONS(940), - [aux_sym_match_token1] = ACTIONS(936), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(936), - [aux_sym_address_family_token1] = ACTIONS(936), - [aux_sym_batch_mode_token1] = ACTIONS(936), - [aux_sym_bind_address_token1] = ACTIONS(936), - [aux_sym_bind_interface_token1] = ACTIONS(936), - [aux_sym_canonical_domains_token1] = ACTIONS(936), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(936), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(936), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(936), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(936), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(936), - [aux_sym_certificate_file_token1] = ACTIONS(936), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(936), - [aux_sym_channel_timeout_token1] = ACTIONS(936), - [aux_sym_check_host_ip_token1] = ACTIONS(936), - [aux_sym_ciphers_token1] = ACTIONS(936), - [aux_sym_cipher_token1] = ACTIONS(938), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(936), - [aux_sym_compression_token1] = ACTIONS(936), - [aux_sym_connection_attempts_token1] = ACTIONS(936), - [aux_sym_connect_timeout_token1] = ACTIONS(936), - [aux_sym_control_master_token1] = ACTIONS(936), - [aux_sym_control_path_token1] = ACTIONS(936), - [aux_sym_control_persist_token1] = ACTIONS(936), - [aux_sym_dynamic_forward_token1] = ACTIONS(936), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(936), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(936), - [aux_sym_escape_char_token1] = ACTIONS(936), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(936), - [aux_sym_fingerprint_hash_token1] = ACTIONS(936), - [aux_sym_fork_after_authentication_token1] = ACTIONS(936), - [aux_sym_forward_agent_token1] = ACTIONS(936), - [aux_sym_forward_x11_token1] = ACTIONS(938), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(936), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(936), - [aux_sym_gateway_ports_token1] = ACTIONS(936), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(936), - [aux_sym_gssapi_authentication_token1] = ACTIONS(936), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(936), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(936), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(936), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(936), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(936), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(936), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(936), - [aux_sym_hash_known_hosts_token1] = ACTIONS(936), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(936), - [aux_sym_hostbased_authentication_token1] = ACTIONS(936), - [aux_sym_host_key_algorithms_token1] = ACTIONS(936), - [aux_sym_host_key_alias_token1] = ACTIONS(936), - [aux_sym_hostname_token1] = ACTIONS(936), - [aux_sym_identities_only_token1] = ACTIONS(936), - [aux_sym_identity_agent_token1] = ACTIONS(936), - [aux_sym_identity_file_token1] = ACTIONS(936), - [aux_sym_ignore_unknown_token1] = ACTIONS(936), - [aux_sym_include_token1] = ACTIONS(936), - [aux_sym_ip_qos_token1] = ACTIONS(936), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(936), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(936), - [aux_sym_kex_algorithms_token1] = ACTIONS(936), - [aux_sym_known_hosts_command_token1] = ACTIONS(936), - [aux_sym_local_command_token1] = ACTIONS(936), - [aux_sym_local_forward_token1] = ACTIONS(936), - [aux_sym_log_level_token1] = ACTIONS(936), - [aux_sym_log_verbose_token1] = ACTIONS(936), - [aux_sym_macs_token1] = ACTIONS(936), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(936), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(936), - [aux_sym_password_authentication_token1] = ACTIONS(936), - [aux_sym_permit_local_command_token1] = ACTIONS(936), - [aux_sym_permit_remote_open_token1] = ACTIONS(936), - [aux_sym_pkcs11_provider_token1] = ACTIONS(936), - [aux_sym_port_token1] = ACTIONS(936), - [aux_sym_preferred_authentications_token1] = ACTIONS(936), - [aux_sym_protocol_token1] = ACTIONS(936), - [aux_sym_proxy_command_token1] = ACTIONS(936), - [aux_sym_proxy_jump_token1] = ACTIONS(936), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(936), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(936), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(936), - [aux_sym_pubkey_authentication_token1] = ACTIONS(936), - [aux_sym_rekey_limit_token1] = ACTIONS(936), - [aux_sym_remote_command_token1] = ACTIONS(936), - [aux_sym_remote_forward_token1] = ACTIONS(936), - [aux_sym_request_tty_token1] = ACTIONS(936), - [aux_sym_required_rsa_size_token1] = ACTIONS(936), - [aux_sym_revoked_host_keys_token1] = ACTIONS(936), - [aux_sym_security_key_provider_token1] = ACTIONS(936), - [aux_sym_send_env_token1] = ACTIONS(936), - [aux_sym_server_alive_count_max_token1] = ACTIONS(936), - [aux_sym_server_alive_interval_token1] = ACTIONS(936), - [aux_sym_session_type_token1] = ACTIONS(936), - [aux_sym_set_env_token1] = ACTIONS(936), - [aux_sym_stdin_null_token1] = ACTIONS(936), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(936), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(936), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(936), - [aux_sym_syslog_facility_token1] = ACTIONS(936), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(936), - [aux_sym_keep_alive_token1] = ACTIONS(936), - [aux_sym_tag_token1] = ACTIONS(936), - [aux_sym_tunnel_token1] = ACTIONS(938), - [aux_sym_tunnel_device_token1] = ACTIONS(936), - [aux_sym_update_host_keys_token1] = ACTIONS(936), - [aux_sym_use_keychain_token1] = ACTIONS(936), - [aux_sym_use_roaming_token1] = ACTIONS(936), - [aux_sym_user_token1] = ACTIONS(938), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(936), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(936), - [aux_sym_visual_host_key_token1] = ACTIONS(936), - [aux_sym_xauth_location_token1] = ACTIONS(936), + [ts_builtin_sym_end] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(945), + [aux_sym_match_token1] = ACTIONS(941), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(941), + [aux_sym_address_family_token1] = ACTIONS(941), + [aux_sym_batch_mode_token1] = ACTIONS(941), + [aux_sym_bind_address_token1] = ACTIONS(941), + [aux_sym_bind_interface_token1] = ACTIONS(941), + [aux_sym_canonical_domains_token1] = ACTIONS(941), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(941), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(941), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(941), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(941), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(941), + [aux_sym_certificate_file_token1] = ACTIONS(941), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(941), + [aux_sym_channel_timeout_token1] = ACTIONS(941), + [aux_sym_check_host_ip_token1] = ACTIONS(941), + [aux_sym_ciphers_token1] = ACTIONS(941), + [aux_sym_cipher_token1] = ACTIONS(943), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(941), + [aux_sym_compression_token1] = ACTIONS(941), + [aux_sym_connection_attempts_token1] = ACTIONS(941), + [aux_sym_connect_timeout_token1] = ACTIONS(941), + [aux_sym_control_master_token1] = ACTIONS(941), + [aux_sym_control_path_token1] = ACTIONS(941), + [aux_sym_control_persist_token1] = ACTIONS(941), + [aux_sym_dynamic_forward_token1] = ACTIONS(941), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(941), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(941), + [aux_sym_escape_char_token1] = ACTIONS(941), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(941), + [aux_sym_fingerprint_hash_token1] = ACTIONS(941), + [aux_sym_fork_after_authentication_token1] = ACTIONS(941), + [aux_sym_forward_agent_token1] = ACTIONS(941), + [aux_sym_forward_x11_token1] = ACTIONS(943), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(941), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(941), + [aux_sym_gateway_ports_token1] = ACTIONS(941), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(941), + [aux_sym_gssapi_authentication_token1] = ACTIONS(941), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(941), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(941), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(941), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(941), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(941), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(941), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(941), + [aux_sym_hash_known_hosts_token1] = ACTIONS(941), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(941), + [aux_sym_hostbased_authentication_token1] = ACTIONS(941), + [aux_sym_host_key_algorithms_token1] = ACTIONS(941), + [aux_sym_host_key_alias_token1] = ACTIONS(941), + [aux_sym_hostname_token1] = ACTIONS(941), + [aux_sym_identities_only_token1] = ACTIONS(941), + [aux_sym_identity_agent_token1] = ACTIONS(941), + [aux_sym_identity_file_token1] = ACTIONS(941), + [aux_sym_ignore_unknown_token1] = ACTIONS(941), + [aux_sym_include_token1] = ACTIONS(941), + [aux_sym_ip_qos_token1] = ACTIONS(941), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(941), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(941), + [aux_sym_kex_algorithms_token1] = ACTIONS(941), + [aux_sym_known_hosts_command_token1] = ACTIONS(941), + [aux_sym_local_command_token1] = ACTIONS(941), + [aux_sym_local_forward_token1] = ACTIONS(941), + [aux_sym_log_level_token1] = ACTIONS(941), + [aux_sym_log_verbose_token1] = ACTIONS(941), + [aux_sym_macs_token1] = ACTIONS(941), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(941), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(941), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(941), + [aux_sym_password_authentication_token1] = ACTIONS(941), + [aux_sym_permit_local_command_token1] = ACTIONS(941), + [aux_sym_permit_remote_open_token1] = ACTIONS(941), + [aux_sym_pkcs11_provider_token1] = ACTIONS(941), + [aux_sym_port_token1] = ACTIONS(941), + [aux_sym_preferred_authentications_token1] = ACTIONS(941), + [aux_sym_protocol_token1] = ACTIONS(941), + [aux_sym_proxy_command_token1] = ACTIONS(941), + [aux_sym_proxy_jump_token1] = ACTIONS(941), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(941), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(941), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(941), + [aux_sym_pubkey_authentication_token1] = ACTIONS(941), + [aux_sym_rekey_limit_token1] = ACTIONS(941), + [aux_sym_remote_command_token1] = ACTIONS(941), + [aux_sym_remote_forward_token1] = ACTIONS(941), + [aux_sym_request_tty_token1] = ACTIONS(941), + [aux_sym_required_rsa_size_token1] = ACTIONS(941), + [aux_sym_revoked_host_keys_token1] = ACTIONS(941), + [aux_sym_security_key_provider_token1] = ACTIONS(941), + [aux_sym_send_env_token1] = ACTIONS(941), + [aux_sym_server_alive_count_max_token1] = ACTIONS(941), + [aux_sym_server_alive_interval_token1] = ACTIONS(941), + [aux_sym_session_type_token1] = ACTIONS(941), + [aux_sym_set_env_token1] = ACTIONS(941), + [aux_sym_stdin_null_token1] = ACTIONS(941), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(941), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(941), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(941), + [aux_sym_syslog_facility_token1] = ACTIONS(941), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(941), + [aux_sym_keep_alive_token1] = ACTIONS(941), + [aux_sym_tag_token1] = ACTIONS(941), + [aux_sym_tunnel_token1] = ACTIONS(943), + [aux_sym_tunnel_device_token1] = ACTIONS(941), + [aux_sym_update_host_keys_token1] = ACTIONS(941), + [aux_sym_use_keychain_token1] = ACTIONS(941), + [aux_sym_use_roaming_token1] = ACTIONS(941), + [aux_sym_user_token1] = ACTIONS(943), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(941), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(941), + [aux_sym_visual_host_key_token1] = ACTIONS(941), + [aux_sym_xauth_location_token1] = ACTIONS(941), }, [64] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(944), - [anon_sym_DQUOTE] = ACTIONS(946), - [aux_sym_match_token1] = ACTIONS(942), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(942), - [aux_sym_address_family_token1] = ACTIONS(942), - [aux_sym_batch_mode_token1] = ACTIONS(942), - [aux_sym_bind_address_token1] = ACTIONS(942), - [aux_sym_bind_interface_token1] = ACTIONS(942), - [aux_sym_canonical_domains_token1] = ACTIONS(942), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(942), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(942), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(942), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(942), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(942), - [aux_sym_certificate_file_token1] = ACTIONS(942), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(942), - [aux_sym_channel_timeout_token1] = ACTIONS(942), - [aux_sym_check_host_ip_token1] = ACTIONS(942), - [aux_sym_ciphers_token1] = ACTIONS(942), - [aux_sym_cipher_token1] = ACTIONS(944), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(942), - [aux_sym_compression_token1] = ACTIONS(942), - [aux_sym_connection_attempts_token1] = ACTIONS(942), - [aux_sym_connect_timeout_token1] = ACTIONS(942), - [aux_sym_control_master_token1] = ACTIONS(942), - [aux_sym_control_path_token1] = ACTIONS(942), - [aux_sym_control_persist_token1] = ACTIONS(942), - [aux_sym_dynamic_forward_token1] = ACTIONS(942), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(942), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(942), - [aux_sym_escape_char_token1] = ACTIONS(942), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(942), - [aux_sym_fingerprint_hash_token1] = ACTIONS(942), - [aux_sym_fork_after_authentication_token1] = ACTIONS(942), - [aux_sym_forward_agent_token1] = ACTIONS(942), - [aux_sym_forward_x11_token1] = ACTIONS(944), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(942), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(942), - [aux_sym_gateway_ports_token1] = ACTIONS(942), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(942), - [aux_sym_gssapi_authentication_token1] = ACTIONS(942), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(942), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(942), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(942), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(942), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(942), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(942), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(942), - [aux_sym_hash_known_hosts_token1] = ACTIONS(942), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(942), - [aux_sym_hostbased_authentication_token1] = ACTIONS(942), - [aux_sym_host_key_algorithms_token1] = ACTIONS(942), - [aux_sym_host_key_alias_token1] = ACTIONS(942), - [aux_sym_hostname_token1] = ACTIONS(942), - [aux_sym_identities_only_token1] = ACTIONS(942), - [aux_sym_identity_agent_token1] = ACTIONS(942), - [aux_sym_identity_file_token1] = ACTIONS(942), - [aux_sym_ignore_unknown_token1] = ACTIONS(942), - [aux_sym_include_token1] = ACTIONS(942), - [aux_sym_ip_qos_token1] = ACTIONS(942), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(942), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(942), - [aux_sym_kex_algorithms_token1] = ACTIONS(942), - [aux_sym_known_hosts_command_token1] = ACTIONS(942), - [aux_sym_local_command_token1] = ACTIONS(942), - [aux_sym_local_forward_token1] = ACTIONS(942), - [aux_sym_log_level_token1] = ACTIONS(942), - [aux_sym_log_verbose_token1] = ACTIONS(942), - [aux_sym_macs_token1] = ACTIONS(942), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(942), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(942), - [aux_sym_password_authentication_token1] = ACTIONS(942), - [aux_sym_permit_local_command_token1] = ACTIONS(942), - [aux_sym_permit_remote_open_token1] = ACTIONS(942), - [aux_sym_pkcs11_provider_token1] = ACTIONS(942), - [aux_sym_port_token1] = ACTIONS(942), - [aux_sym_preferred_authentications_token1] = ACTIONS(942), - [aux_sym_protocol_token1] = ACTIONS(942), - [aux_sym_proxy_command_token1] = ACTIONS(942), - [aux_sym_proxy_jump_token1] = ACTIONS(942), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(942), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(942), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(942), - [aux_sym_pubkey_authentication_token1] = ACTIONS(942), - [aux_sym_rekey_limit_token1] = ACTIONS(942), - [aux_sym_remote_command_token1] = ACTIONS(942), - [aux_sym_remote_forward_token1] = ACTIONS(942), - [aux_sym_request_tty_token1] = ACTIONS(942), - [aux_sym_required_rsa_size_token1] = ACTIONS(942), - [aux_sym_revoked_host_keys_token1] = ACTIONS(942), - [aux_sym_security_key_provider_token1] = ACTIONS(942), - [aux_sym_send_env_token1] = ACTIONS(942), - [aux_sym_server_alive_count_max_token1] = ACTIONS(942), - [aux_sym_server_alive_interval_token1] = ACTIONS(942), - [aux_sym_session_type_token1] = ACTIONS(942), - [aux_sym_set_env_token1] = ACTIONS(942), - [aux_sym_stdin_null_token1] = ACTIONS(942), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(942), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(942), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(942), - [aux_sym_syslog_facility_token1] = ACTIONS(942), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(942), - [aux_sym_keep_alive_token1] = ACTIONS(942), - [aux_sym_tag_token1] = ACTIONS(942), - [aux_sym_tunnel_token1] = ACTIONS(944), - [aux_sym_tunnel_device_token1] = ACTIONS(942), - [aux_sym_update_host_keys_token1] = ACTIONS(942), - [aux_sym_use_keychain_token1] = ACTIONS(942), - [aux_sym_use_roaming_token1] = ACTIONS(942), - [aux_sym_user_token1] = ACTIONS(944), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(942), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(942), - [aux_sym_visual_host_key_token1] = ACTIONS(942), - [aux_sym_xauth_location_token1] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(947), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(949), + [anon_sym_DQUOTE] = ACTIONS(951), + [aux_sym_match_token1] = ACTIONS(947), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(947), + [aux_sym_address_family_token1] = ACTIONS(947), + [aux_sym_batch_mode_token1] = ACTIONS(947), + [aux_sym_bind_address_token1] = ACTIONS(947), + [aux_sym_bind_interface_token1] = ACTIONS(947), + [aux_sym_canonical_domains_token1] = ACTIONS(947), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(947), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(947), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(947), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(947), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(947), + [aux_sym_certificate_file_token1] = ACTIONS(947), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(947), + [aux_sym_channel_timeout_token1] = ACTIONS(947), + [aux_sym_check_host_ip_token1] = ACTIONS(947), + [aux_sym_ciphers_token1] = ACTIONS(947), + [aux_sym_cipher_token1] = ACTIONS(949), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(947), + [aux_sym_compression_token1] = ACTIONS(947), + [aux_sym_connection_attempts_token1] = ACTIONS(947), + [aux_sym_connect_timeout_token1] = ACTIONS(947), + [aux_sym_control_master_token1] = ACTIONS(947), + [aux_sym_control_path_token1] = ACTIONS(947), + [aux_sym_control_persist_token1] = ACTIONS(947), + [aux_sym_dynamic_forward_token1] = ACTIONS(947), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(947), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(947), + [aux_sym_escape_char_token1] = ACTIONS(947), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(947), + [aux_sym_fingerprint_hash_token1] = ACTIONS(947), + [aux_sym_fork_after_authentication_token1] = ACTIONS(947), + [aux_sym_forward_agent_token1] = ACTIONS(947), + [aux_sym_forward_x11_token1] = ACTIONS(949), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(947), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(947), + [aux_sym_gateway_ports_token1] = ACTIONS(947), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(947), + [aux_sym_gssapi_authentication_token1] = ACTIONS(947), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(947), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(947), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(947), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(947), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(947), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(947), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(947), + [aux_sym_hash_known_hosts_token1] = ACTIONS(947), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(947), + [aux_sym_hostbased_authentication_token1] = ACTIONS(947), + [aux_sym_host_key_algorithms_token1] = ACTIONS(947), + [aux_sym_host_key_alias_token1] = ACTIONS(947), + [aux_sym_hostname_token1] = ACTIONS(947), + [aux_sym_identities_only_token1] = ACTIONS(947), + [aux_sym_identity_agent_token1] = ACTIONS(947), + [aux_sym_identity_file_token1] = ACTIONS(947), + [aux_sym_ignore_unknown_token1] = ACTIONS(947), + [aux_sym_include_token1] = ACTIONS(947), + [aux_sym_ip_qos_token1] = ACTIONS(947), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(947), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(947), + [aux_sym_kex_algorithms_token1] = ACTIONS(947), + [aux_sym_known_hosts_command_token1] = ACTIONS(947), + [aux_sym_local_command_token1] = ACTIONS(947), + [aux_sym_local_forward_token1] = ACTIONS(947), + [aux_sym_log_level_token1] = ACTIONS(947), + [aux_sym_log_verbose_token1] = ACTIONS(947), + [aux_sym_macs_token1] = ACTIONS(947), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(947), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(947), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(947), + [aux_sym_password_authentication_token1] = ACTIONS(947), + [aux_sym_permit_local_command_token1] = ACTIONS(947), + [aux_sym_permit_remote_open_token1] = ACTIONS(947), + [aux_sym_pkcs11_provider_token1] = ACTIONS(947), + [aux_sym_port_token1] = ACTIONS(947), + [aux_sym_preferred_authentications_token1] = ACTIONS(947), + [aux_sym_protocol_token1] = ACTIONS(947), + [aux_sym_proxy_command_token1] = ACTIONS(947), + [aux_sym_proxy_jump_token1] = ACTIONS(947), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(947), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(947), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(947), + [aux_sym_pubkey_authentication_token1] = ACTIONS(947), + [aux_sym_rekey_limit_token1] = ACTIONS(947), + [aux_sym_remote_command_token1] = ACTIONS(947), + [aux_sym_remote_forward_token1] = ACTIONS(947), + [aux_sym_request_tty_token1] = ACTIONS(947), + [aux_sym_required_rsa_size_token1] = ACTIONS(947), + [aux_sym_revoked_host_keys_token1] = ACTIONS(947), + [aux_sym_security_key_provider_token1] = ACTIONS(947), + [aux_sym_send_env_token1] = ACTIONS(947), + [aux_sym_server_alive_count_max_token1] = ACTIONS(947), + [aux_sym_server_alive_interval_token1] = ACTIONS(947), + [aux_sym_session_type_token1] = ACTIONS(947), + [aux_sym_set_env_token1] = ACTIONS(947), + [aux_sym_stdin_null_token1] = ACTIONS(947), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(947), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(947), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(947), + [aux_sym_syslog_facility_token1] = ACTIONS(947), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(947), + [aux_sym_keep_alive_token1] = ACTIONS(947), + [aux_sym_tag_token1] = ACTIONS(947), + [aux_sym_tunnel_token1] = ACTIONS(949), + [aux_sym_tunnel_device_token1] = ACTIONS(947), + [aux_sym_update_host_keys_token1] = ACTIONS(947), + [aux_sym_use_keychain_token1] = ACTIONS(947), + [aux_sym_use_roaming_token1] = ACTIONS(947), + [aux_sym_user_token1] = ACTIONS(949), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(947), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(947), + [aux_sym_visual_host_key_token1] = ACTIONS(947), + [aux_sym_xauth_location_token1] = ACTIONS(947), }, [65] = { - [ts_builtin_sym_end] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(952), - [aux_sym_match_token1] = ACTIONS(948), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(948), - [aux_sym_address_family_token1] = ACTIONS(948), - [aux_sym_batch_mode_token1] = ACTIONS(948), - [aux_sym_bind_address_token1] = ACTIONS(948), - [aux_sym_bind_interface_token1] = ACTIONS(948), - [aux_sym_canonical_domains_token1] = ACTIONS(948), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(948), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(948), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(948), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(948), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(948), - [aux_sym_certificate_file_token1] = ACTIONS(948), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(948), - [aux_sym_channel_timeout_token1] = ACTIONS(948), - [aux_sym_check_host_ip_token1] = ACTIONS(948), - [aux_sym_ciphers_token1] = ACTIONS(948), - [aux_sym_cipher_token1] = ACTIONS(950), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(948), - [aux_sym_compression_token1] = ACTIONS(948), - [aux_sym_connection_attempts_token1] = ACTIONS(948), - [aux_sym_connect_timeout_token1] = ACTIONS(948), - [aux_sym_control_master_token1] = ACTIONS(948), - [aux_sym_control_path_token1] = ACTIONS(948), - [aux_sym_control_persist_token1] = ACTIONS(948), - [aux_sym_dynamic_forward_token1] = ACTIONS(948), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(948), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(948), - [aux_sym_escape_char_token1] = ACTIONS(948), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(948), - [aux_sym_fingerprint_hash_token1] = ACTIONS(948), - [aux_sym_fork_after_authentication_token1] = ACTIONS(948), - [aux_sym_forward_agent_token1] = ACTIONS(948), - [aux_sym_forward_x11_token1] = ACTIONS(950), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(948), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(948), - [aux_sym_gateway_ports_token1] = ACTIONS(948), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(948), - [aux_sym_gssapi_authentication_token1] = ACTIONS(948), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(948), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(948), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(948), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(948), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(948), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(948), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(948), - [aux_sym_hash_known_hosts_token1] = ACTIONS(948), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(948), - [aux_sym_hostbased_authentication_token1] = ACTIONS(948), - [aux_sym_host_key_algorithms_token1] = ACTIONS(948), - [aux_sym_host_key_alias_token1] = ACTIONS(948), - [aux_sym_hostname_token1] = ACTIONS(948), - [aux_sym_identities_only_token1] = ACTIONS(948), - [aux_sym_identity_agent_token1] = ACTIONS(948), - [aux_sym_identity_file_token1] = ACTIONS(948), - [aux_sym_ignore_unknown_token1] = ACTIONS(948), - [aux_sym_include_token1] = ACTIONS(948), - [aux_sym_ip_qos_token1] = ACTIONS(948), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(948), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(948), - [aux_sym_kex_algorithms_token1] = ACTIONS(948), - [aux_sym_known_hosts_command_token1] = ACTIONS(948), - [aux_sym_local_command_token1] = ACTIONS(948), - [aux_sym_local_forward_token1] = ACTIONS(948), - [aux_sym_log_level_token1] = ACTIONS(948), - [aux_sym_log_verbose_token1] = ACTIONS(948), - [aux_sym_macs_token1] = ACTIONS(948), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(948), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(948), - [aux_sym_password_authentication_token1] = ACTIONS(948), - [aux_sym_permit_local_command_token1] = ACTIONS(948), - [aux_sym_permit_remote_open_token1] = ACTIONS(948), - [aux_sym_pkcs11_provider_token1] = ACTIONS(948), - [aux_sym_port_token1] = ACTIONS(948), - [aux_sym_preferred_authentications_token1] = ACTIONS(948), - [aux_sym_protocol_token1] = ACTIONS(948), - [aux_sym_proxy_command_token1] = ACTIONS(948), - [aux_sym_proxy_jump_token1] = ACTIONS(948), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(948), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(948), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(948), - [aux_sym_pubkey_authentication_token1] = ACTIONS(948), - [aux_sym_rekey_limit_token1] = ACTIONS(948), - [aux_sym_remote_command_token1] = ACTIONS(948), - [aux_sym_remote_forward_token1] = ACTIONS(948), - [aux_sym_request_tty_token1] = ACTIONS(948), - [aux_sym_required_rsa_size_token1] = ACTIONS(948), - [aux_sym_revoked_host_keys_token1] = ACTIONS(948), - [aux_sym_security_key_provider_token1] = ACTIONS(948), - [aux_sym_send_env_token1] = ACTIONS(948), - [aux_sym_server_alive_count_max_token1] = ACTIONS(948), - [aux_sym_server_alive_interval_token1] = ACTIONS(948), - [aux_sym_session_type_token1] = ACTIONS(948), - [aux_sym_set_env_token1] = ACTIONS(948), - [aux_sym_stdin_null_token1] = ACTIONS(948), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(948), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(948), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(948), - [aux_sym_syslog_facility_token1] = ACTIONS(948), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(948), - [aux_sym_keep_alive_token1] = ACTIONS(948), - [aux_sym_tag_token1] = ACTIONS(948), - [aux_sym_tunnel_token1] = ACTIONS(950), - [aux_sym_tunnel_device_token1] = ACTIONS(948), - [aux_sym_update_host_keys_token1] = ACTIONS(948), - [aux_sym_use_keychain_token1] = ACTIONS(948), - [aux_sym_use_roaming_token1] = ACTIONS(948), - [aux_sym_user_token1] = ACTIONS(950), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(948), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(948), - [aux_sym_visual_host_key_token1] = ACTIONS(948), - [aux_sym_xauth_location_token1] = ACTIONS(948), + [ts_builtin_sym_end] = ACTIONS(953), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(955), + [anon_sym_DQUOTE] = ACTIONS(957), + [aux_sym_match_token1] = ACTIONS(953), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(953), + [aux_sym_address_family_token1] = ACTIONS(953), + [aux_sym_batch_mode_token1] = ACTIONS(953), + [aux_sym_bind_address_token1] = ACTIONS(953), + [aux_sym_bind_interface_token1] = ACTIONS(953), + [aux_sym_canonical_domains_token1] = ACTIONS(953), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(953), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(953), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(953), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(953), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(953), + [aux_sym_certificate_file_token1] = ACTIONS(953), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(953), + [aux_sym_channel_timeout_token1] = ACTIONS(953), + [aux_sym_check_host_ip_token1] = ACTIONS(953), + [aux_sym_ciphers_token1] = ACTIONS(953), + [aux_sym_cipher_token1] = ACTIONS(955), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(953), + [aux_sym_compression_token1] = ACTIONS(953), + [aux_sym_connection_attempts_token1] = ACTIONS(953), + [aux_sym_connect_timeout_token1] = ACTIONS(953), + [aux_sym_control_master_token1] = ACTIONS(953), + [aux_sym_control_path_token1] = ACTIONS(953), + [aux_sym_control_persist_token1] = ACTIONS(953), + [aux_sym_dynamic_forward_token1] = ACTIONS(953), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(953), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(953), + [aux_sym_escape_char_token1] = ACTIONS(953), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(953), + [aux_sym_fingerprint_hash_token1] = ACTIONS(953), + [aux_sym_fork_after_authentication_token1] = ACTIONS(953), + [aux_sym_forward_agent_token1] = ACTIONS(953), + [aux_sym_forward_x11_token1] = ACTIONS(955), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(953), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(953), + [aux_sym_gateway_ports_token1] = ACTIONS(953), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(953), + [aux_sym_gssapi_authentication_token1] = ACTIONS(953), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(953), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(953), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(953), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(953), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(953), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(953), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(953), + [aux_sym_hash_known_hosts_token1] = ACTIONS(953), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(953), + [aux_sym_hostbased_authentication_token1] = ACTIONS(953), + [aux_sym_host_key_algorithms_token1] = ACTIONS(953), + [aux_sym_host_key_alias_token1] = ACTIONS(953), + [aux_sym_hostname_token1] = ACTIONS(953), + [aux_sym_identities_only_token1] = ACTIONS(953), + [aux_sym_identity_agent_token1] = ACTIONS(953), + [aux_sym_identity_file_token1] = ACTIONS(953), + [aux_sym_ignore_unknown_token1] = ACTIONS(953), + [aux_sym_include_token1] = ACTIONS(953), + [aux_sym_ip_qos_token1] = ACTIONS(953), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(953), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(953), + [aux_sym_kex_algorithms_token1] = ACTIONS(953), + [aux_sym_known_hosts_command_token1] = ACTIONS(953), + [aux_sym_local_command_token1] = ACTIONS(953), + [aux_sym_local_forward_token1] = ACTIONS(953), + [aux_sym_log_level_token1] = ACTIONS(953), + [aux_sym_log_verbose_token1] = ACTIONS(953), + [aux_sym_macs_token1] = ACTIONS(953), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(953), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(953), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(953), + [aux_sym_password_authentication_token1] = ACTIONS(953), + [aux_sym_permit_local_command_token1] = ACTIONS(953), + [aux_sym_permit_remote_open_token1] = ACTIONS(953), + [aux_sym_pkcs11_provider_token1] = ACTIONS(953), + [aux_sym_port_token1] = ACTIONS(953), + [aux_sym_preferred_authentications_token1] = ACTIONS(953), + [aux_sym_protocol_token1] = ACTIONS(953), + [aux_sym_proxy_command_token1] = ACTIONS(953), + [aux_sym_proxy_jump_token1] = ACTIONS(953), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(953), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(953), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(953), + [aux_sym_pubkey_authentication_token1] = ACTIONS(953), + [aux_sym_rekey_limit_token1] = ACTIONS(953), + [aux_sym_remote_command_token1] = ACTIONS(953), + [aux_sym_remote_forward_token1] = ACTIONS(953), + [aux_sym_request_tty_token1] = ACTIONS(953), + [aux_sym_required_rsa_size_token1] = ACTIONS(953), + [aux_sym_revoked_host_keys_token1] = ACTIONS(953), + [aux_sym_security_key_provider_token1] = ACTIONS(953), + [aux_sym_send_env_token1] = ACTIONS(953), + [aux_sym_server_alive_count_max_token1] = ACTIONS(953), + [aux_sym_server_alive_interval_token1] = ACTIONS(953), + [aux_sym_session_type_token1] = ACTIONS(953), + [aux_sym_set_env_token1] = ACTIONS(953), + [aux_sym_stdin_null_token1] = ACTIONS(953), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(953), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(953), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(953), + [aux_sym_syslog_facility_token1] = ACTIONS(953), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(953), + [aux_sym_keep_alive_token1] = ACTIONS(953), + [aux_sym_tag_token1] = ACTIONS(953), + [aux_sym_tunnel_token1] = ACTIONS(955), + [aux_sym_tunnel_device_token1] = ACTIONS(953), + [aux_sym_update_host_keys_token1] = ACTIONS(953), + [aux_sym_use_keychain_token1] = ACTIONS(953), + [aux_sym_use_roaming_token1] = ACTIONS(953), + [aux_sym_user_token1] = ACTIONS(955), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(953), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(953), + [aux_sym_visual_host_key_token1] = ACTIONS(953), + [aux_sym_xauth_location_token1] = ACTIONS(953), }, [66] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(956), - [anon_sym_DQUOTE] = ACTIONS(958), - [aux_sym_match_token1] = ACTIONS(954), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(954), - [aux_sym_address_family_token1] = ACTIONS(954), - [aux_sym_batch_mode_token1] = ACTIONS(954), - [aux_sym_bind_address_token1] = ACTIONS(954), - [aux_sym_bind_interface_token1] = ACTIONS(954), - [aux_sym_canonical_domains_token1] = ACTIONS(954), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(954), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(954), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(954), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(954), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(954), - [aux_sym_certificate_file_token1] = ACTIONS(954), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(954), - [aux_sym_channel_timeout_token1] = ACTIONS(954), - [aux_sym_check_host_ip_token1] = ACTIONS(954), - [aux_sym_ciphers_token1] = ACTIONS(954), - [aux_sym_cipher_token1] = ACTIONS(956), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(954), - [aux_sym_compression_token1] = ACTIONS(954), - [aux_sym_connection_attempts_token1] = ACTIONS(954), - [aux_sym_connect_timeout_token1] = ACTIONS(954), - [aux_sym_control_master_token1] = ACTIONS(954), - [aux_sym_control_path_token1] = ACTIONS(954), - [aux_sym_control_persist_token1] = ACTIONS(954), - [aux_sym_dynamic_forward_token1] = ACTIONS(954), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(954), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(954), - [aux_sym_escape_char_token1] = ACTIONS(954), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(954), - [aux_sym_fingerprint_hash_token1] = ACTIONS(954), - [aux_sym_fork_after_authentication_token1] = ACTIONS(954), - [aux_sym_forward_agent_token1] = ACTIONS(954), - [aux_sym_forward_x11_token1] = ACTIONS(956), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(954), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(954), - [aux_sym_gateway_ports_token1] = ACTIONS(954), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(954), - [aux_sym_gssapi_authentication_token1] = ACTIONS(954), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(954), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(954), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(954), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(954), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(954), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(954), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(954), - [aux_sym_hash_known_hosts_token1] = ACTIONS(954), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(954), - [aux_sym_hostbased_authentication_token1] = ACTIONS(954), - [aux_sym_host_key_algorithms_token1] = ACTIONS(954), - [aux_sym_host_key_alias_token1] = ACTIONS(954), - [aux_sym_hostname_token1] = ACTIONS(954), - [aux_sym_identities_only_token1] = ACTIONS(954), - [aux_sym_identity_agent_token1] = ACTIONS(954), - [aux_sym_identity_file_token1] = ACTIONS(954), - [aux_sym_ignore_unknown_token1] = ACTIONS(954), - [aux_sym_include_token1] = ACTIONS(954), - [aux_sym_ip_qos_token1] = ACTIONS(954), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(954), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(954), - [aux_sym_kex_algorithms_token1] = ACTIONS(954), - [aux_sym_known_hosts_command_token1] = ACTIONS(954), - [aux_sym_local_command_token1] = ACTIONS(954), - [aux_sym_local_forward_token1] = ACTIONS(954), - [aux_sym_log_level_token1] = ACTIONS(954), - [aux_sym_log_verbose_token1] = ACTIONS(954), - [aux_sym_macs_token1] = ACTIONS(954), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(954), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(954), - [aux_sym_password_authentication_token1] = ACTIONS(954), - [aux_sym_permit_local_command_token1] = ACTIONS(954), - [aux_sym_permit_remote_open_token1] = ACTIONS(954), - [aux_sym_pkcs11_provider_token1] = ACTIONS(954), - [aux_sym_port_token1] = ACTIONS(954), - [aux_sym_preferred_authentications_token1] = ACTIONS(954), - [aux_sym_protocol_token1] = ACTIONS(954), - [aux_sym_proxy_command_token1] = ACTIONS(954), - [aux_sym_proxy_jump_token1] = ACTIONS(954), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(954), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(954), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(954), - [aux_sym_pubkey_authentication_token1] = ACTIONS(954), - [aux_sym_rekey_limit_token1] = ACTIONS(954), - [aux_sym_remote_command_token1] = ACTIONS(954), - [aux_sym_remote_forward_token1] = ACTIONS(954), - [aux_sym_request_tty_token1] = ACTIONS(954), - [aux_sym_required_rsa_size_token1] = ACTIONS(954), - [aux_sym_revoked_host_keys_token1] = ACTIONS(954), - [aux_sym_security_key_provider_token1] = ACTIONS(954), - [aux_sym_send_env_token1] = ACTIONS(954), - [aux_sym_server_alive_count_max_token1] = ACTIONS(954), - [aux_sym_server_alive_interval_token1] = ACTIONS(954), - [aux_sym_session_type_token1] = ACTIONS(954), - [aux_sym_set_env_token1] = ACTIONS(954), - [aux_sym_stdin_null_token1] = ACTIONS(954), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(954), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(954), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(954), - [aux_sym_syslog_facility_token1] = ACTIONS(954), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(954), - [aux_sym_keep_alive_token1] = ACTIONS(954), - [aux_sym_tag_token1] = ACTIONS(954), - [aux_sym_tunnel_token1] = ACTIONS(956), - [aux_sym_tunnel_device_token1] = ACTIONS(954), - [aux_sym_update_host_keys_token1] = ACTIONS(954), - [aux_sym_use_keychain_token1] = ACTIONS(954), - [aux_sym_use_roaming_token1] = ACTIONS(954), - [aux_sym_user_token1] = ACTIONS(956), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(954), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(954), - [aux_sym_visual_host_key_token1] = ACTIONS(954), - [aux_sym_xauth_location_token1] = ACTIONS(954), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [aux_sym_match_token1] = ACTIONS(959), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(959), + [aux_sym_address_family_token1] = ACTIONS(959), + [aux_sym_batch_mode_token1] = ACTIONS(959), + [aux_sym_bind_address_token1] = ACTIONS(959), + [aux_sym_bind_interface_token1] = ACTIONS(959), + [aux_sym_canonical_domains_token1] = ACTIONS(959), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(959), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(959), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(959), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(959), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(959), + [aux_sym_certificate_file_token1] = ACTIONS(959), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(959), + [aux_sym_channel_timeout_token1] = ACTIONS(959), + [aux_sym_check_host_ip_token1] = ACTIONS(959), + [aux_sym_ciphers_token1] = ACTIONS(959), + [aux_sym_cipher_token1] = ACTIONS(961), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(959), + [aux_sym_compression_token1] = ACTIONS(959), + [aux_sym_connection_attempts_token1] = ACTIONS(959), + [aux_sym_connect_timeout_token1] = ACTIONS(959), + [aux_sym_control_master_token1] = ACTIONS(959), + [aux_sym_control_path_token1] = ACTIONS(959), + [aux_sym_control_persist_token1] = ACTIONS(959), + [aux_sym_dynamic_forward_token1] = ACTIONS(959), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(959), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(959), + [aux_sym_escape_char_token1] = ACTIONS(959), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(959), + [aux_sym_fingerprint_hash_token1] = ACTIONS(959), + [aux_sym_fork_after_authentication_token1] = ACTIONS(959), + [aux_sym_forward_agent_token1] = ACTIONS(959), + [aux_sym_forward_x11_token1] = ACTIONS(961), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(959), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(959), + [aux_sym_gateway_ports_token1] = ACTIONS(959), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(959), + [aux_sym_gssapi_authentication_token1] = ACTIONS(959), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(959), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(959), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(959), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(959), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(959), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(959), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(959), + [aux_sym_hash_known_hosts_token1] = ACTIONS(959), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(959), + [aux_sym_hostbased_authentication_token1] = ACTIONS(959), + [aux_sym_host_key_algorithms_token1] = ACTIONS(959), + [aux_sym_host_key_alias_token1] = ACTIONS(959), + [aux_sym_hostname_token1] = ACTIONS(959), + [aux_sym_identities_only_token1] = ACTIONS(959), + [aux_sym_identity_agent_token1] = ACTIONS(959), + [aux_sym_identity_file_token1] = ACTIONS(959), + [aux_sym_ignore_unknown_token1] = ACTIONS(959), + [aux_sym_include_token1] = ACTIONS(959), + [aux_sym_ip_qos_token1] = ACTIONS(959), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(959), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(959), + [aux_sym_kex_algorithms_token1] = ACTIONS(959), + [aux_sym_known_hosts_command_token1] = ACTIONS(959), + [aux_sym_local_command_token1] = ACTIONS(959), + [aux_sym_local_forward_token1] = ACTIONS(959), + [aux_sym_log_level_token1] = ACTIONS(959), + [aux_sym_log_verbose_token1] = ACTIONS(959), + [aux_sym_macs_token1] = ACTIONS(959), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(959), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(959), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(959), + [aux_sym_password_authentication_token1] = ACTIONS(959), + [aux_sym_permit_local_command_token1] = ACTIONS(959), + [aux_sym_permit_remote_open_token1] = ACTIONS(959), + [aux_sym_pkcs11_provider_token1] = ACTIONS(959), + [aux_sym_port_token1] = ACTIONS(959), + [aux_sym_preferred_authentications_token1] = ACTIONS(959), + [aux_sym_protocol_token1] = ACTIONS(959), + [aux_sym_proxy_command_token1] = ACTIONS(959), + [aux_sym_proxy_jump_token1] = ACTIONS(959), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(959), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(959), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(959), + [aux_sym_pubkey_authentication_token1] = ACTIONS(959), + [aux_sym_rekey_limit_token1] = ACTIONS(959), + [aux_sym_remote_command_token1] = ACTIONS(959), + [aux_sym_remote_forward_token1] = ACTIONS(959), + [aux_sym_request_tty_token1] = ACTIONS(959), + [aux_sym_required_rsa_size_token1] = ACTIONS(959), + [aux_sym_revoked_host_keys_token1] = ACTIONS(959), + [aux_sym_security_key_provider_token1] = ACTIONS(959), + [aux_sym_send_env_token1] = ACTIONS(959), + [aux_sym_server_alive_count_max_token1] = ACTIONS(959), + [aux_sym_server_alive_interval_token1] = ACTIONS(959), + [aux_sym_session_type_token1] = ACTIONS(959), + [aux_sym_set_env_token1] = ACTIONS(959), + [aux_sym_stdin_null_token1] = ACTIONS(959), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(959), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(959), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(959), + [aux_sym_syslog_facility_token1] = ACTIONS(959), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(959), + [aux_sym_keep_alive_token1] = ACTIONS(959), + [aux_sym_tag_token1] = ACTIONS(959), + [aux_sym_tunnel_token1] = ACTIONS(961), + [aux_sym_tunnel_device_token1] = ACTIONS(959), + [aux_sym_update_host_keys_token1] = ACTIONS(959), + [aux_sym_use_keychain_token1] = ACTIONS(959), + [aux_sym_use_roaming_token1] = ACTIONS(959), + [aux_sym_user_token1] = ACTIONS(961), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(959), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(959), + [aux_sym_visual_host_key_token1] = ACTIONS(959), + [aux_sym_xauth_location_token1] = ACTIONS(959), }, [67] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(962), - [anon_sym_DQUOTE] = ACTIONS(964), - [aux_sym_match_token1] = ACTIONS(960), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(960), - [aux_sym_address_family_token1] = ACTIONS(960), - [aux_sym_batch_mode_token1] = ACTIONS(960), - [aux_sym_bind_address_token1] = ACTIONS(960), - [aux_sym_bind_interface_token1] = ACTIONS(960), - [aux_sym_canonical_domains_token1] = ACTIONS(960), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(960), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(960), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(960), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(960), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(960), - [aux_sym_certificate_file_token1] = ACTIONS(960), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(960), - [aux_sym_channel_timeout_token1] = ACTIONS(960), - [aux_sym_check_host_ip_token1] = ACTIONS(960), - [aux_sym_ciphers_token1] = ACTIONS(960), - [aux_sym_cipher_token1] = ACTIONS(962), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(960), - [aux_sym_compression_token1] = ACTIONS(960), - [aux_sym_connection_attempts_token1] = ACTIONS(960), - [aux_sym_connect_timeout_token1] = ACTIONS(960), - [aux_sym_control_master_token1] = ACTIONS(960), - [aux_sym_control_path_token1] = ACTIONS(960), - [aux_sym_control_persist_token1] = ACTIONS(960), - [aux_sym_dynamic_forward_token1] = ACTIONS(960), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(960), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(960), - [aux_sym_escape_char_token1] = ACTIONS(960), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(960), - [aux_sym_fingerprint_hash_token1] = ACTIONS(960), - [aux_sym_fork_after_authentication_token1] = ACTIONS(960), - [aux_sym_forward_agent_token1] = ACTIONS(960), - [aux_sym_forward_x11_token1] = ACTIONS(962), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(960), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(960), - [aux_sym_gateway_ports_token1] = ACTIONS(960), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(960), - [aux_sym_gssapi_authentication_token1] = ACTIONS(960), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(960), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(960), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(960), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(960), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(960), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(960), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(960), - [aux_sym_hash_known_hosts_token1] = ACTIONS(960), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(960), - [aux_sym_hostbased_authentication_token1] = ACTIONS(960), - [aux_sym_host_key_algorithms_token1] = ACTIONS(960), - [aux_sym_host_key_alias_token1] = ACTIONS(960), - [aux_sym_hostname_token1] = ACTIONS(960), - [aux_sym_identities_only_token1] = ACTIONS(960), - [aux_sym_identity_agent_token1] = ACTIONS(960), - [aux_sym_identity_file_token1] = ACTIONS(960), - [aux_sym_ignore_unknown_token1] = ACTIONS(960), - [aux_sym_include_token1] = ACTIONS(960), - [aux_sym_ip_qos_token1] = ACTIONS(960), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(960), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(960), - [aux_sym_kex_algorithms_token1] = ACTIONS(960), - [aux_sym_known_hosts_command_token1] = ACTIONS(960), - [aux_sym_local_command_token1] = ACTIONS(960), - [aux_sym_local_forward_token1] = ACTIONS(960), - [aux_sym_log_level_token1] = ACTIONS(960), - [aux_sym_log_verbose_token1] = ACTIONS(960), - [aux_sym_macs_token1] = ACTIONS(960), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(960), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(960), - [aux_sym_password_authentication_token1] = ACTIONS(960), - [aux_sym_permit_local_command_token1] = ACTIONS(960), - [aux_sym_permit_remote_open_token1] = ACTIONS(960), - [aux_sym_pkcs11_provider_token1] = ACTIONS(960), - [aux_sym_port_token1] = ACTIONS(960), - [aux_sym_preferred_authentications_token1] = ACTIONS(960), - [aux_sym_protocol_token1] = ACTIONS(960), - [aux_sym_proxy_command_token1] = ACTIONS(960), - [aux_sym_proxy_jump_token1] = ACTIONS(960), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(960), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(960), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(960), - [aux_sym_pubkey_authentication_token1] = ACTIONS(960), - [aux_sym_rekey_limit_token1] = ACTIONS(960), - [aux_sym_remote_command_token1] = ACTIONS(960), - [aux_sym_remote_forward_token1] = ACTIONS(960), - [aux_sym_request_tty_token1] = ACTIONS(960), - [aux_sym_required_rsa_size_token1] = ACTIONS(960), - [aux_sym_revoked_host_keys_token1] = ACTIONS(960), - [aux_sym_security_key_provider_token1] = ACTIONS(960), - [aux_sym_send_env_token1] = ACTIONS(960), - [aux_sym_server_alive_count_max_token1] = ACTIONS(960), - [aux_sym_server_alive_interval_token1] = ACTIONS(960), - [aux_sym_session_type_token1] = ACTIONS(960), - [aux_sym_set_env_token1] = ACTIONS(960), - [aux_sym_stdin_null_token1] = ACTIONS(960), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(960), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(960), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(960), - [aux_sym_syslog_facility_token1] = ACTIONS(960), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(960), - [aux_sym_keep_alive_token1] = ACTIONS(960), - [aux_sym_tag_token1] = ACTIONS(960), - [aux_sym_tunnel_token1] = ACTIONS(962), - [aux_sym_tunnel_device_token1] = ACTIONS(960), - [aux_sym_update_host_keys_token1] = ACTIONS(960), - [aux_sym_use_keychain_token1] = ACTIONS(960), - [aux_sym_use_roaming_token1] = ACTIONS(960), - [aux_sym_user_token1] = ACTIONS(962), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(960), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(960), - [aux_sym_visual_host_key_token1] = ACTIONS(960), - [aux_sym_xauth_location_token1] = ACTIONS(960), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(967), + [anon_sym_DQUOTE] = ACTIONS(969), + [aux_sym_match_token1] = ACTIONS(965), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(965), + [aux_sym_address_family_token1] = ACTIONS(965), + [aux_sym_batch_mode_token1] = ACTIONS(965), + [aux_sym_bind_address_token1] = ACTIONS(965), + [aux_sym_bind_interface_token1] = ACTIONS(965), + [aux_sym_canonical_domains_token1] = ACTIONS(965), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(965), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(965), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(965), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(965), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(965), + [aux_sym_certificate_file_token1] = ACTIONS(965), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(965), + [aux_sym_channel_timeout_token1] = ACTIONS(965), + [aux_sym_check_host_ip_token1] = ACTIONS(965), + [aux_sym_ciphers_token1] = ACTIONS(965), + [aux_sym_cipher_token1] = ACTIONS(967), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(965), + [aux_sym_compression_token1] = ACTIONS(965), + [aux_sym_connection_attempts_token1] = ACTIONS(965), + [aux_sym_connect_timeout_token1] = ACTIONS(965), + [aux_sym_control_master_token1] = ACTIONS(965), + [aux_sym_control_path_token1] = ACTIONS(965), + [aux_sym_control_persist_token1] = ACTIONS(965), + [aux_sym_dynamic_forward_token1] = ACTIONS(965), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(965), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(965), + [aux_sym_escape_char_token1] = ACTIONS(965), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(965), + [aux_sym_fingerprint_hash_token1] = ACTIONS(965), + [aux_sym_fork_after_authentication_token1] = ACTIONS(965), + [aux_sym_forward_agent_token1] = ACTIONS(965), + [aux_sym_forward_x11_token1] = ACTIONS(967), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(965), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(965), + [aux_sym_gateway_ports_token1] = ACTIONS(965), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(965), + [aux_sym_gssapi_authentication_token1] = ACTIONS(965), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(965), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(965), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(965), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(965), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(965), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(965), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(965), + [aux_sym_hash_known_hosts_token1] = ACTIONS(965), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(965), + [aux_sym_hostbased_authentication_token1] = ACTIONS(965), + [aux_sym_host_key_algorithms_token1] = ACTIONS(965), + [aux_sym_host_key_alias_token1] = ACTIONS(965), + [aux_sym_hostname_token1] = ACTIONS(965), + [aux_sym_identities_only_token1] = ACTIONS(965), + [aux_sym_identity_agent_token1] = ACTIONS(965), + [aux_sym_identity_file_token1] = ACTIONS(965), + [aux_sym_ignore_unknown_token1] = ACTIONS(965), + [aux_sym_include_token1] = ACTIONS(965), + [aux_sym_ip_qos_token1] = ACTIONS(965), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(965), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(965), + [aux_sym_kex_algorithms_token1] = ACTIONS(965), + [aux_sym_known_hosts_command_token1] = ACTIONS(965), + [aux_sym_local_command_token1] = ACTIONS(965), + [aux_sym_local_forward_token1] = ACTIONS(965), + [aux_sym_log_level_token1] = ACTIONS(965), + [aux_sym_log_verbose_token1] = ACTIONS(965), + [aux_sym_macs_token1] = ACTIONS(965), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(965), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(965), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(965), + [aux_sym_password_authentication_token1] = ACTIONS(965), + [aux_sym_permit_local_command_token1] = ACTIONS(965), + [aux_sym_permit_remote_open_token1] = ACTIONS(965), + [aux_sym_pkcs11_provider_token1] = ACTIONS(965), + [aux_sym_port_token1] = ACTIONS(965), + [aux_sym_preferred_authentications_token1] = ACTIONS(965), + [aux_sym_protocol_token1] = ACTIONS(965), + [aux_sym_proxy_command_token1] = ACTIONS(965), + [aux_sym_proxy_jump_token1] = ACTIONS(965), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(965), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(965), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(965), + [aux_sym_pubkey_authentication_token1] = ACTIONS(965), + [aux_sym_rekey_limit_token1] = ACTIONS(965), + [aux_sym_remote_command_token1] = ACTIONS(965), + [aux_sym_remote_forward_token1] = ACTIONS(965), + [aux_sym_request_tty_token1] = ACTIONS(965), + [aux_sym_required_rsa_size_token1] = ACTIONS(965), + [aux_sym_revoked_host_keys_token1] = ACTIONS(965), + [aux_sym_security_key_provider_token1] = ACTIONS(965), + [aux_sym_send_env_token1] = ACTIONS(965), + [aux_sym_server_alive_count_max_token1] = ACTIONS(965), + [aux_sym_server_alive_interval_token1] = ACTIONS(965), + [aux_sym_session_type_token1] = ACTIONS(965), + [aux_sym_set_env_token1] = ACTIONS(965), + [aux_sym_stdin_null_token1] = ACTIONS(965), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(965), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(965), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(965), + [aux_sym_syslog_facility_token1] = ACTIONS(965), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(965), + [aux_sym_keep_alive_token1] = ACTIONS(965), + [aux_sym_tag_token1] = ACTIONS(965), + [aux_sym_tunnel_token1] = ACTIONS(967), + [aux_sym_tunnel_device_token1] = ACTIONS(965), + [aux_sym_update_host_keys_token1] = ACTIONS(965), + [aux_sym_use_keychain_token1] = ACTIONS(965), + [aux_sym_use_roaming_token1] = ACTIONS(965), + [aux_sym_user_token1] = ACTIONS(967), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(965), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(965), + [aux_sym_visual_host_key_token1] = ACTIONS(965), + [aux_sym_xauth_location_token1] = ACTIONS(965), }, [68] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(970), - [aux_sym_match_token1] = ACTIONS(966), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(966), - [aux_sym_address_family_token1] = ACTIONS(966), - [aux_sym_batch_mode_token1] = ACTIONS(966), - [aux_sym_bind_address_token1] = ACTIONS(966), - [aux_sym_bind_interface_token1] = ACTIONS(966), - [aux_sym_canonical_domains_token1] = ACTIONS(966), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(966), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(966), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(966), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(966), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(966), - [aux_sym_certificate_file_token1] = ACTIONS(966), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(966), - [aux_sym_channel_timeout_token1] = ACTIONS(966), - [aux_sym_check_host_ip_token1] = ACTIONS(966), - [aux_sym_ciphers_token1] = ACTIONS(966), - [aux_sym_cipher_token1] = ACTIONS(968), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(966), - [aux_sym_compression_token1] = ACTIONS(966), - [aux_sym_connection_attempts_token1] = ACTIONS(966), - [aux_sym_connect_timeout_token1] = ACTIONS(966), - [aux_sym_control_master_token1] = ACTIONS(966), - [aux_sym_control_path_token1] = ACTIONS(966), - [aux_sym_control_persist_token1] = ACTIONS(966), - [aux_sym_dynamic_forward_token1] = ACTIONS(966), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(966), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(966), - [aux_sym_escape_char_token1] = ACTIONS(966), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(966), - [aux_sym_fingerprint_hash_token1] = ACTIONS(966), - [aux_sym_fork_after_authentication_token1] = ACTIONS(966), - [aux_sym_forward_agent_token1] = ACTIONS(966), - [aux_sym_forward_x11_token1] = ACTIONS(968), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(966), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(966), - [aux_sym_gateway_ports_token1] = ACTIONS(966), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(966), - [aux_sym_gssapi_authentication_token1] = ACTIONS(966), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(966), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(966), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(966), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(966), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(966), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(966), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(966), - [aux_sym_hash_known_hosts_token1] = ACTIONS(966), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(966), - [aux_sym_hostbased_authentication_token1] = ACTIONS(966), - [aux_sym_host_key_algorithms_token1] = ACTIONS(966), - [aux_sym_host_key_alias_token1] = ACTIONS(966), - [aux_sym_hostname_token1] = ACTIONS(966), - [aux_sym_identities_only_token1] = ACTIONS(966), - [aux_sym_identity_agent_token1] = ACTIONS(966), - [aux_sym_identity_file_token1] = ACTIONS(966), - [aux_sym_ignore_unknown_token1] = ACTIONS(966), - [aux_sym_include_token1] = ACTIONS(966), - [aux_sym_ip_qos_token1] = ACTIONS(966), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(966), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(966), - [aux_sym_kex_algorithms_token1] = ACTIONS(966), - [aux_sym_known_hosts_command_token1] = ACTIONS(966), - [aux_sym_local_command_token1] = ACTIONS(966), - [aux_sym_local_forward_token1] = ACTIONS(966), - [aux_sym_log_level_token1] = ACTIONS(966), - [aux_sym_log_verbose_token1] = ACTIONS(966), - [aux_sym_macs_token1] = ACTIONS(966), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(966), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(966), - [aux_sym_password_authentication_token1] = ACTIONS(966), - [aux_sym_permit_local_command_token1] = ACTIONS(966), - [aux_sym_permit_remote_open_token1] = ACTIONS(966), - [aux_sym_pkcs11_provider_token1] = ACTIONS(966), - [aux_sym_port_token1] = ACTIONS(966), - [aux_sym_preferred_authentications_token1] = ACTIONS(966), - [aux_sym_protocol_token1] = ACTIONS(966), - [aux_sym_proxy_command_token1] = ACTIONS(966), - [aux_sym_proxy_jump_token1] = ACTIONS(966), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(966), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(966), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(966), - [aux_sym_pubkey_authentication_token1] = ACTIONS(966), - [aux_sym_rekey_limit_token1] = ACTIONS(966), - [aux_sym_remote_command_token1] = ACTIONS(966), - [aux_sym_remote_forward_token1] = ACTIONS(966), - [aux_sym_request_tty_token1] = ACTIONS(966), - [aux_sym_required_rsa_size_token1] = ACTIONS(966), - [aux_sym_revoked_host_keys_token1] = ACTIONS(966), - [aux_sym_security_key_provider_token1] = ACTIONS(966), - [aux_sym_send_env_token1] = ACTIONS(966), - [aux_sym_server_alive_count_max_token1] = ACTIONS(966), - [aux_sym_server_alive_interval_token1] = ACTIONS(966), - [aux_sym_session_type_token1] = ACTIONS(966), - [aux_sym_set_env_token1] = ACTIONS(966), - [aux_sym_stdin_null_token1] = ACTIONS(966), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(966), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(966), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(966), - [aux_sym_syslog_facility_token1] = ACTIONS(966), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(966), - [aux_sym_keep_alive_token1] = ACTIONS(966), - [aux_sym_tag_token1] = ACTIONS(966), - [aux_sym_tunnel_token1] = ACTIONS(968), - [aux_sym_tunnel_device_token1] = ACTIONS(966), - [aux_sym_update_host_keys_token1] = ACTIONS(966), - [aux_sym_use_keychain_token1] = ACTIONS(966), - [aux_sym_use_roaming_token1] = ACTIONS(966), - [aux_sym_user_token1] = ACTIONS(968), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(966), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(966), - [aux_sym_visual_host_key_token1] = ACTIONS(966), - [aux_sym_xauth_location_token1] = ACTIONS(966), + [ts_builtin_sym_end] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(973), + [anon_sym_DQUOTE] = ACTIONS(975), + [aux_sym_match_token1] = ACTIONS(971), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(971), + [aux_sym_address_family_token1] = ACTIONS(971), + [aux_sym_batch_mode_token1] = ACTIONS(971), + [aux_sym_bind_address_token1] = ACTIONS(971), + [aux_sym_bind_interface_token1] = ACTIONS(971), + [aux_sym_canonical_domains_token1] = ACTIONS(971), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(971), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(971), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(971), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(971), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(971), + [aux_sym_certificate_file_token1] = ACTIONS(971), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(971), + [aux_sym_channel_timeout_token1] = ACTIONS(971), + [aux_sym_check_host_ip_token1] = ACTIONS(971), + [aux_sym_ciphers_token1] = ACTIONS(971), + [aux_sym_cipher_token1] = ACTIONS(973), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(971), + [aux_sym_compression_token1] = ACTIONS(971), + [aux_sym_connection_attempts_token1] = ACTIONS(971), + [aux_sym_connect_timeout_token1] = ACTIONS(971), + [aux_sym_control_master_token1] = ACTIONS(971), + [aux_sym_control_path_token1] = ACTIONS(971), + [aux_sym_control_persist_token1] = ACTIONS(971), + [aux_sym_dynamic_forward_token1] = ACTIONS(971), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(971), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(971), + [aux_sym_escape_char_token1] = ACTIONS(971), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(971), + [aux_sym_fingerprint_hash_token1] = ACTIONS(971), + [aux_sym_fork_after_authentication_token1] = ACTIONS(971), + [aux_sym_forward_agent_token1] = ACTIONS(971), + [aux_sym_forward_x11_token1] = ACTIONS(973), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(971), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(971), + [aux_sym_gateway_ports_token1] = ACTIONS(971), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(971), + [aux_sym_gssapi_authentication_token1] = ACTIONS(971), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(971), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(971), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(971), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(971), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(971), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(971), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(971), + [aux_sym_hash_known_hosts_token1] = ACTIONS(971), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(971), + [aux_sym_hostbased_authentication_token1] = ACTIONS(971), + [aux_sym_host_key_algorithms_token1] = ACTIONS(971), + [aux_sym_host_key_alias_token1] = ACTIONS(971), + [aux_sym_hostname_token1] = ACTIONS(971), + [aux_sym_identities_only_token1] = ACTIONS(971), + [aux_sym_identity_agent_token1] = ACTIONS(971), + [aux_sym_identity_file_token1] = ACTIONS(971), + [aux_sym_ignore_unknown_token1] = ACTIONS(971), + [aux_sym_include_token1] = ACTIONS(971), + [aux_sym_ip_qos_token1] = ACTIONS(971), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(971), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(971), + [aux_sym_kex_algorithms_token1] = ACTIONS(971), + [aux_sym_known_hosts_command_token1] = ACTIONS(971), + [aux_sym_local_command_token1] = ACTIONS(971), + [aux_sym_local_forward_token1] = ACTIONS(971), + [aux_sym_log_level_token1] = ACTIONS(971), + [aux_sym_log_verbose_token1] = ACTIONS(971), + [aux_sym_macs_token1] = ACTIONS(971), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(971), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(971), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(971), + [aux_sym_password_authentication_token1] = ACTIONS(971), + [aux_sym_permit_local_command_token1] = ACTIONS(971), + [aux_sym_permit_remote_open_token1] = ACTIONS(971), + [aux_sym_pkcs11_provider_token1] = ACTIONS(971), + [aux_sym_port_token1] = ACTIONS(971), + [aux_sym_preferred_authentications_token1] = ACTIONS(971), + [aux_sym_protocol_token1] = ACTIONS(971), + [aux_sym_proxy_command_token1] = ACTIONS(971), + [aux_sym_proxy_jump_token1] = ACTIONS(971), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(971), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(971), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(971), + [aux_sym_pubkey_authentication_token1] = ACTIONS(971), + [aux_sym_rekey_limit_token1] = ACTIONS(971), + [aux_sym_remote_command_token1] = ACTIONS(971), + [aux_sym_remote_forward_token1] = ACTIONS(971), + [aux_sym_request_tty_token1] = ACTIONS(971), + [aux_sym_required_rsa_size_token1] = ACTIONS(971), + [aux_sym_revoked_host_keys_token1] = ACTIONS(971), + [aux_sym_security_key_provider_token1] = ACTIONS(971), + [aux_sym_send_env_token1] = ACTIONS(971), + [aux_sym_server_alive_count_max_token1] = ACTIONS(971), + [aux_sym_server_alive_interval_token1] = ACTIONS(971), + [aux_sym_session_type_token1] = ACTIONS(971), + [aux_sym_set_env_token1] = ACTIONS(971), + [aux_sym_stdin_null_token1] = ACTIONS(971), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(971), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(971), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(971), + [aux_sym_syslog_facility_token1] = ACTIONS(971), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(971), + [aux_sym_keep_alive_token1] = ACTIONS(971), + [aux_sym_tag_token1] = ACTIONS(971), + [aux_sym_tunnel_token1] = ACTIONS(973), + [aux_sym_tunnel_device_token1] = ACTIONS(971), + [aux_sym_update_host_keys_token1] = ACTIONS(971), + [aux_sym_use_keychain_token1] = ACTIONS(971), + [aux_sym_use_roaming_token1] = ACTIONS(971), + [aux_sym_user_token1] = ACTIONS(973), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(971), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(971), + [aux_sym_visual_host_key_token1] = ACTIONS(971), + [aux_sym_xauth_location_token1] = ACTIONS(971), }, [69] = { - [ts_builtin_sym_end] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(976), - [aux_sym_match_token1] = ACTIONS(972), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(972), - [aux_sym_address_family_token1] = ACTIONS(972), - [aux_sym_batch_mode_token1] = ACTIONS(972), - [aux_sym_bind_address_token1] = ACTIONS(972), - [aux_sym_bind_interface_token1] = ACTIONS(972), - [aux_sym_canonical_domains_token1] = ACTIONS(972), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(972), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(972), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(972), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(972), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(972), - [aux_sym_certificate_file_token1] = ACTIONS(972), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(972), - [aux_sym_channel_timeout_token1] = ACTIONS(972), - [aux_sym_check_host_ip_token1] = ACTIONS(972), - [aux_sym_ciphers_token1] = ACTIONS(972), - [aux_sym_cipher_token1] = ACTIONS(974), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(972), - [aux_sym_compression_token1] = ACTIONS(972), - [aux_sym_connection_attempts_token1] = ACTIONS(972), - [aux_sym_connect_timeout_token1] = ACTIONS(972), - [aux_sym_control_master_token1] = ACTIONS(972), - [aux_sym_control_path_token1] = ACTIONS(972), - [aux_sym_control_persist_token1] = ACTIONS(972), - [aux_sym_dynamic_forward_token1] = ACTIONS(972), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(972), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(972), - [aux_sym_escape_char_token1] = ACTIONS(972), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(972), - [aux_sym_fingerprint_hash_token1] = ACTIONS(972), - [aux_sym_fork_after_authentication_token1] = ACTIONS(972), - [aux_sym_forward_agent_token1] = ACTIONS(972), - [aux_sym_forward_x11_token1] = ACTIONS(974), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(972), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(972), - [aux_sym_gateway_ports_token1] = ACTIONS(972), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(972), - [aux_sym_gssapi_authentication_token1] = ACTIONS(972), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(972), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(972), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(972), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(972), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(972), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(972), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(972), - [aux_sym_hash_known_hosts_token1] = ACTIONS(972), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(972), - [aux_sym_hostbased_authentication_token1] = ACTIONS(972), - [aux_sym_host_key_algorithms_token1] = ACTIONS(972), - [aux_sym_host_key_alias_token1] = ACTIONS(972), - [aux_sym_hostname_token1] = ACTIONS(972), - [aux_sym_identities_only_token1] = ACTIONS(972), - [aux_sym_identity_agent_token1] = ACTIONS(972), - [aux_sym_identity_file_token1] = ACTIONS(972), - [aux_sym_ignore_unknown_token1] = ACTIONS(972), - [aux_sym_include_token1] = ACTIONS(972), - [aux_sym_ip_qos_token1] = ACTIONS(972), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(972), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(972), - [aux_sym_kex_algorithms_token1] = ACTIONS(972), - [aux_sym_known_hosts_command_token1] = ACTIONS(972), - [aux_sym_local_command_token1] = ACTIONS(972), - [aux_sym_local_forward_token1] = ACTIONS(972), - [aux_sym_log_level_token1] = ACTIONS(972), - [aux_sym_log_verbose_token1] = ACTIONS(972), - [aux_sym_macs_token1] = ACTIONS(972), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(972), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(972), - [aux_sym_password_authentication_token1] = ACTIONS(972), - [aux_sym_permit_local_command_token1] = ACTIONS(972), - [aux_sym_permit_remote_open_token1] = ACTIONS(972), - [aux_sym_pkcs11_provider_token1] = ACTIONS(972), - [aux_sym_port_token1] = ACTIONS(972), - [aux_sym_preferred_authentications_token1] = ACTIONS(972), - [aux_sym_protocol_token1] = ACTIONS(972), - [aux_sym_proxy_command_token1] = ACTIONS(972), - [aux_sym_proxy_jump_token1] = ACTIONS(972), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(972), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(972), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(972), - [aux_sym_pubkey_authentication_token1] = ACTIONS(972), - [aux_sym_rekey_limit_token1] = ACTIONS(972), - [aux_sym_remote_command_token1] = ACTIONS(972), - [aux_sym_remote_forward_token1] = ACTIONS(972), - [aux_sym_request_tty_token1] = ACTIONS(972), - [aux_sym_required_rsa_size_token1] = ACTIONS(972), - [aux_sym_revoked_host_keys_token1] = ACTIONS(972), - [aux_sym_security_key_provider_token1] = ACTIONS(972), - [aux_sym_send_env_token1] = ACTIONS(972), - [aux_sym_server_alive_count_max_token1] = ACTIONS(972), - [aux_sym_server_alive_interval_token1] = ACTIONS(972), - [aux_sym_session_type_token1] = ACTIONS(972), - [aux_sym_set_env_token1] = ACTIONS(972), - [aux_sym_stdin_null_token1] = ACTIONS(972), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(972), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(972), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(972), - [aux_sym_syslog_facility_token1] = ACTIONS(972), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(972), - [aux_sym_keep_alive_token1] = ACTIONS(972), - [aux_sym_tag_token1] = ACTIONS(972), - [aux_sym_tunnel_token1] = ACTIONS(974), - [aux_sym_tunnel_device_token1] = ACTIONS(972), - [aux_sym_update_host_keys_token1] = ACTIONS(972), - [aux_sym_use_keychain_token1] = ACTIONS(972), - [aux_sym_use_roaming_token1] = ACTIONS(972), - [aux_sym_user_token1] = ACTIONS(974), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(972), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(972), - [aux_sym_visual_host_key_token1] = ACTIONS(972), - [aux_sym_xauth_location_token1] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(979), + [anon_sym_DQUOTE] = ACTIONS(981), + [aux_sym_match_token1] = ACTIONS(977), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(977), + [aux_sym_address_family_token1] = ACTIONS(977), + [aux_sym_batch_mode_token1] = ACTIONS(977), + [aux_sym_bind_address_token1] = ACTIONS(977), + [aux_sym_bind_interface_token1] = ACTIONS(977), + [aux_sym_canonical_domains_token1] = ACTIONS(977), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(977), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(977), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(977), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(977), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(977), + [aux_sym_certificate_file_token1] = ACTIONS(977), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(977), + [aux_sym_channel_timeout_token1] = ACTIONS(977), + [aux_sym_check_host_ip_token1] = ACTIONS(977), + [aux_sym_ciphers_token1] = ACTIONS(977), + [aux_sym_cipher_token1] = ACTIONS(979), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(977), + [aux_sym_compression_token1] = ACTIONS(977), + [aux_sym_connection_attempts_token1] = ACTIONS(977), + [aux_sym_connect_timeout_token1] = ACTIONS(977), + [aux_sym_control_master_token1] = ACTIONS(977), + [aux_sym_control_path_token1] = ACTIONS(977), + [aux_sym_control_persist_token1] = ACTIONS(977), + [aux_sym_dynamic_forward_token1] = ACTIONS(977), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(977), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(977), + [aux_sym_escape_char_token1] = ACTIONS(977), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(977), + [aux_sym_fingerprint_hash_token1] = ACTIONS(977), + [aux_sym_fork_after_authentication_token1] = ACTIONS(977), + [aux_sym_forward_agent_token1] = ACTIONS(977), + [aux_sym_forward_x11_token1] = ACTIONS(979), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(977), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(977), + [aux_sym_gateway_ports_token1] = ACTIONS(977), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(977), + [aux_sym_gssapi_authentication_token1] = ACTIONS(977), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(977), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(977), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(977), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(977), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(977), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(977), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(977), + [aux_sym_hash_known_hosts_token1] = ACTIONS(977), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(977), + [aux_sym_hostbased_authentication_token1] = ACTIONS(977), + [aux_sym_host_key_algorithms_token1] = ACTIONS(977), + [aux_sym_host_key_alias_token1] = ACTIONS(977), + [aux_sym_hostname_token1] = ACTIONS(977), + [aux_sym_identities_only_token1] = ACTIONS(977), + [aux_sym_identity_agent_token1] = ACTIONS(977), + [aux_sym_identity_file_token1] = ACTIONS(977), + [aux_sym_ignore_unknown_token1] = ACTIONS(977), + [aux_sym_include_token1] = ACTIONS(977), + [aux_sym_ip_qos_token1] = ACTIONS(977), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(977), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(977), + [aux_sym_kex_algorithms_token1] = ACTIONS(977), + [aux_sym_known_hosts_command_token1] = ACTIONS(977), + [aux_sym_local_command_token1] = ACTIONS(977), + [aux_sym_local_forward_token1] = ACTIONS(977), + [aux_sym_log_level_token1] = ACTIONS(977), + [aux_sym_log_verbose_token1] = ACTIONS(977), + [aux_sym_macs_token1] = ACTIONS(977), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(977), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(977), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(977), + [aux_sym_password_authentication_token1] = ACTIONS(977), + [aux_sym_permit_local_command_token1] = ACTIONS(977), + [aux_sym_permit_remote_open_token1] = ACTIONS(977), + [aux_sym_pkcs11_provider_token1] = ACTIONS(977), + [aux_sym_port_token1] = ACTIONS(977), + [aux_sym_preferred_authentications_token1] = ACTIONS(977), + [aux_sym_protocol_token1] = ACTIONS(977), + [aux_sym_proxy_command_token1] = ACTIONS(977), + [aux_sym_proxy_jump_token1] = ACTIONS(977), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(977), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(977), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(977), + [aux_sym_pubkey_authentication_token1] = ACTIONS(977), + [aux_sym_rekey_limit_token1] = ACTIONS(977), + [aux_sym_remote_command_token1] = ACTIONS(977), + [aux_sym_remote_forward_token1] = ACTIONS(977), + [aux_sym_request_tty_token1] = ACTIONS(977), + [aux_sym_required_rsa_size_token1] = ACTIONS(977), + [aux_sym_revoked_host_keys_token1] = ACTIONS(977), + [aux_sym_security_key_provider_token1] = ACTIONS(977), + [aux_sym_send_env_token1] = ACTIONS(977), + [aux_sym_server_alive_count_max_token1] = ACTIONS(977), + [aux_sym_server_alive_interval_token1] = ACTIONS(977), + [aux_sym_session_type_token1] = ACTIONS(977), + [aux_sym_set_env_token1] = ACTIONS(977), + [aux_sym_stdin_null_token1] = ACTIONS(977), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(977), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(977), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(977), + [aux_sym_syslog_facility_token1] = ACTIONS(977), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(977), + [aux_sym_keep_alive_token1] = ACTIONS(977), + [aux_sym_tag_token1] = ACTIONS(977), + [aux_sym_tunnel_token1] = ACTIONS(979), + [aux_sym_tunnel_device_token1] = ACTIONS(977), + [aux_sym_update_host_keys_token1] = ACTIONS(977), + [aux_sym_use_keychain_token1] = ACTIONS(977), + [aux_sym_use_roaming_token1] = ACTIONS(977), + [aux_sym_user_token1] = ACTIONS(979), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(977), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(977), + [aux_sym_visual_host_key_token1] = ACTIONS(977), + [aux_sym_xauth_location_token1] = ACTIONS(977), }, [70] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_match_token1] = ACTIONS(978), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(978), - [aux_sym_address_family_token1] = ACTIONS(978), - [aux_sym_batch_mode_token1] = ACTIONS(978), - [aux_sym_bind_address_token1] = ACTIONS(978), - [aux_sym_bind_interface_token1] = ACTIONS(978), - [aux_sym_canonical_domains_token1] = ACTIONS(978), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(978), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(978), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(978), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(978), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(978), - [aux_sym_certificate_file_token1] = ACTIONS(978), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(978), - [aux_sym_channel_timeout_token1] = ACTIONS(978), - [aux_sym_check_host_ip_token1] = ACTIONS(978), - [aux_sym_ciphers_token1] = ACTIONS(978), - [aux_sym_cipher_token1] = ACTIONS(980), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(978), - [aux_sym_compression_token1] = ACTIONS(978), - [aux_sym_connection_attempts_token1] = ACTIONS(978), - [aux_sym_connect_timeout_token1] = ACTIONS(978), - [aux_sym_control_master_token1] = ACTIONS(978), - [aux_sym_control_path_token1] = ACTIONS(978), - [aux_sym_control_persist_token1] = ACTIONS(978), - [aux_sym_dynamic_forward_token1] = ACTIONS(978), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(978), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(978), - [aux_sym_escape_char_token1] = ACTIONS(978), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(978), - [aux_sym_fingerprint_hash_token1] = ACTIONS(978), - [aux_sym_fork_after_authentication_token1] = ACTIONS(978), - [aux_sym_forward_agent_token1] = ACTIONS(978), - [aux_sym_forward_x11_token1] = ACTIONS(980), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(978), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(978), - [aux_sym_gateway_ports_token1] = ACTIONS(978), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(978), - [aux_sym_gssapi_authentication_token1] = ACTIONS(978), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(978), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(978), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(978), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(978), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(978), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(978), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(978), - [aux_sym_hash_known_hosts_token1] = ACTIONS(978), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(978), - [aux_sym_hostbased_authentication_token1] = ACTIONS(978), - [aux_sym_host_key_algorithms_token1] = ACTIONS(978), - [aux_sym_host_key_alias_token1] = ACTIONS(978), - [aux_sym_hostname_token1] = ACTIONS(978), - [aux_sym_identities_only_token1] = ACTIONS(978), - [aux_sym_identity_agent_token1] = ACTIONS(978), - [aux_sym_identity_file_token1] = ACTIONS(978), - [aux_sym_ignore_unknown_token1] = ACTIONS(978), - [aux_sym_include_token1] = ACTIONS(978), - [aux_sym_ip_qos_token1] = ACTIONS(978), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(978), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(978), - [aux_sym_kex_algorithms_token1] = ACTIONS(978), - [aux_sym_known_hosts_command_token1] = ACTIONS(978), - [aux_sym_local_command_token1] = ACTIONS(978), - [aux_sym_local_forward_token1] = ACTIONS(978), - [aux_sym_log_level_token1] = ACTIONS(978), - [aux_sym_log_verbose_token1] = ACTIONS(978), - [aux_sym_macs_token1] = ACTIONS(978), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(978), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(978), - [aux_sym_password_authentication_token1] = ACTIONS(978), - [aux_sym_permit_local_command_token1] = ACTIONS(978), - [aux_sym_permit_remote_open_token1] = ACTIONS(978), - [aux_sym_pkcs11_provider_token1] = ACTIONS(978), - [aux_sym_port_token1] = ACTIONS(978), - [aux_sym_preferred_authentications_token1] = ACTIONS(978), - [aux_sym_protocol_token1] = ACTIONS(978), - [aux_sym_proxy_command_token1] = ACTIONS(978), - [aux_sym_proxy_jump_token1] = ACTIONS(978), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(978), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(978), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(978), - [aux_sym_pubkey_authentication_token1] = ACTIONS(978), - [aux_sym_rekey_limit_token1] = ACTIONS(978), - [aux_sym_remote_command_token1] = ACTIONS(978), - [aux_sym_remote_forward_token1] = ACTIONS(978), - [aux_sym_request_tty_token1] = ACTIONS(978), - [aux_sym_required_rsa_size_token1] = ACTIONS(978), - [aux_sym_revoked_host_keys_token1] = ACTIONS(978), - [aux_sym_security_key_provider_token1] = ACTIONS(978), - [aux_sym_send_env_token1] = ACTIONS(978), - [aux_sym_server_alive_count_max_token1] = ACTIONS(978), - [aux_sym_server_alive_interval_token1] = ACTIONS(978), - [aux_sym_session_type_token1] = ACTIONS(978), - [aux_sym_set_env_token1] = ACTIONS(978), - [aux_sym_stdin_null_token1] = ACTIONS(978), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(978), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(978), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(978), - [aux_sym_syslog_facility_token1] = ACTIONS(978), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(978), - [aux_sym_keep_alive_token1] = ACTIONS(978), - [aux_sym_tag_token1] = ACTIONS(978), - [aux_sym_tunnel_token1] = ACTIONS(980), - [aux_sym_tunnel_device_token1] = ACTIONS(978), - [aux_sym_update_host_keys_token1] = ACTIONS(978), - [aux_sym_use_keychain_token1] = ACTIONS(978), - [aux_sym_use_roaming_token1] = ACTIONS(978), - [aux_sym_user_token1] = ACTIONS(980), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(978), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(978), - [aux_sym_visual_host_key_token1] = ACTIONS(978), - [aux_sym_xauth_location_token1] = ACTIONS(978), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(985), + [anon_sym_DQUOTE] = ACTIONS(987), + [aux_sym_match_token1] = ACTIONS(983), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(983), + [aux_sym_address_family_token1] = ACTIONS(983), + [aux_sym_batch_mode_token1] = ACTIONS(983), + [aux_sym_bind_address_token1] = ACTIONS(983), + [aux_sym_bind_interface_token1] = ACTIONS(983), + [aux_sym_canonical_domains_token1] = ACTIONS(983), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(983), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(983), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(983), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(983), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(983), + [aux_sym_certificate_file_token1] = ACTIONS(983), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(983), + [aux_sym_channel_timeout_token1] = ACTIONS(983), + [aux_sym_check_host_ip_token1] = ACTIONS(983), + [aux_sym_ciphers_token1] = ACTIONS(983), + [aux_sym_cipher_token1] = ACTIONS(985), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(983), + [aux_sym_compression_token1] = ACTIONS(983), + [aux_sym_connection_attempts_token1] = ACTIONS(983), + [aux_sym_connect_timeout_token1] = ACTIONS(983), + [aux_sym_control_master_token1] = ACTIONS(983), + [aux_sym_control_path_token1] = ACTIONS(983), + [aux_sym_control_persist_token1] = ACTIONS(983), + [aux_sym_dynamic_forward_token1] = ACTIONS(983), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(983), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(983), + [aux_sym_escape_char_token1] = ACTIONS(983), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(983), + [aux_sym_fingerprint_hash_token1] = ACTIONS(983), + [aux_sym_fork_after_authentication_token1] = ACTIONS(983), + [aux_sym_forward_agent_token1] = ACTIONS(983), + [aux_sym_forward_x11_token1] = ACTIONS(985), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(983), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(983), + [aux_sym_gateway_ports_token1] = ACTIONS(983), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(983), + [aux_sym_gssapi_authentication_token1] = ACTIONS(983), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(983), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(983), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(983), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(983), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(983), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(983), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(983), + [aux_sym_hash_known_hosts_token1] = ACTIONS(983), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(983), + [aux_sym_hostbased_authentication_token1] = ACTIONS(983), + [aux_sym_host_key_algorithms_token1] = ACTIONS(983), + [aux_sym_host_key_alias_token1] = ACTIONS(983), + [aux_sym_hostname_token1] = ACTIONS(983), + [aux_sym_identities_only_token1] = ACTIONS(983), + [aux_sym_identity_agent_token1] = ACTIONS(983), + [aux_sym_identity_file_token1] = ACTIONS(983), + [aux_sym_ignore_unknown_token1] = ACTIONS(983), + [aux_sym_include_token1] = ACTIONS(983), + [aux_sym_ip_qos_token1] = ACTIONS(983), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(983), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(983), + [aux_sym_kex_algorithms_token1] = ACTIONS(983), + [aux_sym_known_hosts_command_token1] = ACTIONS(983), + [aux_sym_local_command_token1] = ACTIONS(983), + [aux_sym_local_forward_token1] = ACTIONS(983), + [aux_sym_log_level_token1] = ACTIONS(983), + [aux_sym_log_verbose_token1] = ACTIONS(983), + [aux_sym_macs_token1] = ACTIONS(983), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(983), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(983), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(983), + [aux_sym_password_authentication_token1] = ACTIONS(983), + [aux_sym_permit_local_command_token1] = ACTIONS(983), + [aux_sym_permit_remote_open_token1] = ACTIONS(983), + [aux_sym_pkcs11_provider_token1] = ACTIONS(983), + [aux_sym_port_token1] = ACTIONS(983), + [aux_sym_preferred_authentications_token1] = ACTIONS(983), + [aux_sym_protocol_token1] = ACTIONS(983), + [aux_sym_proxy_command_token1] = ACTIONS(983), + [aux_sym_proxy_jump_token1] = ACTIONS(983), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(983), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(983), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(983), + [aux_sym_pubkey_authentication_token1] = ACTIONS(983), + [aux_sym_rekey_limit_token1] = ACTIONS(983), + [aux_sym_remote_command_token1] = ACTIONS(983), + [aux_sym_remote_forward_token1] = ACTIONS(983), + [aux_sym_request_tty_token1] = ACTIONS(983), + [aux_sym_required_rsa_size_token1] = ACTIONS(983), + [aux_sym_revoked_host_keys_token1] = ACTIONS(983), + [aux_sym_security_key_provider_token1] = ACTIONS(983), + [aux_sym_send_env_token1] = ACTIONS(983), + [aux_sym_server_alive_count_max_token1] = ACTIONS(983), + [aux_sym_server_alive_interval_token1] = ACTIONS(983), + [aux_sym_session_type_token1] = ACTIONS(983), + [aux_sym_set_env_token1] = ACTIONS(983), + [aux_sym_stdin_null_token1] = ACTIONS(983), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(983), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(983), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(983), + [aux_sym_syslog_facility_token1] = ACTIONS(983), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(983), + [aux_sym_keep_alive_token1] = ACTIONS(983), + [aux_sym_tag_token1] = ACTIONS(983), + [aux_sym_tunnel_token1] = ACTIONS(985), + [aux_sym_tunnel_device_token1] = ACTIONS(983), + [aux_sym_update_host_keys_token1] = ACTIONS(983), + [aux_sym_use_keychain_token1] = ACTIONS(983), + [aux_sym_use_roaming_token1] = ACTIONS(983), + [aux_sym_user_token1] = ACTIONS(985), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(983), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(983), + [aux_sym_visual_host_key_token1] = ACTIONS(983), + [aux_sym_xauth_location_token1] = ACTIONS(983), }, [71] = { - [ts_builtin_sym_end] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(988), - [aux_sym_match_token1] = ACTIONS(984), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(984), - [aux_sym_address_family_token1] = ACTIONS(984), - [aux_sym_batch_mode_token1] = ACTIONS(984), - [aux_sym_bind_address_token1] = ACTIONS(984), - [aux_sym_bind_interface_token1] = ACTIONS(984), - [aux_sym_canonical_domains_token1] = ACTIONS(984), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(984), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(984), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(984), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(984), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(984), - [aux_sym_certificate_file_token1] = ACTIONS(984), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(984), - [aux_sym_channel_timeout_token1] = ACTIONS(984), - [aux_sym_check_host_ip_token1] = ACTIONS(984), - [aux_sym_ciphers_token1] = ACTIONS(984), - [aux_sym_cipher_token1] = ACTIONS(986), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(984), - [aux_sym_compression_token1] = ACTIONS(984), - [aux_sym_connection_attempts_token1] = ACTIONS(984), - [aux_sym_connect_timeout_token1] = ACTIONS(984), - [aux_sym_control_master_token1] = ACTIONS(984), - [aux_sym_control_path_token1] = ACTIONS(984), - [aux_sym_control_persist_token1] = ACTIONS(984), - [aux_sym_dynamic_forward_token1] = ACTIONS(984), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(984), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(984), - [aux_sym_escape_char_token1] = ACTIONS(984), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(984), - [aux_sym_fingerprint_hash_token1] = ACTIONS(984), - [aux_sym_fork_after_authentication_token1] = ACTIONS(984), - [aux_sym_forward_agent_token1] = ACTIONS(984), - [aux_sym_forward_x11_token1] = ACTIONS(986), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(984), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(984), - [aux_sym_gateway_ports_token1] = ACTIONS(984), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(984), - [aux_sym_gssapi_authentication_token1] = ACTIONS(984), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(984), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(984), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(984), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(984), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(984), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(984), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(984), - [aux_sym_hash_known_hosts_token1] = ACTIONS(984), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(984), - [aux_sym_hostbased_authentication_token1] = ACTIONS(984), - [aux_sym_host_key_algorithms_token1] = ACTIONS(984), - [aux_sym_host_key_alias_token1] = ACTIONS(984), - [aux_sym_hostname_token1] = ACTIONS(984), - [aux_sym_identities_only_token1] = ACTIONS(984), - [aux_sym_identity_agent_token1] = ACTIONS(984), - [aux_sym_identity_file_token1] = ACTIONS(984), - [aux_sym_ignore_unknown_token1] = ACTIONS(984), - [aux_sym_include_token1] = ACTIONS(984), - [aux_sym_ip_qos_token1] = ACTIONS(984), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(984), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(984), - [aux_sym_kex_algorithms_token1] = ACTIONS(984), - [aux_sym_known_hosts_command_token1] = ACTIONS(984), - [aux_sym_local_command_token1] = ACTIONS(984), - [aux_sym_local_forward_token1] = ACTIONS(984), - [aux_sym_log_level_token1] = ACTIONS(984), - [aux_sym_log_verbose_token1] = ACTIONS(984), - [aux_sym_macs_token1] = ACTIONS(984), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(984), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(984), - [aux_sym_password_authentication_token1] = ACTIONS(984), - [aux_sym_permit_local_command_token1] = ACTIONS(984), - [aux_sym_permit_remote_open_token1] = ACTIONS(984), - [aux_sym_pkcs11_provider_token1] = ACTIONS(984), - [aux_sym_port_token1] = ACTIONS(984), - [aux_sym_preferred_authentications_token1] = ACTIONS(984), - [aux_sym_protocol_token1] = ACTIONS(984), - [aux_sym_proxy_command_token1] = ACTIONS(984), - [aux_sym_proxy_jump_token1] = ACTIONS(984), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(984), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(984), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(984), - [aux_sym_pubkey_authentication_token1] = ACTIONS(984), - [aux_sym_rekey_limit_token1] = ACTIONS(984), - [aux_sym_remote_command_token1] = ACTIONS(984), - [aux_sym_remote_forward_token1] = ACTIONS(984), - [aux_sym_request_tty_token1] = ACTIONS(984), - [aux_sym_required_rsa_size_token1] = ACTIONS(984), - [aux_sym_revoked_host_keys_token1] = ACTIONS(984), - [aux_sym_security_key_provider_token1] = ACTIONS(984), - [aux_sym_send_env_token1] = ACTIONS(984), - [aux_sym_server_alive_count_max_token1] = ACTIONS(984), - [aux_sym_server_alive_interval_token1] = ACTIONS(984), - [aux_sym_session_type_token1] = ACTIONS(984), - [aux_sym_set_env_token1] = ACTIONS(984), - [aux_sym_stdin_null_token1] = ACTIONS(984), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(984), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(984), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(984), - [aux_sym_syslog_facility_token1] = ACTIONS(984), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(984), - [aux_sym_keep_alive_token1] = ACTIONS(984), - [aux_sym_tag_token1] = ACTIONS(984), - [aux_sym_tunnel_token1] = ACTIONS(986), - [aux_sym_tunnel_device_token1] = ACTIONS(984), - [aux_sym_update_host_keys_token1] = ACTIONS(984), - [aux_sym_use_keychain_token1] = ACTIONS(984), - [aux_sym_use_roaming_token1] = ACTIONS(984), - [aux_sym_user_token1] = ACTIONS(986), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(984), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(984), - [aux_sym_visual_host_key_token1] = ACTIONS(984), - [aux_sym_xauth_location_token1] = ACTIONS(984), + [ts_builtin_sym_end] = ACTIONS(989), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(991), + [anon_sym_DQUOTE] = ACTIONS(993), + [aux_sym_match_token1] = ACTIONS(989), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(989), + [aux_sym_address_family_token1] = ACTIONS(989), + [aux_sym_batch_mode_token1] = ACTIONS(989), + [aux_sym_bind_address_token1] = ACTIONS(989), + [aux_sym_bind_interface_token1] = ACTIONS(989), + [aux_sym_canonical_domains_token1] = ACTIONS(989), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(989), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(989), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(989), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(989), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(989), + [aux_sym_certificate_file_token1] = ACTIONS(989), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(989), + [aux_sym_channel_timeout_token1] = ACTIONS(989), + [aux_sym_check_host_ip_token1] = ACTIONS(989), + [aux_sym_ciphers_token1] = ACTIONS(989), + [aux_sym_cipher_token1] = ACTIONS(991), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(989), + [aux_sym_compression_token1] = ACTIONS(989), + [aux_sym_connection_attempts_token1] = ACTIONS(989), + [aux_sym_connect_timeout_token1] = ACTIONS(989), + [aux_sym_control_master_token1] = ACTIONS(989), + [aux_sym_control_path_token1] = ACTIONS(989), + [aux_sym_control_persist_token1] = ACTIONS(989), + [aux_sym_dynamic_forward_token1] = ACTIONS(989), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(989), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(989), + [aux_sym_escape_char_token1] = ACTIONS(989), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(989), + [aux_sym_fingerprint_hash_token1] = ACTIONS(989), + [aux_sym_fork_after_authentication_token1] = ACTIONS(989), + [aux_sym_forward_agent_token1] = ACTIONS(989), + [aux_sym_forward_x11_token1] = ACTIONS(991), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(989), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(989), + [aux_sym_gateway_ports_token1] = ACTIONS(989), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(989), + [aux_sym_gssapi_authentication_token1] = ACTIONS(989), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(989), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(989), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(989), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(989), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(989), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(989), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(989), + [aux_sym_hash_known_hosts_token1] = ACTIONS(989), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(989), + [aux_sym_hostbased_authentication_token1] = ACTIONS(989), + [aux_sym_host_key_algorithms_token1] = ACTIONS(989), + [aux_sym_host_key_alias_token1] = ACTIONS(989), + [aux_sym_hostname_token1] = ACTIONS(989), + [aux_sym_identities_only_token1] = ACTIONS(989), + [aux_sym_identity_agent_token1] = ACTIONS(989), + [aux_sym_identity_file_token1] = ACTIONS(989), + [aux_sym_ignore_unknown_token1] = ACTIONS(989), + [aux_sym_include_token1] = ACTIONS(989), + [aux_sym_ip_qos_token1] = ACTIONS(989), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(989), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(989), + [aux_sym_kex_algorithms_token1] = ACTIONS(989), + [aux_sym_known_hosts_command_token1] = ACTIONS(989), + [aux_sym_local_command_token1] = ACTIONS(989), + [aux_sym_local_forward_token1] = ACTIONS(989), + [aux_sym_log_level_token1] = ACTIONS(989), + [aux_sym_log_verbose_token1] = ACTIONS(989), + [aux_sym_macs_token1] = ACTIONS(989), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(989), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(989), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(989), + [aux_sym_password_authentication_token1] = ACTIONS(989), + [aux_sym_permit_local_command_token1] = ACTIONS(989), + [aux_sym_permit_remote_open_token1] = ACTIONS(989), + [aux_sym_pkcs11_provider_token1] = ACTIONS(989), + [aux_sym_port_token1] = ACTIONS(989), + [aux_sym_preferred_authentications_token1] = ACTIONS(989), + [aux_sym_protocol_token1] = ACTIONS(989), + [aux_sym_proxy_command_token1] = ACTIONS(989), + [aux_sym_proxy_jump_token1] = ACTIONS(989), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(989), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(989), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(989), + [aux_sym_pubkey_authentication_token1] = ACTIONS(989), + [aux_sym_rekey_limit_token1] = ACTIONS(989), + [aux_sym_remote_command_token1] = ACTIONS(989), + [aux_sym_remote_forward_token1] = ACTIONS(989), + [aux_sym_request_tty_token1] = ACTIONS(989), + [aux_sym_required_rsa_size_token1] = ACTIONS(989), + [aux_sym_revoked_host_keys_token1] = ACTIONS(989), + [aux_sym_security_key_provider_token1] = ACTIONS(989), + [aux_sym_send_env_token1] = ACTIONS(989), + [aux_sym_server_alive_count_max_token1] = ACTIONS(989), + [aux_sym_server_alive_interval_token1] = ACTIONS(989), + [aux_sym_session_type_token1] = ACTIONS(989), + [aux_sym_set_env_token1] = ACTIONS(989), + [aux_sym_stdin_null_token1] = ACTIONS(989), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(989), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(989), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(989), + [aux_sym_syslog_facility_token1] = ACTIONS(989), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(989), + [aux_sym_keep_alive_token1] = ACTIONS(989), + [aux_sym_tag_token1] = ACTIONS(989), + [aux_sym_tunnel_token1] = ACTIONS(991), + [aux_sym_tunnel_device_token1] = ACTIONS(989), + [aux_sym_update_host_keys_token1] = ACTIONS(989), + [aux_sym_use_keychain_token1] = ACTIONS(989), + [aux_sym_use_roaming_token1] = ACTIONS(989), + [aux_sym_user_token1] = ACTIONS(991), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(989), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(989), + [aux_sym_visual_host_key_token1] = ACTIONS(989), + [aux_sym_xauth_location_token1] = ACTIONS(989), }, [72] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(994), - [aux_sym_match_token1] = ACTIONS(990), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(990), - [aux_sym_address_family_token1] = ACTIONS(990), - [aux_sym_batch_mode_token1] = ACTIONS(990), - [aux_sym_bind_address_token1] = ACTIONS(990), - [aux_sym_bind_interface_token1] = ACTIONS(990), - [aux_sym_canonical_domains_token1] = ACTIONS(990), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(990), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(990), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(990), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(990), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(990), - [aux_sym_certificate_file_token1] = ACTIONS(990), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(990), - [aux_sym_channel_timeout_token1] = ACTIONS(990), - [aux_sym_check_host_ip_token1] = ACTIONS(990), - [aux_sym_ciphers_token1] = ACTIONS(990), - [aux_sym_cipher_token1] = ACTIONS(992), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(990), - [aux_sym_compression_token1] = ACTIONS(990), - [aux_sym_connection_attempts_token1] = ACTIONS(990), - [aux_sym_connect_timeout_token1] = ACTIONS(990), - [aux_sym_control_master_token1] = ACTIONS(990), - [aux_sym_control_path_token1] = ACTIONS(990), - [aux_sym_control_persist_token1] = ACTIONS(990), - [aux_sym_dynamic_forward_token1] = ACTIONS(990), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(990), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(990), - [aux_sym_escape_char_token1] = ACTIONS(990), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(990), - [aux_sym_fingerprint_hash_token1] = ACTIONS(990), - [aux_sym_fork_after_authentication_token1] = ACTIONS(990), - [aux_sym_forward_agent_token1] = ACTIONS(990), - [aux_sym_forward_x11_token1] = ACTIONS(992), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(990), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(990), - [aux_sym_gateway_ports_token1] = ACTIONS(990), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(990), - [aux_sym_gssapi_authentication_token1] = ACTIONS(990), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(990), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(990), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(990), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(990), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(990), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(990), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(990), - [aux_sym_hash_known_hosts_token1] = ACTIONS(990), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(990), - [aux_sym_hostbased_authentication_token1] = ACTIONS(990), - [aux_sym_host_key_algorithms_token1] = ACTIONS(990), - [aux_sym_host_key_alias_token1] = ACTIONS(990), - [aux_sym_hostname_token1] = ACTIONS(990), - [aux_sym_identities_only_token1] = ACTIONS(990), - [aux_sym_identity_agent_token1] = ACTIONS(990), - [aux_sym_identity_file_token1] = ACTIONS(990), - [aux_sym_ignore_unknown_token1] = ACTIONS(990), - [aux_sym_include_token1] = ACTIONS(990), - [aux_sym_ip_qos_token1] = ACTIONS(990), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(990), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(990), - [aux_sym_kex_algorithms_token1] = ACTIONS(990), - [aux_sym_known_hosts_command_token1] = ACTIONS(990), - [aux_sym_local_command_token1] = ACTIONS(990), - [aux_sym_local_forward_token1] = ACTIONS(990), - [aux_sym_log_level_token1] = ACTIONS(990), - [aux_sym_log_verbose_token1] = ACTIONS(990), - [aux_sym_macs_token1] = ACTIONS(990), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(990), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(990), - [aux_sym_password_authentication_token1] = ACTIONS(990), - [aux_sym_permit_local_command_token1] = ACTIONS(990), - [aux_sym_permit_remote_open_token1] = ACTIONS(990), - [aux_sym_pkcs11_provider_token1] = ACTIONS(990), - [aux_sym_port_token1] = ACTIONS(990), - [aux_sym_preferred_authentications_token1] = ACTIONS(990), - [aux_sym_protocol_token1] = ACTIONS(990), - [aux_sym_proxy_command_token1] = ACTIONS(990), - [aux_sym_proxy_jump_token1] = ACTIONS(990), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(990), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(990), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(990), - [aux_sym_pubkey_authentication_token1] = ACTIONS(990), - [aux_sym_rekey_limit_token1] = ACTIONS(990), - [aux_sym_remote_command_token1] = ACTIONS(990), - [aux_sym_remote_forward_token1] = ACTIONS(990), - [aux_sym_request_tty_token1] = ACTIONS(990), - [aux_sym_required_rsa_size_token1] = ACTIONS(990), - [aux_sym_revoked_host_keys_token1] = ACTIONS(990), - [aux_sym_security_key_provider_token1] = ACTIONS(990), - [aux_sym_send_env_token1] = ACTIONS(990), - [aux_sym_server_alive_count_max_token1] = ACTIONS(990), - [aux_sym_server_alive_interval_token1] = ACTIONS(990), - [aux_sym_session_type_token1] = ACTIONS(990), - [aux_sym_set_env_token1] = ACTIONS(990), - [aux_sym_stdin_null_token1] = ACTIONS(990), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(990), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(990), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(990), - [aux_sym_syslog_facility_token1] = ACTIONS(990), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(990), - [aux_sym_keep_alive_token1] = ACTIONS(990), - [aux_sym_tag_token1] = ACTIONS(990), - [aux_sym_tunnel_token1] = ACTIONS(992), - [aux_sym_tunnel_device_token1] = ACTIONS(990), - [aux_sym_update_host_keys_token1] = ACTIONS(990), - [aux_sym_use_keychain_token1] = ACTIONS(990), - [aux_sym_use_roaming_token1] = ACTIONS(990), - [aux_sym_user_token1] = ACTIONS(992), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(990), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(990), - [aux_sym_visual_host_key_token1] = ACTIONS(990), - [aux_sym_xauth_location_token1] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(995), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(997), + [anon_sym_DQUOTE] = ACTIONS(999), + [aux_sym_match_token1] = ACTIONS(995), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(995), + [aux_sym_address_family_token1] = ACTIONS(995), + [aux_sym_batch_mode_token1] = ACTIONS(995), + [aux_sym_bind_address_token1] = ACTIONS(995), + [aux_sym_bind_interface_token1] = ACTIONS(995), + [aux_sym_canonical_domains_token1] = ACTIONS(995), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(995), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(995), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(995), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(995), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(995), + [aux_sym_certificate_file_token1] = ACTIONS(995), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(995), + [aux_sym_channel_timeout_token1] = ACTIONS(995), + [aux_sym_check_host_ip_token1] = ACTIONS(995), + [aux_sym_ciphers_token1] = ACTIONS(995), + [aux_sym_cipher_token1] = ACTIONS(997), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(995), + [aux_sym_compression_token1] = ACTIONS(995), + [aux_sym_connection_attempts_token1] = ACTIONS(995), + [aux_sym_connect_timeout_token1] = ACTIONS(995), + [aux_sym_control_master_token1] = ACTIONS(995), + [aux_sym_control_path_token1] = ACTIONS(995), + [aux_sym_control_persist_token1] = ACTIONS(995), + [aux_sym_dynamic_forward_token1] = ACTIONS(995), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(995), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(995), + [aux_sym_escape_char_token1] = ACTIONS(995), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(995), + [aux_sym_fingerprint_hash_token1] = ACTIONS(995), + [aux_sym_fork_after_authentication_token1] = ACTIONS(995), + [aux_sym_forward_agent_token1] = ACTIONS(995), + [aux_sym_forward_x11_token1] = ACTIONS(997), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(995), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(995), + [aux_sym_gateway_ports_token1] = ACTIONS(995), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(995), + [aux_sym_gssapi_authentication_token1] = ACTIONS(995), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(995), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(995), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(995), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(995), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(995), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(995), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(995), + [aux_sym_hash_known_hosts_token1] = ACTIONS(995), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(995), + [aux_sym_hostbased_authentication_token1] = ACTIONS(995), + [aux_sym_host_key_algorithms_token1] = ACTIONS(995), + [aux_sym_host_key_alias_token1] = ACTIONS(995), + [aux_sym_hostname_token1] = ACTIONS(995), + [aux_sym_identities_only_token1] = ACTIONS(995), + [aux_sym_identity_agent_token1] = ACTIONS(995), + [aux_sym_identity_file_token1] = ACTIONS(995), + [aux_sym_ignore_unknown_token1] = ACTIONS(995), + [aux_sym_include_token1] = ACTIONS(995), + [aux_sym_ip_qos_token1] = ACTIONS(995), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(995), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(995), + [aux_sym_kex_algorithms_token1] = ACTIONS(995), + [aux_sym_known_hosts_command_token1] = ACTIONS(995), + [aux_sym_local_command_token1] = ACTIONS(995), + [aux_sym_local_forward_token1] = ACTIONS(995), + [aux_sym_log_level_token1] = ACTIONS(995), + [aux_sym_log_verbose_token1] = ACTIONS(995), + [aux_sym_macs_token1] = ACTIONS(995), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(995), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(995), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(995), + [aux_sym_password_authentication_token1] = ACTIONS(995), + [aux_sym_permit_local_command_token1] = ACTIONS(995), + [aux_sym_permit_remote_open_token1] = ACTIONS(995), + [aux_sym_pkcs11_provider_token1] = ACTIONS(995), + [aux_sym_port_token1] = ACTIONS(995), + [aux_sym_preferred_authentications_token1] = ACTIONS(995), + [aux_sym_protocol_token1] = ACTIONS(995), + [aux_sym_proxy_command_token1] = ACTIONS(995), + [aux_sym_proxy_jump_token1] = ACTIONS(995), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(995), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(995), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(995), + [aux_sym_pubkey_authentication_token1] = ACTIONS(995), + [aux_sym_rekey_limit_token1] = ACTIONS(995), + [aux_sym_remote_command_token1] = ACTIONS(995), + [aux_sym_remote_forward_token1] = ACTIONS(995), + [aux_sym_request_tty_token1] = ACTIONS(995), + [aux_sym_required_rsa_size_token1] = ACTIONS(995), + [aux_sym_revoked_host_keys_token1] = ACTIONS(995), + [aux_sym_security_key_provider_token1] = ACTIONS(995), + [aux_sym_send_env_token1] = ACTIONS(995), + [aux_sym_server_alive_count_max_token1] = ACTIONS(995), + [aux_sym_server_alive_interval_token1] = ACTIONS(995), + [aux_sym_session_type_token1] = ACTIONS(995), + [aux_sym_set_env_token1] = ACTIONS(995), + [aux_sym_stdin_null_token1] = ACTIONS(995), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(995), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(995), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(995), + [aux_sym_syslog_facility_token1] = ACTIONS(995), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(995), + [aux_sym_keep_alive_token1] = ACTIONS(995), + [aux_sym_tag_token1] = ACTIONS(995), + [aux_sym_tunnel_token1] = ACTIONS(997), + [aux_sym_tunnel_device_token1] = ACTIONS(995), + [aux_sym_update_host_keys_token1] = ACTIONS(995), + [aux_sym_use_keychain_token1] = ACTIONS(995), + [aux_sym_use_roaming_token1] = ACTIONS(995), + [aux_sym_user_token1] = ACTIONS(997), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(995), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(995), + [aux_sym_visual_host_key_token1] = ACTIONS(995), + [aux_sym_xauth_location_token1] = ACTIONS(995), }, [73] = { - [ts_builtin_sym_end] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(1000), - [aux_sym_match_token1] = ACTIONS(996), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(996), - [aux_sym_address_family_token1] = ACTIONS(996), - [aux_sym_batch_mode_token1] = ACTIONS(996), - [aux_sym_bind_address_token1] = ACTIONS(996), - [aux_sym_bind_interface_token1] = ACTIONS(996), - [aux_sym_canonical_domains_token1] = ACTIONS(996), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(996), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(996), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(996), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(996), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(996), - [aux_sym_certificate_file_token1] = ACTIONS(996), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(996), - [aux_sym_channel_timeout_token1] = ACTIONS(996), - [aux_sym_check_host_ip_token1] = ACTIONS(996), - [aux_sym_ciphers_token1] = ACTIONS(996), - [aux_sym_cipher_token1] = ACTIONS(998), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(996), - [aux_sym_compression_token1] = ACTIONS(996), - [aux_sym_connection_attempts_token1] = ACTIONS(996), - [aux_sym_connect_timeout_token1] = ACTIONS(996), - [aux_sym_control_master_token1] = ACTIONS(996), - [aux_sym_control_path_token1] = ACTIONS(996), - [aux_sym_control_persist_token1] = ACTIONS(996), - [aux_sym_dynamic_forward_token1] = ACTIONS(996), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(996), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(996), - [aux_sym_escape_char_token1] = ACTIONS(996), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(996), - [aux_sym_fingerprint_hash_token1] = ACTIONS(996), - [aux_sym_fork_after_authentication_token1] = ACTIONS(996), - [aux_sym_forward_agent_token1] = ACTIONS(996), - [aux_sym_forward_x11_token1] = ACTIONS(998), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(996), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(996), - [aux_sym_gateway_ports_token1] = ACTIONS(996), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(996), - [aux_sym_gssapi_authentication_token1] = ACTIONS(996), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(996), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(996), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(996), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(996), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(996), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(996), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(996), - [aux_sym_hash_known_hosts_token1] = ACTIONS(996), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(996), - [aux_sym_hostbased_authentication_token1] = ACTIONS(996), - [aux_sym_host_key_algorithms_token1] = ACTIONS(996), - [aux_sym_host_key_alias_token1] = ACTIONS(996), - [aux_sym_hostname_token1] = ACTIONS(996), - [aux_sym_identities_only_token1] = ACTIONS(996), - [aux_sym_identity_agent_token1] = ACTIONS(996), - [aux_sym_identity_file_token1] = ACTIONS(996), - [aux_sym_ignore_unknown_token1] = ACTIONS(996), - [aux_sym_include_token1] = ACTIONS(996), - [aux_sym_ip_qos_token1] = ACTIONS(996), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(996), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(996), - [aux_sym_kex_algorithms_token1] = ACTIONS(996), - [aux_sym_known_hosts_command_token1] = ACTIONS(996), - [aux_sym_local_command_token1] = ACTIONS(996), - [aux_sym_local_forward_token1] = ACTIONS(996), - [aux_sym_log_level_token1] = ACTIONS(996), - [aux_sym_log_verbose_token1] = ACTIONS(996), - [aux_sym_macs_token1] = ACTIONS(996), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(996), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(996), - [aux_sym_password_authentication_token1] = ACTIONS(996), - [aux_sym_permit_local_command_token1] = ACTIONS(996), - [aux_sym_permit_remote_open_token1] = ACTIONS(996), - [aux_sym_pkcs11_provider_token1] = ACTIONS(996), - [aux_sym_port_token1] = ACTIONS(996), - [aux_sym_preferred_authentications_token1] = ACTIONS(996), - [aux_sym_protocol_token1] = ACTIONS(996), - [aux_sym_proxy_command_token1] = ACTIONS(996), - [aux_sym_proxy_jump_token1] = ACTIONS(996), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(996), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(996), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(996), - [aux_sym_pubkey_authentication_token1] = ACTIONS(996), - [aux_sym_rekey_limit_token1] = ACTIONS(996), - [aux_sym_remote_command_token1] = ACTIONS(996), - [aux_sym_remote_forward_token1] = ACTIONS(996), - [aux_sym_request_tty_token1] = ACTIONS(996), - [aux_sym_required_rsa_size_token1] = ACTIONS(996), - [aux_sym_revoked_host_keys_token1] = ACTIONS(996), - [aux_sym_security_key_provider_token1] = ACTIONS(996), - [aux_sym_send_env_token1] = ACTIONS(996), - [aux_sym_server_alive_count_max_token1] = ACTIONS(996), - [aux_sym_server_alive_interval_token1] = ACTIONS(996), - [aux_sym_session_type_token1] = ACTIONS(996), - [aux_sym_set_env_token1] = ACTIONS(996), - [aux_sym_stdin_null_token1] = ACTIONS(996), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(996), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(996), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(996), - [aux_sym_syslog_facility_token1] = ACTIONS(996), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(996), - [aux_sym_keep_alive_token1] = ACTIONS(996), - [aux_sym_tag_token1] = ACTIONS(996), - [aux_sym_tunnel_token1] = ACTIONS(998), - [aux_sym_tunnel_device_token1] = ACTIONS(996), - [aux_sym_update_host_keys_token1] = ACTIONS(996), - [aux_sym_use_keychain_token1] = ACTIONS(996), - [aux_sym_use_roaming_token1] = ACTIONS(996), - [aux_sym_user_token1] = ACTIONS(998), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(996), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(996), - [aux_sym_visual_host_key_token1] = ACTIONS(996), - [aux_sym_xauth_location_token1] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1003), + [anon_sym_DQUOTE] = ACTIONS(1005), + [aux_sym_match_token1] = ACTIONS(1001), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1001), + [aux_sym_address_family_token1] = ACTIONS(1001), + [aux_sym_batch_mode_token1] = ACTIONS(1001), + [aux_sym_bind_address_token1] = ACTIONS(1001), + [aux_sym_bind_interface_token1] = ACTIONS(1001), + [aux_sym_canonical_domains_token1] = ACTIONS(1001), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1001), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1001), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1001), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1001), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1001), + [aux_sym_certificate_file_token1] = ACTIONS(1001), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1001), + [aux_sym_channel_timeout_token1] = ACTIONS(1001), + [aux_sym_check_host_ip_token1] = ACTIONS(1001), + [aux_sym_ciphers_token1] = ACTIONS(1001), + [aux_sym_cipher_token1] = ACTIONS(1003), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1001), + [aux_sym_compression_token1] = ACTIONS(1001), + [aux_sym_connection_attempts_token1] = ACTIONS(1001), + [aux_sym_connect_timeout_token1] = ACTIONS(1001), + [aux_sym_control_master_token1] = ACTIONS(1001), + [aux_sym_control_path_token1] = ACTIONS(1001), + [aux_sym_control_persist_token1] = ACTIONS(1001), + [aux_sym_dynamic_forward_token1] = ACTIONS(1001), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1001), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1001), + [aux_sym_escape_char_token1] = ACTIONS(1001), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1001), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1001), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1001), + [aux_sym_forward_agent_token1] = ACTIONS(1001), + [aux_sym_forward_x11_token1] = ACTIONS(1003), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1001), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1001), + [aux_sym_gateway_ports_token1] = ACTIONS(1001), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1001), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1001), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1001), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1001), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1001), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1001), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1001), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1001), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1001), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1001), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1001), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1001), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1001), + [aux_sym_host_key_alias_token1] = ACTIONS(1001), + [aux_sym_hostname_token1] = ACTIONS(1001), + [aux_sym_identities_only_token1] = ACTIONS(1001), + [aux_sym_identity_agent_token1] = ACTIONS(1001), + [aux_sym_identity_file_token1] = ACTIONS(1001), + [aux_sym_ignore_unknown_token1] = ACTIONS(1001), + [aux_sym_include_token1] = ACTIONS(1001), + [aux_sym_ip_qos_token1] = ACTIONS(1001), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1001), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1001), + [aux_sym_kex_algorithms_token1] = ACTIONS(1001), + [aux_sym_known_hosts_command_token1] = ACTIONS(1001), + [aux_sym_local_command_token1] = ACTIONS(1001), + [aux_sym_local_forward_token1] = ACTIONS(1001), + [aux_sym_log_level_token1] = ACTIONS(1001), + [aux_sym_log_verbose_token1] = ACTIONS(1001), + [aux_sym_macs_token1] = ACTIONS(1001), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1001), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1001), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1001), + [aux_sym_password_authentication_token1] = ACTIONS(1001), + [aux_sym_permit_local_command_token1] = ACTIONS(1001), + [aux_sym_permit_remote_open_token1] = ACTIONS(1001), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1001), + [aux_sym_port_token1] = ACTIONS(1001), + [aux_sym_preferred_authentications_token1] = ACTIONS(1001), + [aux_sym_protocol_token1] = ACTIONS(1001), + [aux_sym_proxy_command_token1] = ACTIONS(1001), + [aux_sym_proxy_jump_token1] = ACTIONS(1001), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1001), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1001), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1001), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1001), + [aux_sym_rekey_limit_token1] = ACTIONS(1001), + [aux_sym_remote_command_token1] = ACTIONS(1001), + [aux_sym_remote_forward_token1] = ACTIONS(1001), + [aux_sym_request_tty_token1] = ACTIONS(1001), + [aux_sym_required_rsa_size_token1] = ACTIONS(1001), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1001), + [aux_sym_security_key_provider_token1] = ACTIONS(1001), + [aux_sym_send_env_token1] = ACTIONS(1001), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1001), + [aux_sym_server_alive_interval_token1] = ACTIONS(1001), + [aux_sym_session_type_token1] = ACTIONS(1001), + [aux_sym_set_env_token1] = ACTIONS(1001), + [aux_sym_stdin_null_token1] = ACTIONS(1001), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1001), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1001), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1001), + [aux_sym_syslog_facility_token1] = ACTIONS(1001), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1001), + [aux_sym_keep_alive_token1] = ACTIONS(1001), + [aux_sym_tag_token1] = ACTIONS(1001), + [aux_sym_tunnel_token1] = ACTIONS(1003), + [aux_sym_tunnel_device_token1] = ACTIONS(1001), + [aux_sym_update_host_keys_token1] = ACTIONS(1001), + [aux_sym_use_keychain_token1] = ACTIONS(1001), + [aux_sym_use_roaming_token1] = ACTIONS(1001), + [aux_sym_user_token1] = ACTIONS(1003), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1001), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1001), + [aux_sym_visual_host_key_token1] = ACTIONS(1001), + [aux_sym_xauth_location_token1] = ACTIONS(1001), }, [74] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1006), - [aux_sym_match_token1] = ACTIONS(1002), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1002), - [aux_sym_address_family_token1] = ACTIONS(1002), - [aux_sym_batch_mode_token1] = ACTIONS(1002), - [aux_sym_bind_address_token1] = ACTIONS(1002), - [aux_sym_bind_interface_token1] = ACTIONS(1002), - [aux_sym_canonical_domains_token1] = ACTIONS(1002), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1002), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1002), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1002), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1002), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1002), - [aux_sym_certificate_file_token1] = ACTIONS(1002), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1002), - [aux_sym_channel_timeout_token1] = ACTIONS(1002), - [aux_sym_check_host_ip_token1] = ACTIONS(1002), - [aux_sym_ciphers_token1] = ACTIONS(1002), - [aux_sym_cipher_token1] = ACTIONS(1004), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1002), - [aux_sym_compression_token1] = ACTIONS(1002), - [aux_sym_connection_attempts_token1] = ACTIONS(1002), - [aux_sym_connect_timeout_token1] = ACTIONS(1002), - [aux_sym_control_master_token1] = ACTIONS(1002), - [aux_sym_control_path_token1] = ACTIONS(1002), - [aux_sym_control_persist_token1] = ACTIONS(1002), - [aux_sym_dynamic_forward_token1] = ACTIONS(1002), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1002), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1002), - [aux_sym_escape_char_token1] = ACTIONS(1002), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1002), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1002), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1002), - [aux_sym_forward_agent_token1] = ACTIONS(1002), - [aux_sym_forward_x11_token1] = ACTIONS(1004), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1002), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1002), - [aux_sym_gateway_ports_token1] = ACTIONS(1002), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1002), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1002), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1002), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1002), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1002), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1002), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1002), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1002), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1002), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1002), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1002), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1002), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1002), - [aux_sym_host_key_alias_token1] = ACTIONS(1002), - [aux_sym_hostname_token1] = ACTIONS(1002), - [aux_sym_identities_only_token1] = ACTIONS(1002), - [aux_sym_identity_agent_token1] = ACTIONS(1002), - [aux_sym_identity_file_token1] = ACTIONS(1002), - [aux_sym_ignore_unknown_token1] = ACTIONS(1002), - [aux_sym_include_token1] = ACTIONS(1002), - [aux_sym_ip_qos_token1] = ACTIONS(1002), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1002), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1002), - [aux_sym_kex_algorithms_token1] = ACTIONS(1002), - [aux_sym_known_hosts_command_token1] = ACTIONS(1002), - [aux_sym_local_command_token1] = ACTIONS(1002), - [aux_sym_local_forward_token1] = ACTIONS(1002), - [aux_sym_log_level_token1] = ACTIONS(1002), - [aux_sym_log_verbose_token1] = ACTIONS(1002), - [aux_sym_macs_token1] = ACTIONS(1002), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1002), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1002), - [aux_sym_password_authentication_token1] = ACTIONS(1002), - [aux_sym_permit_local_command_token1] = ACTIONS(1002), - [aux_sym_permit_remote_open_token1] = ACTIONS(1002), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1002), - [aux_sym_port_token1] = ACTIONS(1002), - [aux_sym_preferred_authentications_token1] = ACTIONS(1002), - [aux_sym_protocol_token1] = ACTIONS(1002), - [aux_sym_proxy_command_token1] = ACTIONS(1002), - [aux_sym_proxy_jump_token1] = ACTIONS(1002), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1002), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1002), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1002), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1002), - [aux_sym_rekey_limit_token1] = ACTIONS(1002), - [aux_sym_remote_command_token1] = ACTIONS(1002), - [aux_sym_remote_forward_token1] = ACTIONS(1002), - [aux_sym_request_tty_token1] = ACTIONS(1002), - [aux_sym_required_rsa_size_token1] = ACTIONS(1002), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1002), - [aux_sym_security_key_provider_token1] = ACTIONS(1002), - [aux_sym_send_env_token1] = ACTIONS(1002), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1002), - [aux_sym_server_alive_interval_token1] = ACTIONS(1002), - [aux_sym_session_type_token1] = ACTIONS(1002), - [aux_sym_set_env_token1] = ACTIONS(1002), - [aux_sym_stdin_null_token1] = ACTIONS(1002), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1002), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1002), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1002), - [aux_sym_syslog_facility_token1] = ACTIONS(1002), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1002), - [aux_sym_keep_alive_token1] = ACTIONS(1002), - [aux_sym_tag_token1] = ACTIONS(1002), - [aux_sym_tunnel_token1] = ACTIONS(1004), - [aux_sym_tunnel_device_token1] = ACTIONS(1002), - [aux_sym_update_host_keys_token1] = ACTIONS(1002), - [aux_sym_use_keychain_token1] = ACTIONS(1002), - [aux_sym_use_roaming_token1] = ACTIONS(1002), - [aux_sym_user_token1] = ACTIONS(1004), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1002), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1002), - [aux_sym_visual_host_key_token1] = ACTIONS(1002), - [aux_sym_xauth_location_token1] = ACTIONS(1002), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1009), + [anon_sym_DQUOTE] = ACTIONS(1011), + [aux_sym_match_token1] = ACTIONS(1007), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1007), + [aux_sym_address_family_token1] = ACTIONS(1007), + [aux_sym_batch_mode_token1] = ACTIONS(1007), + [aux_sym_bind_address_token1] = ACTIONS(1007), + [aux_sym_bind_interface_token1] = ACTIONS(1007), + [aux_sym_canonical_domains_token1] = ACTIONS(1007), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1007), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1007), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1007), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1007), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1007), + [aux_sym_certificate_file_token1] = ACTIONS(1007), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1007), + [aux_sym_channel_timeout_token1] = ACTIONS(1007), + [aux_sym_check_host_ip_token1] = ACTIONS(1007), + [aux_sym_ciphers_token1] = ACTIONS(1007), + [aux_sym_cipher_token1] = ACTIONS(1009), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1007), + [aux_sym_compression_token1] = ACTIONS(1007), + [aux_sym_connection_attempts_token1] = ACTIONS(1007), + [aux_sym_connect_timeout_token1] = ACTIONS(1007), + [aux_sym_control_master_token1] = ACTIONS(1007), + [aux_sym_control_path_token1] = ACTIONS(1007), + [aux_sym_control_persist_token1] = ACTIONS(1007), + [aux_sym_dynamic_forward_token1] = ACTIONS(1007), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1007), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1007), + [aux_sym_escape_char_token1] = ACTIONS(1007), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1007), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1007), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1007), + [aux_sym_forward_agent_token1] = ACTIONS(1007), + [aux_sym_forward_x11_token1] = ACTIONS(1009), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1007), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1007), + [aux_sym_gateway_ports_token1] = ACTIONS(1007), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1007), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1007), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1007), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1007), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1007), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1007), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1007), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1007), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1007), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1007), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1007), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1007), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1007), + [aux_sym_host_key_alias_token1] = ACTIONS(1007), + [aux_sym_hostname_token1] = ACTIONS(1007), + [aux_sym_identities_only_token1] = ACTIONS(1007), + [aux_sym_identity_agent_token1] = ACTIONS(1007), + [aux_sym_identity_file_token1] = ACTIONS(1007), + [aux_sym_ignore_unknown_token1] = ACTIONS(1007), + [aux_sym_include_token1] = ACTIONS(1007), + [aux_sym_ip_qos_token1] = ACTIONS(1007), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1007), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1007), + [aux_sym_kex_algorithms_token1] = ACTIONS(1007), + [aux_sym_known_hosts_command_token1] = ACTIONS(1007), + [aux_sym_local_command_token1] = ACTIONS(1007), + [aux_sym_local_forward_token1] = ACTIONS(1007), + [aux_sym_log_level_token1] = ACTIONS(1007), + [aux_sym_log_verbose_token1] = ACTIONS(1007), + [aux_sym_macs_token1] = ACTIONS(1007), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1007), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1007), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1007), + [aux_sym_password_authentication_token1] = ACTIONS(1007), + [aux_sym_permit_local_command_token1] = ACTIONS(1007), + [aux_sym_permit_remote_open_token1] = ACTIONS(1007), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1007), + [aux_sym_port_token1] = ACTIONS(1007), + [aux_sym_preferred_authentications_token1] = ACTIONS(1007), + [aux_sym_protocol_token1] = ACTIONS(1007), + [aux_sym_proxy_command_token1] = ACTIONS(1007), + [aux_sym_proxy_jump_token1] = ACTIONS(1007), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1007), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1007), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1007), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1007), + [aux_sym_rekey_limit_token1] = ACTIONS(1007), + [aux_sym_remote_command_token1] = ACTIONS(1007), + [aux_sym_remote_forward_token1] = ACTIONS(1007), + [aux_sym_request_tty_token1] = ACTIONS(1007), + [aux_sym_required_rsa_size_token1] = ACTIONS(1007), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1007), + [aux_sym_security_key_provider_token1] = ACTIONS(1007), + [aux_sym_send_env_token1] = ACTIONS(1007), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1007), + [aux_sym_server_alive_interval_token1] = ACTIONS(1007), + [aux_sym_session_type_token1] = ACTIONS(1007), + [aux_sym_set_env_token1] = ACTIONS(1007), + [aux_sym_stdin_null_token1] = ACTIONS(1007), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1007), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1007), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1007), + [aux_sym_syslog_facility_token1] = ACTIONS(1007), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1007), + [aux_sym_keep_alive_token1] = ACTIONS(1007), + [aux_sym_tag_token1] = ACTIONS(1007), + [aux_sym_tunnel_token1] = ACTIONS(1009), + [aux_sym_tunnel_device_token1] = ACTIONS(1007), + [aux_sym_update_host_keys_token1] = ACTIONS(1007), + [aux_sym_use_keychain_token1] = ACTIONS(1007), + [aux_sym_use_roaming_token1] = ACTIONS(1007), + [aux_sym_user_token1] = ACTIONS(1009), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1007), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1007), + [aux_sym_visual_host_key_token1] = ACTIONS(1007), + [aux_sym_xauth_location_token1] = ACTIONS(1007), }, [75] = { - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1010), - [anon_sym_DQUOTE] = ACTIONS(1012), - [aux_sym_match_token1] = ACTIONS(1008), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1008), - [aux_sym_address_family_token1] = ACTIONS(1008), - [aux_sym_batch_mode_token1] = ACTIONS(1008), - [aux_sym_bind_address_token1] = ACTIONS(1008), - [aux_sym_bind_interface_token1] = ACTIONS(1008), - [aux_sym_canonical_domains_token1] = ACTIONS(1008), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1008), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1008), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1008), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1008), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1008), - [aux_sym_certificate_file_token1] = ACTIONS(1008), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1008), - [aux_sym_channel_timeout_token1] = ACTIONS(1008), - [aux_sym_check_host_ip_token1] = ACTIONS(1008), - [aux_sym_ciphers_token1] = ACTIONS(1008), - [aux_sym_cipher_token1] = ACTIONS(1010), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1008), - [aux_sym_compression_token1] = ACTIONS(1008), - [aux_sym_connection_attempts_token1] = ACTIONS(1008), - [aux_sym_connect_timeout_token1] = ACTIONS(1008), - [aux_sym_control_master_token1] = ACTIONS(1008), - [aux_sym_control_path_token1] = ACTIONS(1008), - [aux_sym_control_persist_token1] = ACTIONS(1008), - [aux_sym_dynamic_forward_token1] = ACTIONS(1008), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1008), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1008), - [aux_sym_escape_char_token1] = ACTIONS(1008), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1008), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1008), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1008), - [aux_sym_forward_agent_token1] = ACTIONS(1008), - [aux_sym_forward_x11_token1] = ACTIONS(1010), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1008), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1008), - [aux_sym_gateway_ports_token1] = ACTIONS(1008), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1008), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1008), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1008), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1008), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1008), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1008), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1008), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1008), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1008), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1008), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1008), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1008), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1008), - [aux_sym_host_key_alias_token1] = ACTIONS(1008), - [aux_sym_hostname_token1] = ACTIONS(1008), - [aux_sym_identities_only_token1] = ACTIONS(1008), - [aux_sym_identity_agent_token1] = ACTIONS(1008), - [aux_sym_identity_file_token1] = ACTIONS(1008), - [aux_sym_ignore_unknown_token1] = ACTIONS(1008), - [aux_sym_include_token1] = ACTIONS(1008), - [aux_sym_ip_qos_token1] = ACTIONS(1008), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1008), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1008), - [aux_sym_kex_algorithms_token1] = ACTIONS(1008), - [aux_sym_known_hosts_command_token1] = ACTIONS(1008), - [aux_sym_local_command_token1] = ACTIONS(1008), - [aux_sym_local_forward_token1] = ACTIONS(1008), - [aux_sym_log_level_token1] = ACTIONS(1008), - [aux_sym_log_verbose_token1] = ACTIONS(1008), - [aux_sym_macs_token1] = ACTIONS(1008), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1008), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1008), - [aux_sym_password_authentication_token1] = ACTIONS(1008), - [aux_sym_permit_local_command_token1] = ACTIONS(1008), - [aux_sym_permit_remote_open_token1] = ACTIONS(1008), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1008), - [aux_sym_port_token1] = ACTIONS(1008), - [aux_sym_preferred_authentications_token1] = ACTIONS(1008), - [aux_sym_protocol_token1] = ACTIONS(1008), - [aux_sym_proxy_command_token1] = ACTIONS(1008), - [aux_sym_proxy_jump_token1] = ACTIONS(1008), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1008), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1008), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1008), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1008), - [aux_sym_rekey_limit_token1] = ACTIONS(1008), - [aux_sym_remote_command_token1] = ACTIONS(1008), - [aux_sym_remote_forward_token1] = ACTIONS(1008), - [aux_sym_request_tty_token1] = ACTIONS(1008), - [aux_sym_required_rsa_size_token1] = ACTIONS(1008), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1008), - [aux_sym_security_key_provider_token1] = ACTIONS(1008), - [aux_sym_send_env_token1] = ACTIONS(1008), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1008), - [aux_sym_server_alive_interval_token1] = ACTIONS(1008), - [aux_sym_session_type_token1] = ACTIONS(1008), - [aux_sym_set_env_token1] = ACTIONS(1008), - [aux_sym_stdin_null_token1] = ACTIONS(1008), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1008), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1008), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1008), - [aux_sym_syslog_facility_token1] = ACTIONS(1008), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1008), - [aux_sym_keep_alive_token1] = ACTIONS(1008), - [aux_sym_tag_token1] = ACTIONS(1008), - [aux_sym_tunnel_token1] = ACTIONS(1010), - [aux_sym_tunnel_device_token1] = ACTIONS(1008), - [aux_sym_update_host_keys_token1] = ACTIONS(1008), - [aux_sym_use_keychain_token1] = ACTIONS(1008), - [aux_sym_use_roaming_token1] = ACTIONS(1008), - [aux_sym_user_token1] = ACTIONS(1010), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1008), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1008), - [aux_sym_visual_host_key_token1] = ACTIONS(1008), - [aux_sym_xauth_location_token1] = ACTIONS(1008), + [ts_builtin_sym_end] = ACTIONS(1013), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1015), + [anon_sym_DQUOTE] = ACTIONS(1017), + [aux_sym_match_token1] = ACTIONS(1013), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1013), + [aux_sym_address_family_token1] = ACTIONS(1013), + [aux_sym_batch_mode_token1] = ACTIONS(1013), + [aux_sym_bind_address_token1] = ACTIONS(1013), + [aux_sym_bind_interface_token1] = ACTIONS(1013), + [aux_sym_canonical_domains_token1] = ACTIONS(1013), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1013), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1013), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1013), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1013), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1013), + [aux_sym_certificate_file_token1] = ACTIONS(1013), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1013), + [aux_sym_channel_timeout_token1] = ACTIONS(1013), + [aux_sym_check_host_ip_token1] = ACTIONS(1013), + [aux_sym_ciphers_token1] = ACTIONS(1013), + [aux_sym_cipher_token1] = ACTIONS(1015), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1013), + [aux_sym_compression_token1] = ACTIONS(1013), + [aux_sym_connection_attempts_token1] = ACTIONS(1013), + [aux_sym_connect_timeout_token1] = ACTIONS(1013), + [aux_sym_control_master_token1] = ACTIONS(1013), + [aux_sym_control_path_token1] = ACTIONS(1013), + [aux_sym_control_persist_token1] = ACTIONS(1013), + [aux_sym_dynamic_forward_token1] = ACTIONS(1013), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1013), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1013), + [aux_sym_escape_char_token1] = ACTIONS(1013), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1013), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1013), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1013), + [aux_sym_forward_agent_token1] = ACTIONS(1013), + [aux_sym_forward_x11_token1] = ACTIONS(1015), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1013), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1013), + [aux_sym_gateway_ports_token1] = ACTIONS(1013), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1013), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1013), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1013), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1013), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1013), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1013), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1013), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1013), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1013), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1013), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1013), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1013), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1013), + [aux_sym_host_key_alias_token1] = ACTIONS(1013), + [aux_sym_hostname_token1] = ACTIONS(1013), + [aux_sym_identities_only_token1] = ACTIONS(1013), + [aux_sym_identity_agent_token1] = ACTIONS(1013), + [aux_sym_identity_file_token1] = ACTIONS(1013), + [aux_sym_ignore_unknown_token1] = ACTIONS(1013), + [aux_sym_include_token1] = ACTIONS(1013), + [aux_sym_ip_qos_token1] = ACTIONS(1013), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1013), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1013), + [aux_sym_kex_algorithms_token1] = ACTIONS(1013), + [aux_sym_known_hosts_command_token1] = ACTIONS(1013), + [aux_sym_local_command_token1] = ACTIONS(1013), + [aux_sym_local_forward_token1] = ACTIONS(1013), + [aux_sym_log_level_token1] = ACTIONS(1013), + [aux_sym_log_verbose_token1] = ACTIONS(1013), + [aux_sym_macs_token1] = ACTIONS(1013), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1013), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1013), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1013), + [aux_sym_password_authentication_token1] = ACTIONS(1013), + [aux_sym_permit_local_command_token1] = ACTIONS(1013), + [aux_sym_permit_remote_open_token1] = ACTIONS(1013), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1013), + [aux_sym_port_token1] = ACTIONS(1013), + [aux_sym_preferred_authentications_token1] = ACTIONS(1013), + [aux_sym_protocol_token1] = ACTIONS(1013), + [aux_sym_proxy_command_token1] = ACTIONS(1013), + [aux_sym_proxy_jump_token1] = ACTIONS(1013), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1013), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1013), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1013), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1013), + [aux_sym_rekey_limit_token1] = ACTIONS(1013), + [aux_sym_remote_command_token1] = ACTIONS(1013), + [aux_sym_remote_forward_token1] = ACTIONS(1013), + [aux_sym_request_tty_token1] = ACTIONS(1013), + [aux_sym_required_rsa_size_token1] = ACTIONS(1013), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1013), + [aux_sym_security_key_provider_token1] = ACTIONS(1013), + [aux_sym_send_env_token1] = ACTIONS(1013), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1013), + [aux_sym_server_alive_interval_token1] = ACTIONS(1013), + [aux_sym_session_type_token1] = ACTIONS(1013), + [aux_sym_set_env_token1] = ACTIONS(1013), + [aux_sym_stdin_null_token1] = ACTIONS(1013), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1013), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1013), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1013), + [aux_sym_syslog_facility_token1] = ACTIONS(1013), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1013), + [aux_sym_keep_alive_token1] = ACTIONS(1013), + [aux_sym_tag_token1] = ACTIONS(1013), + [aux_sym_tunnel_token1] = ACTIONS(1015), + [aux_sym_tunnel_device_token1] = ACTIONS(1013), + [aux_sym_update_host_keys_token1] = ACTIONS(1013), + [aux_sym_use_keychain_token1] = ACTIONS(1013), + [aux_sym_use_roaming_token1] = ACTIONS(1013), + [aux_sym_user_token1] = ACTIONS(1015), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1013), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1013), + [aux_sym_visual_host_key_token1] = ACTIONS(1013), + [aux_sym_xauth_location_token1] = ACTIONS(1013), }, [76] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(1018), - [aux_sym_match_token1] = ACTIONS(1014), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1014), - [aux_sym_address_family_token1] = ACTIONS(1014), - [aux_sym_batch_mode_token1] = ACTIONS(1014), - [aux_sym_bind_address_token1] = ACTIONS(1014), - [aux_sym_bind_interface_token1] = ACTIONS(1014), - [aux_sym_canonical_domains_token1] = ACTIONS(1014), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1014), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1014), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1014), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1014), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1014), - [aux_sym_certificate_file_token1] = ACTIONS(1014), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1014), - [aux_sym_channel_timeout_token1] = ACTIONS(1014), - [aux_sym_check_host_ip_token1] = ACTIONS(1014), - [aux_sym_ciphers_token1] = ACTIONS(1014), - [aux_sym_cipher_token1] = ACTIONS(1016), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1014), - [aux_sym_compression_token1] = ACTIONS(1014), - [aux_sym_connection_attempts_token1] = ACTIONS(1014), - [aux_sym_connect_timeout_token1] = ACTIONS(1014), - [aux_sym_control_master_token1] = ACTIONS(1014), - [aux_sym_control_path_token1] = ACTIONS(1014), - [aux_sym_control_persist_token1] = ACTIONS(1014), - [aux_sym_dynamic_forward_token1] = ACTIONS(1014), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1014), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1014), - [aux_sym_escape_char_token1] = ACTIONS(1014), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1014), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1014), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1014), - [aux_sym_forward_agent_token1] = ACTIONS(1014), - [aux_sym_forward_x11_token1] = ACTIONS(1016), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1014), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1014), - [aux_sym_gateway_ports_token1] = ACTIONS(1014), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1014), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1014), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1014), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1014), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1014), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1014), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1014), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1014), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1014), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1014), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1014), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1014), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1014), - [aux_sym_host_key_alias_token1] = ACTIONS(1014), - [aux_sym_hostname_token1] = ACTIONS(1014), - [aux_sym_identities_only_token1] = ACTIONS(1014), - [aux_sym_identity_agent_token1] = ACTIONS(1014), - [aux_sym_identity_file_token1] = ACTIONS(1014), - [aux_sym_ignore_unknown_token1] = ACTIONS(1014), - [aux_sym_include_token1] = ACTIONS(1014), - [aux_sym_ip_qos_token1] = ACTIONS(1014), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1014), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1014), - [aux_sym_kex_algorithms_token1] = ACTIONS(1014), - [aux_sym_known_hosts_command_token1] = ACTIONS(1014), - [aux_sym_local_command_token1] = ACTIONS(1014), - [aux_sym_local_forward_token1] = ACTIONS(1014), - [aux_sym_log_level_token1] = ACTIONS(1014), - [aux_sym_log_verbose_token1] = ACTIONS(1014), - [aux_sym_macs_token1] = ACTIONS(1014), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1014), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1014), - [aux_sym_password_authentication_token1] = ACTIONS(1014), - [aux_sym_permit_local_command_token1] = ACTIONS(1014), - [aux_sym_permit_remote_open_token1] = ACTIONS(1014), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1014), - [aux_sym_port_token1] = ACTIONS(1014), - [aux_sym_preferred_authentications_token1] = ACTIONS(1014), - [aux_sym_protocol_token1] = ACTIONS(1014), - [aux_sym_proxy_command_token1] = ACTIONS(1014), - [aux_sym_proxy_jump_token1] = ACTIONS(1014), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1014), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1014), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1014), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1014), - [aux_sym_rekey_limit_token1] = ACTIONS(1014), - [aux_sym_remote_command_token1] = ACTIONS(1014), - [aux_sym_remote_forward_token1] = ACTIONS(1014), - [aux_sym_request_tty_token1] = ACTIONS(1014), - [aux_sym_required_rsa_size_token1] = ACTIONS(1014), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1014), - [aux_sym_security_key_provider_token1] = ACTIONS(1014), - [aux_sym_send_env_token1] = ACTIONS(1014), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1014), - [aux_sym_server_alive_interval_token1] = ACTIONS(1014), - [aux_sym_session_type_token1] = ACTIONS(1014), - [aux_sym_set_env_token1] = ACTIONS(1014), - [aux_sym_stdin_null_token1] = ACTIONS(1014), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1014), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1014), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1014), - [aux_sym_syslog_facility_token1] = ACTIONS(1014), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1014), - [aux_sym_keep_alive_token1] = ACTIONS(1014), - [aux_sym_tag_token1] = ACTIONS(1014), - [aux_sym_tunnel_token1] = ACTIONS(1016), - [aux_sym_tunnel_device_token1] = ACTIONS(1014), - [aux_sym_update_host_keys_token1] = ACTIONS(1014), - [aux_sym_use_keychain_token1] = ACTIONS(1014), - [aux_sym_use_roaming_token1] = ACTIONS(1014), - [aux_sym_user_token1] = ACTIONS(1016), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1014), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1014), - [aux_sym_visual_host_key_token1] = ACTIONS(1014), - [aux_sym_xauth_location_token1] = ACTIONS(1014), + [ts_builtin_sym_end] = ACTIONS(1019), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1021), + [anon_sym_DQUOTE] = ACTIONS(1023), + [aux_sym_match_token1] = ACTIONS(1019), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1019), + [aux_sym_address_family_token1] = ACTIONS(1019), + [aux_sym_batch_mode_token1] = ACTIONS(1019), + [aux_sym_bind_address_token1] = ACTIONS(1019), + [aux_sym_bind_interface_token1] = ACTIONS(1019), + [aux_sym_canonical_domains_token1] = ACTIONS(1019), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1019), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1019), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1019), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1019), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1019), + [aux_sym_certificate_file_token1] = ACTIONS(1019), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1019), + [aux_sym_channel_timeout_token1] = ACTIONS(1019), + [aux_sym_check_host_ip_token1] = ACTIONS(1019), + [aux_sym_ciphers_token1] = ACTIONS(1019), + [aux_sym_cipher_token1] = ACTIONS(1021), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1019), + [aux_sym_compression_token1] = ACTIONS(1019), + [aux_sym_connection_attempts_token1] = ACTIONS(1019), + [aux_sym_connect_timeout_token1] = ACTIONS(1019), + [aux_sym_control_master_token1] = ACTIONS(1019), + [aux_sym_control_path_token1] = ACTIONS(1019), + [aux_sym_control_persist_token1] = ACTIONS(1019), + [aux_sym_dynamic_forward_token1] = ACTIONS(1019), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1019), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1019), + [aux_sym_escape_char_token1] = ACTIONS(1019), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1019), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1019), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1019), + [aux_sym_forward_agent_token1] = ACTIONS(1019), + [aux_sym_forward_x11_token1] = ACTIONS(1021), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1019), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1019), + [aux_sym_gateway_ports_token1] = ACTIONS(1019), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1019), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1019), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1019), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1019), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1019), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1019), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1019), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1019), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1019), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1019), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1019), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1019), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1019), + [aux_sym_host_key_alias_token1] = ACTIONS(1019), + [aux_sym_hostname_token1] = ACTIONS(1019), + [aux_sym_identities_only_token1] = ACTIONS(1019), + [aux_sym_identity_agent_token1] = ACTIONS(1019), + [aux_sym_identity_file_token1] = ACTIONS(1019), + [aux_sym_ignore_unknown_token1] = ACTIONS(1019), + [aux_sym_include_token1] = ACTIONS(1019), + [aux_sym_ip_qos_token1] = ACTIONS(1019), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1019), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1019), + [aux_sym_kex_algorithms_token1] = ACTIONS(1019), + [aux_sym_known_hosts_command_token1] = ACTIONS(1019), + [aux_sym_local_command_token1] = ACTIONS(1019), + [aux_sym_local_forward_token1] = ACTIONS(1019), + [aux_sym_log_level_token1] = ACTIONS(1019), + [aux_sym_log_verbose_token1] = ACTIONS(1019), + [aux_sym_macs_token1] = ACTIONS(1019), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1019), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1019), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1019), + [aux_sym_password_authentication_token1] = ACTIONS(1019), + [aux_sym_permit_local_command_token1] = ACTIONS(1019), + [aux_sym_permit_remote_open_token1] = ACTIONS(1019), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1019), + [aux_sym_port_token1] = ACTIONS(1019), + [aux_sym_preferred_authentications_token1] = ACTIONS(1019), + [aux_sym_protocol_token1] = ACTIONS(1019), + [aux_sym_proxy_command_token1] = ACTIONS(1019), + [aux_sym_proxy_jump_token1] = ACTIONS(1019), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1019), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1019), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1019), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1019), + [aux_sym_rekey_limit_token1] = ACTIONS(1019), + [aux_sym_remote_command_token1] = ACTIONS(1019), + [aux_sym_remote_forward_token1] = ACTIONS(1019), + [aux_sym_request_tty_token1] = ACTIONS(1019), + [aux_sym_required_rsa_size_token1] = ACTIONS(1019), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1019), + [aux_sym_security_key_provider_token1] = ACTIONS(1019), + [aux_sym_send_env_token1] = ACTIONS(1019), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1019), + [aux_sym_server_alive_interval_token1] = ACTIONS(1019), + [aux_sym_session_type_token1] = ACTIONS(1019), + [aux_sym_set_env_token1] = ACTIONS(1019), + [aux_sym_stdin_null_token1] = ACTIONS(1019), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1019), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1019), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1019), + [aux_sym_syslog_facility_token1] = ACTIONS(1019), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1019), + [aux_sym_keep_alive_token1] = ACTIONS(1019), + [aux_sym_tag_token1] = ACTIONS(1019), + [aux_sym_tunnel_token1] = ACTIONS(1021), + [aux_sym_tunnel_device_token1] = ACTIONS(1019), + [aux_sym_update_host_keys_token1] = ACTIONS(1019), + [aux_sym_use_keychain_token1] = ACTIONS(1019), + [aux_sym_use_roaming_token1] = ACTIONS(1019), + [aux_sym_user_token1] = ACTIONS(1021), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1019), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1019), + [aux_sym_visual_host_key_token1] = ACTIONS(1019), + [aux_sym_xauth_location_token1] = ACTIONS(1019), }, [77] = { - [ts_builtin_sym_end] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1022), - [anon_sym_DQUOTE] = ACTIONS(1024), - [aux_sym_match_token1] = ACTIONS(1020), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1020), - [aux_sym_address_family_token1] = ACTIONS(1020), - [aux_sym_batch_mode_token1] = ACTIONS(1020), - [aux_sym_bind_address_token1] = ACTIONS(1020), - [aux_sym_bind_interface_token1] = ACTIONS(1020), - [aux_sym_canonical_domains_token1] = ACTIONS(1020), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1020), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1020), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1020), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1020), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1020), - [aux_sym_certificate_file_token1] = ACTIONS(1020), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1020), - [aux_sym_channel_timeout_token1] = ACTIONS(1020), - [aux_sym_check_host_ip_token1] = ACTIONS(1020), - [aux_sym_ciphers_token1] = ACTIONS(1020), - [aux_sym_cipher_token1] = ACTIONS(1022), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1020), - [aux_sym_compression_token1] = ACTIONS(1020), - [aux_sym_connection_attempts_token1] = ACTIONS(1020), - [aux_sym_connect_timeout_token1] = ACTIONS(1020), - [aux_sym_control_master_token1] = ACTIONS(1020), - [aux_sym_control_path_token1] = ACTIONS(1020), - [aux_sym_control_persist_token1] = ACTIONS(1020), - [aux_sym_dynamic_forward_token1] = ACTIONS(1020), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1020), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1020), - [aux_sym_escape_char_token1] = ACTIONS(1020), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1020), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1020), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1020), - [aux_sym_forward_agent_token1] = ACTIONS(1020), - [aux_sym_forward_x11_token1] = ACTIONS(1022), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1020), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1020), - [aux_sym_gateway_ports_token1] = ACTIONS(1020), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1020), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1020), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1020), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1020), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1020), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1020), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1020), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1020), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1020), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1020), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1020), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1020), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1020), - [aux_sym_host_key_alias_token1] = ACTIONS(1020), - [aux_sym_hostname_token1] = ACTIONS(1020), - [aux_sym_identities_only_token1] = ACTIONS(1020), - [aux_sym_identity_agent_token1] = ACTIONS(1020), - [aux_sym_identity_file_token1] = ACTIONS(1020), - [aux_sym_ignore_unknown_token1] = ACTIONS(1020), - [aux_sym_include_token1] = ACTIONS(1020), - [aux_sym_ip_qos_token1] = ACTIONS(1020), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1020), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1020), - [aux_sym_kex_algorithms_token1] = ACTIONS(1020), - [aux_sym_known_hosts_command_token1] = ACTIONS(1020), - [aux_sym_local_command_token1] = ACTIONS(1020), - [aux_sym_local_forward_token1] = ACTIONS(1020), - [aux_sym_log_level_token1] = ACTIONS(1020), - [aux_sym_log_verbose_token1] = ACTIONS(1020), - [aux_sym_macs_token1] = ACTIONS(1020), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1020), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1020), - [aux_sym_password_authentication_token1] = ACTIONS(1020), - [aux_sym_permit_local_command_token1] = ACTIONS(1020), - [aux_sym_permit_remote_open_token1] = ACTIONS(1020), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1020), - [aux_sym_port_token1] = ACTIONS(1020), - [aux_sym_preferred_authentications_token1] = ACTIONS(1020), - [aux_sym_protocol_token1] = ACTIONS(1020), - [aux_sym_proxy_command_token1] = ACTIONS(1020), - [aux_sym_proxy_jump_token1] = ACTIONS(1020), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1020), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1020), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1020), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1020), - [aux_sym_rekey_limit_token1] = ACTIONS(1020), - [aux_sym_remote_command_token1] = ACTIONS(1020), - [aux_sym_remote_forward_token1] = ACTIONS(1020), - [aux_sym_request_tty_token1] = ACTIONS(1020), - [aux_sym_required_rsa_size_token1] = ACTIONS(1020), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1020), - [aux_sym_security_key_provider_token1] = ACTIONS(1020), - [aux_sym_send_env_token1] = ACTIONS(1020), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1020), - [aux_sym_server_alive_interval_token1] = ACTIONS(1020), - [aux_sym_session_type_token1] = ACTIONS(1020), - [aux_sym_set_env_token1] = ACTIONS(1020), - [aux_sym_stdin_null_token1] = ACTIONS(1020), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1020), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1020), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1020), - [aux_sym_syslog_facility_token1] = ACTIONS(1020), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1020), - [aux_sym_keep_alive_token1] = ACTIONS(1020), - [aux_sym_tag_token1] = ACTIONS(1020), - [aux_sym_tunnel_token1] = ACTIONS(1022), - [aux_sym_tunnel_device_token1] = ACTIONS(1020), - [aux_sym_update_host_keys_token1] = ACTIONS(1020), - [aux_sym_use_keychain_token1] = ACTIONS(1020), - [aux_sym_use_roaming_token1] = ACTIONS(1020), - [aux_sym_user_token1] = ACTIONS(1022), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1020), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1020), - [aux_sym_visual_host_key_token1] = ACTIONS(1020), - [aux_sym_xauth_location_token1] = ACTIONS(1020), + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1027), + [anon_sym_DQUOTE] = ACTIONS(1029), + [aux_sym_match_token1] = ACTIONS(1025), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1025), + [aux_sym_address_family_token1] = ACTIONS(1025), + [aux_sym_batch_mode_token1] = ACTIONS(1025), + [aux_sym_bind_address_token1] = ACTIONS(1025), + [aux_sym_bind_interface_token1] = ACTIONS(1025), + [aux_sym_canonical_domains_token1] = ACTIONS(1025), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1025), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1025), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1025), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1025), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1025), + [aux_sym_certificate_file_token1] = ACTIONS(1025), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1025), + [aux_sym_channel_timeout_token1] = ACTIONS(1025), + [aux_sym_check_host_ip_token1] = ACTIONS(1025), + [aux_sym_ciphers_token1] = ACTIONS(1025), + [aux_sym_cipher_token1] = ACTIONS(1027), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1025), + [aux_sym_compression_token1] = ACTIONS(1025), + [aux_sym_connection_attempts_token1] = ACTIONS(1025), + [aux_sym_connect_timeout_token1] = ACTIONS(1025), + [aux_sym_control_master_token1] = ACTIONS(1025), + [aux_sym_control_path_token1] = ACTIONS(1025), + [aux_sym_control_persist_token1] = ACTIONS(1025), + [aux_sym_dynamic_forward_token1] = ACTIONS(1025), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1025), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1025), + [aux_sym_escape_char_token1] = ACTIONS(1025), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1025), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1025), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1025), + [aux_sym_forward_agent_token1] = ACTIONS(1025), + [aux_sym_forward_x11_token1] = ACTIONS(1027), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1025), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1025), + [aux_sym_gateway_ports_token1] = ACTIONS(1025), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1025), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1025), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1025), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1025), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1025), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1025), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1025), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1025), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1025), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1025), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1025), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1025), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1025), + [aux_sym_host_key_alias_token1] = ACTIONS(1025), + [aux_sym_hostname_token1] = ACTIONS(1025), + [aux_sym_identities_only_token1] = ACTIONS(1025), + [aux_sym_identity_agent_token1] = ACTIONS(1025), + [aux_sym_identity_file_token1] = ACTIONS(1025), + [aux_sym_ignore_unknown_token1] = ACTIONS(1025), + [aux_sym_include_token1] = ACTIONS(1025), + [aux_sym_ip_qos_token1] = ACTIONS(1025), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1025), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1025), + [aux_sym_kex_algorithms_token1] = ACTIONS(1025), + [aux_sym_known_hosts_command_token1] = ACTIONS(1025), + [aux_sym_local_command_token1] = ACTIONS(1025), + [aux_sym_local_forward_token1] = ACTIONS(1025), + [aux_sym_log_level_token1] = ACTIONS(1025), + [aux_sym_log_verbose_token1] = ACTIONS(1025), + [aux_sym_macs_token1] = ACTIONS(1025), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1025), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1025), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1025), + [aux_sym_password_authentication_token1] = ACTIONS(1025), + [aux_sym_permit_local_command_token1] = ACTIONS(1025), + [aux_sym_permit_remote_open_token1] = ACTIONS(1025), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1025), + [aux_sym_port_token1] = ACTIONS(1025), + [aux_sym_preferred_authentications_token1] = ACTIONS(1025), + [aux_sym_protocol_token1] = ACTIONS(1025), + [aux_sym_proxy_command_token1] = ACTIONS(1025), + [aux_sym_proxy_jump_token1] = ACTIONS(1025), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1025), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1025), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1025), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1025), + [aux_sym_rekey_limit_token1] = ACTIONS(1025), + [aux_sym_remote_command_token1] = ACTIONS(1025), + [aux_sym_remote_forward_token1] = ACTIONS(1025), + [aux_sym_request_tty_token1] = ACTIONS(1025), + [aux_sym_required_rsa_size_token1] = ACTIONS(1025), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1025), + [aux_sym_security_key_provider_token1] = ACTIONS(1025), + [aux_sym_send_env_token1] = ACTIONS(1025), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1025), + [aux_sym_server_alive_interval_token1] = ACTIONS(1025), + [aux_sym_session_type_token1] = ACTIONS(1025), + [aux_sym_set_env_token1] = ACTIONS(1025), + [aux_sym_stdin_null_token1] = ACTIONS(1025), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1025), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1025), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1025), + [aux_sym_syslog_facility_token1] = ACTIONS(1025), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1025), + [aux_sym_keep_alive_token1] = ACTIONS(1025), + [aux_sym_tag_token1] = ACTIONS(1025), + [aux_sym_tunnel_token1] = ACTIONS(1027), + [aux_sym_tunnel_device_token1] = ACTIONS(1025), + [aux_sym_update_host_keys_token1] = ACTIONS(1025), + [aux_sym_use_keychain_token1] = ACTIONS(1025), + [aux_sym_use_roaming_token1] = ACTIONS(1025), + [aux_sym_user_token1] = ACTIONS(1027), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1025), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1025), + [aux_sym_visual_host_key_token1] = ACTIONS(1025), + [aux_sym_xauth_location_token1] = ACTIONS(1025), }, [78] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1028), - [anon_sym_DQUOTE] = ACTIONS(1030), - [aux_sym_match_token1] = ACTIONS(1026), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1026), - [aux_sym_address_family_token1] = ACTIONS(1026), - [aux_sym_batch_mode_token1] = ACTIONS(1026), - [aux_sym_bind_address_token1] = ACTIONS(1026), - [aux_sym_bind_interface_token1] = ACTIONS(1026), - [aux_sym_canonical_domains_token1] = ACTIONS(1026), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1026), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1026), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1026), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1026), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1026), - [aux_sym_certificate_file_token1] = ACTIONS(1026), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1026), - [aux_sym_channel_timeout_token1] = ACTIONS(1026), - [aux_sym_check_host_ip_token1] = ACTIONS(1026), - [aux_sym_ciphers_token1] = ACTIONS(1026), - [aux_sym_cipher_token1] = ACTIONS(1028), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1026), - [aux_sym_compression_token1] = ACTIONS(1026), - [aux_sym_connection_attempts_token1] = ACTIONS(1026), - [aux_sym_connect_timeout_token1] = ACTIONS(1026), - [aux_sym_control_master_token1] = ACTIONS(1026), - [aux_sym_control_path_token1] = ACTIONS(1026), - [aux_sym_control_persist_token1] = ACTIONS(1026), - [aux_sym_dynamic_forward_token1] = ACTIONS(1026), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1026), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1026), - [aux_sym_escape_char_token1] = ACTIONS(1026), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1026), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1026), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1026), - [aux_sym_forward_agent_token1] = ACTIONS(1026), - [aux_sym_forward_x11_token1] = ACTIONS(1028), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1026), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1026), - [aux_sym_gateway_ports_token1] = ACTIONS(1026), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1026), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1026), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1026), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1026), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1026), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1026), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1026), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1026), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1026), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1026), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1026), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1026), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1026), - [aux_sym_host_key_alias_token1] = ACTIONS(1026), - [aux_sym_hostname_token1] = ACTIONS(1026), - [aux_sym_identities_only_token1] = ACTIONS(1026), - [aux_sym_identity_agent_token1] = ACTIONS(1026), - [aux_sym_identity_file_token1] = ACTIONS(1026), - [aux_sym_ignore_unknown_token1] = ACTIONS(1026), - [aux_sym_include_token1] = ACTIONS(1026), - [aux_sym_ip_qos_token1] = ACTIONS(1026), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1026), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1026), - [aux_sym_kex_algorithms_token1] = ACTIONS(1026), - [aux_sym_known_hosts_command_token1] = ACTIONS(1026), - [aux_sym_local_command_token1] = ACTIONS(1026), - [aux_sym_local_forward_token1] = ACTIONS(1026), - [aux_sym_log_level_token1] = ACTIONS(1026), - [aux_sym_log_verbose_token1] = ACTIONS(1026), - [aux_sym_macs_token1] = ACTIONS(1026), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1026), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1026), - [aux_sym_password_authentication_token1] = ACTIONS(1026), - [aux_sym_permit_local_command_token1] = ACTIONS(1026), - [aux_sym_permit_remote_open_token1] = ACTIONS(1026), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1026), - [aux_sym_port_token1] = ACTIONS(1026), - [aux_sym_preferred_authentications_token1] = ACTIONS(1026), - [aux_sym_protocol_token1] = ACTIONS(1026), - [aux_sym_proxy_command_token1] = ACTIONS(1026), - [aux_sym_proxy_jump_token1] = ACTIONS(1026), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1026), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1026), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1026), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1026), - [aux_sym_rekey_limit_token1] = ACTIONS(1026), - [aux_sym_remote_command_token1] = ACTIONS(1026), - [aux_sym_remote_forward_token1] = ACTIONS(1026), - [aux_sym_request_tty_token1] = ACTIONS(1026), - [aux_sym_required_rsa_size_token1] = ACTIONS(1026), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1026), - [aux_sym_security_key_provider_token1] = ACTIONS(1026), - [aux_sym_send_env_token1] = ACTIONS(1026), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1026), - [aux_sym_server_alive_interval_token1] = ACTIONS(1026), - [aux_sym_session_type_token1] = ACTIONS(1026), - [aux_sym_set_env_token1] = ACTIONS(1026), - [aux_sym_stdin_null_token1] = ACTIONS(1026), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1026), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1026), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1026), - [aux_sym_syslog_facility_token1] = ACTIONS(1026), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1026), - [aux_sym_keep_alive_token1] = ACTIONS(1026), - [aux_sym_tag_token1] = ACTIONS(1026), - [aux_sym_tunnel_token1] = ACTIONS(1028), - [aux_sym_tunnel_device_token1] = ACTIONS(1026), - [aux_sym_update_host_keys_token1] = ACTIONS(1026), - [aux_sym_use_keychain_token1] = ACTIONS(1026), - [aux_sym_use_roaming_token1] = ACTIONS(1026), - [aux_sym_user_token1] = ACTIONS(1028), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1026), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1026), - [aux_sym_visual_host_key_token1] = ACTIONS(1026), - [aux_sym_xauth_location_token1] = ACTIONS(1026), + [ts_builtin_sym_end] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(1035), + [aux_sym_match_token1] = ACTIONS(1031), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1031), + [aux_sym_address_family_token1] = ACTIONS(1031), + [aux_sym_batch_mode_token1] = ACTIONS(1031), + [aux_sym_bind_address_token1] = ACTIONS(1031), + [aux_sym_bind_interface_token1] = ACTIONS(1031), + [aux_sym_canonical_domains_token1] = ACTIONS(1031), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1031), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1031), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1031), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1031), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1031), + [aux_sym_certificate_file_token1] = ACTIONS(1031), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1031), + [aux_sym_channel_timeout_token1] = ACTIONS(1031), + [aux_sym_check_host_ip_token1] = ACTIONS(1031), + [aux_sym_ciphers_token1] = ACTIONS(1031), + [aux_sym_cipher_token1] = ACTIONS(1033), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1031), + [aux_sym_compression_token1] = ACTIONS(1031), + [aux_sym_connection_attempts_token1] = ACTIONS(1031), + [aux_sym_connect_timeout_token1] = ACTIONS(1031), + [aux_sym_control_master_token1] = ACTIONS(1031), + [aux_sym_control_path_token1] = ACTIONS(1031), + [aux_sym_control_persist_token1] = ACTIONS(1031), + [aux_sym_dynamic_forward_token1] = ACTIONS(1031), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1031), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1031), + [aux_sym_escape_char_token1] = ACTIONS(1031), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1031), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1031), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1031), + [aux_sym_forward_agent_token1] = ACTIONS(1031), + [aux_sym_forward_x11_token1] = ACTIONS(1033), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1031), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1031), + [aux_sym_gateway_ports_token1] = ACTIONS(1031), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1031), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1031), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1031), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1031), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1031), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1031), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1031), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1031), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1031), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1031), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1031), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1031), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1031), + [aux_sym_host_key_alias_token1] = ACTIONS(1031), + [aux_sym_hostname_token1] = ACTIONS(1031), + [aux_sym_identities_only_token1] = ACTIONS(1031), + [aux_sym_identity_agent_token1] = ACTIONS(1031), + [aux_sym_identity_file_token1] = ACTIONS(1031), + [aux_sym_ignore_unknown_token1] = ACTIONS(1031), + [aux_sym_include_token1] = ACTIONS(1031), + [aux_sym_ip_qos_token1] = ACTIONS(1031), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1031), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1031), + [aux_sym_kex_algorithms_token1] = ACTIONS(1031), + [aux_sym_known_hosts_command_token1] = ACTIONS(1031), + [aux_sym_local_command_token1] = ACTIONS(1031), + [aux_sym_local_forward_token1] = ACTIONS(1031), + [aux_sym_log_level_token1] = ACTIONS(1031), + [aux_sym_log_verbose_token1] = ACTIONS(1031), + [aux_sym_macs_token1] = ACTIONS(1031), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1031), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1031), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1031), + [aux_sym_password_authentication_token1] = ACTIONS(1031), + [aux_sym_permit_local_command_token1] = ACTIONS(1031), + [aux_sym_permit_remote_open_token1] = ACTIONS(1031), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1031), + [aux_sym_port_token1] = ACTIONS(1031), + [aux_sym_preferred_authentications_token1] = ACTIONS(1031), + [aux_sym_protocol_token1] = ACTIONS(1031), + [aux_sym_proxy_command_token1] = ACTIONS(1031), + [aux_sym_proxy_jump_token1] = ACTIONS(1031), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1031), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1031), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1031), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1031), + [aux_sym_rekey_limit_token1] = ACTIONS(1031), + [aux_sym_remote_command_token1] = ACTIONS(1031), + [aux_sym_remote_forward_token1] = ACTIONS(1031), + [aux_sym_request_tty_token1] = ACTIONS(1031), + [aux_sym_required_rsa_size_token1] = ACTIONS(1031), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1031), + [aux_sym_security_key_provider_token1] = ACTIONS(1031), + [aux_sym_send_env_token1] = ACTIONS(1031), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1031), + [aux_sym_server_alive_interval_token1] = ACTIONS(1031), + [aux_sym_session_type_token1] = ACTIONS(1031), + [aux_sym_set_env_token1] = ACTIONS(1031), + [aux_sym_stdin_null_token1] = ACTIONS(1031), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1031), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1031), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1031), + [aux_sym_syslog_facility_token1] = ACTIONS(1031), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1031), + [aux_sym_keep_alive_token1] = ACTIONS(1031), + [aux_sym_tag_token1] = ACTIONS(1031), + [aux_sym_tunnel_token1] = ACTIONS(1033), + [aux_sym_tunnel_device_token1] = ACTIONS(1031), + [aux_sym_update_host_keys_token1] = ACTIONS(1031), + [aux_sym_use_keychain_token1] = ACTIONS(1031), + [aux_sym_use_roaming_token1] = ACTIONS(1031), + [aux_sym_user_token1] = ACTIONS(1033), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1031), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1031), + [aux_sym_visual_host_key_token1] = ACTIONS(1031), + [aux_sym_xauth_location_token1] = ACTIONS(1031), }, [79] = { - [ts_builtin_sym_end] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(1036), - [aux_sym_match_token1] = ACTIONS(1032), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1032), - [aux_sym_address_family_token1] = ACTIONS(1032), - [aux_sym_batch_mode_token1] = ACTIONS(1032), - [aux_sym_bind_address_token1] = ACTIONS(1032), - [aux_sym_bind_interface_token1] = ACTIONS(1032), - [aux_sym_canonical_domains_token1] = ACTIONS(1032), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1032), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1032), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1032), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1032), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1032), - [aux_sym_certificate_file_token1] = ACTIONS(1032), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1032), - [aux_sym_channel_timeout_token1] = ACTIONS(1032), - [aux_sym_check_host_ip_token1] = ACTIONS(1032), - [aux_sym_ciphers_token1] = ACTIONS(1032), - [aux_sym_cipher_token1] = ACTIONS(1034), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1032), - [aux_sym_compression_token1] = ACTIONS(1032), - [aux_sym_connection_attempts_token1] = ACTIONS(1032), - [aux_sym_connect_timeout_token1] = ACTIONS(1032), - [aux_sym_control_master_token1] = ACTIONS(1032), - [aux_sym_control_path_token1] = ACTIONS(1032), - [aux_sym_control_persist_token1] = ACTIONS(1032), - [aux_sym_dynamic_forward_token1] = ACTIONS(1032), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1032), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1032), - [aux_sym_escape_char_token1] = ACTIONS(1032), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1032), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1032), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1032), - [aux_sym_forward_agent_token1] = ACTIONS(1032), - [aux_sym_forward_x11_token1] = ACTIONS(1034), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1032), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1032), - [aux_sym_gateway_ports_token1] = ACTIONS(1032), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1032), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1032), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1032), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1032), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1032), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1032), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1032), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1032), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1032), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1032), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1032), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1032), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1032), - [aux_sym_host_key_alias_token1] = ACTIONS(1032), - [aux_sym_hostname_token1] = ACTIONS(1032), - [aux_sym_identities_only_token1] = ACTIONS(1032), - [aux_sym_identity_agent_token1] = ACTIONS(1032), - [aux_sym_identity_file_token1] = ACTIONS(1032), - [aux_sym_ignore_unknown_token1] = ACTIONS(1032), - [aux_sym_include_token1] = ACTIONS(1032), - [aux_sym_ip_qos_token1] = ACTIONS(1032), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1032), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1032), - [aux_sym_kex_algorithms_token1] = ACTIONS(1032), - [aux_sym_known_hosts_command_token1] = ACTIONS(1032), - [aux_sym_local_command_token1] = ACTIONS(1032), - [aux_sym_local_forward_token1] = ACTIONS(1032), - [aux_sym_log_level_token1] = ACTIONS(1032), - [aux_sym_log_verbose_token1] = ACTIONS(1032), - [aux_sym_macs_token1] = ACTIONS(1032), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1032), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1032), - [aux_sym_password_authentication_token1] = ACTIONS(1032), - [aux_sym_permit_local_command_token1] = ACTIONS(1032), - [aux_sym_permit_remote_open_token1] = ACTIONS(1032), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1032), - [aux_sym_port_token1] = ACTIONS(1032), - [aux_sym_preferred_authentications_token1] = ACTIONS(1032), - [aux_sym_protocol_token1] = ACTIONS(1032), - [aux_sym_proxy_command_token1] = ACTIONS(1032), - [aux_sym_proxy_jump_token1] = ACTIONS(1032), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1032), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1032), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1032), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1032), - [aux_sym_rekey_limit_token1] = ACTIONS(1032), - [aux_sym_remote_command_token1] = ACTIONS(1032), - [aux_sym_remote_forward_token1] = ACTIONS(1032), - [aux_sym_request_tty_token1] = ACTIONS(1032), - [aux_sym_required_rsa_size_token1] = ACTIONS(1032), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1032), - [aux_sym_security_key_provider_token1] = ACTIONS(1032), - [aux_sym_send_env_token1] = ACTIONS(1032), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1032), - [aux_sym_server_alive_interval_token1] = ACTIONS(1032), - [aux_sym_session_type_token1] = ACTIONS(1032), - [aux_sym_set_env_token1] = ACTIONS(1032), - [aux_sym_stdin_null_token1] = ACTIONS(1032), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1032), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1032), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1032), - [aux_sym_syslog_facility_token1] = ACTIONS(1032), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1032), - [aux_sym_keep_alive_token1] = ACTIONS(1032), - [aux_sym_tag_token1] = ACTIONS(1032), - [aux_sym_tunnel_token1] = ACTIONS(1034), - [aux_sym_tunnel_device_token1] = ACTIONS(1032), - [aux_sym_update_host_keys_token1] = ACTIONS(1032), - [aux_sym_use_keychain_token1] = ACTIONS(1032), - [aux_sym_use_roaming_token1] = ACTIONS(1032), - [aux_sym_user_token1] = ACTIONS(1034), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1032), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1032), - [aux_sym_visual_host_key_token1] = ACTIONS(1032), - [aux_sym_xauth_location_token1] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(1041), + [aux_sym_match_token1] = ACTIONS(1037), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1037), + [aux_sym_address_family_token1] = ACTIONS(1037), + [aux_sym_batch_mode_token1] = ACTIONS(1037), + [aux_sym_bind_address_token1] = ACTIONS(1037), + [aux_sym_bind_interface_token1] = ACTIONS(1037), + [aux_sym_canonical_domains_token1] = ACTIONS(1037), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1037), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1037), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1037), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1037), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1037), + [aux_sym_certificate_file_token1] = ACTIONS(1037), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1037), + [aux_sym_channel_timeout_token1] = ACTIONS(1037), + [aux_sym_check_host_ip_token1] = ACTIONS(1037), + [aux_sym_ciphers_token1] = ACTIONS(1037), + [aux_sym_cipher_token1] = ACTIONS(1039), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1037), + [aux_sym_compression_token1] = ACTIONS(1037), + [aux_sym_connection_attempts_token1] = ACTIONS(1037), + [aux_sym_connect_timeout_token1] = ACTIONS(1037), + [aux_sym_control_master_token1] = ACTIONS(1037), + [aux_sym_control_path_token1] = ACTIONS(1037), + [aux_sym_control_persist_token1] = ACTIONS(1037), + [aux_sym_dynamic_forward_token1] = ACTIONS(1037), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1037), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1037), + [aux_sym_escape_char_token1] = ACTIONS(1037), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1037), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1037), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1037), + [aux_sym_forward_agent_token1] = ACTIONS(1037), + [aux_sym_forward_x11_token1] = ACTIONS(1039), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1037), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1037), + [aux_sym_gateway_ports_token1] = ACTIONS(1037), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1037), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1037), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1037), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1037), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1037), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1037), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1037), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1037), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1037), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1037), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1037), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1037), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1037), + [aux_sym_host_key_alias_token1] = ACTIONS(1037), + [aux_sym_hostname_token1] = ACTIONS(1037), + [aux_sym_identities_only_token1] = ACTIONS(1037), + [aux_sym_identity_agent_token1] = ACTIONS(1037), + [aux_sym_identity_file_token1] = ACTIONS(1037), + [aux_sym_ignore_unknown_token1] = ACTIONS(1037), + [aux_sym_include_token1] = ACTIONS(1037), + [aux_sym_ip_qos_token1] = ACTIONS(1037), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1037), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1037), + [aux_sym_kex_algorithms_token1] = ACTIONS(1037), + [aux_sym_known_hosts_command_token1] = ACTIONS(1037), + [aux_sym_local_command_token1] = ACTIONS(1037), + [aux_sym_local_forward_token1] = ACTIONS(1037), + [aux_sym_log_level_token1] = ACTIONS(1037), + [aux_sym_log_verbose_token1] = ACTIONS(1037), + [aux_sym_macs_token1] = ACTIONS(1037), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1037), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1037), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1037), + [aux_sym_password_authentication_token1] = ACTIONS(1037), + [aux_sym_permit_local_command_token1] = ACTIONS(1037), + [aux_sym_permit_remote_open_token1] = ACTIONS(1037), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1037), + [aux_sym_port_token1] = ACTIONS(1037), + [aux_sym_preferred_authentications_token1] = ACTIONS(1037), + [aux_sym_protocol_token1] = ACTIONS(1037), + [aux_sym_proxy_command_token1] = ACTIONS(1037), + [aux_sym_proxy_jump_token1] = ACTIONS(1037), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1037), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1037), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1037), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1037), + [aux_sym_rekey_limit_token1] = ACTIONS(1037), + [aux_sym_remote_command_token1] = ACTIONS(1037), + [aux_sym_remote_forward_token1] = ACTIONS(1037), + [aux_sym_request_tty_token1] = ACTIONS(1037), + [aux_sym_required_rsa_size_token1] = ACTIONS(1037), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1037), + [aux_sym_security_key_provider_token1] = ACTIONS(1037), + [aux_sym_send_env_token1] = ACTIONS(1037), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1037), + [aux_sym_server_alive_interval_token1] = ACTIONS(1037), + [aux_sym_session_type_token1] = ACTIONS(1037), + [aux_sym_set_env_token1] = ACTIONS(1037), + [aux_sym_stdin_null_token1] = ACTIONS(1037), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1037), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1037), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1037), + [aux_sym_syslog_facility_token1] = ACTIONS(1037), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1037), + [aux_sym_keep_alive_token1] = ACTIONS(1037), + [aux_sym_tag_token1] = ACTIONS(1037), + [aux_sym_tunnel_token1] = ACTIONS(1039), + [aux_sym_tunnel_device_token1] = ACTIONS(1037), + [aux_sym_update_host_keys_token1] = ACTIONS(1037), + [aux_sym_use_keychain_token1] = ACTIONS(1037), + [aux_sym_use_roaming_token1] = ACTIONS(1037), + [aux_sym_user_token1] = ACTIONS(1039), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1037), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1037), + [aux_sym_visual_host_key_token1] = ACTIONS(1037), + [aux_sym_xauth_location_token1] = ACTIONS(1037), }, [80] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1040), - [anon_sym_DQUOTE] = ACTIONS(1042), - [aux_sym_match_token1] = ACTIONS(1038), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1038), - [aux_sym_address_family_token1] = ACTIONS(1038), - [aux_sym_batch_mode_token1] = ACTIONS(1038), - [aux_sym_bind_address_token1] = ACTIONS(1038), - [aux_sym_bind_interface_token1] = ACTIONS(1038), - [aux_sym_canonical_domains_token1] = ACTIONS(1038), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1038), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1038), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1038), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1038), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1038), - [aux_sym_certificate_file_token1] = ACTIONS(1038), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1038), - [aux_sym_channel_timeout_token1] = ACTIONS(1038), - [aux_sym_check_host_ip_token1] = ACTIONS(1038), - [aux_sym_ciphers_token1] = ACTIONS(1038), - [aux_sym_cipher_token1] = ACTIONS(1040), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1038), - [aux_sym_compression_token1] = ACTIONS(1038), - [aux_sym_connection_attempts_token1] = ACTIONS(1038), - [aux_sym_connect_timeout_token1] = ACTIONS(1038), - [aux_sym_control_master_token1] = ACTIONS(1038), - [aux_sym_control_path_token1] = ACTIONS(1038), - [aux_sym_control_persist_token1] = ACTIONS(1038), - [aux_sym_dynamic_forward_token1] = ACTIONS(1038), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1038), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1038), - [aux_sym_escape_char_token1] = ACTIONS(1038), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1038), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1038), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1038), - [aux_sym_forward_agent_token1] = ACTIONS(1038), - [aux_sym_forward_x11_token1] = ACTIONS(1040), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1038), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1038), - [aux_sym_gateway_ports_token1] = ACTIONS(1038), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1038), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1038), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1038), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1038), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1038), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1038), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1038), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1038), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1038), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1038), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1038), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1038), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1038), - [aux_sym_host_key_alias_token1] = ACTIONS(1038), - [aux_sym_hostname_token1] = ACTIONS(1038), - [aux_sym_identities_only_token1] = ACTIONS(1038), - [aux_sym_identity_agent_token1] = ACTIONS(1038), - [aux_sym_identity_file_token1] = ACTIONS(1038), - [aux_sym_ignore_unknown_token1] = ACTIONS(1038), - [aux_sym_include_token1] = ACTIONS(1038), - [aux_sym_ip_qos_token1] = ACTIONS(1038), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1038), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1038), - [aux_sym_kex_algorithms_token1] = ACTIONS(1038), - [aux_sym_known_hosts_command_token1] = ACTIONS(1038), - [aux_sym_local_command_token1] = ACTIONS(1038), - [aux_sym_local_forward_token1] = ACTIONS(1038), - [aux_sym_log_level_token1] = ACTIONS(1038), - [aux_sym_log_verbose_token1] = ACTIONS(1038), - [aux_sym_macs_token1] = ACTIONS(1038), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1038), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1038), - [aux_sym_password_authentication_token1] = ACTIONS(1038), - [aux_sym_permit_local_command_token1] = ACTIONS(1038), - [aux_sym_permit_remote_open_token1] = ACTIONS(1038), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1038), - [aux_sym_port_token1] = ACTIONS(1038), - [aux_sym_preferred_authentications_token1] = ACTIONS(1038), - [aux_sym_protocol_token1] = ACTIONS(1038), - [aux_sym_proxy_command_token1] = ACTIONS(1038), - [aux_sym_proxy_jump_token1] = ACTIONS(1038), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1038), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1038), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1038), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1038), - [aux_sym_rekey_limit_token1] = ACTIONS(1038), - [aux_sym_remote_command_token1] = ACTIONS(1038), - [aux_sym_remote_forward_token1] = ACTIONS(1038), - [aux_sym_request_tty_token1] = ACTIONS(1038), - [aux_sym_required_rsa_size_token1] = ACTIONS(1038), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1038), - [aux_sym_security_key_provider_token1] = ACTIONS(1038), - [aux_sym_send_env_token1] = ACTIONS(1038), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1038), - [aux_sym_server_alive_interval_token1] = ACTIONS(1038), - [aux_sym_session_type_token1] = ACTIONS(1038), - [aux_sym_set_env_token1] = ACTIONS(1038), - [aux_sym_stdin_null_token1] = ACTIONS(1038), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1038), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1038), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1038), - [aux_sym_syslog_facility_token1] = ACTIONS(1038), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1038), - [aux_sym_keep_alive_token1] = ACTIONS(1038), - [aux_sym_tag_token1] = ACTIONS(1038), - [aux_sym_tunnel_token1] = ACTIONS(1040), - [aux_sym_tunnel_device_token1] = ACTIONS(1038), - [aux_sym_update_host_keys_token1] = ACTIONS(1038), - [aux_sym_use_keychain_token1] = ACTIONS(1038), - [aux_sym_use_roaming_token1] = ACTIONS(1038), - [aux_sym_user_token1] = ACTIONS(1040), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1038), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1038), - [aux_sym_visual_host_key_token1] = ACTIONS(1038), - [aux_sym_xauth_location_token1] = ACTIONS(1038), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1045), + [anon_sym_DQUOTE] = ACTIONS(1047), + [aux_sym_match_token1] = ACTIONS(1043), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1043), + [aux_sym_address_family_token1] = ACTIONS(1043), + [aux_sym_batch_mode_token1] = ACTIONS(1043), + [aux_sym_bind_address_token1] = ACTIONS(1043), + [aux_sym_bind_interface_token1] = ACTIONS(1043), + [aux_sym_canonical_domains_token1] = ACTIONS(1043), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1043), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1043), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1043), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1043), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1043), + [aux_sym_certificate_file_token1] = ACTIONS(1043), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1043), + [aux_sym_channel_timeout_token1] = ACTIONS(1043), + [aux_sym_check_host_ip_token1] = ACTIONS(1043), + [aux_sym_ciphers_token1] = ACTIONS(1043), + [aux_sym_cipher_token1] = ACTIONS(1045), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1043), + [aux_sym_compression_token1] = ACTIONS(1043), + [aux_sym_connection_attempts_token1] = ACTIONS(1043), + [aux_sym_connect_timeout_token1] = ACTIONS(1043), + [aux_sym_control_master_token1] = ACTIONS(1043), + [aux_sym_control_path_token1] = ACTIONS(1043), + [aux_sym_control_persist_token1] = ACTIONS(1043), + [aux_sym_dynamic_forward_token1] = ACTIONS(1043), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1043), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1043), + [aux_sym_escape_char_token1] = ACTIONS(1043), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1043), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1043), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1043), + [aux_sym_forward_agent_token1] = ACTIONS(1043), + [aux_sym_forward_x11_token1] = ACTIONS(1045), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1043), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1043), + [aux_sym_gateway_ports_token1] = ACTIONS(1043), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1043), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1043), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1043), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1043), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1043), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1043), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1043), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1043), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1043), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1043), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1043), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1043), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1043), + [aux_sym_host_key_alias_token1] = ACTIONS(1043), + [aux_sym_hostname_token1] = ACTIONS(1043), + [aux_sym_identities_only_token1] = ACTIONS(1043), + [aux_sym_identity_agent_token1] = ACTIONS(1043), + [aux_sym_identity_file_token1] = ACTIONS(1043), + [aux_sym_ignore_unknown_token1] = ACTIONS(1043), + [aux_sym_include_token1] = ACTIONS(1043), + [aux_sym_ip_qos_token1] = ACTIONS(1043), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1043), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1043), + [aux_sym_kex_algorithms_token1] = ACTIONS(1043), + [aux_sym_known_hosts_command_token1] = ACTIONS(1043), + [aux_sym_local_command_token1] = ACTIONS(1043), + [aux_sym_local_forward_token1] = ACTIONS(1043), + [aux_sym_log_level_token1] = ACTIONS(1043), + [aux_sym_log_verbose_token1] = ACTIONS(1043), + [aux_sym_macs_token1] = ACTIONS(1043), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1043), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1043), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1043), + [aux_sym_password_authentication_token1] = ACTIONS(1043), + [aux_sym_permit_local_command_token1] = ACTIONS(1043), + [aux_sym_permit_remote_open_token1] = ACTIONS(1043), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1043), + [aux_sym_port_token1] = ACTIONS(1043), + [aux_sym_preferred_authentications_token1] = ACTIONS(1043), + [aux_sym_protocol_token1] = ACTIONS(1043), + [aux_sym_proxy_command_token1] = ACTIONS(1043), + [aux_sym_proxy_jump_token1] = ACTIONS(1043), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1043), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1043), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1043), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1043), + [aux_sym_rekey_limit_token1] = ACTIONS(1043), + [aux_sym_remote_command_token1] = ACTIONS(1043), + [aux_sym_remote_forward_token1] = ACTIONS(1043), + [aux_sym_request_tty_token1] = ACTIONS(1043), + [aux_sym_required_rsa_size_token1] = ACTIONS(1043), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1043), + [aux_sym_security_key_provider_token1] = ACTIONS(1043), + [aux_sym_send_env_token1] = ACTIONS(1043), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1043), + [aux_sym_server_alive_interval_token1] = ACTIONS(1043), + [aux_sym_session_type_token1] = ACTIONS(1043), + [aux_sym_set_env_token1] = ACTIONS(1043), + [aux_sym_stdin_null_token1] = ACTIONS(1043), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1043), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1043), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1043), + [aux_sym_syslog_facility_token1] = ACTIONS(1043), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1043), + [aux_sym_keep_alive_token1] = ACTIONS(1043), + [aux_sym_tag_token1] = ACTIONS(1043), + [aux_sym_tunnel_token1] = ACTIONS(1045), + [aux_sym_tunnel_device_token1] = ACTIONS(1043), + [aux_sym_update_host_keys_token1] = ACTIONS(1043), + [aux_sym_use_keychain_token1] = ACTIONS(1043), + [aux_sym_use_roaming_token1] = ACTIONS(1043), + [aux_sym_user_token1] = ACTIONS(1045), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1043), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1043), + [aux_sym_visual_host_key_token1] = ACTIONS(1043), + [aux_sym_xauth_location_token1] = ACTIONS(1043), }, [81] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1046), - [anon_sym_DQUOTE] = ACTIONS(1048), - [aux_sym_match_token1] = ACTIONS(1044), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1044), - [aux_sym_address_family_token1] = ACTIONS(1044), - [aux_sym_batch_mode_token1] = ACTIONS(1044), - [aux_sym_bind_address_token1] = ACTIONS(1044), - [aux_sym_bind_interface_token1] = ACTIONS(1044), - [aux_sym_canonical_domains_token1] = ACTIONS(1044), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1044), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1044), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1044), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1044), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1044), - [aux_sym_certificate_file_token1] = ACTIONS(1044), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1044), - [aux_sym_channel_timeout_token1] = ACTIONS(1044), - [aux_sym_check_host_ip_token1] = ACTIONS(1044), - [aux_sym_ciphers_token1] = ACTIONS(1044), - [aux_sym_cipher_token1] = ACTIONS(1046), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1044), - [aux_sym_compression_token1] = ACTIONS(1044), - [aux_sym_connection_attempts_token1] = ACTIONS(1044), - [aux_sym_connect_timeout_token1] = ACTIONS(1044), - [aux_sym_control_master_token1] = ACTIONS(1044), - [aux_sym_control_path_token1] = ACTIONS(1044), - [aux_sym_control_persist_token1] = ACTIONS(1044), - [aux_sym_dynamic_forward_token1] = ACTIONS(1044), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1044), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1044), - [aux_sym_escape_char_token1] = ACTIONS(1044), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1044), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1044), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1044), - [aux_sym_forward_agent_token1] = ACTIONS(1044), - [aux_sym_forward_x11_token1] = ACTIONS(1046), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1044), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1044), - [aux_sym_gateway_ports_token1] = ACTIONS(1044), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1044), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1044), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1044), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1044), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1044), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1044), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1044), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1044), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1044), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1044), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1044), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1044), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1044), - [aux_sym_host_key_alias_token1] = ACTIONS(1044), - [aux_sym_hostname_token1] = ACTIONS(1044), - [aux_sym_identities_only_token1] = ACTIONS(1044), - [aux_sym_identity_agent_token1] = ACTIONS(1044), - [aux_sym_identity_file_token1] = ACTIONS(1044), - [aux_sym_ignore_unknown_token1] = ACTIONS(1044), - [aux_sym_include_token1] = ACTIONS(1044), - [aux_sym_ip_qos_token1] = ACTIONS(1044), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1044), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1044), - [aux_sym_kex_algorithms_token1] = ACTIONS(1044), - [aux_sym_known_hosts_command_token1] = ACTIONS(1044), - [aux_sym_local_command_token1] = ACTIONS(1044), - [aux_sym_local_forward_token1] = ACTIONS(1044), - [aux_sym_log_level_token1] = ACTIONS(1044), - [aux_sym_log_verbose_token1] = ACTIONS(1044), - [aux_sym_macs_token1] = ACTIONS(1044), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1044), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1044), - [aux_sym_password_authentication_token1] = ACTIONS(1044), - [aux_sym_permit_local_command_token1] = ACTIONS(1044), - [aux_sym_permit_remote_open_token1] = ACTIONS(1044), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1044), - [aux_sym_port_token1] = ACTIONS(1044), - [aux_sym_preferred_authentications_token1] = ACTIONS(1044), - [aux_sym_protocol_token1] = ACTIONS(1044), - [aux_sym_proxy_command_token1] = ACTIONS(1044), - [aux_sym_proxy_jump_token1] = ACTIONS(1044), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1044), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1044), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1044), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1044), - [aux_sym_rekey_limit_token1] = ACTIONS(1044), - [aux_sym_remote_command_token1] = ACTIONS(1044), - [aux_sym_remote_forward_token1] = ACTIONS(1044), - [aux_sym_request_tty_token1] = ACTIONS(1044), - [aux_sym_required_rsa_size_token1] = ACTIONS(1044), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1044), - [aux_sym_security_key_provider_token1] = ACTIONS(1044), - [aux_sym_send_env_token1] = ACTIONS(1044), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1044), - [aux_sym_server_alive_interval_token1] = ACTIONS(1044), - [aux_sym_session_type_token1] = ACTIONS(1044), - [aux_sym_set_env_token1] = ACTIONS(1044), - [aux_sym_stdin_null_token1] = ACTIONS(1044), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1044), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1044), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1044), - [aux_sym_syslog_facility_token1] = ACTIONS(1044), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1044), - [aux_sym_keep_alive_token1] = ACTIONS(1044), - [aux_sym_tag_token1] = ACTIONS(1044), - [aux_sym_tunnel_token1] = ACTIONS(1046), - [aux_sym_tunnel_device_token1] = ACTIONS(1044), - [aux_sym_update_host_keys_token1] = ACTIONS(1044), - [aux_sym_use_keychain_token1] = ACTIONS(1044), - [aux_sym_use_roaming_token1] = ACTIONS(1044), - [aux_sym_user_token1] = ACTIONS(1046), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1044), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1044), - [aux_sym_visual_host_key_token1] = ACTIONS(1044), - [aux_sym_xauth_location_token1] = ACTIONS(1044), + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1051), + [anon_sym_DQUOTE] = ACTIONS(1053), + [aux_sym_match_token1] = ACTIONS(1049), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1049), + [aux_sym_address_family_token1] = ACTIONS(1049), + [aux_sym_batch_mode_token1] = ACTIONS(1049), + [aux_sym_bind_address_token1] = ACTIONS(1049), + [aux_sym_bind_interface_token1] = ACTIONS(1049), + [aux_sym_canonical_domains_token1] = ACTIONS(1049), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1049), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1049), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1049), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1049), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1049), + [aux_sym_certificate_file_token1] = ACTIONS(1049), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1049), + [aux_sym_channel_timeout_token1] = ACTIONS(1049), + [aux_sym_check_host_ip_token1] = ACTIONS(1049), + [aux_sym_ciphers_token1] = ACTIONS(1049), + [aux_sym_cipher_token1] = ACTIONS(1051), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1049), + [aux_sym_compression_token1] = ACTIONS(1049), + [aux_sym_connection_attempts_token1] = ACTIONS(1049), + [aux_sym_connect_timeout_token1] = ACTIONS(1049), + [aux_sym_control_master_token1] = ACTIONS(1049), + [aux_sym_control_path_token1] = ACTIONS(1049), + [aux_sym_control_persist_token1] = ACTIONS(1049), + [aux_sym_dynamic_forward_token1] = ACTIONS(1049), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1049), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1049), + [aux_sym_escape_char_token1] = ACTIONS(1049), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1049), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1049), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1049), + [aux_sym_forward_agent_token1] = ACTIONS(1049), + [aux_sym_forward_x11_token1] = ACTIONS(1051), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1049), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1049), + [aux_sym_gateway_ports_token1] = ACTIONS(1049), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1049), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1049), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1049), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1049), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1049), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1049), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1049), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1049), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1049), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1049), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1049), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1049), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1049), + [aux_sym_host_key_alias_token1] = ACTIONS(1049), + [aux_sym_hostname_token1] = ACTIONS(1049), + [aux_sym_identities_only_token1] = ACTIONS(1049), + [aux_sym_identity_agent_token1] = ACTIONS(1049), + [aux_sym_identity_file_token1] = ACTIONS(1049), + [aux_sym_ignore_unknown_token1] = ACTIONS(1049), + [aux_sym_include_token1] = ACTIONS(1049), + [aux_sym_ip_qos_token1] = ACTIONS(1049), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1049), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1049), + [aux_sym_kex_algorithms_token1] = ACTIONS(1049), + [aux_sym_known_hosts_command_token1] = ACTIONS(1049), + [aux_sym_local_command_token1] = ACTIONS(1049), + [aux_sym_local_forward_token1] = ACTIONS(1049), + [aux_sym_log_level_token1] = ACTIONS(1049), + [aux_sym_log_verbose_token1] = ACTIONS(1049), + [aux_sym_macs_token1] = ACTIONS(1049), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1049), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1049), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1049), + [aux_sym_password_authentication_token1] = ACTIONS(1049), + [aux_sym_permit_local_command_token1] = ACTIONS(1049), + [aux_sym_permit_remote_open_token1] = ACTIONS(1049), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1049), + [aux_sym_port_token1] = ACTIONS(1049), + [aux_sym_preferred_authentications_token1] = ACTIONS(1049), + [aux_sym_protocol_token1] = ACTIONS(1049), + [aux_sym_proxy_command_token1] = ACTIONS(1049), + [aux_sym_proxy_jump_token1] = ACTIONS(1049), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1049), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1049), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1049), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1049), + [aux_sym_rekey_limit_token1] = ACTIONS(1049), + [aux_sym_remote_command_token1] = ACTIONS(1049), + [aux_sym_remote_forward_token1] = ACTIONS(1049), + [aux_sym_request_tty_token1] = ACTIONS(1049), + [aux_sym_required_rsa_size_token1] = ACTIONS(1049), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1049), + [aux_sym_security_key_provider_token1] = ACTIONS(1049), + [aux_sym_send_env_token1] = ACTIONS(1049), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1049), + [aux_sym_server_alive_interval_token1] = ACTIONS(1049), + [aux_sym_session_type_token1] = ACTIONS(1049), + [aux_sym_set_env_token1] = ACTIONS(1049), + [aux_sym_stdin_null_token1] = ACTIONS(1049), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1049), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1049), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1049), + [aux_sym_syslog_facility_token1] = ACTIONS(1049), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1049), + [aux_sym_keep_alive_token1] = ACTIONS(1049), + [aux_sym_tag_token1] = ACTIONS(1049), + [aux_sym_tunnel_token1] = ACTIONS(1051), + [aux_sym_tunnel_device_token1] = ACTIONS(1049), + [aux_sym_update_host_keys_token1] = ACTIONS(1049), + [aux_sym_use_keychain_token1] = ACTIONS(1049), + [aux_sym_use_roaming_token1] = ACTIONS(1049), + [aux_sym_user_token1] = ACTIONS(1051), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1049), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1049), + [aux_sym_visual_host_key_token1] = ACTIONS(1049), + [aux_sym_xauth_location_token1] = ACTIONS(1049), }, [82] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1052), - [anon_sym_DQUOTE] = ACTIONS(1054), - [aux_sym_match_token1] = ACTIONS(1050), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1050), - [aux_sym_address_family_token1] = ACTIONS(1050), - [aux_sym_batch_mode_token1] = ACTIONS(1050), - [aux_sym_bind_address_token1] = ACTIONS(1050), - [aux_sym_bind_interface_token1] = ACTIONS(1050), - [aux_sym_canonical_domains_token1] = ACTIONS(1050), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1050), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1050), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1050), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1050), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1050), - [aux_sym_certificate_file_token1] = ACTIONS(1050), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1050), - [aux_sym_channel_timeout_token1] = ACTIONS(1050), - [aux_sym_check_host_ip_token1] = ACTIONS(1050), - [aux_sym_ciphers_token1] = ACTIONS(1050), - [aux_sym_cipher_token1] = ACTIONS(1052), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1050), - [aux_sym_compression_token1] = ACTIONS(1050), - [aux_sym_connection_attempts_token1] = ACTIONS(1050), - [aux_sym_connect_timeout_token1] = ACTIONS(1050), - [aux_sym_control_master_token1] = ACTIONS(1050), - [aux_sym_control_path_token1] = ACTIONS(1050), - [aux_sym_control_persist_token1] = ACTIONS(1050), - [aux_sym_dynamic_forward_token1] = ACTIONS(1050), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1050), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1050), - [aux_sym_escape_char_token1] = ACTIONS(1050), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1050), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1050), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1050), - [aux_sym_forward_agent_token1] = ACTIONS(1050), - [aux_sym_forward_x11_token1] = ACTIONS(1052), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1050), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1050), - [aux_sym_gateway_ports_token1] = ACTIONS(1050), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1050), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1050), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1050), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1050), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1050), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1050), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1050), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1050), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1050), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1050), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1050), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1050), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1050), - [aux_sym_host_key_alias_token1] = ACTIONS(1050), - [aux_sym_hostname_token1] = ACTIONS(1050), - [aux_sym_identities_only_token1] = ACTIONS(1050), - [aux_sym_identity_agent_token1] = ACTIONS(1050), - [aux_sym_identity_file_token1] = ACTIONS(1050), - [aux_sym_ignore_unknown_token1] = ACTIONS(1050), - [aux_sym_include_token1] = ACTIONS(1050), - [aux_sym_ip_qos_token1] = ACTIONS(1050), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1050), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1050), - [aux_sym_kex_algorithms_token1] = ACTIONS(1050), - [aux_sym_known_hosts_command_token1] = ACTIONS(1050), - [aux_sym_local_command_token1] = ACTIONS(1050), - [aux_sym_local_forward_token1] = ACTIONS(1050), - [aux_sym_log_level_token1] = ACTIONS(1050), - [aux_sym_log_verbose_token1] = ACTIONS(1050), - [aux_sym_macs_token1] = ACTIONS(1050), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1050), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1050), - [aux_sym_password_authentication_token1] = ACTIONS(1050), - [aux_sym_permit_local_command_token1] = ACTIONS(1050), - [aux_sym_permit_remote_open_token1] = ACTIONS(1050), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1050), - [aux_sym_port_token1] = ACTIONS(1050), - [aux_sym_preferred_authentications_token1] = ACTIONS(1050), - [aux_sym_protocol_token1] = ACTIONS(1050), - [aux_sym_proxy_command_token1] = ACTIONS(1050), - [aux_sym_proxy_jump_token1] = ACTIONS(1050), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1050), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1050), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1050), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1050), - [aux_sym_rekey_limit_token1] = ACTIONS(1050), - [aux_sym_remote_command_token1] = ACTIONS(1050), - [aux_sym_remote_forward_token1] = ACTIONS(1050), - [aux_sym_request_tty_token1] = ACTIONS(1050), - [aux_sym_required_rsa_size_token1] = ACTIONS(1050), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1050), - [aux_sym_security_key_provider_token1] = ACTIONS(1050), - [aux_sym_send_env_token1] = ACTIONS(1050), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1050), - [aux_sym_server_alive_interval_token1] = ACTIONS(1050), - [aux_sym_session_type_token1] = ACTIONS(1050), - [aux_sym_set_env_token1] = ACTIONS(1050), - [aux_sym_stdin_null_token1] = ACTIONS(1050), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1050), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1050), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1050), - [aux_sym_syslog_facility_token1] = ACTIONS(1050), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1050), - [aux_sym_keep_alive_token1] = ACTIONS(1050), - [aux_sym_tag_token1] = ACTIONS(1050), - [aux_sym_tunnel_token1] = ACTIONS(1052), - [aux_sym_tunnel_device_token1] = ACTIONS(1050), - [aux_sym_update_host_keys_token1] = ACTIONS(1050), - [aux_sym_use_keychain_token1] = ACTIONS(1050), - [aux_sym_use_roaming_token1] = ACTIONS(1050), - [aux_sym_user_token1] = ACTIONS(1052), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1050), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1050), - [aux_sym_visual_host_key_token1] = ACTIONS(1050), - [aux_sym_xauth_location_token1] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1055), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1057), + [anon_sym_DQUOTE] = ACTIONS(1059), + [aux_sym_match_token1] = ACTIONS(1055), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1055), + [aux_sym_address_family_token1] = ACTIONS(1055), + [aux_sym_batch_mode_token1] = ACTIONS(1055), + [aux_sym_bind_address_token1] = ACTIONS(1055), + [aux_sym_bind_interface_token1] = ACTIONS(1055), + [aux_sym_canonical_domains_token1] = ACTIONS(1055), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1055), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1055), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1055), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1055), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1055), + [aux_sym_certificate_file_token1] = ACTIONS(1055), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1055), + [aux_sym_channel_timeout_token1] = ACTIONS(1055), + [aux_sym_check_host_ip_token1] = ACTIONS(1055), + [aux_sym_ciphers_token1] = ACTIONS(1055), + [aux_sym_cipher_token1] = ACTIONS(1057), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1055), + [aux_sym_compression_token1] = ACTIONS(1055), + [aux_sym_connection_attempts_token1] = ACTIONS(1055), + [aux_sym_connect_timeout_token1] = ACTIONS(1055), + [aux_sym_control_master_token1] = ACTIONS(1055), + [aux_sym_control_path_token1] = ACTIONS(1055), + [aux_sym_control_persist_token1] = ACTIONS(1055), + [aux_sym_dynamic_forward_token1] = ACTIONS(1055), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1055), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1055), + [aux_sym_escape_char_token1] = ACTIONS(1055), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1055), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1055), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1055), + [aux_sym_forward_agent_token1] = ACTIONS(1055), + [aux_sym_forward_x11_token1] = ACTIONS(1057), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1055), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1055), + [aux_sym_gateway_ports_token1] = ACTIONS(1055), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1055), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1055), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1055), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1055), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1055), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1055), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1055), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1055), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1055), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1055), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1055), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1055), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1055), + [aux_sym_host_key_alias_token1] = ACTIONS(1055), + [aux_sym_hostname_token1] = ACTIONS(1055), + [aux_sym_identities_only_token1] = ACTIONS(1055), + [aux_sym_identity_agent_token1] = ACTIONS(1055), + [aux_sym_identity_file_token1] = ACTIONS(1055), + [aux_sym_ignore_unknown_token1] = ACTIONS(1055), + [aux_sym_include_token1] = ACTIONS(1055), + [aux_sym_ip_qos_token1] = ACTIONS(1055), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1055), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1055), + [aux_sym_kex_algorithms_token1] = ACTIONS(1055), + [aux_sym_known_hosts_command_token1] = ACTIONS(1055), + [aux_sym_local_command_token1] = ACTIONS(1055), + [aux_sym_local_forward_token1] = ACTIONS(1055), + [aux_sym_log_level_token1] = ACTIONS(1055), + [aux_sym_log_verbose_token1] = ACTIONS(1055), + [aux_sym_macs_token1] = ACTIONS(1055), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1055), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1055), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1055), + [aux_sym_password_authentication_token1] = ACTIONS(1055), + [aux_sym_permit_local_command_token1] = ACTIONS(1055), + [aux_sym_permit_remote_open_token1] = ACTIONS(1055), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1055), + [aux_sym_port_token1] = ACTIONS(1055), + [aux_sym_preferred_authentications_token1] = ACTIONS(1055), + [aux_sym_protocol_token1] = ACTIONS(1055), + [aux_sym_proxy_command_token1] = ACTIONS(1055), + [aux_sym_proxy_jump_token1] = ACTIONS(1055), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1055), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1055), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1055), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1055), + [aux_sym_rekey_limit_token1] = ACTIONS(1055), + [aux_sym_remote_command_token1] = ACTIONS(1055), + [aux_sym_remote_forward_token1] = ACTIONS(1055), + [aux_sym_request_tty_token1] = ACTIONS(1055), + [aux_sym_required_rsa_size_token1] = ACTIONS(1055), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1055), + [aux_sym_security_key_provider_token1] = ACTIONS(1055), + [aux_sym_send_env_token1] = ACTIONS(1055), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1055), + [aux_sym_server_alive_interval_token1] = ACTIONS(1055), + [aux_sym_session_type_token1] = ACTIONS(1055), + [aux_sym_set_env_token1] = ACTIONS(1055), + [aux_sym_stdin_null_token1] = ACTIONS(1055), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1055), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1055), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1055), + [aux_sym_syslog_facility_token1] = ACTIONS(1055), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1055), + [aux_sym_keep_alive_token1] = ACTIONS(1055), + [aux_sym_tag_token1] = ACTIONS(1055), + [aux_sym_tunnel_token1] = ACTIONS(1057), + [aux_sym_tunnel_device_token1] = ACTIONS(1055), + [aux_sym_update_host_keys_token1] = ACTIONS(1055), + [aux_sym_use_keychain_token1] = ACTIONS(1055), + [aux_sym_use_roaming_token1] = ACTIONS(1055), + [aux_sym_user_token1] = ACTIONS(1057), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1055), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1055), + [aux_sym_visual_host_key_token1] = ACTIONS(1055), + [aux_sym_xauth_location_token1] = ACTIONS(1055), }, [83] = { - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(1060), - [aux_sym_match_token1] = ACTIONS(1056), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1056), - [aux_sym_address_family_token1] = ACTIONS(1056), - [aux_sym_batch_mode_token1] = ACTIONS(1056), - [aux_sym_bind_address_token1] = ACTIONS(1056), - [aux_sym_bind_interface_token1] = ACTIONS(1056), - [aux_sym_canonical_domains_token1] = ACTIONS(1056), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1056), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1056), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1056), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1056), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1056), - [aux_sym_certificate_file_token1] = ACTIONS(1056), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1056), - [aux_sym_channel_timeout_token1] = ACTIONS(1056), - [aux_sym_check_host_ip_token1] = ACTIONS(1056), - [aux_sym_ciphers_token1] = ACTIONS(1056), - [aux_sym_cipher_token1] = ACTIONS(1058), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1056), - [aux_sym_compression_token1] = ACTIONS(1056), - [aux_sym_connection_attempts_token1] = ACTIONS(1056), - [aux_sym_connect_timeout_token1] = ACTIONS(1056), - [aux_sym_control_master_token1] = ACTIONS(1056), - [aux_sym_control_path_token1] = ACTIONS(1056), - [aux_sym_control_persist_token1] = ACTIONS(1056), - [aux_sym_dynamic_forward_token1] = ACTIONS(1056), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1056), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1056), - [aux_sym_escape_char_token1] = ACTIONS(1056), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1056), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1056), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1056), - [aux_sym_forward_agent_token1] = ACTIONS(1056), - [aux_sym_forward_x11_token1] = ACTIONS(1058), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1056), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1056), - [aux_sym_gateway_ports_token1] = ACTIONS(1056), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1056), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1056), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1056), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1056), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1056), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1056), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1056), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1056), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1056), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1056), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1056), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1056), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1056), - [aux_sym_host_key_alias_token1] = ACTIONS(1056), - [aux_sym_hostname_token1] = ACTIONS(1056), - [aux_sym_identities_only_token1] = ACTIONS(1056), - [aux_sym_identity_agent_token1] = ACTIONS(1056), - [aux_sym_identity_file_token1] = ACTIONS(1056), - [aux_sym_ignore_unknown_token1] = ACTIONS(1056), - [aux_sym_include_token1] = ACTIONS(1056), - [aux_sym_ip_qos_token1] = ACTIONS(1056), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1056), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1056), - [aux_sym_kex_algorithms_token1] = ACTIONS(1056), - [aux_sym_known_hosts_command_token1] = ACTIONS(1056), - [aux_sym_local_command_token1] = ACTIONS(1056), - [aux_sym_local_forward_token1] = ACTIONS(1056), - [aux_sym_log_level_token1] = ACTIONS(1056), - [aux_sym_log_verbose_token1] = ACTIONS(1056), - [aux_sym_macs_token1] = ACTIONS(1056), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1056), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1056), - [aux_sym_password_authentication_token1] = ACTIONS(1056), - [aux_sym_permit_local_command_token1] = ACTIONS(1056), - [aux_sym_permit_remote_open_token1] = ACTIONS(1056), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1056), - [aux_sym_port_token1] = ACTIONS(1056), - [aux_sym_preferred_authentications_token1] = ACTIONS(1056), - [aux_sym_protocol_token1] = ACTIONS(1056), - [aux_sym_proxy_command_token1] = ACTIONS(1056), - [aux_sym_proxy_jump_token1] = ACTIONS(1056), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1056), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1056), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1056), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1056), - [aux_sym_rekey_limit_token1] = ACTIONS(1056), - [aux_sym_remote_command_token1] = ACTIONS(1056), - [aux_sym_remote_forward_token1] = ACTIONS(1056), - [aux_sym_request_tty_token1] = ACTIONS(1056), - [aux_sym_required_rsa_size_token1] = ACTIONS(1056), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1056), - [aux_sym_security_key_provider_token1] = ACTIONS(1056), - [aux_sym_send_env_token1] = ACTIONS(1056), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1056), - [aux_sym_server_alive_interval_token1] = ACTIONS(1056), - [aux_sym_session_type_token1] = ACTIONS(1056), - [aux_sym_set_env_token1] = ACTIONS(1056), - [aux_sym_stdin_null_token1] = ACTIONS(1056), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1056), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1056), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1056), - [aux_sym_syslog_facility_token1] = ACTIONS(1056), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1056), - [aux_sym_keep_alive_token1] = ACTIONS(1056), - [aux_sym_tag_token1] = ACTIONS(1056), - [aux_sym_tunnel_token1] = ACTIONS(1058), - [aux_sym_tunnel_device_token1] = ACTIONS(1056), - [aux_sym_update_host_keys_token1] = ACTIONS(1056), - [aux_sym_use_keychain_token1] = ACTIONS(1056), - [aux_sym_use_roaming_token1] = ACTIONS(1056), - [aux_sym_user_token1] = ACTIONS(1058), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1056), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1056), - [aux_sym_visual_host_key_token1] = ACTIONS(1056), - [aux_sym_xauth_location_token1] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1063), + [anon_sym_DQUOTE] = ACTIONS(1065), + [aux_sym_match_token1] = ACTIONS(1061), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1061), + [aux_sym_address_family_token1] = ACTIONS(1061), + [aux_sym_batch_mode_token1] = ACTIONS(1061), + [aux_sym_bind_address_token1] = ACTIONS(1061), + [aux_sym_bind_interface_token1] = ACTIONS(1061), + [aux_sym_canonical_domains_token1] = ACTIONS(1061), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1061), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1061), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1061), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1061), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1061), + [aux_sym_certificate_file_token1] = ACTIONS(1061), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1061), + [aux_sym_channel_timeout_token1] = ACTIONS(1061), + [aux_sym_check_host_ip_token1] = ACTIONS(1061), + [aux_sym_ciphers_token1] = ACTIONS(1061), + [aux_sym_cipher_token1] = ACTIONS(1063), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1061), + [aux_sym_compression_token1] = ACTIONS(1061), + [aux_sym_connection_attempts_token1] = ACTIONS(1061), + [aux_sym_connect_timeout_token1] = ACTIONS(1061), + [aux_sym_control_master_token1] = ACTIONS(1061), + [aux_sym_control_path_token1] = ACTIONS(1061), + [aux_sym_control_persist_token1] = ACTIONS(1061), + [aux_sym_dynamic_forward_token1] = ACTIONS(1061), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1061), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1061), + [aux_sym_escape_char_token1] = ACTIONS(1061), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1061), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1061), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1061), + [aux_sym_forward_agent_token1] = ACTIONS(1061), + [aux_sym_forward_x11_token1] = ACTIONS(1063), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1061), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1061), + [aux_sym_gateway_ports_token1] = ACTIONS(1061), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1061), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1061), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1061), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1061), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1061), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1061), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1061), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1061), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1061), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1061), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1061), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1061), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1061), + [aux_sym_host_key_alias_token1] = ACTIONS(1061), + [aux_sym_hostname_token1] = ACTIONS(1061), + [aux_sym_identities_only_token1] = ACTIONS(1061), + [aux_sym_identity_agent_token1] = ACTIONS(1061), + [aux_sym_identity_file_token1] = ACTIONS(1061), + [aux_sym_ignore_unknown_token1] = ACTIONS(1061), + [aux_sym_include_token1] = ACTIONS(1061), + [aux_sym_ip_qos_token1] = ACTIONS(1061), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1061), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1061), + [aux_sym_kex_algorithms_token1] = ACTIONS(1061), + [aux_sym_known_hosts_command_token1] = ACTIONS(1061), + [aux_sym_local_command_token1] = ACTIONS(1061), + [aux_sym_local_forward_token1] = ACTIONS(1061), + [aux_sym_log_level_token1] = ACTIONS(1061), + [aux_sym_log_verbose_token1] = ACTIONS(1061), + [aux_sym_macs_token1] = ACTIONS(1061), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1061), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1061), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1061), + [aux_sym_password_authentication_token1] = ACTIONS(1061), + [aux_sym_permit_local_command_token1] = ACTIONS(1061), + [aux_sym_permit_remote_open_token1] = ACTIONS(1061), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1061), + [aux_sym_port_token1] = ACTIONS(1061), + [aux_sym_preferred_authentications_token1] = ACTIONS(1061), + [aux_sym_protocol_token1] = ACTIONS(1061), + [aux_sym_proxy_command_token1] = ACTIONS(1061), + [aux_sym_proxy_jump_token1] = ACTIONS(1061), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1061), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1061), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1061), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1061), + [aux_sym_rekey_limit_token1] = ACTIONS(1061), + [aux_sym_remote_command_token1] = ACTIONS(1061), + [aux_sym_remote_forward_token1] = ACTIONS(1061), + [aux_sym_request_tty_token1] = ACTIONS(1061), + [aux_sym_required_rsa_size_token1] = ACTIONS(1061), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1061), + [aux_sym_security_key_provider_token1] = ACTIONS(1061), + [aux_sym_send_env_token1] = ACTIONS(1061), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1061), + [aux_sym_server_alive_interval_token1] = ACTIONS(1061), + [aux_sym_session_type_token1] = ACTIONS(1061), + [aux_sym_set_env_token1] = ACTIONS(1061), + [aux_sym_stdin_null_token1] = ACTIONS(1061), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1061), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1061), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1061), + [aux_sym_syslog_facility_token1] = ACTIONS(1061), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1061), + [aux_sym_keep_alive_token1] = ACTIONS(1061), + [aux_sym_tag_token1] = ACTIONS(1061), + [aux_sym_tunnel_token1] = ACTIONS(1063), + [aux_sym_tunnel_device_token1] = ACTIONS(1061), + [aux_sym_update_host_keys_token1] = ACTIONS(1061), + [aux_sym_use_keychain_token1] = ACTIONS(1061), + [aux_sym_use_roaming_token1] = ACTIONS(1061), + [aux_sym_user_token1] = ACTIONS(1063), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1061), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1061), + [aux_sym_visual_host_key_token1] = ACTIONS(1061), + [aux_sym_xauth_location_token1] = ACTIONS(1061), }, [84] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1064), - [anon_sym_DQUOTE] = ACTIONS(1066), - [aux_sym_match_token1] = ACTIONS(1062), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1062), - [aux_sym_address_family_token1] = ACTIONS(1062), - [aux_sym_batch_mode_token1] = ACTIONS(1062), - [aux_sym_bind_address_token1] = ACTIONS(1062), - [aux_sym_bind_interface_token1] = ACTIONS(1062), - [aux_sym_canonical_domains_token1] = ACTIONS(1062), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1062), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1062), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1062), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1062), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1062), - [aux_sym_certificate_file_token1] = ACTIONS(1062), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1062), - [aux_sym_channel_timeout_token1] = ACTIONS(1062), - [aux_sym_check_host_ip_token1] = ACTIONS(1062), - [aux_sym_ciphers_token1] = ACTIONS(1062), - [aux_sym_cipher_token1] = ACTIONS(1064), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1062), - [aux_sym_compression_token1] = ACTIONS(1062), - [aux_sym_connection_attempts_token1] = ACTIONS(1062), - [aux_sym_connect_timeout_token1] = ACTIONS(1062), - [aux_sym_control_master_token1] = ACTIONS(1062), - [aux_sym_control_path_token1] = ACTIONS(1062), - [aux_sym_control_persist_token1] = ACTIONS(1062), - [aux_sym_dynamic_forward_token1] = ACTIONS(1062), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1062), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1062), - [aux_sym_escape_char_token1] = ACTIONS(1062), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1062), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1062), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1062), - [aux_sym_forward_agent_token1] = ACTIONS(1062), - [aux_sym_forward_x11_token1] = ACTIONS(1064), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1062), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1062), - [aux_sym_gateway_ports_token1] = ACTIONS(1062), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1062), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1062), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1062), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1062), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1062), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1062), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1062), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1062), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1062), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1062), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1062), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1062), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1062), - [aux_sym_host_key_alias_token1] = ACTIONS(1062), - [aux_sym_hostname_token1] = ACTIONS(1062), - [aux_sym_identities_only_token1] = ACTIONS(1062), - [aux_sym_identity_agent_token1] = ACTIONS(1062), - [aux_sym_identity_file_token1] = ACTIONS(1062), - [aux_sym_ignore_unknown_token1] = ACTIONS(1062), - [aux_sym_include_token1] = ACTIONS(1062), - [aux_sym_ip_qos_token1] = ACTIONS(1062), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1062), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1062), - [aux_sym_kex_algorithms_token1] = ACTIONS(1062), - [aux_sym_known_hosts_command_token1] = ACTIONS(1062), - [aux_sym_local_command_token1] = ACTIONS(1062), - [aux_sym_local_forward_token1] = ACTIONS(1062), - [aux_sym_log_level_token1] = ACTIONS(1062), - [aux_sym_log_verbose_token1] = ACTIONS(1062), - [aux_sym_macs_token1] = ACTIONS(1062), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1062), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1062), - [aux_sym_password_authentication_token1] = ACTIONS(1062), - [aux_sym_permit_local_command_token1] = ACTIONS(1062), - [aux_sym_permit_remote_open_token1] = ACTIONS(1062), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1062), - [aux_sym_port_token1] = ACTIONS(1062), - [aux_sym_preferred_authentications_token1] = ACTIONS(1062), - [aux_sym_protocol_token1] = ACTIONS(1062), - [aux_sym_proxy_command_token1] = ACTIONS(1062), - [aux_sym_proxy_jump_token1] = ACTIONS(1062), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1062), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1062), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1062), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1062), - [aux_sym_rekey_limit_token1] = ACTIONS(1062), - [aux_sym_remote_command_token1] = ACTIONS(1062), - [aux_sym_remote_forward_token1] = ACTIONS(1062), - [aux_sym_request_tty_token1] = ACTIONS(1062), - [aux_sym_required_rsa_size_token1] = ACTIONS(1062), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1062), - [aux_sym_security_key_provider_token1] = ACTIONS(1062), - [aux_sym_send_env_token1] = ACTIONS(1062), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1062), - [aux_sym_server_alive_interval_token1] = ACTIONS(1062), - [aux_sym_session_type_token1] = ACTIONS(1062), - [aux_sym_set_env_token1] = ACTIONS(1062), - [aux_sym_stdin_null_token1] = ACTIONS(1062), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1062), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1062), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1062), - [aux_sym_syslog_facility_token1] = ACTIONS(1062), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1062), - [aux_sym_keep_alive_token1] = ACTIONS(1062), - [aux_sym_tag_token1] = ACTIONS(1062), - [aux_sym_tunnel_token1] = ACTIONS(1064), - [aux_sym_tunnel_device_token1] = ACTIONS(1062), - [aux_sym_update_host_keys_token1] = ACTIONS(1062), - [aux_sym_use_keychain_token1] = ACTIONS(1062), - [aux_sym_use_roaming_token1] = ACTIONS(1062), - [aux_sym_user_token1] = ACTIONS(1064), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1062), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1062), - [aux_sym_visual_host_key_token1] = ACTIONS(1062), - [aux_sym_xauth_location_token1] = ACTIONS(1062), + [ts_builtin_sym_end] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1071), + [aux_sym_match_token1] = ACTIONS(1067), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1067), + [aux_sym_address_family_token1] = ACTIONS(1067), + [aux_sym_batch_mode_token1] = ACTIONS(1067), + [aux_sym_bind_address_token1] = ACTIONS(1067), + [aux_sym_bind_interface_token1] = ACTIONS(1067), + [aux_sym_canonical_domains_token1] = ACTIONS(1067), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1067), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1067), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1067), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1067), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1067), + [aux_sym_certificate_file_token1] = ACTIONS(1067), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1067), + [aux_sym_channel_timeout_token1] = ACTIONS(1067), + [aux_sym_check_host_ip_token1] = ACTIONS(1067), + [aux_sym_ciphers_token1] = ACTIONS(1067), + [aux_sym_cipher_token1] = ACTIONS(1069), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1067), + [aux_sym_compression_token1] = ACTIONS(1067), + [aux_sym_connection_attempts_token1] = ACTIONS(1067), + [aux_sym_connect_timeout_token1] = ACTIONS(1067), + [aux_sym_control_master_token1] = ACTIONS(1067), + [aux_sym_control_path_token1] = ACTIONS(1067), + [aux_sym_control_persist_token1] = ACTIONS(1067), + [aux_sym_dynamic_forward_token1] = ACTIONS(1067), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1067), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1067), + [aux_sym_escape_char_token1] = ACTIONS(1067), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1067), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1067), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1067), + [aux_sym_forward_agent_token1] = ACTIONS(1067), + [aux_sym_forward_x11_token1] = ACTIONS(1069), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1067), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1067), + [aux_sym_gateway_ports_token1] = ACTIONS(1067), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1067), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1067), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1067), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1067), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1067), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1067), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1067), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1067), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1067), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1067), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1067), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1067), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1067), + [aux_sym_host_key_alias_token1] = ACTIONS(1067), + [aux_sym_hostname_token1] = ACTIONS(1067), + [aux_sym_identities_only_token1] = ACTIONS(1067), + [aux_sym_identity_agent_token1] = ACTIONS(1067), + [aux_sym_identity_file_token1] = ACTIONS(1067), + [aux_sym_ignore_unknown_token1] = ACTIONS(1067), + [aux_sym_include_token1] = ACTIONS(1067), + [aux_sym_ip_qos_token1] = ACTIONS(1067), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1067), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1067), + [aux_sym_kex_algorithms_token1] = ACTIONS(1067), + [aux_sym_known_hosts_command_token1] = ACTIONS(1067), + [aux_sym_local_command_token1] = ACTIONS(1067), + [aux_sym_local_forward_token1] = ACTIONS(1067), + [aux_sym_log_level_token1] = ACTIONS(1067), + [aux_sym_log_verbose_token1] = ACTIONS(1067), + [aux_sym_macs_token1] = ACTIONS(1067), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1067), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1067), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1067), + [aux_sym_password_authentication_token1] = ACTIONS(1067), + [aux_sym_permit_local_command_token1] = ACTIONS(1067), + [aux_sym_permit_remote_open_token1] = ACTIONS(1067), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1067), + [aux_sym_port_token1] = ACTIONS(1067), + [aux_sym_preferred_authentications_token1] = ACTIONS(1067), + [aux_sym_protocol_token1] = ACTIONS(1067), + [aux_sym_proxy_command_token1] = ACTIONS(1067), + [aux_sym_proxy_jump_token1] = ACTIONS(1067), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1067), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1067), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1067), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1067), + [aux_sym_rekey_limit_token1] = ACTIONS(1067), + [aux_sym_remote_command_token1] = ACTIONS(1067), + [aux_sym_remote_forward_token1] = ACTIONS(1067), + [aux_sym_request_tty_token1] = ACTIONS(1067), + [aux_sym_required_rsa_size_token1] = ACTIONS(1067), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1067), + [aux_sym_security_key_provider_token1] = ACTIONS(1067), + [aux_sym_send_env_token1] = ACTIONS(1067), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1067), + [aux_sym_server_alive_interval_token1] = ACTIONS(1067), + [aux_sym_session_type_token1] = ACTIONS(1067), + [aux_sym_set_env_token1] = ACTIONS(1067), + [aux_sym_stdin_null_token1] = ACTIONS(1067), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1067), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1067), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1067), + [aux_sym_syslog_facility_token1] = ACTIONS(1067), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1067), + [aux_sym_keep_alive_token1] = ACTIONS(1067), + [aux_sym_tag_token1] = ACTIONS(1067), + [aux_sym_tunnel_token1] = ACTIONS(1069), + [aux_sym_tunnel_device_token1] = ACTIONS(1067), + [aux_sym_update_host_keys_token1] = ACTIONS(1067), + [aux_sym_use_keychain_token1] = ACTIONS(1067), + [aux_sym_use_roaming_token1] = ACTIONS(1067), + [aux_sym_user_token1] = ACTIONS(1069), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1067), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1067), + [aux_sym_visual_host_key_token1] = ACTIONS(1067), + [aux_sym_xauth_location_token1] = ACTIONS(1067), }, [85] = { - [ts_builtin_sym_end] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1072), - [aux_sym_match_token1] = ACTIONS(1068), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1068), - [aux_sym_address_family_token1] = ACTIONS(1068), - [aux_sym_batch_mode_token1] = ACTIONS(1068), - [aux_sym_bind_address_token1] = ACTIONS(1068), - [aux_sym_bind_interface_token1] = ACTIONS(1068), - [aux_sym_canonical_domains_token1] = ACTIONS(1068), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1068), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1068), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1068), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1068), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1068), - [aux_sym_certificate_file_token1] = ACTIONS(1068), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1068), - [aux_sym_channel_timeout_token1] = ACTIONS(1068), - [aux_sym_check_host_ip_token1] = ACTIONS(1068), - [aux_sym_ciphers_token1] = ACTIONS(1068), - [aux_sym_cipher_token1] = ACTIONS(1070), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1068), - [aux_sym_compression_token1] = ACTIONS(1068), - [aux_sym_connection_attempts_token1] = ACTIONS(1068), - [aux_sym_connect_timeout_token1] = ACTIONS(1068), - [aux_sym_control_master_token1] = ACTIONS(1068), - [aux_sym_control_path_token1] = ACTIONS(1068), - [aux_sym_control_persist_token1] = ACTIONS(1068), - [aux_sym_dynamic_forward_token1] = ACTIONS(1068), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1068), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1068), - [aux_sym_escape_char_token1] = ACTIONS(1068), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1068), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1068), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1068), - [aux_sym_forward_agent_token1] = ACTIONS(1068), - [aux_sym_forward_x11_token1] = ACTIONS(1070), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1068), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1068), - [aux_sym_gateway_ports_token1] = ACTIONS(1068), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1068), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1068), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1068), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1068), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1068), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1068), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1068), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1068), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1068), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1068), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1068), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1068), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1068), - [aux_sym_host_key_alias_token1] = ACTIONS(1068), - [aux_sym_hostname_token1] = ACTIONS(1068), - [aux_sym_identities_only_token1] = ACTIONS(1068), - [aux_sym_identity_agent_token1] = ACTIONS(1068), - [aux_sym_identity_file_token1] = ACTIONS(1068), - [aux_sym_ignore_unknown_token1] = ACTIONS(1068), - [aux_sym_include_token1] = ACTIONS(1068), - [aux_sym_ip_qos_token1] = ACTIONS(1068), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1068), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1068), - [aux_sym_kex_algorithms_token1] = ACTIONS(1068), - [aux_sym_known_hosts_command_token1] = ACTIONS(1068), - [aux_sym_local_command_token1] = ACTIONS(1068), - [aux_sym_local_forward_token1] = ACTIONS(1068), - [aux_sym_log_level_token1] = ACTIONS(1068), - [aux_sym_log_verbose_token1] = ACTIONS(1068), - [aux_sym_macs_token1] = ACTIONS(1068), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1068), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1068), - [aux_sym_password_authentication_token1] = ACTIONS(1068), - [aux_sym_permit_local_command_token1] = ACTIONS(1068), - [aux_sym_permit_remote_open_token1] = ACTIONS(1068), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1068), - [aux_sym_port_token1] = ACTIONS(1068), - [aux_sym_preferred_authentications_token1] = ACTIONS(1068), - [aux_sym_protocol_token1] = ACTIONS(1068), - [aux_sym_proxy_command_token1] = ACTIONS(1068), - [aux_sym_proxy_jump_token1] = ACTIONS(1068), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1068), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1068), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1068), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1068), - [aux_sym_rekey_limit_token1] = ACTIONS(1068), - [aux_sym_remote_command_token1] = ACTIONS(1068), - [aux_sym_remote_forward_token1] = ACTIONS(1068), - [aux_sym_request_tty_token1] = ACTIONS(1068), - [aux_sym_required_rsa_size_token1] = ACTIONS(1068), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1068), - [aux_sym_security_key_provider_token1] = ACTIONS(1068), - [aux_sym_send_env_token1] = ACTIONS(1068), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1068), - [aux_sym_server_alive_interval_token1] = ACTIONS(1068), - [aux_sym_session_type_token1] = ACTIONS(1068), - [aux_sym_set_env_token1] = ACTIONS(1068), - [aux_sym_stdin_null_token1] = ACTIONS(1068), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1068), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1068), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1068), - [aux_sym_syslog_facility_token1] = ACTIONS(1068), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1068), - [aux_sym_keep_alive_token1] = ACTIONS(1068), - [aux_sym_tag_token1] = ACTIONS(1068), - [aux_sym_tunnel_token1] = ACTIONS(1070), - [aux_sym_tunnel_device_token1] = ACTIONS(1068), - [aux_sym_update_host_keys_token1] = ACTIONS(1068), - [aux_sym_use_keychain_token1] = ACTIONS(1068), - [aux_sym_use_roaming_token1] = ACTIONS(1068), - [aux_sym_user_token1] = ACTIONS(1070), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1068), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1068), - [aux_sym_visual_host_key_token1] = ACTIONS(1068), - [aux_sym_xauth_location_token1] = ACTIONS(1068), + [ts_builtin_sym_end] = ACTIONS(1073), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(1077), + [aux_sym_match_token1] = ACTIONS(1073), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1073), + [aux_sym_address_family_token1] = ACTIONS(1073), + [aux_sym_batch_mode_token1] = ACTIONS(1073), + [aux_sym_bind_address_token1] = ACTIONS(1073), + [aux_sym_bind_interface_token1] = ACTIONS(1073), + [aux_sym_canonical_domains_token1] = ACTIONS(1073), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1073), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1073), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1073), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1073), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1073), + [aux_sym_certificate_file_token1] = ACTIONS(1073), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1073), + [aux_sym_channel_timeout_token1] = ACTIONS(1073), + [aux_sym_check_host_ip_token1] = ACTIONS(1073), + [aux_sym_ciphers_token1] = ACTIONS(1073), + [aux_sym_cipher_token1] = ACTIONS(1075), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1073), + [aux_sym_compression_token1] = ACTIONS(1073), + [aux_sym_connection_attempts_token1] = ACTIONS(1073), + [aux_sym_connect_timeout_token1] = ACTIONS(1073), + [aux_sym_control_master_token1] = ACTIONS(1073), + [aux_sym_control_path_token1] = ACTIONS(1073), + [aux_sym_control_persist_token1] = ACTIONS(1073), + [aux_sym_dynamic_forward_token1] = ACTIONS(1073), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1073), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1073), + [aux_sym_escape_char_token1] = ACTIONS(1073), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1073), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1073), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1073), + [aux_sym_forward_agent_token1] = ACTIONS(1073), + [aux_sym_forward_x11_token1] = ACTIONS(1075), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1073), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1073), + [aux_sym_gateway_ports_token1] = ACTIONS(1073), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1073), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1073), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1073), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1073), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1073), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1073), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1073), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1073), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1073), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1073), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1073), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1073), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1073), + [aux_sym_host_key_alias_token1] = ACTIONS(1073), + [aux_sym_hostname_token1] = ACTIONS(1073), + [aux_sym_identities_only_token1] = ACTIONS(1073), + [aux_sym_identity_agent_token1] = ACTIONS(1073), + [aux_sym_identity_file_token1] = ACTIONS(1073), + [aux_sym_ignore_unknown_token1] = ACTIONS(1073), + [aux_sym_include_token1] = ACTIONS(1073), + [aux_sym_ip_qos_token1] = ACTIONS(1073), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1073), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1073), + [aux_sym_kex_algorithms_token1] = ACTIONS(1073), + [aux_sym_known_hosts_command_token1] = ACTIONS(1073), + [aux_sym_local_command_token1] = ACTIONS(1073), + [aux_sym_local_forward_token1] = ACTIONS(1073), + [aux_sym_log_level_token1] = ACTIONS(1073), + [aux_sym_log_verbose_token1] = ACTIONS(1073), + [aux_sym_macs_token1] = ACTIONS(1073), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1073), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1073), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1073), + [aux_sym_password_authentication_token1] = ACTIONS(1073), + [aux_sym_permit_local_command_token1] = ACTIONS(1073), + [aux_sym_permit_remote_open_token1] = ACTIONS(1073), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1073), + [aux_sym_port_token1] = ACTIONS(1073), + [aux_sym_preferred_authentications_token1] = ACTIONS(1073), + [aux_sym_protocol_token1] = ACTIONS(1073), + [aux_sym_proxy_command_token1] = ACTIONS(1073), + [aux_sym_proxy_jump_token1] = ACTIONS(1073), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1073), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1073), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1073), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1073), + [aux_sym_rekey_limit_token1] = ACTIONS(1073), + [aux_sym_remote_command_token1] = ACTIONS(1073), + [aux_sym_remote_forward_token1] = ACTIONS(1073), + [aux_sym_request_tty_token1] = ACTIONS(1073), + [aux_sym_required_rsa_size_token1] = ACTIONS(1073), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1073), + [aux_sym_security_key_provider_token1] = ACTIONS(1073), + [aux_sym_send_env_token1] = ACTIONS(1073), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1073), + [aux_sym_server_alive_interval_token1] = ACTIONS(1073), + [aux_sym_session_type_token1] = ACTIONS(1073), + [aux_sym_set_env_token1] = ACTIONS(1073), + [aux_sym_stdin_null_token1] = ACTIONS(1073), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1073), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1073), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1073), + [aux_sym_syslog_facility_token1] = ACTIONS(1073), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1073), + [aux_sym_keep_alive_token1] = ACTIONS(1073), + [aux_sym_tag_token1] = ACTIONS(1073), + [aux_sym_tunnel_token1] = ACTIONS(1075), + [aux_sym_tunnel_device_token1] = ACTIONS(1073), + [aux_sym_update_host_keys_token1] = ACTIONS(1073), + [aux_sym_use_keychain_token1] = ACTIONS(1073), + [aux_sym_use_roaming_token1] = ACTIONS(1073), + [aux_sym_user_token1] = ACTIONS(1075), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1073), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1073), + [aux_sym_visual_host_key_token1] = ACTIONS(1073), + [aux_sym_xauth_location_token1] = ACTIONS(1073), }, [86] = { - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1076), - [anon_sym_DQUOTE] = ACTIONS(1078), - [aux_sym_match_token1] = ACTIONS(1074), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1074), - [aux_sym_address_family_token1] = ACTIONS(1074), - [aux_sym_batch_mode_token1] = ACTIONS(1074), - [aux_sym_bind_address_token1] = ACTIONS(1074), - [aux_sym_bind_interface_token1] = ACTIONS(1074), - [aux_sym_canonical_domains_token1] = ACTIONS(1074), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1074), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1074), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1074), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1074), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1074), - [aux_sym_certificate_file_token1] = ACTIONS(1074), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1074), - [aux_sym_channel_timeout_token1] = ACTIONS(1074), - [aux_sym_check_host_ip_token1] = ACTIONS(1074), - [aux_sym_ciphers_token1] = ACTIONS(1074), - [aux_sym_cipher_token1] = ACTIONS(1076), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1074), - [aux_sym_compression_token1] = ACTIONS(1074), - [aux_sym_connection_attempts_token1] = ACTIONS(1074), - [aux_sym_connect_timeout_token1] = ACTIONS(1074), - [aux_sym_control_master_token1] = ACTIONS(1074), - [aux_sym_control_path_token1] = ACTIONS(1074), - [aux_sym_control_persist_token1] = ACTIONS(1074), - [aux_sym_dynamic_forward_token1] = ACTIONS(1074), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1074), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1074), - [aux_sym_escape_char_token1] = ACTIONS(1074), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1074), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1074), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1074), - [aux_sym_forward_agent_token1] = ACTIONS(1074), - [aux_sym_forward_x11_token1] = ACTIONS(1076), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1074), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1074), - [aux_sym_gateway_ports_token1] = ACTIONS(1074), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1074), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1074), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1074), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1074), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1074), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1074), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1074), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1074), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1074), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1074), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1074), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1074), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1074), - [aux_sym_host_key_alias_token1] = ACTIONS(1074), - [aux_sym_hostname_token1] = ACTIONS(1074), - [aux_sym_identities_only_token1] = ACTIONS(1074), - [aux_sym_identity_agent_token1] = ACTIONS(1074), - [aux_sym_identity_file_token1] = ACTIONS(1074), - [aux_sym_ignore_unknown_token1] = ACTIONS(1074), - [aux_sym_include_token1] = ACTIONS(1074), - [aux_sym_ip_qos_token1] = ACTIONS(1074), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1074), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1074), - [aux_sym_kex_algorithms_token1] = ACTIONS(1074), - [aux_sym_known_hosts_command_token1] = ACTIONS(1074), - [aux_sym_local_command_token1] = ACTIONS(1074), - [aux_sym_local_forward_token1] = ACTIONS(1074), - [aux_sym_log_level_token1] = ACTIONS(1074), - [aux_sym_log_verbose_token1] = ACTIONS(1074), - [aux_sym_macs_token1] = ACTIONS(1074), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1074), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1074), - [aux_sym_password_authentication_token1] = ACTIONS(1074), - [aux_sym_permit_local_command_token1] = ACTIONS(1074), - [aux_sym_permit_remote_open_token1] = ACTIONS(1074), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1074), - [aux_sym_port_token1] = ACTIONS(1074), - [aux_sym_preferred_authentications_token1] = ACTIONS(1074), - [aux_sym_protocol_token1] = ACTIONS(1074), - [aux_sym_proxy_command_token1] = ACTIONS(1074), - [aux_sym_proxy_jump_token1] = ACTIONS(1074), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1074), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1074), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1074), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1074), - [aux_sym_rekey_limit_token1] = ACTIONS(1074), - [aux_sym_remote_command_token1] = ACTIONS(1074), - [aux_sym_remote_forward_token1] = ACTIONS(1074), - [aux_sym_request_tty_token1] = ACTIONS(1074), - [aux_sym_required_rsa_size_token1] = ACTIONS(1074), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1074), - [aux_sym_security_key_provider_token1] = ACTIONS(1074), - [aux_sym_send_env_token1] = ACTIONS(1074), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1074), - [aux_sym_server_alive_interval_token1] = ACTIONS(1074), - [aux_sym_session_type_token1] = ACTIONS(1074), - [aux_sym_set_env_token1] = ACTIONS(1074), - [aux_sym_stdin_null_token1] = ACTIONS(1074), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1074), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1074), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1074), - [aux_sym_syslog_facility_token1] = ACTIONS(1074), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1074), - [aux_sym_keep_alive_token1] = ACTIONS(1074), - [aux_sym_tag_token1] = ACTIONS(1074), - [aux_sym_tunnel_token1] = ACTIONS(1076), - [aux_sym_tunnel_device_token1] = ACTIONS(1074), - [aux_sym_update_host_keys_token1] = ACTIONS(1074), - [aux_sym_use_keychain_token1] = ACTIONS(1074), - [aux_sym_use_roaming_token1] = ACTIONS(1074), - [aux_sym_user_token1] = ACTIONS(1076), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1074), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1074), - [aux_sym_visual_host_key_token1] = ACTIONS(1074), - [aux_sym_xauth_location_token1] = ACTIONS(1074), + [ts_builtin_sym_end] = ACTIONS(1079), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1081), + [anon_sym_DQUOTE] = ACTIONS(1083), + [aux_sym_match_token1] = ACTIONS(1079), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1079), + [aux_sym_address_family_token1] = ACTIONS(1079), + [aux_sym_batch_mode_token1] = ACTIONS(1079), + [aux_sym_bind_address_token1] = ACTIONS(1079), + [aux_sym_bind_interface_token1] = ACTIONS(1079), + [aux_sym_canonical_domains_token1] = ACTIONS(1079), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1079), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1079), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1079), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1079), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1079), + [aux_sym_certificate_file_token1] = ACTIONS(1079), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1079), + [aux_sym_channel_timeout_token1] = ACTIONS(1079), + [aux_sym_check_host_ip_token1] = ACTIONS(1079), + [aux_sym_ciphers_token1] = ACTIONS(1079), + [aux_sym_cipher_token1] = ACTIONS(1081), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1079), + [aux_sym_compression_token1] = ACTIONS(1079), + [aux_sym_connection_attempts_token1] = ACTIONS(1079), + [aux_sym_connect_timeout_token1] = ACTIONS(1079), + [aux_sym_control_master_token1] = ACTIONS(1079), + [aux_sym_control_path_token1] = ACTIONS(1079), + [aux_sym_control_persist_token1] = ACTIONS(1079), + [aux_sym_dynamic_forward_token1] = ACTIONS(1079), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1079), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1079), + [aux_sym_escape_char_token1] = ACTIONS(1079), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1079), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1079), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1079), + [aux_sym_forward_agent_token1] = ACTIONS(1079), + [aux_sym_forward_x11_token1] = ACTIONS(1081), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1079), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1079), + [aux_sym_gateway_ports_token1] = ACTIONS(1079), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1079), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1079), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1079), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1079), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1079), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1079), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1079), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1079), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1079), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1079), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1079), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1079), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1079), + [aux_sym_host_key_alias_token1] = ACTIONS(1079), + [aux_sym_hostname_token1] = ACTIONS(1079), + [aux_sym_identities_only_token1] = ACTIONS(1079), + [aux_sym_identity_agent_token1] = ACTIONS(1079), + [aux_sym_identity_file_token1] = ACTIONS(1079), + [aux_sym_ignore_unknown_token1] = ACTIONS(1079), + [aux_sym_include_token1] = ACTIONS(1079), + [aux_sym_ip_qos_token1] = ACTIONS(1079), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1079), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1079), + [aux_sym_kex_algorithms_token1] = ACTIONS(1079), + [aux_sym_known_hosts_command_token1] = ACTIONS(1079), + [aux_sym_local_command_token1] = ACTIONS(1079), + [aux_sym_local_forward_token1] = ACTIONS(1079), + [aux_sym_log_level_token1] = ACTIONS(1079), + [aux_sym_log_verbose_token1] = ACTIONS(1079), + [aux_sym_macs_token1] = ACTIONS(1079), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1079), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1079), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1079), + [aux_sym_password_authentication_token1] = ACTIONS(1079), + [aux_sym_permit_local_command_token1] = ACTIONS(1079), + [aux_sym_permit_remote_open_token1] = ACTIONS(1079), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1079), + [aux_sym_port_token1] = ACTIONS(1079), + [aux_sym_preferred_authentications_token1] = ACTIONS(1079), + [aux_sym_protocol_token1] = ACTIONS(1079), + [aux_sym_proxy_command_token1] = ACTIONS(1079), + [aux_sym_proxy_jump_token1] = ACTIONS(1079), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1079), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1079), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1079), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1079), + [aux_sym_rekey_limit_token1] = ACTIONS(1079), + [aux_sym_remote_command_token1] = ACTIONS(1079), + [aux_sym_remote_forward_token1] = ACTIONS(1079), + [aux_sym_request_tty_token1] = ACTIONS(1079), + [aux_sym_required_rsa_size_token1] = ACTIONS(1079), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1079), + [aux_sym_security_key_provider_token1] = ACTIONS(1079), + [aux_sym_send_env_token1] = ACTIONS(1079), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1079), + [aux_sym_server_alive_interval_token1] = ACTIONS(1079), + [aux_sym_session_type_token1] = ACTIONS(1079), + [aux_sym_set_env_token1] = ACTIONS(1079), + [aux_sym_stdin_null_token1] = ACTIONS(1079), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1079), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1079), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1079), + [aux_sym_syslog_facility_token1] = ACTIONS(1079), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1079), + [aux_sym_keep_alive_token1] = ACTIONS(1079), + [aux_sym_tag_token1] = ACTIONS(1079), + [aux_sym_tunnel_token1] = ACTIONS(1081), + [aux_sym_tunnel_device_token1] = ACTIONS(1079), + [aux_sym_update_host_keys_token1] = ACTIONS(1079), + [aux_sym_use_keychain_token1] = ACTIONS(1079), + [aux_sym_use_roaming_token1] = ACTIONS(1079), + [aux_sym_user_token1] = ACTIONS(1081), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1079), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1079), + [aux_sym_visual_host_key_token1] = ACTIONS(1079), + [aux_sym_xauth_location_token1] = ACTIONS(1079), }, [87] = { - [ts_builtin_sym_end] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1082), - [anon_sym_DQUOTE] = ACTIONS(1084), - [aux_sym_match_token1] = ACTIONS(1080), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1080), - [aux_sym_address_family_token1] = ACTIONS(1080), - [aux_sym_batch_mode_token1] = ACTIONS(1080), - [aux_sym_bind_address_token1] = ACTIONS(1080), - [aux_sym_bind_interface_token1] = ACTIONS(1080), - [aux_sym_canonical_domains_token1] = ACTIONS(1080), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1080), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1080), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1080), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1080), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1080), - [aux_sym_certificate_file_token1] = ACTIONS(1080), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1080), - [aux_sym_channel_timeout_token1] = ACTIONS(1080), - [aux_sym_check_host_ip_token1] = ACTIONS(1080), - [aux_sym_ciphers_token1] = ACTIONS(1080), - [aux_sym_cipher_token1] = ACTIONS(1082), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1080), - [aux_sym_compression_token1] = ACTIONS(1080), - [aux_sym_connection_attempts_token1] = ACTIONS(1080), - [aux_sym_connect_timeout_token1] = ACTIONS(1080), - [aux_sym_control_master_token1] = ACTIONS(1080), - [aux_sym_control_path_token1] = ACTIONS(1080), - [aux_sym_control_persist_token1] = ACTIONS(1080), - [aux_sym_dynamic_forward_token1] = ACTIONS(1080), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1080), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1080), - [aux_sym_escape_char_token1] = ACTIONS(1080), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1080), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1080), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1080), - [aux_sym_forward_agent_token1] = ACTIONS(1080), - [aux_sym_forward_x11_token1] = ACTIONS(1082), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1080), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1080), - [aux_sym_gateway_ports_token1] = ACTIONS(1080), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1080), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1080), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1080), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1080), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1080), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1080), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1080), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1080), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1080), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1080), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1080), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1080), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1080), - [aux_sym_host_key_alias_token1] = ACTIONS(1080), - [aux_sym_hostname_token1] = ACTIONS(1080), - [aux_sym_identities_only_token1] = ACTIONS(1080), - [aux_sym_identity_agent_token1] = ACTIONS(1080), - [aux_sym_identity_file_token1] = ACTIONS(1080), - [aux_sym_ignore_unknown_token1] = ACTIONS(1080), - [aux_sym_include_token1] = ACTIONS(1080), - [aux_sym_ip_qos_token1] = ACTIONS(1080), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1080), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1080), - [aux_sym_kex_algorithms_token1] = ACTIONS(1080), - [aux_sym_known_hosts_command_token1] = ACTIONS(1080), - [aux_sym_local_command_token1] = ACTIONS(1080), - [aux_sym_local_forward_token1] = ACTIONS(1080), - [aux_sym_log_level_token1] = ACTIONS(1080), - [aux_sym_log_verbose_token1] = ACTIONS(1080), - [aux_sym_macs_token1] = ACTIONS(1080), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1080), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1080), - [aux_sym_password_authentication_token1] = ACTIONS(1080), - [aux_sym_permit_local_command_token1] = ACTIONS(1080), - [aux_sym_permit_remote_open_token1] = ACTIONS(1080), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1080), - [aux_sym_port_token1] = ACTIONS(1080), - [aux_sym_preferred_authentications_token1] = ACTIONS(1080), - [aux_sym_protocol_token1] = ACTIONS(1080), - [aux_sym_proxy_command_token1] = ACTIONS(1080), - [aux_sym_proxy_jump_token1] = ACTIONS(1080), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1080), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1080), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1080), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1080), - [aux_sym_rekey_limit_token1] = ACTIONS(1080), - [aux_sym_remote_command_token1] = ACTIONS(1080), - [aux_sym_remote_forward_token1] = ACTIONS(1080), - [aux_sym_request_tty_token1] = ACTIONS(1080), - [aux_sym_required_rsa_size_token1] = ACTIONS(1080), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1080), - [aux_sym_security_key_provider_token1] = ACTIONS(1080), - [aux_sym_send_env_token1] = ACTIONS(1080), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1080), - [aux_sym_server_alive_interval_token1] = ACTIONS(1080), - [aux_sym_session_type_token1] = ACTIONS(1080), - [aux_sym_set_env_token1] = ACTIONS(1080), - [aux_sym_stdin_null_token1] = ACTIONS(1080), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1080), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1080), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1080), - [aux_sym_syslog_facility_token1] = ACTIONS(1080), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1080), - [aux_sym_keep_alive_token1] = ACTIONS(1080), - [aux_sym_tag_token1] = ACTIONS(1080), - [aux_sym_tunnel_token1] = ACTIONS(1082), - [aux_sym_tunnel_device_token1] = ACTIONS(1080), - [aux_sym_update_host_keys_token1] = ACTIONS(1080), - [aux_sym_use_keychain_token1] = ACTIONS(1080), - [aux_sym_use_roaming_token1] = ACTIONS(1080), - [aux_sym_user_token1] = ACTIONS(1082), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1080), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1080), - [aux_sym_visual_host_key_token1] = ACTIONS(1080), - [aux_sym_xauth_location_token1] = ACTIONS(1080), + [ts_builtin_sym_end] = ACTIONS(1085), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(1089), + [aux_sym_match_token1] = ACTIONS(1085), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1085), + [aux_sym_address_family_token1] = ACTIONS(1085), + [aux_sym_batch_mode_token1] = ACTIONS(1085), + [aux_sym_bind_address_token1] = ACTIONS(1085), + [aux_sym_bind_interface_token1] = ACTIONS(1085), + [aux_sym_canonical_domains_token1] = ACTIONS(1085), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1085), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1085), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1085), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1085), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1085), + [aux_sym_certificate_file_token1] = ACTIONS(1085), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1085), + [aux_sym_channel_timeout_token1] = ACTIONS(1085), + [aux_sym_check_host_ip_token1] = ACTIONS(1085), + [aux_sym_ciphers_token1] = ACTIONS(1085), + [aux_sym_cipher_token1] = ACTIONS(1087), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1085), + [aux_sym_compression_token1] = ACTIONS(1085), + [aux_sym_connection_attempts_token1] = ACTIONS(1085), + [aux_sym_connect_timeout_token1] = ACTIONS(1085), + [aux_sym_control_master_token1] = ACTIONS(1085), + [aux_sym_control_path_token1] = ACTIONS(1085), + [aux_sym_control_persist_token1] = ACTIONS(1085), + [aux_sym_dynamic_forward_token1] = ACTIONS(1085), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1085), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1085), + [aux_sym_escape_char_token1] = ACTIONS(1085), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1085), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1085), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1085), + [aux_sym_forward_agent_token1] = ACTIONS(1085), + [aux_sym_forward_x11_token1] = ACTIONS(1087), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1085), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1085), + [aux_sym_gateway_ports_token1] = ACTIONS(1085), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1085), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1085), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1085), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1085), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1085), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1085), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1085), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1085), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1085), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1085), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1085), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1085), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1085), + [aux_sym_host_key_alias_token1] = ACTIONS(1085), + [aux_sym_hostname_token1] = ACTIONS(1085), + [aux_sym_identities_only_token1] = ACTIONS(1085), + [aux_sym_identity_agent_token1] = ACTIONS(1085), + [aux_sym_identity_file_token1] = ACTIONS(1085), + [aux_sym_ignore_unknown_token1] = ACTIONS(1085), + [aux_sym_include_token1] = ACTIONS(1085), + [aux_sym_ip_qos_token1] = ACTIONS(1085), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1085), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1085), + [aux_sym_kex_algorithms_token1] = ACTIONS(1085), + [aux_sym_known_hosts_command_token1] = ACTIONS(1085), + [aux_sym_local_command_token1] = ACTIONS(1085), + [aux_sym_local_forward_token1] = ACTIONS(1085), + [aux_sym_log_level_token1] = ACTIONS(1085), + [aux_sym_log_verbose_token1] = ACTIONS(1085), + [aux_sym_macs_token1] = ACTIONS(1085), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1085), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1085), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1085), + [aux_sym_password_authentication_token1] = ACTIONS(1085), + [aux_sym_permit_local_command_token1] = ACTIONS(1085), + [aux_sym_permit_remote_open_token1] = ACTIONS(1085), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1085), + [aux_sym_port_token1] = ACTIONS(1085), + [aux_sym_preferred_authentications_token1] = ACTIONS(1085), + [aux_sym_protocol_token1] = ACTIONS(1085), + [aux_sym_proxy_command_token1] = ACTIONS(1085), + [aux_sym_proxy_jump_token1] = ACTIONS(1085), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1085), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1085), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1085), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1085), + [aux_sym_rekey_limit_token1] = ACTIONS(1085), + [aux_sym_remote_command_token1] = ACTIONS(1085), + [aux_sym_remote_forward_token1] = ACTIONS(1085), + [aux_sym_request_tty_token1] = ACTIONS(1085), + [aux_sym_required_rsa_size_token1] = ACTIONS(1085), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1085), + [aux_sym_security_key_provider_token1] = ACTIONS(1085), + [aux_sym_send_env_token1] = ACTIONS(1085), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1085), + [aux_sym_server_alive_interval_token1] = ACTIONS(1085), + [aux_sym_session_type_token1] = ACTIONS(1085), + [aux_sym_set_env_token1] = ACTIONS(1085), + [aux_sym_stdin_null_token1] = ACTIONS(1085), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1085), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1085), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1085), + [aux_sym_syslog_facility_token1] = ACTIONS(1085), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1085), + [aux_sym_keep_alive_token1] = ACTIONS(1085), + [aux_sym_tag_token1] = ACTIONS(1085), + [aux_sym_tunnel_token1] = ACTIONS(1087), + [aux_sym_tunnel_device_token1] = ACTIONS(1085), + [aux_sym_update_host_keys_token1] = ACTIONS(1085), + [aux_sym_use_keychain_token1] = ACTIONS(1085), + [aux_sym_use_roaming_token1] = ACTIONS(1085), + [aux_sym_user_token1] = ACTIONS(1087), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1085), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1085), + [aux_sym_visual_host_key_token1] = ACTIONS(1085), + [aux_sym_xauth_location_token1] = ACTIONS(1085), }, [88] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1088), - [anon_sym_DQUOTE] = ACTIONS(1090), - [aux_sym_match_token1] = ACTIONS(1086), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1086), - [aux_sym_address_family_token1] = ACTIONS(1086), - [aux_sym_batch_mode_token1] = ACTIONS(1086), - [aux_sym_bind_address_token1] = ACTIONS(1086), - [aux_sym_bind_interface_token1] = ACTIONS(1086), - [aux_sym_canonical_domains_token1] = ACTIONS(1086), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1086), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1086), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1086), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1086), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1086), - [aux_sym_certificate_file_token1] = ACTIONS(1086), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1086), - [aux_sym_channel_timeout_token1] = ACTIONS(1086), - [aux_sym_check_host_ip_token1] = ACTIONS(1086), - [aux_sym_ciphers_token1] = ACTIONS(1086), - [aux_sym_cipher_token1] = ACTIONS(1088), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1086), - [aux_sym_compression_token1] = ACTIONS(1086), - [aux_sym_connection_attempts_token1] = ACTIONS(1086), - [aux_sym_connect_timeout_token1] = ACTIONS(1086), - [aux_sym_control_master_token1] = ACTIONS(1086), - [aux_sym_control_path_token1] = ACTIONS(1086), - [aux_sym_control_persist_token1] = ACTIONS(1086), - [aux_sym_dynamic_forward_token1] = ACTIONS(1086), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1086), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1086), - [aux_sym_escape_char_token1] = ACTIONS(1086), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1086), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1086), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1086), - [aux_sym_forward_agent_token1] = ACTIONS(1086), - [aux_sym_forward_x11_token1] = ACTIONS(1088), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1086), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1086), - [aux_sym_gateway_ports_token1] = ACTIONS(1086), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1086), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1086), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1086), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1086), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1086), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1086), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1086), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1086), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1086), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1086), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1086), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1086), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1086), - [aux_sym_host_key_alias_token1] = ACTIONS(1086), - [aux_sym_hostname_token1] = ACTIONS(1086), - [aux_sym_identities_only_token1] = ACTIONS(1086), - [aux_sym_identity_agent_token1] = ACTIONS(1086), - [aux_sym_identity_file_token1] = ACTIONS(1086), - [aux_sym_ignore_unknown_token1] = ACTIONS(1086), - [aux_sym_include_token1] = ACTIONS(1086), - [aux_sym_ip_qos_token1] = ACTIONS(1086), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1086), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1086), - [aux_sym_kex_algorithms_token1] = ACTIONS(1086), - [aux_sym_known_hosts_command_token1] = ACTIONS(1086), - [aux_sym_local_command_token1] = ACTIONS(1086), - [aux_sym_local_forward_token1] = ACTIONS(1086), - [aux_sym_log_level_token1] = ACTIONS(1086), - [aux_sym_log_verbose_token1] = ACTIONS(1086), - [aux_sym_macs_token1] = ACTIONS(1086), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1086), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1086), - [aux_sym_password_authentication_token1] = ACTIONS(1086), - [aux_sym_permit_local_command_token1] = ACTIONS(1086), - [aux_sym_permit_remote_open_token1] = ACTIONS(1086), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1086), - [aux_sym_port_token1] = ACTIONS(1086), - [aux_sym_preferred_authentications_token1] = ACTIONS(1086), - [aux_sym_protocol_token1] = ACTIONS(1086), - [aux_sym_proxy_command_token1] = ACTIONS(1086), - [aux_sym_proxy_jump_token1] = ACTIONS(1086), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1086), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1086), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1086), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1086), - [aux_sym_rekey_limit_token1] = ACTIONS(1086), - [aux_sym_remote_command_token1] = ACTIONS(1086), - [aux_sym_remote_forward_token1] = ACTIONS(1086), - [aux_sym_request_tty_token1] = ACTIONS(1086), - [aux_sym_required_rsa_size_token1] = ACTIONS(1086), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1086), - [aux_sym_security_key_provider_token1] = ACTIONS(1086), - [aux_sym_send_env_token1] = ACTIONS(1086), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1086), - [aux_sym_server_alive_interval_token1] = ACTIONS(1086), - [aux_sym_session_type_token1] = ACTIONS(1086), - [aux_sym_set_env_token1] = ACTIONS(1086), - [aux_sym_stdin_null_token1] = ACTIONS(1086), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1086), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1086), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1086), - [aux_sym_syslog_facility_token1] = ACTIONS(1086), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1086), - [aux_sym_keep_alive_token1] = ACTIONS(1086), - [aux_sym_tag_token1] = ACTIONS(1086), - [aux_sym_tunnel_token1] = ACTIONS(1088), - [aux_sym_tunnel_device_token1] = ACTIONS(1086), - [aux_sym_update_host_keys_token1] = ACTIONS(1086), - [aux_sym_use_keychain_token1] = ACTIONS(1086), - [aux_sym_use_roaming_token1] = ACTIONS(1086), - [aux_sym_user_token1] = ACTIONS(1088), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1086), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1086), - [aux_sym_visual_host_key_token1] = ACTIONS(1086), - [aux_sym_xauth_location_token1] = ACTIONS(1086), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1093), + [anon_sym_DQUOTE] = ACTIONS(1095), + [aux_sym_match_token1] = ACTIONS(1091), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1091), + [aux_sym_address_family_token1] = ACTIONS(1091), + [aux_sym_batch_mode_token1] = ACTIONS(1091), + [aux_sym_bind_address_token1] = ACTIONS(1091), + [aux_sym_bind_interface_token1] = ACTIONS(1091), + [aux_sym_canonical_domains_token1] = ACTIONS(1091), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1091), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1091), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1091), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1091), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1091), + [aux_sym_certificate_file_token1] = ACTIONS(1091), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1091), + [aux_sym_channel_timeout_token1] = ACTIONS(1091), + [aux_sym_check_host_ip_token1] = ACTIONS(1091), + [aux_sym_ciphers_token1] = ACTIONS(1091), + [aux_sym_cipher_token1] = ACTIONS(1093), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1091), + [aux_sym_compression_token1] = ACTIONS(1091), + [aux_sym_connection_attempts_token1] = ACTIONS(1091), + [aux_sym_connect_timeout_token1] = ACTIONS(1091), + [aux_sym_control_master_token1] = ACTIONS(1091), + [aux_sym_control_path_token1] = ACTIONS(1091), + [aux_sym_control_persist_token1] = ACTIONS(1091), + [aux_sym_dynamic_forward_token1] = ACTIONS(1091), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1091), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1091), + [aux_sym_escape_char_token1] = ACTIONS(1091), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1091), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1091), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1091), + [aux_sym_forward_agent_token1] = ACTIONS(1091), + [aux_sym_forward_x11_token1] = ACTIONS(1093), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1091), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1091), + [aux_sym_gateway_ports_token1] = ACTIONS(1091), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1091), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1091), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1091), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1091), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1091), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1091), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1091), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1091), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1091), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1091), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1091), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1091), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1091), + [aux_sym_host_key_alias_token1] = ACTIONS(1091), + [aux_sym_hostname_token1] = ACTIONS(1091), + [aux_sym_identities_only_token1] = ACTIONS(1091), + [aux_sym_identity_agent_token1] = ACTIONS(1091), + [aux_sym_identity_file_token1] = ACTIONS(1091), + [aux_sym_ignore_unknown_token1] = ACTIONS(1091), + [aux_sym_include_token1] = ACTIONS(1091), + [aux_sym_ip_qos_token1] = ACTIONS(1091), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1091), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1091), + [aux_sym_kex_algorithms_token1] = ACTIONS(1091), + [aux_sym_known_hosts_command_token1] = ACTIONS(1091), + [aux_sym_local_command_token1] = ACTIONS(1091), + [aux_sym_local_forward_token1] = ACTIONS(1091), + [aux_sym_log_level_token1] = ACTIONS(1091), + [aux_sym_log_verbose_token1] = ACTIONS(1091), + [aux_sym_macs_token1] = ACTIONS(1091), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1091), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1091), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1091), + [aux_sym_password_authentication_token1] = ACTIONS(1091), + [aux_sym_permit_local_command_token1] = ACTIONS(1091), + [aux_sym_permit_remote_open_token1] = ACTIONS(1091), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1091), + [aux_sym_port_token1] = ACTIONS(1091), + [aux_sym_preferred_authentications_token1] = ACTIONS(1091), + [aux_sym_protocol_token1] = ACTIONS(1091), + [aux_sym_proxy_command_token1] = ACTIONS(1091), + [aux_sym_proxy_jump_token1] = ACTIONS(1091), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1091), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1091), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1091), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1091), + [aux_sym_rekey_limit_token1] = ACTIONS(1091), + [aux_sym_remote_command_token1] = ACTIONS(1091), + [aux_sym_remote_forward_token1] = ACTIONS(1091), + [aux_sym_request_tty_token1] = ACTIONS(1091), + [aux_sym_required_rsa_size_token1] = ACTIONS(1091), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1091), + [aux_sym_security_key_provider_token1] = ACTIONS(1091), + [aux_sym_send_env_token1] = ACTIONS(1091), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1091), + [aux_sym_server_alive_interval_token1] = ACTIONS(1091), + [aux_sym_session_type_token1] = ACTIONS(1091), + [aux_sym_set_env_token1] = ACTIONS(1091), + [aux_sym_stdin_null_token1] = ACTIONS(1091), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1091), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1091), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1091), + [aux_sym_syslog_facility_token1] = ACTIONS(1091), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1091), + [aux_sym_keep_alive_token1] = ACTIONS(1091), + [aux_sym_tag_token1] = ACTIONS(1091), + [aux_sym_tunnel_token1] = ACTIONS(1093), + [aux_sym_tunnel_device_token1] = ACTIONS(1091), + [aux_sym_update_host_keys_token1] = ACTIONS(1091), + [aux_sym_use_keychain_token1] = ACTIONS(1091), + [aux_sym_use_roaming_token1] = ACTIONS(1091), + [aux_sym_user_token1] = ACTIONS(1093), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1091), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1091), + [aux_sym_visual_host_key_token1] = ACTIONS(1091), + [aux_sym_xauth_location_token1] = ACTIONS(1091), }, [89] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1094), - [anon_sym_DQUOTE] = ACTIONS(1096), - [aux_sym_match_token1] = ACTIONS(1092), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1092), - [aux_sym_address_family_token1] = ACTIONS(1092), - [aux_sym_batch_mode_token1] = ACTIONS(1092), - [aux_sym_bind_address_token1] = ACTIONS(1092), - [aux_sym_bind_interface_token1] = ACTIONS(1092), - [aux_sym_canonical_domains_token1] = ACTIONS(1092), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1092), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1092), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1092), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1092), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1092), - [aux_sym_certificate_file_token1] = ACTIONS(1092), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1092), - [aux_sym_channel_timeout_token1] = ACTIONS(1092), - [aux_sym_check_host_ip_token1] = ACTIONS(1092), - [aux_sym_ciphers_token1] = ACTIONS(1092), - [aux_sym_cipher_token1] = ACTIONS(1094), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1092), - [aux_sym_compression_token1] = ACTIONS(1092), - [aux_sym_connection_attempts_token1] = ACTIONS(1092), - [aux_sym_connect_timeout_token1] = ACTIONS(1092), - [aux_sym_control_master_token1] = ACTIONS(1092), - [aux_sym_control_path_token1] = ACTIONS(1092), - [aux_sym_control_persist_token1] = ACTIONS(1092), - [aux_sym_dynamic_forward_token1] = ACTIONS(1092), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1092), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1092), - [aux_sym_escape_char_token1] = ACTIONS(1092), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1092), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1092), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1092), - [aux_sym_forward_agent_token1] = ACTIONS(1092), - [aux_sym_forward_x11_token1] = ACTIONS(1094), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1092), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1092), - [aux_sym_gateway_ports_token1] = ACTIONS(1092), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1092), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1092), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1092), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1092), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1092), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1092), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1092), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1092), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1092), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1092), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1092), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1092), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1092), - [aux_sym_host_key_alias_token1] = ACTIONS(1092), - [aux_sym_hostname_token1] = ACTIONS(1092), - [aux_sym_identities_only_token1] = ACTIONS(1092), - [aux_sym_identity_agent_token1] = ACTIONS(1092), - [aux_sym_identity_file_token1] = ACTIONS(1092), - [aux_sym_ignore_unknown_token1] = ACTIONS(1092), - [aux_sym_include_token1] = ACTIONS(1092), - [aux_sym_ip_qos_token1] = ACTIONS(1092), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1092), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1092), - [aux_sym_kex_algorithms_token1] = ACTIONS(1092), - [aux_sym_known_hosts_command_token1] = ACTIONS(1092), - [aux_sym_local_command_token1] = ACTIONS(1092), - [aux_sym_local_forward_token1] = ACTIONS(1092), - [aux_sym_log_level_token1] = ACTIONS(1092), - [aux_sym_log_verbose_token1] = ACTIONS(1092), - [aux_sym_macs_token1] = ACTIONS(1092), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1092), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1092), - [aux_sym_password_authentication_token1] = ACTIONS(1092), - [aux_sym_permit_local_command_token1] = ACTIONS(1092), - [aux_sym_permit_remote_open_token1] = ACTIONS(1092), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1092), - [aux_sym_port_token1] = ACTIONS(1092), - [aux_sym_preferred_authentications_token1] = ACTIONS(1092), - [aux_sym_protocol_token1] = ACTIONS(1092), - [aux_sym_proxy_command_token1] = ACTIONS(1092), - [aux_sym_proxy_jump_token1] = ACTIONS(1092), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1092), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1092), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1092), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1092), - [aux_sym_rekey_limit_token1] = ACTIONS(1092), - [aux_sym_remote_command_token1] = ACTIONS(1092), - [aux_sym_remote_forward_token1] = ACTIONS(1092), - [aux_sym_request_tty_token1] = ACTIONS(1092), - [aux_sym_required_rsa_size_token1] = ACTIONS(1092), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1092), - [aux_sym_security_key_provider_token1] = ACTIONS(1092), - [aux_sym_send_env_token1] = ACTIONS(1092), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1092), - [aux_sym_server_alive_interval_token1] = ACTIONS(1092), - [aux_sym_session_type_token1] = ACTIONS(1092), - [aux_sym_set_env_token1] = ACTIONS(1092), - [aux_sym_stdin_null_token1] = ACTIONS(1092), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1092), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1092), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1092), - [aux_sym_syslog_facility_token1] = ACTIONS(1092), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1092), - [aux_sym_keep_alive_token1] = ACTIONS(1092), - [aux_sym_tag_token1] = ACTIONS(1092), - [aux_sym_tunnel_token1] = ACTIONS(1094), - [aux_sym_tunnel_device_token1] = ACTIONS(1092), - [aux_sym_update_host_keys_token1] = ACTIONS(1092), - [aux_sym_use_keychain_token1] = ACTIONS(1092), - [aux_sym_use_roaming_token1] = ACTIONS(1092), - [aux_sym_user_token1] = ACTIONS(1094), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1092), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1092), - [aux_sym_visual_host_key_token1] = ACTIONS(1092), - [aux_sym_xauth_location_token1] = ACTIONS(1092), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1099), + [anon_sym_DQUOTE] = ACTIONS(1101), + [aux_sym_match_token1] = ACTIONS(1097), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1097), + [aux_sym_address_family_token1] = ACTIONS(1097), + [aux_sym_batch_mode_token1] = ACTIONS(1097), + [aux_sym_bind_address_token1] = ACTIONS(1097), + [aux_sym_bind_interface_token1] = ACTIONS(1097), + [aux_sym_canonical_domains_token1] = ACTIONS(1097), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1097), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1097), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1097), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1097), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1097), + [aux_sym_certificate_file_token1] = ACTIONS(1097), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1097), + [aux_sym_channel_timeout_token1] = ACTIONS(1097), + [aux_sym_check_host_ip_token1] = ACTIONS(1097), + [aux_sym_ciphers_token1] = ACTIONS(1097), + [aux_sym_cipher_token1] = ACTIONS(1099), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1097), + [aux_sym_compression_token1] = ACTIONS(1097), + [aux_sym_connection_attempts_token1] = ACTIONS(1097), + [aux_sym_connect_timeout_token1] = ACTIONS(1097), + [aux_sym_control_master_token1] = ACTIONS(1097), + [aux_sym_control_path_token1] = ACTIONS(1097), + [aux_sym_control_persist_token1] = ACTIONS(1097), + [aux_sym_dynamic_forward_token1] = ACTIONS(1097), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1097), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1097), + [aux_sym_escape_char_token1] = ACTIONS(1097), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1097), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1097), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1097), + [aux_sym_forward_agent_token1] = ACTIONS(1097), + [aux_sym_forward_x11_token1] = ACTIONS(1099), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1097), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1097), + [aux_sym_gateway_ports_token1] = ACTIONS(1097), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1097), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1097), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1097), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1097), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1097), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1097), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1097), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1097), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1097), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1097), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1097), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1097), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1097), + [aux_sym_host_key_alias_token1] = ACTIONS(1097), + [aux_sym_hostname_token1] = ACTIONS(1097), + [aux_sym_identities_only_token1] = ACTIONS(1097), + [aux_sym_identity_agent_token1] = ACTIONS(1097), + [aux_sym_identity_file_token1] = ACTIONS(1097), + [aux_sym_ignore_unknown_token1] = ACTIONS(1097), + [aux_sym_include_token1] = ACTIONS(1097), + [aux_sym_ip_qos_token1] = ACTIONS(1097), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1097), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1097), + [aux_sym_kex_algorithms_token1] = ACTIONS(1097), + [aux_sym_known_hosts_command_token1] = ACTIONS(1097), + [aux_sym_local_command_token1] = ACTIONS(1097), + [aux_sym_local_forward_token1] = ACTIONS(1097), + [aux_sym_log_level_token1] = ACTIONS(1097), + [aux_sym_log_verbose_token1] = ACTIONS(1097), + [aux_sym_macs_token1] = ACTIONS(1097), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1097), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1097), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1097), + [aux_sym_password_authentication_token1] = ACTIONS(1097), + [aux_sym_permit_local_command_token1] = ACTIONS(1097), + [aux_sym_permit_remote_open_token1] = ACTIONS(1097), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1097), + [aux_sym_port_token1] = ACTIONS(1097), + [aux_sym_preferred_authentications_token1] = ACTIONS(1097), + [aux_sym_protocol_token1] = ACTIONS(1097), + [aux_sym_proxy_command_token1] = ACTIONS(1097), + [aux_sym_proxy_jump_token1] = ACTIONS(1097), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1097), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1097), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1097), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1097), + [aux_sym_rekey_limit_token1] = ACTIONS(1097), + [aux_sym_remote_command_token1] = ACTIONS(1097), + [aux_sym_remote_forward_token1] = ACTIONS(1097), + [aux_sym_request_tty_token1] = ACTIONS(1097), + [aux_sym_required_rsa_size_token1] = ACTIONS(1097), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1097), + [aux_sym_security_key_provider_token1] = ACTIONS(1097), + [aux_sym_send_env_token1] = ACTIONS(1097), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1097), + [aux_sym_server_alive_interval_token1] = ACTIONS(1097), + [aux_sym_session_type_token1] = ACTIONS(1097), + [aux_sym_set_env_token1] = ACTIONS(1097), + [aux_sym_stdin_null_token1] = ACTIONS(1097), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1097), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1097), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1097), + [aux_sym_syslog_facility_token1] = ACTIONS(1097), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1097), + [aux_sym_keep_alive_token1] = ACTIONS(1097), + [aux_sym_tag_token1] = ACTIONS(1097), + [aux_sym_tunnel_token1] = ACTIONS(1099), + [aux_sym_tunnel_device_token1] = ACTIONS(1097), + [aux_sym_update_host_keys_token1] = ACTIONS(1097), + [aux_sym_use_keychain_token1] = ACTIONS(1097), + [aux_sym_use_roaming_token1] = ACTIONS(1097), + [aux_sym_user_token1] = ACTIONS(1099), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1097), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1097), + [aux_sym_visual_host_key_token1] = ACTIONS(1097), + [aux_sym_xauth_location_token1] = ACTIONS(1097), }, [90] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1100), - [anon_sym_DQUOTE] = ACTIONS(1102), - [aux_sym_match_token1] = ACTIONS(1098), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1098), - [aux_sym_address_family_token1] = ACTIONS(1098), - [aux_sym_batch_mode_token1] = ACTIONS(1098), - [aux_sym_bind_address_token1] = ACTIONS(1098), - [aux_sym_bind_interface_token1] = ACTIONS(1098), - [aux_sym_canonical_domains_token1] = ACTIONS(1098), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1098), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1098), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1098), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1098), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1098), - [aux_sym_certificate_file_token1] = ACTIONS(1098), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1098), - [aux_sym_channel_timeout_token1] = ACTIONS(1098), - [aux_sym_check_host_ip_token1] = ACTIONS(1098), - [aux_sym_ciphers_token1] = ACTIONS(1098), - [aux_sym_cipher_token1] = ACTIONS(1100), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1098), - [aux_sym_compression_token1] = ACTIONS(1098), - [aux_sym_connection_attempts_token1] = ACTIONS(1098), - [aux_sym_connect_timeout_token1] = ACTIONS(1098), - [aux_sym_control_master_token1] = ACTIONS(1098), - [aux_sym_control_path_token1] = ACTIONS(1098), - [aux_sym_control_persist_token1] = ACTIONS(1098), - [aux_sym_dynamic_forward_token1] = ACTIONS(1098), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1098), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1098), - [aux_sym_escape_char_token1] = ACTIONS(1098), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1098), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1098), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1098), - [aux_sym_forward_agent_token1] = ACTIONS(1098), - [aux_sym_forward_x11_token1] = ACTIONS(1100), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1098), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1098), - [aux_sym_gateway_ports_token1] = ACTIONS(1098), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1098), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1098), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1098), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1098), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1098), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1098), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1098), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1098), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1098), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1098), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1098), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1098), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1098), - [aux_sym_host_key_alias_token1] = ACTIONS(1098), - [aux_sym_hostname_token1] = ACTIONS(1098), - [aux_sym_identities_only_token1] = ACTIONS(1098), - [aux_sym_identity_agent_token1] = ACTIONS(1098), - [aux_sym_identity_file_token1] = ACTIONS(1098), - [aux_sym_ignore_unknown_token1] = ACTIONS(1098), - [aux_sym_include_token1] = ACTIONS(1098), - [aux_sym_ip_qos_token1] = ACTIONS(1098), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1098), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1098), - [aux_sym_kex_algorithms_token1] = ACTIONS(1098), - [aux_sym_known_hosts_command_token1] = ACTIONS(1098), - [aux_sym_local_command_token1] = ACTIONS(1098), - [aux_sym_local_forward_token1] = ACTIONS(1098), - [aux_sym_log_level_token1] = ACTIONS(1098), - [aux_sym_log_verbose_token1] = ACTIONS(1098), - [aux_sym_macs_token1] = ACTIONS(1098), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1098), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1098), - [aux_sym_password_authentication_token1] = ACTIONS(1098), - [aux_sym_permit_local_command_token1] = ACTIONS(1098), - [aux_sym_permit_remote_open_token1] = ACTIONS(1098), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1098), - [aux_sym_port_token1] = ACTIONS(1098), - [aux_sym_preferred_authentications_token1] = ACTIONS(1098), - [aux_sym_protocol_token1] = ACTIONS(1098), - [aux_sym_proxy_command_token1] = ACTIONS(1098), - [aux_sym_proxy_jump_token1] = ACTIONS(1098), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1098), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1098), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1098), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1098), - [aux_sym_rekey_limit_token1] = ACTIONS(1098), - [aux_sym_remote_command_token1] = ACTIONS(1098), - [aux_sym_remote_forward_token1] = ACTIONS(1098), - [aux_sym_request_tty_token1] = ACTIONS(1098), - [aux_sym_required_rsa_size_token1] = ACTIONS(1098), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1098), - [aux_sym_security_key_provider_token1] = ACTIONS(1098), - [aux_sym_send_env_token1] = ACTIONS(1098), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1098), - [aux_sym_server_alive_interval_token1] = ACTIONS(1098), - [aux_sym_session_type_token1] = ACTIONS(1098), - [aux_sym_set_env_token1] = ACTIONS(1098), - [aux_sym_stdin_null_token1] = ACTIONS(1098), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1098), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1098), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1098), - [aux_sym_syslog_facility_token1] = ACTIONS(1098), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1098), - [aux_sym_keep_alive_token1] = ACTIONS(1098), - [aux_sym_tag_token1] = ACTIONS(1098), - [aux_sym_tunnel_token1] = ACTIONS(1100), - [aux_sym_tunnel_device_token1] = ACTIONS(1098), - [aux_sym_update_host_keys_token1] = ACTIONS(1098), - [aux_sym_use_keychain_token1] = ACTIONS(1098), - [aux_sym_use_roaming_token1] = ACTIONS(1098), - [aux_sym_user_token1] = ACTIONS(1100), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1098), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1098), - [aux_sym_visual_host_key_token1] = ACTIONS(1098), - [aux_sym_xauth_location_token1] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(1107), + [aux_sym_match_token1] = ACTIONS(1103), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1103), + [aux_sym_address_family_token1] = ACTIONS(1103), + [aux_sym_batch_mode_token1] = ACTIONS(1103), + [aux_sym_bind_address_token1] = ACTIONS(1103), + [aux_sym_bind_interface_token1] = ACTIONS(1103), + [aux_sym_canonical_domains_token1] = ACTIONS(1103), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1103), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1103), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1103), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1103), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1103), + [aux_sym_certificate_file_token1] = ACTIONS(1103), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1103), + [aux_sym_channel_timeout_token1] = ACTIONS(1103), + [aux_sym_check_host_ip_token1] = ACTIONS(1103), + [aux_sym_ciphers_token1] = ACTIONS(1103), + [aux_sym_cipher_token1] = ACTIONS(1105), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1103), + [aux_sym_compression_token1] = ACTIONS(1103), + [aux_sym_connection_attempts_token1] = ACTIONS(1103), + [aux_sym_connect_timeout_token1] = ACTIONS(1103), + [aux_sym_control_master_token1] = ACTIONS(1103), + [aux_sym_control_path_token1] = ACTIONS(1103), + [aux_sym_control_persist_token1] = ACTIONS(1103), + [aux_sym_dynamic_forward_token1] = ACTIONS(1103), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1103), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1103), + [aux_sym_escape_char_token1] = ACTIONS(1103), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1103), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1103), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1103), + [aux_sym_forward_agent_token1] = ACTIONS(1103), + [aux_sym_forward_x11_token1] = ACTIONS(1105), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1103), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1103), + [aux_sym_gateway_ports_token1] = ACTIONS(1103), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1103), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1103), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1103), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1103), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1103), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1103), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1103), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1103), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1103), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1103), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1103), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1103), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1103), + [aux_sym_host_key_alias_token1] = ACTIONS(1103), + [aux_sym_hostname_token1] = ACTIONS(1103), + [aux_sym_identities_only_token1] = ACTIONS(1103), + [aux_sym_identity_agent_token1] = ACTIONS(1103), + [aux_sym_identity_file_token1] = ACTIONS(1103), + [aux_sym_ignore_unknown_token1] = ACTIONS(1103), + [aux_sym_include_token1] = ACTIONS(1103), + [aux_sym_ip_qos_token1] = ACTIONS(1103), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1103), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1103), + [aux_sym_kex_algorithms_token1] = ACTIONS(1103), + [aux_sym_known_hosts_command_token1] = ACTIONS(1103), + [aux_sym_local_command_token1] = ACTIONS(1103), + [aux_sym_local_forward_token1] = ACTIONS(1103), + [aux_sym_log_level_token1] = ACTIONS(1103), + [aux_sym_log_verbose_token1] = ACTIONS(1103), + [aux_sym_macs_token1] = ACTIONS(1103), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1103), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1103), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1103), + [aux_sym_password_authentication_token1] = ACTIONS(1103), + [aux_sym_permit_local_command_token1] = ACTIONS(1103), + [aux_sym_permit_remote_open_token1] = ACTIONS(1103), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1103), + [aux_sym_port_token1] = ACTIONS(1103), + [aux_sym_preferred_authentications_token1] = ACTIONS(1103), + [aux_sym_protocol_token1] = ACTIONS(1103), + [aux_sym_proxy_command_token1] = ACTIONS(1103), + [aux_sym_proxy_jump_token1] = ACTIONS(1103), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1103), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1103), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1103), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1103), + [aux_sym_rekey_limit_token1] = ACTIONS(1103), + [aux_sym_remote_command_token1] = ACTIONS(1103), + [aux_sym_remote_forward_token1] = ACTIONS(1103), + [aux_sym_request_tty_token1] = ACTIONS(1103), + [aux_sym_required_rsa_size_token1] = ACTIONS(1103), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1103), + [aux_sym_security_key_provider_token1] = ACTIONS(1103), + [aux_sym_send_env_token1] = ACTIONS(1103), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1103), + [aux_sym_server_alive_interval_token1] = ACTIONS(1103), + [aux_sym_session_type_token1] = ACTIONS(1103), + [aux_sym_set_env_token1] = ACTIONS(1103), + [aux_sym_stdin_null_token1] = ACTIONS(1103), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1103), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1103), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1103), + [aux_sym_syslog_facility_token1] = ACTIONS(1103), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1103), + [aux_sym_keep_alive_token1] = ACTIONS(1103), + [aux_sym_tag_token1] = ACTIONS(1103), + [aux_sym_tunnel_token1] = ACTIONS(1105), + [aux_sym_tunnel_device_token1] = ACTIONS(1103), + [aux_sym_update_host_keys_token1] = ACTIONS(1103), + [aux_sym_use_keychain_token1] = ACTIONS(1103), + [aux_sym_use_roaming_token1] = ACTIONS(1103), + [aux_sym_user_token1] = ACTIONS(1105), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1103), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1103), + [aux_sym_visual_host_key_token1] = ACTIONS(1103), + [aux_sym_xauth_location_token1] = ACTIONS(1103), }, [91] = { - [ts_builtin_sym_end] = ACTIONS(1104), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1106), - [anon_sym_DQUOTE] = ACTIONS(1108), - [aux_sym_match_token1] = ACTIONS(1104), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1104), - [aux_sym_address_family_token1] = ACTIONS(1104), - [aux_sym_batch_mode_token1] = ACTIONS(1104), - [aux_sym_bind_address_token1] = ACTIONS(1104), - [aux_sym_bind_interface_token1] = ACTIONS(1104), - [aux_sym_canonical_domains_token1] = ACTIONS(1104), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1104), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1104), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1104), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1104), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1104), - [aux_sym_certificate_file_token1] = ACTIONS(1104), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1104), - [aux_sym_channel_timeout_token1] = ACTIONS(1104), - [aux_sym_check_host_ip_token1] = ACTIONS(1104), - [aux_sym_ciphers_token1] = ACTIONS(1104), - [aux_sym_cipher_token1] = ACTIONS(1106), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1104), - [aux_sym_compression_token1] = ACTIONS(1104), - [aux_sym_connection_attempts_token1] = ACTIONS(1104), - [aux_sym_connect_timeout_token1] = ACTIONS(1104), - [aux_sym_control_master_token1] = ACTIONS(1104), - [aux_sym_control_path_token1] = ACTIONS(1104), - [aux_sym_control_persist_token1] = ACTIONS(1104), - [aux_sym_dynamic_forward_token1] = ACTIONS(1104), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1104), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1104), - [aux_sym_escape_char_token1] = ACTIONS(1104), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1104), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1104), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1104), - [aux_sym_forward_agent_token1] = ACTIONS(1104), - [aux_sym_forward_x11_token1] = ACTIONS(1106), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1104), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1104), - [aux_sym_gateway_ports_token1] = ACTIONS(1104), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1104), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1104), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1104), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1104), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1104), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1104), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1104), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1104), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1104), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1104), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1104), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1104), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1104), - [aux_sym_host_key_alias_token1] = ACTIONS(1104), - [aux_sym_hostname_token1] = ACTIONS(1104), - [aux_sym_identities_only_token1] = ACTIONS(1104), - [aux_sym_identity_agent_token1] = ACTIONS(1104), - [aux_sym_identity_file_token1] = ACTIONS(1104), - [aux_sym_ignore_unknown_token1] = ACTIONS(1104), - [aux_sym_include_token1] = ACTIONS(1104), - [aux_sym_ip_qos_token1] = ACTIONS(1104), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1104), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1104), - [aux_sym_kex_algorithms_token1] = ACTIONS(1104), - [aux_sym_known_hosts_command_token1] = ACTIONS(1104), - [aux_sym_local_command_token1] = ACTIONS(1104), - [aux_sym_local_forward_token1] = ACTIONS(1104), - [aux_sym_log_level_token1] = ACTIONS(1104), - [aux_sym_log_verbose_token1] = ACTIONS(1104), - [aux_sym_macs_token1] = ACTIONS(1104), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1104), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1104), - [aux_sym_password_authentication_token1] = ACTIONS(1104), - [aux_sym_permit_local_command_token1] = ACTIONS(1104), - [aux_sym_permit_remote_open_token1] = ACTIONS(1104), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1104), - [aux_sym_port_token1] = ACTIONS(1104), - [aux_sym_preferred_authentications_token1] = ACTIONS(1104), - [aux_sym_protocol_token1] = ACTIONS(1104), - [aux_sym_proxy_command_token1] = ACTIONS(1104), - [aux_sym_proxy_jump_token1] = ACTIONS(1104), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1104), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1104), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1104), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1104), - [aux_sym_rekey_limit_token1] = ACTIONS(1104), - [aux_sym_remote_command_token1] = ACTIONS(1104), - [aux_sym_remote_forward_token1] = ACTIONS(1104), - [aux_sym_request_tty_token1] = ACTIONS(1104), - [aux_sym_required_rsa_size_token1] = ACTIONS(1104), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1104), - [aux_sym_security_key_provider_token1] = ACTIONS(1104), - [aux_sym_send_env_token1] = ACTIONS(1104), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1104), - [aux_sym_server_alive_interval_token1] = ACTIONS(1104), - [aux_sym_session_type_token1] = ACTIONS(1104), - [aux_sym_set_env_token1] = ACTIONS(1104), - [aux_sym_stdin_null_token1] = ACTIONS(1104), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1104), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1104), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1104), - [aux_sym_syslog_facility_token1] = ACTIONS(1104), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1104), - [aux_sym_keep_alive_token1] = ACTIONS(1104), - [aux_sym_tag_token1] = ACTIONS(1104), - [aux_sym_tunnel_token1] = ACTIONS(1106), - [aux_sym_tunnel_device_token1] = ACTIONS(1104), - [aux_sym_update_host_keys_token1] = ACTIONS(1104), - [aux_sym_use_keychain_token1] = ACTIONS(1104), - [aux_sym_use_roaming_token1] = ACTIONS(1104), - [aux_sym_user_token1] = ACTIONS(1106), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1104), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1104), - [aux_sym_visual_host_key_token1] = ACTIONS(1104), - [aux_sym_xauth_location_token1] = ACTIONS(1104), + [ts_builtin_sym_end] = ACTIONS(1109), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1113), + [aux_sym_match_token1] = ACTIONS(1109), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1109), + [aux_sym_address_family_token1] = ACTIONS(1109), + [aux_sym_batch_mode_token1] = ACTIONS(1109), + [aux_sym_bind_address_token1] = ACTIONS(1109), + [aux_sym_bind_interface_token1] = ACTIONS(1109), + [aux_sym_canonical_domains_token1] = ACTIONS(1109), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1109), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1109), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1109), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1109), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1109), + [aux_sym_certificate_file_token1] = ACTIONS(1109), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1109), + [aux_sym_channel_timeout_token1] = ACTIONS(1109), + [aux_sym_check_host_ip_token1] = ACTIONS(1109), + [aux_sym_ciphers_token1] = ACTIONS(1109), + [aux_sym_cipher_token1] = ACTIONS(1111), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1109), + [aux_sym_compression_token1] = ACTIONS(1109), + [aux_sym_connection_attempts_token1] = ACTIONS(1109), + [aux_sym_connect_timeout_token1] = ACTIONS(1109), + [aux_sym_control_master_token1] = ACTIONS(1109), + [aux_sym_control_path_token1] = ACTIONS(1109), + [aux_sym_control_persist_token1] = ACTIONS(1109), + [aux_sym_dynamic_forward_token1] = ACTIONS(1109), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1109), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1109), + [aux_sym_escape_char_token1] = ACTIONS(1109), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1109), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1109), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1109), + [aux_sym_forward_agent_token1] = ACTIONS(1109), + [aux_sym_forward_x11_token1] = ACTIONS(1111), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1109), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1109), + [aux_sym_gateway_ports_token1] = ACTIONS(1109), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1109), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1109), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1109), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1109), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1109), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1109), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1109), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1109), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1109), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1109), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1109), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1109), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1109), + [aux_sym_host_key_alias_token1] = ACTIONS(1109), + [aux_sym_hostname_token1] = ACTIONS(1109), + [aux_sym_identities_only_token1] = ACTIONS(1109), + [aux_sym_identity_agent_token1] = ACTIONS(1109), + [aux_sym_identity_file_token1] = ACTIONS(1109), + [aux_sym_ignore_unknown_token1] = ACTIONS(1109), + [aux_sym_include_token1] = ACTIONS(1109), + [aux_sym_ip_qos_token1] = ACTIONS(1109), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1109), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1109), + [aux_sym_kex_algorithms_token1] = ACTIONS(1109), + [aux_sym_known_hosts_command_token1] = ACTIONS(1109), + [aux_sym_local_command_token1] = ACTIONS(1109), + [aux_sym_local_forward_token1] = ACTIONS(1109), + [aux_sym_log_level_token1] = ACTIONS(1109), + [aux_sym_log_verbose_token1] = ACTIONS(1109), + [aux_sym_macs_token1] = ACTIONS(1109), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1109), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1109), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1109), + [aux_sym_password_authentication_token1] = ACTIONS(1109), + [aux_sym_permit_local_command_token1] = ACTIONS(1109), + [aux_sym_permit_remote_open_token1] = ACTIONS(1109), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1109), + [aux_sym_port_token1] = ACTIONS(1109), + [aux_sym_preferred_authentications_token1] = ACTIONS(1109), + [aux_sym_protocol_token1] = ACTIONS(1109), + [aux_sym_proxy_command_token1] = ACTIONS(1109), + [aux_sym_proxy_jump_token1] = ACTIONS(1109), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1109), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1109), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1109), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1109), + [aux_sym_rekey_limit_token1] = ACTIONS(1109), + [aux_sym_remote_command_token1] = ACTIONS(1109), + [aux_sym_remote_forward_token1] = ACTIONS(1109), + [aux_sym_request_tty_token1] = ACTIONS(1109), + [aux_sym_required_rsa_size_token1] = ACTIONS(1109), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1109), + [aux_sym_security_key_provider_token1] = ACTIONS(1109), + [aux_sym_send_env_token1] = ACTIONS(1109), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1109), + [aux_sym_server_alive_interval_token1] = ACTIONS(1109), + [aux_sym_session_type_token1] = ACTIONS(1109), + [aux_sym_set_env_token1] = ACTIONS(1109), + [aux_sym_stdin_null_token1] = ACTIONS(1109), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1109), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1109), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1109), + [aux_sym_syslog_facility_token1] = ACTIONS(1109), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1109), + [aux_sym_keep_alive_token1] = ACTIONS(1109), + [aux_sym_tag_token1] = ACTIONS(1109), + [aux_sym_tunnel_token1] = ACTIONS(1111), + [aux_sym_tunnel_device_token1] = ACTIONS(1109), + [aux_sym_update_host_keys_token1] = ACTIONS(1109), + [aux_sym_use_keychain_token1] = ACTIONS(1109), + [aux_sym_use_roaming_token1] = ACTIONS(1109), + [aux_sym_user_token1] = ACTIONS(1111), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1109), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1109), + [aux_sym_visual_host_key_token1] = ACTIONS(1109), + [aux_sym_xauth_location_token1] = ACTIONS(1109), }, [92] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1112), - [anon_sym_DQUOTE] = ACTIONS(1114), - [aux_sym_match_token1] = ACTIONS(1110), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1110), - [aux_sym_address_family_token1] = ACTIONS(1110), - [aux_sym_batch_mode_token1] = ACTIONS(1110), - [aux_sym_bind_address_token1] = ACTIONS(1110), - [aux_sym_bind_interface_token1] = ACTIONS(1110), - [aux_sym_canonical_domains_token1] = ACTIONS(1110), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1110), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1110), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1110), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1110), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1110), - [aux_sym_certificate_file_token1] = ACTIONS(1110), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1110), - [aux_sym_channel_timeout_token1] = ACTIONS(1110), - [aux_sym_check_host_ip_token1] = ACTIONS(1110), - [aux_sym_ciphers_token1] = ACTIONS(1110), - [aux_sym_cipher_token1] = ACTIONS(1112), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1110), - [aux_sym_compression_token1] = ACTIONS(1110), - [aux_sym_connection_attempts_token1] = ACTIONS(1110), - [aux_sym_connect_timeout_token1] = ACTIONS(1110), - [aux_sym_control_master_token1] = ACTIONS(1110), - [aux_sym_control_path_token1] = ACTIONS(1110), - [aux_sym_control_persist_token1] = ACTIONS(1110), - [aux_sym_dynamic_forward_token1] = ACTIONS(1110), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1110), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1110), - [aux_sym_escape_char_token1] = ACTIONS(1110), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1110), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1110), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1110), - [aux_sym_forward_agent_token1] = ACTIONS(1110), - [aux_sym_forward_x11_token1] = ACTIONS(1112), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1110), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1110), - [aux_sym_gateway_ports_token1] = ACTIONS(1110), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1110), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1110), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1110), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1110), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1110), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1110), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1110), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1110), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1110), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1110), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1110), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1110), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1110), - [aux_sym_host_key_alias_token1] = ACTIONS(1110), - [aux_sym_hostname_token1] = ACTIONS(1110), - [aux_sym_identities_only_token1] = ACTIONS(1110), - [aux_sym_identity_agent_token1] = ACTIONS(1110), - [aux_sym_identity_file_token1] = ACTIONS(1110), - [aux_sym_ignore_unknown_token1] = ACTIONS(1110), - [aux_sym_include_token1] = ACTIONS(1110), - [aux_sym_ip_qos_token1] = ACTIONS(1110), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1110), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1110), - [aux_sym_kex_algorithms_token1] = ACTIONS(1110), - [aux_sym_known_hosts_command_token1] = ACTIONS(1110), - [aux_sym_local_command_token1] = ACTIONS(1110), - [aux_sym_local_forward_token1] = ACTIONS(1110), - [aux_sym_log_level_token1] = ACTIONS(1110), - [aux_sym_log_verbose_token1] = ACTIONS(1110), - [aux_sym_macs_token1] = ACTIONS(1110), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1110), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1110), - [aux_sym_password_authentication_token1] = ACTIONS(1110), - [aux_sym_permit_local_command_token1] = ACTIONS(1110), - [aux_sym_permit_remote_open_token1] = ACTIONS(1110), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1110), - [aux_sym_port_token1] = ACTIONS(1110), - [aux_sym_preferred_authentications_token1] = ACTIONS(1110), - [aux_sym_protocol_token1] = ACTIONS(1110), - [aux_sym_proxy_command_token1] = ACTIONS(1110), - [aux_sym_proxy_jump_token1] = ACTIONS(1110), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1110), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1110), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1110), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1110), - [aux_sym_rekey_limit_token1] = ACTIONS(1110), - [aux_sym_remote_command_token1] = ACTIONS(1110), - [aux_sym_remote_forward_token1] = ACTIONS(1110), - [aux_sym_request_tty_token1] = ACTIONS(1110), - [aux_sym_required_rsa_size_token1] = ACTIONS(1110), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1110), - [aux_sym_security_key_provider_token1] = ACTIONS(1110), - [aux_sym_send_env_token1] = ACTIONS(1110), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1110), - [aux_sym_server_alive_interval_token1] = ACTIONS(1110), - [aux_sym_session_type_token1] = ACTIONS(1110), - [aux_sym_set_env_token1] = ACTIONS(1110), - [aux_sym_stdin_null_token1] = ACTIONS(1110), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1110), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1110), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1110), - [aux_sym_syslog_facility_token1] = ACTIONS(1110), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1110), - [aux_sym_keep_alive_token1] = ACTIONS(1110), - [aux_sym_tag_token1] = ACTIONS(1110), - [aux_sym_tunnel_token1] = ACTIONS(1112), - [aux_sym_tunnel_device_token1] = ACTIONS(1110), - [aux_sym_update_host_keys_token1] = ACTIONS(1110), - [aux_sym_use_keychain_token1] = ACTIONS(1110), - [aux_sym_use_roaming_token1] = ACTIONS(1110), - [aux_sym_user_token1] = ACTIONS(1112), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1110), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1110), - [aux_sym_visual_host_key_token1] = ACTIONS(1110), - [aux_sym_xauth_location_token1] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1117), + [anon_sym_DQUOTE] = ACTIONS(1119), + [aux_sym_match_token1] = ACTIONS(1115), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1115), + [aux_sym_address_family_token1] = ACTIONS(1115), + [aux_sym_batch_mode_token1] = ACTIONS(1115), + [aux_sym_bind_address_token1] = ACTIONS(1115), + [aux_sym_bind_interface_token1] = ACTIONS(1115), + [aux_sym_canonical_domains_token1] = ACTIONS(1115), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1115), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1115), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1115), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1115), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1115), + [aux_sym_certificate_file_token1] = ACTIONS(1115), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1115), + [aux_sym_channel_timeout_token1] = ACTIONS(1115), + [aux_sym_check_host_ip_token1] = ACTIONS(1115), + [aux_sym_ciphers_token1] = ACTIONS(1115), + [aux_sym_cipher_token1] = ACTIONS(1117), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1115), + [aux_sym_compression_token1] = ACTIONS(1115), + [aux_sym_connection_attempts_token1] = ACTIONS(1115), + [aux_sym_connect_timeout_token1] = ACTIONS(1115), + [aux_sym_control_master_token1] = ACTIONS(1115), + [aux_sym_control_path_token1] = ACTIONS(1115), + [aux_sym_control_persist_token1] = ACTIONS(1115), + [aux_sym_dynamic_forward_token1] = ACTIONS(1115), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1115), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1115), + [aux_sym_escape_char_token1] = ACTIONS(1115), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1115), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1115), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1115), + [aux_sym_forward_agent_token1] = ACTIONS(1115), + [aux_sym_forward_x11_token1] = ACTIONS(1117), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1115), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1115), + [aux_sym_gateway_ports_token1] = ACTIONS(1115), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1115), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1115), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1115), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1115), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1115), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1115), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1115), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1115), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1115), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1115), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1115), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1115), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1115), + [aux_sym_host_key_alias_token1] = ACTIONS(1115), + [aux_sym_hostname_token1] = ACTIONS(1115), + [aux_sym_identities_only_token1] = ACTIONS(1115), + [aux_sym_identity_agent_token1] = ACTIONS(1115), + [aux_sym_identity_file_token1] = ACTIONS(1115), + [aux_sym_ignore_unknown_token1] = ACTIONS(1115), + [aux_sym_include_token1] = ACTIONS(1115), + [aux_sym_ip_qos_token1] = ACTIONS(1115), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1115), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1115), + [aux_sym_kex_algorithms_token1] = ACTIONS(1115), + [aux_sym_known_hosts_command_token1] = ACTIONS(1115), + [aux_sym_local_command_token1] = ACTIONS(1115), + [aux_sym_local_forward_token1] = ACTIONS(1115), + [aux_sym_log_level_token1] = ACTIONS(1115), + [aux_sym_log_verbose_token1] = ACTIONS(1115), + [aux_sym_macs_token1] = ACTIONS(1115), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1115), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1115), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1115), + [aux_sym_password_authentication_token1] = ACTIONS(1115), + [aux_sym_permit_local_command_token1] = ACTIONS(1115), + [aux_sym_permit_remote_open_token1] = ACTIONS(1115), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1115), + [aux_sym_port_token1] = ACTIONS(1115), + [aux_sym_preferred_authentications_token1] = ACTIONS(1115), + [aux_sym_protocol_token1] = ACTIONS(1115), + [aux_sym_proxy_command_token1] = ACTIONS(1115), + [aux_sym_proxy_jump_token1] = ACTIONS(1115), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1115), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1115), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1115), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1115), + [aux_sym_rekey_limit_token1] = ACTIONS(1115), + [aux_sym_remote_command_token1] = ACTIONS(1115), + [aux_sym_remote_forward_token1] = ACTIONS(1115), + [aux_sym_request_tty_token1] = ACTIONS(1115), + [aux_sym_required_rsa_size_token1] = ACTIONS(1115), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1115), + [aux_sym_security_key_provider_token1] = ACTIONS(1115), + [aux_sym_send_env_token1] = ACTIONS(1115), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1115), + [aux_sym_server_alive_interval_token1] = ACTIONS(1115), + [aux_sym_session_type_token1] = ACTIONS(1115), + [aux_sym_set_env_token1] = ACTIONS(1115), + [aux_sym_stdin_null_token1] = ACTIONS(1115), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1115), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1115), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1115), + [aux_sym_syslog_facility_token1] = ACTIONS(1115), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1115), + [aux_sym_keep_alive_token1] = ACTIONS(1115), + [aux_sym_tag_token1] = ACTIONS(1115), + [aux_sym_tunnel_token1] = ACTIONS(1117), + [aux_sym_tunnel_device_token1] = ACTIONS(1115), + [aux_sym_update_host_keys_token1] = ACTIONS(1115), + [aux_sym_use_keychain_token1] = ACTIONS(1115), + [aux_sym_use_roaming_token1] = ACTIONS(1115), + [aux_sym_user_token1] = ACTIONS(1117), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1115), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1115), + [aux_sym_visual_host_key_token1] = ACTIONS(1115), + [aux_sym_xauth_location_token1] = ACTIONS(1115), }, [93] = { - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1118), - [anon_sym_DQUOTE] = ACTIONS(1120), - [aux_sym_match_token1] = ACTIONS(1116), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1116), - [aux_sym_address_family_token1] = ACTIONS(1116), - [aux_sym_batch_mode_token1] = ACTIONS(1116), - [aux_sym_bind_address_token1] = ACTIONS(1116), - [aux_sym_bind_interface_token1] = ACTIONS(1116), - [aux_sym_canonical_domains_token1] = ACTIONS(1116), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1116), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1116), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1116), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1116), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1116), - [aux_sym_certificate_file_token1] = ACTIONS(1116), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1116), - [aux_sym_channel_timeout_token1] = ACTIONS(1116), - [aux_sym_check_host_ip_token1] = ACTIONS(1116), - [aux_sym_ciphers_token1] = ACTIONS(1116), - [aux_sym_cipher_token1] = ACTIONS(1118), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1116), - [aux_sym_compression_token1] = ACTIONS(1116), - [aux_sym_connection_attempts_token1] = ACTIONS(1116), - [aux_sym_connect_timeout_token1] = ACTIONS(1116), - [aux_sym_control_master_token1] = ACTIONS(1116), - [aux_sym_control_path_token1] = ACTIONS(1116), - [aux_sym_control_persist_token1] = ACTIONS(1116), - [aux_sym_dynamic_forward_token1] = ACTIONS(1116), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1116), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1116), - [aux_sym_escape_char_token1] = ACTIONS(1116), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1116), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1116), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1116), - [aux_sym_forward_agent_token1] = ACTIONS(1116), - [aux_sym_forward_x11_token1] = ACTIONS(1118), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1116), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1116), - [aux_sym_gateway_ports_token1] = ACTIONS(1116), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1116), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1116), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1116), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1116), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1116), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1116), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1116), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1116), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1116), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1116), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1116), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1116), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1116), - [aux_sym_host_key_alias_token1] = ACTIONS(1116), - [aux_sym_hostname_token1] = ACTIONS(1116), - [aux_sym_identities_only_token1] = ACTIONS(1116), - [aux_sym_identity_agent_token1] = ACTIONS(1116), - [aux_sym_identity_file_token1] = ACTIONS(1116), - [aux_sym_ignore_unknown_token1] = ACTIONS(1116), - [aux_sym_include_token1] = ACTIONS(1116), - [aux_sym_ip_qos_token1] = ACTIONS(1116), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1116), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1116), - [aux_sym_kex_algorithms_token1] = ACTIONS(1116), - [aux_sym_known_hosts_command_token1] = ACTIONS(1116), - [aux_sym_local_command_token1] = ACTIONS(1116), - [aux_sym_local_forward_token1] = ACTIONS(1116), - [aux_sym_log_level_token1] = ACTIONS(1116), - [aux_sym_log_verbose_token1] = ACTIONS(1116), - [aux_sym_macs_token1] = ACTIONS(1116), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1116), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1116), - [aux_sym_password_authentication_token1] = ACTIONS(1116), - [aux_sym_permit_local_command_token1] = ACTIONS(1116), - [aux_sym_permit_remote_open_token1] = ACTIONS(1116), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1116), - [aux_sym_port_token1] = ACTIONS(1116), - [aux_sym_preferred_authentications_token1] = ACTIONS(1116), - [aux_sym_protocol_token1] = ACTIONS(1116), - [aux_sym_proxy_command_token1] = ACTIONS(1116), - [aux_sym_proxy_jump_token1] = ACTIONS(1116), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1116), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1116), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1116), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1116), - [aux_sym_rekey_limit_token1] = ACTIONS(1116), - [aux_sym_remote_command_token1] = ACTIONS(1116), - [aux_sym_remote_forward_token1] = ACTIONS(1116), - [aux_sym_request_tty_token1] = ACTIONS(1116), - [aux_sym_required_rsa_size_token1] = ACTIONS(1116), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1116), - [aux_sym_security_key_provider_token1] = ACTIONS(1116), - [aux_sym_send_env_token1] = ACTIONS(1116), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1116), - [aux_sym_server_alive_interval_token1] = ACTIONS(1116), - [aux_sym_session_type_token1] = ACTIONS(1116), - [aux_sym_set_env_token1] = ACTIONS(1116), - [aux_sym_stdin_null_token1] = ACTIONS(1116), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1116), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1116), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1116), - [aux_sym_syslog_facility_token1] = ACTIONS(1116), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1116), - [aux_sym_keep_alive_token1] = ACTIONS(1116), - [aux_sym_tag_token1] = ACTIONS(1116), - [aux_sym_tunnel_token1] = ACTIONS(1118), - [aux_sym_tunnel_device_token1] = ACTIONS(1116), - [aux_sym_update_host_keys_token1] = ACTIONS(1116), - [aux_sym_use_keychain_token1] = ACTIONS(1116), - [aux_sym_use_roaming_token1] = ACTIONS(1116), - [aux_sym_user_token1] = ACTIONS(1118), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1116), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1116), - [aux_sym_visual_host_key_token1] = ACTIONS(1116), - [aux_sym_xauth_location_token1] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1123), + [anon_sym_DQUOTE] = ACTIONS(1125), + [aux_sym_match_token1] = ACTIONS(1121), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1121), + [aux_sym_address_family_token1] = ACTIONS(1121), + [aux_sym_batch_mode_token1] = ACTIONS(1121), + [aux_sym_bind_address_token1] = ACTIONS(1121), + [aux_sym_bind_interface_token1] = ACTIONS(1121), + [aux_sym_canonical_domains_token1] = ACTIONS(1121), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1121), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1121), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1121), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1121), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1121), + [aux_sym_certificate_file_token1] = ACTIONS(1121), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1121), + [aux_sym_channel_timeout_token1] = ACTIONS(1121), + [aux_sym_check_host_ip_token1] = ACTIONS(1121), + [aux_sym_ciphers_token1] = ACTIONS(1121), + [aux_sym_cipher_token1] = ACTIONS(1123), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1121), + [aux_sym_compression_token1] = ACTIONS(1121), + [aux_sym_connection_attempts_token1] = ACTIONS(1121), + [aux_sym_connect_timeout_token1] = ACTIONS(1121), + [aux_sym_control_master_token1] = ACTIONS(1121), + [aux_sym_control_path_token1] = ACTIONS(1121), + [aux_sym_control_persist_token1] = ACTIONS(1121), + [aux_sym_dynamic_forward_token1] = ACTIONS(1121), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1121), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1121), + [aux_sym_escape_char_token1] = ACTIONS(1121), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1121), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1121), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1121), + [aux_sym_forward_agent_token1] = ACTIONS(1121), + [aux_sym_forward_x11_token1] = ACTIONS(1123), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1121), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1121), + [aux_sym_gateway_ports_token1] = ACTIONS(1121), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1121), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1121), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1121), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1121), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1121), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1121), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1121), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1121), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1121), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1121), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1121), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1121), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1121), + [aux_sym_host_key_alias_token1] = ACTIONS(1121), + [aux_sym_hostname_token1] = ACTIONS(1121), + [aux_sym_identities_only_token1] = ACTIONS(1121), + [aux_sym_identity_agent_token1] = ACTIONS(1121), + [aux_sym_identity_file_token1] = ACTIONS(1121), + [aux_sym_ignore_unknown_token1] = ACTIONS(1121), + [aux_sym_include_token1] = ACTIONS(1121), + [aux_sym_ip_qos_token1] = ACTIONS(1121), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1121), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1121), + [aux_sym_kex_algorithms_token1] = ACTIONS(1121), + [aux_sym_known_hosts_command_token1] = ACTIONS(1121), + [aux_sym_local_command_token1] = ACTIONS(1121), + [aux_sym_local_forward_token1] = ACTIONS(1121), + [aux_sym_log_level_token1] = ACTIONS(1121), + [aux_sym_log_verbose_token1] = ACTIONS(1121), + [aux_sym_macs_token1] = ACTIONS(1121), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1121), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1121), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1121), + [aux_sym_password_authentication_token1] = ACTIONS(1121), + [aux_sym_permit_local_command_token1] = ACTIONS(1121), + [aux_sym_permit_remote_open_token1] = ACTIONS(1121), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1121), + [aux_sym_port_token1] = ACTIONS(1121), + [aux_sym_preferred_authentications_token1] = ACTIONS(1121), + [aux_sym_protocol_token1] = ACTIONS(1121), + [aux_sym_proxy_command_token1] = ACTIONS(1121), + [aux_sym_proxy_jump_token1] = ACTIONS(1121), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1121), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1121), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1121), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1121), + [aux_sym_rekey_limit_token1] = ACTIONS(1121), + [aux_sym_remote_command_token1] = ACTIONS(1121), + [aux_sym_remote_forward_token1] = ACTIONS(1121), + [aux_sym_request_tty_token1] = ACTIONS(1121), + [aux_sym_required_rsa_size_token1] = ACTIONS(1121), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1121), + [aux_sym_security_key_provider_token1] = ACTIONS(1121), + [aux_sym_send_env_token1] = ACTIONS(1121), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1121), + [aux_sym_server_alive_interval_token1] = ACTIONS(1121), + [aux_sym_session_type_token1] = ACTIONS(1121), + [aux_sym_set_env_token1] = ACTIONS(1121), + [aux_sym_stdin_null_token1] = ACTIONS(1121), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1121), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1121), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1121), + [aux_sym_syslog_facility_token1] = ACTIONS(1121), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1121), + [aux_sym_keep_alive_token1] = ACTIONS(1121), + [aux_sym_tag_token1] = ACTIONS(1121), + [aux_sym_tunnel_token1] = ACTIONS(1123), + [aux_sym_tunnel_device_token1] = ACTIONS(1121), + [aux_sym_update_host_keys_token1] = ACTIONS(1121), + [aux_sym_use_keychain_token1] = ACTIONS(1121), + [aux_sym_use_roaming_token1] = ACTIONS(1121), + [aux_sym_user_token1] = ACTIONS(1123), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1121), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1121), + [aux_sym_visual_host_key_token1] = ACTIONS(1121), + [aux_sym_xauth_location_token1] = ACTIONS(1121), }, [94] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [aux_sym_match_token1] = ACTIONS(1122), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1122), - [aux_sym_address_family_token1] = ACTIONS(1122), - [aux_sym_batch_mode_token1] = ACTIONS(1122), - [aux_sym_bind_address_token1] = ACTIONS(1122), - [aux_sym_bind_interface_token1] = ACTIONS(1122), - [aux_sym_canonical_domains_token1] = ACTIONS(1122), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1122), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1122), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1122), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1122), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1122), - [aux_sym_certificate_file_token1] = ACTIONS(1122), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1122), - [aux_sym_channel_timeout_token1] = ACTIONS(1122), - [aux_sym_check_host_ip_token1] = ACTIONS(1122), - [aux_sym_ciphers_token1] = ACTIONS(1122), - [aux_sym_cipher_token1] = ACTIONS(1124), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1122), - [aux_sym_compression_token1] = ACTIONS(1122), - [aux_sym_connection_attempts_token1] = ACTIONS(1122), - [aux_sym_connect_timeout_token1] = ACTIONS(1122), - [aux_sym_control_master_token1] = ACTIONS(1122), - [aux_sym_control_path_token1] = ACTIONS(1122), - [aux_sym_control_persist_token1] = ACTIONS(1122), - [aux_sym_dynamic_forward_token1] = ACTIONS(1122), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1122), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1122), - [aux_sym_escape_char_token1] = ACTIONS(1122), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1122), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1122), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1122), - [aux_sym_forward_agent_token1] = ACTIONS(1122), - [aux_sym_forward_x11_token1] = ACTIONS(1124), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1122), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1122), - [aux_sym_gateway_ports_token1] = ACTIONS(1122), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1122), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1122), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1122), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1122), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1122), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1122), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1122), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1122), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1122), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1122), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1122), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1122), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1122), - [aux_sym_host_key_alias_token1] = ACTIONS(1122), - [aux_sym_hostname_token1] = ACTIONS(1122), - [aux_sym_identities_only_token1] = ACTIONS(1122), - [aux_sym_identity_agent_token1] = ACTIONS(1122), - [aux_sym_identity_file_token1] = ACTIONS(1122), - [aux_sym_ignore_unknown_token1] = ACTIONS(1122), - [aux_sym_include_token1] = ACTIONS(1122), - [aux_sym_ip_qos_token1] = ACTIONS(1122), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1122), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1122), - [aux_sym_kex_algorithms_token1] = ACTIONS(1122), - [aux_sym_known_hosts_command_token1] = ACTIONS(1122), - [aux_sym_local_command_token1] = ACTIONS(1122), - [aux_sym_local_forward_token1] = ACTIONS(1122), - [aux_sym_log_level_token1] = ACTIONS(1122), - [aux_sym_log_verbose_token1] = ACTIONS(1122), - [aux_sym_macs_token1] = ACTIONS(1122), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1122), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1122), - [aux_sym_password_authentication_token1] = ACTIONS(1122), - [aux_sym_permit_local_command_token1] = ACTIONS(1122), - [aux_sym_permit_remote_open_token1] = ACTIONS(1122), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1122), - [aux_sym_port_token1] = ACTIONS(1122), - [aux_sym_preferred_authentications_token1] = ACTIONS(1122), - [aux_sym_protocol_token1] = ACTIONS(1122), - [aux_sym_proxy_command_token1] = ACTIONS(1122), - [aux_sym_proxy_jump_token1] = ACTIONS(1122), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1122), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1122), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1122), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1122), - [aux_sym_rekey_limit_token1] = ACTIONS(1122), - [aux_sym_remote_command_token1] = ACTIONS(1122), - [aux_sym_remote_forward_token1] = ACTIONS(1122), - [aux_sym_request_tty_token1] = ACTIONS(1122), - [aux_sym_required_rsa_size_token1] = ACTIONS(1122), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1122), - [aux_sym_security_key_provider_token1] = ACTIONS(1122), - [aux_sym_send_env_token1] = ACTIONS(1122), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1122), - [aux_sym_server_alive_interval_token1] = ACTIONS(1122), - [aux_sym_session_type_token1] = ACTIONS(1122), - [aux_sym_set_env_token1] = ACTIONS(1122), - [aux_sym_stdin_null_token1] = ACTIONS(1122), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1122), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1122), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1122), - [aux_sym_syslog_facility_token1] = ACTIONS(1122), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1122), - [aux_sym_keep_alive_token1] = ACTIONS(1122), - [aux_sym_tag_token1] = ACTIONS(1122), - [aux_sym_tunnel_token1] = ACTIONS(1124), - [aux_sym_tunnel_device_token1] = ACTIONS(1122), - [aux_sym_update_host_keys_token1] = ACTIONS(1122), - [aux_sym_use_keychain_token1] = ACTIONS(1122), - [aux_sym_use_roaming_token1] = ACTIONS(1122), - [aux_sym_user_token1] = ACTIONS(1124), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1122), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1122), - [aux_sym_visual_host_key_token1] = ACTIONS(1122), - [aux_sym_xauth_location_token1] = ACTIONS(1122), + [ts_builtin_sym_end] = ACTIONS(1127), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1129), + [anon_sym_DQUOTE] = ACTIONS(1131), + [aux_sym_match_token1] = ACTIONS(1127), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1127), + [aux_sym_address_family_token1] = ACTIONS(1127), + [aux_sym_batch_mode_token1] = ACTIONS(1127), + [aux_sym_bind_address_token1] = ACTIONS(1127), + [aux_sym_bind_interface_token1] = ACTIONS(1127), + [aux_sym_canonical_domains_token1] = ACTIONS(1127), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1127), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1127), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1127), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1127), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1127), + [aux_sym_certificate_file_token1] = ACTIONS(1127), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1127), + [aux_sym_channel_timeout_token1] = ACTIONS(1127), + [aux_sym_check_host_ip_token1] = ACTIONS(1127), + [aux_sym_ciphers_token1] = ACTIONS(1127), + [aux_sym_cipher_token1] = ACTIONS(1129), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1127), + [aux_sym_compression_token1] = ACTIONS(1127), + [aux_sym_connection_attempts_token1] = ACTIONS(1127), + [aux_sym_connect_timeout_token1] = ACTIONS(1127), + [aux_sym_control_master_token1] = ACTIONS(1127), + [aux_sym_control_path_token1] = ACTIONS(1127), + [aux_sym_control_persist_token1] = ACTIONS(1127), + [aux_sym_dynamic_forward_token1] = ACTIONS(1127), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1127), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1127), + [aux_sym_escape_char_token1] = ACTIONS(1127), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1127), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1127), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1127), + [aux_sym_forward_agent_token1] = ACTIONS(1127), + [aux_sym_forward_x11_token1] = ACTIONS(1129), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1127), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1127), + [aux_sym_gateway_ports_token1] = ACTIONS(1127), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1127), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1127), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1127), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1127), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1127), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1127), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1127), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1127), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1127), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1127), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1127), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1127), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1127), + [aux_sym_host_key_alias_token1] = ACTIONS(1127), + [aux_sym_hostname_token1] = ACTIONS(1127), + [aux_sym_identities_only_token1] = ACTIONS(1127), + [aux_sym_identity_agent_token1] = ACTIONS(1127), + [aux_sym_identity_file_token1] = ACTIONS(1127), + [aux_sym_ignore_unknown_token1] = ACTIONS(1127), + [aux_sym_include_token1] = ACTIONS(1127), + [aux_sym_ip_qos_token1] = ACTIONS(1127), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1127), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1127), + [aux_sym_kex_algorithms_token1] = ACTIONS(1127), + [aux_sym_known_hosts_command_token1] = ACTIONS(1127), + [aux_sym_local_command_token1] = ACTIONS(1127), + [aux_sym_local_forward_token1] = ACTIONS(1127), + [aux_sym_log_level_token1] = ACTIONS(1127), + [aux_sym_log_verbose_token1] = ACTIONS(1127), + [aux_sym_macs_token1] = ACTIONS(1127), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1127), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1127), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1127), + [aux_sym_password_authentication_token1] = ACTIONS(1127), + [aux_sym_permit_local_command_token1] = ACTIONS(1127), + [aux_sym_permit_remote_open_token1] = ACTIONS(1127), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1127), + [aux_sym_port_token1] = ACTIONS(1127), + [aux_sym_preferred_authentications_token1] = ACTIONS(1127), + [aux_sym_protocol_token1] = ACTIONS(1127), + [aux_sym_proxy_command_token1] = ACTIONS(1127), + [aux_sym_proxy_jump_token1] = ACTIONS(1127), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1127), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1127), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1127), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1127), + [aux_sym_rekey_limit_token1] = ACTIONS(1127), + [aux_sym_remote_command_token1] = ACTIONS(1127), + [aux_sym_remote_forward_token1] = ACTIONS(1127), + [aux_sym_request_tty_token1] = ACTIONS(1127), + [aux_sym_required_rsa_size_token1] = ACTIONS(1127), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1127), + [aux_sym_security_key_provider_token1] = ACTIONS(1127), + [aux_sym_send_env_token1] = ACTIONS(1127), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1127), + [aux_sym_server_alive_interval_token1] = ACTIONS(1127), + [aux_sym_session_type_token1] = ACTIONS(1127), + [aux_sym_set_env_token1] = ACTIONS(1127), + [aux_sym_stdin_null_token1] = ACTIONS(1127), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1127), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1127), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1127), + [aux_sym_syslog_facility_token1] = ACTIONS(1127), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1127), + [aux_sym_keep_alive_token1] = ACTIONS(1127), + [aux_sym_tag_token1] = ACTIONS(1127), + [aux_sym_tunnel_token1] = ACTIONS(1129), + [aux_sym_tunnel_device_token1] = ACTIONS(1127), + [aux_sym_update_host_keys_token1] = ACTIONS(1127), + [aux_sym_use_keychain_token1] = ACTIONS(1127), + [aux_sym_use_roaming_token1] = ACTIONS(1127), + [aux_sym_user_token1] = ACTIONS(1129), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1127), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1127), + [aux_sym_visual_host_key_token1] = ACTIONS(1127), + [aux_sym_xauth_location_token1] = ACTIONS(1127), }, [95] = { - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1130), - [anon_sym_DQUOTE] = ACTIONS(1132), - [aux_sym_match_token1] = ACTIONS(1128), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1128), - [aux_sym_address_family_token1] = ACTIONS(1128), - [aux_sym_batch_mode_token1] = ACTIONS(1128), - [aux_sym_bind_address_token1] = ACTIONS(1128), - [aux_sym_bind_interface_token1] = ACTIONS(1128), - [aux_sym_canonical_domains_token1] = ACTIONS(1128), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1128), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1128), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1128), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1128), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1128), - [aux_sym_certificate_file_token1] = ACTIONS(1128), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1128), - [aux_sym_channel_timeout_token1] = ACTIONS(1128), - [aux_sym_check_host_ip_token1] = ACTIONS(1128), - [aux_sym_ciphers_token1] = ACTIONS(1128), - [aux_sym_cipher_token1] = ACTIONS(1130), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1128), - [aux_sym_compression_token1] = ACTIONS(1128), - [aux_sym_connection_attempts_token1] = ACTIONS(1128), - [aux_sym_connect_timeout_token1] = ACTIONS(1128), - [aux_sym_control_master_token1] = ACTIONS(1128), - [aux_sym_control_path_token1] = ACTIONS(1128), - [aux_sym_control_persist_token1] = ACTIONS(1128), - [aux_sym_dynamic_forward_token1] = ACTIONS(1128), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1128), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1128), - [aux_sym_escape_char_token1] = ACTIONS(1128), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1128), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1128), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1128), - [aux_sym_forward_agent_token1] = ACTIONS(1128), - [aux_sym_forward_x11_token1] = ACTIONS(1130), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1128), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1128), - [aux_sym_gateway_ports_token1] = ACTIONS(1128), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1128), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1128), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1128), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1128), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1128), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1128), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1128), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1128), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1128), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1128), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1128), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1128), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1128), - [aux_sym_host_key_alias_token1] = ACTIONS(1128), - [aux_sym_hostname_token1] = ACTIONS(1128), - [aux_sym_identities_only_token1] = ACTIONS(1128), - [aux_sym_identity_agent_token1] = ACTIONS(1128), - [aux_sym_identity_file_token1] = ACTIONS(1128), - [aux_sym_ignore_unknown_token1] = ACTIONS(1128), - [aux_sym_include_token1] = ACTIONS(1128), - [aux_sym_ip_qos_token1] = ACTIONS(1128), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1128), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1128), - [aux_sym_kex_algorithms_token1] = ACTIONS(1128), - [aux_sym_known_hosts_command_token1] = ACTIONS(1128), - [aux_sym_local_command_token1] = ACTIONS(1128), - [aux_sym_local_forward_token1] = ACTIONS(1128), - [aux_sym_log_level_token1] = ACTIONS(1128), - [aux_sym_log_verbose_token1] = ACTIONS(1128), - [aux_sym_macs_token1] = ACTIONS(1128), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1128), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1128), - [aux_sym_password_authentication_token1] = ACTIONS(1128), - [aux_sym_permit_local_command_token1] = ACTIONS(1128), - [aux_sym_permit_remote_open_token1] = ACTIONS(1128), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1128), - [aux_sym_port_token1] = ACTIONS(1128), - [aux_sym_preferred_authentications_token1] = ACTIONS(1128), - [aux_sym_protocol_token1] = ACTIONS(1128), - [aux_sym_proxy_command_token1] = ACTIONS(1128), - [aux_sym_proxy_jump_token1] = ACTIONS(1128), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1128), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1128), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1128), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1128), - [aux_sym_rekey_limit_token1] = ACTIONS(1128), - [aux_sym_remote_command_token1] = ACTIONS(1128), - [aux_sym_remote_forward_token1] = ACTIONS(1128), - [aux_sym_request_tty_token1] = ACTIONS(1128), - [aux_sym_required_rsa_size_token1] = ACTIONS(1128), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1128), - [aux_sym_security_key_provider_token1] = ACTIONS(1128), - [aux_sym_send_env_token1] = ACTIONS(1128), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1128), - [aux_sym_server_alive_interval_token1] = ACTIONS(1128), - [aux_sym_session_type_token1] = ACTIONS(1128), - [aux_sym_set_env_token1] = ACTIONS(1128), - [aux_sym_stdin_null_token1] = ACTIONS(1128), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1128), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1128), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1128), - [aux_sym_syslog_facility_token1] = ACTIONS(1128), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1128), - [aux_sym_keep_alive_token1] = ACTIONS(1128), - [aux_sym_tag_token1] = ACTIONS(1128), - [aux_sym_tunnel_token1] = ACTIONS(1130), - [aux_sym_tunnel_device_token1] = ACTIONS(1128), - [aux_sym_update_host_keys_token1] = ACTIONS(1128), - [aux_sym_use_keychain_token1] = ACTIONS(1128), - [aux_sym_use_roaming_token1] = ACTIONS(1128), - [aux_sym_user_token1] = ACTIONS(1130), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1128), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1128), - [aux_sym_visual_host_key_token1] = ACTIONS(1128), - [aux_sym_xauth_location_token1] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1135), + [anon_sym_DQUOTE] = ACTIONS(1137), + [aux_sym_match_token1] = ACTIONS(1133), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1133), + [aux_sym_address_family_token1] = ACTIONS(1133), + [aux_sym_batch_mode_token1] = ACTIONS(1133), + [aux_sym_bind_address_token1] = ACTIONS(1133), + [aux_sym_bind_interface_token1] = ACTIONS(1133), + [aux_sym_canonical_domains_token1] = ACTIONS(1133), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1133), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1133), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1133), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1133), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1133), + [aux_sym_certificate_file_token1] = ACTIONS(1133), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1133), + [aux_sym_channel_timeout_token1] = ACTIONS(1133), + [aux_sym_check_host_ip_token1] = ACTIONS(1133), + [aux_sym_ciphers_token1] = ACTIONS(1133), + [aux_sym_cipher_token1] = ACTIONS(1135), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1133), + [aux_sym_compression_token1] = ACTIONS(1133), + [aux_sym_connection_attempts_token1] = ACTIONS(1133), + [aux_sym_connect_timeout_token1] = ACTIONS(1133), + [aux_sym_control_master_token1] = ACTIONS(1133), + [aux_sym_control_path_token1] = ACTIONS(1133), + [aux_sym_control_persist_token1] = ACTIONS(1133), + [aux_sym_dynamic_forward_token1] = ACTIONS(1133), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1133), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1133), + [aux_sym_escape_char_token1] = ACTIONS(1133), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1133), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1133), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1133), + [aux_sym_forward_agent_token1] = ACTIONS(1133), + [aux_sym_forward_x11_token1] = ACTIONS(1135), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1133), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1133), + [aux_sym_gateway_ports_token1] = ACTIONS(1133), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1133), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1133), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1133), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1133), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1133), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1133), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1133), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1133), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1133), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1133), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1133), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1133), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1133), + [aux_sym_host_key_alias_token1] = ACTIONS(1133), + [aux_sym_hostname_token1] = ACTIONS(1133), + [aux_sym_identities_only_token1] = ACTIONS(1133), + [aux_sym_identity_agent_token1] = ACTIONS(1133), + [aux_sym_identity_file_token1] = ACTIONS(1133), + [aux_sym_ignore_unknown_token1] = ACTIONS(1133), + [aux_sym_include_token1] = ACTIONS(1133), + [aux_sym_ip_qos_token1] = ACTIONS(1133), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1133), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1133), + [aux_sym_kex_algorithms_token1] = ACTIONS(1133), + [aux_sym_known_hosts_command_token1] = ACTIONS(1133), + [aux_sym_local_command_token1] = ACTIONS(1133), + [aux_sym_local_forward_token1] = ACTIONS(1133), + [aux_sym_log_level_token1] = ACTIONS(1133), + [aux_sym_log_verbose_token1] = ACTIONS(1133), + [aux_sym_macs_token1] = ACTIONS(1133), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1133), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1133), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1133), + [aux_sym_password_authentication_token1] = ACTIONS(1133), + [aux_sym_permit_local_command_token1] = ACTIONS(1133), + [aux_sym_permit_remote_open_token1] = ACTIONS(1133), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1133), + [aux_sym_port_token1] = ACTIONS(1133), + [aux_sym_preferred_authentications_token1] = ACTIONS(1133), + [aux_sym_protocol_token1] = ACTIONS(1133), + [aux_sym_proxy_command_token1] = ACTIONS(1133), + [aux_sym_proxy_jump_token1] = ACTIONS(1133), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1133), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1133), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1133), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1133), + [aux_sym_rekey_limit_token1] = ACTIONS(1133), + [aux_sym_remote_command_token1] = ACTIONS(1133), + [aux_sym_remote_forward_token1] = ACTIONS(1133), + [aux_sym_request_tty_token1] = ACTIONS(1133), + [aux_sym_required_rsa_size_token1] = ACTIONS(1133), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1133), + [aux_sym_security_key_provider_token1] = ACTIONS(1133), + [aux_sym_send_env_token1] = ACTIONS(1133), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1133), + [aux_sym_server_alive_interval_token1] = ACTIONS(1133), + [aux_sym_session_type_token1] = ACTIONS(1133), + [aux_sym_set_env_token1] = ACTIONS(1133), + [aux_sym_stdin_null_token1] = ACTIONS(1133), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1133), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1133), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1133), + [aux_sym_syslog_facility_token1] = ACTIONS(1133), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1133), + [aux_sym_keep_alive_token1] = ACTIONS(1133), + [aux_sym_tag_token1] = ACTIONS(1133), + [aux_sym_tunnel_token1] = ACTIONS(1135), + [aux_sym_tunnel_device_token1] = ACTIONS(1133), + [aux_sym_update_host_keys_token1] = ACTIONS(1133), + [aux_sym_use_keychain_token1] = ACTIONS(1133), + [aux_sym_use_roaming_token1] = ACTIONS(1133), + [aux_sym_user_token1] = ACTIONS(1135), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1133), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1133), + [aux_sym_visual_host_key_token1] = ACTIONS(1133), + [aux_sym_xauth_location_token1] = ACTIONS(1133), }, [96] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1136), - [anon_sym_DQUOTE] = ACTIONS(1138), - [aux_sym_match_token1] = ACTIONS(1134), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1134), - [aux_sym_address_family_token1] = ACTIONS(1134), - [aux_sym_batch_mode_token1] = ACTIONS(1134), - [aux_sym_bind_address_token1] = ACTIONS(1134), - [aux_sym_bind_interface_token1] = ACTIONS(1134), - [aux_sym_canonical_domains_token1] = ACTIONS(1134), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1134), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1134), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1134), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1134), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1134), - [aux_sym_certificate_file_token1] = ACTIONS(1134), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1134), - [aux_sym_channel_timeout_token1] = ACTIONS(1134), - [aux_sym_check_host_ip_token1] = ACTIONS(1134), - [aux_sym_ciphers_token1] = ACTIONS(1134), - [aux_sym_cipher_token1] = ACTIONS(1136), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1134), - [aux_sym_compression_token1] = ACTIONS(1134), - [aux_sym_connection_attempts_token1] = ACTIONS(1134), - [aux_sym_connect_timeout_token1] = ACTIONS(1134), - [aux_sym_control_master_token1] = ACTIONS(1134), - [aux_sym_control_path_token1] = ACTIONS(1134), - [aux_sym_control_persist_token1] = ACTIONS(1134), - [aux_sym_dynamic_forward_token1] = ACTIONS(1134), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1134), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1134), - [aux_sym_escape_char_token1] = ACTIONS(1134), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1134), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1134), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1134), - [aux_sym_forward_agent_token1] = ACTIONS(1134), - [aux_sym_forward_x11_token1] = ACTIONS(1136), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1134), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1134), - [aux_sym_gateway_ports_token1] = ACTIONS(1134), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1134), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1134), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1134), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1134), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1134), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1134), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1134), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1134), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1134), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1134), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1134), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1134), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1134), - [aux_sym_host_key_alias_token1] = ACTIONS(1134), - [aux_sym_hostname_token1] = ACTIONS(1134), - [aux_sym_identities_only_token1] = ACTIONS(1134), - [aux_sym_identity_agent_token1] = ACTIONS(1134), - [aux_sym_identity_file_token1] = ACTIONS(1134), - [aux_sym_ignore_unknown_token1] = ACTIONS(1134), - [aux_sym_include_token1] = ACTIONS(1134), - [aux_sym_ip_qos_token1] = ACTIONS(1134), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1134), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1134), - [aux_sym_kex_algorithms_token1] = ACTIONS(1134), - [aux_sym_known_hosts_command_token1] = ACTIONS(1134), - [aux_sym_local_command_token1] = ACTIONS(1134), - [aux_sym_local_forward_token1] = ACTIONS(1134), - [aux_sym_log_level_token1] = ACTIONS(1134), - [aux_sym_log_verbose_token1] = ACTIONS(1134), - [aux_sym_macs_token1] = ACTIONS(1134), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1134), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1134), - [aux_sym_password_authentication_token1] = ACTIONS(1134), - [aux_sym_permit_local_command_token1] = ACTIONS(1134), - [aux_sym_permit_remote_open_token1] = ACTIONS(1134), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1134), - [aux_sym_port_token1] = ACTIONS(1134), - [aux_sym_preferred_authentications_token1] = ACTIONS(1134), - [aux_sym_protocol_token1] = ACTIONS(1134), - [aux_sym_proxy_command_token1] = ACTIONS(1134), - [aux_sym_proxy_jump_token1] = ACTIONS(1134), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1134), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1134), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1134), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1134), - [aux_sym_rekey_limit_token1] = ACTIONS(1134), - [aux_sym_remote_command_token1] = ACTIONS(1134), - [aux_sym_remote_forward_token1] = ACTIONS(1134), - [aux_sym_request_tty_token1] = ACTIONS(1134), - [aux_sym_required_rsa_size_token1] = ACTIONS(1134), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1134), - [aux_sym_security_key_provider_token1] = ACTIONS(1134), - [aux_sym_send_env_token1] = ACTIONS(1134), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1134), - [aux_sym_server_alive_interval_token1] = ACTIONS(1134), - [aux_sym_session_type_token1] = ACTIONS(1134), - [aux_sym_set_env_token1] = ACTIONS(1134), - [aux_sym_stdin_null_token1] = ACTIONS(1134), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1134), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1134), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1134), - [aux_sym_syslog_facility_token1] = ACTIONS(1134), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1134), - [aux_sym_keep_alive_token1] = ACTIONS(1134), - [aux_sym_tag_token1] = ACTIONS(1134), - [aux_sym_tunnel_token1] = ACTIONS(1136), - [aux_sym_tunnel_device_token1] = ACTIONS(1134), - [aux_sym_update_host_keys_token1] = ACTIONS(1134), - [aux_sym_use_keychain_token1] = ACTIONS(1134), - [aux_sym_use_roaming_token1] = ACTIONS(1134), - [aux_sym_user_token1] = ACTIONS(1136), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1134), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1134), - [aux_sym_visual_host_key_token1] = ACTIONS(1134), - [aux_sym_xauth_location_token1] = ACTIONS(1134), + [ts_builtin_sym_end] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1141), + [anon_sym_DQUOTE] = ACTIONS(1143), + [aux_sym_match_token1] = ACTIONS(1139), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1139), + [aux_sym_address_family_token1] = ACTIONS(1139), + [aux_sym_batch_mode_token1] = ACTIONS(1139), + [aux_sym_bind_address_token1] = ACTIONS(1139), + [aux_sym_bind_interface_token1] = ACTIONS(1139), + [aux_sym_canonical_domains_token1] = ACTIONS(1139), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1139), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1139), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1139), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1139), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1139), + [aux_sym_certificate_file_token1] = ACTIONS(1139), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1139), + [aux_sym_channel_timeout_token1] = ACTIONS(1139), + [aux_sym_check_host_ip_token1] = ACTIONS(1139), + [aux_sym_ciphers_token1] = ACTIONS(1139), + [aux_sym_cipher_token1] = ACTIONS(1141), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1139), + [aux_sym_compression_token1] = ACTIONS(1139), + [aux_sym_connection_attempts_token1] = ACTIONS(1139), + [aux_sym_connect_timeout_token1] = ACTIONS(1139), + [aux_sym_control_master_token1] = ACTIONS(1139), + [aux_sym_control_path_token1] = ACTIONS(1139), + [aux_sym_control_persist_token1] = ACTIONS(1139), + [aux_sym_dynamic_forward_token1] = ACTIONS(1139), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1139), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1139), + [aux_sym_escape_char_token1] = ACTIONS(1139), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1139), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1139), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1139), + [aux_sym_forward_agent_token1] = ACTIONS(1139), + [aux_sym_forward_x11_token1] = ACTIONS(1141), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1139), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1139), + [aux_sym_gateway_ports_token1] = ACTIONS(1139), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1139), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1139), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1139), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1139), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1139), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1139), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1139), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1139), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1139), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1139), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1139), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1139), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1139), + [aux_sym_host_key_alias_token1] = ACTIONS(1139), + [aux_sym_hostname_token1] = ACTIONS(1139), + [aux_sym_identities_only_token1] = ACTIONS(1139), + [aux_sym_identity_agent_token1] = ACTIONS(1139), + [aux_sym_identity_file_token1] = ACTIONS(1139), + [aux_sym_ignore_unknown_token1] = ACTIONS(1139), + [aux_sym_include_token1] = ACTIONS(1139), + [aux_sym_ip_qos_token1] = ACTIONS(1139), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1139), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1139), + [aux_sym_kex_algorithms_token1] = ACTIONS(1139), + [aux_sym_known_hosts_command_token1] = ACTIONS(1139), + [aux_sym_local_command_token1] = ACTIONS(1139), + [aux_sym_local_forward_token1] = ACTIONS(1139), + [aux_sym_log_level_token1] = ACTIONS(1139), + [aux_sym_log_verbose_token1] = ACTIONS(1139), + [aux_sym_macs_token1] = ACTIONS(1139), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1139), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1139), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1139), + [aux_sym_password_authentication_token1] = ACTIONS(1139), + [aux_sym_permit_local_command_token1] = ACTIONS(1139), + [aux_sym_permit_remote_open_token1] = ACTIONS(1139), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1139), + [aux_sym_port_token1] = ACTIONS(1139), + [aux_sym_preferred_authentications_token1] = ACTIONS(1139), + [aux_sym_protocol_token1] = ACTIONS(1139), + [aux_sym_proxy_command_token1] = ACTIONS(1139), + [aux_sym_proxy_jump_token1] = ACTIONS(1139), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1139), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1139), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1139), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1139), + [aux_sym_rekey_limit_token1] = ACTIONS(1139), + [aux_sym_remote_command_token1] = ACTIONS(1139), + [aux_sym_remote_forward_token1] = ACTIONS(1139), + [aux_sym_request_tty_token1] = ACTIONS(1139), + [aux_sym_required_rsa_size_token1] = ACTIONS(1139), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1139), + [aux_sym_security_key_provider_token1] = ACTIONS(1139), + [aux_sym_send_env_token1] = ACTIONS(1139), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1139), + [aux_sym_server_alive_interval_token1] = ACTIONS(1139), + [aux_sym_session_type_token1] = ACTIONS(1139), + [aux_sym_set_env_token1] = ACTIONS(1139), + [aux_sym_stdin_null_token1] = ACTIONS(1139), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1139), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1139), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1139), + [aux_sym_syslog_facility_token1] = ACTIONS(1139), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1139), + [aux_sym_keep_alive_token1] = ACTIONS(1139), + [aux_sym_tag_token1] = ACTIONS(1139), + [aux_sym_tunnel_token1] = ACTIONS(1141), + [aux_sym_tunnel_device_token1] = ACTIONS(1139), + [aux_sym_update_host_keys_token1] = ACTIONS(1139), + [aux_sym_use_keychain_token1] = ACTIONS(1139), + [aux_sym_use_roaming_token1] = ACTIONS(1139), + [aux_sym_user_token1] = ACTIONS(1141), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1139), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1139), + [aux_sym_visual_host_key_token1] = ACTIONS(1139), + [aux_sym_xauth_location_token1] = ACTIONS(1139), }, [97] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1142), - [anon_sym_DQUOTE] = ACTIONS(1144), - [aux_sym_match_token1] = ACTIONS(1140), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1140), - [aux_sym_address_family_token1] = ACTIONS(1140), - [aux_sym_batch_mode_token1] = ACTIONS(1140), - [aux_sym_bind_address_token1] = ACTIONS(1140), - [aux_sym_bind_interface_token1] = ACTIONS(1140), - [aux_sym_canonical_domains_token1] = ACTIONS(1140), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1140), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1140), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1140), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1140), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1140), - [aux_sym_certificate_file_token1] = ACTIONS(1140), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1140), - [aux_sym_channel_timeout_token1] = ACTIONS(1140), - [aux_sym_check_host_ip_token1] = ACTIONS(1140), - [aux_sym_ciphers_token1] = ACTIONS(1140), - [aux_sym_cipher_token1] = ACTIONS(1142), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1140), - [aux_sym_compression_token1] = ACTIONS(1140), - [aux_sym_connection_attempts_token1] = ACTIONS(1140), - [aux_sym_connect_timeout_token1] = ACTIONS(1140), - [aux_sym_control_master_token1] = ACTIONS(1140), - [aux_sym_control_path_token1] = ACTIONS(1140), - [aux_sym_control_persist_token1] = ACTIONS(1140), - [aux_sym_dynamic_forward_token1] = ACTIONS(1140), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1140), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1140), - [aux_sym_escape_char_token1] = ACTIONS(1140), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1140), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1140), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1140), - [aux_sym_forward_agent_token1] = ACTIONS(1140), - [aux_sym_forward_x11_token1] = ACTIONS(1142), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1140), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1140), - [aux_sym_gateway_ports_token1] = ACTIONS(1140), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1140), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1140), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1140), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1140), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1140), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1140), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1140), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1140), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1140), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1140), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1140), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1140), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1140), - [aux_sym_host_key_alias_token1] = ACTIONS(1140), - [aux_sym_hostname_token1] = ACTIONS(1140), - [aux_sym_identities_only_token1] = ACTIONS(1140), - [aux_sym_identity_agent_token1] = ACTIONS(1140), - [aux_sym_identity_file_token1] = ACTIONS(1140), - [aux_sym_ignore_unknown_token1] = ACTIONS(1140), - [aux_sym_include_token1] = ACTIONS(1140), - [aux_sym_ip_qos_token1] = ACTIONS(1140), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1140), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1140), - [aux_sym_kex_algorithms_token1] = ACTIONS(1140), - [aux_sym_known_hosts_command_token1] = ACTIONS(1140), - [aux_sym_local_command_token1] = ACTIONS(1140), - [aux_sym_local_forward_token1] = ACTIONS(1140), - [aux_sym_log_level_token1] = ACTIONS(1140), - [aux_sym_log_verbose_token1] = ACTIONS(1140), - [aux_sym_macs_token1] = ACTIONS(1140), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1140), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1140), - [aux_sym_password_authentication_token1] = ACTIONS(1140), - [aux_sym_permit_local_command_token1] = ACTIONS(1140), - [aux_sym_permit_remote_open_token1] = ACTIONS(1140), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1140), - [aux_sym_port_token1] = ACTIONS(1140), - [aux_sym_preferred_authentications_token1] = ACTIONS(1140), - [aux_sym_protocol_token1] = ACTIONS(1140), - [aux_sym_proxy_command_token1] = ACTIONS(1140), - [aux_sym_proxy_jump_token1] = ACTIONS(1140), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1140), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1140), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1140), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1140), - [aux_sym_rekey_limit_token1] = ACTIONS(1140), - [aux_sym_remote_command_token1] = ACTIONS(1140), - [aux_sym_remote_forward_token1] = ACTIONS(1140), - [aux_sym_request_tty_token1] = ACTIONS(1140), - [aux_sym_required_rsa_size_token1] = ACTIONS(1140), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1140), - [aux_sym_security_key_provider_token1] = ACTIONS(1140), - [aux_sym_send_env_token1] = ACTIONS(1140), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1140), - [aux_sym_server_alive_interval_token1] = ACTIONS(1140), - [aux_sym_session_type_token1] = ACTIONS(1140), - [aux_sym_set_env_token1] = ACTIONS(1140), - [aux_sym_stdin_null_token1] = ACTIONS(1140), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1140), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1140), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1140), - [aux_sym_syslog_facility_token1] = ACTIONS(1140), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1140), - [aux_sym_keep_alive_token1] = ACTIONS(1140), - [aux_sym_tag_token1] = ACTIONS(1140), - [aux_sym_tunnel_token1] = ACTIONS(1142), - [aux_sym_tunnel_device_token1] = ACTIONS(1140), - [aux_sym_update_host_keys_token1] = ACTIONS(1140), - [aux_sym_use_keychain_token1] = ACTIONS(1140), - [aux_sym_use_roaming_token1] = ACTIONS(1140), - [aux_sym_user_token1] = ACTIONS(1142), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1140), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1140), - [aux_sym_visual_host_key_token1] = ACTIONS(1140), - [aux_sym_xauth_location_token1] = ACTIONS(1140), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1147), + [anon_sym_DQUOTE] = ACTIONS(1149), + [aux_sym_match_token1] = ACTIONS(1145), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1145), + [aux_sym_address_family_token1] = ACTIONS(1145), + [aux_sym_batch_mode_token1] = ACTIONS(1145), + [aux_sym_bind_address_token1] = ACTIONS(1145), + [aux_sym_bind_interface_token1] = ACTIONS(1145), + [aux_sym_canonical_domains_token1] = ACTIONS(1145), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1145), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1145), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1145), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1145), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1145), + [aux_sym_certificate_file_token1] = ACTIONS(1145), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1145), + [aux_sym_channel_timeout_token1] = ACTIONS(1145), + [aux_sym_check_host_ip_token1] = ACTIONS(1145), + [aux_sym_ciphers_token1] = ACTIONS(1145), + [aux_sym_cipher_token1] = ACTIONS(1147), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1145), + [aux_sym_compression_token1] = ACTIONS(1145), + [aux_sym_connection_attempts_token1] = ACTIONS(1145), + [aux_sym_connect_timeout_token1] = ACTIONS(1145), + [aux_sym_control_master_token1] = ACTIONS(1145), + [aux_sym_control_path_token1] = ACTIONS(1145), + [aux_sym_control_persist_token1] = ACTIONS(1145), + [aux_sym_dynamic_forward_token1] = ACTIONS(1145), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1145), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1145), + [aux_sym_escape_char_token1] = ACTIONS(1145), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1145), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1145), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1145), + [aux_sym_forward_agent_token1] = ACTIONS(1145), + [aux_sym_forward_x11_token1] = ACTIONS(1147), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1145), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1145), + [aux_sym_gateway_ports_token1] = ACTIONS(1145), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1145), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1145), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1145), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1145), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1145), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1145), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1145), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1145), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1145), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1145), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1145), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1145), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1145), + [aux_sym_host_key_alias_token1] = ACTIONS(1145), + [aux_sym_hostname_token1] = ACTIONS(1145), + [aux_sym_identities_only_token1] = ACTIONS(1145), + [aux_sym_identity_agent_token1] = ACTIONS(1145), + [aux_sym_identity_file_token1] = ACTIONS(1145), + [aux_sym_ignore_unknown_token1] = ACTIONS(1145), + [aux_sym_include_token1] = ACTIONS(1145), + [aux_sym_ip_qos_token1] = ACTIONS(1145), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1145), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1145), + [aux_sym_kex_algorithms_token1] = ACTIONS(1145), + [aux_sym_known_hosts_command_token1] = ACTIONS(1145), + [aux_sym_local_command_token1] = ACTIONS(1145), + [aux_sym_local_forward_token1] = ACTIONS(1145), + [aux_sym_log_level_token1] = ACTIONS(1145), + [aux_sym_log_verbose_token1] = ACTIONS(1145), + [aux_sym_macs_token1] = ACTIONS(1145), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1145), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1145), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1145), + [aux_sym_password_authentication_token1] = ACTIONS(1145), + [aux_sym_permit_local_command_token1] = ACTIONS(1145), + [aux_sym_permit_remote_open_token1] = ACTIONS(1145), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1145), + [aux_sym_port_token1] = ACTIONS(1145), + [aux_sym_preferred_authentications_token1] = ACTIONS(1145), + [aux_sym_protocol_token1] = ACTIONS(1145), + [aux_sym_proxy_command_token1] = ACTIONS(1145), + [aux_sym_proxy_jump_token1] = ACTIONS(1145), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1145), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1145), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1145), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1145), + [aux_sym_rekey_limit_token1] = ACTIONS(1145), + [aux_sym_remote_command_token1] = ACTIONS(1145), + [aux_sym_remote_forward_token1] = ACTIONS(1145), + [aux_sym_request_tty_token1] = ACTIONS(1145), + [aux_sym_required_rsa_size_token1] = ACTIONS(1145), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1145), + [aux_sym_security_key_provider_token1] = ACTIONS(1145), + [aux_sym_send_env_token1] = ACTIONS(1145), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1145), + [aux_sym_server_alive_interval_token1] = ACTIONS(1145), + [aux_sym_session_type_token1] = ACTIONS(1145), + [aux_sym_set_env_token1] = ACTIONS(1145), + [aux_sym_stdin_null_token1] = ACTIONS(1145), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1145), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1145), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1145), + [aux_sym_syslog_facility_token1] = ACTIONS(1145), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1145), + [aux_sym_keep_alive_token1] = ACTIONS(1145), + [aux_sym_tag_token1] = ACTIONS(1145), + [aux_sym_tunnel_token1] = ACTIONS(1147), + [aux_sym_tunnel_device_token1] = ACTIONS(1145), + [aux_sym_update_host_keys_token1] = ACTIONS(1145), + [aux_sym_use_keychain_token1] = ACTIONS(1145), + [aux_sym_use_roaming_token1] = ACTIONS(1145), + [aux_sym_user_token1] = ACTIONS(1147), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1145), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1145), + [aux_sym_visual_host_key_token1] = ACTIONS(1145), + [aux_sym_xauth_location_token1] = ACTIONS(1145), }, [98] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1148), - [anon_sym_DQUOTE] = ACTIONS(1150), - [aux_sym_match_token1] = ACTIONS(1146), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1146), - [aux_sym_address_family_token1] = ACTIONS(1146), - [aux_sym_batch_mode_token1] = ACTIONS(1146), - [aux_sym_bind_address_token1] = ACTIONS(1146), - [aux_sym_bind_interface_token1] = ACTIONS(1146), - [aux_sym_canonical_domains_token1] = ACTIONS(1146), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1146), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1146), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1146), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1146), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1146), - [aux_sym_certificate_file_token1] = ACTIONS(1146), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1146), - [aux_sym_channel_timeout_token1] = ACTIONS(1146), - [aux_sym_check_host_ip_token1] = ACTIONS(1146), - [aux_sym_ciphers_token1] = ACTIONS(1146), - [aux_sym_cipher_token1] = ACTIONS(1148), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1146), - [aux_sym_compression_token1] = ACTIONS(1146), - [aux_sym_connection_attempts_token1] = ACTIONS(1146), - [aux_sym_connect_timeout_token1] = ACTIONS(1146), - [aux_sym_control_master_token1] = ACTIONS(1146), - [aux_sym_control_path_token1] = ACTIONS(1146), - [aux_sym_control_persist_token1] = ACTIONS(1146), - [aux_sym_dynamic_forward_token1] = ACTIONS(1146), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1146), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1146), - [aux_sym_escape_char_token1] = ACTIONS(1146), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1146), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1146), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1146), - [aux_sym_forward_agent_token1] = ACTIONS(1146), - [aux_sym_forward_x11_token1] = ACTIONS(1148), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1146), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1146), - [aux_sym_gateway_ports_token1] = ACTIONS(1146), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1146), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1146), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1146), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1146), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1146), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1146), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1146), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1146), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1146), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1146), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1146), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1146), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1146), - [aux_sym_host_key_alias_token1] = ACTIONS(1146), - [aux_sym_hostname_token1] = ACTIONS(1146), - [aux_sym_identities_only_token1] = ACTIONS(1146), - [aux_sym_identity_agent_token1] = ACTIONS(1146), - [aux_sym_identity_file_token1] = ACTIONS(1146), - [aux_sym_ignore_unknown_token1] = ACTIONS(1146), - [aux_sym_include_token1] = ACTIONS(1146), - [aux_sym_ip_qos_token1] = ACTIONS(1146), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1146), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1146), - [aux_sym_kex_algorithms_token1] = ACTIONS(1146), - [aux_sym_known_hosts_command_token1] = ACTIONS(1146), - [aux_sym_local_command_token1] = ACTIONS(1146), - [aux_sym_local_forward_token1] = ACTIONS(1146), - [aux_sym_log_level_token1] = ACTIONS(1146), - [aux_sym_log_verbose_token1] = ACTIONS(1146), - [aux_sym_macs_token1] = ACTIONS(1146), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1146), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1146), - [aux_sym_password_authentication_token1] = ACTIONS(1146), - [aux_sym_permit_local_command_token1] = ACTIONS(1146), - [aux_sym_permit_remote_open_token1] = ACTIONS(1146), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1146), - [aux_sym_port_token1] = ACTIONS(1146), - [aux_sym_preferred_authentications_token1] = ACTIONS(1146), - [aux_sym_protocol_token1] = ACTIONS(1146), - [aux_sym_proxy_command_token1] = ACTIONS(1146), - [aux_sym_proxy_jump_token1] = ACTIONS(1146), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1146), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1146), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1146), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1146), - [aux_sym_rekey_limit_token1] = ACTIONS(1146), - [aux_sym_remote_command_token1] = ACTIONS(1146), - [aux_sym_remote_forward_token1] = ACTIONS(1146), - [aux_sym_request_tty_token1] = ACTIONS(1146), - [aux_sym_required_rsa_size_token1] = ACTIONS(1146), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1146), - [aux_sym_security_key_provider_token1] = ACTIONS(1146), - [aux_sym_send_env_token1] = ACTIONS(1146), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1146), - [aux_sym_server_alive_interval_token1] = ACTIONS(1146), - [aux_sym_session_type_token1] = ACTIONS(1146), - [aux_sym_set_env_token1] = ACTIONS(1146), - [aux_sym_stdin_null_token1] = ACTIONS(1146), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1146), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1146), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1146), - [aux_sym_syslog_facility_token1] = ACTIONS(1146), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1146), - [aux_sym_keep_alive_token1] = ACTIONS(1146), - [aux_sym_tag_token1] = ACTIONS(1146), - [aux_sym_tunnel_token1] = ACTIONS(1148), - [aux_sym_tunnel_device_token1] = ACTIONS(1146), - [aux_sym_update_host_keys_token1] = ACTIONS(1146), - [aux_sym_use_keychain_token1] = ACTIONS(1146), - [aux_sym_use_roaming_token1] = ACTIONS(1146), - [aux_sym_user_token1] = ACTIONS(1148), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1146), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1146), - [aux_sym_visual_host_key_token1] = ACTIONS(1146), - [aux_sym_xauth_location_token1] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(1151), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1153), + [anon_sym_DQUOTE] = ACTIONS(1155), + [aux_sym_match_token1] = ACTIONS(1151), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1151), + [aux_sym_address_family_token1] = ACTIONS(1151), + [aux_sym_batch_mode_token1] = ACTIONS(1151), + [aux_sym_bind_address_token1] = ACTIONS(1151), + [aux_sym_bind_interface_token1] = ACTIONS(1151), + [aux_sym_canonical_domains_token1] = ACTIONS(1151), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1151), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1151), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1151), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1151), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1151), + [aux_sym_certificate_file_token1] = ACTIONS(1151), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1151), + [aux_sym_channel_timeout_token1] = ACTIONS(1151), + [aux_sym_check_host_ip_token1] = ACTIONS(1151), + [aux_sym_ciphers_token1] = ACTIONS(1151), + [aux_sym_cipher_token1] = ACTIONS(1153), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1151), + [aux_sym_compression_token1] = ACTIONS(1151), + [aux_sym_connection_attempts_token1] = ACTIONS(1151), + [aux_sym_connect_timeout_token1] = ACTIONS(1151), + [aux_sym_control_master_token1] = ACTIONS(1151), + [aux_sym_control_path_token1] = ACTIONS(1151), + [aux_sym_control_persist_token1] = ACTIONS(1151), + [aux_sym_dynamic_forward_token1] = ACTIONS(1151), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1151), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1151), + [aux_sym_escape_char_token1] = ACTIONS(1151), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1151), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1151), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1151), + [aux_sym_forward_agent_token1] = ACTIONS(1151), + [aux_sym_forward_x11_token1] = ACTIONS(1153), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1151), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1151), + [aux_sym_gateway_ports_token1] = ACTIONS(1151), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1151), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1151), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1151), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1151), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1151), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1151), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1151), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1151), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1151), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1151), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1151), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1151), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1151), + [aux_sym_host_key_alias_token1] = ACTIONS(1151), + [aux_sym_hostname_token1] = ACTIONS(1151), + [aux_sym_identities_only_token1] = ACTIONS(1151), + [aux_sym_identity_agent_token1] = ACTIONS(1151), + [aux_sym_identity_file_token1] = ACTIONS(1151), + [aux_sym_ignore_unknown_token1] = ACTIONS(1151), + [aux_sym_include_token1] = ACTIONS(1151), + [aux_sym_ip_qos_token1] = ACTIONS(1151), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1151), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1151), + [aux_sym_kex_algorithms_token1] = ACTIONS(1151), + [aux_sym_known_hosts_command_token1] = ACTIONS(1151), + [aux_sym_local_command_token1] = ACTIONS(1151), + [aux_sym_local_forward_token1] = ACTIONS(1151), + [aux_sym_log_level_token1] = ACTIONS(1151), + [aux_sym_log_verbose_token1] = ACTIONS(1151), + [aux_sym_macs_token1] = ACTIONS(1151), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1151), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1151), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1151), + [aux_sym_password_authentication_token1] = ACTIONS(1151), + [aux_sym_permit_local_command_token1] = ACTIONS(1151), + [aux_sym_permit_remote_open_token1] = ACTIONS(1151), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1151), + [aux_sym_port_token1] = ACTIONS(1151), + [aux_sym_preferred_authentications_token1] = ACTIONS(1151), + [aux_sym_protocol_token1] = ACTIONS(1151), + [aux_sym_proxy_command_token1] = ACTIONS(1151), + [aux_sym_proxy_jump_token1] = ACTIONS(1151), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1151), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1151), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1151), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1151), + [aux_sym_rekey_limit_token1] = ACTIONS(1151), + [aux_sym_remote_command_token1] = ACTIONS(1151), + [aux_sym_remote_forward_token1] = ACTIONS(1151), + [aux_sym_request_tty_token1] = ACTIONS(1151), + [aux_sym_required_rsa_size_token1] = ACTIONS(1151), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1151), + [aux_sym_security_key_provider_token1] = ACTIONS(1151), + [aux_sym_send_env_token1] = ACTIONS(1151), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1151), + [aux_sym_server_alive_interval_token1] = ACTIONS(1151), + [aux_sym_session_type_token1] = ACTIONS(1151), + [aux_sym_set_env_token1] = ACTIONS(1151), + [aux_sym_stdin_null_token1] = ACTIONS(1151), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1151), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1151), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1151), + [aux_sym_syslog_facility_token1] = ACTIONS(1151), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1151), + [aux_sym_keep_alive_token1] = ACTIONS(1151), + [aux_sym_tag_token1] = ACTIONS(1151), + [aux_sym_tunnel_token1] = ACTIONS(1153), + [aux_sym_tunnel_device_token1] = ACTIONS(1151), + [aux_sym_update_host_keys_token1] = ACTIONS(1151), + [aux_sym_use_keychain_token1] = ACTIONS(1151), + [aux_sym_use_roaming_token1] = ACTIONS(1151), + [aux_sym_user_token1] = ACTIONS(1153), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1151), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1151), + [aux_sym_visual_host_key_token1] = ACTIONS(1151), + [aux_sym_xauth_location_token1] = ACTIONS(1151), }, [99] = { - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1154), - [anon_sym_DQUOTE] = ACTIONS(1156), - [aux_sym_match_token1] = ACTIONS(1152), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1152), - [aux_sym_address_family_token1] = ACTIONS(1152), - [aux_sym_batch_mode_token1] = ACTIONS(1152), - [aux_sym_bind_address_token1] = ACTIONS(1152), - [aux_sym_bind_interface_token1] = ACTIONS(1152), - [aux_sym_canonical_domains_token1] = ACTIONS(1152), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1152), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1152), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1152), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1152), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1152), - [aux_sym_certificate_file_token1] = ACTIONS(1152), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1152), - [aux_sym_channel_timeout_token1] = ACTIONS(1152), - [aux_sym_check_host_ip_token1] = ACTIONS(1152), - [aux_sym_ciphers_token1] = ACTIONS(1152), - [aux_sym_cipher_token1] = ACTIONS(1154), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1152), - [aux_sym_compression_token1] = ACTIONS(1152), - [aux_sym_connection_attempts_token1] = ACTIONS(1152), - [aux_sym_connect_timeout_token1] = ACTIONS(1152), - [aux_sym_control_master_token1] = ACTIONS(1152), - [aux_sym_control_path_token1] = ACTIONS(1152), - [aux_sym_control_persist_token1] = ACTIONS(1152), - [aux_sym_dynamic_forward_token1] = ACTIONS(1152), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1152), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1152), - [aux_sym_escape_char_token1] = ACTIONS(1152), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1152), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1152), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1152), - [aux_sym_forward_agent_token1] = ACTIONS(1152), - [aux_sym_forward_x11_token1] = ACTIONS(1154), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1152), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1152), - [aux_sym_gateway_ports_token1] = ACTIONS(1152), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1152), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1152), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1152), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1152), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1152), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1152), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1152), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1152), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1152), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1152), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1152), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1152), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1152), - [aux_sym_host_key_alias_token1] = ACTIONS(1152), - [aux_sym_hostname_token1] = ACTIONS(1152), - [aux_sym_identities_only_token1] = ACTIONS(1152), - [aux_sym_identity_agent_token1] = ACTIONS(1152), - [aux_sym_identity_file_token1] = ACTIONS(1152), - [aux_sym_ignore_unknown_token1] = ACTIONS(1152), - [aux_sym_include_token1] = ACTIONS(1152), - [aux_sym_ip_qos_token1] = ACTIONS(1152), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1152), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1152), - [aux_sym_kex_algorithms_token1] = ACTIONS(1152), - [aux_sym_known_hosts_command_token1] = ACTIONS(1152), - [aux_sym_local_command_token1] = ACTIONS(1152), - [aux_sym_local_forward_token1] = ACTIONS(1152), - [aux_sym_log_level_token1] = ACTIONS(1152), - [aux_sym_log_verbose_token1] = ACTIONS(1152), - [aux_sym_macs_token1] = ACTIONS(1152), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1152), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1152), - [aux_sym_password_authentication_token1] = ACTIONS(1152), - [aux_sym_permit_local_command_token1] = ACTIONS(1152), - [aux_sym_permit_remote_open_token1] = ACTIONS(1152), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1152), - [aux_sym_port_token1] = ACTIONS(1152), - [aux_sym_preferred_authentications_token1] = ACTIONS(1152), - [aux_sym_protocol_token1] = ACTIONS(1152), - [aux_sym_proxy_command_token1] = ACTIONS(1152), - [aux_sym_proxy_jump_token1] = ACTIONS(1152), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1152), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1152), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1152), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1152), - [aux_sym_rekey_limit_token1] = ACTIONS(1152), - [aux_sym_remote_command_token1] = ACTIONS(1152), - [aux_sym_remote_forward_token1] = ACTIONS(1152), - [aux_sym_request_tty_token1] = ACTIONS(1152), - [aux_sym_required_rsa_size_token1] = ACTIONS(1152), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1152), - [aux_sym_security_key_provider_token1] = ACTIONS(1152), - [aux_sym_send_env_token1] = ACTIONS(1152), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1152), - [aux_sym_server_alive_interval_token1] = ACTIONS(1152), - [aux_sym_session_type_token1] = ACTIONS(1152), - [aux_sym_set_env_token1] = ACTIONS(1152), - [aux_sym_stdin_null_token1] = ACTIONS(1152), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1152), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1152), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1152), - [aux_sym_syslog_facility_token1] = ACTIONS(1152), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1152), - [aux_sym_keep_alive_token1] = ACTIONS(1152), - [aux_sym_tag_token1] = ACTIONS(1152), - [aux_sym_tunnel_token1] = ACTIONS(1154), - [aux_sym_tunnel_device_token1] = ACTIONS(1152), - [aux_sym_update_host_keys_token1] = ACTIONS(1152), - [aux_sym_use_keychain_token1] = ACTIONS(1152), - [aux_sym_use_roaming_token1] = ACTIONS(1152), - [aux_sym_user_token1] = ACTIONS(1154), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1152), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1152), - [aux_sym_visual_host_key_token1] = ACTIONS(1152), - [aux_sym_xauth_location_token1] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1159), + [anon_sym_DQUOTE] = ACTIONS(1161), + [aux_sym_match_token1] = ACTIONS(1157), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1157), + [aux_sym_address_family_token1] = ACTIONS(1157), + [aux_sym_batch_mode_token1] = ACTIONS(1157), + [aux_sym_bind_address_token1] = ACTIONS(1157), + [aux_sym_bind_interface_token1] = ACTIONS(1157), + [aux_sym_canonical_domains_token1] = ACTIONS(1157), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1157), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1157), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1157), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1157), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1157), + [aux_sym_certificate_file_token1] = ACTIONS(1157), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1157), + [aux_sym_channel_timeout_token1] = ACTIONS(1157), + [aux_sym_check_host_ip_token1] = ACTIONS(1157), + [aux_sym_ciphers_token1] = ACTIONS(1157), + [aux_sym_cipher_token1] = ACTIONS(1159), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1157), + [aux_sym_compression_token1] = ACTIONS(1157), + [aux_sym_connection_attempts_token1] = ACTIONS(1157), + [aux_sym_connect_timeout_token1] = ACTIONS(1157), + [aux_sym_control_master_token1] = ACTIONS(1157), + [aux_sym_control_path_token1] = ACTIONS(1157), + [aux_sym_control_persist_token1] = ACTIONS(1157), + [aux_sym_dynamic_forward_token1] = ACTIONS(1157), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1157), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1157), + [aux_sym_escape_char_token1] = ACTIONS(1157), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1157), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1157), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1157), + [aux_sym_forward_agent_token1] = ACTIONS(1157), + [aux_sym_forward_x11_token1] = ACTIONS(1159), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1157), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1157), + [aux_sym_gateway_ports_token1] = ACTIONS(1157), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1157), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1157), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1157), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1157), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1157), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1157), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1157), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1157), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1157), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1157), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1157), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1157), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1157), + [aux_sym_host_key_alias_token1] = ACTIONS(1157), + [aux_sym_hostname_token1] = ACTIONS(1157), + [aux_sym_identities_only_token1] = ACTIONS(1157), + [aux_sym_identity_agent_token1] = ACTIONS(1157), + [aux_sym_identity_file_token1] = ACTIONS(1157), + [aux_sym_ignore_unknown_token1] = ACTIONS(1157), + [aux_sym_include_token1] = ACTIONS(1157), + [aux_sym_ip_qos_token1] = ACTIONS(1157), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1157), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1157), + [aux_sym_kex_algorithms_token1] = ACTIONS(1157), + [aux_sym_known_hosts_command_token1] = ACTIONS(1157), + [aux_sym_local_command_token1] = ACTIONS(1157), + [aux_sym_local_forward_token1] = ACTIONS(1157), + [aux_sym_log_level_token1] = ACTIONS(1157), + [aux_sym_log_verbose_token1] = ACTIONS(1157), + [aux_sym_macs_token1] = ACTIONS(1157), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1157), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1157), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1157), + [aux_sym_password_authentication_token1] = ACTIONS(1157), + [aux_sym_permit_local_command_token1] = ACTIONS(1157), + [aux_sym_permit_remote_open_token1] = ACTIONS(1157), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1157), + [aux_sym_port_token1] = ACTIONS(1157), + [aux_sym_preferred_authentications_token1] = ACTIONS(1157), + [aux_sym_protocol_token1] = ACTIONS(1157), + [aux_sym_proxy_command_token1] = ACTIONS(1157), + [aux_sym_proxy_jump_token1] = ACTIONS(1157), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1157), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1157), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1157), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1157), + [aux_sym_rekey_limit_token1] = ACTIONS(1157), + [aux_sym_remote_command_token1] = ACTIONS(1157), + [aux_sym_remote_forward_token1] = ACTIONS(1157), + [aux_sym_request_tty_token1] = ACTIONS(1157), + [aux_sym_required_rsa_size_token1] = ACTIONS(1157), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1157), + [aux_sym_security_key_provider_token1] = ACTIONS(1157), + [aux_sym_send_env_token1] = ACTIONS(1157), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1157), + [aux_sym_server_alive_interval_token1] = ACTIONS(1157), + [aux_sym_session_type_token1] = ACTIONS(1157), + [aux_sym_set_env_token1] = ACTIONS(1157), + [aux_sym_stdin_null_token1] = ACTIONS(1157), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1157), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1157), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1157), + [aux_sym_syslog_facility_token1] = ACTIONS(1157), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1157), + [aux_sym_keep_alive_token1] = ACTIONS(1157), + [aux_sym_tag_token1] = ACTIONS(1157), + [aux_sym_tunnel_token1] = ACTIONS(1159), + [aux_sym_tunnel_device_token1] = ACTIONS(1157), + [aux_sym_update_host_keys_token1] = ACTIONS(1157), + [aux_sym_use_keychain_token1] = ACTIONS(1157), + [aux_sym_use_roaming_token1] = ACTIONS(1157), + [aux_sym_user_token1] = ACTIONS(1159), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1157), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1157), + [aux_sym_visual_host_key_token1] = ACTIONS(1157), + [aux_sym_xauth_location_token1] = ACTIONS(1157), }, [100] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1160), - [anon_sym_DQUOTE] = ACTIONS(1162), - [aux_sym_match_token1] = ACTIONS(1158), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1158), - [aux_sym_address_family_token1] = ACTIONS(1158), - [aux_sym_batch_mode_token1] = ACTIONS(1158), - [aux_sym_bind_address_token1] = ACTIONS(1158), - [aux_sym_bind_interface_token1] = ACTIONS(1158), - [aux_sym_canonical_domains_token1] = ACTIONS(1158), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1158), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1158), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1158), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1158), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1158), - [aux_sym_certificate_file_token1] = ACTIONS(1158), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1158), - [aux_sym_channel_timeout_token1] = ACTIONS(1158), - [aux_sym_check_host_ip_token1] = ACTIONS(1158), - [aux_sym_ciphers_token1] = ACTIONS(1158), - [aux_sym_cipher_token1] = ACTIONS(1160), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1158), - [aux_sym_compression_token1] = ACTIONS(1158), - [aux_sym_connection_attempts_token1] = ACTIONS(1158), - [aux_sym_connect_timeout_token1] = ACTIONS(1158), - [aux_sym_control_master_token1] = ACTIONS(1158), - [aux_sym_control_path_token1] = ACTIONS(1158), - [aux_sym_control_persist_token1] = ACTIONS(1158), - [aux_sym_dynamic_forward_token1] = ACTIONS(1158), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1158), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1158), - [aux_sym_escape_char_token1] = ACTIONS(1158), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1158), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1158), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1158), - [aux_sym_forward_agent_token1] = ACTIONS(1158), - [aux_sym_forward_x11_token1] = ACTIONS(1160), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1158), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1158), - [aux_sym_gateway_ports_token1] = ACTIONS(1158), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1158), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1158), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1158), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1158), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1158), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1158), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1158), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1158), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1158), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1158), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1158), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1158), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1158), - [aux_sym_host_key_alias_token1] = ACTIONS(1158), - [aux_sym_hostname_token1] = ACTIONS(1158), - [aux_sym_identities_only_token1] = ACTIONS(1158), - [aux_sym_identity_agent_token1] = ACTIONS(1158), - [aux_sym_identity_file_token1] = ACTIONS(1158), - [aux_sym_ignore_unknown_token1] = ACTIONS(1158), - [aux_sym_include_token1] = ACTIONS(1158), - [aux_sym_ip_qos_token1] = ACTIONS(1158), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1158), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1158), - [aux_sym_kex_algorithms_token1] = ACTIONS(1158), - [aux_sym_known_hosts_command_token1] = ACTIONS(1158), - [aux_sym_local_command_token1] = ACTIONS(1158), - [aux_sym_local_forward_token1] = ACTIONS(1158), - [aux_sym_log_level_token1] = ACTIONS(1158), - [aux_sym_log_verbose_token1] = ACTIONS(1158), - [aux_sym_macs_token1] = ACTIONS(1158), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1158), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1158), - [aux_sym_password_authentication_token1] = ACTIONS(1158), - [aux_sym_permit_local_command_token1] = ACTIONS(1158), - [aux_sym_permit_remote_open_token1] = ACTIONS(1158), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1158), - [aux_sym_port_token1] = ACTIONS(1158), - [aux_sym_preferred_authentications_token1] = ACTIONS(1158), - [aux_sym_protocol_token1] = ACTIONS(1158), - [aux_sym_proxy_command_token1] = ACTIONS(1158), - [aux_sym_proxy_jump_token1] = ACTIONS(1158), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1158), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1158), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1158), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1158), - [aux_sym_rekey_limit_token1] = ACTIONS(1158), - [aux_sym_remote_command_token1] = ACTIONS(1158), - [aux_sym_remote_forward_token1] = ACTIONS(1158), - [aux_sym_request_tty_token1] = ACTIONS(1158), - [aux_sym_required_rsa_size_token1] = ACTIONS(1158), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1158), - [aux_sym_security_key_provider_token1] = ACTIONS(1158), - [aux_sym_send_env_token1] = ACTIONS(1158), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1158), - [aux_sym_server_alive_interval_token1] = ACTIONS(1158), - [aux_sym_session_type_token1] = ACTIONS(1158), - [aux_sym_set_env_token1] = ACTIONS(1158), - [aux_sym_stdin_null_token1] = ACTIONS(1158), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1158), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1158), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1158), - [aux_sym_syslog_facility_token1] = ACTIONS(1158), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1158), - [aux_sym_keep_alive_token1] = ACTIONS(1158), - [aux_sym_tag_token1] = ACTIONS(1158), - [aux_sym_tunnel_token1] = ACTIONS(1160), - [aux_sym_tunnel_device_token1] = ACTIONS(1158), - [aux_sym_update_host_keys_token1] = ACTIONS(1158), - [aux_sym_use_keychain_token1] = ACTIONS(1158), - [aux_sym_use_roaming_token1] = ACTIONS(1158), - [aux_sym_user_token1] = ACTIONS(1160), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1158), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1158), - [aux_sym_visual_host_key_token1] = ACTIONS(1158), - [aux_sym_xauth_location_token1] = ACTIONS(1158), + [ts_builtin_sym_end] = ACTIONS(1163), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1165), + [anon_sym_DQUOTE] = ACTIONS(1167), + [aux_sym_match_token1] = ACTIONS(1163), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1163), + [aux_sym_address_family_token1] = ACTIONS(1163), + [aux_sym_batch_mode_token1] = ACTIONS(1163), + [aux_sym_bind_address_token1] = ACTIONS(1163), + [aux_sym_bind_interface_token1] = ACTIONS(1163), + [aux_sym_canonical_domains_token1] = ACTIONS(1163), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1163), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1163), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1163), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1163), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1163), + [aux_sym_certificate_file_token1] = ACTIONS(1163), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1163), + [aux_sym_channel_timeout_token1] = ACTIONS(1163), + [aux_sym_check_host_ip_token1] = ACTIONS(1163), + [aux_sym_ciphers_token1] = ACTIONS(1163), + [aux_sym_cipher_token1] = ACTIONS(1165), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1163), + [aux_sym_compression_token1] = ACTIONS(1163), + [aux_sym_connection_attempts_token1] = ACTIONS(1163), + [aux_sym_connect_timeout_token1] = ACTIONS(1163), + [aux_sym_control_master_token1] = ACTIONS(1163), + [aux_sym_control_path_token1] = ACTIONS(1163), + [aux_sym_control_persist_token1] = ACTIONS(1163), + [aux_sym_dynamic_forward_token1] = ACTIONS(1163), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1163), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1163), + [aux_sym_escape_char_token1] = ACTIONS(1163), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1163), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1163), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1163), + [aux_sym_forward_agent_token1] = ACTIONS(1163), + [aux_sym_forward_x11_token1] = ACTIONS(1165), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1163), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1163), + [aux_sym_gateway_ports_token1] = ACTIONS(1163), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1163), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1163), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1163), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1163), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1163), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1163), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1163), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1163), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1163), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1163), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1163), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1163), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1163), + [aux_sym_host_key_alias_token1] = ACTIONS(1163), + [aux_sym_hostname_token1] = ACTIONS(1163), + [aux_sym_identities_only_token1] = ACTIONS(1163), + [aux_sym_identity_agent_token1] = ACTIONS(1163), + [aux_sym_identity_file_token1] = ACTIONS(1163), + [aux_sym_ignore_unknown_token1] = ACTIONS(1163), + [aux_sym_include_token1] = ACTIONS(1163), + [aux_sym_ip_qos_token1] = ACTIONS(1163), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1163), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1163), + [aux_sym_kex_algorithms_token1] = ACTIONS(1163), + [aux_sym_known_hosts_command_token1] = ACTIONS(1163), + [aux_sym_local_command_token1] = ACTIONS(1163), + [aux_sym_local_forward_token1] = ACTIONS(1163), + [aux_sym_log_level_token1] = ACTIONS(1163), + [aux_sym_log_verbose_token1] = ACTIONS(1163), + [aux_sym_macs_token1] = ACTIONS(1163), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1163), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1163), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1163), + [aux_sym_password_authentication_token1] = ACTIONS(1163), + [aux_sym_permit_local_command_token1] = ACTIONS(1163), + [aux_sym_permit_remote_open_token1] = ACTIONS(1163), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1163), + [aux_sym_port_token1] = ACTIONS(1163), + [aux_sym_preferred_authentications_token1] = ACTIONS(1163), + [aux_sym_protocol_token1] = ACTIONS(1163), + [aux_sym_proxy_command_token1] = ACTIONS(1163), + [aux_sym_proxy_jump_token1] = ACTIONS(1163), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1163), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1163), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1163), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1163), + [aux_sym_rekey_limit_token1] = ACTIONS(1163), + [aux_sym_remote_command_token1] = ACTIONS(1163), + [aux_sym_remote_forward_token1] = ACTIONS(1163), + [aux_sym_request_tty_token1] = ACTIONS(1163), + [aux_sym_required_rsa_size_token1] = ACTIONS(1163), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1163), + [aux_sym_security_key_provider_token1] = ACTIONS(1163), + [aux_sym_send_env_token1] = ACTIONS(1163), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1163), + [aux_sym_server_alive_interval_token1] = ACTIONS(1163), + [aux_sym_session_type_token1] = ACTIONS(1163), + [aux_sym_set_env_token1] = ACTIONS(1163), + [aux_sym_stdin_null_token1] = ACTIONS(1163), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1163), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1163), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1163), + [aux_sym_syslog_facility_token1] = ACTIONS(1163), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1163), + [aux_sym_keep_alive_token1] = ACTIONS(1163), + [aux_sym_tag_token1] = ACTIONS(1163), + [aux_sym_tunnel_token1] = ACTIONS(1165), + [aux_sym_tunnel_device_token1] = ACTIONS(1163), + [aux_sym_update_host_keys_token1] = ACTIONS(1163), + [aux_sym_use_keychain_token1] = ACTIONS(1163), + [aux_sym_use_roaming_token1] = ACTIONS(1163), + [aux_sym_user_token1] = ACTIONS(1165), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1163), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1163), + [aux_sym_visual_host_key_token1] = ACTIONS(1163), + [aux_sym_xauth_location_token1] = ACTIONS(1163), }, [101] = { - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1166), - [anon_sym_DQUOTE] = ACTIONS(1168), - [aux_sym_match_token1] = ACTIONS(1164), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1164), - [aux_sym_address_family_token1] = ACTIONS(1164), - [aux_sym_batch_mode_token1] = ACTIONS(1164), - [aux_sym_bind_address_token1] = ACTIONS(1164), - [aux_sym_bind_interface_token1] = ACTIONS(1164), - [aux_sym_canonical_domains_token1] = ACTIONS(1164), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1164), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1164), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1164), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1164), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1164), - [aux_sym_certificate_file_token1] = ACTIONS(1164), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1164), - [aux_sym_channel_timeout_token1] = ACTIONS(1164), - [aux_sym_check_host_ip_token1] = ACTIONS(1164), - [aux_sym_ciphers_token1] = ACTIONS(1164), - [aux_sym_cipher_token1] = ACTIONS(1166), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1164), - [aux_sym_compression_token1] = ACTIONS(1164), - [aux_sym_connection_attempts_token1] = ACTIONS(1164), - [aux_sym_connect_timeout_token1] = ACTIONS(1164), - [aux_sym_control_master_token1] = ACTIONS(1164), - [aux_sym_control_path_token1] = ACTIONS(1164), - [aux_sym_control_persist_token1] = ACTIONS(1164), - [aux_sym_dynamic_forward_token1] = ACTIONS(1164), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1164), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1164), - [aux_sym_escape_char_token1] = ACTIONS(1164), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1164), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1164), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1164), - [aux_sym_forward_agent_token1] = ACTIONS(1164), - [aux_sym_forward_x11_token1] = ACTIONS(1166), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1164), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1164), - [aux_sym_gateway_ports_token1] = ACTIONS(1164), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1164), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1164), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1164), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1164), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1164), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1164), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1164), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1164), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1164), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1164), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1164), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1164), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1164), - [aux_sym_host_key_alias_token1] = ACTIONS(1164), - [aux_sym_hostname_token1] = ACTIONS(1164), - [aux_sym_identities_only_token1] = ACTIONS(1164), - [aux_sym_identity_agent_token1] = ACTIONS(1164), - [aux_sym_identity_file_token1] = ACTIONS(1164), - [aux_sym_ignore_unknown_token1] = ACTIONS(1164), - [aux_sym_include_token1] = ACTIONS(1164), - [aux_sym_ip_qos_token1] = ACTIONS(1164), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1164), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1164), - [aux_sym_kex_algorithms_token1] = ACTIONS(1164), - [aux_sym_known_hosts_command_token1] = ACTIONS(1164), - [aux_sym_local_command_token1] = ACTIONS(1164), - [aux_sym_local_forward_token1] = ACTIONS(1164), - [aux_sym_log_level_token1] = ACTIONS(1164), - [aux_sym_log_verbose_token1] = ACTIONS(1164), - [aux_sym_macs_token1] = ACTIONS(1164), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1164), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1164), - [aux_sym_password_authentication_token1] = ACTIONS(1164), - [aux_sym_permit_local_command_token1] = ACTIONS(1164), - [aux_sym_permit_remote_open_token1] = ACTIONS(1164), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1164), - [aux_sym_port_token1] = ACTIONS(1164), - [aux_sym_preferred_authentications_token1] = ACTIONS(1164), - [aux_sym_protocol_token1] = ACTIONS(1164), - [aux_sym_proxy_command_token1] = ACTIONS(1164), - [aux_sym_proxy_jump_token1] = ACTIONS(1164), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1164), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1164), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1164), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1164), - [aux_sym_rekey_limit_token1] = ACTIONS(1164), - [aux_sym_remote_command_token1] = ACTIONS(1164), - [aux_sym_remote_forward_token1] = ACTIONS(1164), - [aux_sym_request_tty_token1] = ACTIONS(1164), - [aux_sym_required_rsa_size_token1] = ACTIONS(1164), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1164), - [aux_sym_security_key_provider_token1] = ACTIONS(1164), - [aux_sym_send_env_token1] = ACTIONS(1164), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1164), - [aux_sym_server_alive_interval_token1] = ACTIONS(1164), - [aux_sym_session_type_token1] = ACTIONS(1164), - [aux_sym_set_env_token1] = ACTIONS(1164), - [aux_sym_stdin_null_token1] = ACTIONS(1164), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1164), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1164), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1164), - [aux_sym_syslog_facility_token1] = ACTIONS(1164), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1164), - [aux_sym_keep_alive_token1] = ACTIONS(1164), - [aux_sym_tag_token1] = ACTIONS(1164), - [aux_sym_tunnel_token1] = ACTIONS(1166), - [aux_sym_tunnel_device_token1] = ACTIONS(1164), - [aux_sym_update_host_keys_token1] = ACTIONS(1164), - [aux_sym_use_keychain_token1] = ACTIONS(1164), - [aux_sym_use_roaming_token1] = ACTIONS(1164), - [aux_sym_user_token1] = ACTIONS(1166), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1164), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1164), - [aux_sym_visual_host_key_token1] = ACTIONS(1164), - [aux_sym_xauth_location_token1] = ACTIONS(1164), + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1171), + [anon_sym_DQUOTE] = ACTIONS(1173), + [aux_sym_match_token1] = ACTIONS(1169), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1169), + [aux_sym_address_family_token1] = ACTIONS(1169), + [aux_sym_batch_mode_token1] = ACTIONS(1169), + [aux_sym_bind_address_token1] = ACTIONS(1169), + [aux_sym_bind_interface_token1] = ACTIONS(1169), + [aux_sym_canonical_domains_token1] = ACTIONS(1169), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1169), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1169), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1169), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1169), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1169), + [aux_sym_certificate_file_token1] = ACTIONS(1169), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1169), + [aux_sym_channel_timeout_token1] = ACTIONS(1169), + [aux_sym_check_host_ip_token1] = ACTIONS(1169), + [aux_sym_ciphers_token1] = ACTIONS(1169), + [aux_sym_cipher_token1] = ACTIONS(1171), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1169), + [aux_sym_compression_token1] = ACTIONS(1169), + [aux_sym_connection_attempts_token1] = ACTIONS(1169), + [aux_sym_connect_timeout_token1] = ACTIONS(1169), + [aux_sym_control_master_token1] = ACTIONS(1169), + [aux_sym_control_path_token1] = ACTIONS(1169), + [aux_sym_control_persist_token1] = ACTIONS(1169), + [aux_sym_dynamic_forward_token1] = ACTIONS(1169), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1169), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1169), + [aux_sym_escape_char_token1] = ACTIONS(1169), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1169), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1169), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1169), + [aux_sym_forward_agent_token1] = ACTIONS(1169), + [aux_sym_forward_x11_token1] = ACTIONS(1171), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1169), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1169), + [aux_sym_gateway_ports_token1] = ACTIONS(1169), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1169), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1169), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1169), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1169), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1169), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1169), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1169), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1169), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1169), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1169), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1169), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1169), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1169), + [aux_sym_host_key_alias_token1] = ACTIONS(1169), + [aux_sym_hostname_token1] = ACTIONS(1169), + [aux_sym_identities_only_token1] = ACTIONS(1169), + [aux_sym_identity_agent_token1] = ACTIONS(1169), + [aux_sym_identity_file_token1] = ACTIONS(1169), + [aux_sym_ignore_unknown_token1] = ACTIONS(1169), + [aux_sym_include_token1] = ACTIONS(1169), + [aux_sym_ip_qos_token1] = ACTIONS(1169), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1169), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1169), + [aux_sym_kex_algorithms_token1] = ACTIONS(1169), + [aux_sym_known_hosts_command_token1] = ACTIONS(1169), + [aux_sym_local_command_token1] = ACTIONS(1169), + [aux_sym_local_forward_token1] = ACTIONS(1169), + [aux_sym_log_level_token1] = ACTIONS(1169), + [aux_sym_log_verbose_token1] = ACTIONS(1169), + [aux_sym_macs_token1] = ACTIONS(1169), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1169), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1169), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1169), + [aux_sym_password_authentication_token1] = ACTIONS(1169), + [aux_sym_permit_local_command_token1] = ACTIONS(1169), + [aux_sym_permit_remote_open_token1] = ACTIONS(1169), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1169), + [aux_sym_port_token1] = ACTIONS(1169), + [aux_sym_preferred_authentications_token1] = ACTIONS(1169), + [aux_sym_protocol_token1] = ACTIONS(1169), + [aux_sym_proxy_command_token1] = ACTIONS(1169), + [aux_sym_proxy_jump_token1] = ACTIONS(1169), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1169), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1169), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1169), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1169), + [aux_sym_rekey_limit_token1] = ACTIONS(1169), + [aux_sym_remote_command_token1] = ACTIONS(1169), + [aux_sym_remote_forward_token1] = ACTIONS(1169), + [aux_sym_request_tty_token1] = ACTIONS(1169), + [aux_sym_required_rsa_size_token1] = ACTIONS(1169), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1169), + [aux_sym_security_key_provider_token1] = ACTIONS(1169), + [aux_sym_send_env_token1] = ACTIONS(1169), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1169), + [aux_sym_server_alive_interval_token1] = ACTIONS(1169), + [aux_sym_session_type_token1] = ACTIONS(1169), + [aux_sym_set_env_token1] = ACTIONS(1169), + [aux_sym_stdin_null_token1] = ACTIONS(1169), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1169), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1169), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1169), + [aux_sym_syslog_facility_token1] = ACTIONS(1169), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1169), + [aux_sym_keep_alive_token1] = ACTIONS(1169), + [aux_sym_tag_token1] = ACTIONS(1169), + [aux_sym_tunnel_token1] = ACTIONS(1171), + [aux_sym_tunnel_device_token1] = ACTIONS(1169), + [aux_sym_update_host_keys_token1] = ACTIONS(1169), + [aux_sym_use_keychain_token1] = ACTIONS(1169), + [aux_sym_use_roaming_token1] = ACTIONS(1169), + [aux_sym_user_token1] = ACTIONS(1171), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1169), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1169), + [aux_sym_visual_host_key_token1] = ACTIONS(1169), + [aux_sym_xauth_location_token1] = ACTIONS(1169), }, [102] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1172), - [anon_sym_DQUOTE] = ACTIONS(1174), - [aux_sym_match_token1] = ACTIONS(1170), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1170), - [aux_sym_address_family_token1] = ACTIONS(1170), - [aux_sym_batch_mode_token1] = ACTIONS(1170), - [aux_sym_bind_address_token1] = ACTIONS(1170), - [aux_sym_bind_interface_token1] = ACTIONS(1170), - [aux_sym_canonical_domains_token1] = ACTIONS(1170), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1170), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1170), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1170), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1170), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1170), - [aux_sym_certificate_file_token1] = ACTIONS(1170), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1170), - [aux_sym_channel_timeout_token1] = ACTIONS(1170), - [aux_sym_check_host_ip_token1] = ACTIONS(1170), - [aux_sym_ciphers_token1] = ACTIONS(1170), - [aux_sym_cipher_token1] = ACTIONS(1172), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1170), - [aux_sym_compression_token1] = ACTIONS(1170), - [aux_sym_connection_attempts_token1] = ACTIONS(1170), - [aux_sym_connect_timeout_token1] = ACTIONS(1170), - [aux_sym_control_master_token1] = ACTIONS(1170), - [aux_sym_control_path_token1] = ACTIONS(1170), - [aux_sym_control_persist_token1] = ACTIONS(1170), - [aux_sym_dynamic_forward_token1] = ACTIONS(1170), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1170), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1170), - [aux_sym_escape_char_token1] = ACTIONS(1170), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1170), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1170), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1170), - [aux_sym_forward_agent_token1] = ACTIONS(1170), - [aux_sym_forward_x11_token1] = ACTIONS(1172), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1170), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1170), - [aux_sym_gateway_ports_token1] = ACTIONS(1170), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1170), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1170), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1170), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1170), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1170), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1170), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1170), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1170), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1170), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1170), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1170), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1170), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1170), - [aux_sym_host_key_alias_token1] = ACTIONS(1170), - [aux_sym_hostname_token1] = ACTIONS(1170), - [aux_sym_identities_only_token1] = ACTIONS(1170), - [aux_sym_identity_agent_token1] = ACTIONS(1170), - [aux_sym_identity_file_token1] = ACTIONS(1170), - [aux_sym_ignore_unknown_token1] = ACTIONS(1170), - [aux_sym_include_token1] = ACTIONS(1170), - [aux_sym_ip_qos_token1] = ACTIONS(1170), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1170), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1170), - [aux_sym_kex_algorithms_token1] = ACTIONS(1170), - [aux_sym_known_hosts_command_token1] = ACTIONS(1170), - [aux_sym_local_command_token1] = ACTIONS(1170), - [aux_sym_local_forward_token1] = ACTIONS(1170), - [aux_sym_log_level_token1] = ACTIONS(1170), - [aux_sym_log_verbose_token1] = ACTIONS(1170), - [aux_sym_macs_token1] = ACTIONS(1170), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1170), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1170), - [aux_sym_password_authentication_token1] = ACTIONS(1170), - [aux_sym_permit_local_command_token1] = ACTIONS(1170), - [aux_sym_permit_remote_open_token1] = ACTIONS(1170), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1170), - [aux_sym_port_token1] = ACTIONS(1170), - [aux_sym_preferred_authentications_token1] = ACTIONS(1170), - [aux_sym_protocol_token1] = ACTIONS(1170), - [aux_sym_proxy_command_token1] = ACTIONS(1170), - [aux_sym_proxy_jump_token1] = ACTIONS(1170), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1170), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1170), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1170), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1170), - [aux_sym_rekey_limit_token1] = ACTIONS(1170), - [aux_sym_remote_command_token1] = ACTIONS(1170), - [aux_sym_remote_forward_token1] = ACTIONS(1170), - [aux_sym_request_tty_token1] = ACTIONS(1170), - [aux_sym_required_rsa_size_token1] = ACTIONS(1170), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1170), - [aux_sym_security_key_provider_token1] = ACTIONS(1170), - [aux_sym_send_env_token1] = ACTIONS(1170), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1170), - [aux_sym_server_alive_interval_token1] = ACTIONS(1170), - [aux_sym_session_type_token1] = ACTIONS(1170), - [aux_sym_set_env_token1] = ACTIONS(1170), - [aux_sym_stdin_null_token1] = ACTIONS(1170), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1170), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1170), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1170), - [aux_sym_syslog_facility_token1] = ACTIONS(1170), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1170), - [aux_sym_keep_alive_token1] = ACTIONS(1170), - [aux_sym_tag_token1] = ACTIONS(1170), - [aux_sym_tunnel_token1] = ACTIONS(1172), - [aux_sym_tunnel_device_token1] = ACTIONS(1170), - [aux_sym_update_host_keys_token1] = ACTIONS(1170), - [aux_sym_use_keychain_token1] = ACTIONS(1170), - [aux_sym_use_roaming_token1] = ACTIONS(1170), - [aux_sym_user_token1] = ACTIONS(1172), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1170), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1170), - [aux_sym_visual_host_key_token1] = ACTIONS(1170), - [aux_sym_xauth_location_token1] = ACTIONS(1170), + [ts_builtin_sym_end] = ACTIONS(1175), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(1179), + [aux_sym_match_token1] = ACTIONS(1175), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1175), + [aux_sym_address_family_token1] = ACTIONS(1175), + [aux_sym_batch_mode_token1] = ACTIONS(1175), + [aux_sym_bind_address_token1] = ACTIONS(1175), + [aux_sym_bind_interface_token1] = ACTIONS(1175), + [aux_sym_canonical_domains_token1] = ACTIONS(1175), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1175), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1175), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1175), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1175), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1175), + [aux_sym_certificate_file_token1] = ACTIONS(1175), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1175), + [aux_sym_channel_timeout_token1] = ACTIONS(1175), + [aux_sym_check_host_ip_token1] = ACTIONS(1175), + [aux_sym_ciphers_token1] = ACTIONS(1175), + [aux_sym_cipher_token1] = ACTIONS(1177), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1175), + [aux_sym_compression_token1] = ACTIONS(1175), + [aux_sym_connection_attempts_token1] = ACTIONS(1175), + [aux_sym_connect_timeout_token1] = ACTIONS(1175), + [aux_sym_control_master_token1] = ACTIONS(1175), + [aux_sym_control_path_token1] = ACTIONS(1175), + [aux_sym_control_persist_token1] = ACTIONS(1175), + [aux_sym_dynamic_forward_token1] = ACTIONS(1175), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1175), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1175), + [aux_sym_escape_char_token1] = ACTIONS(1175), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1175), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1175), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1175), + [aux_sym_forward_agent_token1] = ACTIONS(1175), + [aux_sym_forward_x11_token1] = ACTIONS(1177), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1175), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1175), + [aux_sym_gateway_ports_token1] = ACTIONS(1175), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1175), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1175), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1175), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1175), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1175), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1175), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1175), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1175), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1175), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1175), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1175), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1175), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1175), + [aux_sym_host_key_alias_token1] = ACTIONS(1175), + [aux_sym_hostname_token1] = ACTIONS(1175), + [aux_sym_identities_only_token1] = ACTIONS(1175), + [aux_sym_identity_agent_token1] = ACTIONS(1175), + [aux_sym_identity_file_token1] = ACTIONS(1175), + [aux_sym_ignore_unknown_token1] = ACTIONS(1175), + [aux_sym_include_token1] = ACTIONS(1175), + [aux_sym_ip_qos_token1] = ACTIONS(1175), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1175), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1175), + [aux_sym_kex_algorithms_token1] = ACTIONS(1175), + [aux_sym_known_hosts_command_token1] = ACTIONS(1175), + [aux_sym_local_command_token1] = ACTIONS(1175), + [aux_sym_local_forward_token1] = ACTIONS(1175), + [aux_sym_log_level_token1] = ACTIONS(1175), + [aux_sym_log_verbose_token1] = ACTIONS(1175), + [aux_sym_macs_token1] = ACTIONS(1175), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1175), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1175), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1175), + [aux_sym_password_authentication_token1] = ACTIONS(1175), + [aux_sym_permit_local_command_token1] = ACTIONS(1175), + [aux_sym_permit_remote_open_token1] = ACTIONS(1175), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1175), + [aux_sym_port_token1] = ACTIONS(1175), + [aux_sym_preferred_authentications_token1] = ACTIONS(1175), + [aux_sym_protocol_token1] = ACTIONS(1175), + [aux_sym_proxy_command_token1] = ACTIONS(1175), + [aux_sym_proxy_jump_token1] = ACTIONS(1175), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1175), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1175), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1175), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1175), + [aux_sym_rekey_limit_token1] = ACTIONS(1175), + [aux_sym_remote_command_token1] = ACTIONS(1175), + [aux_sym_remote_forward_token1] = ACTIONS(1175), + [aux_sym_request_tty_token1] = ACTIONS(1175), + [aux_sym_required_rsa_size_token1] = ACTIONS(1175), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1175), + [aux_sym_security_key_provider_token1] = ACTIONS(1175), + [aux_sym_send_env_token1] = ACTIONS(1175), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1175), + [aux_sym_server_alive_interval_token1] = ACTIONS(1175), + [aux_sym_session_type_token1] = ACTIONS(1175), + [aux_sym_set_env_token1] = ACTIONS(1175), + [aux_sym_stdin_null_token1] = ACTIONS(1175), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1175), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1175), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1175), + [aux_sym_syslog_facility_token1] = ACTIONS(1175), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1175), + [aux_sym_keep_alive_token1] = ACTIONS(1175), + [aux_sym_tag_token1] = ACTIONS(1175), + [aux_sym_tunnel_token1] = ACTIONS(1177), + [aux_sym_tunnel_device_token1] = ACTIONS(1175), + [aux_sym_update_host_keys_token1] = ACTIONS(1175), + [aux_sym_use_keychain_token1] = ACTIONS(1175), + [aux_sym_use_roaming_token1] = ACTIONS(1175), + [aux_sym_user_token1] = ACTIONS(1177), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1175), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1175), + [aux_sym_visual_host_key_token1] = ACTIONS(1175), + [aux_sym_xauth_location_token1] = ACTIONS(1175), }, [103] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1178), - [anon_sym_DQUOTE] = ACTIONS(1180), - [aux_sym_match_token1] = ACTIONS(1176), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1176), - [aux_sym_address_family_token1] = ACTIONS(1176), - [aux_sym_batch_mode_token1] = ACTIONS(1176), - [aux_sym_bind_address_token1] = ACTIONS(1176), - [aux_sym_bind_interface_token1] = ACTIONS(1176), - [aux_sym_canonical_domains_token1] = ACTIONS(1176), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1176), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1176), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1176), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1176), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1176), - [aux_sym_certificate_file_token1] = ACTIONS(1176), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1176), - [aux_sym_channel_timeout_token1] = ACTIONS(1176), - [aux_sym_check_host_ip_token1] = ACTIONS(1176), - [aux_sym_ciphers_token1] = ACTIONS(1176), - [aux_sym_cipher_token1] = ACTIONS(1178), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1176), - [aux_sym_compression_token1] = ACTIONS(1176), - [aux_sym_connection_attempts_token1] = ACTIONS(1176), - [aux_sym_connect_timeout_token1] = ACTIONS(1176), - [aux_sym_control_master_token1] = ACTIONS(1176), - [aux_sym_control_path_token1] = ACTIONS(1176), - [aux_sym_control_persist_token1] = ACTIONS(1176), - [aux_sym_dynamic_forward_token1] = ACTIONS(1176), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1176), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1176), - [aux_sym_escape_char_token1] = ACTIONS(1176), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1176), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1176), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1176), - [aux_sym_forward_agent_token1] = ACTIONS(1176), - [aux_sym_forward_x11_token1] = ACTIONS(1178), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1176), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1176), - [aux_sym_gateway_ports_token1] = ACTIONS(1176), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1176), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1176), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1176), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1176), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1176), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1176), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1176), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1176), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1176), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1176), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1176), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1176), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1176), - [aux_sym_host_key_alias_token1] = ACTIONS(1176), - [aux_sym_hostname_token1] = ACTIONS(1176), - [aux_sym_identities_only_token1] = ACTIONS(1176), - [aux_sym_identity_agent_token1] = ACTIONS(1176), - [aux_sym_identity_file_token1] = ACTIONS(1176), - [aux_sym_ignore_unknown_token1] = ACTIONS(1176), - [aux_sym_include_token1] = ACTIONS(1176), - [aux_sym_ip_qos_token1] = ACTIONS(1176), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1176), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1176), - [aux_sym_kex_algorithms_token1] = ACTIONS(1176), - [aux_sym_known_hosts_command_token1] = ACTIONS(1176), - [aux_sym_local_command_token1] = ACTIONS(1176), - [aux_sym_local_forward_token1] = ACTIONS(1176), - [aux_sym_log_level_token1] = ACTIONS(1176), - [aux_sym_log_verbose_token1] = ACTIONS(1176), - [aux_sym_macs_token1] = ACTIONS(1176), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1176), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1176), - [aux_sym_password_authentication_token1] = ACTIONS(1176), - [aux_sym_permit_local_command_token1] = ACTIONS(1176), - [aux_sym_permit_remote_open_token1] = ACTIONS(1176), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1176), - [aux_sym_port_token1] = ACTIONS(1176), - [aux_sym_preferred_authentications_token1] = ACTIONS(1176), - [aux_sym_protocol_token1] = ACTIONS(1176), - [aux_sym_proxy_command_token1] = ACTIONS(1176), - [aux_sym_proxy_jump_token1] = ACTIONS(1176), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1176), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1176), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1176), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1176), - [aux_sym_rekey_limit_token1] = ACTIONS(1176), - [aux_sym_remote_command_token1] = ACTIONS(1176), - [aux_sym_remote_forward_token1] = ACTIONS(1176), - [aux_sym_request_tty_token1] = ACTIONS(1176), - [aux_sym_required_rsa_size_token1] = ACTIONS(1176), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1176), - [aux_sym_security_key_provider_token1] = ACTIONS(1176), - [aux_sym_send_env_token1] = ACTIONS(1176), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1176), - [aux_sym_server_alive_interval_token1] = ACTIONS(1176), - [aux_sym_session_type_token1] = ACTIONS(1176), - [aux_sym_set_env_token1] = ACTIONS(1176), - [aux_sym_stdin_null_token1] = ACTIONS(1176), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1176), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1176), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1176), - [aux_sym_syslog_facility_token1] = ACTIONS(1176), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1176), - [aux_sym_keep_alive_token1] = ACTIONS(1176), - [aux_sym_tag_token1] = ACTIONS(1176), - [aux_sym_tunnel_token1] = ACTIONS(1178), - [aux_sym_tunnel_device_token1] = ACTIONS(1176), - [aux_sym_update_host_keys_token1] = ACTIONS(1176), - [aux_sym_use_keychain_token1] = ACTIONS(1176), - [aux_sym_use_roaming_token1] = ACTIONS(1176), - [aux_sym_user_token1] = ACTIONS(1178), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1176), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1176), - [aux_sym_visual_host_key_token1] = ACTIONS(1176), - [aux_sym_xauth_location_token1] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1185), + [aux_sym_match_token1] = ACTIONS(1181), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1181), + [aux_sym_address_family_token1] = ACTIONS(1181), + [aux_sym_batch_mode_token1] = ACTIONS(1181), + [aux_sym_bind_address_token1] = ACTIONS(1181), + [aux_sym_bind_interface_token1] = ACTIONS(1181), + [aux_sym_canonical_domains_token1] = ACTIONS(1181), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1181), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1181), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1181), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1181), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1181), + [aux_sym_certificate_file_token1] = ACTIONS(1181), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1181), + [aux_sym_channel_timeout_token1] = ACTIONS(1181), + [aux_sym_check_host_ip_token1] = ACTIONS(1181), + [aux_sym_ciphers_token1] = ACTIONS(1181), + [aux_sym_cipher_token1] = ACTIONS(1183), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1181), + [aux_sym_compression_token1] = ACTIONS(1181), + [aux_sym_connection_attempts_token1] = ACTIONS(1181), + [aux_sym_connect_timeout_token1] = ACTIONS(1181), + [aux_sym_control_master_token1] = ACTIONS(1181), + [aux_sym_control_path_token1] = ACTIONS(1181), + [aux_sym_control_persist_token1] = ACTIONS(1181), + [aux_sym_dynamic_forward_token1] = ACTIONS(1181), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1181), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1181), + [aux_sym_escape_char_token1] = ACTIONS(1181), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1181), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1181), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1181), + [aux_sym_forward_agent_token1] = ACTIONS(1181), + [aux_sym_forward_x11_token1] = ACTIONS(1183), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1181), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1181), + [aux_sym_gateway_ports_token1] = ACTIONS(1181), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1181), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1181), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1181), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1181), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1181), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1181), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1181), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1181), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1181), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1181), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1181), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1181), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1181), + [aux_sym_host_key_alias_token1] = ACTIONS(1181), + [aux_sym_hostname_token1] = ACTIONS(1181), + [aux_sym_identities_only_token1] = ACTIONS(1181), + [aux_sym_identity_agent_token1] = ACTIONS(1181), + [aux_sym_identity_file_token1] = ACTIONS(1181), + [aux_sym_ignore_unknown_token1] = ACTIONS(1181), + [aux_sym_include_token1] = ACTIONS(1181), + [aux_sym_ip_qos_token1] = ACTIONS(1181), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1181), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1181), + [aux_sym_kex_algorithms_token1] = ACTIONS(1181), + [aux_sym_known_hosts_command_token1] = ACTIONS(1181), + [aux_sym_local_command_token1] = ACTIONS(1181), + [aux_sym_local_forward_token1] = ACTIONS(1181), + [aux_sym_log_level_token1] = ACTIONS(1181), + [aux_sym_log_verbose_token1] = ACTIONS(1181), + [aux_sym_macs_token1] = ACTIONS(1181), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1181), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1181), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1181), + [aux_sym_password_authentication_token1] = ACTIONS(1181), + [aux_sym_permit_local_command_token1] = ACTIONS(1181), + [aux_sym_permit_remote_open_token1] = ACTIONS(1181), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1181), + [aux_sym_port_token1] = ACTIONS(1181), + [aux_sym_preferred_authentications_token1] = ACTIONS(1181), + [aux_sym_protocol_token1] = ACTIONS(1181), + [aux_sym_proxy_command_token1] = ACTIONS(1181), + [aux_sym_proxy_jump_token1] = ACTIONS(1181), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1181), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1181), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1181), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1181), + [aux_sym_rekey_limit_token1] = ACTIONS(1181), + [aux_sym_remote_command_token1] = ACTIONS(1181), + [aux_sym_remote_forward_token1] = ACTIONS(1181), + [aux_sym_request_tty_token1] = ACTIONS(1181), + [aux_sym_required_rsa_size_token1] = ACTIONS(1181), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1181), + [aux_sym_security_key_provider_token1] = ACTIONS(1181), + [aux_sym_send_env_token1] = ACTIONS(1181), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1181), + [aux_sym_server_alive_interval_token1] = ACTIONS(1181), + [aux_sym_session_type_token1] = ACTIONS(1181), + [aux_sym_set_env_token1] = ACTIONS(1181), + [aux_sym_stdin_null_token1] = ACTIONS(1181), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1181), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1181), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1181), + [aux_sym_syslog_facility_token1] = ACTIONS(1181), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1181), + [aux_sym_keep_alive_token1] = ACTIONS(1181), + [aux_sym_tag_token1] = ACTIONS(1181), + [aux_sym_tunnel_token1] = ACTIONS(1183), + [aux_sym_tunnel_device_token1] = ACTIONS(1181), + [aux_sym_update_host_keys_token1] = ACTIONS(1181), + [aux_sym_use_keychain_token1] = ACTIONS(1181), + [aux_sym_use_roaming_token1] = ACTIONS(1181), + [aux_sym_user_token1] = ACTIONS(1183), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1181), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1181), + [aux_sym_visual_host_key_token1] = ACTIONS(1181), + [aux_sym_xauth_location_token1] = ACTIONS(1181), }, [104] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1184), - [anon_sym_DQUOTE] = ACTIONS(1186), - [aux_sym_match_token1] = ACTIONS(1182), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1182), - [aux_sym_address_family_token1] = ACTIONS(1182), - [aux_sym_batch_mode_token1] = ACTIONS(1182), - [aux_sym_bind_address_token1] = ACTIONS(1182), - [aux_sym_bind_interface_token1] = ACTIONS(1182), - [aux_sym_canonical_domains_token1] = ACTIONS(1182), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1182), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1182), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1182), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1182), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1182), - [aux_sym_certificate_file_token1] = ACTIONS(1182), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1182), - [aux_sym_channel_timeout_token1] = ACTIONS(1182), - [aux_sym_check_host_ip_token1] = ACTIONS(1182), - [aux_sym_ciphers_token1] = ACTIONS(1182), - [aux_sym_cipher_token1] = ACTIONS(1184), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1182), - [aux_sym_compression_token1] = ACTIONS(1182), - [aux_sym_connection_attempts_token1] = ACTIONS(1182), - [aux_sym_connect_timeout_token1] = ACTIONS(1182), - [aux_sym_control_master_token1] = ACTIONS(1182), - [aux_sym_control_path_token1] = ACTIONS(1182), - [aux_sym_control_persist_token1] = ACTIONS(1182), - [aux_sym_dynamic_forward_token1] = ACTIONS(1182), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1182), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1182), - [aux_sym_escape_char_token1] = ACTIONS(1182), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1182), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1182), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1182), - [aux_sym_forward_agent_token1] = ACTIONS(1182), - [aux_sym_forward_x11_token1] = ACTIONS(1184), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1182), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1182), - [aux_sym_gateway_ports_token1] = ACTIONS(1182), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1182), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1182), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1182), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1182), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1182), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1182), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1182), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1182), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1182), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1182), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1182), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1182), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1182), - [aux_sym_host_key_alias_token1] = ACTIONS(1182), - [aux_sym_hostname_token1] = ACTIONS(1182), - [aux_sym_identities_only_token1] = ACTIONS(1182), - [aux_sym_identity_agent_token1] = ACTIONS(1182), - [aux_sym_identity_file_token1] = ACTIONS(1182), - [aux_sym_ignore_unknown_token1] = ACTIONS(1182), - [aux_sym_include_token1] = ACTIONS(1182), - [aux_sym_ip_qos_token1] = ACTIONS(1182), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1182), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1182), - [aux_sym_kex_algorithms_token1] = ACTIONS(1182), - [aux_sym_known_hosts_command_token1] = ACTIONS(1182), - [aux_sym_local_command_token1] = ACTIONS(1182), - [aux_sym_local_forward_token1] = ACTIONS(1182), - [aux_sym_log_level_token1] = ACTIONS(1182), - [aux_sym_log_verbose_token1] = ACTIONS(1182), - [aux_sym_macs_token1] = ACTIONS(1182), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1182), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1182), - [aux_sym_password_authentication_token1] = ACTIONS(1182), - [aux_sym_permit_local_command_token1] = ACTIONS(1182), - [aux_sym_permit_remote_open_token1] = ACTIONS(1182), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1182), - [aux_sym_port_token1] = ACTIONS(1182), - [aux_sym_preferred_authentications_token1] = ACTIONS(1182), - [aux_sym_protocol_token1] = ACTIONS(1182), - [aux_sym_proxy_command_token1] = ACTIONS(1182), - [aux_sym_proxy_jump_token1] = ACTIONS(1182), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1182), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1182), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1182), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1182), - [aux_sym_rekey_limit_token1] = ACTIONS(1182), - [aux_sym_remote_command_token1] = ACTIONS(1182), - [aux_sym_remote_forward_token1] = ACTIONS(1182), - [aux_sym_request_tty_token1] = ACTIONS(1182), - [aux_sym_required_rsa_size_token1] = ACTIONS(1182), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1182), - [aux_sym_security_key_provider_token1] = ACTIONS(1182), - [aux_sym_send_env_token1] = ACTIONS(1182), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1182), - [aux_sym_server_alive_interval_token1] = ACTIONS(1182), - [aux_sym_session_type_token1] = ACTIONS(1182), - [aux_sym_set_env_token1] = ACTIONS(1182), - [aux_sym_stdin_null_token1] = ACTIONS(1182), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1182), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1182), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1182), - [aux_sym_syslog_facility_token1] = ACTIONS(1182), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1182), - [aux_sym_keep_alive_token1] = ACTIONS(1182), - [aux_sym_tag_token1] = ACTIONS(1182), - [aux_sym_tunnel_token1] = ACTIONS(1184), - [aux_sym_tunnel_device_token1] = ACTIONS(1182), - [aux_sym_update_host_keys_token1] = ACTIONS(1182), - [aux_sym_use_keychain_token1] = ACTIONS(1182), - [aux_sym_use_roaming_token1] = ACTIONS(1182), - [aux_sym_user_token1] = ACTIONS(1184), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1182), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1182), - [aux_sym_visual_host_key_token1] = ACTIONS(1182), - [aux_sym_xauth_location_token1] = ACTIONS(1182), + [ts_builtin_sym_end] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1189), + [anon_sym_DQUOTE] = ACTIONS(1191), + [aux_sym_match_token1] = ACTIONS(1187), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1187), + [aux_sym_address_family_token1] = ACTIONS(1187), + [aux_sym_batch_mode_token1] = ACTIONS(1187), + [aux_sym_bind_address_token1] = ACTIONS(1187), + [aux_sym_bind_interface_token1] = ACTIONS(1187), + [aux_sym_canonical_domains_token1] = ACTIONS(1187), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1187), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1187), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1187), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1187), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1187), + [aux_sym_certificate_file_token1] = ACTIONS(1187), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1187), + [aux_sym_channel_timeout_token1] = ACTIONS(1187), + [aux_sym_check_host_ip_token1] = ACTIONS(1187), + [aux_sym_ciphers_token1] = ACTIONS(1187), + [aux_sym_cipher_token1] = ACTIONS(1189), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1187), + [aux_sym_compression_token1] = ACTIONS(1187), + [aux_sym_connection_attempts_token1] = ACTIONS(1187), + [aux_sym_connect_timeout_token1] = ACTIONS(1187), + [aux_sym_control_master_token1] = ACTIONS(1187), + [aux_sym_control_path_token1] = ACTIONS(1187), + [aux_sym_control_persist_token1] = ACTIONS(1187), + [aux_sym_dynamic_forward_token1] = ACTIONS(1187), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1187), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1187), + [aux_sym_escape_char_token1] = ACTIONS(1187), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1187), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1187), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1187), + [aux_sym_forward_agent_token1] = ACTIONS(1187), + [aux_sym_forward_x11_token1] = ACTIONS(1189), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1187), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1187), + [aux_sym_gateway_ports_token1] = ACTIONS(1187), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1187), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1187), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1187), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1187), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1187), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1187), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1187), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1187), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1187), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1187), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1187), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1187), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1187), + [aux_sym_host_key_alias_token1] = ACTIONS(1187), + [aux_sym_hostname_token1] = ACTIONS(1187), + [aux_sym_identities_only_token1] = ACTIONS(1187), + [aux_sym_identity_agent_token1] = ACTIONS(1187), + [aux_sym_identity_file_token1] = ACTIONS(1187), + [aux_sym_ignore_unknown_token1] = ACTIONS(1187), + [aux_sym_include_token1] = ACTIONS(1187), + [aux_sym_ip_qos_token1] = ACTIONS(1187), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1187), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1187), + [aux_sym_kex_algorithms_token1] = ACTIONS(1187), + [aux_sym_known_hosts_command_token1] = ACTIONS(1187), + [aux_sym_local_command_token1] = ACTIONS(1187), + [aux_sym_local_forward_token1] = ACTIONS(1187), + [aux_sym_log_level_token1] = ACTIONS(1187), + [aux_sym_log_verbose_token1] = ACTIONS(1187), + [aux_sym_macs_token1] = ACTIONS(1187), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1187), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1187), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1187), + [aux_sym_password_authentication_token1] = ACTIONS(1187), + [aux_sym_permit_local_command_token1] = ACTIONS(1187), + [aux_sym_permit_remote_open_token1] = ACTIONS(1187), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1187), + [aux_sym_port_token1] = ACTIONS(1187), + [aux_sym_preferred_authentications_token1] = ACTIONS(1187), + [aux_sym_protocol_token1] = ACTIONS(1187), + [aux_sym_proxy_command_token1] = ACTIONS(1187), + [aux_sym_proxy_jump_token1] = ACTIONS(1187), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1187), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1187), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1187), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1187), + [aux_sym_rekey_limit_token1] = ACTIONS(1187), + [aux_sym_remote_command_token1] = ACTIONS(1187), + [aux_sym_remote_forward_token1] = ACTIONS(1187), + [aux_sym_request_tty_token1] = ACTIONS(1187), + [aux_sym_required_rsa_size_token1] = ACTIONS(1187), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1187), + [aux_sym_security_key_provider_token1] = ACTIONS(1187), + [aux_sym_send_env_token1] = ACTIONS(1187), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1187), + [aux_sym_server_alive_interval_token1] = ACTIONS(1187), + [aux_sym_session_type_token1] = ACTIONS(1187), + [aux_sym_set_env_token1] = ACTIONS(1187), + [aux_sym_stdin_null_token1] = ACTIONS(1187), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1187), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1187), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1187), + [aux_sym_syslog_facility_token1] = ACTIONS(1187), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1187), + [aux_sym_keep_alive_token1] = ACTIONS(1187), + [aux_sym_tag_token1] = ACTIONS(1187), + [aux_sym_tunnel_token1] = ACTIONS(1189), + [aux_sym_tunnel_device_token1] = ACTIONS(1187), + [aux_sym_update_host_keys_token1] = ACTIONS(1187), + [aux_sym_use_keychain_token1] = ACTIONS(1187), + [aux_sym_use_roaming_token1] = ACTIONS(1187), + [aux_sym_user_token1] = ACTIONS(1189), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1187), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1187), + [aux_sym_visual_host_key_token1] = ACTIONS(1187), + [aux_sym_xauth_location_token1] = ACTIONS(1187), }, [105] = { - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1190), - [anon_sym_DQUOTE] = ACTIONS(1192), - [aux_sym_match_token1] = ACTIONS(1188), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1188), - [aux_sym_address_family_token1] = ACTIONS(1188), - [aux_sym_batch_mode_token1] = ACTIONS(1188), - [aux_sym_bind_address_token1] = ACTIONS(1188), - [aux_sym_bind_interface_token1] = ACTIONS(1188), - [aux_sym_canonical_domains_token1] = ACTIONS(1188), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1188), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1188), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1188), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1188), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1188), - [aux_sym_certificate_file_token1] = ACTIONS(1188), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1188), - [aux_sym_channel_timeout_token1] = ACTIONS(1188), - [aux_sym_check_host_ip_token1] = ACTIONS(1188), - [aux_sym_ciphers_token1] = ACTIONS(1188), - [aux_sym_cipher_token1] = ACTIONS(1190), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1188), - [aux_sym_compression_token1] = ACTIONS(1188), - [aux_sym_connection_attempts_token1] = ACTIONS(1188), - [aux_sym_connect_timeout_token1] = ACTIONS(1188), - [aux_sym_control_master_token1] = ACTIONS(1188), - [aux_sym_control_path_token1] = ACTIONS(1188), - [aux_sym_control_persist_token1] = ACTIONS(1188), - [aux_sym_dynamic_forward_token1] = ACTIONS(1188), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1188), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1188), - [aux_sym_escape_char_token1] = ACTIONS(1188), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1188), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1188), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1188), - [aux_sym_forward_agent_token1] = ACTIONS(1188), - [aux_sym_forward_x11_token1] = ACTIONS(1190), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1188), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1188), - [aux_sym_gateway_ports_token1] = ACTIONS(1188), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1188), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1188), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1188), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1188), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1188), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1188), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1188), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1188), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1188), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1188), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1188), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1188), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1188), - [aux_sym_host_key_alias_token1] = ACTIONS(1188), - [aux_sym_hostname_token1] = ACTIONS(1188), - [aux_sym_identities_only_token1] = ACTIONS(1188), - [aux_sym_identity_agent_token1] = ACTIONS(1188), - [aux_sym_identity_file_token1] = ACTIONS(1188), - [aux_sym_ignore_unknown_token1] = ACTIONS(1188), - [aux_sym_include_token1] = ACTIONS(1188), - [aux_sym_ip_qos_token1] = ACTIONS(1188), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1188), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1188), - [aux_sym_kex_algorithms_token1] = ACTIONS(1188), - [aux_sym_known_hosts_command_token1] = ACTIONS(1188), - [aux_sym_local_command_token1] = ACTIONS(1188), - [aux_sym_local_forward_token1] = ACTIONS(1188), - [aux_sym_log_level_token1] = ACTIONS(1188), - [aux_sym_log_verbose_token1] = ACTIONS(1188), - [aux_sym_macs_token1] = ACTIONS(1188), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1188), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1188), - [aux_sym_password_authentication_token1] = ACTIONS(1188), - [aux_sym_permit_local_command_token1] = ACTIONS(1188), - [aux_sym_permit_remote_open_token1] = ACTIONS(1188), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1188), - [aux_sym_port_token1] = ACTIONS(1188), - [aux_sym_preferred_authentications_token1] = ACTIONS(1188), - [aux_sym_protocol_token1] = ACTIONS(1188), - [aux_sym_proxy_command_token1] = ACTIONS(1188), - [aux_sym_proxy_jump_token1] = ACTIONS(1188), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1188), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1188), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1188), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1188), - [aux_sym_rekey_limit_token1] = ACTIONS(1188), - [aux_sym_remote_command_token1] = ACTIONS(1188), - [aux_sym_remote_forward_token1] = ACTIONS(1188), - [aux_sym_request_tty_token1] = ACTIONS(1188), - [aux_sym_required_rsa_size_token1] = ACTIONS(1188), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1188), - [aux_sym_security_key_provider_token1] = ACTIONS(1188), - [aux_sym_send_env_token1] = ACTIONS(1188), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1188), - [aux_sym_server_alive_interval_token1] = ACTIONS(1188), - [aux_sym_session_type_token1] = ACTIONS(1188), - [aux_sym_set_env_token1] = ACTIONS(1188), - [aux_sym_stdin_null_token1] = ACTIONS(1188), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1188), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1188), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1188), - [aux_sym_syslog_facility_token1] = ACTIONS(1188), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1188), - [aux_sym_keep_alive_token1] = ACTIONS(1188), - [aux_sym_tag_token1] = ACTIONS(1188), - [aux_sym_tunnel_token1] = ACTIONS(1190), - [aux_sym_tunnel_device_token1] = ACTIONS(1188), - [aux_sym_update_host_keys_token1] = ACTIONS(1188), - [aux_sym_use_keychain_token1] = ACTIONS(1188), - [aux_sym_use_roaming_token1] = ACTIONS(1188), - [aux_sym_user_token1] = ACTIONS(1190), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1188), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1188), - [aux_sym_visual_host_key_token1] = ACTIONS(1188), - [aux_sym_xauth_location_token1] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1195), + [anon_sym_DQUOTE] = ACTIONS(1197), + [aux_sym_match_token1] = ACTIONS(1193), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1193), + [aux_sym_address_family_token1] = ACTIONS(1193), + [aux_sym_batch_mode_token1] = ACTIONS(1193), + [aux_sym_bind_address_token1] = ACTIONS(1193), + [aux_sym_bind_interface_token1] = ACTIONS(1193), + [aux_sym_canonical_domains_token1] = ACTIONS(1193), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1193), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1193), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1193), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1193), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1193), + [aux_sym_certificate_file_token1] = ACTIONS(1193), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1193), + [aux_sym_channel_timeout_token1] = ACTIONS(1193), + [aux_sym_check_host_ip_token1] = ACTIONS(1193), + [aux_sym_ciphers_token1] = ACTIONS(1193), + [aux_sym_cipher_token1] = ACTIONS(1195), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1193), + [aux_sym_compression_token1] = ACTIONS(1193), + [aux_sym_connection_attempts_token1] = ACTIONS(1193), + [aux_sym_connect_timeout_token1] = ACTIONS(1193), + [aux_sym_control_master_token1] = ACTIONS(1193), + [aux_sym_control_path_token1] = ACTIONS(1193), + [aux_sym_control_persist_token1] = ACTIONS(1193), + [aux_sym_dynamic_forward_token1] = ACTIONS(1193), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1193), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1193), + [aux_sym_escape_char_token1] = ACTIONS(1193), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1193), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1193), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1193), + [aux_sym_forward_agent_token1] = ACTIONS(1193), + [aux_sym_forward_x11_token1] = ACTIONS(1195), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1193), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1193), + [aux_sym_gateway_ports_token1] = ACTIONS(1193), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1193), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1193), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1193), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1193), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1193), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1193), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1193), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1193), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1193), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1193), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1193), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1193), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1193), + [aux_sym_host_key_alias_token1] = ACTIONS(1193), + [aux_sym_hostname_token1] = ACTIONS(1193), + [aux_sym_identities_only_token1] = ACTIONS(1193), + [aux_sym_identity_agent_token1] = ACTIONS(1193), + [aux_sym_identity_file_token1] = ACTIONS(1193), + [aux_sym_ignore_unknown_token1] = ACTIONS(1193), + [aux_sym_include_token1] = ACTIONS(1193), + [aux_sym_ip_qos_token1] = ACTIONS(1193), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1193), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1193), + [aux_sym_kex_algorithms_token1] = ACTIONS(1193), + [aux_sym_known_hosts_command_token1] = ACTIONS(1193), + [aux_sym_local_command_token1] = ACTIONS(1193), + [aux_sym_local_forward_token1] = ACTIONS(1193), + [aux_sym_log_level_token1] = ACTIONS(1193), + [aux_sym_log_verbose_token1] = ACTIONS(1193), + [aux_sym_macs_token1] = ACTIONS(1193), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1193), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1193), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1193), + [aux_sym_password_authentication_token1] = ACTIONS(1193), + [aux_sym_permit_local_command_token1] = ACTIONS(1193), + [aux_sym_permit_remote_open_token1] = ACTIONS(1193), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1193), + [aux_sym_port_token1] = ACTIONS(1193), + [aux_sym_preferred_authentications_token1] = ACTIONS(1193), + [aux_sym_protocol_token1] = ACTIONS(1193), + [aux_sym_proxy_command_token1] = ACTIONS(1193), + [aux_sym_proxy_jump_token1] = ACTIONS(1193), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1193), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1193), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1193), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1193), + [aux_sym_rekey_limit_token1] = ACTIONS(1193), + [aux_sym_remote_command_token1] = ACTIONS(1193), + [aux_sym_remote_forward_token1] = ACTIONS(1193), + [aux_sym_request_tty_token1] = ACTIONS(1193), + [aux_sym_required_rsa_size_token1] = ACTIONS(1193), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1193), + [aux_sym_security_key_provider_token1] = ACTIONS(1193), + [aux_sym_send_env_token1] = ACTIONS(1193), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1193), + [aux_sym_server_alive_interval_token1] = ACTIONS(1193), + [aux_sym_session_type_token1] = ACTIONS(1193), + [aux_sym_set_env_token1] = ACTIONS(1193), + [aux_sym_stdin_null_token1] = ACTIONS(1193), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1193), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1193), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1193), + [aux_sym_syslog_facility_token1] = ACTIONS(1193), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1193), + [aux_sym_keep_alive_token1] = ACTIONS(1193), + [aux_sym_tag_token1] = ACTIONS(1193), + [aux_sym_tunnel_token1] = ACTIONS(1195), + [aux_sym_tunnel_device_token1] = ACTIONS(1193), + [aux_sym_update_host_keys_token1] = ACTIONS(1193), + [aux_sym_use_keychain_token1] = ACTIONS(1193), + [aux_sym_use_roaming_token1] = ACTIONS(1193), + [aux_sym_user_token1] = ACTIONS(1195), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1193), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1193), + [aux_sym_visual_host_key_token1] = ACTIONS(1193), + [aux_sym_xauth_location_token1] = ACTIONS(1193), }, [106] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1196), - [anon_sym_DQUOTE] = ACTIONS(1198), - [aux_sym_match_token1] = ACTIONS(1194), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1194), - [aux_sym_address_family_token1] = ACTIONS(1194), - [aux_sym_batch_mode_token1] = ACTIONS(1194), - [aux_sym_bind_address_token1] = ACTIONS(1194), - [aux_sym_bind_interface_token1] = ACTIONS(1194), - [aux_sym_canonical_domains_token1] = ACTIONS(1194), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1194), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1194), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1194), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1194), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1194), - [aux_sym_certificate_file_token1] = ACTIONS(1194), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1194), - [aux_sym_channel_timeout_token1] = ACTIONS(1194), - [aux_sym_check_host_ip_token1] = ACTIONS(1194), - [aux_sym_ciphers_token1] = ACTIONS(1194), - [aux_sym_cipher_token1] = ACTIONS(1196), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1194), - [aux_sym_compression_token1] = ACTIONS(1194), - [aux_sym_connection_attempts_token1] = ACTIONS(1194), - [aux_sym_connect_timeout_token1] = ACTIONS(1194), - [aux_sym_control_master_token1] = ACTIONS(1194), - [aux_sym_control_path_token1] = ACTIONS(1194), - [aux_sym_control_persist_token1] = ACTIONS(1194), - [aux_sym_dynamic_forward_token1] = ACTIONS(1194), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1194), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1194), - [aux_sym_escape_char_token1] = ACTIONS(1194), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1194), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1194), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1194), - [aux_sym_forward_agent_token1] = ACTIONS(1194), - [aux_sym_forward_x11_token1] = ACTIONS(1196), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1194), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1194), - [aux_sym_gateway_ports_token1] = ACTIONS(1194), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1194), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1194), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1194), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1194), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1194), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1194), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1194), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1194), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1194), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1194), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1194), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1194), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1194), - [aux_sym_host_key_alias_token1] = ACTIONS(1194), - [aux_sym_hostname_token1] = ACTIONS(1194), - [aux_sym_identities_only_token1] = ACTIONS(1194), - [aux_sym_identity_agent_token1] = ACTIONS(1194), - [aux_sym_identity_file_token1] = ACTIONS(1194), - [aux_sym_ignore_unknown_token1] = ACTIONS(1194), - [aux_sym_include_token1] = ACTIONS(1194), - [aux_sym_ip_qos_token1] = ACTIONS(1194), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1194), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1194), - [aux_sym_kex_algorithms_token1] = ACTIONS(1194), - [aux_sym_known_hosts_command_token1] = ACTIONS(1194), - [aux_sym_local_command_token1] = ACTIONS(1194), - [aux_sym_local_forward_token1] = ACTIONS(1194), - [aux_sym_log_level_token1] = ACTIONS(1194), - [aux_sym_log_verbose_token1] = ACTIONS(1194), - [aux_sym_macs_token1] = ACTIONS(1194), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1194), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1194), - [aux_sym_password_authentication_token1] = ACTIONS(1194), - [aux_sym_permit_local_command_token1] = ACTIONS(1194), - [aux_sym_permit_remote_open_token1] = ACTIONS(1194), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1194), - [aux_sym_port_token1] = ACTIONS(1194), - [aux_sym_preferred_authentications_token1] = ACTIONS(1194), - [aux_sym_protocol_token1] = ACTIONS(1194), - [aux_sym_proxy_command_token1] = ACTIONS(1194), - [aux_sym_proxy_jump_token1] = ACTIONS(1194), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1194), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1194), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1194), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1194), - [aux_sym_rekey_limit_token1] = ACTIONS(1194), - [aux_sym_remote_command_token1] = ACTIONS(1194), - [aux_sym_remote_forward_token1] = ACTIONS(1194), - [aux_sym_request_tty_token1] = ACTIONS(1194), - [aux_sym_required_rsa_size_token1] = ACTIONS(1194), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1194), - [aux_sym_security_key_provider_token1] = ACTIONS(1194), - [aux_sym_send_env_token1] = ACTIONS(1194), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1194), - [aux_sym_server_alive_interval_token1] = ACTIONS(1194), - [aux_sym_session_type_token1] = ACTIONS(1194), - [aux_sym_set_env_token1] = ACTIONS(1194), - [aux_sym_stdin_null_token1] = ACTIONS(1194), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1194), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1194), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1194), - [aux_sym_syslog_facility_token1] = ACTIONS(1194), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1194), - [aux_sym_keep_alive_token1] = ACTIONS(1194), - [aux_sym_tag_token1] = ACTIONS(1194), - [aux_sym_tunnel_token1] = ACTIONS(1196), - [aux_sym_tunnel_device_token1] = ACTIONS(1194), - [aux_sym_update_host_keys_token1] = ACTIONS(1194), - [aux_sym_use_keychain_token1] = ACTIONS(1194), - [aux_sym_use_roaming_token1] = ACTIONS(1194), - [aux_sym_user_token1] = ACTIONS(1196), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1194), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1194), - [aux_sym_visual_host_key_token1] = ACTIONS(1194), - [aux_sym_xauth_location_token1] = ACTIONS(1194), + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1201), + [anon_sym_DQUOTE] = ACTIONS(1203), + [aux_sym_match_token1] = ACTIONS(1199), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1199), + [aux_sym_address_family_token1] = ACTIONS(1199), + [aux_sym_batch_mode_token1] = ACTIONS(1199), + [aux_sym_bind_address_token1] = ACTIONS(1199), + [aux_sym_bind_interface_token1] = ACTIONS(1199), + [aux_sym_canonical_domains_token1] = ACTIONS(1199), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1199), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1199), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1199), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1199), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1199), + [aux_sym_certificate_file_token1] = ACTIONS(1199), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1199), + [aux_sym_channel_timeout_token1] = ACTIONS(1199), + [aux_sym_check_host_ip_token1] = ACTIONS(1199), + [aux_sym_ciphers_token1] = ACTIONS(1199), + [aux_sym_cipher_token1] = ACTIONS(1201), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1199), + [aux_sym_compression_token1] = ACTIONS(1199), + [aux_sym_connection_attempts_token1] = ACTIONS(1199), + [aux_sym_connect_timeout_token1] = ACTIONS(1199), + [aux_sym_control_master_token1] = ACTIONS(1199), + [aux_sym_control_path_token1] = ACTIONS(1199), + [aux_sym_control_persist_token1] = ACTIONS(1199), + [aux_sym_dynamic_forward_token1] = ACTIONS(1199), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1199), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1199), + [aux_sym_escape_char_token1] = ACTIONS(1199), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1199), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1199), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1199), + [aux_sym_forward_agent_token1] = ACTIONS(1199), + [aux_sym_forward_x11_token1] = ACTIONS(1201), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1199), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1199), + [aux_sym_gateway_ports_token1] = ACTIONS(1199), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1199), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1199), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1199), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1199), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1199), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1199), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1199), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1199), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1199), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1199), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1199), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1199), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1199), + [aux_sym_host_key_alias_token1] = ACTIONS(1199), + [aux_sym_hostname_token1] = ACTIONS(1199), + [aux_sym_identities_only_token1] = ACTIONS(1199), + [aux_sym_identity_agent_token1] = ACTIONS(1199), + [aux_sym_identity_file_token1] = ACTIONS(1199), + [aux_sym_ignore_unknown_token1] = ACTIONS(1199), + [aux_sym_include_token1] = ACTIONS(1199), + [aux_sym_ip_qos_token1] = ACTIONS(1199), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1199), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1199), + [aux_sym_kex_algorithms_token1] = ACTIONS(1199), + [aux_sym_known_hosts_command_token1] = ACTIONS(1199), + [aux_sym_local_command_token1] = ACTIONS(1199), + [aux_sym_local_forward_token1] = ACTIONS(1199), + [aux_sym_log_level_token1] = ACTIONS(1199), + [aux_sym_log_verbose_token1] = ACTIONS(1199), + [aux_sym_macs_token1] = ACTIONS(1199), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1199), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1199), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1199), + [aux_sym_password_authentication_token1] = ACTIONS(1199), + [aux_sym_permit_local_command_token1] = ACTIONS(1199), + [aux_sym_permit_remote_open_token1] = ACTIONS(1199), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1199), + [aux_sym_port_token1] = ACTIONS(1199), + [aux_sym_preferred_authentications_token1] = ACTIONS(1199), + [aux_sym_protocol_token1] = ACTIONS(1199), + [aux_sym_proxy_command_token1] = ACTIONS(1199), + [aux_sym_proxy_jump_token1] = ACTIONS(1199), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1199), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1199), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1199), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1199), + [aux_sym_rekey_limit_token1] = ACTIONS(1199), + [aux_sym_remote_command_token1] = ACTIONS(1199), + [aux_sym_remote_forward_token1] = ACTIONS(1199), + [aux_sym_request_tty_token1] = ACTIONS(1199), + [aux_sym_required_rsa_size_token1] = ACTIONS(1199), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1199), + [aux_sym_security_key_provider_token1] = ACTIONS(1199), + [aux_sym_send_env_token1] = ACTIONS(1199), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1199), + [aux_sym_server_alive_interval_token1] = ACTIONS(1199), + [aux_sym_session_type_token1] = ACTIONS(1199), + [aux_sym_set_env_token1] = ACTIONS(1199), + [aux_sym_stdin_null_token1] = ACTIONS(1199), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1199), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1199), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1199), + [aux_sym_syslog_facility_token1] = ACTIONS(1199), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1199), + [aux_sym_keep_alive_token1] = ACTIONS(1199), + [aux_sym_tag_token1] = ACTIONS(1199), + [aux_sym_tunnel_token1] = ACTIONS(1201), + [aux_sym_tunnel_device_token1] = ACTIONS(1199), + [aux_sym_update_host_keys_token1] = ACTIONS(1199), + [aux_sym_use_keychain_token1] = ACTIONS(1199), + [aux_sym_use_roaming_token1] = ACTIONS(1199), + [aux_sym_user_token1] = ACTIONS(1201), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1199), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1199), + [aux_sym_visual_host_key_token1] = ACTIONS(1199), + [aux_sym_xauth_location_token1] = ACTIONS(1199), }, [107] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1202), - [anon_sym_DQUOTE] = ACTIONS(1204), - [aux_sym_match_token1] = ACTIONS(1200), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1200), - [aux_sym_address_family_token1] = ACTIONS(1200), - [aux_sym_batch_mode_token1] = ACTIONS(1200), - [aux_sym_bind_address_token1] = ACTIONS(1200), - [aux_sym_bind_interface_token1] = ACTIONS(1200), - [aux_sym_canonical_domains_token1] = ACTIONS(1200), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1200), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1200), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1200), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1200), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1200), - [aux_sym_certificate_file_token1] = ACTIONS(1200), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1200), - [aux_sym_channel_timeout_token1] = ACTIONS(1200), - [aux_sym_check_host_ip_token1] = ACTIONS(1200), - [aux_sym_ciphers_token1] = ACTIONS(1200), - [aux_sym_cipher_token1] = ACTIONS(1202), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1200), - [aux_sym_compression_token1] = ACTIONS(1200), - [aux_sym_connection_attempts_token1] = ACTIONS(1200), - [aux_sym_connect_timeout_token1] = ACTIONS(1200), - [aux_sym_control_master_token1] = ACTIONS(1200), - [aux_sym_control_path_token1] = ACTIONS(1200), - [aux_sym_control_persist_token1] = ACTIONS(1200), - [aux_sym_dynamic_forward_token1] = ACTIONS(1200), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1200), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1200), - [aux_sym_escape_char_token1] = ACTIONS(1200), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1200), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1200), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1200), - [aux_sym_forward_agent_token1] = ACTIONS(1200), - [aux_sym_forward_x11_token1] = ACTIONS(1202), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1200), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1200), - [aux_sym_gateway_ports_token1] = ACTIONS(1200), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1200), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1200), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1200), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1200), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1200), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1200), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1200), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1200), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1200), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1200), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1200), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1200), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1200), - [aux_sym_host_key_alias_token1] = ACTIONS(1200), - [aux_sym_hostname_token1] = ACTIONS(1200), - [aux_sym_identities_only_token1] = ACTIONS(1200), - [aux_sym_identity_agent_token1] = ACTIONS(1200), - [aux_sym_identity_file_token1] = ACTIONS(1200), - [aux_sym_ignore_unknown_token1] = ACTIONS(1200), - [aux_sym_include_token1] = ACTIONS(1200), - [aux_sym_ip_qos_token1] = ACTIONS(1200), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1200), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1200), - [aux_sym_kex_algorithms_token1] = ACTIONS(1200), - [aux_sym_known_hosts_command_token1] = ACTIONS(1200), - [aux_sym_local_command_token1] = ACTIONS(1200), - [aux_sym_local_forward_token1] = ACTIONS(1200), - [aux_sym_log_level_token1] = ACTIONS(1200), - [aux_sym_log_verbose_token1] = ACTIONS(1200), - [aux_sym_macs_token1] = ACTIONS(1200), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1200), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1200), - [aux_sym_password_authentication_token1] = ACTIONS(1200), - [aux_sym_permit_local_command_token1] = ACTIONS(1200), - [aux_sym_permit_remote_open_token1] = ACTIONS(1200), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1200), - [aux_sym_port_token1] = ACTIONS(1200), - [aux_sym_preferred_authentications_token1] = ACTIONS(1200), - [aux_sym_protocol_token1] = ACTIONS(1200), - [aux_sym_proxy_command_token1] = ACTIONS(1200), - [aux_sym_proxy_jump_token1] = ACTIONS(1200), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1200), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1200), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1200), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1200), - [aux_sym_rekey_limit_token1] = ACTIONS(1200), - [aux_sym_remote_command_token1] = ACTIONS(1200), - [aux_sym_remote_forward_token1] = ACTIONS(1200), - [aux_sym_request_tty_token1] = ACTIONS(1200), - [aux_sym_required_rsa_size_token1] = ACTIONS(1200), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1200), - [aux_sym_security_key_provider_token1] = ACTIONS(1200), - [aux_sym_send_env_token1] = ACTIONS(1200), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1200), - [aux_sym_server_alive_interval_token1] = ACTIONS(1200), - [aux_sym_session_type_token1] = ACTIONS(1200), - [aux_sym_set_env_token1] = ACTIONS(1200), - [aux_sym_stdin_null_token1] = ACTIONS(1200), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1200), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1200), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1200), - [aux_sym_syslog_facility_token1] = ACTIONS(1200), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1200), - [aux_sym_keep_alive_token1] = ACTIONS(1200), - [aux_sym_tag_token1] = ACTIONS(1200), - [aux_sym_tunnel_token1] = ACTIONS(1202), - [aux_sym_tunnel_device_token1] = ACTIONS(1200), - [aux_sym_update_host_keys_token1] = ACTIONS(1200), - [aux_sym_use_keychain_token1] = ACTIONS(1200), - [aux_sym_use_roaming_token1] = ACTIONS(1200), - [aux_sym_user_token1] = ACTIONS(1202), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1200), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1200), - [aux_sym_visual_host_key_token1] = ACTIONS(1200), - [aux_sym_xauth_location_token1] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1207), + [anon_sym_DQUOTE] = ACTIONS(1209), + [aux_sym_match_token1] = ACTIONS(1205), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1205), + [aux_sym_address_family_token1] = ACTIONS(1205), + [aux_sym_batch_mode_token1] = ACTIONS(1205), + [aux_sym_bind_address_token1] = ACTIONS(1205), + [aux_sym_bind_interface_token1] = ACTIONS(1205), + [aux_sym_canonical_domains_token1] = ACTIONS(1205), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1205), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1205), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1205), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1205), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1205), + [aux_sym_certificate_file_token1] = ACTIONS(1205), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1205), + [aux_sym_channel_timeout_token1] = ACTIONS(1205), + [aux_sym_check_host_ip_token1] = ACTIONS(1205), + [aux_sym_ciphers_token1] = ACTIONS(1205), + [aux_sym_cipher_token1] = ACTIONS(1207), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1205), + [aux_sym_compression_token1] = ACTIONS(1205), + [aux_sym_connection_attempts_token1] = ACTIONS(1205), + [aux_sym_connect_timeout_token1] = ACTIONS(1205), + [aux_sym_control_master_token1] = ACTIONS(1205), + [aux_sym_control_path_token1] = ACTIONS(1205), + [aux_sym_control_persist_token1] = ACTIONS(1205), + [aux_sym_dynamic_forward_token1] = ACTIONS(1205), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1205), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1205), + [aux_sym_escape_char_token1] = ACTIONS(1205), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1205), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1205), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1205), + [aux_sym_forward_agent_token1] = ACTIONS(1205), + [aux_sym_forward_x11_token1] = ACTIONS(1207), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1205), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1205), + [aux_sym_gateway_ports_token1] = ACTIONS(1205), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1205), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1205), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1205), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1205), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1205), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1205), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1205), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1205), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1205), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1205), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1205), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1205), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1205), + [aux_sym_host_key_alias_token1] = ACTIONS(1205), + [aux_sym_hostname_token1] = ACTIONS(1205), + [aux_sym_identities_only_token1] = ACTIONS(1205), + [aux_sym_identity_agent_token1] = ACTIONS(1205), + [aux_sym_identity_file_token1] = ACTIONS(1205), + [aux_sym_ignore_unknown_token1] = ACTIONS(1205), + [aux_sym_include_token1] = ACTIONS(1205), + [aux_sym_ip_qos_token1] = ACTIONS(1205), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1205), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1205), + [aux_sym_kex_algorithms_token1] = ACTIONS(1205), + [aux_sym_known_hosts_command_token1] = ACTIONS(1205), + [aux_sym_local_command_token1] = ACTIONS(1205), + [aux_sym_local_forward_token1] = ACTIONS(1205), + [aux_sym_log_level_token1] = ACTIONS(1205), + [aux_sym_log_verbose_token1] = ACTIONS(1205), + [aux_sym_macs_token1] = ACTIONS(1205), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1205), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1205), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1205), + [aux_sym_password_authentication_token1] = ACTIONS(1205), + [aux_sym_permit_local_command_token1] = ACTIONS(1205), + [aux_sym_permit_remote_open_token1] = ACTIONS(1205), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1205), + [aux_sym_port_token1] = ACTIONS(1205), + [aux_sym_preferred_authentications_token1] = ACTIONS(1205), + [aux_sym_protocol_token1] = ACTIONS(1205), + [aux_sym_proxy_command_token1] = ACTIONS(1205), + [aux_sym_proxy_jump_token1] = ACTIONS(1205), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1205), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1205), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1205), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1205), + [aux_sym_rekey_limit_token1] = ACTIONS(1205), + [aux_sym_remote_command_token1] = ACTIONS(1205), + [aux_sym_remote_forward_token1] = ACTIONS(1205), + [aux_sym_request_tty_token1] = ACTIONS(1205), + [aux_sym_required_rsa_size_token1] = ACTIONS(1205), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1205), + [aux_sym_security_key_provider_token1] = ACTIONS(1205), + [aux_sym_send_env_token1] = ACTIONS(1205), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1205), + [aux_sym_server_alive_interval_token1] = ACTIONS(1205), + [aux_sym_session_type_token1] = ACTIONS(1205), + [aux_sym_set_env_token1] = ACTIONS(1205), + [aux_sym_stdin_null_token1] = ACTIONS(1205), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1205), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1205), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1205), + [aux_sym_syslog_facility_token1] = ACTIONS(1205), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1205), + [aux_sym_keep_alive_token1] = ACTIONS(1205), + [aux_sym_tag_token1] = ACTIONS(1205), + [aux_sym_tunnel_token1] = ACTIONS(1207), + [aux_sym_tunnel_device_token1] = ACTIONS(1205), + [aux_sym_update_host_keys_token1] = ACTIONS(1205), + [aux_sym_use_keychain_token1] = ACTIONS(1205), + [aux_sym_use_roaming_token1] = ACTIONS(1205), + [aux_sym_user_token1] = ACTIONS(1207), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1205), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1205), + [aux_sym_visual_host_key_token1] = ACTIONS(1205), + [aux_sym_xauth_location_token1] = ACTIONS(1205), }, [108] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1208), - [anon_sym_DQUOTE] = ACTIONS(1210), - [aux_sym_match_token1] = ACTIONS(1206), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1206), - [aux_sym_address_family_token1] = ACTIONS(1206), - [aux_sym_batch_mode_token1] = ACTIONS(1206), - [aux_sym_bind_address_token1] = ACTIONS(1206), - [aux_sym_bind_interface_token1] = ACTIONS(1206), - [aux_sym_canonical_domains_token1] = ACTIONS(1206), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1206), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1206), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1206), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1206), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1206), - [aux_sym_certificate_file_token1] = ACTIONS(1206), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1206), - [aux_sym_channel_timeout_token1] = ACTIONS(1206), - [aux_sym_check_host_ip_token1] = ACTIONS(1206), - [aux_sym_ciphers_token1] = ACTIONS(1206), - [aux_sym_cipher_token1] = ACTIONS(1208), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1206), - [aux_sym_compression_token1] = ACTIONS(1206), - [aux_sym_connection_attempts_token1] = ACTIONS(1206), - [aux_sym_connect_timeout_token1] = ACTIONS(1206), - [aux_sym_control_master_token1] = ACTIONS(1206), - [aux_sym_control_path_token1] = ACTIONS(1206), - [aux_sym_control_persist_token1] = ACTIONS(1206), - [aux_sym_dynamic_forward_token1] = ACTIONS(1206), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1206), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1206), - [aux_sym_escape_char_token1] = ACTIONS(1206), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1206), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1206), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1206), - [aux_sym_forward_agent_token1] = ACTIONS(1206), - [aux_sym_forward_x11_token1] = ACTIONS(1208), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1206), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1206), - [aux_sym_gateway_ports_token1] = ACTIONS(1206), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1206), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1206), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1206), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1206), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1206), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1206), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1206), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1206), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1206), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1206), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1206), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1206), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1206), - [aux_sym_host_key_alias_token1] = ACTIONS(1206), - [aux_sym_hostname_token1] = ACTIONS(1206), - [aux_sym_identities_only_token1] = ACTIONS(1206), - [aux_sym_identity_agent_token1] = ACTIONS(1206), - [aux_sym_identity_file_token1] = ACTIONS(1206), - [aux_sym_ignore_unknown_token1] = ACTIONS(1206), - [aux_sym_include_token1] = ACTIONS(1206), - [aux_sym_ip_qos_token1] = ACTIONS(1206), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1206), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1206), - [aux_sym_kex_algorithms_token1] = ACTIONS(1206), - [aux_sym_known_hosts_command_token1] = ACTIONS(1206), - [aux_sym_local_command_token1] = ACTIONS(1206), - [aux_sym_local_forward_token1] = ACTIONS(1206), - [aux_sym_log_level_token1] = ACTIONS(1206), - [aux_sym_log_verbose_token1] = ACTIONS(1206), - [aux_sym_macs_token1] = ACTIONS(1206), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1206), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1206), - [aux_sym_password_authentication_token1] = ACTIONS(1206), - [aux_sym_permit_local_command_token1] = ACTIONS(1206), - [aux_sym_permit_remote_open_token1] = ACTIONS(1206), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1206), - [aux_sym_port_token1] = ACTIONS(1206), - [aux_sym_preferred_authentications_token1] = ACTIONS(1206), - [aux_sym_protocol_token1] = ACTIONS(1206), - [aux_sym_proxy_command_token1] = ACTIONS(1206), - [aux_sym_proxy_jump_token1] = ACTIONS(1206), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1206), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1206), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1206), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1206), - [aux_sym_rekey_limit_token1] = ACTIONS(1206), - [aux_sym_remote_command_token1] = ACTIONS(1206), - [aux_sym_remote_forward_token1] = ACTIONS(1206), - [aux_sym_request_tty_token1] = ACTIONS(1206), - [aux_sym_required_rsa_size_token1] = ACTIONS(1206), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1206), - [aux_sym_security_key_provider_token1] = ACTIONS(1206), - [aux_sym_send_env_token1] = ACTIONS(1206), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1206), - [aux_sym_server_alive_interval_token1] = ACTIONS(1206), - [aux_sym_session_type_token1] = ACTIONS(1206), - [aux_sym_set_env_token1] = ACTIONS(1206), - [aux_sym_stdin_null_token1] = ACTIONS(1206), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1206), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1206), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1206), - [aux_sym_syslog_facility_token1] = ACTIONS(1206), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1206), - [aux_sym_keep_alive_token1] = ACTIONS(1206), - [aux_sym_tag_token1] = ACTIONS(1206), - [aux_sym_tunnel_token1] = ACTIONS(1208), - [aux_sym_tunnel_device_token1] = ACTIONS(1206), - [aux_sym_update_host_keys_token1] = ACTIONS(1206), - [aux_sym_use_keychain_token1] = ACTIONS(1206), - [aux_sym_use_roaming_token1] = ACTIONS(1206), - [aux_sym_user_token1] = ACTIONS(1208), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1206), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1206), - [aux_sym_visual_host_key_token1] = ACTIONS(1206), - [aux_sym_xauth_location_token1] = ACTIONS(1206), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1213), + [anon_sym_DQUOTE] = ACTIONS(1215), + [aux_sym_match_token1] = ACTIONS(1211), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1211), + [aux_sym_address_family_token1] = ACTIONS(1211), + [aux_sym_batch_mode_token1] = ACTIONS(1211), + [aux_sym_bind_address_token1] = ACTIONS(1211), + [aux_sym_bind_interface_token1] = ACTIONS(1211), + [aux_sym_canonical_domains_token1] = ACTIONS(1211), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1211), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1211), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1211), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1211), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1211), + [aux_sym_certificate_file_token1] = ACTIONS(1211), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1211), + [aux_sym_channel_timeout_token1] = ACTIONS(1211), + [aux_sym_check_host_ip_token1] = ACTIONS(1211), + [aux_sym_ciphers_token1] = ACTIONS(1211), + [aux_sym_cipher_token1] = ACTIONS(1213), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1211), + [aux_sym_compression_token1] = ACTIONS(1211), + [aux_sym_connection_attempts_token1] = ACTIONS(1211), + [aux_sym_connect_timeout_token1] = ACTIONS(1211), + [aux_sym_control_master_token1] = ACTIONS(1211), + [aux_sym_control_path_token1] = ACTIONS(1211), + [aux_sym_control_persist_token1] = ACTIONS(1211), + [aux_sym_dynamic_forward_token1] = ACTIONS(1211), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1211), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1211), + [aux_sym_escape_char_token1] = ACTIONS(1211), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1211), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1211), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1211), + [aux_sym_forward_agent_token1] = ACTIONS(1211), + [aux_sym_forward_x11_token1] = ACTIONS(1213), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1211), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1211), + [aux_sym_gateway_ports_token1] = ACTIONS(1211), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1211), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1211), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1211), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1211), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1211), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1211), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1211), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1211), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1211), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1211), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1211), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1211), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1211), + [aux_sym_host_key_alias_token1] = ACTIONS(1211), + [aux_sym_hostname_token1] = ACTIONS(1211), + [aux_sym_identities_only_token1] = ACTIONS(1211), + [aux_sym_identity_agent_token1] = ACTIONS(1211), + [aux_sym_identity_file_token1] = ACTIONS(1211), + [aux_sym_ignore_unknown_token1] = ACTIONS(1211), + [aux_sym_include_token1] = ACTIONS(1211), + [aux_sym_ip_qos_token1] = ACTIONS(1211), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1211), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1211), + [aux_sym_kex_algorithms_token1] = ACTIONS(1211), + [aux_sym_known_hosts_command_token1] = ACTIONS(1211), + [aux_sym_local_command_token1] = ACTIONS(1211), + [aux_sym_local_forward_token1] = ACTIONS(1211), + [aux_sym_log_level_token1] = ACTIONS(1211), + [aux_sym_log_verbose_token1] = ACTIONS(1211), + [aux_sym_macs_token1] = ACTIONS(1211), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1211), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1211), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1211), + [aux_sym_password_authentication_token1] = ACTIONS(1211), + [aux_sym_permit_local_command_token1] = ACTIONS(1211), + [aux_sym_permit_remote_open_token1] = ACTIONS(1211), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1211), + [aux_sym_port_token1] = ACTIONS(1211), + [aux_sym_preferred_authentications_token1] = ACTIONS(1211), + [aux_sym_protocol_token1] = ACTIONS(1211), + [aux_sym_proxy_command_token1] = ACTIONS(1211), + [aux_sym_proxy_jump_token1] = ACTIONS(1211), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1211), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1211), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1211), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1211), + [aux_sym_rekey_limit_token1] = ACTIONS(1211), + [aux_sym_remote_command_token1] = ACTIONS(1211), + [aux_sym_remote_forward_token1] = ACTIONS(1211), + [aux_sym_request_tty_token1] = ACTIONS(1211), + [aux_sym_required_rsa_size_token1] = ACTIONS(1211), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1211), + [aux_sym_security_key_provider_token1] = ACTIONS(1211), + [aux_sym_send_env_token1] = ACTIONS(1211), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1211), + [aux_sym_server_alive_interval_token1] = ACTIONS(1211), + [aux_sym_session_type_token1] = ACTIONS(1211), + [aux_sym_set_env_token1] = ACTIONS(1211), + [aux_sym_stdin_null_token1] = ACTIONS(1211), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1211), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1211), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1211), + [aux_sym_syslog_facility_token1] = ACTIONS(1211), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1211), + [aux_sym_keep_alive_token1] = ACTIONS(1211), + [aux_sym_tag_token1] = ACTIONS(1211), + [aux_sym_tunnel_token1] = ACTIONS(1213), + [aux_sym_tunnel_device_token1] = ACTIONS(1211), + [aux_sym_update_host_keys_token1] = ACTIONS(1211), + [aux_sym_use_keychain_token1] = ACTIONS(1211), + [aux_sym_use_roaming_token1] = ACTIONS(1211), + [aux_sym_user_token1] = ACTIONS(1213), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1211), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1211), + [aux_sym_visual_host_key_token1] = ACTIONS(1211), + [aux_sym_xauth_location_token1] = ACTIONS(1211), }, [109] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1214), - [anon_sym_DQUOTE] = ACTIONS(1216), - [aux_sym_match_token1] = ACTIONS(1212), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1212), - [aux_sym_address_family_token1] = ACTIONS(1212), - [aux_sym_batch_mode_token1] = ACTIONS(1212), - [aux_sym_bind_address_token1] = ACTIONS(1212), - [aux_sym_bind_interface_token1] = ACTIONS(1212), - [aux_sym_canonical_domains_token1] = ACTIONS(1212), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1212), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1212), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1212), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1212), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1212), - [aux_sym_certificate_file_token1] = ACTIONS(1212), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1212), - [aux_sym_channel_timeout_token1] = ACTIONS(1212), - [aux_sym_check_host_ip_token1] = ACTIONS(1212), - [aux_sym_ciphers_token1] = ACTIONS(1212), - [aux_sym_cipher_token1] = ACTIONS(1214), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1212), - [aux_sym_compression_token1] = ACTIONS(1212), - [aux_sym_connection_attempts_token1] = ACTIONS(1212), - [aux_sym_connect_timeout_token1] = ACTIONS(1212), - [aux_sym_control_master_token1] = ACTIONS(1212), - [aux_sym_control_path_token1] = ACTIONS(1212), - [aux_sym_control_persist_token1] = ACTIONS(1212), - [aux_sym_dynamic_forward_token1] = ACTIONS(1212), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1212), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1212), - [aux_sym_escape_char_token1] = ACTIONS(1212), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1212), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1212), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1212), - [aux_sym_forward_agent_token1] = ACTIONS(1212), - [aux_sym_forward_x11_token1] = ACTIONS(1214), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1212), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1212), - [aux_sym_gateway_ports_token1] = ACTIONS(1212), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1212), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1212), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1212), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1212), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1212), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1212), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1212), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1212), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1212), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1212), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1212), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1212), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1212), - [aux_sym_host_key_alias_token1] = ACTIONS(1212), - [aux_sym_hostname_token1] = ACTIONS(1212), - [aux_sym_identities_only_token1] = ACTIONS(1212), - [aux_sym_identity_agent_token1] = ACTIONS(1212), - [aux_sym_identity_file_token1] = ACTIONS(1212), - [aux_sym_ignore_unknown_token1] = ACTIONS(1212), - [aux_sym_include_token1] = ACTIONS(1212), - [aux_sym_ip_qos_token1] = ACTIONS(1212), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1212), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1212), - [aux_sym_kex_algorithms_token1] = ACTIONS(1212), - [aux_sym_known_hosts_command_token1] = ACTIONS(1212), - [aux_sym_local_command_token1] = ACTIONS(1212), - [aux_sym_local_forward_token1] = ACTIONS(1212), - [aux_sym_log_level_token1] = ACTIONS(1212), - [aux_sym_log_verbose_token1] = ACTIONS(1212), - [aux_sym_macs_token1] = ACTIONS(1212), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1212), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1212), - [aux_sym_password_authentication_token1] = ACTIONS(1212), - [aux_sym_permit_local_command_token1] = ACTIONS(1212), - [aux_sym_permit_remote_open_token1] = ACTIONS(1212), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1212), - [aux_sym_port_token1] = ACTIONS(1212), - [aux_sym_preferred_authentications_token1] = ACTIONS(1212), - [aux_sym_protocol_token1] = ACTIONS(1212), - [aux_sym_proxy_command_token1] = ACTIONS(1212), - [aux_sym_proxy_jump_token1] = ACTIONS(1212), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1212), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1212), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1212), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1212), - [aux_sym_rekey_limit_token1] = ACTIONS(1212), - [aux_sym_remote_command_token1] = ACTIONS(1212), - [aux_sym_remote_forward_token1] = ACTIONS(1212), - [aux_sym_request_tty_token1] = ACTIONS(1212), - [aux_sym_required_rsa_size_token1] = ACTIONS(1212), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1212), - [aux_sym_security_key_provider_token1] = ACTIONS(1212), - [aux_sym_send_env_token1] = ACTIONS(1212), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1212), - [aux_sym_server_alive_interval_token1] = ACTIONS(1212), - [aux_sym_session_type_token1] = ACTIONS(1212), - [aux_sym_set_env_token1] = ACTIONS(1212), - [aux_sym_stdin_null_token1] = ACTIONS(1212), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1212), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1212), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1212), - [aux_sym_syslog_facility_token1] = ACTIONS(1212), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1212), - [aux_sym_keep_alive_token1] = ACTIONS(1212), - [aux_sym_tag_token1] = ACTIONS(1212), - [aux_sym_tunnel_token1] = ACTIONS(1214), - [aux_sym_tunnel_device_token1] = ACTIONS(1212), - [aux_sym_update_host_keys_token1] = ACTIONS(1212), - [aux_sym_use_keychain_token1] = ACTIONS(1212), - [aux_sym_use_roaming_token1] = ACTIONS(1212), - [aux_sym_user_token1] = ACTIONS(1214), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1212), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1212), - [aux_sym_visual_host_key_token1] = ACTIONS(1212), - [aux_sym_xauth_location_token1] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1219), + [anon_sym_DQUOTE] = ACTIONS(1221), + [aux_sym_match_token1] = ACTIONS(1217), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1217), + [aux_sym_address_family_token1] = ACTIONS(1217), + [aux_sym_batch_mode_token1] = ACTIONS(1217), + [aux_sym_bind_address_token1] = ACTIONS(1217), + [aux_sym_bind_interface_token1] = ACTIONS(1217), + [aux_sym_canonical_domains_token1] = ACTIONS(1217), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1217), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1217), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1217), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1217), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1217), + [aux_sym_certificate_file_token1] = ACTIONS(1217), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1217), + [aux_sym_channel_timeout_token1] = ACTIONS(1217), + [aux_sym_check_host_ip_token1] = ACTIONS(1217), + [aux_sym_ciphers_token1] = ACTIONS(1217), + [aux_sym_cipher_token1] = ACTIONS(1219), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1217), + [aux_sym_compression_token1] = ACTIONS(1217), + [aux_sym_connection_attempts_token1] = ACTIONS(1217), + [aux_sym_connect_timeout_token1] = ACTIONS(1217), + [aux_sym_control_master_token1] = ACTIONS(1217), + [aux_sym_control_path_token1] = ACTIONS(1217), + [aux_sym_control_persist_token1] = ACTIONS(1217), + [aux_sym_dynamic_forward_token1] = ACTIONS(1217), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1217), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1217), + [aux_sym_escape_char_token1] = ACTIONS(1217), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1217), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1217), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1217), + [aux_sym_forward_agent_token1] = ACTIONS(1217), + [aux_sym_forward_x11_token1] = ACTIONS(1219), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1217), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1217), + [aux_sym_gateway_ports_token1] = ACTIONS(1217), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1217), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1217), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1217), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1217), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1217), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1217), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1217), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1217), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1217), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1217), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1217), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1217), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1217), + [aux_sym_host_key_alias_token1] = ACTIONS(1217), + [aux_sym_hostname_token1] = ACTIONS(1217), + [aux_sym_identities_only_token1] = ACTIONS(1217), + [aux_sym_identity_agent_token1] = ACTIONS(1217), + [aux_sym_identity_file_token1] = ACTIONS(1217), + [aux_sym_ignore_unknown_token1] = ACTIONS(1217), + [aux_sym_include_token1] = ACTIONS(1217), + [aux_sym_ip_qos_token1] = ACTIONS(1217), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1217), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1217), + [aux_sym_kex_algorithms_token1] = ACTIONS(1217), + [aux_sym_known_hosts_command_token1] = ACTIONS(1217), + [aux_sym_local_command_token1] = ACTIONS(1217), + [aux_sym_local_forward_token1] = ACTIONS(1217), + [aux_sym_log_level_token1] = ACTIONS(1217), + [aux_sym_log_verbose_token1] = ACTIONS(1217), + [aux_sym_macs_token1] = ACTIONS(1217), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1217), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1217), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1217), + [aux_sym_password_authentication_token1] = ACTIONS(1217), + [aux_sym_permit_local_command_token1] = ACTIONS(1217), + [aux_sym_permit_remote_open_token1] = ACTIONS(1217), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1217), + [aux_sym_port_token1] = ACTIONS(1217), + [aux_sym_preferred_authentications_token1] = ACTIONS(1217), + [aux_sym_protocol_token1] = ACTIONS(1217), + [aux_sym_proxy_command_token1] = ACTIONS(1217), + [aux_sym_proxy_jump_token1] = ACTIONS(1217), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1217), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1217), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1217), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1217), + [aux_sym_rekey_limit_token1] = ACTIONS(1217), + [aux_sym_remote_command_token1] = ACTIONS(1217), + [aux_sym_remote_forward_token1] = ACTIONS(1217), + [aux_sym_request_tty_token1] = ACTIONS(1217), + [aux_sym_required_rsa_size_token1] = ACTIONS(1217), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1217), + [aux_sym_security_key_provider_token1] = ACTIONS(1217), + [aux_sym_send_env_token1] = ACTIONS(1217), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1217), + [aux_sym_server_alive_interval_token1] = ACTIONS(1217), + [aux_sym_session_type_token1] = ACTIONS(1217), + [aux_sym_set_env_token1] = ACTIONS(1217), + [aux_sym_stdin_null_token1] = ACTIONS(1217), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1217), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1217), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1217), + [aux_sym_syslog_facility_token1] = ACTIONS(1217), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1217), + [aux_sym_keep_alive_token1] = ACTIONS(1217), + [aux_sym_tag_token1] = ACTIONS(1217), + [aux_sym_tunnel_token1] = ACTIONS(1219), + [aux_sym_tunnel_device_token1] = ACTIONS(1217), + [aux_sym_update_host_keys_token1] = ACTIONS(1217), + [aux_sym_use_keychain_token1] = ACTIONS(1217), + [aux_sym_use_roaming_token1] = ACTIONS(1217), + [aux_sym_user_token1] = ACTIONS(1219), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1217), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1217), + [aux_sym_visual_host_key_token1] = ACTIONS(1217), + [aux_sym_xauth_location_token1] = ACTIONS(1217), }, [110] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1220), - [anon_sym_DQUOTE] = ACTIONS(1222), - [aux_sym_match_token1] = ACTIONS(1218), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1218), - [aux_sym_address_family_token1] = ACTIONS(1218), - [aux_sym_batch_mode_token1] = ACTIONS(1218), - [aux_sym_bind_address_token1] = ACTIONS(1218), - [aux_sym_bind_interface_token1] = ACTIONS(1218), - [aux_sym_canonical_domains_token1] = ACTIONS(1218), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1218), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1218), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1218), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1218), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1218), - [aux_sym_certificate_file_token1] = ACTIONS(1218), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1218), - [aux_sym_channel_timeout_token1] = ACTIONS(1218), - [aux_sym_check_host_ip_token1] = ACTIONS(1218), - [aux_sym_ciphers_token1] = ACTIONS(1218), - [aux_sym_cipher_token1] = ACTIONS(1220), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1218), - [aux_sym_compression_token1] = ACTIONS(1218), - [aux_sym_connection_attempts_token1] = ACTIONS(1218), - [aux_sym_connect_timeout_token1] = ACTIONS(1218), - [aux_sym_control_master_token1] = ACTIONS(1218), - [aux_sym_control_path_token1] = ACTIONS(1218), - [aux_sym_control_persist_token1] = ACTIONS(1218), - [aux_sym_dynamic_forward_token1] = ACTIONS(1218), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1218), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1218), - [aux_sym_escape_char_token1] = ACTIONS(1218), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1218), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1218), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1218), - [aux_sym_forward_agent_token1] = ACTIONS(1218), - [aux_sym_forward_x11_token1] = ACTIONS(1220), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1218), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1218), - [aux_sym_gateway_ports_token1] = ACTIONS(1218), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1218), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1218), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1218), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1218), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1218), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1218), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1218), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1218), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1218), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1218), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1218), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1218), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1218), - [aux_sym_host_key_alias_token1] = ACTIONS(1218), - [aux_sym_hostname_token1] = ACTIONS(1218), - [aux_sym_identities_only_token1] = ACTIONS(1218), - [aux_sym_identity_agent_token1] = ACTIONS(1218), - [aux_sym_identity_file_token1] = ACTIONS(1218), - [aux_sym_ignore_unknown_token1] = ACTIONS(1218), - [aux_sym_include_token1] = ACTIONS(1218), - [aux_sym_ip_qos_token1] = ACTIONS(1218), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1218), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1218), - [aux_sym_kex_algorithms_token1] = ACTIONS(1218), - [aux_sym_known_hosts_command_token1] = ACTIONS(1218), - [aux_sym_local_command_token1] = ACTIONS(1218), - [aux_sym_local_forward_token1] = ACTIONS(1218), - [aux_sym_log_level_token1] = ACTIONS(1218), - [aux_sym_log_verbose_token1] = ACTIONS(1218), - [aux_sym_macs_token1] = ACTIONS(1218), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1218), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1218), - [aux_sym_password_authentication_token1] = ACTIONS(1218), - [aux_sym_permit_local_command_token1] = ACTIONS(1218), - [aux_sym_permit_remote_open_token1] = ACTIONS(1218), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1218), - [aux_sym_port_token1] = ACTIONS(1218), - [aux_sym_preferred_authentications_token1] = ACTIONS(1218), - [aux_sym_protocol_token1] = ACTIONS(1218), - [aux_sym_proxy_command_token1] = ACTIONS(1218), - [aux_sym_proxy_jump_token1] = ACTIONS(1218), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1218), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1218), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1218), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1218), - [aux_sym_rekey_limit_token1] = ACTIONS(1218), - [aux_sym_remote_command_token1] = ACTIONS(1218), - [aux_sym_remote_forward_token1] = ACTIONS(1218), - [aux_sym_request_tty_token1] = ACTIONS(1218), - [aux_sym_required_rsa_size_token1] = ACTIONS(1218), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1218), - [aux_sym_security_key_provider_token1] = ACTIONS(1218), - [aux_sym_send_env_token1] = ACTIONS(1218), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1218), - [aux_sym_server_alive_interval_token1] = ACTIONS(1218), - [aux_sym_session_type_token1] = ACTIONS(1218), - [aux_sym_set_env_token1] = ACTIONS(1218), - [aux_sym_stdin_null_token1] = ACTIONS(1218), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1218), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1218), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1218), - [aux_sym_syslog_facility_token1] = ACTIONS(1218), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1218), - [aux_sym_keep_alive_token1] = ACTIONS(1218), - [aux_sym_tag_token1] = ACTIONS(1218), - [aux_sym_tunnel_token1] = ACTIONS(1220), - [aux_sym_tunnel_device_token1] = ACTIONS(1218), - [aux_sym_update_host_keys_token1] = ACTIONS(1218), - [aux_sym_use_keychain_token1] = ACTIONS(1218), - [aux_sym_use_roaming_token1] = ACTIONS(1218), - [aux_sym_user_token1] = ACTIONS(1220), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1218), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1218), - [aux_sym_visual_host_key_token1] = ACTIONS(1218), - [aux_sym_xauth_location_token1] = ACTIONS(1218), + [ts_builtin_sym_end] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1225), + [anon_sym_DQUOTE] = ACTIONS(1227), + [aux_sym_match_token1] = ACTIONS(1223), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1223), + [aux_sym_address_family_token1] = ACTIONS(1223), + [aux_sym_batch_mode_token1] = ACTIONS(1223), + [aux_sym_bind_address_token1] = ACTIONS(1223), + [aux_sym_bind_interface_token1] = ACTIONS(1223), + [aux_sym_canonical_domains_token1] = ACTIONS(1223), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1223), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1223), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1223), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1223), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1223), + [aux_sym_certificate_file_token1] = ACTIONS(1223), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1223), + [aux_sym_channel_timeout_token1] = ACTIONS(1223), + [aux_sym_check_host_ip_token1] = ACTIONS(1223), + [aux_sym_ciphers_token1] = ACTIONS(1223), + [aux_sym_cipher_token1] = ACTIONS(1225), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1223), + [aux_sym_compression_token1] = ACTIONS(1223), + [aux_sym_connection_attempts_token1] = ACTIONS(1223), + [aux_sym_connect_timeout_token1] = ACTIONS(1223), + [aux_sym_control_master_token1] = ACTIONS(1223), + [aux_sym_control_path_token1] = ACTIONS(1223), + [aux_sym_control_persist_token1] = ACTIONS(1223), + [aux_sym_dynamic_forward_token1] = ACTIONS(1223), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1223), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1223), + [aux_sym_escape_char_token1] = ACTIONS(1223), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1223), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1223), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1223), + [aux_sym_forward_agent_token1] = ACTIONS(1223), + [aux_sym_forward_x11_token1] = ACTIONS(1225), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1223), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1223), + [aux_sym_gateway_ports_token1] = ACTIONS(1223), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1223), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1223), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1223), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1223), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1223), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1223), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1223), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1223), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1223), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1223), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1223), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1223), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1223), + [aux_sym_host_key_alias_token1] = ACTIONS(1223), + [aux_sym_hostname_token1] = ACTIONS(1223), + [aux_sym_identities_only_token1] = ACTIONS(1223), + [aux_sym_identity_agent_token1] = ACTIONS(1223), + [aux_sym_identity_file_token1] = ACTIONS(1223), + [aux_sym_ignore_unknown_token1] = ACTIONS(1223), + [aux_sym_include_token1] = ACTIONS(1223), + [aux_sym_ip_qos_token1] = ACTIONS(1223), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1223), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1223), + [aux_sym_kex_algorithms_token1] = ACTIONS(1223), + [aux_sym_known_hosts_command_token1] = ACTIONS(1223), + [aux_sym_local_command_token1] = ACTIONS(1223), + [aux_sym_local_forward_token1] = ACTIONS(1223), + [aux_sym_log_level_token1] = ACTIONS(1223), + [aux_sym_log_verbose_token1] = ACTIONS(1223), + [aux_sym_macs_token1] = ACTIONS(1223), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1223), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1223), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1223), + [aux_sym_password_authentication_token1] = ACTIONS(1223), + [aux_sym_permit_local_command_token1] = ACTIONS(1223), + [aux_sym_permit_remote_open_token1] = ACTIONS(1223), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1223), + [aux_sym_port_token1] = ACTIONS(1223), + [aux_sym_preferred_authentications_token1] = ACTIONS(1223), + [aux_sym_protocol_token1] = ACTIONS(1223), + [aux_sym_proxy_command_token1] = ACTIONS(1223), + [aux_sym_proxy_jump_token1] = ACTIONS(1223), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1223), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1223), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1223), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1223), + [aux_sym_rekey_limit_token1] = ACTIONS(1223), + [aux_sym_remote_command_token1] = ACTIONS(1223), + [aux_sym_remote_forward_token1] = ACTIONS(1223), + [aux_sym_request_tty_token1] = ACTIONS(1223), + [aux_sym_required_rsa_size_token1] = ACTIONS(1223), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1223), + [aux_sym_security_key_provider_token1] = ACTIONS(1223), + [aux_sym_send_env_token1] = ACTIONS(1223), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1223), + [aux_sym_server_alive_interval_token1] = ACTIONS(1223), + [aux_sym_session_type_token1] = ACTIONS(1223), + [aux_sym_set_env_token1] = ACTIONS(1223), + [aux_sym_stdin_null_token1] = ACTIONS(1223), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1223), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1223), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1223), + [aux_sym_syslog_facility_token1] = ACTIONS(1223), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1223), + [aux_sym_keep_alive_token1] = ACTIONS(1223), + [aux_sym_tag_token1] = ACTIONS(1223), + [aux_sym_tunnel_token1] = ACTIONS(1225), + [aux_sym_tunnel_device_token1] = ACTIONS(1223), + [aux_sym_update_host_keys_token1] = ACTIONS(1223), + [aux_sym_use_keychain_token1] = ACTIONS(1223), + [aux_sym_use_roaming_token1] = ACTIONS(1223), + [aux_sym_user_token1] = ACTIONS(1225), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1223), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1223), + [aux_sym_visual_host_key_token1] = ACTIONS(1223), + [aux_sym_xauth_location_token1] = ACTIONS(1223), }, [111] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1226), - [anon_sym_DQUOTE] = ACTIONS(1228), - [aux_sym_match_token1] = ACTIONS(1224), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1224), - [aux_sym_address_family_token1] = ACTIONS(1224), - [aux_sym_batch_mode_token1] = ACTIONS(1224), - [aux_sym_bind_address_token1] = ACTIONS(1224), - [aux_sym_bind_interface_token1] = ACTIONS(1224), - [aux_sym_canonical_domains_token1] = ACTIONS(1224), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1224), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1224), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1224), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1224), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1224), - [aux_sym_certificate_file_token1] = ACTIONS(1224), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1224), - [aux_sym_channel_timeout_token1] = ACTIONS(1224), - [aux_sym_check_host_ip_token1] = ACTIONS(1224), - [aux_sym_ciphers_token1] = ACTIONS(1224), - [aux_sym_cipher_token1] = ACTIONS(1226), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1224), - [aux_sym_compression_token1] = ACTIONS(1224), - [aux_sym_connection_attempts_token1] = ACTIONS(1224), - [aux_sym_connect_timeout_token1] = ACTIONS(1224), - [aux_sym_control_master_token1] = ACTIONS(1224), - [aux_sym_control_path_token1] = ACTIONS(1224), - [aux_sym_control_persist_token1] = ACTIONS(1224), - [aux_sym_dynamic_forward_token1] = ACTIONS(1224), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1224), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1224), - [aux_sym_escape_char_token1] = ACTIONS(1224), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1224), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1224), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1224), - [aux_sym_forward_agent_token1] = ACTIONS(1224), - [aux_sym_forward_x11_token1] = ACTIONS(1226), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1224), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1224), - [aux_sym_gateway_ports_token1] = ACTIONS(1224), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1224), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1224), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1224), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1224), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1224), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1224), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1224), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1224), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1224), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1224), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1224), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1224), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1224), - [aux_sym_host_key_alias_token1] = ACTIONS(1224), - [aux_sym_hostname_token1] = ACTIONS(1224), - [aux_sym_identities_only_token1] = ACTIONS(1224), - [aux_sym_identity_agent_token1] = ACTIONS(1224), - [aux_sym_identity_file_token1] = ACTIONS(1224), - [aux_sym_ignore_unknown_token1] = ACTIONS(1224), - [aux_sym_include_token1] = ACTIONS(1224), - [aux_sym_ip_qos_token1] = ACTIONS(1224), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1224), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1224), - [aux_sym_kex_algorithms_token1] = ACTIONS(1224), - [aux_sym_known_hosts_command_token1] = ACTIONS(1224), - [aux_sym_local_command_token1] = ACTIONS(1224), - [aux_sym_local_forward_token1] = ACTIONS(1224), - [aux_sym_log_level_token1] = ACTIONS(1224), - [aux_sym_log_verbose_token1] = ACTIONS(1224), - [aux_sym_macs_token1] = ACTIONS(1224), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1224), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1224), - [aux_sym_password_authentication_token1] = ACTIONS(1224), - [aux_sym_permit_local_command_token1] = ACTIONS(1224), - [aux_sym_permit_remote_open_token1] = ACTIONS(1224), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1224), - [aux_sym_port_token1] = ACTIONS(1224), - [aux_sym_preferred_authentications_token1] = ACTIONS(1224), - [aux_sym_protocol_token1] = ACTIONS(1224), - [aux_sym_proxy_command_token1] = ACTIONS(1224), - [aux_sym_proxy_jump_token1] = ACTIONS(1224), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1224), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1224), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1224), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1224), - [aux_sym_rekey_limit_token1] = ACTIONS(1224), - [aux_sym_remote_command_token1] = ACTIONS(1224), - [aux_sym_remote_forward_token1] = ACTIONS(1224), - [aux_sym_request_tty_token1] = ACTIONS(1224), - [aux_sym_required_rsa_size_token1] = ACTIONS(1224), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1224), - [aux_sym_security_key_provider_token1] = ACTIONS(1224), - [aux_sym_send_env_token1] = ACTIONS(1224), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1224), - [aux_sym_server_alive_interval_token1] = ACTIONS(1224), - [aux_sym_session_type_token1] = ACTIONS(1224), - [aux_sym_set_env_token1] = ACTIONS(1224), - [aux_sym_stdin_null_token1] = ACTIONS(1224), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1224), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1224), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1224), - [aux_sym_syslog_facility_token1] = ACTIONS(1224), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1224), - [aux_sym_keep_alive_token1] = ACTIONS(1224), - [aux_sym_tag_token1] = ACTIONS(1224), - [aux_sym_tunnel_token1] = ACTIONS(1226), - [aux_sym_tunnel_device_token1] = ACTIONS(1224), - [aux_sym_update_host_keys_token1] = ACTIONS(1224), - [aux_sym_use_keychain_token1] = ACTIONS(1224), - [aux_sym_use_roaming_token1] = ACTIONS(1224), - [aux_sym_user_token1] = ACTIONS(1226), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1224), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1224), - [aux_sym_visual_host_key_token1] = ACTIONS(1224), - [aux_sym_xauth_location_token1] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1231), + [anon_sym_DQUOTE] = ACTIONS(1233), + [aux_sym_match_token1] = ACTIONS(1229), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1229), + [aux_sym_address_family_token1] = ACTIONS(1229), + [aux_sym_batch_mode_token1] = ACTIONS(1229), + [aux_sym_bind_address_token1] = ACTIONS(1229), + [aux_sym_bind_interface_token1] = ACTIONS(1229), + [aux_sym_canonical_domains_token1] = ACTIONS(1229), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1229), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1229), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1229), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1229), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1229), + [aux_sym_certificate_file_token1] = ACTIONS(1229), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1229), + [aux_sym_channel_timeout_token1] = ACTIONS(1229), + [aux_sym_check_host_ip_token1] = ACTIONS(1229), + [aux_sym_ciphers_token1] = ACTIONS(1229), + [aux_sym_cipher_token1] = ACTIONS(1231), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1229), + [aux_sym_compression_token1] = ACTIONS(1229), + [aux_sym_connection_attempts_token1] = ACTIONS(1229), + [aux_sym_connect_timeout_token1] = ACTIONS(1229), + [aux_sym_control_master_token1] = ACTIONS(1229), + [aux_sym_control_path_token1] = ACTIONS(1229), + [aux_sym_control_persist_token1] = ACTIONS(1229), + [aux_sym_dynamic_forward_token1] = ACTIONS(1229), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1229), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1229), + [aux_sym_escape_char_token1] = ACTIONS(1229), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1229), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1229), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1229), + [aux_sym_forward_agent_token1] = ACTIONS(1229), + [aux_sym_forward_x11_token1] = ACTIONS(1231), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1229), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1229), + [aux_sym_gateway_ports_token1] = ACTIONS(1229), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1229), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1229), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1229), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1229), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1229), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1229), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1229), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1229), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1229), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1229), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1229), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1229), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1229), + [aux_sym_host_key_alias_token1] = ACTIONS(1229), + [aux_sym_hostname_token1] = ACTIONS(1229), + [aux_sym_identities_only_token1] = ACTIONS(1229), + [aux_sym_identity_agent_token1] = ACTIONS(1229), + [aux_sym_identity_file_token1] = ACTIONS(1229), + [aux_sym_ignore_unknown_token1] = ACTIONS(1229), + [aux_sym_include_token1] = ACTIONS(1229), + [aux_sym_ip_qos_token1] = ACTIONS(1229), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1229), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1229), + [aux_sym_kex_algorithms_token1] = ACTIONS(1229), + [aux_sym_known_hosts_command_token1] = ACTIONS(1229), + [aux_sym_local_command_token1] = ACTIONS(1229), + [aux_sym_local_forward_token1] = ACTIONS(1229), + [aux_sym_log_level_token1] = ACTIONS(1229), + [aux_sym_log_verbose_token1] = ACTIONS(1229), + [aux_sym_macs_token1] = ACTIONS(1229), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1229), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1229), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1229), + [aux_sym_password_authentication_token1] = ACTIONS(1229), + [aux_sym_permit_local_command_token1] = ACTIONS(1229), + [aux_sym_permit_remote_open_token1] = ACTIONS(1229), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1229), + [aux_sym_port_token1] = ACTIONS(1229), + [aux_sym_preferred_authentications_token1] = ACTIONS(1229), + [aux_sym_protocol_token1] = ACTIONS(1229), + [aux_sym_proxy_command_token1] = ACTIONS(1229), + [aux_sym_proxy_jump_token1] = ACTIONS(1229), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1229), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1229), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1229), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1229), + [aux_sym_rekey_limit_token1] = ACTIONS(1229), + [aux_sym_remote_command_token1] = ACTIONS(1229), + [aux_sym_remote_forward_token1] = ACTIONS(1229), + [aux_sym_request_tty_token1] = ACTIONS(1229), + [aux_sym_required_rsa_size_token1] = ACTIONS(1229), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1229), + [aux_sym_security_key_provider_token1] = ACTIONS(1229), + [aux_sym_send_env_token1] = ACTIONS(1229), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1229), + [aux_sym_server_alive_interval_token1] = ACTIONS(1229), + [aux_sym_session_type_token1] = ACTIONS(1229), + [aux_sym_set_env_token1] = ACTIONS(1229), + [aux_sym_stdin_null_token1] = ACTIONS(1229), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1229), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1229), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1229), + [aux_sym_syslog_facility_token1] = ACTIONS(1229), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1229), + [aux_sym_keep_alive_token1] = ACTIONS(1229), + [aux_sym_tag_token1] = ACTIONS(1229), + [aux_sym_tunnel_token1] = ACTIONS(1231), + [aux_sym_tunnel_device_token1] = ACTIONS(1229), + [aux_sym_update_host_keys_token1] = ACTIONS(1229), + [aux_sym_use_keychain_token1] = ACTIONS(1229), + [aux_sym_use_roaming_token1] = ACTIONS(1229), + [aux_sym_user_token1] = ACTIONS(1231), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1229), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1229), + [aux_sym_visual_host_key_token1] = ACTIONS(1229), + [aux_sym_xauth_location_token1] = ACTIONS(1229), }, [112] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1232), - [anon_sym_DQUOTE] = ACTIONS(1234), - [aux_sym_match_token1] = ACTIONS(1230), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1230), - [aux_sym_address_family_token1] = ACTIONS(1230), - [aux_sym_batch_mode_token1] = ACTIONS(1230), - [aux_sym_bind_address_token1] = ACTIONS(1230), - [aux_sym_bind_interface_token1] = ACTIONS(1230), - [aux_sym_canonical_domains_token1] = ACTIONS(1230), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1230), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1230), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1230), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1230), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1230), - [aux_sym_certificate_file_token1] = ACTIONS(1230), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1230), - [aux_sym_channel_timeout_token1] = ACTIONS(1230), - [aux_sym_check_host_ip_token1] = ACTIONS(1230), - [aux_sym_ciphers_token1] = ACTIONS(1230), - [aux_sym_cipher_token1] = ACTIONS(1232), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1230), - [aux_sym_compression_token1] = ACTIONS(1230), - [aux_sym_connection_attempts_token1] = ACTIONS(1230), - [aux_sym_connect_timeout_token1] = ACTIONS(1230), - [aux_sym_control_master_token1] = ACTIONS(1230), - [aux_sym_control_path_token1] = ACTIONS(1230), - [aux_sym_control_persist_token1] = ACTIONS(1230), - [aux_sym_dynamic_forward_token1] = ACTIONS(1230), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1230), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1230), - [aux_sym_escape_char_token1] = ACTIONS(1230), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1230), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1230), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1230), - [aux_sym_forward_agent_token1] = ACTIONS(1230), - [aux_sym_forward_x11_token1] = ACTIONS(1232), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1230), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1230), - [aux_sym_gateway_ports_token1] = ACTIONS(1230), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1230), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1230), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1230), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1230), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1230), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1230), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1230), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1230), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1230), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1230), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1230), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1230), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1230), - [aux_sym_host_key_alias_token1] = ACTIONS(1230), - [aux_sym_hostname_token1] = ACTIONS(1230), - [aux_sym_identities_only_token1] = ACTIONS(1230), - [aux_sym_identity_agent_token1] = ACTIONS(1230), - [aux_sym_identity_file_token1] = ACTIONS(1230), - [aux_sym_ignore_unknown_token1] = ACTIONS(1230), - [aux_sym_include_token1] = ACTIONS(1230), - [aux_sym_ip_qos_token1] = ACTIONS(1230), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1230), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1230), - [aux_sym_kex_algorithms_token1] = ACTIONS(1230), - [aux_sym_known_hosts_command_token1] = ACTIONS(1230), - [aux_sym_local_command_token1] = ACTIONS(1230), - [aux_sym_local_forward_token1] = ACTIONS(1230), - [aux_sym_log_level_token1] = ACTIONS(1230), - [aux_sym_log_verbose_token1] = ACTIONS(1230), - [aux_sym_macs_token1] = ACTIONS(1230), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1230), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1230), - [aux_sym_password_authentication_token1] = ACTIONS(1230), - [aux_sym_permit_local_command_token1] = ACTIONS(1230), - [aux_sym_permit_remote_open_token1] = ACTIONS(1230), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1230), - [aux_sym_port_token1] = ACTIONS(1230), - [aux_sym_preferred_authentications_token1] = ACTIONS(1230), - [aux_sym_protocol_token1] = ACTIONS(1230), - [aux_sym_proxy_command_token1] = ACTIONS(1230), - [aux_sym_proxy_jump_token1] = ACTIONS(1230), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1230), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1230), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1230), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1230), - [aux_sym_rekey_limit_token1] = ACTIONS(1230), - [aux_sym_remote_command_token1] = ACTIONS(1230), - [aux_sym_remote_forward_token1] = ACTIONS(1230), - [aux_sym_request_tty_token1] = ACTIONS(1230), - [aux_sym_required_rsa_size_token1] = ACTIONS(1230), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1230), - [aux_sym_security_key_provider_token1] = ACTIONS(1230), - [aux_sym_send_env_token1] = ACTIONS(1230), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1230), - [aux_sym_server_alive_interval_token1] = ACTIONS(1230), - [aux_sym_session_type_token1] = ACTIONS(1230), - [aux_sym_set_env_token1] = ACTIONS(1230), - [aux_sym_stdin_null_token1] = ACTIONS(1230), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1230), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1230), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1230), - [aux_sym_syslog_facility_token1] = ACTIONS(1230), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1230), - [aux_sym_keep_alive_token1] = ACTIONS(1230), - [aux_sym_tag_token1] = ACTIONS(1230), - [aux_sym_tunnel_token1] = ACTIONS(1232), - [aux_sym_tunnel_device_token1] = ACTIONS(1230), - [aux_sym_update_host_keys_token1] = ACTIONS(1230), - [aux_sym_use_keychain_token1] = ACTIONS(1230), - [aux_sym_use_roaming_token1] = ACTIONS(1230), - [aux_sym_user_token1] = ACTIONS(1232), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1230), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1230), - [aux_sym_visual_host_key_token1] = ACTIONS(1230), - [aux_sym_xauth_location_token1] = ACTIONS(1230), + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1237), + [anon_sym_DQUOTE] = ACTIONS(1239), + [aux_sym_match_token1] = ACTIONS(1235), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1235), + [aux_sym_address_family_token1] = ACTIONS(1235), + [aux_sym_batch_mode_token1] = ACTIONS(1235), + [aux_sym_bind_address_token1] = ACTIONS(1235), + [aux_sym_bind_interface_token1] = ACTIONS(1235), + [aux_sym_canonical_domains_token1] = ACTIONS(1235), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1235), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1235), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1235), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1235), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1235), + [aux_sym_certificate_file_token1] = ACTIONS(1235), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1235), + [aux_sym_channel_timeout_token1] = ACTIONS(1235), + [aux_sym_check_host_ip_token1] = ACTIONS(1235), + [aux_sym_ciphers_token1] = ACTIONS(1235), + [aux_sym_cipher_token1] = ACTIONS(1237), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1235), + [aux_sym_compression_token1] = ACTIONS(1235), + [aux_sym_connection_attempts_token1] = ACTIONS(1235), + [aux_sym_connect_timeout_token1] = ACTIONS(1235), + [aux_sym_control_master_token1] = ACTIONS(1235), + [aux_sym_control_path_token1] = ACTIONS(1235), + [aux_sym_control_persist_token1] = ACTIONS(1235), + [aux_sym_dynamic_forward_token1] = ACTIONS(1235), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1235), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1235), + [aux_sym_escape_char_token1] = ACTIONS(1235), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1235), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1235), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1235), + [aux_sym_forward_agent_token1] = ACTIONS(1235), + [aux_sym_forward_x11_token1] = ACTIONS(1237), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1235), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1235), + [aux_sym_gateway_ports_token1] = ACTIONS(1235), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1235), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1235), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1235), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1235), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1235), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1235), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1235), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1235), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1235), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1235), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1235), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1235), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1235), + [aux_sym_host_key_alias_token1] = ACTIONS(1235), + [aux_sym_hostname_token1] = ACTIONS(1235), + [aux_sym_identities_only_token1] = ACTIONS(1235), + [aux_sym_identity_agent_token1] = ACTIONS(1235), + [aux_sym_identity_file_token1] = ACTIONS(1235), + [aux_sym_ignore_unknown_token1] = ACTIONS(1235), + [aux_sym_include_token1] = ACTIONS(1235), + [aux_sym_ip_qos_token1] = ACTIONS(1235), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1235), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1235), + [aux_sym_kex_algorithms_token1] = ACTIONS(1235), + [aux_sym_known_hosts_command_token1] = ACTIONS(1235), + [aux_sym_local_command_token1] = ACTIONS(1235), + [aux_sym_local_forward_token1] = ACTIONS(1235), + [aux_sym_log_level_token1] = ACTIONS(1235), + [aux_sym_log_verbose_token1] = ACTIONS(1235), + [aux_sym_macs_token1] = ACTIONS(1235), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1235), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1235), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1235), + [aux_sym_password_authentication_token1] = ACTIONS(1235), + [aux_sym_permit_local_command_token1] = ACTIONS(1235), + [aux_sym_permit_remote_open_token1] = ACTIONS(1235), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1235), + [aux_sym_port_token1] = ACTIONS(1235), + [aux_sym_preferred_authentications_token1] = ACTIONS(1235), + [aux_sym_protocol_token1] = ACTIONS(1235), + [aux_sym_proxy_command_token1] = ACTIONS(1235), + [aux_sym_proxy_jump_token1] = ACTIONS(1235), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1235), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1235), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1235), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1235), + [aux_sym_rekey_limit_token1] = ACTIONS(1235), + [aux_sym_remote_command_token1] = ACTIONS(1235), + [aux_sym_remote_forward_token1] = ACTIONS(1235), + [aux_sym_request_tty_token1] = ACTIONS(1235), + [aux_sym_required_rsa_size_token1] = ACTIONS(1235), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1235), + [aux_sym_security_key_provider_token1] = ACTIONS(1235), + [aux_sym_send_env_token1] = ACTIONS(1235), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1235), + [aux_sym_server_alive_interval_token1] = ACTIONS(1235), + [aux_sym_session_type_token1] = ACTIONS(1235), + [aux_sym_set_env_token1] = ACTIONS(1235), + [aux_sym_stdin_null_token1] = ACTIONS(1235), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1235), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1235), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1235), + [aux_sym_syslog_facility_token1] = ACTIONS(1235), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1235), + [aux_sym_keep_alive_token1] = ACTIONS(1235), + [aux_sym_tag_token1] = ACTIONS(1235), + [aux_sym_tunnel_token1] = ACTIONS(1237), + [aux_sym_tunnel_device_token1] = ACTIONS(1235), + [aux_sym_update_host_keys_token1] = ACTIONS(1235), + [aux_sym_use_keychain_token1] = ACTIONS(1235), + [aux_sym_use_roaming_token1] = ACTIONS(1235), + [aux_sym_user_token1] = ACTIONS(1237), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1235), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1235), + [aux_sym_visual_host_key_token1] = ACTIONS(1235), + [aux_sym_xauth_location_token1] = ACTIONS(1235), }, [113] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1238), - [anon_sym_DQUOTE] = ACTIONS(1240), - [aux_sym_match_token1] = ACTIONS(1236), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1236), - [aux_sym_address_family_token1] = ACTIONS(1236), - [aux_sym_batch_mode_token1] = ACTIONS(1236), - [aux_sym_bind_address_token1] = ACTIONS(1236), - [aux_sym_bind_interface_token1] = ACTIONS(1236), - [aux_sym_canonical_domains_token1] = ACTIONS(1236), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1236), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1236), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1236), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1236), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1236), - [aux_sym_certificate_file_token1] = ACTIONS(1236), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1236), - [aux_sym_channel_timeout_token1] = ACTIONS(1236), - [aux_sym_check_host_ip_token1] = ACTIONS(1236), - [aux_sym_ciphers_token1] = ACTIONS(1236), - [aux_sym_cipher_token1] = ACTIONS(1238), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1236), - [aux_sym_compression_token1] = ACTIONS(1236), - [aux_sym_connection_attempts_token1] = ACTIONS(1236), - [aux_sym_connect_timeout_token1] = ACTIONS(1236), - [aux_sym_control_master_token1] = ACTIONS(1236), - [aux_sym_control_path_token1] = ACTIONS(1236), - [aux_sym_control_persist_token1] = ACTIONS(1236), - [aux_sym_dynamic_forward_token1] = ACTIONS(1236), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1236), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1236), - [aux_sym_escape_char_token1] = ACTIONS(1236), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1236), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1236), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1236), - [aux_sym_forward_agent_token1] = ACTIONS(1236), - [aux_sym_forward_x11_token1] = ACTIONS(1238), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1236), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1236), - [aux_sym_gateway_ports_token1] = ACTIONS(1236), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1236), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1236), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1236), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1236), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1236), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1236), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1236), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1236), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1236), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1236), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1236), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1236), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1236), - [aux_sym_host_key_alias_token1] = ACTIONS(1236), - [aux_sym_hostname_token1] = ACTIONS(1236), - [aux_sym_identities_only_token1] = ACTIONS(1236), - [aux_sym_identity_agent_token1] = ACTIONS(1236), - [aux_sym_identity_file_token1] = ACTIONS(1236), - [aux_sym_ignore_unknown_token1] = ACTIONS(1236), - [aux_sym_include_token1] = ACTIONS(1236), - [aux_sym_ip_qos_token1] = ACTIONS(1236), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1236), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1236), - [aux_sym_kex_algorithms_token1] = ACTIONS(1236), - [aux_sym_known_hosts_command_token1] = ACTIONS(1236), - [aux_sym_local_command_token1] = ACTIONS(1236), - [aux_sym_local_forward_token1] = ACTIONS(1236), - [aux_sym_log_level_token1] = ACTIONS(1236), - [aux_sym_log_verbose_token1] = ACTIONS(1236), - [aux_sym_macs_token1] = ACTIONS(1236), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1236), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1236), - [aux_sym_password_authentication_token1] = ACTIONS(1236), - [aux_sym_permit_local_command_token1] = ACTIONS(1236), - [aux_sym_permit_remote_open_token1] = ACTIONS(1236), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1236), - [aux_sym_port_token1] = ACTIONS(1236), - [aux_sym_preferred_authentications_token1] = ACTIONS(1236), - [aux_sym_protocol_token1] = ACTIONS(1236), - [aux_sym_proxy_command_token1] = ACTIONS(1236), - [aux_sym_proxy_jump_token1] = ACTIONS(1236), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1236), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1236), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1236), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1236), - [aux_sym_rekey_limit_token1] = ACTIONS(1236), - [aux_sym_remote_command_token1] = ACTIONS(1236), - [aux_sym_remote_forward_token1] = ACTIONS(1236), - [aux_sym_request_tty_token1] = ACTIONS(1236), - [aux_sym_required_rsa_size_token1] = ACTIONS(1236), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1236), - [aux_sym_security_key_provider_token1] = ACTIONS(1236), - [aux_sym_send_env_token1] = ACTIONS(1236), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1236), - [aux_sym_server_alive_interval_token1] = ACTIONS(1236), - [aux_sym_session_type_token1] = ACTIONS(1236), - [aux_sym_set_env_token1] = ACTIONS(1236), - [aux_sym_stdin_null_token1] = ACTIONS(1236), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1236), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1236), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1236), - [aux_sym_syslog_facility_token1] = ACTIONS(1236), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1236), - [aux_sym_keep_alive_token1] = ACTIONS(1236), - [aux_sym_tag_token1] = ACTIONS(1236), - [aux_sym_tunnel_token1] = ACTIONS(1238), - [aux_sym_tunnel_device_token1] = ACTIONS(1236), - [aux_sym_update_host_keys_token1] = ACTIONS(1236), - [aux_sym_use_keychain_token1] = ACTIONS(1236), - [aux_sym_use_roaming_token1] = ACTIONS(1236), - [aux_sym_user_token1] = ACTIONS(1238), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1236), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1236), - [aux_sym_visual_host_key_token1] = ACTIONS(1236), - [aux_sym_xauth_location_token1] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1245), + [aux_sym_match_token1] = ACTIONS(1241), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1241), + [aux_sym_address_family_token1] = ACTIONS(1241), + [aux_sym_batch_mode_token1] = ACTIONS(1241), + [aux_sym_bind_address_token1] = ACTIONS(1241), + [aux_sym_bind_interface_token1] = ACTIONS(1241), + [aux_sym_canonical_domains_token1] = ACTIONS(1241), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1241), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1241), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1241), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1241), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1241), + [aux_sym_certificate_file_token1] = ACTIONS(1241), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1241), + [aux_sym_channel_timeout_token1] = ACTIONS(1241), + [aux_sym_check_host_ip_token1] = ACTIONS(1241), + [aux_sym_ciphers_token1] = ACTIONS(1241), + [aux_sym_cipher_token1] = ACTIONS(1243), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1241), + [aux_sym_compression_token1] = ACTIONS(1241), + [aux_sym_connection_attempts_token1] = ACTIONS(1241), + [aux_sym_connect_timeout_token1] = ACTIONS(1241), + [aux_sym_control_master_token1] = ACTIONS(1241), + [aux_sym_control_path_token1] = ACTIONS(1241), + [aux_sym_control_persist_token1] = ACTIONS(1241), + [aux_sym_dynamic_forward_token1] = ACTIONS(1241), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1241), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1241), + [aux_sym_escape_char_token1] = ACTIONS(1241), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1241), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1241), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1241), + [aux_sym_forward_agent_token1] = ACTIONS(1241), + [aux_sym_forward_x11_token1] = ACTIONS(1243), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1241), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1241), + [aux_sym_gateway_ports_token1] = ACTIONS(1241), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1241), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1241), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1241), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1241), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1241), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1241), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1241), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1241), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1241), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1241), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1241), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1241), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1241), + [aux_sym_host_key_alias_token1] = ACTIONS(1241), + [aux_sym_hostname_token1] = ACTIONS(1241), + [aux_sym_identities_only_token1] = ACTIONS(1241), + [aux_sym_identity_agent_token1] = ACTIONS(1241), + [aux_sym_identity_file_token1] = ACTIONS(1241), + [aux_sym_ignore_unknown_token1] = ACTIONS(1241), + [aux_sym_include_token1] = ACTIONS(1241), + [aux_sym_ip_qos_token1] = ACTIONS(1241), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1241), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1241), + [aux_sym_kex_algorithms_token1] = ACTIONS(1241), + [aux_sym_known_hosts_command_token1] = ACTIONS(1241), + [aux_sym_local_command_token1] = ACTIONS(1241), + [aux_sym_local_forward_token1] = ACTIONS(1241), + [aux_sym_log_level_token1] = ACTIONS(1241), + [aux_sym_log_verbose_token1] = ACTIONS(1241), + [aux_sym_macs_token1] = ACTIONS(1241), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1241), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1241), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1241), + [aux_sym_password_authentication_token1] = ACTIONS(1241), + [aux_sym_permit_local_command_token1] = ACTIONS(1241), + [aux_sym_permit_remote_open_token1] = ACTIONS(1241), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1241), + [aux_sym_port_token1] = ACTIONS(1241), + [aux_sym_preferred_authentications_token1] = ACTIONS(1241), + [aux_sym_protocol_token1] = ACTIONS(1241), + [aux_sym_proxy_command_token1] = ACTIONS(1241), + [aux_sym_proxy_jump_token1] = ACTIONS(1241), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1241), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1241), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1241), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1241), + [aux_sym_rekey_limit_token1] = ACTIONS(1241), + [aux_sym_remote_command_token1] = ACTIONS(1241), + [aux_sym_remote_forward_token1] = ACTIONS(1241), + [aux_sym_request_tty_token1] = ACTIONS(1241), + [aux_sym_required_rsa_size_token1] = ACTIONS(1241), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1241), + [aux_sym_security_key_provider_token1] = ACTIONS(1241), + [aux_sym_send_env_token1] = ACTIONS(1241), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1241), + [aux_sym_server_alive_interval_token1] = ACTIONS(1241), + [aux_sym_session_type_token1] = ACTIONS(1241), + [aux_sym_set_env_token1] = ACTIONS(1241), + [aux_sym_stdin_null_token1] = ACTIONS(1241), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1241), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1241), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1241), + [aux_sym_syslog_facility_token1] = ACTIONS(1241), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1241), + [aux_sym_keep_alive_token1] = ACTIONS(1241), + [aux_sym_tag_token1] = ACTIONS(1241), + [aux_sym_tunnel_token1] = ACTIONS(1243), + [aux_sym_tunnel_device_token1] = ACTIONS(1241), + [aux_sym_update_host_keys_token1] = ACTIONS(1241), + [aux_sym_use_keychain_token1] = ACTIONS(1241), + [aux_sym_use_roaming_token1] = ACTIONS(1241), + [aux_sym_user_token1] = ACTIONS(1243), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1241), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1241), + [aux_sym_visual_host_key_token1] = ACTIONS(1241), + [aux_sym_xauth_location_token1] = ACTIONS(1241), }, [114] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(1246), - [aux_sym_match_token1] = ACTIONS(1242), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1242), - [aux_sym_address_family_token1] = ACTIONS(1242), - [aux_sym_batch_mode_token1] = ACTIONS(1242), - [aux_sym_bind_address_token1] = ACTIONS(1242), - [aux_sym_bind_interface_token1] = ACTIONS(1242), - [aux_sym_canonical_domains_token1] = ACTIONS(1242), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1242), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1242), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1242), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1242), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1242), - [aux_sym_certificate_file_token1] = ACTIONS(1242), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1242), - [aux_sym_channel_timeout_token1] = ACTIONS(1242), - [aux_sym_check_host_ip_token1] = ACTIONS(1242), - [aux_sym_ciphers_token1] = ACTIONS(1242), - [aux_sym_cipher_token1] = ACTIONS(1244), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1242), - [aux_sym_compression_token1] = ACTIONS(1242), - [aux_sym_connection_attempts_token1] = ACTIONS(1242), - [aux_sym_connect_timeout_token1] = ACTIONS(1242), - [aux_sym_control_master_token1] = ACTIONS(1242), - [aux_sym_control_path_token1] = ACTIONS(1242), - [aux_sym_control_persist_token1] = ACTIONS(1242), - [aux_sym_dynamic_forward_token1] = ACTIONS(1242), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1242), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1242), - [aux_sym_escape_char_token1] = ACTIONS(1242), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1242), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1242), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1242), - [aux_sym_forward_agent_token1] = ACTIONS(1242), - [aux_sym_forward_x11_token1] = ACTIONS(1244), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1242), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1242), - [aux_sym_gateway_ports_token1] = ACTIONS(1242), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1242), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1242), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1242), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1242), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1242), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1242), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1242), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1242), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1242), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1242), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1242), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1242), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1242), - [aux_sym_host_key_alias_token1] = ACTIONS(1242), - [aux_sym_hostname_token1] = ACTIONS(1242), - [aux_sym_identities_only_token1] = ACTIONS(1242), - [aux_sym_identity_agent_token1] = ACTIONS(1242), - [aux_sym_identity_file_token1] = ACTIONS(1242), - [aux_sym_ignore_unknown_token1] = ACTIONS(1242), - [aux_sym_include_token1] = ACTIONS(1242), - [aux_sym_ip_qos_token1] = ACTIONS(1242), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1242), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1242), - [aux_sym_kex_algorithms_token1] = ACTIONS(1242), - [aux_sym_known_hosts_command_token1] = ACTIONS(1242), - [aux_sym_local_command_token1] = ACTIONS(1242), - [aux_sym_local_forward_token1] = ACTIONS(1242), - [aux_sym_log_level_token1] = ACTIONS(1242), - [aux_sym_log_verbose_token1] = ACTIONS(1242), - [aux_sym_macs_token1] = ACTIONS(1242), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1242), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1242), - [aux_sym_password_authentication_token1] = ACTIONS(1242), - [aux_sym_permit_local_command_token1] = ACTIONS(1242), - [aux_sym_permit_remote_open_token1] = ACTIONS(1242), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1242), - [aux_sym_port_token1] = ACTIONS(1242), - [aux_sym_preferred_authentications_token1] = ACTIONS(1242), - [aux_sym_protocol_token1] = ACTIONS(1242), - [aux_sym_proxy_command_token1] = ACTIONS(1242), - [aux_sym_proxy_jump_token1] = ACTIONS(1242), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1242), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1242), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1242), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1242), - [aux_sym_rekey_limit_token1] = ACTIONS(1242), - [aux_sym_remote_command_token1] = ACTIONS(1242), - [aux_sym_remote_forward_token1] = ACTIONS(1242), - [aux_sym_request_tty_token1] = ACTIONS(1242), - [aux_sym_required_rsa_size_token1] = ACTIONS(1242), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1242), - [aux_sym_security_key_provider_token1] = ACTIONS(1242), - [aux_sym_send_env_token1] = ACTIONS(1242), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1242), - [aux_sym_server_alive_interval_token1] = ACTIONS(1242), - [aux_sym_session_type_token1] = ACTIONS(1242), - [aux_sym_set_env_token1] = ACTIONS(1242), - [aux_sym_stdin_null_token1] = ACTIONS(1242), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1242), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1242), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1242), - [aux_sym_syslog_facility_token1] = ACTIONS(1242), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1242), - [aux_sym_keep_alive_token1] = ACTIONS(1242), - [aux_sym_tag_token1] = ACTIONS(1242), - [aux_sym_tunnel_token1] = ACTIONS(1244), - [aux_sym_tunnel_device_token1] = ACTIONS(1242), - [aux_sym_update_host_keys_token1] = ACTIONS(1242), - [aux_sym_use_keychain_token1] = ACTIONS(1242), - [aux_sym_use_roaming_token1] = ACTIONS(1242), - [aux_sym_user_token1] = ACTIONS(1244), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1242), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1242), - [aux_sym_visual_host_key_token1] = ACTIONS(1242), - [aux_sym_xauth_location_token1] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1247), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1251), + [aux_sym_match_token1] = ACTIONS(1247), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1247), + [aux_sym_address_family_token1] = ACTIONS(1247), + [aux_sym_batch_mode_token1] = ACTIONS(1247), + [aux_sym_bind_address_token1] = ACTIONS(1247), + [aux_sym_bind_interface_token1] = ACTIONS(1247), + [aux_sym_canonical_domains_token1] = ACTIONS(1247), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1247), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1247), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1247), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1247), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1247), + [aux_sym_certificate_file_token1] = ACTIONS(1247), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1247), + [aux_sym_channel_timeout_token1] = ACTIONS(1247), + [aux_sym_check_host_ip_token1] = ACTIONS(1247), + [aux_sym_ciphers_token1] = ACTIONS(1247), + [aux_sym_cipher_token1] = ACTIONS(1249), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1247), + [aux_sym_compression_token1] = ACTIONS(1247), + [aux_sym_connection_attempts_token1] = ACTIONS(1247), + [aux_sym_connect_timeout_token1] = ACTIONS(1247), + [aux_sym_control_master_token1] = ACTIONS(1247), + [aux_sym_control_path_token1] = ACTIONS(1247), + [aux_sym_control_persist_token1] = ACTIONS(1247), + [aux_sym_dynamic_forward_token1] = ACTIONS(1247), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1247), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1247), + [aux_sym_escape_char_token1] = ACTIONS(1247), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1247), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1247), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1247), + [aux_sym_forward_agent_token1] = ACTIONS(1247), + [aux_sym_forward_x11_token1] = ACTIONS(1249), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1247), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1247), + [aux_sym_gateway_ports_token1] = ACTIONS(1247), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1247), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1247), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1247), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1247), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1247), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1247), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1247), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1247), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1247), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1247), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1247), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1247), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1247), + [aux_sym_host_key_alias_token1] = ACTIONS(1247), + [aux_sym_hostname_token1] = ACTIONS(1247), + [aux_sym_identities_only_token1] = ACTIONS(1247), + [aux_sym_identity_agent_token1] = ACTIONS(1247), + [aux_sym_identity_file_token1] = ACTIONS(1247), + [aux_sym_ignore_unknown_token1] = ACTIONS(1247), + [aux_sym_include_token1] = ACTIONS(1247), + [aux_sym_ip_qos_token1] = ACTIONS(1247), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1247), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1247), + [aux_sym_kex_algorithms_token1] = ACTIONS(1247), + [aux_sym_known_hosts_command_token1] = ACTIONS(1247), + [aux_sym_local_command_token1] = ACTIONS(1247), + [aux_sym_local_forward_token1] = ACTIONS(1247), + [aux_sym_log_level_token1] = ACTIONS(1247), + [aux_sym_log_verbose_token1] = ACTIONS(1247), + [aux_sym_macs_token1] = ACTIONS(1247), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1247), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1247), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1247), + [aux_sym_password_authentication_token1] = ACTIONS(1247), + [aux_sym_permit_local_command_token1] = ACTIONS(1247), + [aux_sym_permit_remote_open_token1] = ACTIONS(1247), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1247), + [aux_sym_port_token1] = ACTIONS(1247), + [aux_sym_preferred_authentications_token1] = ACTIONS(1247), + [aux_sym_protocol_token1] = ACTIONS(1247), + [aux_sym_proxy_command_token1] = ACTIONS(1247), + [aux_sym_proxy_jump_token1] = ACTIONS(1247), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1247), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1247), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1247), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1247), + [aux_sym_rekey_limit_token1] = ACTIONS(1247), + [aux_sym_remote_command_token1] = ACTIONS(1247), + [aux_sym_remote_forward_token1] = ACTIONS(1247), + [aux_sym_request_tty_token1] = ACTIONS(1247), + [aux_sym_required_rsa_size_token1] = ACTIONS(1247), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1247), + [aux_sym_security_key_provider_token1] = ACTIONS(1247), + [aux_sym_send_env_token1] = ACTIONS(1247), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1247), + [aux_sym_server_alive_interval_token1] = ACTIONS(1247), + [aux_sym_session_type_token1] = ACTIONS(1247), + [aux_sym_set_env_token1] = ACTIONS(1247), + [aux_sym_stdin_null_token1] = ACTIONS(1247), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1247), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1247), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1247), + [aux_sym_syslog_facility_token1] = ACTIONS(1247), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1247), + [aux_sym_keep_alive_token1] = ACTIONS(1247), + [aux_sym_tag_token1] = ACTIONS(1247), + [aux_sym_tunnel_token1] = ACTIONS(1249), + [aux_sym_tunnel_device_token1] = ACTIONS(1247), + [aux_sym_update_host_keys_token1] = ACTIONS(1247), + [aux_sym_use_keychain_token1] = ACTIONS(1247), + [aux_sym_use_roaming_token1] = ACTIONS(1247), + [aux_sym_user_token1] = ACTIONS(1249), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1247), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1247), + [aux_sym_visual_host_key_token1] = ACTIONS(1247), + [aux_sym_xauth_location_token1] = ACTIONS(1247), }, [115] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1250), - [anon_sym_DQUOTE] = ACTIONS(1252), - [aux_sym_match_token1] = ACTIONS(1248), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1248), - [aux_sym_address_family_token1] = ACTIONS(1248), - [aux_sym_batch_mode_token1] = ACTIONS(1248), - [aux_sym_bind_address_token1] = ACTIONS(1248), - [aux_sym_bind_interface_token1] = ACTIONS(1248), - [aux_sym_canonical_domains_token1] = ACTIONS(1248), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1248), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1248), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1248), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1248), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1248), - [aux_sym_certificate_file_token1] = ACTIONS(1248), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1248), - [aux_sym_channel_timeout_token1] = ACTIONS(1248), - [aux_sym_check_host_ip_token1] = ACTIONS(1248), - [aux_sym_ciphers_token1] = ACTIONS(1248), - [aux_sym_cipher_token1] = ACTIONS(1250), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1248), - [aux_sym_compression_token1] = ACTIONS(1248), - [aux_sym_connection_attempts_token1] = ACTIONS(1248), - [aux_sym_connect_timeout_token1] = ACTIONS(1248), - [aux_sym_control_master_token1] = ACTIONS(1248), - [aux_sym_control_path_token1] = ACTIONS(1248), - [aux_sym_control_persist_token1] = ACTIONS(1248), - [aux_sym_dynamic_forward_token1] = ACTIONS(1248), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1248), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1248), - [aux_sym_escape_char_token1] = ACTIONS(1248), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1248), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1248), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1248), - [aux_sym_forward_agent_token1] = ACTIONS(1248), - [aux_sym_forward_x11_token1] = ACTIONS(1250), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1248), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1248), - [aux_sym_gateway_ports_token1] = ACTIONS(1248), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1248), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1248), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1248), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1248), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1248), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1248), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1248), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1248), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1248), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1248), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1248), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1248), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1248), - [aux_sym_host_key_alias_token1] = ACTIONS(1248), - [aux_sym_hostname_token1] = ACTIONS(1248), - [aux_sym_identities_only_token1] = ACTIONS(1248), - [aux_sym_identity_agent_token1] = ACTIONS(1248), - [aux_sym_identity_file_token1] = ACTIONS(1248), - [aux_sym_ignore_unknown_token1] = ACTIONS(1248), - [aux_sym_include_token1] = ACTIONS(1248), - [aux_sym_ip_qos_token1] = ACTIONS(1248), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1248), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1248), - [aux_sym_kex_algorithms_token1] = ACTIONS(1248), - [aux_sym_known_hosts_command_token1] = ACTIONS(1248), - [aux_sym_local_command_token1] = ACTIONS(1248), - [aux_sym_local_forward_token1] = ACTIONS(1248), - [aux_sym_log_level_token1] = ACTIONS(1248), - [aux_sym_log_verbose_token1] = ACTIONS(1248), - [aux_sym_macs_token1] = ACTIONS(1248), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1248), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1248), - [aux_sym_password_authentication_token1] = ACTIONS(1248), - [aux_sym_permit_local_command_token1] = ACTIONS(1248), - [aux_sym_permit_remote_open_token1] = ACTIONS(1248), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1248), - [aux_sym_port_token1] = ACTIONS(1248), - [aux_sym_preferred_authentications_token1] = ACTIONS(1248), - [aux_sym_protocol_token1] = ACTIONS(1248), - [aux_sym_proxy_command_token1] = ACTIONS(1248), - [aux_sym_proxy_jump_token1] = ACTIONS(1248), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1248), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1248), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1248), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1248), - [aux_sym_rekey_limit_token1] = ACTIONS(1248), - [aux_sym_remote_command_token1] = ACTIONS(1248), - [aux_sym_remote_forward_token1] = ACTIONS(1248), - [aux_sym_request_tty_token1] = ACTIONS(1248), - [aux_sym_required_rsa_size_token1] = ACTIONS(1248), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1248), - [aux_sym_security_key_provider_token1] = ACTIONS(1248), - [aux_sym_send_env_token1] = ACTIONS(1248), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1248), - [aux_sym_server_alive_interval_token1] = ACTIONS(1248), - [aux_sym_session_type_token1] = ACTIONS(1248), - [aux_sym_set_env_token1] = ACTIONS(1248), - [aux_sym_stdin_null_token1] = ACTIONS(1248), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1248), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1248), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1248), - [aux_sym_syslog_facility_token1] = ACTIONS(1248), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1248), - [aux_sym_keep_alive_token1] = ACTIONS(1248), - [aux_sym_tag_token1] = ACTIONS(1248), - [aux_sym_tunnel_token1] = ACTIONS(1250), - [aux_sym_tunnel_device_token1] = ACTIONS(1248), - [aux_sym_update_host_keys_token1] = ACTIONS(1248), - [aux_sym_use_keychain_token1] = ACTIONS(1248), - [aux_sym_use_roaming_token1] = ACTIONS(1248), - [aux_sym_user_token1] = ACTIONS(1250), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1248), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1248), - [aux_sym_visual_host_key_token1] = ACTIONS(1248), - [aux_sym_xauth_location_token1] = ACTIONS(1248), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1257), + [aux_sym_match_token1] = ACTIONS(1253), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1253), + [aux_sym_address_family_token1] = ACTIONS(1253), + [aux_sym_batch_mode_token1] = ACTIONS(1253), + [aux_sym_bind_address_token1] = ACTIONS(1253), + [aux_sym_bind_interface_token1] = ACTIONS(1253), + [aux_sym_canonical_domains_token1] = ACTIONS(1253), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1253), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1253), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1253), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1253), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1253), + [aux_sym_certificate_file_token1] = ACTIONS(1253), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1253), + [aux_sym_channel_timeout_token1] = ACTIONS(1253), + [aux_sym_check_host_ip_token1] = ACTIONS(1253), + [aux_sym_ciphers_token1] = ACTIONS(1253), + [aux_sym_cipher_token1] = ACTIONS(1255), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1253), + [aux_sym_compression_token1] = ACTIONS(1253), + [aux_sym_connection_attempts_token1] = ACTIONS(1253), + [aux_sym_connect_timeout_token1] = ACTIONS(1253), + [aux_sym_control_master_token1] = ACTIONS(1253), + [aux_sym_control_path_token1] = ACTIONS(1253), + [aux_sym_control_persist_token1] = ACTIONS(1253), + [aux_sym_dynamic_forward_token1] = ACTIONS(1253), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1253), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1253), + [aux_sym_escape_char_token1] = ACTIONS(1253), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1253), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1253), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1253), + [aux_sym_forward_agent_token1] = ACTIONS(1253), + [aux_sym_forward_x11_token1] = ACTIONS(1255), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1253), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1253), + [aux_sym_gateway_ports_token1] = ACTIONS(1253), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1253), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1253), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1253), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1253), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1253), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1253), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1253), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1253), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1253), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1253), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1253), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1253), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1253), + [aux_sym_host_key_alias_token1] = ACTIONS(1253), + [aux_sym_hostname_token1] = ACTIONS(1253), + [aux_sym_identities_only_token1] = ACTIONS(1253), + [aux_sym_identity_agent_token1] = ACTIONS(1253), + [aux_sym_identity_file_token1] = ACTIONS(1253), + [aux_sym_ignore_unknown_token1] = ACTIONS(1253), + [aux_sym_include_token1] = ACTIONS(1253), + [aux_sym_ip_qos_token1] = ACTIONS(1253), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1253), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1253), + [aux_sym_kex_algorithms_token1] = ACTIONS(1253), + [aux_sym_known_hosts_command_token1] = ACTIONS(1253), + [aux_sym_local_command_token1] = ACTIONS(1253), + [aux_sym_local_forward_token1] = ACTIONS(1253), + [aux_sym_log_level_token1] = ACTIONS(1253), + [aux_sym_log_verbose_token1] = ACTIONS(1253), + [aux_sym_macs_token1] = ACTIONS(1253), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1253), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1253), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1253), + [aux_sym_password_authentication_token1] = ACTIONS(1253), + [aux_sym_permit_local_command_token1] = ACTIONS(1253), + [aux_sym_permit_remote_open_token1] = ACTIONS(1253), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1253), + [aux_sym_port_token1] = ACTIONS(1253), + [aux_sym_preferred_authentications_token1] = ACTIONS(1253), + [aux_sym_protocol_token1] = ACTIONS(1253), + [aux_sym_proxy_command_token1] = ACTIONS(1253), + [aux_sym_proxy_jump_token1] = ACTIONS(1253), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1253), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1253), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1253), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1253), + [aux_sym_rekey_limit_token1] = ACTIONS(1253), + [aux_sym_remote_command_token1] = ACTIONS(1253), + [aux_sym_remote_forward_token1] = ACTIONS(1253), + [aux_sym_request_tty_token1] = ACTIONS(1253), + [aux_sym_required_rsa_size_token1] = ACTIONS(1253), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1253), + [aux_sym_security_key_provider_token1] = ACTIONS(1253), + [aux_sym_send_env_token1] = ACTIONS(1253), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1253), + [aux_sym_server_alive_interval_token1] = ACTIONS(1253), + [aux_sym_session_type_token1] = ACTIONS(1253), + [aux_sym_set_env_token1] = ACTIONS(1253), + [aux_sym_stdin_null_token1] = ACTIONS(1253), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1253), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1253), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1253), + [aux_sym_syslog_facility_token1] = ACTIONS(1253), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1253), + [aux_sym_keep_alive_token1] = ACTIONS(1253), + [aux_sym_tag_token1] = ACTIONS(1253), + [aux_sym_tunnel_token1] = ACTIONS(1255), + [aux_sym_tunnel_device_token1] = ACTIONS(1253), + [aux_sym_update_host_keys_token1] = ACTIONS(1253), + [aux_sym_use_keychain_token1] = ACTIONS(1253), + [aux_sym_use_roaming_token1] = ACTIONS(1253), + [aux_sym_user_token1] = ACTIONS(1255), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1253), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1253), + [aux_sym_visual_host_key_token1] = ACTIONS(1253), + [aux_sym_xauth_location_token1] = ACTIONS(1253), }, [116] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1256), - [anon_sym_DQUOTE] = ACTIONS(1258), - [aux_sym_match_token1] = ACTIONS(1254), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1254), - [aux_sym_address_family_token1] = ACTIONS(1254), - [aux_sym_batch_mode_token1] = ACTIONS(1254), - [aux_sym_bind_address_token1] = ACTIONS(1254), - [aux_sym_bind_interface_token1] = ACTIONS(1254), - [aux_sym_canonical_domains_token1] = ACTIONS(1254), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1254), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1254), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1254), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1254), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1254), - [aux_sym_certificate_file_token1] = ACTIONS(1254), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1254), - [aux_sym_channel_timeout_token1] = ACTIONS(1254), - [aux_sym_check_host_ip_token1] = ACTIONS(1254), - [aux_sym_ciphers_token1] = ACTIONS(1254), - [aux_sym_cipher_token1] = ACTIONS(1256), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1254), - [aux_sym_compression_token1] = ACTIONS(1254), - [aux_sym_connection_attempts_token1] = ACTIONS(1254), - [aux_sym_connect_timeout_token1] = ACTIONS(1254), - [aux_sym_control_master_token1] = ACTIONS(1254), - [aux_sym_control_path_token1] = ACTIONS(1254), - [aux_sym_control_persist_token1] = ACTIONS(1254), - [aux_sym_dynamic_forward_token1] = ACTIONS(1254), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1254), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1254), - [aux_sym_escape_char_token1] = ACTIONS(1254), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1254), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1254), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1254), - [aux_sym_forward_agent_token1] = ACTIONS(1254), - [aux_sym_forward_x11_token1] = ACTIONS(1256), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1254), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1254), - [aux_sym_gateway_ports_token1] = ACTIONS(1254), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1254), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1254), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1254), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1254), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1254), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1254), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1254), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1254), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1254), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1254), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1254), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1254), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1254), - [aux_sym_host_key_alias_token1] = ACTIONS(1254), - [aux_sym_hostname_token1] = ACTIONS(1254), - [aux_sym_identities_only_token1] = ACTIONS(1254), - [aux_sym_identity_agent_token1] = ACTIONS(1254), - [aux_sym_identity_file_token1] = ACTIONS(1254), - [aux_sym_ignore_unknown_token1] = ACTIONS(1254), - [aux_sym_include_token1] = ACTIONS(1254), - [aux_sym_ip_qos_token1] = ACTIONS(1254), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1254), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1254), - [aux_sym_kex_algorithms_token1] = ACTIONS(1254), - [aux_sym_known_hosts_command_token1] = ACTIONS(1254), - [aux_sym_local_command_token1] = ACTIONS(1254), - [aux_sym_local_forward_token1] = ACTIONS(1254), - [aux_sym_log_level_token1] = ACTIONS(1254), - [aux_sym_log_verbose_token1] = ACTIONS(1254), - [aux_sym_macs_token1] = ACTIONS(1254), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1254), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1254), - [aux_sym_password_authentication_token1] = ACTIONS(1254), - [aux_sym_permit_local_command_token1] = ACTIONS(1254), - [aux_sym_permit_remote_open_token1] = ACTIONS(1254), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1254), - [aux_sym_port_token1] = ACTIONS(1254), - [aux_sym_preferred_authentications_token1] = ACTIONS(1254), - [aux_sym_protocol_token1] = ACTIONS(1254), - [aux_sym_proxy_command_token1] = ACTIONS(1254), - [aux_sym_proxy_jump_token1] = ACTIONS(1254), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1254), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1254), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1254), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1254), - [aux_sym_rekey_limit_token1] = ACTIONS(1254), - [aux_sym_remote_command_token1] = ACTIONS(1254), - [aux_sym_remote_forward_token1] = ACTIONS(1254), - [aux_sym_request_tty_token1] = ACTIONS(1254), - [aux_sym_required_rsa_size_token1] = ACTIONS(1254), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1254), - [aux_sym_security_key_provider_token1] = ACTIONS(1254), - [aux_sym_send_env_token1] = ACTIONS(1254), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1254), - [aux_sym_server_alive_interval_token1] = ACTIONS(1254), - [aux_sym_session_type_token1] = ACTIONS(1254), - [aux_sym_set_env_token1] = ACTIONS(1254), - [aux_sym_stdin_null_token1] = ACTIONS(1254), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1254), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1254), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1254), - [aux_sym_syslog_facility_token1] = ACTIONS(1254), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1254), - [aux_sym_keep_alive_token1] = ACTIONS(1254), - [aux_sym_tag_token1] = ACTIONS(1254), - [aux_sym_tunnel_token1] = ACTIONS(1256), - [aux_sym_tunnel_device_token1] = ACTIONS(1254), - [aux_sym_update_host_keys_token1] = ACTIONS(1254), - [aux_sym_use_keychain_token1] = ACTIONS(1254), - [aux_sym_use_roaming_token1] = ACTIONS(1254), - [aux_sym_user_token1] = ACTIONS(1256), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1254), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1254), - [aux_sym_visual_host_key_token1] = ACTIONS(1254), - [aux_sym_xauth_location_token1] = ACTIONS(1254), + [ts_builtin_sym_end] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1261), + [anon_sym_DQUOTE] = ACTIONS(1263), + [aux_sym_match_token1] = ACTIONS(1259), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1259), + [aux_sym_address_family_token1] = ACTIONS(1259), + [aux_sym_batch_mode_token1] = ACTIONS(1259), + [aux_sym_bind_address_token1] = ACTIONS(1259), + [aux_sym_bind_interface_token1] = ACTIONS(1259), + [aux_sym_canonical_domains_token1] = ACTIONS(1259), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1259), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1259), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1259), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1259), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1259), + [aux_sym_certificate_file_token1] = ACTIONS(1259), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1259), + [aux_sym_channel_timeout_token1] = ACTIONS(1259), + [aux_sym_check_host_ip_token1] = ACTIONS(1259), + [aux_sym_ciphers_token1] = ACTIONS(1259), + [aux_sym_cipher_token1] = ACTIONS(1261), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1259), + [aux_sym_compression_token1] = ACTIONS(1259), + [aux_sym_connection_attempts_token1] = ACTIONS(1259), + [aux_sym_connect_timeout_token1] = ACTIONS(1259), + [aux_sym_control_master_token1] = ACTIONS(1259), + [aux_sym_control_path_token1] = ACTIONS(1259), + [aux_sym_control_persist_token1] = ACTIONS(1259), + [aux_sym_dynamic_forward_token1] = ACTIONS(1259), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1259), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1259), + [aux_sym_escape_char_token1] = ACTIONS(1259), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1259), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1259), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1259), + [aux_sym_forward_agent_token1] = ACTIONS(1259), + [aux_sym_forward_x11_token1] = ACTIONS(1261), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1259), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1259), + [aux_sym_gateway_ports_token1] = ACTIONS(1259), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1259), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1259), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1259), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1259), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1259), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1259), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1259), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1259), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1259), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1259), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1259), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1259), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1259), + [aux_sym_host_key_alias_token1] = ACTIONS(1259), + [aux_sym_hostname_token1] = ACTIONS(1259), + [aux_sym_identities_only_token1] = ACTIONS(1259), + [aux_sym_identity_agent_token1] = ACTIONS(1259), + [aux_sym_identity_file_token1] = ACTIONS(1259), + [aux_sym_ignore_unknown_token1] = ACTIONS(1259), + [aux_sym_include_token1] = ACTIONS(1259), + [aux_sym_ip_qos_token1] = ACTIONS(1259), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1259), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1259), + [aux_sym_kex_algorithms_token1] = ACTIONS(1259), + [aux_sym_known_hosts_command_token1] = ACTIONS(1259), + [aux_sym_local_command_token1] = ACTIONS(1259), + [aux_sym_local_forward_token1] = ACTIONS(1259), + [aux_sym_log_level_token1] = ACTIONS(1259), + [aux_sym_log_verbose_token1] = ACTIONS(1259), + [aux_sym_macs_token1] = ACTIONS(1259), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1259), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1259), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1259), + [aux_sym_password_authentication_token1] = ACTIONS(1259), + [aux_sym_permit_local_command_token1] = ACTIONS(1259), + [aux_sym_permit_remote_open_token1] = ACTIONS(1259), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1259), + [aux_sym_port_token1] = ACTIONS(1259), + [aux_sym_preferred_authentications_token1] = ACTIONS(1259), + [aux_sym_protocol_token1] = ACTIONS(1259), + [aux_sym_proxy_command_token1] = ACTIONS(1259), + [aux_sym_proxy_jump_token1] = ACTIONS(1259), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1259), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1259), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1259), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1259), + [aux_sym_rekey_limit_token1] = ACTIONS(1259), + [aux_sym_remote_command_token1] = ACTIONS(1259), + [aux_sym_remote_forward_token1] = ACTIONS(1259), + [aux_sym_request_tty_token1] = ACTIONS(1259), + [aux_sym_required_rsa_size_token1] = ACTIONS(1259), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1259), + [aux_sym_security_key_provider_token1] = ACTIONS(1259), + [aux_sym_send_env_token1] = ACTIONS(1259), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1259), + [aux_sym_server_alive_interval_token1] = ACTIONS(1259), + [aux_sym_session_type_token1] = ACTIONS(1259), + [aux_sym_set_env_token1] = ACTIONS(1259), + [aux_sym_stdin_null_token1] = ACTIONS(1259), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1259), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1259), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1259), + [aux_sym_syslog_facility_token1] = ACTIONS(1259), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1259), + [aux_sym_keep_alive_token1] = ACTIONS(1259), + [aux_sym_tag_token1] = ACTIONS(1259), + [aux_sym_tunnel_token1] = ACTIONS(1261), + [aux_sym_tunnel_device_token1] = ACTIONS(1259), + [aux_sym_update_host_keys_token1] = ACTIONS(1259), + [aux_sym_use_keychain_token1] = ACTIONS(1259), + [aux_sym_use_roaming_token1] = ACTIONS(1259), + [aux_sym_user_token1] = ACTIONS(1261), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1259), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1259), + [aux_sym_visual_host_key_token1] = ACTIONS(1259), + [aux_sym_xauth_location_token1] = ACTIONS(1259), }, [117] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1262), - [anon_sym_DQUOTE] = ACTIONS(1264), - [aux_sym_match_token1] = ACTIONS(1260), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1260), - [aux_sym_address_family_token1] = ACTIONS(1260), - [aux_sym_batch_mode_token1] = ACTIONS(1260), - [aux_sym_bind_address_token1] = ACTIONS(1260), - [aux_sym_bind_interface_token1] = ACTIONS(1260), - [aux_sym_canonical_domains_token1] = ACTIONS(1260), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1260), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1260), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1260), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1260), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1260), - [aux_sym_certificate_file_token1] = ACTIONS(1260), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1260), - [aux_sym_channel_timeout_token1] = ACTIONS(1260), - [aux_sym_check_host_ip_token1] = ACTIONS(1260), - [aux_sym_ciphers_token1] = ACTIONS(1260), - [aux_sym_cipher_token1] = ACTIONS(1262), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1260), - [aux_sym_compression_token1] = ACTIONS(1260), - [aux_sym_connection_attempts_token1] = ACTIONS(1260), - [aux_sym_connect_timeout_token1] = ACTIONS(1260), - [aux_sym_control_master_token1] = ACTIONS(1260), - [aux_sym_control_path_token1] = ACTIONS(1260), - [aux_sym_control_persist_token1] = ACTIONS(1260), - [aux_sym_dynamic_forward_token1] = ACTIONS(1260), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1260), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1260), - [aux_sym_escape_char_token1] = ACTIONS(1260), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1260), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1260), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1260), - [aux_sym_forward_agent_token1] = ACTIONS(1260), - [aux_sym_forward_x11_token1] = ACTIONS(1262), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1260), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1260), - [aux_sym_gateway_ports_token1] = ACTIONS(1260), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1260), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1260), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1260), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1260), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1260), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1260), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1260), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1260), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1260), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1260), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1260), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1260), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1260), - [aux_sym_host_key_alias_token1] = ACTIONS(1260), - [aux_sym_hostname_token1] = ACTIONS(1260), - [aux_sym_identities_only_token1] = ACTIONS(1260), - [aux_sym_identity_agent_token1] = ACTIONS(1260), - [aux_sym_identity_file_token1] = ACTIONS(1260), - [aux_sym_ignore_unknown_token1] = ACTIONS(1260), - [aux_sym_include_token1] = ACTIONS(1260), - [aux_sym_ip_qos_token1] = ACTIONS(1260), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1260), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1260), - [aux_sym_kex_algorithms_token1] = ACTIONS(1260), - [aux_sym_known_hosts_command_token1] = ACTIONS(1260), - [aux_sym_local_command_token1] = ACTIONS(1260), - [aux_sym_local_forward_token1] = ACTIONS(1260), - [aux_sym_log_level_token1] = ACTIONS(1260), - [aux_sym_log_verbose_token1] = ACTIONS(1260), - [aux_sym_macs_token1] = ACTIONS(1260), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1260), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1260), - [aux_sym_password_authentication_token1] = ACTIONS(1260), - [aux_sym_permit_local_command_token1] = ACTIONS(1260), - [aux_sym_permit_remote_open_token1] = ACTIONS(1260), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1260), - [aux_sym_port_token1] = ACTIONS(1260), - [aux_sym_preferred_authentications_token1] = ACTIONS(1260), - [aux_sym_protocol_token1] = ACTIONS(1260), - [aux_sym_proxy_command_token1] = ACTIONS(1260), - [aux_sym_proxy_jump_token1] = ACTIONS(1260), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1260), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1260), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1260), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1260), - [aux_sym_rekey_limit_token1] = ACTIONS(1260), - [aux_sym_remote_command_token1] = ACTIONS(1260), - [aux_sym_remote_forward_token1] = ACTIONS(1260), - [aux_sym_request_tty_token1] = ACTIONS(1260), - [aux_sym_required_rsa_size_token1] = ACTIONS(1260), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1260), - [aux_sym_security_key_provider_token1] = ACTIONS(1260), - [aux_sym_send_env_token1] = ACTIONS(1260), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1260), - [aux_sym_server_alive_interval_token1] = ACTIONS(1260), - [aux_sym_session_type_token1] = ACTIONS(1260), - [aux_sym_set_env_token1] = ACTIONS(1260), - [aux_sym_stdin_null_token1] = ACTIONS(1260), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1260), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1260), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1260), - [aux_sym_syslog_facility_token1] = ACTIONS(1260), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1260), - [aux_sym_keep_alive_token1] = ACTIONS(1260), - [aux_sym_tag_token1] = ACTIONS(1260), - [aux_sym_tunnel_token1] = ACTIONS(1262), - [aux_sym_tunnel_device_token1] = ACTIONS(1260), - [aux_sym_update_host_keys_token1] = ACTIONS(1260), - [aux_sym_use_keychain_token1] = ACTIONS(1260), - [aux_sym_use_roaming_token1] = ACTIONS(1260), - [aux_sym_user_token1] = ACTIONS(1262), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1260), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1260), - [aux_sym_visual_host_key_token1] = ACTIONS(1260), - [aux_sym_xauth_location_token1] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1269), + [aux_sym_match_token1] = ACTIONS(1265), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1265), + [aux_sym_address_family_token1] = ACTIONS(1265), + [aux_sym_batch_mode_token1] = ACTIONS(1265), + [aux_sym_bind_address_token1] = ACTIONS(1265), + [aux_sym_bind_interface_token1] = ACTIONS(1265), + [aux_sym_canonical_domains_token1] = ACTIONS(1265), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1265), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1265), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1265), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1265), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1265), + [aux_sym_certificate_file_token1] = ACTIONS(1265), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1265), + [aux_sym_channel_timeout_token1] = ACTIONS(1265), + [aux_sym_check_host_ip_token1] = ACTIONS(1265), + [aux_sym_ciphers_token1] = ACTIONS(1265), + [aux_sym_cipher_token1] = ACTIONS(1267), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1265), + [aux_sym_compression_token1] = ACTIONS(1265), + [aux_sym_connection_attempts_token1] = ACTIONS(1265), + [aux_sym_connect_timeout_token1] = ACTIONS(1265), + [aux_sym_control_master_token1] = ACTIONS(1265), + [aux_sym_control_path_token1] = ACTIONS(1265), + [aux_sym_control_persist_token1] = ACTIONS(1265), + [aux_sym_dynamic_forward_token1] = ACTIONS(1265), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1265), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1265), + [aux_sym_escape_char_token1] = ACTIONS(1265), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1265), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1265), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1265), + [aux_sym_forward_agent_token1] = ACTIONS(1265), + [aux_sym_forward_x11_token1] = ACTIONS(1267), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1265), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1265), + [aux_sym_gateway_ports_token1] = ACTIONS(1265), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1265), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1265), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1265), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1265), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1265), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1265), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1265), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1265), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1265), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1265), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1265), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1265), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1265), + [aux_sym_host_key_alias_token1] = ACTIONS(1265), + [aux_sym_hostname_token1] = ACTIONS(1265), + [aux_sym_identities_only_token1] = ACTIONS(1265), + [aux_sym_identity_agent_token1] = ACTIONS(1265), + [aux_sym_identity_file_token1] = ACTIONS(1265), + [aux_sym_ignore_unknown_token1] = ACTIONS(1265), + [aux_sym_include_token1] = ACTIONS(1265), + [aux_sym_ip_qos_token1] = ACTIONS(1265), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1265), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1265), + [aux_sym_kex_algorithms_token1] = ACTIONS(1265), + [aux_sym_known_hosts_command_token1] = ACTIONS(1265), + [aux_sym_local_command_token1] = ACTIONS(1265), + [aux_sym_local_forward_token1] = ACTIONS(1265), + [aux_sym_log_level_token1] = ACTIONS(1265), + [aux_sym_log_verbose_token1] = ACTIONS(1265), + [aux_sym_macs_token1] = ACTIONS(1265), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1265), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1265), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1265), + [aux_sym_password_authentication_token1] = ACTIONS(1265), + [aux_sym_permit_local_command_token1] = ACTIONS(1265), + [aux_sym_permit_remote_open_token1] = ACTIONS(1265), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1265), + [aux_sym_port_token1] = ACTIONS(1265), + [aux_sym_preferred_authentications_token1] = ACTIONS(1265), + [aux_sym_protocol_token1] = ACTIONS(1265), + [aux_sym_proxy_command_token1] = ACTIONS(1265), + [aux_sym_proxy_jump_token1] = ACTIONS(1265), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1265), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1265), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1265), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1265), + [aux_sym_rekey_limit_token1] = ACTIONS(1265), + [aux_sym_remote_command_token1] = ACTIONS(1265), + [aux_sym_remote_forward_token1] = ACTIONS(1265), + [aux_sym_request_tty_token1] = ACTIONS(1265), + [aux_sym_required_rsa_size_token1] = ACTIONS(1265), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1265), + [aux_sym_security_key_provider_token1] = ACTIONS(1265), + [aux_sym_send_env_token1] = ACTIONS(1265), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1265), + [aux_sym_server_alive_interval_token1] = ACTIONS(1265), + [aux_sym_session_type_token1] = ACTIONS(1265), + [aux_sym_set_env_token1] = ACTIONS(1265), + [aux_sym_stdin_null_token1] = ACTIONS(1265), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1265), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1265), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1265), + [aux_sym_syslog_facility_token1] = ACTIONS(1265), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1265), + [aux_sym_keep_alive_token1] = ACTIONS(1265), + [aux_sym_tag_token1] = ACTIONS(1265), + [aux_sym_tunnel_token1] = ACTIONS(1267), + [aux_sym_tunnel_device_token1] = ACTIONS(1265), + [aux_sym_update_host_keys_token1] = ACTIONS(1265), + [aux_sym_use_keychain_token1] = ACTIONS(1265), + [aux_sym_use_roaming_token1] = ACTIONS(1265), + [aux_sym_user_token1] = ACTIONS(1267), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1265), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1265), + [aux_sym_visual_host_key_token1] = ACTIONS(1265), + [aux_sym_xauth_location_token1] = ACTIONS(1265), }, [118] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1270), - [aux_sym_match_token1] = ACTIONS(1266), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1266), - [aux_sym_address_family_token1] = ACTIONS(1266), - [aux_sym_batch_mode_token1] = ACTIONS(1266), - [aux_sym_bind_address_token1] = ACTIONS(1266), - [aux_sym_bind_interface_token1] = ACTIONS(1266), - [aux_sym_canonical_domains_token1] = ACTIONS(1266), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1266), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1266), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1266), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1266), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1266), - [aux_sym_certificate_file_token1] = ACTIONS(1266), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1266), - [aux_sym_channel_timeout_token1] = ACTIONS(1266), - [aux_sym_check_host_ip_token1] = ACTIONS(1266), - [aux_sym_ciphers_token1] = ACTIONS(1266), - [aux_sym_cipher_token1] = ACTIONS(1268), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1266), - [aux_sym_compression_token1] = ACTIONS(1266), - [aux_sym_connection_attempts_token1] = ACTIONS(1266), - [aux_sym_connect_timeout_token1] = ACTIONS(1266), - [aux_sym_control_master_token1] = ACTIONS(1266), - [aux_sym_control_path_token1] = ACTIONS(1266), - [aux_sym_control_persist_token1] = ACTIONS(1266), - [aux_sym_dynamic_forward_token1] = ACTIONS(1266), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1266), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1266), - [aux_sym_escape_char_token1] = ACTIONS(1266), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1266), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1266), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1266), - [aux_sym_forward_agent_token1] = ACTIONS(1266), - [aux_sym_forward_x11_token1] = ACTIONS(1268), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1266), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1266), - [aux_sym_gateway_ports_token1] = ACTIONS(1266), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1266), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1266), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1266), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1266), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1266), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1266), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1266), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1266), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1266), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1266), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1266), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1266), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1266), - [aux_sym_host_key_alias_token1] = ACTIONS(1266), - [aux_sym_hostname_token1] = ACTIONS(1266), - [aux_sym_identities_only_token1] = ACTIONS(1266), - [aux_sym_identity_agent_token1] = ACTIONS(1266), - [aux_sym_identity_file_token1] = ACTIONS(1266), - [aux_sym_ignore_unknown_token1] = ACTIONS(1266), - [aux_sym_include_token1] = ACTIONS(1266), - [aux_sym_ip_qos_token1] = ACTIONS(1266), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1266), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1266), - [aux_sym_kex_algorithms_token1] = ACTIONS(1266), - [aux_sym_known_hosts_command_token1] = ACTIONS(1266), - [aux_sym_local_command_token1] = ACTIONS(1266), - [aux_sym_local_forward_token1] = ACTIONS(1266), - [aux_sym_log_level_token1] = ACTIONS(1266), - [aux_sym_log_verbose_token1] = ACTIONS(1266), - [aux_sym_macs_token1] = ACTIONS(1266), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1266), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1266), - [aux_sym_password_authentication_token1] = ACTIONS(1266), - [aux_sym_permit_local_command_token1] = ACTIONS(1266), - [aux_sym_permit_remote_open_token1] = ACTIONS(1266), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1266), - [aux_sym_port_token1] = ACTIONS(1266), - [aux_sym_preferred_authentications_token1] = ACTIONS(1266), - [aux_sym_protocol_token1] = ACTIONS(1266), - [aux_sym_proxy_command_token1] = ACTIONS(1266), - [aux_sym_proxy_jump_token1] = ACTIONS(1266), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1266), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1266), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1266), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1266), - [aux_sym_rekey_limit_token1] = ACTIONS(1266), - [aux_sym_remote_command_token1] = ACTIONS(1266), - [aux_sym_remote_forward_token1] = ACTIONS(1266), - [aux_sym_request_tty_token1] = ACTIONS(1266), - [aux_sym_required_rsa_size_token1] = ACTIONS(1266), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1266), - [aux_sym_security_key_provider_token1] = ACTIONS(1266), - [aux_sym_send_env_token1] = ACTIONS(1266), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1266), - [aux_sym_server_alive_interval_token1] = ACTIONS(1266), - [aux_sym_session_type_token1] = ACTIONS(1266), - [aux_sym_set_env_token1] = ACTIONS(1266), - [aux_sym_stdin_null_token1] = ACTIONS(1266), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1266), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1266), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1266), - [aux_sym_syslog_facility_token1] = ACTIONS(1266), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1266), - [aux_sym_keep_alive_token1] = ACTIONS(1266), - [aux_sym_tag_token1] = ACTIONS(1266), - [aux_sym_tunnel_token1] = ACTIONS(1268), - [aux_sym_tunnel_device_token1] = ACTIONS(1266), - [aux_sym_update_host_keys_token1] = ACTIONS(1266), - [aux_sym_use_keychain_token1] = ACTIONS(1266), - [aux_sym_use_roaming_token1] = ACTIONS(1266), - [aux_sym_user_token1] = ACTIONS(1268), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1266), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1266), - [aux_sym_visual_host_key_token1] = ACTIONS(1266), - [aux_sym_xauth_location_token1] = ACTIONS(1266), + [ts_builtin_sym_end] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1273), + [anon_sym_DQUOTE] = ACTIONS(1275), + [aux_sym_match_token1] = ACTIONS(1271), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1271), + [aux_sym_address_family_token1] = ACTIONS(1271), + [aux_sym_batch_mode_token1] = ACTIONS(1271), + [aux_sym_bind_address_token1] = ACTIONS(1271), + [aux_sym_bind_interface_token1] = ACTIONS(1271), + [aux_sym_canonical_domains_token1] = ACTIONS(1271), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1271), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1271), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1271), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1271), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1271), + [aux_sym_certificate_file_token1] = ACTIONS(1271), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1271), + [aux_sym_channel_timeout_token1] = ACTIONS(1271), + [aux_sym_check_host_ip_token1] = ACTIONS(1271), + [aux_sym_ciphers_token1] = ACTIONS(1271), + [aux_sym_cipher_token1] = ACTIONS(1273), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1271), + [aux_sym_compression_token1] = ACTIONS(1271), + [aux_sym_connection_attempts_token1] = ACTIONS(1271), + [aux_sym_connect_timeout_token1] = ACTIONS(1271), + [aux_sym_control_master_token1] = ACTIONS(1271), + [aux_sym_control_path_token1] = ACTIONS(1271), + [aux_sym_control_persist_token1] = ACTIONS(1271), + [aux_sym_dynamic_forward_token1] = ACTIONS(1271), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1271), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1271), + [aux_sym_escape_char_token1] = ACTIONS(1271), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1271), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1271), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1271), + [aux_sym_forward_agent_token1] = ACTIONS(1271), + [aux_sym_forward_x11_token1] = ACTIONS(1273), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1271), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1271), + [aux_sym_gateway_ports_token1] = ACTIONS(1271), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1271), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1271), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1271), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1271), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1271), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1271), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1271), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1271), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1271), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1271), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1271), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1271), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1271), + [aux_sym_host_key_alias_token1] = ACTIONS(1271), + [aux_sym_hostname_token1] = ACTIONS(1271), + [aux_sym_identities_only_token1] = ACTIONS(1271), + [aux_sym_identity_agent_token1] = ACTIONS(1271), + [aux_sym_identity_file_token1] = ACTIONS(1271), + [aux_sym_ignore_unknown_token1] = ACTIONS(1271), + [aux_sym_include_token1] = ACTIONS(1271), + [aux_sym_ip_qos_token1] = ACTIONS(1271), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1271), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1271), + [aux_sym_kex_algorithms_token1] = ACTIONS(1271), + [aux_sym_known_hosts_command_token1] = ACTIONS(1271), + [aux_sym_local_command_token1] = ACTIONS(1271), + [aux_sym_local_forward_token1] = ACTIONS(1271), + [aux_sym_log_level_token1] = ACTIONS(1271), + [aux_sym_log_verbose_token1] = ACTIONS(1271), + [aux_sym_macs_token1] = ACTIONS(1271), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1271), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1271), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1271), + [aux_sym_password_authentication_token1] = ACTIONS(1271), + [aux_sym_permit_local_command_token1] = ACTIONS(1271), + [aux_sym_permit_remote_open_token1] = ACTIONS(1271), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1271), + [aux_sym_port_token1] = ACTIONS(1271), + [aux_sym_preferred_authentications_token1] = ACTIONS(1271), + [aux_sym_protocol_token1] = ACTIONS(1271), + [aux_sym_proxy_command_token1] = ACTIONS(1271), + [aux_sym_proxy_jump_token1] = ACTIONS(1271), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1271), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1271), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1271), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1271), + [aux_sym_rekey_limit_token1] = ACTIONS(1271), + [aux_sym_remote_command_token1] = ACTIONS(1271), + [aux_sym_remote_forward_token1] = ACTIONS(1271), + [aux_sym_request_tty_token1] = ACTIONS(1271), + [aux_sym_required_rsa_size_token1] = ACTIONS(1271), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1271), + [aux_sym_security_key_provider_token1] = ACTIONS(1271), + [aux_sym_send_env_token1] = ACTIONS(1271), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1271), + [aux_sym_server_alive_interval_token1] = ACTIONS(1271), + [aux_sym_session_type_token1] = ACTIONS(1271), + [aux_sym_set_env_token1] = ACTIONS(1271), + [aux_sym_stdin_null_token1] = ACTIONS(1271), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1271), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1271), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1271), + [aux_sym_syslog_facility_token1] = ACTIONS(1271), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1271), + [aux_sym_keep_alive_token1] = ACTIONS(1271), + [aux_sym_tag_token1] = ACTIONS(1271), + [aux_sym_tunnel_token1] = ACTIONS(1273), + [aux_sym_tunnel_device_token1] = ACTIONS(1271), + [aux_sym_update_host_keys_token1] = ACTIONS(1271), + [aux_sym_use_keychain_token1] = ACTIONS(1271), + [aux_sym_use_roaming_token1] = ACTIONS(1271), + [aux_sym_user_token1] = ACTIONS(1273), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1271), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1271), + [aux_sym_visual_host_key_token1] = ACTIONS(1271), + [aux_sym_xauth_location_token1] = ACTIONS(1271), }, [119] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1276), - [aux_sym_match_token1] = ACTIONS(1272), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1272), - [aux_sym_address_family_token1] = ACTIONS(1272), - [aux_sym_batch_mode_token1] = ACTIONS(1272), - [aux_sym_bind_address_token1] = ACTIONS(1272), - [aux_sym_bind_interface_token1] = ACTIONS(1272), - [aux_sym_canonical_domains_token1] = ACTIONS(1272), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1272), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1272), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1272), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1272), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1272), - [aux_sym_certificate_file_token1] = ACTIONS(1272), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1272), - [aux_sym_channel_timeout_token1] = ACTIONS(1272), - [aux_sym_check_host_ip_token1] = ACTIONS(1272), - [aux_sym_ciphers_token1] = ACTIONS(1272), - [aux_sym_cipher_token1] = ACTIONS(1274), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1272), - [aux_sym_compression_token1] = ACTIONS(1272), - [aux_sym_connection_attempts_token1] = ACTIONS(1272), - [aux_sym_connect_timeout_token1] = ACTIONS(1272), - [aux_sym_control_master_token1] = ACTIONS(1272), - [aux_sym_control_path_token1] = ACTIONS(1272), - [aux_sym_control_persist_token1] = ACTIONS(1272), - [aux_sym_dynamic_forward_token1] = ACTIONS(1272), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1272), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1272), - [aux_sym_escape_char_token1] = ACTIONS(1272), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1272), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1272), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1272), - [aux_sym_forward_agent_token1] = ACTIONS(1272), - [aux_sym_forward_x11_token1] = ACTIONS(1274), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1272), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1272), - [aux_sym_gateway_ports_token1] = ACTIONS(1272), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1272), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1272), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1272), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1272), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1272), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1272), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1272), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1272), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1272), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1272), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1272), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1272), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1272), - [aux_sym_host_key_alias_token1] = ACTIONS(1272), - [aux_sym_hostname_token1] = ACTIONS(1272), - [aux_sym_identities_only_token1] = ACTIONS(1272), - [aux_sym_identity_agent_token1] = ACTIONS(1272), - [aux_sym_identity_file_token1] = ACTIONS(1272), - [aux_sym_ignore_unknown_token1] = ACTIONS(1272), - [aux_sym_include_token1] = ACTIONS(1272), - [aux_sym_ip_qos_token1] = ACTIONS(1272), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1272), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1272), - [aux_sym_kex_algorithms_token1] = ACTIONS(1272), - [aux_sym_known_hosts_command_token1] = ACTIONS(1272), - [aux_sym_local_command_token1] = ACTIONS(1272), - [aux_sym_local_forward_token1] = ACTIONS(1272), - [aux_sym_log_level_token1] = ACTIONS(1272), - [aux_sym_log_verbose_token1] = ACTIONS(1272), - [aux_sym_macs_token1] = ACTIONS(1272), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1272), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1272), - [aux_sym_password_authentication_token1] = ACTIONS(1272), - [aux_sym_permit_local_command_token1] = ACTIONS(1272), - [aux_sym_permit_remote_open_token1] = ACTIONS(1272), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1272), - [aux_sym_port_token1] = ACTIONS(1272), - [aux_sym_preferred_authentications_token1] = ACTIONS(1272), - [aux_sym_protocol_token1] = ACTIONS(1272), - [aux_sym_proxy_command_token1] = ACTIONS(1272), - [aux_sym_proxy_jump_token1] = ACTIONS(1272), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1272), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1272), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1272), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1272), - [aux_sym_rekey_limit_token1] = ACTIONS(1272), - [aux_sym_remote_command_token1] = ACTIONS(1272), - [aux_sym_remote_forward_token1] = ACTIONS(1272), - [aux_sym_request_tty_token1] = ACTIONS(1272), - [aux_sym_required_rsa_size_token1] = ACTIONS(1272), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1272), - [aux_sym_security_key_provider_token1] = ACTIONS(1272), - [aux_sym_send_env_token1] = ACTIONS(1272), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1272), - [aux_sym_server_alive_interval_token1] = ACTIONS(1272), - [aux_sym_session_type_token1] = ACTIONS(1272), - [aux_sym_set_env_token1] = ACTIONS(1272), - [aux_sym_stdin_null_token1] = ACTIONS(1272), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1272), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1272), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1272), - [aux_sym_syslog_facility_token1] = ACTIONS(1272), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1272), - [aux_sym_keep_alive_token1] = ACTIONS(1272), - [aux_sym_tag_token1] = ACTIONS(1272), - [aux_sym_tunnel_token1] = ACTIONS(1274), - [aux_sym_tunnel_device_token1] = ACTIONS(1272), - [aux_sym_update_host_keys_token1] = ACTIONS(1272), - [aux_sym_use_keychain_token1] = ACTIONS(1272), - [aux_sym_use_roaming_token1] = ACTIONS(1272), - [aux_sym_user_token1] = ACTIONS(1274), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1272), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1272), - [aux_sym_visual_host_key_token1] = ACTIONS(1272), - [aux_sym_xauth_location_token1] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1281), + [aux_sym_match_token1] = ACTIONS(1277), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1277), + [aux_sym_address_family_token1] = ACTIONS(1277), + [aux_sym_batch_mode_token1] = ACTIONS(1277), + [aux_sym_bind_address_token1] = ACTIONS(1277), + [aux_sym_bind_interface_token1] = ACTIONS(1277), + [aux_sym_canonical_domains_token1] = ACTIONS(1277), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1277), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1277), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1277), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1277), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1277), + [aux_sym_certificate_file_token1] = ACTIONS(1277), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1277), + [aux_sym_channel_timeout_token1] = ACTIONS(1277), + [aux_sym_check_host_ip_token1] = ACTIONS(1277), + [aux_sym_ciphers_token1] = ACTIONS(1277), + [aux_sym_cipher_token1] = ACTIONS(1279), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1277), + [aux_sym_compression_token1] = ACTIONS(1277), + [aux_sym_connection_attempts_token1] = ACTIONS(1277), + [aux_sym_connect_timeout_token1] = ACTIONS(1277), + [aux_sym_control_master_token1] = ACTIONS(1277), + [aux_sym_control_path_token1] = ACTIONS(1277), + [aux_sym_control_persist_token1] = ACTIONS(1277), + [aux_sym_dynamic_forward_token1] = ACTIONS(1277), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1277), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1277), + [aux_sym_escape_char_token1] = ACTIONS(1277), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1277), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1277), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1277), + [aux_sym_forward_agent_token1] = ACTIONS(1277), + [aux_sym_forward_x11_token1] = ACTIONS(1279), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1277), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1277), + [aux_sym_gateway_ports_token1] = ACTIONS(1277), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1277), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1277), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1277), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1277), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1277), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1277), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1277), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1277), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1277), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1277), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1277), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1277), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1277), + [aux_sym_host_key_alias_token1] = ACTIONS(1277), + [aux_sym_hostname_token1] = ACTIONS(1277), + [aux_sym_identities_only_token1] = ACTIONS(1277), + [aux_sym_identity_agent_token1] = ACTIONS(1277), + [aux_sym_identity_file_token1] = ACTIONS(1277), + [aux_sym_ignore_unknown_token1] = ACTIONS(1277), + [aux_sym_include_token1] = ACTIONS(1277), + [aux_sym_ip_qos_token1] = ACTIONS(1277), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1277), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1277), + [aux_sym_kex_algorithms_token1] = ACTIONS(1277), + [aux_sym_known_hosts_command_token1] = ACTIONS(1277), + [aux_sym_local_command_token1] = ACTIONS(1277), + [aux_sym_local_forward_token1] = ACTIONS(1277), + [aux_sym_log_level_token1] = ACTIONS(1277), + [aux_sym_log_verbose_token1] = ACTIONS(1277), + [aux_sym_macs_token1] = ACTIONS(1277), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1277), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1277), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1277), + [aux_sym_password_authentication_token1] = ACTIONS(1277), + [aux_sym_permit_local_command_token1] = ACTIONS(1277), + [aux_sym_permit_remote_open_token1] = ACTIONS(1277), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1277), + [aux_sym_port_token1] = ACTIONS(1277), + [aux_sym_preferred_authentications_token1] = ACTIONS(1277), + [aux_sym_protocol_token1] = ACTIONS(1277), + [aux_sym_proxy_command_token1] = ACTIONS(1277), + [aux_sym_proxy_jump_token1] = ACTIONS(1277), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1277), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1277), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1277), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1277), + [aux_sym_rekey_limit_token1] = ACTIONS(1277), + [aux_sym_remote_command_token1] = ACTIONS(1277), + [aux_sym_remote_forward_token1] = ACTIONS(1277), + [aux_sym_request_tty_token1] = ACTIONS(1277), + [aux_sym_required_rsa_size_token1] = ACTIONS(1277), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1277), + [aux_sym_security_key_provider_token1] = ACTIONS(1277), + [aux_sym_send_env_token1] = ACTIONS(1277), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1277), + [aux_sym_server_alive_interval_token1] = ACTIONS(1277), + [aux_sym_session_type_token1] = ACTIONS(1277), + [aux_sym_set_env_token1] = ACTIONS(1277), + [aux_sym_stdin_null_token1] = ACTIONS(1277), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1277), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1277), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1277), + [aux_sym_syslog_facility_token1] = ACTIONS(1277), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1277), + [aux_sym_keep_alive_token1] = ACTIONS(1277), + [aux_sym_tag_token1] = ACTIONS(1277), + [aux_sym_tunnel_token1] = ACTIONS(1279), + [aux_sym_tunnel_device_token1] = ACTIONS(1277), + [aux_sym_update_host_keys_token1] = ACTIONS(1277), + [aux_sym_use_keychain_token1] = ACTIONS(1277), + [aux_sym_use_roaming_token1] = ACTIONS(1277), + [aux_sym_user_token1] = ACTIONS(1279), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1277), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1277), + [aux_sym_visual_host_key_token1] = ACTIONS(1277), + [aux_sym_xauth_location_token1] = ACTIONS(1277), }, [120] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1280), - [anon_sym_DQUOTE] = ACTIONS(1282), - [aux_sym_match_token1] = ACTIONS(1278), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1278), - [aux_sym_address_family_token1] = ACTIONS(1278), - [aux_sym_batch_mode_token1] = ACTIONS(1278), - [aux_sym_bind_address_token1] = ACTIONS(1278), - [aux_sym_bind_interface_token1] = ACTIONS(1278), - [aux_sym_canonical_domains_token1] = ACTIONS(1278), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1278), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1278), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1278), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1278), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1278), - [aux_sym_certificate_file_token1] = ACTIONS(1278), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1278), - [aux_sym_channel_timeout_token1] = ACTIONS(1278), - [aux_sym_check_host_ip_token1] = ACTIONS(1278), - [aux_sym_ciphers_token1] = ACTIONS(1278), - [aux_sym_cipher_token1] = ACTIONS(1280), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1278), - [aux_sym_compression_token1] = ACTIONS(1278), - [aux_sym_connection_attempts_token1] = ACTIONS(1278), - [aux_sym_connect_timeout_token1] = ACTIONS(1278), - [aux_sym_control_master_token1] = ACTIONS(1278), - [aux_sym_control_path_token1] = ACTIONS(1278), - [aux_sym_control_persist_token1] = ACTIONS(1278), - [aux_sym_dynamic_forward_token1] = ACTIONS(1278), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1278), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1278), - [aux_sym_escape_char_token1] = ACTIONS(1278), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1278), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1278), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1278), - [aux_sym_forward_agent_token1] = ACTIONS(1278), - [aux_sym_forward_x11_token1] = ACTIONS(1280), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1278), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1278), - [aux_sym_gateway_ports_token1] = ACTIONS(1278), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1278), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1278), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1278), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1278), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1278), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1278), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1278), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1278), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1278), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1278), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1278), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1278), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1278), - [aux_sym_host_key_alias_token1] = ACTIONS(1278), - [aux_sym_hostname_token1] = ACTIONS(1278), - [aux_sym_identities_only_token1] = ACTIONS(1278), - [aux_sym_identity_agent_token1] = ACTIONS(1278), - [aux_sym_identity_file_token1] = ACTIONS(1278), - [aux_sym_ignore_unknown_token1] = ACTIONS(1278), - [aux_sym_include_token1] = ACTIONS(1278), - [aux_sym_ip_qos_token1] = ACTIONS(1278), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1278), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1278), - [aux_sym_kex_algorithms_token1] = ACTIONS(1278), - [aux_sym_known_hosts_command_token1] = ACTIONS(1278), - [aux_sym_local_command_token1] = ACTIONS(1278), - [aux_sym_local_forward_token1] = ACTIONS(1278), - [aux_sym_log_level_token1] = ACTIONS(1278), - [aux_sym_log_verbose_token1] = ACTIONS(1278), - [aux_sym_macs_token1] = ACTIONS(1278), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1278), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1278), - [aux_sym_password_authentication_token1] = ACTIONS(1278), - [aux_sym_permit_local_command_token1] = ACTIONS(1278), - [aux_sym_permit_remote_open_token1] = ACTIONS(1278), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1278), - [aux_sym_port_token1] = ACTIONS(1278), - [aux_sym_preferred_authentications_token1] = ACTIONS(1278), - [aux_sym_protocol_token1] = ACTIONS(1278), - [aux_sym_proxy_command_token1] = ACTIONS(1278), - [aux_sym_proxy_jump_token1] = ACTIONS(1278), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1278), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1278), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1278), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1278), - [aux_sym_rekey_limit_token1] = ACTIONS(1278), - [aux_sym_remote_command_token1] = ACTIONS(1278), - [aux_sym_remote_forward_token1] = ACTIONS(1278), - [aux_sym_request_tty_token1] = ACTIONS(1278), - [aux_sym_required_rsa_size_token1] = ACTIONS(1278), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1278), - [aux_sym_security_key_provider_token1] = ACTIONS(1278), - [aux_sym_send_env_token1] = ACTIONS(1278), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1278), - [aux_sym_server_alive_interval_token1] = ACTIONS(1278), - [aux_sym_session_type_token1] = ACTIONS(1278), - [aux_sym_set_env_token1] = ACTIONS(1278), - [aux_sym_stdin_null_token1] = ACTIONS(1278), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1278), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1278), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1278), - [aux_sym_syslog_facility_token1] = ACTIONS(1278), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1278), - [aux_sym_keep_alive_token1] = ACTIONS(1278), - [aux_sym_tag_token1] = ACTIONS(1278), - [aux_sym_tunnel_token1] = ACTIONS(1280), - [aux_sym_tunnel_device_token1] = ACTIONS(1278), - [aux_sym_update_host_keys_token1] = ACTIONS(1278), - [aux_sym_use_keychain_token1] = ACTIONS(1278), - [aux_sym_use_roaming_token1] = ACTIONS(1278), - [aux_sym_user_token1] = ACTIONS(1280), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1278), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1278), - [aux_sym_visual_host_key_token1] = ACTIONS(1278), - [aux_sym_xauth_location_token1] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [aux_sym_match_token1] = ACTIONS(1283), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1283), + [aux_sym_address_family_token1] = ACTIONS(1283), + [aux_sym_batch_mode_token1] = ACTIONS(1283), + [aux_sym_bind_address_token1] = ACTIONS(1283), + [aux_sym_bind_interface_token1] = ACTIONS(1283), + [aux_sym_canonical_domains_token1] = ACTIONS(1283), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1283), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1283), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1283), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1283), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1283), + [aux_sym_certificate_file_token1] = ACTIONS(1283), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1283), + [aux_sym_channel_timeout_token1] = ACTIONS(1283), + [aux_sym_check_host_ip_token1] = ACTIONS(1283), + [aux_sym_ciphers_token1] = ACTIONS(1283), + [aux_sym_cipher_token1] = ACTIONS(1285), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1283), + [aux_sym_compression_token1] = ACTIONS(1283), + [aux_sym_connection_attempts_token1] = ACTIONS(1283), + [aux_sym_connect_timeout_token1] = ACTIONS(1283), + [aux_sym_control_master_token1] = ACTIONS(1283), + [aux_sym_control_path_token1] = ACTIONS(1283), + [aux_sym_control_persist_token1] = ACTIONS(1283), + [aux_sym_dynamic_forward_token1] = ACTIONS(1283), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1283), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1283), + [aux_sym_escape_char_token1] = ACTIONS(1283), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1283), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1283), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1283), + [aux_sym_forward_agent_token1] = ACTIONS(1283), + [aux_sym_forward_x11_token1] = ACTIONS(1285), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1283), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1283), + [aux_sym_gateway_ports_token1] = ACTIONS(1283), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1283), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1283), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1283), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1283), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1283), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1283), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1283), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1283), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1283), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1283), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1283), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1283), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1283), + [aux_sym_host_key_alias_token1] = ACTIONS(1283), + [aux_sym_hostname_token1] = ACTIONS(1283), + [aux_sym_identities_only_token1] = ACTIONS(1283), + [aux_sym_identity_agent_token1] = ACTIONS(1283), + [aux_sym_identity_file_token1] = ACTIONS(1283), + [aux_sym_ignore_unknown_token1] = ACTIONS(1283), + [aux_sym_include_token1] = ACTIONS(1283), + [aux_sym_ip_qos_token1] = ACTIONS(1283), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1283), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1283), + [aux_sym_kex_algorithms_token1] = ACTIONS(1283), + [aux_sym_known_hosts_command_token1] = ACTIONS(1283), + [aux_sym_local_command_token1] = ACTIONS(1283), + [aux_sym_local_forward_token1] = ACTIONS(1283), + [aux_sym_log_level_token1] = ACTIONS(1283), + [aux_sym_log_verbose_token1] = ACTIONS(1283), + [aux_sym_macs_token1] = ACTIONS(1283), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1283), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1283), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1283), + [aux_sym_password_authentication_token1] = ACTIONS(1283), + [aux_sym_permit_local_command_token1] = ACTIONS(1283), + [aux_sym_permit_remote_open_token1] = ACTIONS(1283), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1283), + [aux_sym_port_token1] = ACTIONS(1283), + [aux_sym_preferred_authentications_token1] = ACTIONS(1283), + [aux_sym_protocol_token1] = ACTIONS(1283), + [aux_sym_proxy_command_token1] = ACTIONS(1283), + [aux_sym_proxy_jump_token1] = ACTIONS(1283), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1283), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1283), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1283), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1283), + [aux_sym_rekey_limit_token1] = ACTIONS(1283), + [aux_sym_remote_command_token1] = ACTIONS(1283), + [aux_sym_remote_forward_token1] = ACTIONS(1283), + [aux_sym_request_tty_token1] = ACTIONS(1283), + [aux_sym_required_rsa_size_token1] = ACTIONS(1283), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1283), + [aux_sym_security_key_provider_token1] = ACTIONS(1283), + [aux_sym_send_env_token1] = ACTIONS(1283), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1283), + [aux_sym_server_alive_interval_token1] = ACTIONS(1283), + [aux_sym_session_type_token1] = ACTIONS(1283), + [aux_sym_set_env_token1] = ACTIONS(1283), + [aux_sym_stdin_null_token1] = ACTIONS(1283), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1283), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1283), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1283), + [aux_sym_syslog_facility_token1] = ACTIONS(1283), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1283), + [aux_sym_keep_alive_token1] = ACTIONS(1283), + [aux_sym_tag_token1] = ACTIONS(1283), + [aux_sym_tunnel_token1] = ACTIONS(1285), + [aux_sym_tunnel_device_token1] = ACTIONS(1283), + [aux_sym_update_host_keys_token1] = ACTIONS(1283), + [aux_sym_use_keychain_token1] = ACTIONS(1283), + [aux_sym_use_roaming_token1] = ACTIONS(1283), + [aux_sym_user_token1] = ACTIONS(1285), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1283), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1283), + [aux_sym_visual_host_key_token1] = ACTIONS(1283), + [aux_sym_xauth_location_token1] = ACTIONS(1283), }, [121] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1288), - [aux_sym_match_token1] = ACTIONS(1284), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1284), - [aux_sym_address_family_token1] = ACTIONS(1284), - [aux_sym_batch_mode_token1] = ACTIONS(1284), - [aux_sym_bind_address_token1] = ACTIONS(1284), - [aux_sym_bind_interface_token1] = ACTIONS(1284), - [aux_sym_canonical_domains_token1] = ACTIONS(1284), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1284), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1284), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1284), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1284), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1284), - [aux_sym_certificate_file_token1] = ACTIONS(1284), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1284), - [aux_sym_channel_timeout_token1] = ACTIONS(1284), - [aux_sym_check_host_ip_token1] = ACTIONS(1284), - [aux_sym_ciphers_token1] = ACTIONS(1284), - [aux_sym_cipher_token1] = ACTIONS(1286), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1284), - [aux_sym_compression_token1] = ACTIONS(1284), - [aux_sym_connection_attempts_token1] = ACTIONS(1284), - [aux_sym_connect_timeout_token1] = ACTIONS(1284), - [aux_sym_control_master_token1] = ACTIONS(1284), - [aux_sym_control_path_token1] = ACTIONS(1284), - [aux_sym_control_persist_token1] = ACTIONS(1284), - [aux_sym_dynamic_forward_token1] = ACTIONS(1284), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1284), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1284), - [aux_sym_escape_char_token1] = ACTIONS(1284), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1284), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1284), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1284), - [aux_sym_forward_agent_token1] = ACTIONS(1284), - [aux_sym_forward_x11_token1] = ACTIONS(1286), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1284), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1284), - [aux_sym_gateway_ports_token1] = ACTIONS(1284), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1284), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1284), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1284), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1284), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1284), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1284), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1284), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1284), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1284), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1284), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1284), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1284), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1284), - [aux_sym_host_key_alias_token1] = ACTIONS(1284), - [aux_sym_hostname_token1] = ACTIONS(1284), - [aux_sym_identities_only_token1] = ACTIONS(1284), - [aux_sym_identity_agent_token1] = ACTIONS(1284), - [aux_sym_identity_file_token1] = ACTIONS(1284), - [aux_sym_ignore_unknown_token1] = ACTIONS(1284), - [aux_sym_include_token1] = ACTIONS(1284), - [aux_sym_ip_qos_token1] = ACTIONS(1284), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1284), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1284), - [aux_sym_kex_algorithms_token1] = ACTIONS(1284), - [aux_sym_known_hosts_command_token1] = ACTIONS(1284), - [aux_sym_local_command_token1] = ACTIONS(1284), - [aux_sym_local_forward_token1] = ACTIONS(1284), - [aux_sym_log_level_token1] = ACTIONS(1284), - [aux_sym_log_verbose_token1] = ACTIONS(1284), - [aux_sym_macs_token1] = ACTIONS(1284), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1284), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1284), - [aux_sym_password_authentication_token1] = ACTIONS(1284), - [aux_sym_permit_local_command_token1] = ACTIONS(1284), - [aux_sym_permit_remote_open_token1] = ACTIONS(1284), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1284), - [aux_sym_port_token1] = ACTIONS(1284), - [aux_sym_preferred_authentications_token1] = ACTIONS(1284), - [aux_sym_protocol_token1] = ACTIONS(1284), - [aux_sym_proxy_command_token1] = ACTIONS(1284), - [aux_sym_proxy_jump_token1] = ACTIONS(1284), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1284), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1284), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1284), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1284), - [aux_sym_rekey_limit_token1] = ACTIONS(1284), - [aux_sym_remote_command_token1] = ACTIONS(1284), - [aux_sym_remote_forward_token1] = ACTIONS(1284), - [aux_sym_request_tty_token1] = ACTIONS(1284), - [aux_sym_required_rsa_size_token1] = ACTIONS(1284), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1284), - [aux_sym_security_key_provider_token1] = ACTIONS(1284), - [aux_sym_send_env_token1] = ACTIONS(1284), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1284), - [aux_sym_server_alive_interval_token1] = ACTIONS(1284), - [aux_sym_session_type_token1] = ACTIONS(1284), - [aux_sym_set_env_token1] = ACTIONS(1284), - [aux_sym_stdin_null_token1] = ACTIONS(1284), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1284), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1284), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1284), - [aux_sym_syslog_facility_token1] = ACTIONS(1284), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1284), - [aux_sym_keep_alive_token1] = ACTIONS(1284), - [aux_sym_tag_token1] = ACTIONS(1284), - [aux_sym_tunnel_token1] = ACTIONS(1286), - [aux_sym_tunnel_device_token1] = ACTIONS(1284), - [aux_sym_update_host_keys_token1] = ACTIONS(1284), - [aux_sym_use_keychain_token1] = ACTIONS(1284), - [aux_sym_use_roaming_token1] = ACTIONS(1284), - [aux_sym_user_token1] = ACTIONS(1286), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1284), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1284), - [aux_sym_visual_host_key_token1] = ACTIONS(1284), - [aux_sym_xauth_location_token1] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1291), + [anon_sym_DQUOTE] = ACTIONS(1293), + [aux_sym_match_token1] = ACTIONS(1289), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1289), + [aux_sym_address_family_token1] = ACTIONS(1289), + [aux_sym_batch_mode_token1] = ACTIONS(1289), + [aux_sym_bind_address_token1] = ACTIONS(1289), + [aux_sym_bind_interface_token1] = ACTIONS(1289), + [aux_sym_canonical_domains_token1] = ACTIONS(1289), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1289), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1289), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1289), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1289), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1289), + [aux_sym_certificate_file_token1] = ACTIONS(1289), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1289), + [aux_sym_channel_timeout_token1] = ACTIONS(1289), + [aux_sym_check_host_ip_token1] = ACTIONS(1289), + [aux_sym_ciphers_token1] = ACTIONS(1289), + [aux_sym_cipher_token1] = ACTIONS(1291), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1289), + [aux_sym_compression_token1] = ACTIONS(1289), + [aux_sym_connection_attempts_token1] = ACTIONS(1289), + [aux_sym_connect_timeout_token1] = ACTIONS(1289), + [aux_sym_control_master_token1] = ACTIONS(1289), + [aux_sym_control_path_token1] = ACTIONS(1289), + [aux_sym_control_persist_token1] = ACTIONS(1289), + [aux_sym_dynamic_forward_token1] = ACTIONS(1289), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1289), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1289), + [aux_sym_escape_char_token1] = ACTIONS(1289), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1289), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1289), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1289), + [aux_sym_forward_agent_token1] = ACTIONS(1289), + [aux_sym_forward_x11_token1] = ACTIONS(1291), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1289), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1289), + [aux_sym_gateway_ports_token1] = ACTIONS(1289), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1289), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1289), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1289), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1289), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1289), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1289), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1289), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1289), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1289), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1289), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1289), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1289), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1289), + [aux_sym_host_key_alias_token1] = ACTIONS(1289), + [aux_sym_hostname_token1] = ACTIONS(1289), + [aux_sym_identities_only_token1] = ACTIONS(1289), + [aux_sym_identity_agent_token1] = ACTIONS(1289), + [aux_sym_identity_file_token1] = ACTIONS(1289), + [aux_sym_ignore_unknown_token1] = ACTIONS(1289), + [aux_sym_include_token1] = ACTIONS(1289), + [aux_sym_ip_qos_token1] = ACTIONS(1289), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1289), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1289), + [aux_sym_kex_algorithms_token1] = ACTIONS(1289), + [aux_sym_known_hosts_command_token1] = ACTIONS(1289), + [aux_sym_local_command_token1] = ACTIONS(1289), + [aux_sym_local_forward_token1] = ACTIONS(1289), + [aux_sym_log_level_token1] = ACTIONS(1289), + [aux_sym_log_verbose_token1] = ACTIONS(1289), + [aux_sym_macs_token1] = ACTIONS(1289), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1289), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1289), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1289), + [aux_sym_password_authentication_token1] = ACTIONS(1289), + [aux_sym_permit_local_command_token1] = ACTIONS(1289), + [aux_sym_permit_remote_open_token1] = ACTIONS(1289), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1289), + [aux_sym_port_token1] = ACTIONS(1289), + [aux_sym_preferred_authentications_token1] = ACTIONS(1289), + [aux_sym_protocol_token1] = ACTIONS(1289), + [aux_sym_proxy_command_token1] = ACTIONS(1289), + [aux_sym_proxy_jump_token1] = ACTIONS(1289), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1289), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1289), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1289), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1289), + [aux_sym_rekey_limit_token1] = ACTIONS(1289), + [aux_sym_remote_command_token1] = ACTIONS(1289), + [aux_sym_remote_forward_token1] = ACTIONS(1289), + [aux_sym_request_tty_token1] = ACTIONS(1289), + [aux_sym_required_rsa_size_token1] = ACTIONS(1289), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1289), + [aux_sym_security_key_provider_token1] = ACTIONS(1289), + [aux_sym_send_env_token1] = ACTIONS(1289), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1289), + [aux_sym_server_alive_interval_token1] = ACTIONS(1289), + [aux_sym_session_type_token1] = ACTIONS(1289), + [aux_sym_set_env_token1] = ACTIONS(1289), + [aux_sym_stdin_null_token1] = ACTIONS(1289), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1289), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1289), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1289), + [aux_sym_syslog_facility_token1] = ACTIONS(1289), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1289), + [aux_sym_keep_alive_token1] = ACTIONS(1289), + [aux_sym_tag_token1] = ACTIONS(1289), + [aux_sym_tunnel_token1] = ACTIONS(1291), + [aux_sym_tunnel_device_token1] = ACTIONS(1289), + [aux_sym_update_host_keys_token1] = ACTIONS(1289), + [aux_sym_use_keychain_token1] = ACTIONS(1289), + [aux_sym_use_roaming_token1] = ACTIONS(1289), + [aux_sym_user_token1] = ACTIONS(1291), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1289), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1289), + [aux_sym_visual_host_key_token1] = ACTIONS(1289), + [aux_sym_xauth_location_token1] = ACTIONS(1289), }, [122] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [aux_sym_match_token1] = ACTIONS(1290), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1290), - [aux_sym_address_family_token1] = ACTIONS(1290), - [aux_sym_batch_mode_token1] = ACTIONS(1290), - [aux_sym_bind_address_token1] = ACTIONS(1290), - [aux_sym_bind_interface_token1] = ACTIONS(1290), - [aux_sym_canonical_domains_token1] = ACTIONS(1290), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1290), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1290), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1290), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1290), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1290), - [aux_sym_certificate_file_token1] = ACTIONS(1290), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1290), - [aux_sym_channel_timeout_token1] = ACTIONS(1290), - [aux_sym_check_host_ip_token1] = ACTIONS(1290), - [aux_sym_ciphers_token1] = ACTIONS(1290), - [aux_sym_cipher_token1] = ACTIONS(1292), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1290), - [aux_sym_compression_token1] = ACTIONS(1290), - [aux_sym_connection_attempts_token1] = ACTIONS(1290), - [aux_sym_connect_timeout_token1] = ACTIONS(1290), - [aux_sym_control_master_token1] = ACTIONS(1290), - [aux_sym_control_path_token1] = ACTIONS(1290), - [aux_sym_control_persist_token1] = ACTIONS(1290), - [aux_sym_dynamic_forward_token1] = ACTIONS(1290), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1290), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1290), - [aux_sym_escape_char_token1] = ACTIONS(1290), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1290), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1290), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1290), - [aux_sym_forward_agent_token1] = ACTIONS(1290), - [aux_sym_forward_x11_token1] = ACTIONS(1292), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1290), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1290), - [aux_sym_gateway_ports_token1] = ACTIONS(1290), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1290), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1290), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1290), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1290), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1290), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1290), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1290), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1290), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1290), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1290), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1290), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1290), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1290), - [aux_sym_host_key_alias_token1] = ACTIONS(1290), - [aux_sym_hostname_token1] = ACTIONS(1290), - [aux_sym_identities_only_token1] = ACTIONS(1290), - [aux_sym_identity_agent_token1] = ACTIONS(1290), - [aux_sym_identity_file_token1] = ACTIONS(1290), - [aux_sym_ignore_unknown_token1] = ACTIONS(1290), - [aux_sym_include_token1] = ACTIONS(1290), - [aux_sym_ip_qos_token1] = ACTIONS(1290), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1290), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1290), - [aux_sym_kex_algorithms_token1] = ACTIONS(1290), - [aux_sym_known_hosts_command_token1] = ACTIONS(1290), - [aux_sym_local_command_token1] = ACTIONS(1290), - [aux_sym_local_forward_token1] = ACTIONS(1290), - [aux_sym_log_level_token1] = ACTIONS(1290), - [aux_sym_log_verbose_token1] = ACTIONS(1290), - [aux_sym_macs_token1] = ACTIONS(1290), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1290), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1290), - [aux_sym_password_authentication_token1] = ACTIONS(1290), - [aux_sym_permit_local_command_token1] = ACTIONS(1290), - [aux_sym_permit_remote_open_token1] = ACTIONS(1290), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1290), - [aux_sym_port_token1] = ACTIONS(1290), - [aux_sym_preferred_authentications_token1] = ACTIONS(1290), - [aux_sym_protocol_token1] = ACTIONS(1290), - [aux_sym_proxy_command_token1] = ACTIONS(1290), - [aux_sym_proxy_jump_token1] = ACTIONS(1290), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1290), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1290), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1290), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1290), - [aux_sym_rekey_limit_token1] = ACTIONS(1290), - [aux_sym_remote_command_token1] = ACTIONS(1290), - [aux_sym_remote_forward_token1] = ACTIONS(1290), - [aux_sym_request_tty_token1] = ACTIONS(1290), - [aux_sym_required_rsa_size_token1] = ACTIONS(1290), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1290), - [aux_sym_security_key_provider_token1] = ACTIONS(1290), - [aux_sym_send_env_token1] = ACTIONS(1290), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1290), - [aux_sym_server_alive_interval_token1] = ACTIONS(1290), - [aux_sym_session_type_token1] = ACTIONS(1290), - [aux_sym_set_env_token1] = ACTIONS(1290), - [aux_sym_stdin_null_token1] = ACTIONS(1290), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1290), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1290), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1290), - [aux_sym_syslog_facility_token1] = ACTIONS(1290), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1290), - [aux_sym_keep_alive_token1] = ACTIONS(1290), - [aux_sym_tag_token1] = ACTIONS(1290), - [aux_sym_tunnel_token1] = ACTIONS(1292), - [aux_sym_tunnel_device_token1] = ACTIONS(1290), - [aux_sym_update_host_keys_token1] = ACTIONS(1290), - [aux_sym_use_keychain_token1] = ACTIONS(1290), - [aux_sym_use_roaming_token1] = ACTIONS(1290), - [aux_sym_user_token1] = ACTIONS(1292), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1290), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1290), - [aux_sym_visual_host_key_token1] = ACTIONS(1290), - [aux_sym_xauth_location_token1] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1299), + [aux_sym_match_token1] = ACTIONS(1295), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1295), + [aux_sym_address_family_token1] = ACTIONS(1295), + [aux_sym_batch_mode_token1] = ACTIONS(1295), + [aux_sym_bind_address_token1] = ACTIONS(1295), + [aux_sym_bind_interface_token1] = ACTIONS(1295), + [aux_sym_canonical_domains_token1] = ACTIONS(1295), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1295), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1295), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1295), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1295), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1295), + [aux_sym_certificate_file_token1] = ACTIONS(1295), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1295), + [aux_sym_channel_timeout_token1] = ACTIONS(1295), + [aux_sym_check_host_ip_token1] = ACTIONS(1295), + [aux_sym_ciphers_token1] = ACTIONS(1295), + [aux_sym_cipher_token1] = ACTIONS(1297), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1295), + [aux_sym_compression_token1] = ACTIONS(1295), + [aux_sym_connection_attempts_token1] = ACTIONS(1295), + [aux_sym_connect_timeout_token1] = ACTIONS(1295), + [aux_sym_control_master_token1] = ACTIONS(1295), + [aux_sym_control_path_token1] = ACTIONS(1295), + [aux_sym_control_persist_token1] = ACTIONS(1295), + [aux_sym_dynamic_forward_token1] = ACTIONS(1295), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1295), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1295), + [aux_sym_escape_char_token1] = ACTIONS(1295), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1295), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1295), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1295), + [aux_sym_forward_agent_token1] = ACTIONS(1295), + [aux_sym_forward_x11_token1] = ACTIONS(1297), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1295), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1295), + [aux_sym_gateway_ports_token1] = ACTIONS(1295), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1295), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1295), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1295), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1295), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1295), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1295), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1295), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1295), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1295), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1295), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1295), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1295), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1295), + [aux_sym_host_key_alias_token1] = ACTIONS(1295), + [aux_sym_hostname_token1] = ACTIONS(1295), + [aux_sym_identities_only_token1] = ACTIONS(1295), + [aux_sym_identity_agent_token1] = ACTIONS(1295), + [aux_sym_identity_file_token1] = ACTIONS(1295), + [aux_sym_ignore_unknown_token1] = ACTIONS(1295), + [aux_sym_include_token1] = ACTIONS(1295), + [aux_sym_ip_qos_token1] = ACTIONS(1295), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1295), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1295), + [aux_sym_kex_algorithms_token1] = ACTIONS(1295), + [aux_sym_known_hosts_command_token1] = ACTIONS(1295), + [aux_sym_local_command_token1] = ACTIONS(1295), + [aux_sym_local_forward_token1] = ACTIONS(1295), + [aux_sym_log_level_token1] = ACTIONS(1295), + [aux_sym_log_verbose_token1] = ACTIONS(1295), + [aux_sym_macs_token1] = ACTIONS(1295), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1295), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1295), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1295), + [aux_sym_password_authentication_token1] = ACTIONS(1295), + [aux_sym_permit_local_command_token1] = ACTIONS(1295), + [aux_sym_permit_remote_open_token1] = ACTIONS(1295), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1295), + [aux_sym_port_token1] = ACTIONS(1295), + [aux_sym_preferred_authentications_token1] = ACTIONS(1295), + [aux_sym_protocol_token1] = ACTIONS(1295), + [aux_sym_proxy_command_token1] = ACTIONS(1295), + [aux_sym_proxy_jump_token1] = ACTIONS(1295), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1295), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1295), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1295), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1295), + [aux_sym_rekey_limit_token1] = ACTIONS(1295), + [aux_sym_remote_command_token1] = ACTIONS(1295), + [aux_sym_remote_forward_token1] = ACTIONS(1295), + [aux_sym_request_tty_token1] = ACTIONS(1295), + [aux_sym_required_rsa_size_token1] = ACTIONS(1295), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1295), + [aux_sym_security_key_provider_token1] = ACTIONS(1295), + [aux_sym_send_env_token1] = ACTIONS(1295), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1295), + [aux_sym_server_alive_interval_token1] = ACTIONS(1295), + [aux_sym_session_type_token1] = ACTIONS(1295), + [aux_sym_set_env_token1] = ACTIONS(1295), + [aux_sym_stdin_null_token1] = ACTIONS(1295), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1295), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1295), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1295), + [aux_sym_syslog_facility_token1] = ACTIONS(1295), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1295), + [aux_sym_keep_alive_token1] = ACTIONS(1295), + [aux_sym_tag_token1] = ACTIONS(1295), + [aux_sym_tunnel_token1] = ACTIONS(1297), + [aux_sym_tunnel_device_token1] = ACTIONS(1295), + [aux_sym_update_host_keys_token1] = ACTIONS(1295), + [aux_sym_use_keychain_token1] = ACTIONS(1295), + [aux_sym_use_roaming_token1] = ACTIONS(1295), + [aux_sym_user_token1] = ACTIONS(1297), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1295), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1295), + [aux_sym_visual_host_key_token1] = ACTIONS(1295), + [aux_sym_xauth_location_token1] = ACTIONS(1295), }, [123] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1298), - [anon_sym_DQUOTE] = ACTIONS(1300), - [aux_sym_match_token1] = ACTIONS(1296), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1296), - [aux_sym_address_family_token1] = ACTIONS(1296), - [aux_sym_batch_mode_token1] = ACTIONS(1296), - [aux_sym_bind_address_token1] = ACTIONS(1296), - [aux_sym_bind_interface_token1] = ACTIONS(1296), - [aux_sym_canonical_domains_token1] = ACTIONS(1296), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1296), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1296), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1296), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1296), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1296), - [aux_sym_certificate_file_token1] = ACTIONS(1296), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1296), - [aux_sym_channel_timeout_token1] = ACTIONS(1296), - [aux_sym_check_host_ip_token1] = ACTIONS(1296), - [aux_sym_ciphers_token1] = ACTIONS(1296), - [aux_sym_cipher_token1] = ACTIONS(1298), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1296), - [aux_sym_compression_token1] = ACTIONS(1296), - [aux_sym_connection_attempts_token1] = ACTIONS(1296), - [aux_sym_connect_timeout_token1] = ACTIONS(1296), - [aux_sym_control_master_token1] = ACTIONS(1296), - [aux_sym_control_path_token1] = ACTIONS(1296), - [aux_sym_control_persist_token1] = ACTIONS(1296), - [aux_sym_dynamic_forward_token1] = ACTIONS(1296), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1296), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1296), - [aux_sym_escape_char_token1] = ACTIONS(1296), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1296), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1296), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1296), - [aux_sym_forward_agent_token1] = ACTIONS(1296), - [aux_sym_forward_x11_token1] = ACTIONS(1298), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1296), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1296), - [aux_sym_gateway_ports_token1] = ACTIONS(1296), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1296), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1296), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1296), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1296), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1296), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1296), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1296), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1296), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1296), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1296), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1296), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1296), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1296), - [aux_sym_host_key_alias_token1] = ACTIONS(1296), - [aux_sym_hostname_token1] = ACTIONS(1296), - [aux_sym_identities_only_token1] = ACTIONS(1296), - [aux_sym_identity_agent_token1] = ACTIONS(1296), - [aux_sym_identity_file_token1] = ACTIONS(1296), - [aux_sym_ignore_unknown_token1] = ACTIONS(1296), - [aux_sym_include_token1] = ACTIONS(1296), - [aux_sym_ip_qos_token1] = ACTIONS(1296), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1296), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1296), - [aux_sym_kex_algorithms_token1] = ACTIONS(1296), - [aux_sym_known_hosts_command_token1] = ACTIONS(1296), - [aux_sym_local_command_token1] = ACTIONS(1296), - [aux_sym_local_forward_token1] = ACTIONS(1296), - [aux_sym_log_level_token1] = ACTIONS(1296), - [aux_sym_log_verbose_token1] = ACTIONS(1296), - [aux_sym_macs_token1] = ACTIONS(1296), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1296), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1296), - [aux_sym_password_authentication_token1] = ACTIONS(1296), - [aux_sym_permit_local_command_token1] = ACTIONS(1296), - [aux_sym_permit_remote_open_token1] = ACTIONS(1296), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1296), - [aux_sym_port_token1] = ACTIONS(1296), - [aux_sym_preferred_authentications_token1] = ACTIONS(1296), - [aux_sym_protocol_token1] = ACTIONS(1296), - [aux_sym_proxy_command_token1] = ACTIONS(1296), - [aux_sym_proxy_jump_token1] = ACTIONS(1296), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1296), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1296), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1296), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1296), - [aux_sym_rekey_limit_token1] = ACTIONS(1296), - [aux_sym_remote_command_token1] = ACTIONS(1296), - [aux_sym_remote_forward_token1] = ACTIONS(1296), - [aux_sym_request_tty_token1] = ACTIONS(1296), - [aux_sym_required_rsa_size_token1] = ACTIONS(1296), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1296), - [aux_sym_security_key_provider_token1] = ACTIONS(1296), - [aux_sym_send_env_token1] = ACTIONS(1296), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1296), - [aux_sym_server_alive_interval_token1] = ACTIONS(1296), - [aux_sym_session_type_token1] = ACTIONS(1296), - [aux_sym_set_env_token1] = ACTIONS(1296), - [aux_sym_stdin_null_token1] = ACTIONS(1296), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1296), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1296), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1296), - [aux_sym_syslog_facility_token1] = ACTIONS(1296), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1296), - [aux_sym_keep_alive_token1] = ACTIONS(1296), - [aux_sym_tag_token1] = ACTIONS(1296), - [aux_sym_tunnel_token1] = ACTIONS(1298), - [aux_sym_tunnel_device_token1] = ACTIONS(1296), - [aux_sym_update_host_keys_token1] = ACTIONS(1296), - [aux_sym_use_keychain_token1] = ACTIONS(1296), - [aux_sym_use_roaming_token1] = ACTIONS(1296), - [aux_sym_user_token1] = ACTIONS(1298), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1296), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1296), - [aux_sym_visual_host_key_token1] = ACTIONS(1296), - [aux_sym_xauth_location_token1] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(1305), + [aux_sym_match_token1] = ACTIONS(1301), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1301), + [aux_sym_address_family_token1] = ACTIONS(1301), + [aux_sym_batch_mode_token1] = ACTIONS(1301), + [aux_sym_bind_address_token1] = ACTIONS(1301), + [aux_sym_bind_interface_token1] = ACTIONS(1301), + [aux_sym_canonical_domains_token1] = ACTIONS(1301), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1301), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1301), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1301), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1301), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1301), + [aux_sym_certificate_file_token1] = ACTIONS(1301), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1301), + [aux_sym_channel_timeout_token1] = ACTIONS(1301), + [aux_sym_check_host_ip_token1] = ACTIONS(1301), + [aux_sym_ciphers_token1] = ACTIONS(1301), + [aux_sym_cipher_token1] = ACTIONS(1303), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1301), + [aux_sym_compression_token1] = ACTIONS(1301), + [aux_sym_connection_attempts_token1] = ACTIONS(1301), + [aux_sym_connect_timeout_token1] = ACTIONS(1301), + [aux_sym_control_master_token1] = ACTIONS(1301), + [aux_sym_control_path_token1] = ACTIONS(1301), + [aux_sym_control_persist_token1] = ACTIONS(1301), + [aux_sym_dynamic_forward_token1] = ACTIONS(1301), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1301), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1301), + [aux_sym_escape_char_token1] = ACTIONS(1301), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1301), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1301), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1301), + [aux_sym_forward_agent_token1] = ACTIONS(1301), + [aux_sym_forward_x11_token1] = ACTIONS(1303), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1301), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1301), + [aux_sym_gateway_ports_token1] = ACTIONS(1301), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1301), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1301), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1301), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1301), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1301), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1301), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1301), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1301), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1301), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1301), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1301), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1301), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1301), + [aux_sym_host_key_alias_token1] = ACTIONS(1301), + [aux_sym_hostname_token1] = ACTIONS(1301), + [aux_sym_identities_only_token1] = ACTIONS(1301), + [aux_sym_identity_agent_token1] = ACTIONS(1301), + [aux_sym_identity_file_token1] = ACTIONS(1301), + [aux_sym_ignore_unknown_token1] = ACTIONS(1301), + [aux_sym_include_token1] = ACTIONS(1301), + [aux_sym_ip_qos_token1] = ACTIONS(1301), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1301), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1301), + [aux_sym_kex_algorithms_token1] = ACTIONS(1301), + [aux_sym_known_hosts_command_token1] = ACTIONS(1301), + [aux_sym_local_command_token1] = ACTIONS(1301), + [aux_sym_local_forward_token1] = ACTIONS(1301), + [aux_sym_log_level_token1] = ACTIONS(1301), + [aux_sym_log_verbose_token1] = ACTIONS(1301), + [aux_sym_macs_token1] = ACTIONS(1301), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1301), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1301), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1301), + [aux_sym_password_authentication_token1] = ACTIONS(1301), + [aux_sym_permit_local_command_token1] = ACTIONS(1301), + [aux_sym_permit_remote_open_token1] = ACTIONS(1301), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1301), + [aux_sym_port_token1] = ACTIONS(1301), + [aux_sym_preferred_authentications_token1] = ACTIONS(1301), + [aux_sym_protocol_token1] = ACTIONS(1301), + [aux_sym_proxy_command_token1] = ACTIONS(1301), + [aux_sym_proxy_jump_token1] = ACTIONS(1301), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1301), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1301), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1301), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1301), + [aux_sym_rekey_limit_token1] = ACTIONS(1301), + [aux_sym_remote_command_token1] = ACTIONS(1301), + [aux_sym_remote_forward_token1] = ACTIONS(1301), + [aux_sym_request_tty_token1] = ACTIONS(1301), + [aux_sym_required_rsa_size_token1] = ACTIONS(1301), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1301), + [aux_sym_security_key_provider_token1] = ACTIONS(1301), + [aux_sym_send_env_token1] = ACTIONS(1301), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1301), + [aux_sym_server_alive_interval_token1] = ACTIONS(1301), + [aux_sym_session_type_token1] = ACTIONS(1301), + [aux_sym_set_env_token1] = ACTIONS(1301), + [aux_sym_stdin_null_token1] = ACTIONS(1301), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1301), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1301), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1301), + [aux_sym_syslog_facility_token1] = ACTIONS(1301), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1301), + [aux_sym_keep_alive_token1] = ACTIONS(1301), + [aux_sym_tag_token1] = ACTIONS(1301), + [aux_sym_tunnel_token1] = ACTIONS(1303), + [aux_sym_tunnel_device_token1] = ACTIONS(1301), + [aux_sym_update_host_keys_token1] = ACTIONS(1301), + [aux_sym_use_keychain_token1] = ACTIONS(1301), + [aux_sym_use_roaming_token1] = ACTIONS(1301), + [aux_sym_user_token1] = ACTIONS(1303), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1301), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1301), + [aux_sym_visual_host_key_token1] = ACTIONS(1301), + [aux_sym_xauth_location_token1] = ACTIONS(1301), }, [124] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1304), - [anon_sym_DQUOTE] = ACTIONS(1306), - [aux_sym_match_token1] = ACTIONS(1302), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1302), - [aux_sym_address_family_token1] = ACTIONS(1302), - [aux_sym_batch_mode_token1] = ACTIONS(1302), - [aux_sym_bind_address_token1] = ACTIONS(1302), - [aux_sym_bind_interface_token1] = ACTIONS(1302), - [aux_sym_canonical_domains_token1] = ACTIONS(1302), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1302), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1302), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1302), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1302), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1302), - [aux_sym_certificate_file_token1] = ACTIONS(1302), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1302), - [aux_sym_channel_timeout_token1] = ACTIONS(1302), - [aux_sym_check_host_ip_token1] = ACTIONS(1302), - [aux_sym_ciphers_token1] = ACTIONS(1302), - [aux_sym_cipher_token1] = ACTIONS(1304), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1302), - [aux_sym_compression_token1] = ACTIONS(1302), - [aux_sym_connection_attempts_token1] = ACTIONS(1302), - [aux_sym_connect_timeout_token1] = ACTIONS(1302), - [aux_sym_control_master_token1] = ACTIONS(1302), - [aux_sym_control_path_token1] = ACTIONS(1302), - [aux_sym_control_persist_token1] = ACTIONS(1302), - [aux_sym_dynamic_forward_token1] = ACTIONS(1302), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1302), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1302), - [aux_sym_escape_char_token1] = ACTIONS(1302), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1302), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1302), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1302), - [aux_sym_forward_agent_token1] = ACTIONS(1302), - [aux_sym_forward_x11_token1] = ACTIONS(1304), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1302), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1302), - [aux_sym_gateway_ports_token1] = ACTIONS(1302), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1302), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1302), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1302), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1302), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1302), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1302), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1302), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1302), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1302), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1302), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1302), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1302), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1302), - [aux_sym_host_key_alias_token1] = ACTIONS(1302), - [aux_sym_hostname_token1] = ACTIONS(1302), - [aux_sym_identities_only_token1] = ACTIONS(1302), - [aux_sym_identity_agent_token1] = ACTIONS(1302), - [aux_sym_identity_file_token1] = ACTIONS(1302), - [aux_sym_ignore_unknown_token1] = ACTIONS(1302), - [aux_sym_include_token1] = ACTIONS(1302), - [aux_sym_ip_qos_token1] = ACTIONS(1302), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1302), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1302), - [aux_sym_kex_algorithms_token1] = ACTIONS(1302), - [aux_sym_known_hosts_command_token1] = ACTIONS(1302), - [aux_sym_local_command_token1] = ACTIONS(1302), - [aux_sym_local_forward_token1] = ACTIONS(1302), - [aux_sym_log_level_token1] = ACTIONS(1302), - [aux_sym_log_verbose_token1] = ACTIONS(1302), - [aux_sym_macs_token1] = ACTIONS(1302), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1302), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1302), - [aux_sym_password_authentication_token1] = ACTIONS(1302), - [aux_sym_permit_local_command_token1] = ACTIONS(1302), - [aux_sym_permit_remote_open_token1] = ACTIONS(1302), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1302), - [aux_sym_port_token1] = ACTIONS(1302), - [aux_sym_preferred_authentications_token1] = ACTIONS(1302), - [aux_sym_protocol_token1] = ACTIONS(1302), - [aux_sym_proxy_command_token1] = ACTIONS(1302), - [aux_sym_proxy_jump_token1] = ACTIONS(1302), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1302), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1302), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1302), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1302), - [aux_sym_rekey_limit_token1] = ACTIONS(1302), - [aux_sym_remote_command_token1] = ACTIONS(1302), - [aux_sym_remote_forward_token1] = ACTIONS(1302), - [aux_sym_request_tty_token1] = ACTIONS(1302), - [aux_sym_required_rsa_size_token1] = ACTIONS(1302), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1302), - [aux_sym_security_key_provider_token1] = ACTIONS(1302), - [aux_sym_send_env_token1] = ACTIONS(1302), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1302), - [aux_sym_server_alive_interval_token1] = ACTIONS(1302), - [aux_sym_session_type_token1] = ACTIONS(1302), - [aux_sym_set_env_token1] = ACTIONS(1302), - [aux_sym_stdin_null_token1] = ACTIONS(1302), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1302), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1302), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1302), - [aux_sym_syslog_facility_token1] = ACTIONS(1302), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1302), - [aux_sym_keep_alive_token1] = ACTIONS(1302), - [aux_sym_tag_token1] = ACTIONS(1302), - [aux_sym_tunnel_token1] = ACTIONS(1304), - [aux_sym_tunnel_device_token1] = ACTIONS(1302), - [aux_sym_update_host_keys_token1] = ACTIONS(1302), - [aux_sym_use_keychain_token1] = ACTIONS(1302), - [aux_sym_use_roaming_token1] = ACTIONS(1302), - [aux_sym_user_token1] = ACTIONS(1304), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1302), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1302), - [aux_sym_visual_host_key_token1] = ACTIONS(1302), - [aux_sym_xauth_location_token1] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1309), + [anon_sym_DQUOTE] = ACTIONS(1311), + [aux_sym_match_token1] = ACTIONS(1307), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1307), + [aux_sym_address_family_token1] = ACTIONS(1307), + [aux_sym_batch_mode_token1] = ACTIONS(1307), + [aux_sym_bind_address_token1] = ACTIONS(1307), + [aux_sym_bind_interface_token1] = ACTIONS(1307), + [aux_sym_canonical_domains_token1] = ACTIONS(1307), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1307), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1307), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1307), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1307), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1307), + [aux_sym_certificate_file_token1] = ACTIONS(1307), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1307), + [aux_sym_channel_timeout_token1] = ACTIONS(1307), + [aux_sym_check_host_ip_token1] = ACTIONS(1307), + [aux_sym_ciphers_token1] = ACTIONS(1307), + [aux_sym_cipher_token1] = ACTIONS(1309), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1307), + [aux_sym_compression_token1] = ACTIONS(1307), + [aux_sym_connection_attempts_token1] = ACTIONS(1307), + [aux_sym_connect_timeout_token1] = ACTIONS(1307), + [aux_sym_control_master_token1] = ACTIONS(1307), + [aux_sym_control_path_token1] = ACTIONS(1307), + [aux_sym_control_persist_token1] = ACTIONS(1307), + [aux_sym_dynamic_forward_token1] = ACTIONS(1307), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1307), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1307), + [aux_sym_escape_char_token1] = ACTIONS(1307), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1307), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1307), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1307), + [aux_sym_forward_agent_token1] = ACTIONS(1307), + [aux_sym_forward_x11_token1] = ACTIONS(1309), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1307), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1307), + [aux_sym_gateway_ports_token1] = ACTIONS(1307), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1307), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1307), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1307), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1307), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1307), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1307), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1307), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1307), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1307), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1307), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1307), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1307), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1307), + [aux_sym_host_key_alias_token1] = ACTIONS(1307), + [aux_sym_hostname_token1] = ACTIONS(1307), + [aux_sym_identities_only_token1] = ACTIONS(1307), + [aux_sym_identity_agent_token1] = ACTIONS(1307), + [aux_sym_identity_file_token1] = ACTIONS(1307), + [aux_sym_ignore_unknown_token1] = ACTIONS(1307), + [aux_sym_include_token1] = ACTIONS(1307), + [aux_sym_ip_qos_token1] = ACTIONS(1307), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1307), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1307), + [aux_sym_kex_algorithms_token1] = ACTIONS(1307), + [aux_sym_known_hosts_command_token1] = ACTIONS(1307), + [aux_sym_local_command_token1] = ACTIONS(1307), + [aux_sym_local_forward_token1] = ACTIONS(1307), + [aux_sym_log_level_token1] = ACTIONS(1307), + [aux_sym_log_verbose_token1] = ACTIONS(1307), + [aux_sym_macs_token1] = ACTIONS(1307), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1307), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1307), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1307), + [aux_sym_password_authentication_token1] = ACTIONS(1307), + [aux_sym_permit_local_command_token1] = ACTIONS(1307), + [aux_sym_permit_remote_open_token1] = ACTIONS(1307), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1307), + [aux_sym_port_token1] = ACTIONS(1307), + [aux_sym_preferred_authentications_token1] = ACTIONS(1307), + [aux_sym_protocol_token1] = ACTIONS(1307), + [aux_sym_proxy_command_token1] = ACTIONS(1307), + [aux_sym_proxy_jump_token1] = ACTIONS(1307), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1307), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1307), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1307), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1307), + [aux_sym_rekey_limit_token1] = ACTIONS(1307), + [aux_sym_remote_command_token1] = ACTIONS(1307), + [aux_sym_remote_forward_token1] = ACTIONS(1307), + [aux_sym_request_tty_token1] = ACTIONS(1307), + [aux_sym_required_rsa_size_token1] = ACTIONS(1307), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1307), + [aux_sym_security_key_provider_token1] = ACTIONS(1307), + [aux_sym_send_env_token1] = ACTIONS(1307), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1307), + [aux_sym_server_alive_interval_token1] = ACTIONS(1307), + [aux_sym_session_type_token1] = ACTIONS(1307), + [aux_sym_set_env_token1] = ACTIONS(1307), + [aux_sym_stdin_null_token1] = ACTIONS(1307), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1307), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1307), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1307), + [aux_sym_syslog_facility_token1] = ACTIONS(1307), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1307), + [aux_sym_keep_alive_token1] = ACTIONS(1307), + [aux_sym_tag_token1] = ACTIONS(1307), + [aux_sym_tunnel_token1] = ACTIONS(1309), + [aux_sym_tunnel_device_token1] = ACTIONS(1307), + [aux_sym_update_host_keys_token1] = ACTIONS(1307), + [aux_sym_use_keychain_token1] = ACTIONS(1307), + [aux_sym_use_roaming_token1] = ACTIONS(1307), + [aux_sym_user_token1] = ACTIONS(1309), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1307), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1307), + [aux_sym_visual_host_key_token1] = ACTIONS(1307), + [aux_sym_xauth_location_token1] = ACTIONS(1307), }, [125] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1310), - [anon_sym_DQUOTE] = ACTIONS(1312), - [aux_sym_match_token1] = ACTIONS(1308), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1308), - [aux_sym_address_family_token1] = ACTIONS(1308), - [aux_sym_batch_mode_token1] = ACTIONS(1308), - [aux_sym_bind_address_token1] = ACTIONS(1308), - [aux_sym_bind_interface_token1] = ACTIONS(1308), - [aux_sym_canonical_domains_token1] = ACTIONS(1308), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1308), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1308), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1308), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1308), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1308), - [aux_sym_certificate_file_token1] = ACTIONS(1308), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1308), - [aux_sym_channel_timeout_token1] = ACTIONS(1308), - [aux_sym_check_host_ip_token1] = ACTIONS(1308), - [aux_sym_ciphers_token1] = ACTIONS(1308), - [aux_sym_cipher_token1] = ACTIONS(1310), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1308), - [aux_sym_compression_token1] = ACTIONS(1308), - [aux_sym_connection_attempts_token1] = ACTIONS(1308), - [aux_sym_connect_timeout_token1] = ACTIONS(1308), - [aux_sym_control_master_token1] = ACTIONS(1308), - [aux_sym_control_path_token1] = ACTIONS(1308), - [aux_sym_control_persist_token1] = ACTIONS(1308), - [aux_sym_dynamic_forward_token1] = ACTIONS(1308), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1308), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1308), - [aux_sym_escape_char_token1] = ACTIONS(1308), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1308), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1308), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1308), - [aux_sym_forward_agent_token1] = ACTIONS(1308), - [aux_sym_forward_x11_token1] = ACTIONS(1310), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1308), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1308), - [aux_sym_gateway_ports_token1] = ACTIONS(1308), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1308), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1308), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1308), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1308), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1308), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1308), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1308), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1308), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1308), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1308), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1308), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1308), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1308), - [aux_sym_host_key_alias_token1] = ACTIONS(1308), - [aux_sym_hostname_token1] = ACTIONS(1308), - [aux_sym_identities_only_token1] = ACTIONS(1308), - [aux_sym_identity_agent_token1] = ACTIONS(1308), - [aux_sym_identity_file_token1] = ACTIONS(1308), - [aux_sym_ignore_unknown_token1] = ACTIONS(1308), - [aux_sym_include_token1] = ACTIONS(1308), - [aux_sym_ip_qos_token1] = ACTIONS(1308), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1308), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1308), - [aux_sym_kex_algorithms_token1] = ACTIONS(1308), - [aux_sym_known_hosts_command_token1] = ACTIONS(1308), - [aux_sym_local_command_token1] = ACTIONS(1308), - [aux_sym_local_forward_token1] = ACTIONS(1308), - [aux_sym_log_level_token1] = ACTIONS(1308), - [aux_sym_log_verbose_token1] = ACTIONS(1308), - [aux_sym_macs_token1] = ACTIONS(1308), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1308), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1308), - [aux_sym_password_authentication_token1] = ACTIONS(1308), - [aux_sym_permit_local_command_token1] = ACTIONS(1308), - [aux_sym_permit_remote_open_token1] = ACTIONS(1308), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1308), - [aux_sym_port_token1] = ACTIONS(1308), - [aux_sym_preferred_authentications_token1] = ACTIONS(1308), - [aux_sym_protocol_token1] = ACTIONS(1308), - [aux_sym_proxy_command_token1] = ACTIONS(1308), - [aux_sym_proxy_jump_token1] = ACTIONS(1308), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1308), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1308), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1308), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1308), - [aux_sym_rekey_limit_token1] = ACTIONS(1308), - [aux_sym_remote_command_token1] = ACTIONS(1308), - [aux_sym_remote_forward_token1] = ACTIONS(1308), - [aux_sym_request_tty_token1] = ACTIONS(1308), - [aux_sym_required_rsa_size_token1] = ACTIONS(1308), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1308), - [aux_sym_security_key_provider_token1] = ACTIONS(1308), - [aux_sym_send_env_token1] = ACTIONS(1308), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1308), - [aux_sym_server_alive_interval_token1] = ACTIONS(1308), - [aux_sym_session_type_token1] = ACTIONS(1308), - [aux_sym_set_env_token1] = ACTIONS(1308), - [aux_sym_stdin_null_token1] = ACTIONS(1308), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1308), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1308), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1308), - [aux_sym_syslog_facility_token1] = ACTIONS(1308), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1308), - [aux_sym_keep_alive_token1] = ACTIONS(1308), - [aux_sym_tag_token1] = ACTIONS(1308), - [aux_sym_tunnel_token1] = ACTIONS(1310), - [aux_sym_tunnel_device_token1] = ACTIONS(1308), - [aux_sym_update_host_keys_token1] = ACTIONS(1308), - [aux_sym_use_keychain_token1] = ACTIONS(1308), - [aux_sym_use_roaming_token1] = ACTIONS(1308), - [aux_sym_user_token1] = ACTIONS(1310), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1308), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1308), - [aux_sym_visual_host_key_token1] = ACTIONS(1308), - [aux_sym_xauth_location_token1] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(1317), + [aux_sym_match_token1] = ACTIONS(1313), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1313), + [aux_sym_address_family_token1] = ACTIONS(1313), + [aux_sym_batch_mode_token1] = ACTIONS(1313), + [aux_sym_bind_address_token1] = ACTIONS(1313), + [aux_sym_bind_interface_token1] = ACTIONS(1313), + [aux_sym_canonical_domains_token1] = ACTIONS(1313), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1313), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1313), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1313), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1313), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1313), + [aux_sym_certificate_file_token1] = ACTIONS(1313), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1313), + [aux_sym_channel_timeout_token1] = ACTIONS(1313), + [aux_sym_check_host_ip_token1] = ACTIONS(1313), + [aux_sym_ciphers_token1] = ACTIONS(1313), + [aux_sym_cipher_token1] = ACTIONS(1315), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1313), + [aux_sym_compression_token1] = ACTIONS(1313), + [aux_sym_connection_attempts_token1] = ACTIONS(1313), + [aux_sym_connect_timeout_token1] = ACTIONS(1313), + [aux_sym_control_master_token1] = ACTIONS(1313), + [aux_sym_control_path_token1] = ACTIONS(1313), + [aux_sym_control_persist_token1] = ACTIONS(1313), + [aux_sym_dynamic_forward_token1] = ACTIONS(1313), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1313), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1313), + [aux_sym_escape_char_token1] = ACTIONS(1313), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1313), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1313), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1313), + [aux_sym_forward_agent_token1] = ACTIONS(1313), + [aux_sym_forward_x11_token1] = ACTIONS(1315), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1313), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1313), + [aux_sym_gateway_ports_token1] = ACTIONS(1313), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1313), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1313), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1313), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1313), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1313), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1313), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1313), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1313), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1313), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1313), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1313), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1313), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1313), + [aux_sym_host_key_alias_token1] = ACTIONS(1313), + [aux_sym_hostname_token1] = ACTIONS(1313), + [aux_sym_identities_only_token1] = ACTIONS(1313), + [aux_sym_identity_agent_token1] = ACTIONS(1313), + [aux_sym_identity_file_token1] = ACTIONS(1313), + [aux_sym_ignore_unknown_token1] = ACTIONS(1313), + [aux_sym_include_token1] = ACTIONS(1313), + [aux_sym_ip_qos_token1] = ACTIONS(1313), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1313), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1313), + [aux_sym_kex_algorithms_token1] = ACTIONS(1313), + [aux_sym_known_hosts_command_token1] = ACTIONS(1313), + [aux_sym_local_command_token1] = ACTIONS(1313), + [aux_sym_local_forward_token1] = ACTIONS(1313), + [aux_sym_log_level_token1] = ACTIONS(1313), + [aux_sym_log_verbose_token1] = ACTIONS(1313), + [aux_sym_macs_token1] = ACTIONS(1313), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1313), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1313), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1313), + [aux_sym_password_authentication_token1] = ACTIONS(1313), + [aux_sym_permit_local_command_token1] = ACTIONS(1313), + [aux_sym_permit_remote_open_token1] = ACTIONS(1313), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1313), + [aux_sym_port_token1] = ACTIONS(1313), + [aux_sym_preferred_authentications_token1] = ACTIONS(1313), + [aux_sym_protocol_token1] = ACTIONS(1313), + [aux_sym_proxy_command_token1] = ACTIONS(1313), + [aux_sym_proxy_jump_token1] = ACTIONS(1313), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1313), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1313), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1313), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1313), + [aux_sym_rekey_limit_token1] = ACTIONS(1313), + [aux_sym_remote_command_token1] = ACTIONS(1313), + [aux_sym_remote_forward_token1] = ACTIONS(1313), + [aux_sym_request_tty_token1] = ACTIONS(1313), + [aux_sym_required_rsa_size_token1] = ACTIONS(1313), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1313), + [aux_sym_security_key_provider_token1] = ACTIONS(1313), + [aux_sym_send_env_token1] = ACTIONS(1313), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1313), + [aux_sym_server_alive_interval_token1] = ACTIONS(1313), + [aux_sym_session_type_token1] = ACTIONS(1313), + [aux_sym_set_env_token1] = ACTIONS(1313), + [aux_sym_stdin_null_token1] = ACTIONS(1313), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1313), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1313), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1313), + [aux_sym_syslog_facility_token1] = ACTIONS(1313), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1313), + [aux_sym_keep_alive_token1] = ACTIONS(1313), + [aux_sym_tag_token1] = ACTIONS(1313), + [aux_sym_tunnel_token1] = ACTIONS(1315), + [aux_sym_tunnel_device_token1] = ACTIONS(1313), + [aux_sym_update_host_keys_token1] = ACTIONS(1313), + [aux_sym_use_keychain_token1] = ACTIONS(1313), + [aux_sym_use_roaming_token1] = ACTIONS(1313), + [aux_sym_user_token1] = ACTIONS(1315), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1313), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1313), + [aux_sym_visual_host_key_token1] = ACTIONS(1313), + [aux_sym_xauth_location_token1] = ACTIONS(1313), }, [126] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [aux_sym_match_token1] = ACTIONS(1314), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1314), - [aux_sym_address_family_token1] = ACTIONS(1314), - [aux_sym_batch_mode_token1] = ACTIONS(1314), - [aux_sym_bind_address_token1] = ACTIONS(1314), - [aux_sym_bind_interface_token1] = ACTIONS(1314), - [aux_sym_canonical_domains_token1] = ACTIONS(1314), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1314), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1314), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1314), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1314), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1314), - [aux_sym_certificate_file_token1] = ACTIONS(1314), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1314), - [aux_sym_channel_timeout_token1] = ACTIONS(1314), - [aux_sym_check_host_ip_token1] = ACTIONS(1314), - [aux_sym_ciphers_token1] = ACTIONS(1314), - [aux_sym_cipher_token1] = ACTIONS(1316), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1314), - [aux_sym_compression_token1] = ACTIONS(1314), - [aux_sym_connection_attempts_token1] = ACTIONS(1314), - [aux_sym_connect_timeout_token1] = ACTIONS(1314), - [aux_sym_control_master_token1] = ACTIONS(1314), - [aux_sym_control_path_token1] = ACTIONS(1314), - [aux_sym_control_persist_token1] = ACTIONS(1314), - [aux_sym_dynamic_forward_token1] = ACTIONS(1314), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1314), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1314), - [aux_sym_escape_char_token1] = ACTIONS(1314), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1314), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1314), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1314), - [aux_sym_forward_agent_token1] = ACTIONS(1314), - [aux_sym_forward_x11_token1] = ACTIONS(1316), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1314), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1314), - [aux_sym_gateway_ports_token1] = ACTIONS(1314), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1314), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1314), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1314), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1314), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1314), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1314), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1314), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1314), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1314), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1314), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1314), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1314), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1314), - [aux_sym_host_key_alias_token1] = ACTIONS(1314), - [aux_sym_hostname_token1] = ACTIONS(1314), - [aux_sym_identities_only_token1] = ACTIONS(1314), - [aux_sym_identity_agent_token1] = ACTIONS(1314), - [aux_sym_identity_file_token1] = ACTIONS(1314), - [aux_sym_ignore_unknown_token1] = ACTIONS(1314), - [aux_sym_include_token1] = ACTIONS(1314), - [aux_sym_ip_qos_token1] = ACTIONS(1314), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1314), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1314), - [aux_sym_kex_algorithms_token1] = ACTIONS(1314), - [aux_sym_known_hosts_command_token1] = ACTIONS(1314), - [aux_sym_local_command_token1] = ACTIONS(1314), - [aux_sym_local_forward_token1] = ACTIONS(1314), - [aux_sym_log_level_token1] = ACTIONS(1314), - [aux_sym_log_verbose_token1] = ACTIONS(1314), - [aux_sym_macs_token1] = ACTIONS(1314), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1314), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1314), - [aux_sym_password_authentication_token1] = ACTIONS(1314), - [aux_sym_permit_local_command_token1] = ACTIONS(1314), - [aux_sym_permit_remote_open_token1] = ACTIONS(1314), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1314), - [aux_sym_port_token1] = ACTIONS(1314), - [aux_sym_preferred_authentications_token1] = ACTIONS(1314), - [aux_sym_protocol_token1] = ACTIONS(1314), - [aux_sym_proxy_command_token1] = ACTIONS(1314), - [aux_sym_proxy_jump_token1] = ACTIONS(1314), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1314), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1314), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1314), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1314), - [aux_sym_rekey_limit_token1] = ACTIONS(1314), - [aux_sym_remote_command_token1] = ACTIONS(1314), - [aux_sym_remote_forward_token1] = ACTIONS(1314), - [aux_sym_request_tty_token1] = ACTIONS(1314), - [aux_sym_required_rsa_size_token1] = ACTIONS(1314), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1314), - [aux_sym_security_key_provider_token1] = ACTIONS(1314), - [aux_sym_send_env_token1] = ACTIONS(1314), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1314), - [aux_sym_server_alive_interval_token1] = ACTIONS(1314), - [aux_sym_session_type_token1] = ACTIONS(1314), - [aux_sym_set_env_token1] = ACTIONS(1314), - [aux_sym_stdin_null_token1] = ACTIONS(1314), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1314), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1314), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1314), - [aux_sym_syslog_facility_token1] = ACTIONS(1314), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1314), - [aux_sym_keep_alive_token1] = ACTIONS(1314), - [aux_sym_tag_token1] = ACTIONS(1314), - [aux_sym_tunnel_token1] = ACTIONS(1316), - [aux_sym_tunnel_device_token1] = ACTIONS(1314), - [aux_sym_update_host_keys_token1] = ACTIONS(1314), - [aux_sym_use_keychain_token1] = ACTIONS(1314), - [aux_sym_use_roaming_token1] = ACTIONS(1314), - [aux_sym_user_token1] = ACTIONS(1316), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1314), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1314), - [aux_sym_visual_host_key_token1] = ACTIONS(1314), - [aux_sym_xauth_location_token1] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1323), + [aux_sym_match_token1] = ACTIONS(1319), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1319), + [aux_sym_address_family_token1] = ACTIONS(1319), + [aux_sym_batch_mode_token1] = ACTIONS(1319), + [aux_sym_bind_address_token1] = ACTIONS(1319), + [aux_sym_bind_interface_token1] = ACTIONS(1319), + [aux_sym_canonical_domains_token1] = ACTIONS(1319), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1319), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1319), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1319), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1319), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1319), + [aux_sym_certificate_file_token1] = ACTIONS(1319), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1319), + [aux_sym_channel_timeout_token1] = ACTIONS(1319), + [aux_sym_check_host_ip_token1] = ACTIONS(1319), + [aux_sym_ciphers_token1] = ACTIONS(1319), + [aux_sym_cipher_token1] = ACTIONS(1321), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1319), + [aux_sym_compression_token1] = ACTIONS(1319), + [aux_sym_connection_attempts_token1] = ACTIONS(1319), + [aux_sym_connect_timeout_token1] = ACTIONS(1319), + [aux_sym_control_master_token1] = ACTIONS(1319), + [aux_sym_control_path_token1] = ACTIONS(1319), + [aux_sym_control_persist_token1] = ACTIONS(1319), + [aux_sym_dynamic_forward_token1] = ACTIONS(1319), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1319), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1319), + [aux_sym_escape_char_token1] = ACTIONS(1319), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1319), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1319), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1319), + [aux_sym_forward_agent_token1] = ACTIONS(1319), + [aux_sym_forward_x11_token1] = ACTIONS(1321), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1319), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1319), + [aux_sym_gateway_ports_token1] = ACTIONS(1319), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1319), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1319), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1319), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1319), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1319), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1319), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1319), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1319), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1319), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1319), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1319), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1319), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1319), + [aux_sym_host_key_alias_token1] = ACTIONS(1319), + [aux_sym_hostname_token1] = ACTIONS(1319), + [aux_sym_identities_only_token1] = ACTIONS(1319), + [aux_sym_identity_agent_token1] = ACTIONS(1319), + [aux_sym_identity_file_token1] = ACTIONS(1319), + [aux_sym_ignore_unknown_token1] = ACTIONS(1319), + [aux_sym_include_token1] = ACTIONS(1319), + [aux_sym_ip_qos_token1] = ACTIONS(1319), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1319), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1319), + [aux_sym_kex_algorithms_token1] = ACTIONS(1319), + [aux_sym_known_hosts_command_token1] = ACTIONS(1319), + [aux_sym_local_command_token1] = ACTIONS(1319), + [aux_sym_local_forward_token1] = ACTIONS(1319), + [aux_sym_log_level_token1] = ACTIONS(1319), + [aux_sym_log_verbose_token1] = ACTIONS(1319), + [aux_sym_macs_token1] = ACTIONS(1319), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1319), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1319), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1319), + [aux_sym_password_authentication_token1] = ACTIONS(1319), + [aux_sym_permit_local_command_token1] = ACTIONS(1319), + [aux_sym_permit_remote_open_token1] = ACTIONS(1319), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1319), + [aux_sym_port_token1] = ACTIONS(1319), + [aux_sym_preferred_authentications_token1] = ACTIONS(1319), + [aux_sym_protocol_token1] = ACTIONS(1319), + [aux_sym_proxy_command_token1] = ACTIONS(1319), + [aux_sym_proxy_jump_token1] = ACTIONS(1319), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1319), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1319), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1319), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1319), + [aux_sym_rekey_limit_token1] = ACTIONS(1319), + [aux_sym_remote_command_token1] = ACTIONS(1319), + [aux_sym_remote_forward_token1] = ACTIONS(1319), + [aux_sym_request_tty_token1] = ACTIONS(1319), + [aux_sym_required_rsa_size_token1] = ACTIONS(1319), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1319), + [aux_sym_security_key_provider_token1] = ACTIONS(1319), + [aux_sym_send_env_token1] = ACTIONS(1319), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1319), + [aux_sym_server_alive_interval_token1] = ACTIONS(1319), + [aux_sym_session_type_token1] = ACTIONS(1319), + [aux_sym_set_env_token1] = ACTIONS(1319), + [aux_sym_stdin_null_token1] = ACTIONS(1319), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1319), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1319), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1319), + [aux_sym_syslog_facility_token1] = ACTIONS(1319), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1319), + [aux_sym_keep_alive_token1] = ACTIONS(1319), + [aux_sym_tag_token1] = ACTIONS(1319), + [aux_sym_tunnel_token1] = ACTIONS(1321), + [aux_sym_tunnel_device_token1] = ACTIONS(1319), + [aux_sym_update_host_keys_token1] = ACTIONS(1319), + [aux_sym_use_keychain_token1] = ACTIONS(1319), + [aux_sym_use_roaming_token1] = ACTIONS(1319), + [aux_sym_user_token1] = ACTIONS(1321), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1319), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1319), + [aux_sym_visual_host_key_token1] = ACTIONS(1319), + [aux_sym_xauth_location_token1] = ACTIONS(1319), }, [127] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1322), - [anon_sym_DQUOTE] = ACTIONS(1324), - [aux_sym_match_token1] = ACTIONS(1320), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1320), - [aux_sym_address_family_token1] = ACTIONS(1320), - [aux_sym_batch_mode_token1] = ACTIONS(1320), - [aux_sym_bind_address_token1] = ACTIONS(1320), - [aux_sym_bind_interface_token1] = ACTIONS(1320), - [aux_sym_canonical_domains_token1] = ACTIONS(1320), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1320), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1320), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1320), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1320), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1320), - [aux_sym_certificate_file_token1] = ACTIONS(1320), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1320), - [aux_sym_channel_timeout_token1] = ACTIONS(1320), - [aux_sym_check_host_ip_token1] = ACTIONS(1320), - [aux_sym_ciphers_token1] = ACTIONS(1320), - [aux_sym_cipher_token1] = ACTIONS(1322), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1320), - [aux_sym_compression_token1] = ACTIONS(1320), - [aux_sym_connection_attempts_token1] = ACTIONS(1320), - [aux_sym_connect_timeout_token1] = ACTIONS(1320), - [aux_sym_control_master_token1] = ACTIONS(1320), - [aux_sym_control_path_token1] = ACTIONS(1320), - [aux_sym_control_persist_token1] = ACTIONS(1320), - [aux_sym_dynamic_forward_token1] = ACTIONS(1320), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1320), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1320), - [aux_sym_escape_char_token1] = ACTIONS(1320), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1320), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1320), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1320), - [aux_sym_forward_agent_token1] = ACTIONS(1320), - [aux_sym_forward_x11_token1] = ACTIONS(1322), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1320), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1320), - [aux_sym_gateway_ports_token1] = ACTIONS(1320), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1320), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1320), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1320), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1320), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1320), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1320), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1320), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1320), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1320), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1320), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1320), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1320), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1320), - [aux_sym_host_key_alias_token1] = ACTIONS(1320), - [aux_sym_hostname_token1] = ACTIONS(1320), - [aux_sym_identities_only_token1] = ACTIONS(1320), - [aux_sym_identity_agent_token1] = ACTIONS(1320), - [aux_sym_identity_file_token1] = ACTIONS(1320), - [aux_sym_ignore_unknown_token1] = ACTIONS(1320), - [aux_sym_include_token1] = ACTIONS(1320), - [aux_sym_ip_qos_token1] = ACTIONS(1320), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1320), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1320), - [aux_sym_kex_algorithms_token1] = ACTIONS(1320), - [aux_sym_known_hosts_command_token1] = ACTIONS(1320), - [aux_sym_local_command_token1] = ACTIONS(1320), - [aux_sym_local_forward_token1] = ACTIONS(1320), - [aux_sym_log_level_token1] = ACTIONS(1320), - [aux_sym_log_verbose_token1] = ACTIONS(1320), - [aux_sym_macs_token1] = ACTIONS(1320), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1320), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1320), - [aux_sym_password_authentication_token1] = ACTIONS(1320), - [aux_sym_permit_local_command_token1] = ACTIONS(1320), - [aux_sym_permit_remote_open_token1] = ACTIONS(1320), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1320), - [aux_sym_port_token1] = ACTIONS(1320), - [aux_sym_preferred_authentications_token1] = ACTIONS(1320), - [aux_sym_protocol_token1] = ACTIONS(1320), - [aux_sym_proxy_command_token1] = ACTIONS(1320), - [aux_sym_proxy_jump_token1] = ACTIONS(1320), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1320), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1320), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1320), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1320), - [aux_sym_rekey_limit_token1] = ACTIONS(1320), - [aux_sym_remote_command_token1] = ACTIONS(1320), - [aux_sym_remote_forward_token1] = ACTIONS(1320), - [aux_sym_request_tty_token1] = ACTIONS(1320), - [aux_sym_required_rsa_size_token1] = ACTIONS(1320), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1320), - [aux_sym_security_key_provider_token1] = ACTIONS(1320), - [aux_sym_send_env_token1] = ACTIONS(1320), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1320), - [aux_sym_server_alive_interval_token1] = ACTIONS(1320), - [aux_sym_session_type_token1] = ACTIONS(1320), - [aux_sym_set_env_token1] = ACTIONS(1320), - [aux_sym_stdin_null_token1] = ACTIONS(1320), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1320), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1320), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1320), - [aux_sym_syslog_facility_token1] = ACTIONS(1320), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1320), - [aux_sym_keep_alive_token1] = ACTIONS(1320), - [aux_sym_tag_token1] = ACTIONS(1320), - [aux_sym_tunnel_token1] = ACTIONS(1322), - [aux_sym_tunnel_device_token1] = ACTIONS(1320), - [aux_sym_update_host_keys_token1] = ACTIONS(1320), - [aux_sym_use_keychain_token1] = ACTIONS(1320), - [aux_sym_use_roaming_token1] = ACTIONS(1320), - [aux_sym_user_token1] = ACTIONS(1322), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1320), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1320), - [aux_sym_visual_host_key_token1] = ACTIONS(1320), - [aux_sym_xauth_location_token1] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(1329), + [aux_sym_match_token1] = ACTIONS(1325), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1325), + [aux_sym_address_family_token1] = ACTIONS(1325), + [aux_sym_batch_mode_token1] = ACTIONS(1325), + [aux_sym_bind_address_token1] = ACTIONS(1325), + [aux_sym_bind_interface_token1] = ACTIONS(1325), + [aux_sym_canonical_domains_token1] = ACTIONS(1325), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1325), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1325), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1325), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1325), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1325), + [aux_sym_certificate_file_token1] = ACTIONS(1325), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1325), + [aux_sym_channel_timeout_token1] = ACTIONS(1325), + [aux_sym_check_host_ip_token1] = ACTIONS(1325), + [aux_sym_ciphers_token1] = ACTIONS(1325), + [aux_sym_cipher_token1] = ACTIONS(1327), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1325), + [aux_sym_compression_token1] = ACTIONS(1325), + [aux_sym_connection_attempts_token1] = ACTIONS(1325), + [aux_sym_connect_timeout_token1] = ACTIONS(1325), + [aux_sym_control_master_token1] = ACTIONS(1325), + [aux_sym_control_path_token1] = ACTIONS(1325), + [aux_sym_control_persist_token1] = ACTIONS(1325), + [aux_sym_dynamic_forward_token1] = ACTIONS(1325), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1325), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1325), + [aux_sym_escape_char_token1] = ACTIONS(1325), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1325), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1325), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1325), + [aux_sym_forward_agent_token1] = ACTIONS(1325), + [aux_sym_forward_x11_token1] = ACTIONS(1327), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1325), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1325), + [aux_sym_gateway_ports_token1] = ACTIONS(1325), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1325), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1325), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1325), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1325), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1325), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1325), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1325), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1325), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1325), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1325), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1325), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1325), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1325), + [aux_sym_host_key_alias_token1] = ACTIONS(1325), + [aux_sym_hostname_token1] = ACTIONS(1325), + [aux_sym_identities_only_token1] = ACTIONS(1325), + [aux_sym_identity_agent_token1] = ACTIONS(1325), + [aux_sym_identity_file_token1] = ACTIONS(1325), + [aux_sym_ignore_unknown_token1] = ACTIONS(1325), + [aux_sym_include_token1] = ACTIONS(1325), + [aux_sym_ip_qos_token1] = ACTIONS(1325), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1325), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1325), + [aux_sym_kex_algorithms_token1] = ACTIONS(1325), + [aux_sym_known_hosts_command_token1] = ACTIONS(1325), + [aux_sym_local_command_token1] = ACTIONS(1325), + [aux_sym_local_forward_token1] = ACTIONS(1325), + [aux_sym_log_level_token1] = ACTIONS(1325), + [aux_sym_log_verbose_token1] = ACTIONS(1325), + [aux_sym_macs_token1] = ACTIONS(1325), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1325), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1325), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1325), + [aux_sym_password_authentication_token1] = ACTIONS(1325), + [aux_sym_permit_local_command_token1] = ACTIONS(1325), + [aux_sym_permit_remote_open_token1] = ACTIONS(1325), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1325), + [aux_sym_port_token1] = ACTIONS(1325), + [aux_sym_preferred_authentications_token1] = ACTIONS(1325), + [aux_sym_protocol_token1] = ACTIONS(1325), + [aux_sym_proxy_command_token1] = ACTIONS(1325), + [aux_sym_proxy_jump_token1] = ACTIONS(1325), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1325), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1325), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1325), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1325), + [aux_sym_rekey_limit_token1] = ACTIONS(1325), + [aux_sym_remote_command_token1] = ACTIONS(1325), + [aux_sym_remote_forward_token1] = ACTIONS(1325), + [aux_sym_request_tty_token1] = ACTIONS(1325), + [aux_sym_required_rsa_size_token1] = ACTIONS(1325), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1325), + [aux_sym_security_key_provider_token1] = ACTIONS(1325), + [aux_sym_send_env_token1] = ACTIONS(1325), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1325), + [aux_sym_server_alive_interval_token1] = ACTIONS(1325), + [aux_sym_session_type_token1] = ACTIONS(1325), + [aux_sym_set_env_token1] = ACTIONS(1325), + [aux_sym_stdin_null_token1] = ACTIONS(1325), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1325), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1325), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1325), + [aux_sym_syslog_facility_token1] = ACTIONS(1325), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1325), + [aux_sym_keep_alive_token1] = ACTIONS(1325), + [aux_sym_tag_token1] = ACTIONS(1325), + [aux_sym_tunnel_token1] = ACTIONS(1327), + [aux_sym_tunnel_device_token1] = ACTIONS(1325), + [aux_sym_update_host_keys_token1] = ACTIONS(1325), + [aux_sym_use_keychain_token1] = ACTIONS(1325), + [aux_sym_use_roaming_token1] = ACTIONS(1325), + [aux_sym_user_token1] = ACTIONS(1327), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1325), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1325), + [aux_sym_visual_host_key_token1] = ACTIONS(1325), + [aux_sym_xauth_location_token1] = ACTIONS(1325), }, [128] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1330), - [aux_sym_match_token1] = ACTIONS(1326), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1326), - [aux_sym_address_family_token1] = ACTIONS(1326), - [aux_sym_batch_mode_token1] = ACTIONS(1326), - [aux_sym_bind_address_token1] = ACTIONS(1326), - [aux_sym_bind_interface_token1] = ACTIONS(1326), - [aux_sym_canonical_domains_token1] = ACTIONS(1326), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1326), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1326), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1326), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1326), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1326), - [aux_sym_certificate_file_token1] = ACTIONS(1326), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1326), - [aux_sym_channel_timeout_token1] = ACTIONS(1326), - [aux_sym_check_host_ip_token1] = ACTIONS(1326), - [aux_sym_ciphers_token1] = ACTIONS(1326), - [aux_sym_cipher_token1] = ACTIONS(1328), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1326), - [aux_sym_compression_token1] = ACTIONS(1326), - [aux_sym_connection_attempts_token1] = ACTIONS(1326), - [aux_sym_connect_timeout_token1] = ACTIONS(1326), - [aux_sym_control_master_token1] = ACTIONS(1326), - [aux_sym_control_path_token1] = ACTIONS(1326), - [aux_sym_control_persist_token1] = ACTIONS(1326), - [aux_sym_dynamic_forward_token1] = ACTIONS(1326), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1326), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1326), - [aux_sym_escape_char_token1] = ACTIONS(1326), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1326), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1326), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1326), - [aux_sym_forward_agent_token1] = ACTIONS(1326), - [aux_sym_forward_x11_token1] = ACTIONS(1328), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1326), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1326), - [aux_sym_gateway_ports_token1] = ACTIONS(1326), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1326), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1326), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1326), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1326), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1326), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1326), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1326), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1326), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1326), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1326), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1326), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1326), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1326), - [aux_sym_host_key_alias_token1] = ACTIONS(1326), - [aux_sym_hostname_token1] = ACTIONS(1326), - [aux_sym_identities_only_token1] = ACTIONS(1326), - [aux_sym_identity_agent_token1] = ACTIONS(1326), - [aux_sym_identity_file_token1] = ACTIONS(1326), - [aux_sym_ignore_unknown_token1] = ACTIONS(1326), - [aux_sym_include_token1] = ACTIONS(1326), - [aux_sym_ip_qos_token1] = ACTIONS(1326), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1326), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1326), - [aux_sym_kex_algorithms_token1] = ACTIONS(1326), - [aux_sym_known_hosts_command_token1] = ACTIONS(1326), - [aux_sym_local_command_token1] = ACTIONS(1326), - [aux_sym_local_forward_token1] = ACTIONS(1326), - [aux_sym_log_level_token1] = ACTIONS(1326), - [aux_sym_log_verbose_token1] = ACTIONS(1326), - [aux_sym_macs_token1] = ACTIONS(1326), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1326), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1326), - [aux_sym_password_authentication_token1] = ACTIONS(1326), - [aux_sym_permit_local_command_token1] = ACTIONS(1326), - [aux_sym_permit_remote_open_token1] = ACTIONS(1326), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1326), - [aux_sym_port_token1] = ACTIONS(1326), - [aux_sym_preferred_authentications_token1] = ACTIONS(1326), - [aux_sym_protocol_token1] = ACTIONS(1326), - [aux_sym_proxy_command_token1] = ACTIONS(1326), - [aux_sym_proxy_jump_token1] = ACTIONS(1326), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1326), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1326), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1326), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1326), - [aux_sym_rekey_limit_token1] = ACTIONS(1326), - [aux_sym_remote_command_token1] = ACTIONS(1326), - [aux_sym_remote_forward_token1] = ACTIONS(1326), - [aux_sym_request_tty_token1] = ACTIONS(1326), - [aux_sym_required_rsa_size_token1] = ACTIONS(1326), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1326), - [aux_sym_security_key_provider_token1] = ACTIONS(1326), - [aux_sym_send_env_token1] = ACTIONS(1326), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1326), - [aux_sym_server_alive_interval_token1] = ACTIONS(1326), - [aux_sym_session_type_token1] = ACTIONS(1326), - [aux_sym_set_env_token1] = ACTIONS(1326), - [aux_sym_stdin_null_token1] = ACTIONS(1326), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1326), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1326), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1326), - [aux_sym_syslog_facility_token1] = ACTIONS(1326), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1326), - [aux_sym_keep_alive_token1] = ACTIONS(1326), - [aux_sym_tag_token1] = ACTIONS(1326), - [aux_sym_tunnel_token1] = ACTIONS(1328), - [aux_sym_tunnel_device_token1] = ACTIONS(1326), - [aux_sym_update_host_keys_token1] = ACTIONS(1326), - [aux_sym_use_keychain_token1] = ACTIONS(1326), - [aux_sym_use_roaming_token1] = ACTIONS(1326), - [aux_sym_user_token1] = ACTIONS(1328), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1326), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1326), - [aux_sym_visual_host_key_token1] = ACTIONS(1326), - [aux_sym_xauth_location_token1] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(1335), + [aux_sym_match_token1] = ACTIONS(1331), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1331), + [aux_sym_address_family_token1] = ACTIONS(1331), + [aux_sym_batch_mode_token1] = ACTIONS(1331), + [aux_sym_bind_address_token1] = ACTIONS(1331), + [aux_sym_bind_interface_token1] = ACTIONS(1331), + [aux_sym_canonical_domains_token1] = ACTIONS(1331), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1331), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1331), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1331), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1331), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1331), + [aux_sym_certificate_file_token1] = ACTIONS(1331), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1331), + [aux_sym_channel_timeout_token1] = ACTIONS(1331), + [aux_sym_check_host_ip_token1] = ACTIONS(1331), + [aux_sym_ciphers_token1] = ACTIONS(1331), + [aux_sym_cipher_token1] = ACTIONS(1333), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1331), + [aux_sym_compression_token1] = ACTIONS(1331), + [aux_sym_connection_attempts_token1] = ACTIONS(1331), + [aux_sym_connect_timeout_token1] = ACTIONS(1331), + [aux_sym_control_master_token1] = ACTIONS(1331), + [aux_sym_control_path_token1] = ACTIONS(1331), + [aux_sym_control_persist_token1] = ACTIONS(1331), + [aux_sym_dynamic_forward_token1] = ACTIONS(1331), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1331), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1331), + [aux_sym_escape_char_token1] = ACTIONS(1331), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1331), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1331), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1331), + [aux_sym_forward_agent_token1] = ACTIONS(1331), + [aux_sym_forward_x11_token1] = ACTIONS(1333), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1331), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1331), + [aux_sym_gateway_ports_token1] = ACTIONS(1331), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1331), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1331), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1331), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1331), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1331), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1331), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1331), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1331), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1331), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1331), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1331), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1331), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1331), + [aux_sym_host_key_alias_token1] = ACTIONS(1331), + [aux_sym_hostname_token1] = ACTIONS(1331), + [aux_sym_identities_only_token1] = ACTIONS(1331), + [aux_sym_identity_agent_token1] = ACTIONS(1331), + [aux_sym_identity_file_token1] = ACTIONS(1331), + [aux_sym_ignore_unknown_token1] = ACTIONS(1331), + [aux_sym_include_token1] = ACTIONS(1331), + [aux_sym_ip_qos_token1] = ACTIONS(1331), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1331), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1331), + [aux_sym_kex_algorithms_token1] = ACTIONS(1331), + [aux_sym_known_hosts_command_token1] = ACTIONS(1331), + [aux_sym_local_command_token1] = ACTIONS(1331), + [aux_sym_local_forward_token1] = ACTIONS(1331), + [aux_sym_log_level_token1] = ACTIONS(1331), + [aux_sym_log_verbose_token1] = ACTIONS(1331), + [aux_sym_macs_token1] = ACTIONS(1331), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1331), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1331), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1331), + [aux_sym_password_authentication_token1] = ACTIONS(1331), + [aux_sym_permit_local_command_token1] = ACTIONS(1331), + [aux_sym_permit_remote_open_token1] = ACTIONS(1331), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1331), + [aux_sym_port_token1] = ACTIONS(1331), + [aux_sym_preferred_authentications_token1] = ACTIONS(1331), + [aux_sym_protocol_token1] = ACTIONS(1331), + [aux_sym_proxy_command_token1] = ACTIONS(1331), + [aux_sym_proxy_jump_token1] = ACTIONS(1331), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1331), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1331), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1331), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1331), + [aux_sym_rekey_limit_token1] = ACTIONS(1331), + [aux_sym_remote_command_token1] = ACTIONS(1331), + [aux_sym_remote_forward_token1] = ACTIONS(1331), + [aux_sym_request_tty_token1] = ACTIONS(1331), + [aux_sym_required_rsa_size_token1] = ACTIONS(1331), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1331), + [aux_sym_security_key_provider_token1] = ACTIONS(1331), + [aux_sym_send_env_token1] = ACTIONS(1331), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1331), + [aux_sym_server_alive_interval_token1] = ACTIONS(1331), + [aux_sym_session_type_token1] = ACTIONS(1331), + [aux_sym_set_env_token1] = ACTIONS(1331), + [aux_sym_stdin_null_token1] = ACTIONS(1331), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1331), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1331), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1331), + [aux_sym_syslog_facility_token1] = ACTIONS(1331), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1331), + [aux_sym_keep_alive_token1] = ACTIONS(1331), + [aux_sym_tag_token1] = ACTIONS(1331), + [aux_sym_tunnel_token1] = ACTIONS(1333), + [aux_sym_tunnel_device_token1] = ACTIONS(1331), + [aux_sym_update_host_keys_token1] = ACTIONS(1331), + [aux_sym_use_keychain_token1] = ACTIONS(1331), + [aux_sym_use_roaming_token1] = ACTIONS(1331), + [aux_sym_user_token1] = ACTIONS(1333), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1331), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1331), + [aux_sym_visual_host_key_token1] = ACTIONS(1331), + [aux_sym_xauth_location_token1] = ACTIONS(1331), }, [129] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1336), - [aux_sym_match_token1] = ACTIONS(1332), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1332), - [aux_sym_address_family_token1] = ACTIONS(1332), - [aux_sym_batch_mode_token1] = ACTIONS(1332), - [aux_sym_bind_address_token1] = ACTIONS(1332), - [aux_sym_bind_interface_token1] = ACTIONS(1332), - [aux_sym_canonical_domains_token1] = ACTIONS(1332), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1332), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1332), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1332), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1332), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1332), - [aux_sym_certificate_file_token1] = ACTIONS(1332), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1332), - [aux_sym_channel_timeout_token1] = ACTIONS(1332), - [aux_sym_check_host_ip_token1] = ACTIONS(1332), - [aux_sym_ciphers_token1] = ACTIONS(1332), - [aux_sym_cipher_token1] = ACTIONS(1334), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1332), - [aux_sym_compression_token1] = ACTIONS(1332), - [aux_sym_connection_attempts_token1] = ACTIONS(1332), - [aux_sym_connect_timeout_token1] = ACTIONS(1332), - [aux_sym_control_master_token1] = ACTIONS(1332), - [aux_sym_control_path_token1] = ACTIONS(1332), - [aux_sym_control_persist_token1] = ACTIONS(1332), - [aux_sym_dynamic_forward_token1] = ACTIONS(1332), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1332), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1332), - [aux_sym_escape_char_token1] = ACTIONS(1332), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1332), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1332), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1332), - [aux_sym_forward_agent_token1] = ACTIONS(1332), - [aux_sym_forward_x11_token1] = ACTIONS(1334), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1332), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1332), - [aux_sym_gateway_ports_token1] = ACTIONS(1332), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1332), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1332), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1332), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1332), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1332), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1332), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1332), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1332), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1332), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1332), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1332), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1332), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1332), - [aux_sym_host_key_alias_token1] = ACTIONS(1332), - [aux_sym_hostname_token1] = ACTIONS(1332), - [aux_sym_identities_only_token1] = ACTIONS(1332), - [aux_sym_identity_agent_token1] = ACTIONS(1332), - [aux_sym_identity_file_token1] = ACTIONS(1332), - [aux_sym_ignore_unknown_token1] = ACTIONS(1332), - [aux_sym_include_token1] = ACTIONS(1332), - [aux_sym_ip_qos_token1] = ACTIONS(1332), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1332), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1332), - [aux_sym_kex_algorithms_token1] = ACTIONS(1332), - [aux_sym_known_hosts_command_token1] = ACTIONS(1332), - [aux_sym_local_command_token1] = ACTIONS(1332), - [aux_sym_local_forward_token1] = ACTIONS(1332), - [aux_sym_log_level_token1] = ACTIONS(1332), - [aux_sym_log_verbose_token1] = ACTIONS(1332), - [aux_sym_macs_token1] = ACTIONS(1332), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1332), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1332), - [aux_sym_password_authentication_token1] = ACTIONS(1332), - [aux_sym_permit_local_command_token1] = ACTIONS(1332), - [aux_sym_permit_remote_open_token1] = ACTIONS(1332), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1332), - [aux_sym_port_token1] = ACTIONS(1332), - [aux_sym_preferred_authentications_token1] = ACTIONS(1332), - [aux_sym_protocol_token1] = ACTIONS(1332), - [aux_sym_proxy_command_token1] = ACTIONS(1332), - [aux_sym_proxy_jump_token1] = ACTIONS(1332), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1332), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1332), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1332), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1332), - [aux_sym_rekey_limit_token1] = ACTIONS(1332), - [aux_sym_remote_command_token1] = ACTIONS(1332), - [aux_sym_remote_forward_token1] = ACTIONS(1332), - [aux_sym_request_tty_token1] = ACTIONS(1332), - [aux_sym_required_rsa_size_token1] = ACTIONS(1332), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1332), - [aux_sym_security_key_provider_token1] = ACTIONS(1332), - [aux_sym_send_env_token1] = ACTIONS(1332), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1332), - [aux_sym_server_alive_interval_token1] = ACTIONS(1332), - [aux_sym_session_type_token1] = ACTIONS(1332), - [aux_sym_set_env_token1] = ACTIONS(1332), - [aux_sym_stdin_null_token1] = ACTIONS(1332), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1332), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1332), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1332), - [aux_sym_syslog_facility_token1] = ACTIONS(1332), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1332), - [aux_sym_keep_alive_token1] = ACTIONS(1332), - [aux_sym_tag_token1] = ACTIONS(1332), - [aux_sym_tunnel_token1] = ACTIONS(1334), - [aux_sym_tunnel_device_token1] = ACTIONS(1332), - [aux_sym_update_host_keys_token1] = ACTIONS(1332), - [aux_sym_use_keychain_token1] = ACTIONS(1332), - [aux_sym_use_roaming_token1] = ACTIONS(1332), - [aux_sym_user_token1] = ACTIONS(1334), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1332), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1332), - [aux_sym_visual_host_key_token1] = ACTIONS(1332), - [aux_sym_xauth_location_token1] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1339), + [anon_sym_DQUOTE] = ACTIONS(1341), + [aux_sym_match_token1] = ACTIONS(1337), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1337), + [aux_sym_address_family_token1] = ACTIONS(1337), + [aux_sym_batch_mode_token1] = ACTIONS(1337), + [aux_sym_bind_address_token1] = ACTIONS(1337), + [aux_sym_bind_interface_token1] = ACTIONS(1337), + [aux_sym_canonical_domains_token1] = ACTIONS(1337), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1337), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1337), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1337), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1337), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1337), + [aux_sym_certificate_file_token1] = ACTIONS(1337), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1337), + [aux_sym_channel_timeout_token1] = ACTIONS(1337), + [aux_sym_check_host_ip_token1] = ACTIONS(1337), + [aux_sym_ciphers_token1] = ACTIONS(1337), + [aux_sym_cipher_token1] = ACTIONS(1339), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1337), + [aux_sym_compression_token1] = ACTIONS(1337), + [aux_sym_connection_attempts_token1] = ACTIONS(1337), + [aux_sym_connect_timeout_token1] = ACTIONS(1337), + [aux_sym_control_master_token1] = ACTIONS(1337), + [aux_sym_control_path_token1] = ACTIONS(1337), + [aux_sym_control_persist_token1] = ACTIONS(1337), + [aux_sym_dynamic_forward_token1] = ACTIONS(1337), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1337), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1337), + [aux_sym_escape_char_token1] = ACTIONS(1337), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1337), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1337), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1337), + [aux_sym_forward_agent_token1] = ACTIONS(1337), + [aux_sym_forward_x11_token1] = ACTIONS(1339), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1337), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1337), + [aux_sym_gateway_ports_token1] = ACTIONS(1337), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1337), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1337), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1337), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1337), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1337), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1337), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1337), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1337), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1337), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1337), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1337), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1337), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1337), + [aux_sym_host_key_alias_token1] = ACTIONS(1337), + [aux_sym_hostname_token1] = ACTIONS(1337), + [aux_sym_identities_only_token1] = ACTIONS(1337), + [aux_sym_identity_agent_token1] = ACTIONS(1337), + [aux_sym_identity_file_token1] = ACTIONS(1337), + [aux_sym_ignore_unknown_token1] = ACTIONS(1337), + [aux_sym_include_token1] = ACTIONS(1337), + [aux_sym_ip_qos_token1] = ACTIONS(1337), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1337), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1337), + [aux_sym_kex_algorithms_token1] = ACTIONS(1337), + [aux_sym_known_hosts_command_token1] = ACTIONS(1337), + [aux_sym_local_command_token1] = ACTIONS(1337), + [aux_sym_local_forward_token1] = ACTIONS(1337), + [aux_sym_log_level_token1] = ACTIONS(1337), + [aux_sym_log_verbose_token1] = ACTIONS(1337), + [aux_sym_macs_token1] = ACTIONS(1337), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1337), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1337), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1337), + [aux_sym_password_authentication_token1] = ACTIONS(1337), + [aux_sym_permit_local_command_token1] = ACTIONS(1337), + [aux_sym_permit_remote_open_token1] = ACTIONS(1337), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1337), + [aux_sym_port_token1] = ACTIONS(1337), + [aux_sym_preferred_authentications_token1] = ACTIONS(1337), + [aux_sym_protocol_token1] = ACTIONS(1337), + [aux_sym_proxy_command_token1] = ACTIONS(1337), + [aux_sym_proxy_jump_token1] = ACTIONS(1337), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1337), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1337), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1337), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1337), + [aux_sym_rekey_limit_token1] = ACTIONS(1337), + [aux_sym_remote_command_token1] = ACTIONS(1337), + [aux_sym_remote_forward_token1] = ACTIONS(1337), + [aux_sym_request_tty_token1] = ACTIONS(1337), + [aux_sym_required_rsa_size_token1] = ACTIONS(1337), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1337), + [aux_sym_security_key_provider_token1] = ACTIONS(1337), + [aux_sym_send_env_token1] = ACTIONS(1337), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1337), + [aux_sym_server_alive_interval_token1] = ACTIONS(1337), + [aux_sym_session_type_token1] = ACTIONS(1337), + [aux_sym_set_env_token1] = ACTIONS(1337), + [aux_sym_stdin_null_token1] = ACTIONS(1337), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1337), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1337), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1337), + [aux_sym_syslog_facility_token1] = ACTIONS(1337), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1337), + [aux_sym_keep_alive_token1] = ACTIONS(1337), + [aux_sym_tag_token1] = ACTIONS(1337), + [aux_sym_tunnel_token1] = ACTIONS(1339), + [aux_sym_tunnel_device_token1] = ACTIONS(1337), + [aux_sym_update_host_keys_token1] = ACTIONS(1337), + [aux_sym_use_keychain_token1] = ACTIONS(1337), + [aux_sym_use_roaming_token1] = ACTIONS(1337), + [aux_sym_user_token1] = ACTIONS(1339), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1337), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1337), + [aux_sym_visual_host_key_token1] = ACTIONS(1337), + [aux_sym_xauth_location_token1] = ACTIONS(1337), }, [130] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1342), - [aux_sym_match_token1] = ACTIONS(1338), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1338), - [aux_sym_address_family_token1] = ACTIONS(1338), - [aux_sym_batch_mode_token1] = ACTIONS(1338), - [aux_sym_bind_address_token1] = ACTIONS(1338), - [aux_sym_bind_interface_token1] = ACTIONS(1338), - [aux_sym_canonical_domains_token1] = ACTIONS(1338), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1338), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1338), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1338), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1338), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1338), - [aux_sym_certificate_file_token1] = ACTIONS(1338), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1338), - [aux_sym_channel_timeout_token1] = ACTIONS(1338), - [aux_sym_check_host_ip_token1] = ACTIONS(1338), - [aux_sym_ciphers_token1] = ACTIONS(1338), - [aux_sym_cipher_token1] = ACTIONS(1340), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1338), - [aux_sym_compression_token1] = ACTIONS(1338), - [aux_sym_connection_attempts_token1] = ACTIONS(1338), - [aux_sym_connect_timeout_token1] = ACTIONS(1338), - [aux_sym_control_master_token1] = ACTIONS(1338), - [aux_sym_control_path_token1] = ACTIONS(1338), - [aux_sym_control_persist_token1] = ACTIONS(1338), - [aux_sym_dynamic_forward_token1] = ACTIONS(1338), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1338), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1338), - [aux_sym_escape_char_token1] = ACTIONS(1338), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1338), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1338), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1338), - [aux_sym_forward_agent_token1] = ACTIONS(1338), - [aux_sym_forward_x11_token1] = ACTIONS(1340), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1338), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1338), - [aux_sym_gateway_ports_token1] = ACTIONS(1338), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1338), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1338), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1338), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1338), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1338), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1338), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1338), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1338), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1338), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1338), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1338), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1338), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1338), - [aux_sym_host_key_alias_token1] = ACTIONS(1338), - [aux_sym_hostname_token1] = ACTIONS(1338), - [aux_sym_identities_only_token1] = ACTIONS(1338), - [aux_sym_identity_agent_token1] = ACTIONS(1338), - [aux_sym_identity_file_token1] = ACTIONS(1338), - [aux_sym_ignore_unknown_token1] = ACTIONS(1338), - [aux_sym_include_token1] = ACTIONS(1338), - [aux_sym_ip_qos_token1] = ACTIONS(1338), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1338), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1338), - [aux_sym_kex_algorithms_token1] = ACTIONS(1338), - [aux_sym_known_hosts_command_token1] = ACTIONS(1338), - [aux_sym_local_command_token1] = ACTIONS(1338), - [aux_sym_local_forward_token1] = ACTIONS(1338), - [aux_sym_log_level_token1] = ACTIONS(1338), - [aux_sym_log_verbose_token1] = ACTIONS(1338), - [aux_sym_macs_token1] = ACTIONS(1338), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1338), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1338), - [aux_sym_password_authentication_token1] = ACTIONS(1338), - [aux_sym_permit_local_command_token1] = ACTIONS(1338), - [aux_sym_permit_remote_open_token1] = ACTIONS(1338), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1338), - [aux_sym_port_token1] = ACTIONS(1338), - [aux_sym_preferred_authentications_token1] = ACTIONS(1338), - [aux_sym_protocol_token1] = ACTIONS(1338), - [aux_sym_proxy_command_token1] = ACTIONS(1338), - [aux_sym_proxy_jump_token1] = ACTIONS(1338), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1338), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1338), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1338), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1338), - [aux_sym_rekey_limit_token1] = ACTIONS(1338), - [aux_sym_remote_command_token1] = ACTIONS(1338), - [aux_sym_remote_forward_token1] = ACTIONS(1338), - [aux_sym_request_tty_token1] = ACTIONS(1338), - [aux_sym_required_rsa_size_token1] = ACTIONS(1338), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1338), - [aux_sym_security_key_provider_token1] = ACTIONS(1338), - [aux_sym_send_env_token1] = ACTIONS(1338), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1338), - [aux_sym_server_alive_interval_token1] = ACTIONS(1338), - [aux_sym_session_type_token1] = ACTIONS(1338), - [aux_sym_set_env_token1] = ACTIONS(1338), - [aux_sym_stdin_null_token1] = ACTIONS(1338), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1338), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1338), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1338), - [aux_sym_syslog_facility_token1] = ACTIONS(1338), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1338), - [aux_sym_keep_alive_token1] = ACTIONS(1338), - [aux_sym_tag_token1] = ACTIONS(1338), - [aux_sym_tunnel_token1] = ACTIONS(1340), - [aux_sym_tunnel_device_token1] = ACTIONS(1338), - [aux_sym_update_host_keys_token1] = ACTIONS(1338), - [aux_sym_use_keychain_token1] = ACTIONS(1338), - [aux_sym_use_roaming_token1] = ACTIONS(1338), - [aux_sym_user_token1] = ACTIONS(1340), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1338), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1338), - [aux_sym_visual_host_key_token1] = ACTIONS(1338), - [aux_sym_xauth_location_token1] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1345), + [anon_sym_DQUOTE] = ACTIONS(1347), + [aux_sym_match_token1] = ACTIONS(1343), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1343), + [aux_sym_address_family_token1] = ACTIONS(1343), + [aux_sym_batch_mode_token1] = ACTIONS(1343), + [aux_sym_bind_address_token1] = ACTIONS(1343), + [aux_sym_bind_interface_token1] = ACTIONS(1343), + [aux_sym_canonical_domains_token1] = ACTIONS(1343), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1343), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1343), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1343), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1343), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1343), + [aux_sym_certificate_file_token1] = ACTIONS(1343), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1343), + [aux_sym_channel_timeout_token1] = ACTIONS(1343), + [aux_sym_check_host_ip_token1] = ACTIONS(1343), + [aux_sym_ciphers_token1] = ACTIONS(1343), + [aux_sym_cipher_token1] = ACTIONS(1345), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1343), + [aux_sym_compression_token1] = ACTIONS(1343), + [aux_sym_connection_attempts_token1] = ACTIONS(1343), + [aux_sym_connect_timeout_token1] = ACTIONS(1343), + [aux_sym_control_master_token1] = ACTIONS(1343), + [aux_sym_control_path_token1] = ACTIONS(1343), + [aux_sym_control_persist_token1] = ACTIONS(1343), + [aux_sym_dynamic_forward_token1] = ACTIONS(1343), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1343), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1343), + [aux_sym_escape_char_token1] = ACTIONS(1343), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1343), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1343), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1343), + [aux_sym_forward_agent_token1] = ACTIONS(1343), + [aux_sym_forward_x11_token1] = ACTIONS(1345), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1343), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1343), + [aux_sym_gateway_ports_token1] = ACTIONS(1343), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1343), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1343), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1343), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1343), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1343), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1343), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1343), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1343), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1343), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1343), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1343), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1343), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1343), + [aux_sym_host_key_alias_token1] = ACTIONS(1343), + [aux_sym_hostname_token1] = ACTIONS(1343), + [aux_sym_identities_only_token1] = ACTIONS(1343), + [aux_sym_identity_agent_token1] = ACTIONS(1343), + [aux_sym_identity_file_token1] = ACTIONS(1343), + [aux_sym_ignore_unknown_token1] = ACTIONS(1343), + [aux_sym_include_token1] = ACTIONS(1343), + [aux_sym_ip_qos_token1] = ACTIONS(1343), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1343), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1343), + [aux_sym_kex_algorithms_token1] = ACTIONS(1343), + [aux_sym_known_hosts_command_token1] = ACTIONS(1343), + [aux_sym_local_command_token1] = ACTIONS(1343), + [aux_sym_local_forward_token1] = ACTIONS(1343), + [aux_sym_log_level_token1] = ACTIONS(1343), + [aux_sym_log_verbose_token1] = ACTIONS(1343), + [aux_sym_macs_token1] = ACTIONS(1343), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1343), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1343), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1343), + [aux_sym_password_authentication_token1] = ACTIONS(1343), + [aux_sym_permit_local_command_token1] = ACTIONS(1343), + [aux_sym_permit_remote_open_token1] = ACTIONS(1343), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1343), + [aux_sym_port_token1] = ACTIONS(1343), + [aux_sym_preferred_authentications_token1] = ACTIONS(1343), + [aux_sym_protocol_token1] = ACTIONS(1343), + [aux_sym_proxy_command_token1] = ACTIONS(1343), + [aux_sym_proxy_jump_token1] = ACTIONS(1343), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1343), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1343), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1343), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1343), + [aux_sym_rekey_limit_token1] = ACTIONS(1343), + [aux_sym_remote_command_token1] = ACTIONS(1343), + [aux_sym_remote_forward_token1] = ACTIONS(1343), + [aux_sym_request_tty_token1] = ACTIONS(1343), + [aux_sym_required_rsa_size_token1] = ACTIONS(1343), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1343), + [aux_sym_security_key_provider_token1] = ACTIONS(1343), + [aux_sym_send_env_token1] = ACTIONS(1343), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1343), + [aux_sym_server_alive_interval_token1] = ACTIONS(1343), + [aux_sym_session_type_token1] = ACTIONS(1343), + [aux_sym_set_env_token1] = ACTIONS(1343), + [aux_sym_stdin_null_token1] = ACTIONS(1343), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1343), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1343), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1343), + [aux_sym_syslog_facility_token1] = ACTIONS(1343), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1343), + [aux_sym_keep_alive_token1] = ACTIONS(1343), + [aux_sym_tag_token1] = ACTIONS(1343), + [aux_sym_tunnel_token1] = ACTIONS(1345), + [aux_sym_tunnel_device_token1] = ACTIONS(1343), + [aux_sym_update_host_keys_token1] = ACTIONS(1343), + [aux_sym_use_keychain_token1] = ACTIONS(1343), + [aux_sym_use_roaming_token1] = ACTIONS(1343), + [aux_sym_user_token1] = ACTIONS(1345), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1343), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1343), + [aux_sym_visual_host_key_token1] = ACTIONS(1343), + [aux_sym_xauth_location_token1] = ACTIONS(1343), }, [131] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1346), - [anon_sym_DQUOTE] = ACTIONS(1348), - [aux_sym_match_token1] = ACTIONS(1344), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1344), - [aux_sym_address_family_token1] = ACTIONS(1344), - [aux_sym_batch_mode_token1] = ACTIONS(1344), - [aux_sym_bind_address_token1] = ACTIONS(1344), - [aux_sym_bind_interface_token1] = ACTIONS(1344), - [aux_sym_canonical_domains_token1] = ACTIONS(1344), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1344), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1344), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1344), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1344), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1344), - [aux_sym_certificate_file_token1] = ACTIONS(1344), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1344), - [aux_sym_channel_timeout_token1] = ACTIONS(1344), - [aux_sym_check_host_ip_token1] = ACTIONS(1344), - [aux_sym_ciphers_token1] = ACTIONS(1344), - [aux_sym_cipher_token1] = ACTIONS(1346), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1344), - [aux_sym_compression_token1] = ACTIONS(1344), - [aux_sym_connection_attempts_token1] = ACTIONS(1344), - [aux_sym_connect_timeout_token1] = ACTIONS(1344), - [aux_sym_control_master_token1] = ACTIONS(1344), - [aux_sym_control_path_token1] = ACTIONS(1344), - [aux_sym_control_persist_token1] = ACTIONS(1344), - [aux_sym_dynamic_forward_token1] = ACTIONS(1344), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1344), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1344), - [aux_sym_escape_char_token1] = ACTIONS(1344), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1344), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1344), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1344), - [aux_sym_forward_agent_token1] = ACTIONS(1344), - [aux_sym_forward_x11_token1] = ACTIONS(1346), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1344), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1344), - [aux_sym_gateway_ports_token1] = ACTIONS(1344), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1344), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1344), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1344), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1344), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1344), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1344), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1344), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1344), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1344), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1344), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1344), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1344), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1344), - [aux_sym_host_key_alias_token1] = ACTIONS(1344), - [aux_sym_hostname_token1] = ACTIONS(1344), - [aux_sym_identities_only_token1] = ACTIONS(1344), - [aux_sym_identity_agent_token1] = ACTIONS(1344), - [aux_sym_identity_file_token1] = ACTIONS(1344), - [aux_sym_ignore_unknown_token1] = ACTIONS(1344), - [aux_sym_include_token1] = ACTIONS(1344), - [aux_sym_ip_qos_token1] = ACTIONS(1344), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1344), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1344), - [aux_sym_kex_algorithms_token1] = ACTIONS(1344), - [aux_sym_known_hosts_command_token1] = ACTIONS(1344), - [aux_sym_local_command_token1] = ACTIONS(1344), - [aux_sym_local_forward_token1] = ACTIONS(1344), - [aux_sym_log_level_token1] = ACTIONS(1344), - [aux_sym_log_verbose_token1] = ACTIONS(1344), - [aux_sym_macs_token1] = ACTIONS(1344), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1344), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1344), - [aux_sym_password_authentication_token1] = ACTIONS(1344), - [aux_sym_permit_local_command_token1] = ACTIONS(1344), - [aux_sym_permit_remote_open_token1] = ACTIONS(1344), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1344), - [aux_sym_port_token1] = ACTIONS(1344), - [aux_sym_preferred_authentications_token1] = ACTIONS(1344), - [aux_sym_protocol_token1] = ACTIONS(1344), - [aux_sym_proxy_command_token1] = ACTIONS(1344), - [aux_sym_proxy_jump_token1] = ACTIONS(1344), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1344), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1344), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1344), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1344), - [aux_sym_rekey_limit_token1] = ACTIONS(1344), - [aux_sym_remote_command_token1] = ACTIONS(1344), - [aux_sym_remote_forward_token1] = ACTIONS(1344), - [aux_sym_request_tty_token1] = ACTIONS(1344), - [aux_sym_required_rsa_size_token1] = ACTIONS(1344), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1344), - [aux_sym_security_key_provider_token1] = ACTIONS(1344), - [aux_sym_send_env_token1] = ACTIONS(1344), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1344), - [aux_sym_server_alive_interval_token1] = ACTIONS(1344), - [aux_sym_session_type_token1] = ACTIONS(1344), - [aux_sym_set_env_token1] = ACTIONS(1344), - [aux_sym_stdin_null_token1] = ACTIONS(1344), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1344), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1344), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1344), - [aux_sym_syslog_facility_token1] = ACTIONS(1344), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1344), - [aux_sym_keep_alive_token1] = ACTIONS(1344), - [aux_sym_tag_token1] = ACTIONS(1344), - [aux_sym_tunnel_token1] = ACTIONS(1346), - [aux_sym_tunnel_device_token1] = ACTIONS(1344), - [aux_sym_update_host_keys_token1] = ACTIONS(1344), - [aux_sym_use_keychain_token1] = ACTIONS(1344), - [aux_sym_use_roaming_token1] = ACTIONS(1344), - [aux_sym_user_token1] = ACTIONS(1346), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1344), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1344), - [aux_sym_visual_host_key_token1] = ACTIONS(1344), - [aux_sym_xauth_location_token1] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1351), + [anon_sym_DQUOTE] = ACTIONS(1353), + [aux_sym_match_token1] = ACTIONS(1349), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1349), + [aux_sym_address_family_token1] = ACTIONS(1349), + [aux_sym_batch_mode_token1] = ACTIONS(1349), + [aux_sym_bind_address_token1] = ACTIONS(1349), + [aux_sym_bind_interface_token1] = ACTIONS(1349), + [aux_sym_canonical_domains_token1] = ACTIONS(1349), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1349), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1349), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1349), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1349), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1349), + [aux_sym_certificate_file_token1] = ACTIONS(1349), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1349), + [aux_sym_channel_timeout_token1] = ACTIONS(1349), + [aux_sym_check_host_ip_token1] = ACTIONS(1349), + [aux_sym_ciphers_token1] = ACTIONS(1349), + [aux_sym_cipher_token1] = ACTIONS(1351), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1349), + [aux_sym_compression_token1] = ACTIONS(1349), + [aux_sym_connection_attempts_token1] = ACTIONS(1349), + [aux_sym_connect_timeout_token1] = ACTIONS(1349), + [aux_sym_control_master_token1] = ACTIONS(1349), + [aux_sym_control_path_token1] = ACTIONS(1349), + [aux_sym_control_persist_token1] = ACTIONS(1349), + [aux_sym_dynamic_forward_token1] = ACTIONS(1349), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1349), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1349), + [aux_sym_escape_char_token1] = ACTIONS(1349), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1349), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1349), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1349), + [aux_sym_forward_agent_token1] = ACTIONS(1349), + [aux_sym_forward_x11_token1] = ACTIONS(1351), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1349), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1349), + [aux_sym_gateway_ports_token1] = ACTIONS(1349), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1349), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1349), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1349), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1349), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1349), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1349), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1349), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1349), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1349), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1349), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1349), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1349), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1349), + [aux_sym_host_key_alias_token1] = ACTIONS(1349), + [aux_sym_hostname_token1] = ACTIONS(1349), + [aux_sym_identities_only_token1] = ACTIONS(1349), + [aux_sym_identity_agent_token1] = ACTIONS(1349), + [aux_sym_identity_file_token1] = ACTIONS(1349), + [aux_sym_ignore_unknown_token1] = ACTIONS(1349), + [aux_sym_include_token1] = ACTIONS(1349), + [aux_sym_ip_qos_token1] = ACTIONS(1349), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1349), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1349), + [aux_sym_kex_algorithms_token1] = ACTIONS(1349), + [aux_sym_known_hosts_command_token1] = ACTIONS(1349), + [aux_sym_local_command_token1] = ACTIONS(1349), + [aux_sym_local_forward_token1] = ACTIONS(1349), + [aux_sym_log_level_token1] = ACTIONS(1349), + [aux_sym_log_verbose_token1] = ACTIONS(1349), + [aux_sym_macs_token1] = ACTIONS(1349), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1349), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1349), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1349), + [aux_sym_password_authentication_token1] = ACTIONS(1349), + [aux_sym_permit_local_command_token1] = ACTIONS(1349), + [aux_sym_permit_remote_open_token1] = ACTIONS(1349), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1349), + [aux_sym_port_token1] = ACTIONS(1349), + [aux_sym_preferred_authentications_token1] = ACTIONS(1349), + [aux_sym_protocol_token1] = ACTIONS(1349), + [aux_sym_proxy_command_token1] = ACTIONS(1349), + [aux_sym_proxy_jump_token1] = ACTIONS(1349), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1349), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1349), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1349), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1349), + [aux_sym_rekey_limit_token1] = ACTIONS(1349), + [aux_sym_remote_command_token1] = ACTIONS(1349), + [aux_sym_remote_forward_token1] = ACTIONS(1349), + [aux_sym_request_tty_token1] = ACTIONS(1349), + [aux_sym_required_rsa_size_token1] = ACTIONS(1349), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1349), + [aux_sym_security_key_provider_token1] = ACTIONS(1349), + [aux_sym_send_env_token1] = ACTIONS(1349), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1349), + [aux_sym_server_alive_interval_token1] = ACTIONS(1349), + [aux_sym_session_type_token1] = ACTIONS(1349), + [aux_sym_set_env_token1] = ACTIONS(1349), + [aux_sym_stdin_null_token1] = ACTIONS(1349), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1349), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1349), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1349), + [aux_sym_syslog_facility_token1] = ACTIONS(1349), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1349), + [aux_sym_keep_alive_token1] = ACTIONS(1349), + [aux_sym_tag_token1] = ACTIONS(1349), + [aux_sym_tunnel_token1] = ACTIONS(1351), + [aux_sym_tunnel_device_token1] = ACTIONS(1349), + [aux_sym_update_host_keys_token1] = ACTIONS(1349), + [aux_sym_use_keychain_token1] = ACTIONS(1349), + [aux_sym_use_roaming_token1] = ACTIONS(1349), + [aux_sym_user_token1] = ACTIONS(1351), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1349), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1349), + [aux_sym_visual_host_key_token1] = ACTIONS(1349), + [aux_sym_xauth_location_token1] = ACTIONS(1349), }, [132] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1354), - [aux_sym_match_token1] = ACTIONS(1350), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1350), - [aux_sym_address_family_token1] = ACTIONS(1350), - [aux_sym_batch_mode_token1] = ACTIONS(1350), - [aux_sym_bind_address_token1] = ACTIONS(1350), - [aux_sym_bind_interface_token1] = ACTIONS(1350), - [aux_sym_canonical_domains_token1] = ACTIONS(1350), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1350), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1350), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1350), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1350), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1350), - [aux_sym_certificate_file_token1] = ACTIONS(1350), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1350), - [aux_sym_channel_timeout_token1] = ACTIONS(1350), - [aux_sym_check_host_ip_token1] = ACTIONS(1350), - [aux_sym_ciphers_token1] = ACTIONS(1350), - [aux_sym_cipher_token1] = ACTIONS(1352), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1350), - [aux_sym_compression_token1] = ACTIONS(1350), - [aux_sym_connection_attempts_token1] = ACTIONS(1350), - [aux_sym_connect_timeout_token1] = ACTIONS(1350), - [aux_sym_control_master_token1] = ACTIONS(1350), - [aux_sym_control_path_token1] = ACTIONS(1350), - [aux_sym_control_persist_token1] = ACTIONS(1350), - [aux_sym_dynamic_forward_token1] = ACTIONS(1350), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1350), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1350), - [aux_sym_escape_char_token1] = ACTIONS(1350), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1350), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1350), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1350), - [aux_sym_forward_agent_token1] = ACTIONS(1350), - [aux_sym_forward_x11_token1] = ACTIONS(1352), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1350), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1350), - [aux_sym_gateway_ports_token1] = ACTIONS(1350), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1350), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1350), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1350), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1350), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1350), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1350), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1350), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1350), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1350), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1350), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1350), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1350), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1350), - [aux_sym_host_key_alias_token1] = ACTIONS(1350), - [aux_sym_hostname_token1] = ACTIONS(1350), - [aux_sym_identities_only_token1] = ACTIONS(1350), - [aux_sym_identity_agent_token1] = ACTIONS(1350), - [aux_sym_identity_file_token1] = ACTIONS(1350), - [aux_sym_ignore_unknown_token1] = ACTIONS(1350), - [aux_sym_include_token1] = ACTIONS(1350), - [aux_sym_ip_qos_token1] = ACTIONS(1350), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1350), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1350), - [aux_sym_kex_algorithms_token1] = ACTIONS(1350), - [aux_sym_known_hosts_command_token1] = ACTIONS(1350), - [aux_sym_local_command_token1] = ACTIONS(1350), - [aux_sym_local_forward_token1] = ACTIONS(1350), - [aux_sym_log_level_token1] = ACTIONS(1350), - [aux_sym_log_verbose_token1] = ACTIONS(1350), - [aux_sym_macs_token1] = ACTIONS(1350), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1350), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1350), - [aux_sym_password_authentication_token1] = ACTIONS(1350), - [aux_sym_permit_local_command_token1] = ACTIONS(1350), - [aux_sym_permit_remote_open_token1] = ACTIONS(1350), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1350), - [aux_sym_port_token1] = ACTIONS(1350), - [aux_sym_preferred_authentications_token1] = ACTIONS(1350), - [aux_sym_protocol_token1] = ACTIONS(1350), - [aux_sym_proxy_command_token1] = ACTIONS(1350), - [aux_sym_proxy_jump_token1] = ACTIONS(1350), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1350), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1350), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1350), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1350), - [aux_sym_rekey_limit_token1] = ACTIONS(1350), - [aux_sym_remote_command_token1] = ACTIONS(1350), - [aux_sym_remote_forward_token1] = ACTIONS(1350), - [aux_sym_request_tty_token1] = ACTIONS(1350), - [aux_sym_required_rsa_size_token1] = ACTIONS(1350), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1350), - [aux_sym_security_key_provider_token1] = ACTIONS(1350), - [aux_sym_send_env_token1] = ACTIONS(1350), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1350), - [aux_sym_server_alive_interval_token1] = ACTIONS(1350), - [aux_sym_session_type_token1] = ACTIONS(1350), - [aux_sym_set_env_token1] = ACTIONS(1350), - [aux_sym_stdin_null_token1] = ACTIONS(1350), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1350), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1350), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1350), - [aux_sym_syslog_facility_token1] = ACTIONS(1350), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1350), - [aux_sym_keep_alive_token1] = ACTIONS(1350), - [aux_sym_tag_token1] = ACTIONS(1350), - [aux_sym_tunnel_token1] = ACTIONS(1352), - [aux_sym_tunnel_device_token1] = ACTIONS(1350), - [aux_sym_update_host_keys_token1] = ACTIONS(1350), - [aux_sym_use_keychain_token1] = ACTIONS(1350), - [aux_sym_use_roaming_token1] = ACTIONS(1350), - [aux_sym_user_token1] = ACTIONS(1352), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1350), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1350), - [aux_sym_visual_host_key_token1] = ACTIONS(1350), - [aux_sym_xauth_location_token1] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(1355), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(1359), + [aux_sym_match_token1] = ACTIONS(1355), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1355), + [aux_sym_address_family_token1] = ACTIONS(1355), + [aux_sym_batch_mode_token1] = ACTIONS(1355), + [aux_sym_bind_address_token1] = ACTIONS(1355), + [aux_sym_bind_interface_token1] = ACTIONS(1355), + [aux_sym_canonical_domains_token1] = ACTIONS(1355), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1355), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1355), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1355), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1355), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1355), + [aux_sym_certificate_file_token1] = ACTIONS(1355), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1355), + [aux_sym_channel_timeout_token1] = ACTIONS(1355), + [aux_sym_check_host_ip_token1] = ACTIONS(1355), + [aux_sym_ciphers_token1] = ACTIONS(1355), + [aux_sym_cipher_token1] = ACTIONS(1357), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1355), + [aux_sym_compression_token1] = ACTIONS(1355), + [aux_sym_connection_attempts_token1] = ACTIONS(1355), + [aux_sym_connect_timeout_token1] = ACTIONS(1355), + [aux_sym_control_master_token1] = ACTIONS(1355), + [aux_sym_control_path_token1] = ACTIONS(1355), + [aux_sym_control_persist_token1] = ACTIONS(1355), + [aux_sym_dynamic_forward_token1] = ACTIONS(1355), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1355), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1355), + [aux_sym_escape_char_token1] = ACTIONS(1355), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1355), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1355), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1355), + [aux_sym_forward_agent_token1] = ACTIONS(1355), + [aux_sym_forward_x11_token1] = ACTIONS(1357), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1355), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1355), + [aux_sym_gateway_ports_token1] = ACTIONS(1355), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1355), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1355), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1355), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1355), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1355), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1355), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1355), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1355), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1355), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1355), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1355), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1355), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1355), + [aux_sym_host_key_alias_token1] = ACTIONS(1355), + [aux_sym_hostname_token1] = ACTIONS(1355), + [aux_sym_identities_only_token1] = ACTIONS(1355), + [aux_sym_identity_agent_token1] = ACTIONS(1355), + [aux_sym_identity_file_token1] = ACTIONS(1355), + [aux_sym_ignore_unknown_token1] = ACTIONS(1355), + [aux_sym_include_token1] = ACTIONS(1355), + [aux_sym_ip_qos_token1] = ACTIONS(1355), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1355), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1355), + [aux_sym_kex_algorithms_token1] = ACTIONS(1355), + [aux_sym_known_hosts_command_token1] = ACTIONS(1355), + [aux_sym_local_command_token1] = ACTIONS(1355), + [aux_sym_local_forward_token1] = ACTIONS(1355), + [aux_sym_log_level_token1] = ACTIONS(1355), + [aux_sym_log_verbose_token1] = ACTIONS(1355), + [aux_sym_macs_token1] = ACTIONS(1355), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1355), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1355), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1355), + [aux_sym_password_authentication_token1] = ACTIONS(1355), + [aux_sym_permit_local_command_token1] = ACTIONS(1355), + [aux_sym_permit_remote_open_token1] = ACTIONS(1355), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1355), + [aux_sym_port_token1] = ACTIONS(1355), + [aux_sym_preferred_authentications_token1] = ACTIONS(1355), + [aux_sym_protocol_token1] = ACTIONS(1355), + [aux_sym_proxy_command_token1] = ACTIONS(1355), + [aux_sym_proxy_jump_token1] = ACTIONS(1355), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1355), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1355), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1355), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1355), + [aux_sym_rekey_limit_token1] = ACTIONS(1355), + [aux_sym_remote_command_token1] = ACTIONS(1355), + [aux_sym_remote_forward_token1] = ACTIONS(1355), + [aux_sym_request_tty_token1] = ACTIONS(1355), + [aux_sym_required_rsa_size_token1] = ACTIONS(1355), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1355), + [aux_sym_security_key_provider_token1] = ACTIONS(1355), + [aux_sym_send_env_token1] = ACTIONS(1355), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1355), + [aux_sym_server_alive_interval_token1] = ACTIONS(1355), + [aux_sym_session_type_token1] = ACTIONS(1355), + [aux_sym_set_env_token1] = ACTIONS(1355), + [aux_sym_stdin_null_token1] = ACTIONS(1355), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1355), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1355), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1355), + [aux_sym_syslog_facility_token1] = ACTIONS(1355), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1355), + [aux_sym_keep_alive_token1] = ACTIONS(1355), + [aux_sym_tag_token1] = ACTIONS(1355), + [aux_sym_tunnel_token1] = ACTIONS(1357), + [aux_sym_tunnel_device_token1] = ACTIONS(1355), + [aux_sym_update_host_keys_token1] = ACTIONS(1355), + [aux_sym_use_keychain_token1] = ACTIONS(1355), + [aux_sym_use_roaming_token1] = ACTIONS(1355), + [aux_sym_user_token1] = ACTIONS(1357), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1355), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1355), + [aux_sym_visual_host_key_token1] = ACTIONS(1355), + [aux_sym_xauth_location_token1] = ACTIONS(1355), }, [133] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1358), - [anon_sym_DQUOTE] = ACTIONS(1360), - [aux_sym_match_token1] = ACTIONS(1356), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1356), - [aux_sym_address_family_token1] = ACTIONS(1356), - [aux_sym_batch_mode_token1] = ACTIONS(1356), - [aux_sym_bind_address_token1] = ACTIONS(1356), - [aux_sym_bind_interface_token1] = ACTIONS(1356), - [aux_sym_canonical_domains_token1] = ACTIONS(1356), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1356), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1356), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1356), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1356), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1356), - [aux_sym_certificate_file_token1] = ACTIONS(1356), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1356), - [aux_sym_channel_timeout_token1] = ACTIONS(1356), - [aux_sym_check_host_ip_token1] = ACTIONS(1356), - [aux_sym_ciphers_token1] = ACTIONS(1356), - [aux_sym_cipher_token1] = ACTIONS(1358), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1356), - [aux_sym_compression_token1] = ACTIONS(1356), - [aux_sym_connection_attempts_token1] = ACTIONS(1356), - [aux_sym_connect_timeout_token1] = ACTIONS(1356), - [aux_sym_control_master_token1] = ACTIONS(1356), - [aux_sym_control_path_token1] = ACTIONS(1356), - [aux_sym_control_persist_token1] = ACTIONS(1356), - [aux_sym_dynamic_forward_token1] = ACTIONS(1356), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1356), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1356), - [aux_sym_escape_char_token1] = ACTIONS(1356), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1356), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1356), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1356), - [aux_sym_forward_agent_token1] = ACTIONS(1356), - [aux_sym_forward_x11_token1] = ACTIONS(1358), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1356), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1356), - [aux_sym_gateway_ports_token1] = ACTIONS(1356), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1356), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1356), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1356), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1356), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1356), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1356), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1356), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1356), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1356), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1356), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1356), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1356), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1356), - [aux_sym_host_key_alias_token1] = ACTIONS(1356), - [aux_sym_hostname_token1] = ACTIONS(1356), - [aux_sym_identities_only_token1] = ACTIONS(1356), - [aux_sym_identity_agent_token1] = ACTIONS(1356), - [aux_sym_identity_file_token1] = ACTIONS(1356), - [aux_sym_ignore_unknown_token1] = ACTIONS(1356), - [aux_sym_include_token1] = ACTIONS(1356), - [aux_sym_ip_qos_token1] = ACTIONS(1356), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1356), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1356), - [aux_sym_kex_algorithms_token1] = ACTIONS(1356), - [aux_sym_known_hosts_command_token1] = ACTIONS(1356), - [aux_sym_local_command_token1] = ACTIONS(1356), - [aux_sym_local_forward_token1] = ACTIONS(1356), - [aux_sym_log_level_token1] = ACTIONS(1356), - [aux_sym_log_verbose_token1] = ACTIONS(1356), - [aux_sym_macs_token1] = ACTIONS(1356), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1356), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1356), - [aux_sym_password_authentication_token1] = ACTIONS(1356), - [aux_sym_permit_local_command_token1] = ACTIONS(1356), - [aux_sym_permit_remote_open_token1] = ACTIONS(1356), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1356), - [aux_sym_port_token1] = ACTIONS(1356), - [aux_sym_preferred_authentications_token1] = ACTIONS(1356), - [aux_sym_protocol_token1] = ACTIONS(1356), - [aux_sym_proxy_command_token1] = ACTIONS(1356), - [aux_sym_proxy_jump_token1] = ACTIONS(1356), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1356), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1356), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1356), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1356), - [aux_sym_rekey_limit_token1] = ACTIONS(1356), - [aux_sym_remote_command_token1] = ACTIONS(1356), - [aux_sym_remote_forward_token1] = ACTIONS(1356), - [aux_sym_request_tty_token1] = ACTIONS(1356), - [aux_sym_required_rsa_size_token1] = ACTIONS(1356), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1356), - [aux_sym_security_key_provider_token1] = ACTIONS(1356), - [aux_sym_send_env_token1] = ACTIONS(1356), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1356), - [aux_sym_server_alive_interval_token1] = ACTIONS(1356), - [aux_sym_session_type_token1] = ACTIONS(1356), - [aux_sym_set_env_token1] = ACTIONS(1356), - [aux_sym_stdin_null_token1] = ACTIONS(1356), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1356), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1356), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1356), - [aux_sym_syslog_facility_token1] = ACTIONS(1356), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1356), - [aux_sym_keep_alive_token1] = ACTIONS(1356), - [aux_sym_tag_token1] = ACTIONS(1356), - [aux_sym_tunnel_token1] = ACTIONS(1358), - [aux_sym_tunnel_device_token1] = ACTIONS(1356), - [aux_sym_update_host_keys_token1] = ACTIONS(1356), - [aux_sym_use_keychain_token1] = ACTIONS(1356), - [aux_sym_use_roaming_token1] = ACTIONS(1356), - [aux_sym_user_token1] = ACTIONS(1358), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1356), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1356), - [aux_sym_visual_host_key_token1] = ACTIONS(1356), - [aux_sym_xauth_location_token1] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(1365), + [aux_sym_match_token1] = ACTIONS(1361), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1361), + [aux_sym_address_family_token1] = ACTIONS(1361), + [aux_sym_batch_mode_token1] = ACTIONS(1361), + [aux_sym_bind_address_token1] = ACTIONS(1361), + [aux_sym_bind_interface_token1] = ACTIONS(1361), + [aux_sym_canonical_domains_token1] = ACTIONS(1361), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1361), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1361), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1361), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1361), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1361), + [aux_sym_certificate_file_token1] = ACTIONS(1361), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1361), + [aux_sym_channel_timeout_token1] = ACTIONS(1361), + [aux_sym_check_host_ip_token1] = ACTIONS(1361), + [aux_sym_ciphers_token1] = ACTIONS(1361), + [aux_sym_cipher_token1] = ACTIONS(1363), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1361), + [aux_sym_compression_token1] = ACTIONS(1361), + [aux_sym_connection_attempts_token1] = ACTIONS(1361), + [aux_sym_connect_timeout_token1] = ACTIONS(1361), + [aux_sym_control_master_token1] = ACTIONS(1361), + [aux_sym_control_path_token1] = ACTIONS(1361), + [aux_sym_control_persist_token1] = ACTIONS(1361), + [aux_sym_dynamic_forward_token1] = ACTIONS(1361), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1361), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1361), + [aux_sym_escape_char_token1] = ACTIONS(1361), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1361), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1361), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1361), + [aux_sym_forward_agent_token1] = ACTIONS(1361), + [aux_sym_forward_x11_token1] = ACTIONS(1363), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1361), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1361), + [aux_sym_gateway_ports_token1] = ACTIONS(1361), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1361), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1361), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1361), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1361), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1361), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1361), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1361), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1361), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1361), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1361), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1361), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1361), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1361), + [aux_sym_host_key_alias_token1] = ACTIONS(1361), + [aux_sym_hostname_token1] = ACTIONS(1361), + [aux_sym_identities_only_token1] = ACTIONS(1361), + [aux_sym_identity_agent_token1] = ACTIONS(1361), + [aux_sym_identity_file_token1] = ACTIONS(1361), + [aux_sym_ignore_unknown_token1] = ACTIONS(1361), + [aux_sym_include_token1] = ACTIONS(1361), + [aux_sym_ip_qos_token1] = ACTIONS(1361), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1361), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1361), + [aux_sym_kex_algorithms_token1] = ACTIONS(1361), + [aux_sym_known_hosts_command_token1] = ACTIONS(1361), + [aux_sym_local_command_token1] = ACTIONS(1361), + [aux_sym_local_forward_token1] = ACTIONS(1361), + [aux_sym_log_level_token1] = ACTIONS(1361), + [aux_sym_log_verbose_token1] = ACTIONS(1361), + [aux_sym_macs_token1] = ACTIONS(1361), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1361), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1361), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1361), + [aux_sym_password_authentication_token1] = ACTIONS(1361), + [aux_sym_permit_local_command_token1] = ACTIONS(1361), + [aux_sym_permit_remote_open_token1] = ACTIONS(1361), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1361), + [aux_sym_port_token1] = ACTIONS(1361), + [aux_sym_preferred_authentications_token1] = ACTIONS(1361), + [aux_sym_protocol_token1] = ACTIONS(1361), + [aux_sym_proxy_command_token1] = ACTIONS(1361), + [aux_sym_proxy_jump_token1] = ACTIONS(1361), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1361), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1361), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1361), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1361), + [aux_sym_rekey_limit_token1] = ACTIONS(1361), + [aux_sym_remote_command_token1] = ACTIONS(1361), + [aux_sym_remote_forward_token1] = ACTIONS(1361), + [aux_sym_request_tty_token1] = ACTIONS(1361), + [aux_sym_required_rsa_size_token1] = ACTIONS(1361), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1361), + [aux_sym_security_key_provider_token1] = ACTIONS(1361), + [aux_sym_send_env_token1] = ACTIONS(1361), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1361), + [aux_sym_server_alive_interval_token1] = ACTIONS(1361), + [aux_sym_session_type_token1] = ACTIONS(1361), + [aux_sym_set_env_token1] = ACTIONS(1361), + [aux_sym_stdin_null_token1] = ACTIONS(1361), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1361), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1361), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1361), + [aux_sym_syslog_facility_token1] = ACTIONS(1361), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1361), + [aux_sym_keep_alive_token1] = ACTIONS(1361), + [aux_sym_tag_token1] = ACTIONS(1361), + [aux_sym_tunnel_token1] = ACTIONS(1363), + [aux_sym_tunnel_device_token1] = ACTIONS(1361), + [aux_sym_update_host_keys_token1] = ACTIONS(1361), + [aux_sym_use_keychain_token1] = ACTIONS(1361), + [aux_sym_use_roaming_token1] = ACTIONS(1361), + [aux_sym_user_token1] = ACTIONS(1363), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1361), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1361), + [aux_sym_visual_host_key_token1] = ACTIONS(1361), + [aux_sym_xauth_location_token1] = ACTIONS(1361), }, [134] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1364), - [anon_sym_DQUOTE] = ACTIONS(1366), - [aux_sym_match_token1] = ACTIONS(1362), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1362), - [aux_sym_address_family_token1] = ACTIONS(1362), - [aux_sym_batch_mode_token1] = ACTIONS(1362), - [aux_sym_bind_address_token1] = ACTIONS(1362), - [aux_sym_bind_interface_token1] = ACTIONS(1362), - [aux_sym_canonical_domains_token1] = ACTIONS(1362), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1362), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1362), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1362), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1362), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1362), - [aux_sym_certificate_file_token1] = ACTIONS(1362), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1362), - [aux_sym_channel_timeout_token1] = ACTIONS(1362), - [aux_sym_check_host_ip_token1] = ACTIONS(1362), - [aux_sym_ciphers_token1] = ACTIONS(1362), - [aux_sym_cipher_token1] = ACTIONS(1364), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1362), - [aux_sym_compression_token1] = ACTIONS(1362), - [aux_sym_connection_attempts_token1] = ACTIONS(1362), - [aux_sym_connect_timeout_token1] = ACTIONS(1362), - [aux_sym_control_master_token1] = ACTIONS(1362), - [aux_sym_control_path_token1] = ACTIONS(1362), - [aux_sym_control_persist_token1] = ACTIONS(1362), - [aux_sym_dynamic_forward_token1] = ACTIONS(1362), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1362), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1362), - [aux_sym_escape_char_token1] = ACTIONS(1362), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1362), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1362), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1362), - [aux_sym_forward_agent_token1] = ACTIONS(1362), - [aux_sym_forward_x11_token1] = ACTIONS(1364), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1362), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1362), - [aux_sym_gateway_ports_token1] = ACTIONS(1362), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1362), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1362), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1362), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1362), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1362), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1362), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1362), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1362), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1362), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1362), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1362), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1362), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1362), - [aux_sym_host_key_alias_token1] = ACTIONS(1362), - [aux_sym_hostname_token1] = ACTIONS(1362), - [aux_sym_identities_only_token1] = ACTIONS(1362), - [aux_sym_identity_agent_token1] = ACTIONS(1362), - [aux_sym_identity_file_token1] = ACTIONS(1362), - [aux_sym_ignore_unknown_token1] = ACTIONS(1362), - [aux_sym_include_token1] = ACTIONS(1362), - [aux_sym_ip_qos_token1] = ACTIONS(1362), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1362), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1362), - [aux_sym_kex_algorithms_token1] = ACTIONS(1362), - [aux_sym_known_hosts_command_token1] = ACTIONS(1362), - [aux_sym_local_command_token1] = ACTIONS(1362), - [aux_sym_local_forward_token1] = ACTIONS(1362), - [aux_sym_log_level_token1] = ACTIONS(1362), - [aux_sym_log_verbose_token1] = ACTIONS(1362), - [aux_sym_macs_token1] = ACTIONS(1362), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1362), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1362), - [aux_sym_password_authentication_token1] = ACTIONS(1362), - [aux_sym_permit_local_command_token1] = ACTIONS(1362), - [aux_sym_permit_remote_open_token1] = ACTIONS(1362), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1362), - [aux_sym_port_token1] = ACTIONS(1362), - [aux_sym_preferred_authentications_token1] = ACTIONS(1362), - [aux_sym_protocol_token1] = ACTIONS(1362), - [aux_sym_proxy_command_token1] = ACTIONS(1362), - [aux_sym_proxy_jump_token1] = ACTIONS(1362), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1362), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1362), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1362), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1362), - [aux_sym_rekey_limit_token1] = ACTIONS(1362), - [aux_sym_remote_command_token1] = ACTIONS(1362), - [aux_sym_remote_forward_token1] = ACTIONS(1362), - [aux_sym_request_tty_token1] = ACTIONS(1362), - [aux_sym_required_rsa_size_token1] = ACTIONS(1362), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1362), - [aux_sym_security_key_provider_token1] = ACTIONS(1362), - [aux_sym_send_env_token1] = ACTIONS(1362), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1362), - [aux_sym_server_alive_interval_token1] = ACTIONS(1362), - [aux_sym_session_type_token1] = ACTIONS(1362), - [aux_sym_set_env_token1] = ACTIONS(1362), - [aux_sym_stdin_null_token1] = ACTIONS(1362), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1362), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1362), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1362), - [aux_sym_syslog_facility_token1] = ACTIONS(1362), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1362), - [aux_sym_keep_alive_token1] = ACTIONS(1362), - [aux_sym_tag_token1] = ACTIONS(1362), - [aux_sym_tunnel_token1] = ACTIONS(1364), - [aux_sym_tunnel_device_token1] = ACTIONS(1362), - [aux_sym_update_host_keys_token1] = ACTIONS(1362), - [aux_sym_use_keychain_token1] = ACTIONS(1362), - [aux_sym_use_roaming_token1] = ACTIONS(1362), - [aux_sym_user_token1] = ACTIONS(1364), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1362), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1362), - [aux_sym_visual_host_key_token1] = ACTIONS(1362), - [aux_sym_xauth_location_token1] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(1371), + [aux_sym_match_token1] = ACTIONS(1367), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1367), + [aux_sym_address_family_token1] = ACTIONS(1367), + [aux_sym_batch_mode_token1] = ACTIONS(1367), + [aux_sym_bind_address_token1] = ACTIONS(1367), + [aux_sym_bind_interface_token1] = ACTIONS(1367), + [aux_sym_canonical_domains_token1] = ACTIONS(1367), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1367), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1367), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1367), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1367), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1367), + [aux_sym_certificate_file_token1] = ACTIONS(1367), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1367), + [aux_sym_channel_timeout_token1] = ACTIONS(1367), + [aux_sym_check_host_ip_token1] = ACTIONS(1367), + [aux_sym_ciphers_token1] = ACTIONS(1367), + [aux_sym_cipher_token1] = ACTIONS(1369), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1367), + [aux_sym_compression_token1] = ACTIONS(1367), + [aux_sym_connection_attempts_token1] = ACTIONS(1367), + [aux_sym_connect_timeout_token1] = ACTIONS(1367), + [aux_sym_control_master_token1] = ACTIONS(1367), + [aux_sym_control_path_token1] = ACTIONS(1367), + [aux_sym_control_persist_token1] = ACTIONS(1367), + [aux_sym_dynamic_forward_token1] = ACTIONS(1367), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1367), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1367), + [aux_sym_escape_char_token1] = ACTIONS(1367), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1367), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1367), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1367), + [aux_sym_forward_agent_token1] = ACTIONS(1367), + [aux_sym_forward_x11_token1] = ACTIONS(1369), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1367), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1367), + [aux_sym_gateway_ports_token1] = ACTIONS(1367), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1367), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1367), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1367), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1367), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1367), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1367), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1367), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1367), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1367), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1367), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1367), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1367), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1367), + [aux_sym_host_key_alias_token1] = ACTIONS(1367), + [aux_sym_hostname_token1] = ACTIONS(1367), + [aux_sym_identities_only_token1] = ACTIONS(1367), + [aux_sym_identity_agent_token1] = ACTIONS(1367), + [aux_sym_identity_file_token1] = ACTIONS(1367), + [aux_sym_ignore_unknown_token1] = ACTIONS(1367), + [aux_sym_include_token1] = ACTIONS(1367), + [aux_sym_ip_qos_token1] = ACTIONS(1367), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1367), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1367), + [aux_sym_kex_algorithms_token1] = ACTIONS(1367), + [aux_sym_known_hosts_command_token1] = ACTIONS(1367), + [aux_sym_local_command_token1] = ACTIONS(1367), + [aux_sym_local_forward_token1] = ACTIONS(1367), + [aux_sym_log_level_token1] = ACTIONS(1367), + [aux_sym_log_verbose_token1] = ACTIONS(1367), + [aux_sym_macs_token1] = ACTIONS(1367), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1367), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1367), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1367), + [aux_sym_password_authentication_token1] = ACTIONS(1367), + [aux_sym_permit_local_command_token1] = ACTIONS(1367), + [aux_sym_permit_remote_open_token1] = ACTIONS(1367), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1367), + [aux_sym_port_token1] = ACTIONS(1367), + [aux_sym_preferred_authentications_token1] = ACTIONS(1367), + [aux_sym_protocol_token1] = ACTIONS(1367), + [aux_sym_proxy_command_token1] = ACTIONS(1367), + [aux_sym_proxy_jump_token1] = ACTIONS(1367), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1367), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1367), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1367), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1367), + [aux_sym_rekey_limit_token1] = ACTIONS(1367), + [aux_sym_remote_command_token1] = ACTIONS(1367), + [aux_sym_remote_forward_token1] = ACTIONS(1367), + [aux_sym_request_tty_token1] = ACTIONS(1367), + [aux_sym_required_rsa_size_token1] = ACTIONS(1367), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1367), + [aux_sym_security_key_provider_token1] = ACTIONS(1367), + [aux_sym_send_env_token1] = ACTIONS(1367), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1367), + [aux_sym_server_alive_interval_token1] = ACTIONS(1367), + [aux_sym_session_type_token1] = ACTIONS(1367), + [aux_sym_set_env_token1] = ACTIONS(1367), + [aux_sym_stdin_null_token1] = ACTIONS(1367), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1367), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1367), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1367), + [aux_sym_syslog_facility_token1] = ACTIONS(1367), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1367), + [aux_sym_keep_alive_token1] = ACTIONS(1367), + [aux_sym_tag_token1] = ACTIONS(1367), + [aux_sym_tunnel_token1] = ACTIONS(1369), + [aux_sym_tunnel_device_token1] = ACTIONS(1367), + [aux_sym_update_host_keys_token1] = ACTIONS(1367), + [aux_sym_use_keychain_token1] = ACTIONS(1367), + [aux_sym_use_roaming_token1] = ACTIONS(1367), + [aux_sym_user_token1] = ACTIONS(1369), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1367), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1367), + [aux_sym_visual_host_key_token1] = ACTIONS(1367), + [aux_sym_xauth_location_token1] = ACTIONS(1367), }, [135] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1370), - [anon_sym_DQUOTE] = ACTIONS(1372), - [aux_sym_match_token1] = ACTIONS(1368), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1368), - [aux_sym_address_family_token1] = ACTIONS(1368), - [aux_sym_batch_mode_token1] = ACTIONS(1368), - [aux_sym_bind_address_token1] = ACTIONS(1368), - [aux_sym_bind_interface_token1] = ACTIONS(1368), - [aux_sym_canonical_domains_token1] = ACTIONS(1368), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1368), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1368), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1368), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1368), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1368), - [aux_sym_certificate_file_token1] = ACTIONS(1368), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1368), - [aux_sym_channel_timeout_token1] = ACTIONS(1368), - [aux_sym_check_host_ip_token1] = ACTIONS(1368), - [aux_sym_ciphers_token1] = ACTIONS(1368), - [aux_sym_cipher_token1] = ACTIONS(1370), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1368), - [aux_sym_compression_token1] = ACTIONS(1368), - [aux_sym_connection_attempts_token1] = ACTIONS(1368), - [aux_sym_connect_timeout_token1] = ACTIONS(1368), - [aux_sym_control_master_token1] = ACTIONS(1368), - [aux_sym_control_path_token1] = ACTIONS(1368), - [aux_sym_control_persist_token1] = ACTIONS(1368), - [aux_sym_dynamic_forward_token1] = ACTIONS(1368), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1368), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1368), - [aux_sym_escape_char_token1] = ACTIONS(1368), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1368), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1368), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1368), - [aux_sym_forward_agent_token1] = ACTIONS(1368), - [aux_sym_forward_x11_token1] = ACTIONS(1370), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1368), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1368), - [aux_sym_gateway_ports_token1] = ACTIONS(1368), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1368), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1368), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1368), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1368), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1368), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1368), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1368), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1368), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1368), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1368), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1368), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1368), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1368), - [aux_sym_host_key_alias_token1] = ACTIONS(1368), - [aux_sym_hostname_token1] = ACTIONS(1368), - [aux_sym_identities_only_token1] = ACTIONS(1368), - [aux_sym_identity_agent_token1] = ACTIONS(1368), - [aux_sym_identity_file_token1] = ACTIONS(1368), - [aux_sym_ignore_unknown_token1] = ACTIONS(1368), - [aux_sym_include_token1] = ACTIONS(1368), - [aux_sym_ip_qos_token1] = ACTIONS(1368), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1368), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1368), - [aux_sym_kex_algorithms_token1] = ACTIONS(1368), - [aux_sym_known_hosts_command_token1] = ACTIONS(1368), - [aux_sym_local_command_token1] = ACTIONS(1368), - [aux_sym_local_forward_token1] = ACTIONS(1368), - [aux_sym_log_level_token1] = ACTIONS(1368), - [aux_sym_log_verbose_token1] = ACTIONS(1368), - [aux_sym_macs_token1] = ACTIONS(1368), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1368), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1368), - [aux_sym_password_authentication_token1] = ACTIONS(1368), - [aux_sym_permit_local_command_token1] = ACTIONS(1368), - [aux_sym_permit_remote_open_token1] = ACTIONS(1368), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1368), - [aux_sym_port_token1] = ACTIONS(1368), - [aux_sym_preferred_authentications_token1] = ACTIONS(1368), - [aux_sym_protocol_token1] = ACTIONS(1368), - [aux_sym_proxy_command_token1] = ACTIONS(1368), - [aux_sym_proxy_jump_token1] = ACTIONS(1368), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1368), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1368), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1368), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1368), - [aux_sym_rekey_limit_token1] = ACTIONS(1368), - [aux_sym_remote_command_token1] = ACTIONS(1368), - [aux_sym_remote_forward_token1] = ACTIONS(1368), - [aux_sym_request_tty_token1] = ACTIONS(1368), - [aux_sym_required_rsa_size_token1] = ACTIONS(1368), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1368), - [aux_sym_security_key_provider_token1] = ACTIONS(1368), - [aux_sym_send_env_token1] = ACTIONS(1368), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1368), - [aux_sym_server_alive_interval_token1] = ACTIONS(1368), - [aux_sym_session_type_token1] = ACTIONS(1368), - [aux_sym_set_env_token1] = ACTIONS(1368), - [aux_sym_stdin_null_token1] = ACTIONS(1368), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1368), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1368), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1368), - [aux_sym_syslog_facility_token1] = ACTIONS(1368), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1368), - [aux_sym_keep_alive_token1] = ACTIONS(1368), - [aux_sym_tag_token1] = ACTIONS(1368), - [aux_sym_tunnel_token1] = ACTIONS(1370), - [aux_sym_tunnel_device_token1] = ACTIONS(1368), - [aux_sym_update_host_keys_token1] = ACTIONS(1368), - [aux_sym_use_keychain_token1] = ACTIONS(1368), - [aux_sym_use_roaming_token1] = ACTIONS(1368), - [aux_sym_user_token1] = ACTIONS(1370), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1368), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1368), - [aux_sym_visual_host_key_token1] = ACTIONS(1368), - [aux_sym_xauth_location_token1] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1375), + [anon_sym_DQUOTE] = ACTIONS(1377), + [aux_sym_match_token1] = ACTIONS(1373), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1373), + [aux_sym_address_family_token1] = ACTIONS(1373), + [aux_sym_batch_mode_token1] = ACTIONS(1373), + [aux_sym_bind_address_token1] = ACTIONS(1373), + [aux_sym_bind_interface_token1] = ACTIONS(1373), + [aux_sym_canonical_domains_token1] = ACTIONS(1373), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1373), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1373), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1373), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1373), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1373), + [aux_sym_certificate_file_token1] = ACTIONS(1373), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1373), + [aux_sym_channel_timeout_token1] = ACTIONS(1373), + [aux_sym_check_host_ip_token1] = ACTIONS(1373), + [aux_sym_ciphers_token1] = ACTIONS(1373), + [aux_sym_cipher_token1] = ACTIONS(1375), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1373), + [aux_sym_compression_token1] = ACTIONS(1373), + [aux_sym_connection_attempts_token1] = ACTIONS(1373), + [aux_sym_connect_timeout_token1] = ACTIONS(1373), + [aux_sym_control_master_token1] = ACTIONS(1373), + [aux_sym_control_path_token1] = ACTIONS(1373), + [aux_sym_control_persist_token1] = ACTIONS(1373), + [aux_sym_dynamic_forward_token1] = ACTIONS(1373), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1373), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1373), + [aux_sym_escape_char_token1] = ACTIONS(1373), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1373), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1373), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1373), + [aux_sym_forward_agent_token1] = ACTIONS(1373), + [aux_sym_forward_x11_token1] = ACTIONS(1375), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1373), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1373), + [aux_sym_gateway_ports_token1] = ACTIONS(1373), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1373), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1373), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1373), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1373), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1373), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1373), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1373), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1373), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1373), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1373), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1373), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1373), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1373), + [aux_sym_host_key_alias_token1] = ACTIONS(1373), + [aux_sym_hostname_token1] = ACTIONS(1373), + [aux_sym_identities_only_token1] = ACTIONS(1373), + [aux_sym_identity_agent_token1] = ACTIONS(1373), + [aux_sym_identity_file_token1] = ACTIONS(1373), + [aux_sym_ignore_unknown_token1] = ACTIONS(1373), + [aux_sym_include_token1] = ACTIONS(1373), + [aux_sym_ip_qos_token1] = ACTIONS(1373), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1373), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1373), + [aux_sym_kex_algorithms_token1] = ACTIONS(1373), + [aux_sym_known_hosts_command_token1] = ACTIONS(1373), + [aux_sym_local_command_token1] = ACTIONS(1373), + [aux_sym_local_forward_token1] = ACTIONS(1373), + [aux_sym_log_level_token1] = ACTIONS(1373), + [aux_sym_log_verbose_token1] = ACTIONS(1373), + [aux_sym_macs_token1] = ACTIONS(1373), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1373), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1373), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1373), + [aux_sym_password_authentication_token1] = ACTIONS(1373), + [aux_sym_permit_local_command_token1] = ACTIONS(1373), + [aux_sym_permit_remote_open_token1] = ACTIONS(1373), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1373), + [aux_sym_port_token1] = ACTIONS(1373), + [aux_sym_preferred_authentications_token1] = ACTIONS(1373), + [aux_sym_protocol_token1] = ACTIONS(1373), + [aux_sym_proxy_command_token1] = ACTIONS(1373), + [aux_sym_proxy_jump_token1] = ACTIONS(1373), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1373), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1373), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1373), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1373), + [aux_sym_rekey_limit_token1] = ACTIONS(1373), + [aux_sym_remote_command_token1] = ACTIONS(1373), + [aux_sym_remote_forward_token1] = ACTIONS(1373), + [aux_sym_request_tty_token1] = ACTIONS(1373), + [aux_sym_required_rsa_size_token1] = ACTIONS(1373), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1373), + [aux_sym_security_key_provider_token1] = ACTIONS(1373), + [aux_sym_send_env_token1] = ACTIONS(1373), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1373), + [aux_sym_server_alive_interval_token1] = ACTIONS(1373), + [aux_sym_session_type_token1] = ACTIONS(1373), + [aux_sym_set_env_token1] = ACTIONS(1373), + [aux_sym_stdin_null_token1] = ACTIONS(1373), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1373), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1373), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1373), + [aux_sym_syslog_facility_token1] = ACTIONS(1373), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1373), + [aux_sym_keep_alive_token1] = ACTIONS(1373), + [aux_sym_tag_token1] = ACTIONS(1373), + [aux_sym_tunnel_token1] = ACTIONS(1375), + [aux_sym_tunnel_device_token1] = ACTIONS(1373), + [aux_sym_update_host_keys_token1] = ACTIONS(1373), + [aux_sym_use_keychain_token1] = ACTIONS(1373), + [aux_sym_use_roaming_token1] = ACTIONS(1373), + [aux_sym_user_token1] = ACTIONS(1375), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1373), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1373), + [aux_sym_visual_host_key_token1] = ACTIONS(1373), + [aux_sym_xauth_location_token1] = ACTIONS(1373), }, [136] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1378), - [aux_sym_match_token1] = ACTIONS(1374), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1374), - [aux_sym_address_family_token1] = ACTIONS(1374), - [aux_sym_batch_mode_token1] = ACTIONS(1374), - [aux_sym_bind_address_token1] = ACTIONS(1374), - [aux_sym_bind_interface_token1] = ACTIONS(1374), - [aux_sym_canonical_domains_token1] = ACTIONS(1374), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1374), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1374), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1374), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1374), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1374), - [aux_sym_certificate_file_token1] = ACTIONS(1374), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1374), - [aux_sym_channel_timeout_token1] = ACTIONS(1374), - [aux_sym_check_host_ip_token1] = ACTIONS(1374), - [aux_sym_ciphers_token1] = ACTIONS(1374), - [aux_sym_cipher_token1] = ACTIONS(1376), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1374), - [aux_sym_compression_token1] = ACTIONS(1374), - [aux_sym_connection_attempts_token1] = ACTIONS(1374), - [aux_sym_connect_timeout_token1] = ACTIONS(1374), - [aux_sym_control_master_token1] = ACTIONS(1374), - [aux_sym_control_path_token1] = ACTIONS(1374), - [aux_sym_control_persist_token1] = ACTIONS(1374), - [aux_sym_dynamic_forward_token1] = ACTIONS(1374), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1374), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1374), - [aux_sym_escape_char_token1] = ACTIONS(1374), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1374), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1374), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1374), - [aux_sym_forward_agent_token1] = ACTIONS(1374), - [aux_sym_forward_x11_token1] = ACTIONS(1376), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1374), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1374), - [aux_sym_gateway_ports_token1] = ACTIONS(1374), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1374), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1374), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1374), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1374), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1374), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1374), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1374), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1374), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1374), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1374), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1374), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1374), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1374), - [aux_sym_host_key_alias_token1] = ACTIONS(1374), - [aux_sym_hostname_token1] = ACTIONS(1374), - [aux_sym_identities_only_token1] = ACTIONS(1374), - [aux_sym_identity_agent_token1] = ACTIONS(1374), - [aux_sym_identity_file_token1] = ACTIONS(1374), - [aux_sym_ignore_unknown_token1] = ACTIONS(1374), - [aux_sym_include_token1] = ACTIONS(1374), - [aux_sym_ip_qos_token1] = ACTIONS(1374), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1374), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1374), - [aux_sym_kex_algorithms_token1] = ACTIONS(1374), - [aux_sym_known_hosts_command_token1] = ACTIONS(1374), - [aux_sym_local_command_token1] = ACTIONS(1374), - [aux_sym_local_forward_token1] = ACTIONS(1374), - [aux_sym_log_level_token1] = ACTIONS(1374), - [aux_sym_log_verbose_token1] = ACTIONS(1374), - [aux_sym_macs_token1] = ACTIONS(1374), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1374), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1374), - [aux_sym_password_authentication_token1] = ACTIONS(1374), - [aux_sym_permit_local_command_token1] = ACTIONS(1374), - [aux_sym_permit_remote_open_token1] = ACTIONS(1374), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1374), - [aux_sym_port_token1] = ACTIONS(1374), - [aux_sym_preferred_authentications_token1] = ACTIONS(1374), - [aux_sym_protocol_token1] = ACTIONS(1374), - [aux_sym_proxy_command_token1] = ACTIONS(1374), - [aux_sym_proxy_jump_token1] = ACTIONS(1374), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1374), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1374), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1374), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1374), - [aux_sym_rekey_limit_token1] = ACTIONS(1374), - [aux_sym_remote_command_token1] = ACTIONS(1374), - [aux_sym_remote_forward_token1] = ACTIONS(1374), - [aux_sym_request_tty_token1] = ACTIONS(1374), - [aux_sym_required_rsa_size_token1] = ACTIONS(1374), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1374), - [aux_sym_security_key_provider_token1] = ACTIONS(1374), - [aux_sym_send_env_token1] = ACTIONS(1374), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1374), - [aux_sym_server_alive_interval_token1] = ACTIONS(1374), - [aux_sym_session_type_token1] = ACTIONS(1374), - [aux_sym_set_env_token1] = ACTIONS(1374), - [aux_sym_stdin_null_token1] = ACTIONS(1374), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1374), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1374), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1374), - [aux_sym_syslog_facility_token1] = ACTIONS(1374), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1374), - [aux_sym_keep_alive_token1] = ACTIONS(1374), - [aux_sym_tag_token1] = ACTIONS(1374), - [aux_sym_tunnel_token1] = ACTIONS(1376), - [aux_sym_tunnel_device_token1] = ACTIONS(1374), - [aux_sym_update_host_keys_token1] = ACTIONS(1374), - [aux_sym_use_keychain_token1] = ACTIONS(1374), - [aux_sym_use_roaming_token1] = ACTIONS(1374), - [aux_sym_user_token1] = ACTIONS(1376), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1374), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1374), - [aux_sym_visual_host_key_token1] = ACTIONS(1374), - [aux_sym_xauth_location_token1] = ACTIONS(1374), + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(1383), + [aux_sym_match_token1] = ACTIONS(1379), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1379), + [aux_sym_address_family_token1] = ACTIONS(1379), + [aux_sym_batch_mode_token1] = ACTIONS(1379), + [aux_sym_bind_address_token1] = ACTIONS(1379), + [aux_sym_bind_interface_token1] = ACTIONS(1379), + [aux_sym_canonical_domains_token1] = ACTIONS(1379), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1379), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1379), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1379), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1379), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1379), + [aux_sym_certificate_file_token1] = ACTIONS(1379), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1379), + [aux_sym_channel_timeout_token1] = ACTIONS(1379), + [aux_sym_check_host_ip_token1] = ACTIONS(1379), + [aux_sym_ciphers_token1] = ACTIONS(1379), + [aux_sym_cipher_token1] = ACTIONS(1381), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1379), + [aux_sym_compression_token1] = ACTIONS(1379), + [aux_sym_connection_attempts_token1] = ACTIONS(1379), + [aux_sym_connect_timeout_token1] = ACTIONS(1379), + [aux_sym_control_master_token1] = ACTIONS(1379), + [aux_sym_control_path_token1] = ACTIONS(1379), + [aux_sym_control_persist_token1] = ACTIONS(1379), + [aux_sym_dynamic_forward_token1] = ACTIONS(1379), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1379), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1379), + [aux_sym_escape_char_token1] = ACTIONS(1379), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1379), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1379), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1379), + [aux_sym_forward_agent_token1] = ACTIONS(1379), + [aux_sym_forward_x11_token1] = ACTIONS(1381), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1379), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1379), + [aux_sym_gateway_ports_token1] = ACTIONS(1379), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1379), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1379), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1379), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1379), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1379), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1379), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1379), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1379), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1379), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1379), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1379), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1379), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1379), + [aux_sym_host_key_alias_token1] = ACTIONS(1379), + [aux_sym_hostname_token1] = ACTIONS(1379), + [aux_sym_identities_only_token1] = ACTIONS(1379), + [aux_sym_identity_agent_token1] = ACTIONS(1379), + [aux_sym_identity_file_token1] = ACTIONS(1379), + [aux_sym_ignore_unknown_token1] = ACTIONS(1379), + [aux_sym_include_token1] = ACTIONS(1379), + [aux_sym_ip_qos_token1] = ACTIONS(1379), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1379), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1379), + [aux_sym_kex_algorithms_token1] = ACTIONS(1379), + [aux_sym_known_hosts_command_token1] = ACTIONS(1379), + [aux_sym_local_command_token1] = ACTIONS(1379), + [aux_sym_local_forward_token1] = ACTIONS(1379), + [aux_sym_log_level_token1] = ACTIONS(1379), + [aux_sym_log_verbose_token1] = ACTIONS(1379), + [aux_sym_macs_token1] = ACTIONS(1379), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1379), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1379), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1379), + [aux_sym_password_authentication_token1] = ACTIONS(1379), + [aux_sym_permit_local_command_token1] = ACTIONS(1379), + [aux_sym_permit_remote_open_token1] = ACTIONS(1379), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1379), + [aux_sym_port_token1] = ACTIONS(1379), + [aux_sym_preferred_authentications_token1] = ACTIONS(1379), + [aux_sym_protocol_token1] = ACTIONS(1379), + [aux_sym_proxy_command_token1] = ACTIONS(1379), + [aux_sym_proxy_jump_token1] = ACTIONS(1379), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1379), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1379), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1379), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1379), + [aux_sym_rekey_limit_token1] = ACTIONS(1379), + [aux_sym_remote_command_token1] = ACTIONS(1379), + [aux_sym_remote_forward_token1] = ACTIONS(1379), + [aux_sym_request_tty_token1] = ACTIONS(1379), + [aux_sym_required_rsa_size_token1] = ACTIONS(1379), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1379), + [aux_sym_security_key_provider_token1] = ACTIONS(1379), + [aux_sym_send_env_token1] = ACTIONS(1379), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1379), + [aux_sym_server_alive_interval_token1] = ACTIONS(1379), + [aux_sym_session_type_token1] = ACTIONS(1379), + [aux_sym_set_env_token1] = ACTIONS(1379), + [aux_sym_stdin_null_token1] = ACTIONS(1379), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1379), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1379), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1379), + [aux_sym_syslog_facility_token1] = ACTIONS(1379), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1379), + [aux_sym_keep_alive_token1] = ACTIONS(1379), + [aux_sym_tag_token1] = ACTIONS(1379), + [aux_sym_tunnel_token1] = ACTIONS(1381), + [aux_sym_tunnel_device_token1] = ACTIONS(1379), + [aux_sym_update_host_keys_token1] = ACTIONS(1379), + [aux_sym_use_keychain_token1] = ACTIONS(1379), + [aux_sym_use_roaming_token1] = ACTIONS(1379), + [aux_sym_user_token1] = ACTIONS(1381), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1379), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1379), + [aux_sym_visual_host_key_token1] = ACTIONS(1379), + [aux_sym_xauth_location_token1] = ACTIONS(1379), }, [137] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1382), - [anon_sym_DQUOTE] = ACTIONS(1384), - [aux_sym_match_token1] = ACTIONS(1380), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1380), - [aux_sym_address_family_token1] = ACTIONS(1380), - [aux_sym_batch_mode_token1] = ACTIONS(1380), - [aux_sym_bind_address_token1] = ACTIONS(1380), - [aux_sym_bind_interface_token1] = ACTIONS(1380), - [aux_sym_canonical_domains_token1] = ACTIONS(1380), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1380), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1380), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1380), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1380), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1380), - [aux_sym_certificate_file_token1] = ACTIONS(1380), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1380), - [aux_sym_channel_timeout_token1] = ACTIONS(1380), - [aux_sym_check_host_ip_token1] = ACTIONS(1380), - [aux_sym_ciphers_token1] = ACTIONS(1380), - [aux_sym_cipher_token1] = ACTIONS(1382), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1380), - [aux_sym_compression_token1] = ACTIONS(1380), - [aux_sym_connection_attempts_token1] = ACTIONS(1380), - [aux_sym_connect_timeout_token1] = ACTIONS(1380), - [aux_sym_control_master_token1] = ACTIONS(1380), - [aux_sym_control_path_token1] = ACTIONS(1380), - [aux_sym_control_persist_token1] = ACTIONS(1380), - [aux_sym_dynamic_forward_token1] = ACTIONS(1380), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1380), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1380), - [aux_sym_escape_char_token1] = ACTIONS(1380), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1380), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1380), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1380), - [aux_sym_forward_agent_token1] = ACTIONS(1380), - [aux_sym_forward_x11_token1] = ACTIONS(1382), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1380), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1380), - [aux_sym_gateway_ports_token1] = ACTIONS(1380), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1380), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1380), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1380), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1380), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1380), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1380), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1380), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1380), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1380), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1380), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1380), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1380), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1380), - [aux_sym_host_key_alias_token1] = ACTIONS(1380), - [aux_sym_hostname_token1] = ACTIONS(1380), - [aux_sym_identities_only_token1] = ACTIONS(1380), - [aux_sym_identity_agent_token1] = ACTIONS(1380), - [aux_sym_identity_file_token1] = ACTIONS(1380), - [aux_sym_ignore_unknown_token1] = ACTIONS(1380), - [aux_sym_include_token1] = ACTIONS(1380), - [aux_sym_ip_qos_token1] = ACTIONS(1380), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1380), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1380), - [aux_sym_kex_algorithms_token1] = ACTIONS(1380), - [aux_sym_known_hosts_command_token1] = ACTIONS(1380), - [aux_sym_local_command_token1] = ACTIONS(1380), - [aux_sym_local_forward_token1] = ACTIONS(1380), - [aux_sym_log_level_token1] = ACTIONS(1380), - [aux_sym_log_verbose_token1] = ACTIONS(1380), - [aux_sym_macs_token1] = ACTIONS(1380), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1380), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1380), - [aux_sym_password_authentication_token1] = ACTIONS(1380), - [aux_sym_permit_local_command_token1] = ACTIONS(1380), - [aux_sym_permit_remote_open_token1] = ACTIONS(1380), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1380), - [aux_sym_port_token1] = ACTIONS(1380), - [aux_sym_preferred_authentications_token1] = ACTIONS(1380), - [aux_sym_protocol_token1] = ACTIONS(1380), - [aux_sym_proxy_command_token1] = ACTIONS(1380), - [aux_sym_proxy_jump_token1] = ACTIONS(1380), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1380), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1380), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1380), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1380), - [aux_sym_rekey_limit_token1] = ACTIONS(1380), - [aux_sym_remote_command_token1] = ACTIONS(1380), - [aux_sym_remote_forward_token1] = ACTIONS(1380), - [aux_sym_request_tty_token1] = ACTIONS(1380), - [aux_sym_required_rsa_size_token1] = ACTIONS(1380), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1380), - [aux_sym_security_key_provider_token1] = ACTIONS(1380), - [aux_sym_send_env_token1] = ACTIONS(1380), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1380), - [aux_sym_server_alive_interval_token1] = ACTIONS(1380), - [aux_sym_session_type_token1] = ACTIONS(1380), - [aux_sym_set_env_token1] = ACTIONS(1380), - [aux_sym_stdin_null_token1] = ACTIONS(1380), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1380), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1380), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1380), - [aux_sym_syslog_facility_token1] = ACTIONS(1380), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1380), - [aux_sym_keep_alive_token1] = ACTIONS(1380), - [aux_sym_tag_token1] = ACTIONS(1380), - [aux_sym_tunnel_token1] = ACTIONS(1382), - [aux_sym_tunnel_device_token1] = ACTIONS(1380), - [aux_sym_update_host_keys_token1] = ACTIONS(1380), - [aux_sym_use_keychain_token1] = ACTIONS(1380), - [aux_sym_use_roaming_token1] = ACTIONS(1380), - [aux_sym_user_token1] = ACTIONS(1382), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1380), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1380), - [aux_sym_visual_host_key_token1] = ACTIONS(1380), - [aux_sym_xauth_location_token1] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(1389), + [aux_sym_match_token1] = ACTIONS(1385), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1385), + [aux_sym_address_family_token1] = ACTIONS(1385), + [aux_sym_batch_mode_token1] = ACTIONS(1385), + [aux_sym_bind_address_token1] = ACTIONS(1385), + [aux_sym_bind_interface_token1] = ACTIONS(1385), + [aux_sym_canonical_domains_token1] = ACTIONS(1385), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1385), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1385), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1385), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1385), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1385), + [aux_sym_certificate_file_token1] = ACTIONS(1385), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1385), + [aux_sym_channel_timeout_token1] = ACTIONS(1385), + [aux_sym_check_host_ip_token1] = ACTIONS(1385), + [aux_sym_ciphers_token1] = ACTIONS(1385), + [aux_sym_cipher_token1] = ACTIONS(1387), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1385), + [aux_sym_compression_token1] = ACTIONS(1385), + [aux_sym_connection_attempts_token1] = ACTIONS(1385), + [aux_sym_connect_timeout_token1] = ACTIONS(1385), + [aux_sym_control_master_token1] = ACTIONS(1385), + [aux_sym_control_path_token1] = ACTIONS(1385), + [aux_sym_control_persist_token1] = ACTIONS(1385), + [aux_sym_dynamic_forward_token1] = ACTIONS(1385), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1385), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1385), + [aux_sym_escape_char_token1] = ACTIONS(1385), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1385), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1385), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1385), + [aux_sym_forward_agent_token1] = ACTIONS(1385), + [aux_sym_forward_x11_token1] = ACTIONS(1387), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1385), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1385), + [aux_sym_gateway_ports_token1] = ACTIONS(1385), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1385), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1385), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1385), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1385), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1385), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1385), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1385), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1385), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1385), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1385), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1385), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1385), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1385), + [aux_sym_host_key_alias_token1] = ACTIONS(1385), + [aux_sym_hostname_token1] = ACTIONS(1385), + [aux_sym_identities_only_token1] = ACTIONS(1385), + [aux_sym_identity_agent_token1] = ACTIONS(1385), + [aux_sym_identity_file_token1] = ACTIONS(1385), + [aux_sym_ignore_unknown_token1] = ACTIONS(1385), + [aux_sym_include_token1] = ACTIONS(1385), + [aux_sym_ip_qos_token1] = ACTIONS(1385), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1385), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1385), + [aux_sym_kex_algorithms_token1] = ACTIONS(1385), + [aux_sym_known_hosts_command_token1] = ACTIONS(1385), + [aux_sym_local_command_token1] = ACTIONS(1385), + [aux_sym_local_forward_token1] = ACTIONS(1385), + [aux_sym_log_level_token1] = ACTIONS(1385), + [aux_sym_log_verbose_token1] = ACTIONS(1385), + [aux_sym_macs_token1] = ACTIONS(1385), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1385), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1385), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1385), + [aux_sym_password_authentication_token1] = ACTIONS(1385), + [aux_sym_permit_local_command_token1] = ACTIONS(1385), + [aux_sym_permit_remote_open_token1] = ACTIONS(1385), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1385), + [aux_sym_port_token1] = ACTIONS(1385), + [aux_sym_preferred_authentications_token1] = ACTIONS(1385), + [aux_sym_protocol_token1] = ACTIONS(1385), + [aux_sym_proxy_command_token1] = ACTIONS(1385), + [aux_sym_proxy_jump_token1] = ACTIONS(1385), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1385), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1385), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1385), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1385), + [aux_sym_rekey_limit_token1] = ACTIONS(1385), + [aux_sym_remote_command_token1] = ACTIONS(1385), + [aux_sym_remote_forward_token1] = ACTIONS(1385), + [aux_sym_request_tty_token1] = ACTIONS(1385), + [aux_sym_required_rsa_size_token1] = ACTIONS(1385), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1385), + [aux_sym_security_key_provider_token1] = ACTIONS(1385), + [aux_sym_send_env_token1] = ACTIONS(1385), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1385), + [aux_sym_server_alive_interval_token1] = ACTIONS(1385), + [aux_sym_session_type_token1] = ACTIONS(1385), + [aux_sym_set_env_token1] = ACTIONS(1385), + [aux_sym_stdin_null_token1] = ACTIONS(1385), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1385), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1385), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1385), + [aux_sym_syslog_facility_token1] = ACTIONS(1385), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1385), + [aux_sym_keep_alive_token1] = ACTIONS(1385), + [aux_sym_tag_token1] = ACTIONS(1385), + [aux_sym_tunnel_token1] = ACTIONS(1387), + [aux_sym_tunnel_device_token1] = ACTIONS(1385), + [aux_sym_update_host_keys_token1] = ACTIONS(1385), + [aux_sym_use_keychain_token1] = ACTIONS(1385), + [aux_sym_use_roaming_token1] = ACTIONS(1385), + [aux_sym_user_token1] = ACTIONS(1387), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1385), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1385), + [aux_sym_visual_host_key_token1] = ACTIONS(1385), + [aux_sym_xauth_location_token1] = ACTIONS(1385), }, [138] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1388), - [anon_sym_DQUOTE] = ACTIONS(1390), - [aux_sym_match_token1] = ACTIONS(1386), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1386), - [aux_sym_address_family_token1] = ACTIONS(1386), - [aux_sym_batch_mode_token1] = ACTIONS(1386), - [aux_sym_bind_address_token1] = ACTIONS(1386), - [aux_sym_bind_interface_token1] = ACTIONS(1386), - [aux_sym_canonical_domains_token1] = ACTIONS(1386), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1386), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1386), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1386), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1386), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1386), - [aux_sym_certificate_file_token1] = ACTIONS(1386), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1386), - [aux_sym_channel_timeout_token1] = ACTIONS(1386), - [aux_sym_check_host_ip_token1] = ACTIONS(1386), - [aux_sym_ciphers_token1] = ACTIONS(1386), - [aux_sym_cipher_token1] = ACTIONS(1388), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1386), - [aux_sym_compression_token1] = ACTIONS(1386), - [aux_sym_connection_attempts_token1] = ACTIONS(1386), - [aux_sym_connect_timeout_token1] = ACTIONS(1386), - [aux_sym_control_master_token1] = ACTIONS(1386), - [aux_sym_control_path_token1] = ACTIONS(1386), - [aux_sym_control_persist_token1] = ACTIONS(1386), - [aux_sym_dynamic_forward_token1] = ACTIONS(1386), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1386), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1386), - [aux_sym_escape_char_token1] = ACTIONS(1386), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1386), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1386), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1386), - [aux_sym_forward_agent_token1] = ACTIONS(1386), - [aux_sym_forward_x11_token1] = ACTIONS(1388), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1386), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1386), - [aux_sym_gateway_ports_token1] = ACTIONS(1386), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1386), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1386), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1386), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1386), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1386), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1386), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1386), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1386), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1386), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1386), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1386), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1386), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1386), - [aux_sym_host_key_alias_token1] = ACTIONS(1386), - [aux_sym_hostname_token1] = ACTIONS(1386), - [aux_sym_identities_only_token1] = ACTIONS(1386), - [aux_sym_identity_agent_token1] = ACTIONS(1386), - [aux_sym_identity_file_token1] = ACTIONS(1386), - [aux_sym_ignore_unknown_token1] = ACTIONS(1386), - [aux_sym_include_token1] = ACTIONS(1386), - [aux_sym_ip_qos_token1] = ACTIONS(1386), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1386), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1386), - [aux_sym_kex_algorithms_token1] = ACTIONS(1386), - [aux_sym_known_hosts_command_token1] = ACTIONS(1386), - [aux_sym_local_command_token1] = ACTIONS(1386), - [aux_sym_local_forward_token1] = ACTIONS(1386), - [aux_sym_log_level_token1] = ACTIONS(1386), - [aux_sym_log_verbose_token1] = ACTIONS(1386), - [aux_sym_macs_token1] = ACTIONS(1386), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1386), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1386), - [aux_sym_password_authentication_token1] = ACTIONS(1386), - [aux_sym_permit_local_command_token1] = ACTIONS(1386), - [aux_sym_permit_remote_open_token1] = ACTIONS(1386), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1386), - [aux_sym_port_token1] = ACTIONS(1386), - [aux_sym_preferred_authentications_token1] = ACTIONS(1386), - [aux_sym_protocol_token1] = ACTIONS(1386), - [aux_sym_proxy_command_token1] = ACTIONS(1386), - [aux_sym_proxy_jump_token1] = ACTIONS(1386), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1386), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1386), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1386), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1386), - [aux_sym_rekey_limit_token1] = ACTIONS(1386), - [aux_sym_remote_command_token1] = ACTIONS(1386), - [aux_sym_remote_forward_token1] = ACTIONS(1386), - [aux_sym_request_tty_token1] = ACTIONS(1386), - [aux_sym_required_rsa_size_token1] = ACTIONS(1386), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1386), - [aux_sym_security_key_provider_token1] = ACTIONS(1386), - [aux_sym_send_env_token1] = ACTIONS(1386), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1386), - [aux_sym_server_alive_interval_token1] = ACTIONS(1386), - [aux_sym_session_type_token1] = ACTIONS(1386), - [aux_sym_set_env_token1] = ACTIONS(1386), - [aux_sym_stdin_null_token1] = ACTIONS(1386), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1386), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1386), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1386), - [aux_sym_syslog_facility_token1] = ACTIONS(1386), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1386), - [aux_sym_keep_alive_token1] = ACTIONS(1386), - [aux_sym_tag_token1] = ACTIONS(1386), - [aux_sym_tunnel_token1] = ACTIONS(1388), - [aux_sym_tunnel_device_token1] = ACTIONS(1386), - [aux_sym_update_host_keys_token1] = ACTIONS(1386), - [aux_sym_use_keychain_token1] = ACTIONS(1386), - [aux_sym_use_roaming_token1] = ACTIONS(1386), - [aux_sym_user_token1] = ACTIONS(1388), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1386), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1386), - [aux_sym_visual_host_key_token1] = ACTIONS(1386), - [aux_sym_xauth_location_token1] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(1391), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(1395), + [aux_sym_match_token1] = ACTIONS(1391), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1391), + [aux_sym_address_family_token1] = ACTIONS(1391), + [aux_sym_batch_mode_token1] = ACTIONS(1391), + [aux_sym_bind_address_token1] = ACTIONS(1391), + [aux_sym_bind_interface_token1] = ACTIONS(1391), + [aux_sym_canonical_domains_token1] = ACTIONS(1391), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1391), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1391), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1391), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1391), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1391), + [aux_sym_certificate_file_token1] = ACTIONS(1391), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1391), + [aux_sym_channel_timeout_token1] = ACTIONS(1391), + [aux_sym_check_host_ip_token1] = ACTIONS(1391), + [aux_sym_ciphers_token1] = ACTIONS(1391), + [aux_sym_cipher_token1] = ACTIONS(1393), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1391), + [aux_sym_compression_token1] = ACTIONS(1391), + [aux_sym_connection_attempts_token1] = ACTIONS(1391), + [aux_sym_connect_timeout_token1] = ACTIONS(1391), + [aux_sym_control_master_token1] = ACTIONS(1391), + [aux_sym_control_path_token1] = ACTIONS(1391), + [aux_sym_control_persist_token1] = ACTIONS(1391), + [aux_sym_dynamic_forward_token1] = ACTIONS(1391), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1391), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1391), + [aux_sym_escape_char_token1] = ACTIONS(1391), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1391), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1391), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1391), + [aux_sym_forward_agent_token1] = ACTIONS(1391), + [aux_sym_forward_x11_token1] = ACTIONS(1393), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1391), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1391), + [aux_sym_gateway_ports_token1] = ACTIONS(1391), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1391), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1391), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1391), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1391), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1391), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1391), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1391), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1391), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1391), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1391), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1391), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1391), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1391), + [aux_sym_host_key_alias_token1] = ACTIONS(1391), + [aux_sym_hostname_token1] = ACTIONS(1391), + [aux_sym_identities_only_token1] = ACTIONS(1391), + [aux_sym_identity_agent_token1] = ACTIONS(1391), + [aux_sym_identity_file_token1] = ACTIONS(1391), + [aux_sym_ignore_unknown_token1] = ACTIONS(1391), + [aux_sym_include_token1] = ACTIONS(1391), + [aux_sym_ip_qos_token1] = ACTIONS(1391), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1391), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1391), + [aux_sym_kex_algorithms_token1] = ACTIONS(1391), + [aux_sym_known_hosts_command_token1] = ACTIONS(1391), + [aux_sym_local_command_token1] = ACTIONS(1391), + [aux_sym_local_forward_token1] = ACTIONS(1391), + [aux_sym_log_level_token1] = ACTIONS(1391), + [aux_sym_log_verbose_token1] = ACTIONS(1391), + [aux_sym_macs_token1] = ACTIONS(1391), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1391), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1391), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1391), + [aux_sym_password_authentication_token1] = ACTIONS(1391), + [aux_sym_permit_local_command_token1] = ACTIONS(1391), + [aux_sym_permit_remote_open_token1] = ACTIONS(1391), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1391), + [aux_sym_port_token1] = ACTIONS(1391), + [aux_sym_preferred_authentications_token1] = ACTIONS(1391), + [aux_sym_protocol_token1] = ACTIONS(1391), + [aux_sym_proxy_command_token1] = ACTIONS(1391), + [aux_sym_proxy_jump_token1] = ACTIONS(1391), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1391), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1391), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1391), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1391), + [aux_sym_rekey_limit_token1] = ACTIONS(1391), + [aux_sym_remote_command_token1] = ACTIONS(1391), + [aux_sym_remote_forward_token1] = ACTIONS(1391), + [aux_sym_request_tty_token1] = ACTIONS(1391), + [aux_sym_required_rsa_size_token1] = ACTIONS(1391), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1391), + [aux_sym_security_key_provider_token1] = ACTIONS(1391), + [aux_sym_send_env_token1] = ACTIONS(1391), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1391), + [aux_sym_server_alive_interval_token1] = ACTIONS(1391), + [aux_sym_session_type_token1] = ACTIONS(1391), + [aux_sym_set_env_token1] = ACTIONS(1391), + [aux_sym_stdin_null_token1] = ACTIONS(1391), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1391), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1391), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1391), + [aux_sym_syslog_facility_token1] = ACTIONS(1391), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1391), + [aux_sym_keep_alive_token1] = ACTIONS(1391), + [aux_sym_tag_token1] = ACTIONS(1391), + [aux_sym_tunnel_token1] = ACTIONS(1393), + [aux_sym_tunnel_device_token1] = ACTIONS(1391), + [aux_sym_update_host_keys_token1] = ACTIONS(1391), + [aux_sym_use_keychain_token1] = ACTIONS(1391), + [aux_sym_use_roaming_token1] = ACTIONS(1391), + [aux_sym_user_token1] = ACTIONS(1393), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1391), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1391), + [aux_sym_visual_host_key_token1] = ACTIONS(1391), + [aux_sym_xauth_location_token1] = ACTIONS(1391), }, [139] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1394), - [anon_sym_DQUOTE] = ACTIONS(1396), - [aux_sym_match_token1] = ACTIONS(1392), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1392), - [aux_sym_address_family_token1] = ACTIONS(1392), - [aux_sym_batch_mode_token1] = ACTIONS(1392), - [aux_sym_bind_address_token1] = ACTIONS(1392), - [aux_sym_bind_interface_token1] = ACTIONS(1392), - [aux_sym_canonical_domains_token1] = ACTIONS(1392), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1392), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1392), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1392), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1392), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1392), - [aux_sym_certificate_file_token1] = ACTIONS(1392), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1392), - [aux_sym_channel_timeout_token1] = ACTIONS(1392), - [aux_sym_check_host_ip_token1] = ACTIONS(1392), - [aux_sym_ciphers_token1] = ACTIONS(1392), - [aux_sym_cipher_token1] = ACTIONS(1394), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1392), - [aux_sym_compression_token1] = ACTIONS(1392), - [aux_sym_connection_attempts_token1] = ACTIONS(1392), - [aux_sym_connect_timeout_token1] = ACTIONS(1392), - [aux_sym_control_master_token1] = ACTIONS(1392), - [aux_sym_control_path_token1] = ACTIONS(1392), - [aux_sym_control_persist_token1] = ACTIONS(1392), - [aux_sym_dynamic_forward_token1] = ACTIONS(1392), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1392), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1392), - [aux_sym_escape_char_token1] = ACTIONS(1392), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1392), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1392), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1392), - [aux_sym_forward_agent_token1] = ACTIONS(1392), - [aux_sym_forward_x11_token1] = ACTIONS(1394), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1392), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1392), - [aux_sym_gateway_ports_token1] = ACTIONS(1392), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1392), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1392), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1392), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1392), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1392), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1392), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1392), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1392), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1392), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1392), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1392), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1392), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1392), - [aux_sym_host_key_alias_token1] = ACTIONS(1392), - [aux_sym_hostname_token1] = ACTIONS(1392), - [aux_sym_identities_only_token1] = ACTIONS(1392), - [aux_sym_identity_agent_token1] = ACTIONS(1392), - [aux_sym_identity_file_token1] = ACTIONS(1392), - [aux_sym_ignore_unknown_token1] = ACTIONS(1392), - [aux_sym_include_token1] = ACTIONS(1392), - [aux_sym_ip_qos_token1] = ACTIONS(1392), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1392), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1392), - [aux_sym_kex_algorithms_token1] = ACTIONS(1392), - [aux_sym_known_hosts_command_token1] = ACTIONS(1392), - [aux_sym_local_command_token1] = ACTIONS(1392), - [aux_sym_local_forward_token1] = ACTIONS(1392), - [aux_sym_log_level_token1] = ACTIONS(1392), - [aux_sym_log_verbose_token1] = ACTIONS(1392), - [aux_sym_macs_token1] = ACTIONS(1392), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1392), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1392), - [aux_sym_password_authentication_token1] = ACTIONS(1392), - [aux_sym_permit_local_command_token1] = ACTIONS(1392), - [aux_sym_permit_remote_open_token1] = ACTIONS(1392), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1392), - [aux_sym_port_token1] = ACTIONS(1392), - [aux_sym_preferred_authentications_token1] = ACTIONS(1392), - [aux_sym_protocol_token1] = ACTIONS(1392), - [aux_sym_proxy_command_token1] = ACTIONS(1392), - [aux_sym_proxy_jump_token1] = ACTIONS(1392), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1392), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1392), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1392), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1392), - [aux_sym_rekey_limit_token1] = ACTIONS(1392), - [aux_sym_remote_command_token1] = ACTIONS(1392), - [aux_sym_remote_forward_token1] = ACTIONS(1392), - [aux_sym_request_tty_token1] = ACTIONS(1392), - [aux_sym_required_rsa_size_token1] = ACTIONS(1392), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1392), - [aux_sym_security_key_provider_token1] = ACTIONS(1392), - [aux_sym_send_env_token1] = ACTIONS(1392), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1392), - [aux_sym_server_alive_interval_token1] = ACTIONS(1392), - [aux_sym_session_type_token1] = ACTIONS(1392), - [aux_sym_set_env_token1] = ACTIONS(1392), - [aux_sym_stdin_null_token1] = ACTIONS(1392), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1392), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1392), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1392), - [aux_sym_syslog_facility_token1] = ACTIONS(1392), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1392), - [aux_sym_keep_alive_token1] = ACTIONS(1392), - [aux_sym_tag_token1] = ACTIONS(1392), - [aux_sym_tunnel_token1] = ACTIONS(1394), - [aux_sym_tunnel_device_token1] = ACTIONS(1392), - [aux_sym_update_host_keys_token1] = ACTIONS(1392), - [aux_sym_use_keychain_token1] = ACTIONS(1392), - [aux_sym_use_roaming_token1] = ACTIONS(1392), - [aux_sym_user_token1] = ACTIONS(1394), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1392), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1392), - [aux_sym_visual_host_key_token1] = ACTIONS(1392), - [aux_sym_xauth_location_token1] = ACTIONS(1392), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(1401), + [aux_sym_match_token1] = ACTIONS(1397), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1397), + [aux_sym_address_family_token1] = ACTIONS(1397), + [aux_sym_batch_mode_token1] = ACTIONS(1397), + [aux_sym_bind_address_token1] = ACTIONS(1397), + [aux_sym_bind_interface_token1] = ACTIONS(1397), + [aux_sym_canonical_domains_token1] = ACTIONS(1397), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1397), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1397), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1397), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1397), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1397), + [aux_sym_certificate_file_token1] = ACTIONS(1397), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1397), + [aux_sym_channel_timeout_token1] = ACTIONS(1397), + [aux_sym_check_host_ip_token1] = ACTIONS(1397), + [aux_sym_ciphers_token1] = ACTIONS(1397), + [aux_sym_cipher_token1] = ACTIONS(1399), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1397), + [aux_sym_compression_token1] = ACTIONS(1397), + [aux_sym_connection_attempts_token1] = ACTIONS(1397), + [aux_sym_connect_timeout_token1] = ACTIONS(1397), + [aux_sym_control_master_token1] = ACTIONS(1397), + [aux_sym_control_path_token1] = ACTIONS(1397), + [aux_sym_control_persist_token1] = ACTIONS(1397), + [aux_sym_dynamic_forward_token1] = ACTIONS(1397), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1397), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1397), + [aux_sym_escape_char_token1] = ACTIONS(1397), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1397), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1397), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1397), + [aux_sym_forward_agent_token1] = ACTIONS(1397), + [aux_sym_forward_x11_token1] = ACTIONS(1399), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1397), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1397), + [aux_sym_gateway_ports_token1] = ACTIONS(1397), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1397), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1397), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1397), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1397), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1397), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1397), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1397), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1397), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1397), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1397), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1397), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1397), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1397), + [aux_sym_host_key_alias_token1] = ACTIONS(1397), + [aux_sym_hostname_token1] = ACTIONS(1397), + [aux_sym_identities_only_token1] = ACTIONS(1397), + [aux_sym_identity_agent_token1] = ACTIONS(1397), + [aux_sym_identity_file_token1] = ACTIONS(1397), + [aux_sym_ignore_unknown_token1] = ACTIONS(1397), + [aux_sym_include_token1] = ACTIONS(1397), + [aux_sym_ip_qos_token1] = ACTIONS(1397), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1397), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1397), + [aux_sym_kex_algorithms_token1] = ACTIONS(1397), + [aux_sym_known_hosts_command_token1] = ACTIONS(1397), + [aux_sym_local_command_token1] = ACTIONS(1397), + [aux_sym_local_forward_token1] = ACTIONS(1397), + [aux_sym_log_level_token1] = ACTIONS(1397), + [aux_sym_log_verbose_token1] = ACTIONS(1397), + [aux_sym_macs_token1] = ACTIONS(1397), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1397), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1397), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1397), + [aux_sym_password_authentication_token1] = ACTIONS(1397), + [aux_sym_permit_local_command_token1] = ACTIONS(1397), + [aux_sym_permit_remote_open_token1] = ACTIONS(1397), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1397), + [aux_sym_port_token1] = ACTIONS(1397), + [aux_sym_preferred_authentications_token1] = ACTIONS(1397), + [aux_sym_protocol_token1] = ACTIONS(1397), + [aux_sym_proxy_command_token1] = ACTIONS(1397), + [aux_sym_proxy_jump_token1] = ACTIONS(1397), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1397), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1397), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1397), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1397), + [aux_sym_rekey_limit_token1] = ACTIONS(1397), + [aux_sym_remote_command_token1] = ACTIONS(1397), + [aux_sym_remote_forward_token1] = ACTIONS(1397), + [aux_sym_request_tty_token1] = ACTIONS(1397), + [aux_sym_required_rsa_size_token1] = ACTIONS(1397), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1397), + [aux_sym_security_key_provider_token1] = ACTIONS(1397), + [aux_sym_send_env_token1] = ACTIONS(1397), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1397), + [aux_sym_server_alive_interval_token1] = ACTIONS(1397), + [aux_sym_session_type_token1] = ACTIONS(1397), + [aux_sym_set_env_token1] = ACTIONS(1397), + [aux_sym_stdin_null_token1] = ACTIONS(1397), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1397), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1397), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1397), + [aux_sym_syslog_facility_token1] = ACTIONS(1397), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1397), + [aux_sym_keep_alive_token1] = ACTIONS(1397), + [aux_sym_tag_token1] = ACTIONS(1397), + [aux_sym_tunnel_token1] = ACTIONS(1399), + [aux_sym_tunnel_device_token1] = ACTIONS(1397), + [aux_sym_update_host_keys_token1] = ACTIONS(1397), + [aux_sym_use_keychain_token1] = ACTIONS(1397), + [aux_sym_use_roaming_token1] = ACTIONS(1397), + [aux_sym_user_token1] = ACTIONS(1399), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1397), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1397), + [aux_sym_visual_host_key_token1] = ACTIONS(1397), + [aux_sym_xauth_location_token1] = ACTIONS(1397), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1400), - [anon_sym_DQUOTE] = ACTIONS(1402), - [aux_sym_match_token1] = ACTIONS(1398), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1398), - [aux_sym_address_family_token1] = ACTIONS(1398), - [aux_sym_batch_mode_token1] = ACTIONS(1398), - [aux_sym_bind_address_token1] = ACTIONS(1398), - [aux_sym_bind_interface_token1] = ACTIONS(1398), - [aux_sym_canonical_domains_token1] = ACTIONS(1398), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1398), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1398), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1398), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1398), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1398), - [aux_sym_certificate_file_token1] = ACTIONS(1398), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1398), - [aux_sym_channel_timeout_token1] = ACTIONS(1398), - [aux_sym_check_host_ip_token1] = ACTIONS(1398), - [aux_sym_ciphers_token1] = ACTIONS(1398), - [aux_sym_cipher_token1] = ACTIONS(1400), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1398), - [aux_sym_compression_token1] = ACTIONS(1398), - [aux_sym_connection_attempts_token1] = ACTIONS(1398), - [aux_sym_connect_timeout_token1] = ACTIONS(1398), - [aux_sym_control_master_token1] = ACTIONS(1398), - [aux_sym_control_path_token1] = ACTIONS(1398), - [aux_sym_control_persist_token1] = ACTIONS(1398), - [aux_sym_dynamic_forward_token1] = ACTIONS(1398), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1398), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1398), - [aux_sym_escape_char_token1] = ACTIONS(1398), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1398), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1398), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1398), - [aux_sym_forward_agent_token1] = ACTIONS(1398), - [aux_sym_forward_x11_token1] = ACTIONS(1400), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1398), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1398), - [aux_sym_gateway_ports_token1] = ACTIONS(1398), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1398), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1398), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1398), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1398), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1398), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1398), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1398), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1398), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1398), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1398), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1398), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1398), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1398), - [aux_sym_host_key_alias_token1] = ACTIONS(1398), - [aux_sym_hostname_token1] = ACTIONS(1398), - [aux_sym_identities_only_token1] = ACTIONS(1398), - [aux_sym_identity_agent_token1] = ACTIONS(1398), - [aux_sym_identity_file_token1] = ACTIONS(1398), - [aux_sym_ignore_unknown_token1] = ACTIONS(1398), - [aux_sym_include_token1] = ACTIONS(1398), - [aux_sym_ip_qos_token1] = ACTIONS(1398), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1398), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1398), - [aux_sym_kex_algorithms_token1] = ACTIONS(1398), - [aux_sym_known_hosts_command_token1] = ACTIONS(1398), - [aux_sym_local_command_token1] = ACTIONS(1398), - [aux_sym_local_forward_token1] = ACTIONS(1398), - [aux_sym_log_level_token1] = ACTIONS(1398), - [aux_sym_log_verbose_token1] = ACTIONS(1398), - [aux_sym_macs_token1] = ACTIONS(1398), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1398), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1398), - [aux_sym_password_authentication_token1] = ACTIONS(1398), - [aux_sym_permit_local_command_token1] = ACTIONS(1398), - [aux_sym_permit_remote_open_token1] = ACTIONS(1398), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1398), - [aux_sym_port_token1] = ACTIONS(1398), - [aux_sym_preferred_authentications_token1] = ACTIONS(1398), - [aux_sym_protocol_token1] = ACTIONS(1398), - [aux_sym_proxy_command_token1] = ACTIONS(1398), - [aux_sym_proxy_jump_token1] = ACTIONS(1398), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1398), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1398), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1398), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1398), - [aux_sym_rekey_limit_token1] = ACTIONS(1398), - [aux_sym_remote_command_token1] = ACTIONS(1398), - [aux_sym_remote_forward_token1] = ACTIONS(1398), - [aux_sym_request_tty_token1] = ACTIONS(1398), - [aux_sym_required_rsa_size_token1] = ACTIONS(1398), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1398), - [aux_sym_security_key_provider_token1] = ACTIONS(1398), - [aux_sym_send_env_token1] = ACTIONS(1398), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1398), - [aux_sym_server_alive_interval_token1] = ACTIONS(1398), - [aux_sym_session_type_token1] = ACTIONS(1398), - [aux_sym_set_env_token1] = ACTIONS(1398), - [aux_sym_stdin_null_token1] = ACTIONS(1398), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1398), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1398), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1398), - [aux_sym_syslog_facility_token1] = ACTIONS(1398), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1398), - [aux_sym_keep_alive_token1] = ACTIONS(1398), - [aux_sym_tag_token1] = ACTIONS(1398), - [aux_sym_tunnel_token1] = ACTIONS(1400), - [aux_sym_tunnel_device_token1] = ACTIONS(1398), - [aux_sym_update_host_keys_token1] = ACTIONS(1398), - [aux_sym_use_keychain_token1] = ACTIONS(1398), - [aux_sym_use_roaming_token1] = ACTIONS(1398), - [aux_sym_user_token1] = ACTIONS(1400), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1398), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1398), - [aux_sym_visual_host_key_token1] = ACTIONS(1398), - [aux_sym_xauth_location_token1] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(1407), + [aux_sym_match_token1] = ACTIONS(1403), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1403), + [aux_sym_address_family_token1] = ACTIONS(1403), + [aux_sym_batch_mode_token1] = ACTIONS(1403), + [aux_sym_bind_address_token1] = ACTIONS(1403), + [aux_sym_bind_interface_token1] = ACTIONS(1403), + [aux_sym_canonical_domains_token1] = ACTIONS(1403), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1403), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1403), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1403), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1403), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1403), + [aux_sym_certificate_file_token1] = ACTIONS(1403), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1403), + [aux_sym_channel_timeout_token1] = ACTIONS(1403), + [aux_sym_check_host_ip_token1] = ACTIONS(1403), + [aux_sym_ciphers_token1] = ACTIONS(1403), + [aux_sym_cipher_token1] = ACTIONS(1405), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1403), + [aux_sym_compression_token1] = ACTIONS(1403), + [aux_sym_connection_attempts_token1] = ACTIONS(1403), + [aux_sym_connect_timeout_token1] = ACTIONS(1403), + [aux_sym_control_master_token1] = ACTIONS(1403), + [aux_sym_control_path_token1] = ACTIONS(1403), + [aux_sym_control_persist_token1] = ACTIONS(1403), + [aux_sym_dynamic_forward_token1] = ACTIONS(1403), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1403), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1403), + [aux_sym_escape_char_token1] = ACTIONS(1403), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1403), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1403), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1403), + [aux_sym_forward_agent_token1] = ACTIONS(1403), + [aux_sym_forward_x11_token1] = ACTIONS(1405), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1403), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1403), + [aux_sym_gateway_ports_token1] = ACTIONS(1403), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1403), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1403), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1403), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1403), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1403), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1403), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1403), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1403), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1403), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1403), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1403), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1403), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1403), + [aux_sym_host_key_alias_token1] = ACTIONS(1403), + [aux_sym_hostname_token1] = ACTIONS(1403), + [aux_sym_identities_only_token1] = ACTIONS(1403), + [aux_sym_identity_agent_token1] = ACTIONS(1403), + [aux_sym_identity_file_token1] = ACTIONS(1403), + [aux_sym_ignore_unknown_token1] = ACTIONS(1403), + [aux_sym_include_token1] = ACTIONS(1403), + [aux_sym_ip_qos_token1] = ACTIONS(1403), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1403), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1403), + [aux_sym_kex_algorithms_token1] = ACTIONS(1403), + [aux_sym_known_hosts_command_token1] = ACTIONS(1403), + [aux_sym_local_command_token1] = ACTIONS(1403), + [aux_sym_local_forward_token1] = ACTIONS(1403), + [aux_sym_log_level_token1] = ACTIONS(1403), + [aux_sym_log_verbose_token1] = ACTIONS(1403), + [aux_sym_macs_token1] = ACTIONS(1403), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1403), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1403), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1403), + [aux_sym_password_authentication_token1] = ACTIONS(1403), + [aux_sym_permit_local_command_token1] = ACTIONS(1403), + [aux_sym_permit_remote_open_token1] = ACTIONS(1403), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1403), + [aux_sym_port_token1] = ACTIONS(1403), + [aux_sym_preferred_authentications_token1] = ACTIONS(1403), + [aux_sym_protocol_token1] = ACTIONS(1403), + [aux_sym_proxy_command_token1] = ACTIONS(1403), + [aux_sym_proxy_jump_token1] = ACTIONS(1403), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1403), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1403), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1403), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1403), + [aux_sym_rekey_limit_token1] = ACTIONS(1403), + [aux_sym_remote_command_token1] = ACTIONS(1403), + [aux_sym_remote_forward_token1] = ACTIONS(1403), + [aux_sym_request_tty_token1] = ACTIONS(1403), + [aux_sym_required_rsa_size_token1] = ACTIONS(1403), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1403), + [aux_sym_security_key_provider_token1] = ACTIONS(1403), + [aux_sym_send_env_token1] = ACTIONS(1403), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1403), + [aux_sym_server_alive_interval_token1] = ACTIONS(1403), + [aux_sym_session_type_token1] = ACTIONS(1403), + [aux_sym_set_env_token1] = ACTIONS(1403), + [aux_sym_stdin_null_token1] = ACTIONS(1403), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1403), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1403), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1403), + [aux_sym_syslog_facility_token1] = ACTIONS(1403), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1403), + [aux_sym_keep_alive_token1] = ACTIONS(1403), + [aux_sym_tag_token1] = ACTIONS(1403), + [aux_sym_tunnel_token1] = ACTIONS(1405), + [aux_sym_tunnel_device_token1] = ACTIONS(1403), + [aux_sym_update_host_keys_token1] = ACTIONS(1403), + [aux_sym_use_keychain_token1] = ACTIONS(1403), + [aux_sym_use_roaming_token1] = ACTIONS(1403), + [aux_sym_user_token1] = ACTIONS(1405), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1403), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1403), + [aux_sym_visual_host_key_token1] = ACTIONS(1403), + [aux_sym_xauth_location_token1] = ACTIONS(1403), }, [141] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1406), - [anon_sym_DQUOTE] = ACTIONS(1408), - [aux_sym_match_token1] = ACTIONS(1404), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1404), - [aux_sym_address_family_token1] = ACTIONS(1404), - [aux_sym_batch_mode_token1] = ACTIONS(1404), - [aux_sym_bind_address_token1] = ACTIONS(1404), - [aux_sym_bind_interface_token1] = ACTIONS(1404), - [aux_sym_canonical_domains_token1] = ACTIONS(1404), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1404), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1404), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1404), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1404), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1404), - [aux_sym_certificate_file_token1] = ACTIONS(1404), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1404), - [aux_sym_channel_timeout_token1] = ACTIONS(1404), - [aux_sym_check_host_ip_token1] = ACTIONS(1404), - [aux_sym_ciphers_token1] = ACTIONS(1404), - [aux_sym_cipher_token1] = ACTIONS(1406), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1404), - [aux_sym_compression_token1] = ACTIONS(1404), - [aux_sym_connection_attempts_token1] = ACTIONS(1404), - [aux_sym_connect_timeout_token1] = ACTIONS(1404), - [aux_sym_control_master_token1] = ACTIONS(1404), - [aux_sym_control_path_token1] = ACTIONS(1404), - [aux_sym_control_persist_token1] = ACTIONS(1404), - [aux_sym_dynamic_forward_token1] = ACTIONS(1404), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1404), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1404), - [aux_sym_escape_char_token1] = ACTIONS(1404), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1404), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1404), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1404), - [aux_sym_forward_agent_token1] = ACTIONS(1404), - [aux_sym_forward_x11_token1] = ACTIONS(1406), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1404), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1404), - [aux_sym_gateway_ports_token1] = ACTIONS(1404), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1404), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1404), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1404), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1404), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1404), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1404), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1404), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1404), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1404), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1404), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1404), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1404), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1404), - [aux_sym_host_key_alias_token1] = ACTIONS(1404), - [aux_sym_hostname_token1] = ACTIONS(1404), - [aux_sym_identities_only_token1] = ACTIONS(1404), - [aux_sym_identity_agent_token1] = ACTIONS(1404), - [aux_sym_identity_file_token1] = ACTIONS(1404), - [aux_sym_ignore_unknown_token1] = ACTIONS(1404), - [aux_sym_include_token1] = ACTIONS(1404), - [aux_sym_ip_qos_token1] = ACTIONS(1404), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1404), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1404), - [aux_sym_kex_algorithms_token1] = ACTIONS(1404), - [aux_sym_known_hosts_command_token1] = ACTIONS(1404), - [aux_sym_local_command_token1] = ACTIONS(1404), - [aux_sym_local_forward_token1] = ACTIONS(1404), - [aux_sym_log_level_token1] = ACTIONS(1404), - [aux_sym_log_verbose_token1] = ACTIONS(1404), - [aux_sym_macs_token1] = ACTIONS(1404), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1404), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1404), - [aux_sym_password_authentication_token1] = ACTIONS(1404), - [aux_sym_permit_local_command_token1] = ACTIONS(1404), - [aux_sym_permit_remote_open_token1] = ACTIONS(1404), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1404), - [aux_sym_port_token1] = ACTIONS(1404), - [aux_sym_preferred_authentications_token1] = ACTIONS(1404), - [aux_sym_protocol_token1] = ACTIONS(1404), - [aux_sym_proxy_command_token1] = ACTIONS(1404), - [aux_sym_proxy_jump_token1] = ACTIONS(1404), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1404), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1404), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1404), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1404), - [aux_sym_rekey_limit_token1] = ACTIONS(1404), - [aux_sym_remote_command_token1] = ACTIONS(1404), - [aux_sym_remote_forward_token1] = ACTIONS(1404), - [aux_sym_request_tty_token1] = ACTIONS(1404), - [aux_sym_required_rsa_size_token1] = ACTIONS(1404), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1404), - [aux_sym_security_key_provider_token1] = ACTIONS(1404), - [aux_sym_send_env_token1] = ACTIONS(1404), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1404), - [aux_sym_server_alive_interval_token1] = ACTIONS(1404), - [aux_sym_session_type_token1] = ACTIONS(1404), - [aux_sym_set_env_token1] = ACTIONS(1404), - [aux_sym_stdin_null_token1] = ACTIONS(1404), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1404), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1404), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1404), - [aux_sym_syslog_facility_token1] = ACTIONS(1404), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1404), - [aux_sym_keep_alive_token1] = ACTIONS(1404), - [aux_sym_tag_token1] = ACTIONS(1404), - [aux_sym_tunnel_token1] = ACTIONS(1406), - [aux_sym_tunnel_device_token1] = ACTIONS(1404), - [aux_sym_update_host_keys_token1] = ACTIONS(1404), - [aux_sym_use_keychain_token1] = ACTIONS(1404), - [aux_sym_use_roaming_token1] = ACTIONS(1404), - [aux_sym_user_token1] = ACTIONS(1406), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1404), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1404), - [aux_sym_visual_host_key_token1] = ACTIONS(1404), - [aux_sym_xauth_location_token1] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(1413), + [aux_sym_match_token1] = ACTIONS(1409), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1409), + [aux_sym_address_family_token1] = ACTIONS(1409), + [aux_sym_batch_mode_token1] = ACTIONS(1409), + [aux_sym_bind_address_token1] = ACTIONS(1409), + [aux_sym_bind_interface_token1] = ACTIONS(1409), + [aux_sym_canonical_domains_token1] = ACTIONS(1409), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1409), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1409), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1409), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1409), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1409), + [aux_sym_certificate_file_token1] = ACTIONS(1409), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1409), + [aux_sym_channel_timeout_token1] = ACTIONS(1409), + [aux_sym_check_host_ip_token1] = ACTIONS(1409), + [aux_sym_ciphers_token1] = ACTIONS(1409), + [aux_sym_cipher_token1] = ACTIONS(1411), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1409), + [aux_sym_compression_token1] = ACTIONS(1409), + [aux_sym_connection_attempts_token1] = ACTIONS(1409), + [aux_sym_connect_timeout_token1] = ACTIONS(1409), + [aux_sym_control_master_token1] = ACTIONS(1409), + [aux_sym_control_path_token1] = ACTIONS(1409), + [aux_sym_control_persist_token1] = ACTIONS(1409), + [aux_sym_dynamic_forward_token1] = ACTIONS(1409), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1409), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1409), + [aux_sym_escape_char_token1] = ACTIONS(1409), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1409), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1409), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1409), + [aux_sym_forward_agent_token1] = ACTIONS(1409), + [aux_sym_forward_x11_token1] = ACTIONS(1411), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1409), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1409), + [aux_sym_gateway_ports_token1] = ACTIONS(1409), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1409), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1409), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1409), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1409), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1409), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1409), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1409), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1409), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1409), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1409), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1409), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1409), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1409), + [aux_sym_host_key_alias_token1] = ACTIONS(1409), + [aux_sym_hostname_token1] = ACTIONS(1409), + [aux_sym_identities_only_token1] = ACTIONS(1409), + [aux_sym_identity_agent_token1] = ACTIONS(1409), + [aux_sym_identity_file_token1] = ACTIONS(1409), + [aux_sym_ignore_unknown_token1] = ACTIONS(1409), + [aux_sym_include_token1] = ACTIONS(1409), + [aux_sym_ip_qos_token1] = ACTIONS(1409), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1409), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1409), + [aux_sym_kex_algorithms_token1] = ACTIONS(1409), + [aux_sym_known_hosts_command_token1] = ACTIONS(1409), + [aux_sym_local_command_token1] = ACTIONS(1409), + [aux_sym_local_forward_token1] = ACTIONS(1409), + [aux_sym_log_level_token1] = ACTIONS(1409), + [aux_sym_log_verbose_token1] = ACTIONS(1409), + [aux_sym_macs_token1] = ACTIONS(1409), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1409), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1409), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1409), + [aux_sym_password_authentication_token1] = ACTIONS(1409), + [aux_sym_permit_local_command_token1] = ACTIONS(1409), + [aux_sym_permit_remote_open_token1] = ACTIONS(1409), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1409), + [aux_sym_port_token1] = ACTIONS(1409), + [aux_sym_preferred_authentications_token1] = ACTIONS(1409), + [aux_sym_protocol_token1] = ACTIONS(1409), + [aux_sym_proxy_command_token1] = ACTIONS(1409), + [aux_sym_proxy_jump_token1] = ACTIONS(1409), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1409), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1409), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1409), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1409), + [aux_sym_rekey_limit_token1] = ACTIONS(1409), + [aux_sym_remote_command_token1] = ACTIONS(1409), + [aux_sym_remote_forward_token1] = ACTIONS(1409), + [aux_sym_request_tty_token1] = ACTIONS(1409), + [aux_sym_required_rsa_size_token1] = ACTIONS(1409), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1409), + [aux_sym_security_key_provider_token1] = ACTIONS(1409), + [aux_sym_send_env_token1] = ACTIONS(1409), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1409), + [aux_sym_server_alive_interval_token1] = ACTIONS(1409), + [aux_sym_session_type_token1] = ACTIONS(1409), + [aux_sym_set_env_token1] = ACTIONS(1409), + [aux_sym_stdin_null_token1] = ACTIONS(1409), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1409), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1409), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1409), + [aux_sym_syslog_facility_token1] = ACTIONS(1409), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1409), + [aux_sym_keep_alive_token1] = ACTIONS(1409), + [aux_sym_tag_token1] = ACTIONS(1409), + [aux_sym_tunnel_token1] = ACTIONS(1411), + [aux_sym_tunnel_device_token1] = ACTIONS(1409), + [aux_sym_update_host_keys_token1] = ACTIONS(1409), + [aux_sym_use_keychain_token1] = ACTIONS(1409), + [aux_sym_use_roaming_token1] = ACTIONS(1409), + [aux_sym_user_token1] = ACTIONS(1411), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1409), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1409), + [aux_sym_visual_host_key_token1] = ACTIONS(1409), + [aux_sym_xauth_location_token1] = ACTIONS(1409), }, [142] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1412), - [anon_sym_DQUOTE] = ACTIONS(1414), - [aux_sym_match_token1] = ACTIONS(1410), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1410), - [aux_sym_address_family_token1] = ACTIONS(1410), - [aux_sym_batch_mode_token1] = ACTIONS(1410), - [aux_sym_bind_address_token1] = ACTIONS(1410), - [aux_sym_bind_interface_token1] = ACTIONS(1410), - [aux_sym_canonical_domains_token1] = ACTIONS(1410), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1410), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1410), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1410), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1410), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1410), - [aux_sym_certificate_file_token1] = ACTIONS(1410), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1410), - [aux_sym_channel_timeout_token1] = ACTIONS(1410), - [aux_sym_check_host_ip_token1] = ACTIONS(1410), - [aux_sym_ciphers_token1] = ACTIONS(1410), - [aux_sym_cipher_token1] = ACTIONS(1412), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1410), - [aux_sym_compression_token1] = ACTIONS(1410), - [aux_sym_connection_attempts_token1] = ACTIONS(1410), - [aux_sym_connect_timeout_token1] = ACTIONS(1410), - [aux_sym_control_master_token1] = ACTIONS(1410), - [aux_sym_control_path_token1] = ACTIONS(1410), - [aux_sym_control_persist_token1] = ACTIONS(1410), - [aux_sym_dynamic_forward_token1] = ACTIONS(1410), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1410), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1410), - [aux_sym_escape_char_token1] = ACTIONS(1410), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1410), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1410), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1410), - [aux_sym_forward_agent_token1] = ACTIONS(1410), - [aux_sym_forward_x11_token1] = ACTIONS(1412), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1410), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1410), - [aux_sym_gateway_ports_token1] = ACTIONS(1410), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1410), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1410), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1410), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1410), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1410), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1410), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1410), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1410), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1410), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1410), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1410), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1410), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1410), - [aux_sym_host_key_alias_token1] = ACTIONS(1410), - [aux_sym_hostname_token1] = ACTIONS(1410), - [aux_sym_identities_only_token1] = ACTIONS(1410), - [aux_sym_identity_agent_token1] = ACTIONS(1410), - [aux_sym_identity_file_token1] = ACTIONS(1410), - [aux_sym_ignore_unknown_token1] = ACTIONS(1410), - [aux_sym_include_token1] = ACTIONS(1410), - [aux_sym_ip_qos_token1] = ACTIONS(1410), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1410), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1410), - [aux_sym_kex_algorithms_token1] = ACTIONS(1410), - [aux_sym_known_hosts_command_token1] = ACTIONS(1410), - [aux_sym_local_command_token1] = ACTIONS(1410), - [aux_sym_local_forward_token1] = ACTIONS(1410), - [aux_sym_log_level_token1] = ACTIONS(1410), - [aux_sym_log_verbose_token1] = ACTIONS(1410), - [aux_sym_macs_token1] = ACTIONS(1410), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1410), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1410), - [aux_sym_password_authentication_token1] = ACTIONS(1410), - [aux_sym_permit_local_command_token1] = ACTIONS(1410), - [aux_sym_permit_remote_open_token1] = ACTIONS(1410), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1410), - [aux_sym_port_token1] = ACTIONS(1410), - [aux_sym_preferred_authentications_token1] = ACTIONS(1410), - [aux_sym_protocol_token1] = ACTIONS(1410), - [aux_sym_proxy_command_token1] = ACTIONS(1410), - [aux_sym_proxy_jump_token1] = ACTIONS(1410), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1410), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1410), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1410), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1410), - [aux_sym_rekey_limit_token1] = ACTIONS(1410), - [aux_sym_remote_command_token1] = ACTIONS(1410), - [aux_sym_remote_forward_token1] = ACTIONS(1410), - [aux_sym_request_tty_token1] = ACTIONS(1410), - [aux_sym_required_rsa_size_token1] = ACTIONS(1410), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1410), - [aux_sym_security_key_provider_token1] = ACTIONS(1410), - [aux_sym_send_env_token1] = ACTIONS(1410), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1410), - [aux_sym_server_alive_interval_token1] = ACTIONS(1410), - [aux_sym_session_type_token1] = ACTIONS(1410), - [aux_sym_set_env_token1] = ACTIONS(1410), - [aux_sym_stdin_null_token1] = ACTIONS(1410), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1410), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1410), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1410), - [aux_sym_syslog_facility_token1] = ACTIONS(1410), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1410), - [aux_sym_keep_alive_token1] = ACTIONS(1410), - [aux_sym_tag_token1] = ACTIONS(1410), - [aux_sym_tunnel_token1] = ACTIONS(1412), - [aux_sym_tunnel_device_token1] = ACTIONS(1410), - [aux_sym_update_host_keys_token1] = ACTIONS(1410), - [aux_sym_use_keychain_token1] = ACTIONS(1410), - [aux_sym_use_roaming_token1] = ACTIONS(1410), - [aux_sym_user_token1] = ACTIONS(1412), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1410), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1410), - [aux_sym_visual_host_key_token1] = ACTIONS(1410), - [aux_sym_xauth_location_token1] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(1419), + [aux_sym_match_token1] = ACTIONS(1415), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1415), + [aux_sym_address_family_token1] = ACTIONS(1415), + [aux_sym_batch_mode_token1] = ACTIONS(1415), + [aux_sym_bind_address_token1] = ACTIONS(1415), + [aux_sym_bind_interface_token1] = ACTIONS(1415), + [aux_sym_canonical_domains_token1] = ACTIONS(1415), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1415), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1415), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1415), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1415), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1415), + [aux_sym_certificate_file_token1] = ACTIONS(1415), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1415), + [aux_sym_channel_timeout_token1] = ACTIONS(1415), + [aux_sym_check_host_ip_token1] = ACTIONS(1415), + [aux_sym_ciphers_token1] = ACTIONS(1415), + [aux_sym_cipher_token1] = ACTIONS(1417), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1415), + [aux_sym_compression_token1] = ACTIONS(1415), + [aux_sym_connection_attempts_token1] = ACTIONS(1415), + [aux_sym_connect_timeout_token1] = ACTIONS(1415), + [aux_sym_control_master_token1] = ACTIONS(1415), + [aux_sym_control_path_token1] = ACTIONS(1415), + [aux_sym_control_persist_token1] = ACTIONS(1415), + [aux_sym_dynamic_forward_token1] = ACTIONS(1415), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1415), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1415), + [aux_sym_escape_char_token1] = ACTIONS(1415), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1415), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1415), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1415), + [aux_sym_forward_agent_token1] = ACTIONS(1415), + [aux_sym_forward_x11_token1] = ACTIONS(1417), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1415), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1415), + [aux_sym_gateway_ports_token1] = ACTIONS(1415), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1415), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1415), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1415), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1415), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1415), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1415), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1415), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1415), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1415), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1415), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1415), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1415), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1415), + [aux_sym_host_key_alias_token1] = ACTIONS(1415), + [aux_sym_hostname_token1] = ACTIONS(1415), + [aux_sym_identities_only_token1] = ACTIONS(1415), + [aux_sym_identity_agent_token1] = ACTIONS(1415), + [aux_sym_identity_file_token1] = ACTIONS(1415), + [aux_sym_ignore_unknown_token1] = ACTIONS(1415), + [aux_sym_include_token1] = ACTIONS(1415), + [aux_sym_ip_qos_token1] = ACTIONS(1415), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1415), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1415), + [aux_sym_kex_algorithms_token1] = ACTIONS(1415), + [aux_sym_known_hosts_command_token1] = ACTIONS(1415), + [aux_sym_local_command_token1] = ACTIONS(1415), + [aux_sym_local_forward_token1] = ACTIONS(1415), + [aux_sym_log_level_token1] = ACTIONS(1415), + [aux_sym_log_verbose_token1] = ACTIONS(1415), + [aux_sym_macs_token1] = ACTIONS(1415), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1415), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1415), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1415), + [aux_sym_password_authentication_token1] = ACTIONS(1415), + [aux_sym_permit_local_command_token1] = ACTIONS(1415), + [aux_sym_permit_remote_open_token1] = ACTIONS(1415), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1415), + [aux_sym_port_token1] = ACTIONS(1415), + [aux_sym_preferred_authentications_token1] = ACTIONS(1415), + [aux_sym_protocol_token1] = ACTIONS(1415), + [aux_sym_proxy_command_token1] = ACTIONS(1415), + [aux_sym_proxy_jump_token1] = ACTIONS(1415), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1415), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1415), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1415), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1415), + [aux_sym_rekey_limit_token1] = ACTIONS(1415), + [aux_sym_remote_command_token1] = ACTIONS(1415), + [aux_sym_remote_forward_token1] = ACTIONS(1415), + [aux_sym_request_tty_token1] = ACTIONS(1415), + [aux_sym_required_rsa_size_token1] = ACTIONS(1415), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1415), + [aux_sym_security_key_provider_token1] = ACTIONS(1415), + [aux_sym_send_env_token1] = ACTIONS(1415), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1415), + [aux_sym_server_alive_interval_token1] = ACTIONS(1415), + [aux_sym_session_type_token1] = ACTIONS(1415), + [aux_sym_set_env_token1] = ACTIONS(1415), + [aux_sym_stdin_null_token1] = ACTIONS(1415), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1415), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1415), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1415), + [aux_sym_syslog_facility_token1] = ACTIONS(1415), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1415), + [aux_sym_keep_alive_token1] = ACTIONS(1415), + [aux_sym_tag_token1] = ACTIONS(1415), + [aux_sym_tunnel_token1] = ACTIONS(1417), + [aux_sym_tunnel_device_token1] = ACTIONS(1415), + [aux_sym_update_host_keys_token1] = ACTIONS(1415), + [aux_sym_use_keychain_token1] = ACTIONS(1415), + [aux_sym_use_roaming_token1] = ACTIONS(1415), + [aux_sym_user_token1] = ACTIONS(1417), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1415), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1415), + [aux_sym_visual_host_key_token1] = ACTIONS(1415), + [aux_sym_xauth_location_token1] = ACTIONS(1415), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1418), - [anon_sym_DQUOTE] = ACTIONS(1420), - [aux_sym_match_token1] = ACTIONS(1416), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1416), - [aux_sym_address_family_token1] = ACTIONS(1416), - [aux_sym_batch_mode_token1] = ACTIONS(1416), - [aux_sym_bind_address_token1] = ACTIONS(1416), - [aux_sym_bind_interface_token1] = ACTIONS(1416), - [aux_sym_canonical_domains_token1] = ACTIONS(1416), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1416), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1416), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1416), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1416), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1416), - [aux_sym_certificate_file_token1] = ACTIONS(1416), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1416), - [aux_sym_channel_timeout_token1] = ACTIONS(1416), - [aux_sym_check_host_ip_token1] = ACTIONS(1416), - [aux_sym_ciphers_token1] = ACTIONS(1416), - [aux_sym_cipher_token1] = ACTIONS(1418), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1416), - [aux_sym_compression_token1] = ACTIONS(1416), - [aux_sym_connection_attempts_token1] = ACTIONS(1416), - [aux_sym_connect_timeout_token1] = ACTIONS(1416), - [aux_sym_control_master_token1] = ACTIONS(1416), - [aux_sym_control_path_token1] = ACTIONS(1416), - [aux_sym_control_persist_token1] = ACTIONS(1416), - [aux_sym_dynamic_forward_token1] = ACTIONS(1416), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1416), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1416), - [aux_sym_escape_char_token1] = ACTIONS(1416), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1416), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1416), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1416), - [aux_sym_forward_agent_token1] = ACTIONS(1416), - [aux_sym_forward_x11_token1] = ACTIONS(1418), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1416), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1416), - [aux_sym_gateway_ports_token1] = ACTIONS(1416), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1416), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1416), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1416), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1416), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1416), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1416), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1416), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1416), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1416), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1416), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1416), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1416), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1416), - [aux_sym_host_key_alias_token1] = ACTIONS(1416), - [aux_sym_hostname_token1] = ACTIONS(1416), - [aux_sym_identities_only_token1] = ACTIONS(1416), - [aux_sym_identity_agent_token1] = ACTIONS(1416), - [aux_sym_identity_file_token1] = ACTIONS(1416), - [aux_sym_ignore_unknown_token1] = ACTIONS(1416), - [aux_sym_include_token1] = ACTIONS(1416), - [aux_sym_ip_qos_token1] = ACTIONS(1416), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1416), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1416), - [aux_sym_kex_algorithms_token1] = ACTIONS(1416), - [aux_sym_known_hosts_command_token1] = ACTIONS(1416), - [aux_sym_local_command_token1] = ACTIONS(1416), - [aux_sym_local_forward_token1] = ACTIONS(1416), - [aux_sym_log_level_token1] = ACTIONS(1416), - [aux_sym_log_verbose_token1] = ACTIONS(1416), - [aux_sym_macs_token1] = ACTIONS(1416), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1416), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1416), - [aux_sym_password_authentication_token1] = ACTIONS(1416), - [aux_sym_permit_local_command_token1] = ACTIONS(1416), - [aux_sym_permit_remote_open_token1] = ACTIONS(1416), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1416), - [aux_sym_port_token1] = ACTIONS(1416), - [aux_sym_preferred_authentications_token1] = ACTIONS(1416), - [aux_sym_protocol_token1] = ACTIONS(1416), - [aux_sym_proxy_command_token1] = ACTIONS(1416), - [aux_sym_proxy_jump_token1] = ACTIONS(1416), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1416), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1416), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1416), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1416), - [aux_sym_rekey_limit_token1] = ACTIONS(1416), - [aux_sym_remote_command_token1] = ACTIONS(1416), - [aux_sym_remote_forward_token1] = ACTIONS(1416), - [aux_sym_request_tty_token1] = ACTIONS(1416), - [aux_sym_required_rsa_size_token1] = ACTIONS(1416), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1416), - [aux_sym_security_key_provider_token1] = ACTIONS(1416), - [aux_sym_send_env_token1] = ACTIONS(1416), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1416), - [aux_sym_server_alive_interval_token1] = ACTIONS(1416), - [aux_sym_session_type_token1] = ACTIONS(1416), - [aux_sym_set_env_token1] = ACTIONS(1416), - [aux_sym_stdin_null_token1] = ACTIONS(1416), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1416), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1416), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1416), - [aux_sym_syslog_facility_token1] = ACTIONS(1416), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1416), - [aux_sym_keep_alive_token1] = ACTIONS(1416), - [aux_sym_tag_token1] = ACTIONS(1416), - [aux_sym_tunnel_token1] = ACTIONS(1418), - [aux_sym_tunnel_device_token1] = ACTIONS(1416), - [aux_sym_update_host_keys_token1] = ACTIONS(1416), - [aux_sym_use_keychain_token1] = ACTIONS(1416), - [aux_sym_use_roaming_token1] = ACTIONS(1416), - [aux_sym_user_token1] = ACTIONS(1418), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1416), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1416), - [aux_sym_visual_host_key_token1] = ACTIONS(1416), - [aux_sym_xauth_location_token1] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(1425), + [aux_sym_match_token1] = ACTIONS(1421), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1421), + [aux_sym_address_family_token1] = ACTIONS(1421), + [aux_sym_batch_mode_token1] = ACTIONS(1421), + [aux_sym_bind_address_token1] = ACTIONS(1421), + [aux_sym_bind_interface_token1] = ACTIONS(1421), + [aux_sym_canonical_domains_token1] = ACTIONS(1421), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1421), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1421), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1421), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1421), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1421), + [aux_sym_certificate_file_token1] = ACTIONS(1421), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1421), + [aux_sym_channel_timeout_token1] = ACTIONS(1421), + [aux_sym_check_host_ip_token1] = ACTIONS(1421), + [aux_sym_ciphers_token1] = ACTIONS(1421), + [aux_sym_cipher_token1] = ACTIONS(1423), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1421), + [aux_sym_compression_token1] = ACTIONS(1421), + [aux_sym_connection_attempts_token1] = ACTIONS(1421), + [aux_sym_connect_timeout_token1] = ACTIONS(1421), + [aux_sym_control_master_token1] = ACTIONS(1421), + [aux_sym_control_path_token1] = ACTIONS(1421), + [aux_sym_control_persist_token1] = ACTIONS(1421), + [aux_sym_dynamic_forward_token1] = ACTIONS(1421), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1421), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1421), + [aux_sym_escape_char_token1] = ACTIONS(1421), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1421), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1421), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1421), + [aux_sym_forward_agent_token1] = ACTIONS(1421), + [aux_sym_forward_x11_token1] = ACTIONS(1423), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1421), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1421), + [aux_sym_gateway_ports_token1] = ACTIONS(1421), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1421), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1421), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1421), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1421), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1421), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1421), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1421), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1421), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1421), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1421), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1421), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1421), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1421), + [aux_sym_host_key_alias_token1] = ACTIONS(1421), + [aux_sym_hostname_token1] = ACTIONS(1421), + [aux_sym_identities_only_token1] = ACTIONS(1421), + [aux_sym_identity_agent_token1] = ACTIONS(1421), + [aux_sym_identity_file_token1] = ACTIONS(1421), + [aux_sym_ignore_unknown_token1] = ACTIONS(1421), + [aux_sym_include_token1] = ACTIONS(1421), + [aux_sym_ip_qos_token1] = ACTIONS(1421), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1421), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1421), + [aux_sym_kex_algorithms_token1] = ACTIONS(1421), + [aux_sym_known_hosts_command_token1] = ACTIONS(1421), + [aux_sym_local_command_token1] = ACTIONS(1421), + [aux_sym_local_forward_token1] = ACTIONS(1421), + [aux_sym_log_level_token1] = ACTIONS(1421), + [aux_sym_log_verbose_token1] = ACTIONS(1421), + [aux_sym_macs_token1] = ACTIONS(1421), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1421), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1421), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1421), + [aux_sym_password_authentication_token1] = ACTIONS(1421), + [aux_sym_permit_local_command_token1] = ACTIONS(1421), + [aux_sym_permit_remote_open_token1] = ACTIONS(1421), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1421), + [aux_sym_port_token1] = ACTIONS(1421), + [aux_sym_preferred_authentications_token1] = ACTIONS(1421), + [aux_sym_protocol_token1] = ACTIONS(1421), + [aux_sym_proxy_command_token1] = ACTIONS(1421), + [aux_sym_proxy_jump_token1] = ACTIONS(1421), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1421), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1421), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1421), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1421), + [aux_sym_rekey_limit_token1] = ACTIONS(1421), + [aux_sym_remote_command_token1] = ACTIONS(1421), + [aux_sym_remote_forward_token1] = ACTIONS(1421), + [aux_sym_request_tty_token1] = ACTIONS(1421), + [aux_sym_required_rsa_size_token1] = ACTIONS(1421), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1421), + [aux_sym_security_key_provider_token1] = ACTIONS(1421), + [aux_sym_send_env_token1] = ACTIONS(1421), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1421), + [aux_sym_server_alive_interval_token1] = ACTIONS(1421), + [aux_sym_session_type_token1] = ACTIONS(1421), + [aux_sym_set_env_token1] = ACTIONS(1421), + [aux_sym_stdin_null_token1] = ACTIONS(1421), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1421), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1421), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1421), + [aux_sym_syslog_facility_token1] = ACTIONS(1421), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1421), + [aux_sym_keep_alive_token1] = ACTIONS(1421), + [aux_sym_tag_token1] = ACTIONS(1421), + [aux_sym_tunnel_token1] = ACTIONS(1423), + [aux_sym_tunnel_device_token1] = ACTIONS(1421), + [aux_sym_update_host_keys_token1] = ACTIONS(1421), + [aux_sym_use_keychain_token1] = ACTIONS(1421), + [aux_sym_use_roaming_token1] = ACTIONS(1421), + [aux_sym_user_token1] = ACTIONS(1423), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1421), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1421), + [aux_sym_visual_host_key_token1] = ACTIONS(1421), + [aux_sym_xauth_location_token1] = ACTIONS(1421), }, [144] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1424), - [anon_sym_DQUOTE] = ACTIONS(1426), - [aux_sym_match_token1] = ACTIONS(1422), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1422), - [aux_sym_address_family_token1] = ACTIONS(1422), - [aux_sym_batch_mode_token1] = ACTIONS(1422), - [aux_sym_bind_address_token1] = ACTIONS(1422), - [aux_sym_bind_interface_token1] = ACTIONS(1422), - [aux_sym_canonical_domains_token1] = ACTIONS(1422), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1422), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1422), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1422), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1422), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1422), - [aux_sym_certificate_file_token1] = ACTIONS(1422), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1422), - [aux_sym_channel_timeout_token1] = ACTIONS(1422), - [aux_sym_check_host_ip_token1] = ACTIONS(1422), - [aux_sym_ciphers_token1] = ACTIONS(1422), - [aux_sym_cipher_token1] = ACTIONS(1424), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1422), - [aux_sym_compression_token1] = ACTIONS(1422), - [aux_sym_connection_attempts_token1] = ACTIONS(1422), - [aux_sym_connect_timeout_token1] = ACTIONS(1422), - [aux_sym_control_master_token1] = ACTIONS(1422), - [aux_sym_control_path_token1] = ACTIONS(1422), - [aux_sym_control_persist_token1] = ACTIONS(1422), - [aux_sym_dynamic_forward_token1] = ACTIONS(1422), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1422), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1422), - [aux_sym_escape_char_token1] = ACTIONS(1422), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1422), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1422), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1422), - [aux_sym_forward_agent_token1] = ACTIONS(1422), - [aux_sym_forward_x11_token1] = ACTIONS(1424), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1422), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1422), - [aux_sym_gateway_ports_token1] = ACTIONS(1422), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1422), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1422), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1422), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1422), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1422), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1422), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1422), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1422), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1422), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1422), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1422), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1422), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1422), - [aux_sym_host_key_alias_token1] = ACTIONS(1422), - [aux_sym_hostname_token1] = ACTIONS(1422), - [aux_sym_identities_only_token1] = ACTIONS(1422), - [aux_sym_identity_agent_token1] = ACTIONS(1422), - [aux_sym_identity_file_token1] = ACTIONS(1422), - [aux_sym_ignore_unknown_token1] = ACTIONS(1422), - [aux_sym_include_token1] = ACTIONS(1422), - [aux_sym_ip_qos_token1] = ACTIONS(1422), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1422), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1422), - [aux_sym_kex_algorithms_token1] = ACTIONS(1422), - [aux_sym_known_hosts_command_token1] = ACTIONS(1422), - [aux_sym_local_command_token1] = ACTIONS(1422), - [aux_sym_local_forward_token1] = ACTIONS(1422), - [aux_sym_log_level_token1] = ACTIONS(1422), - [aux_sym_log_verbose_token1] = ACTIONS(1422), - [aux_sym_macs_token1] = ACTIONS(1422), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1422), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1422), - [aux_sym_password_authentication_token1] = ACTIONS(1422), - [aux_sym_permit_local_command_token1] = ACTIONS(1422), - [aux_sym_permit_remote_open_token1] = ACTIONS(1422), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1422), - [aux_sym_port_token1] = ACTIONS(1422), - [aux_sym_preferred_authentications_token1] = ACTIONS(1422), - [aux_sym_protocol_token1] = ACTIONS(1422), - [aux_sym_proxy_command_token1] = ACTIONS(1422), - [aux_sym_proxy_jump_token1] = ACTIONS(1422), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1422), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1422), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1422), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1422), - [aux_sym_rekey_limit_token1] = ACTIONS(1422), - [aux_sym_remote_command_token1] = ACTIONS(1422), - [aux_sym_remote_forward_token1] = ACTIONS(1422), - [aux_sym_request_tty_token1] = ACTIONS(1422), - [aux_sym_required_rsa_size_token1] = ACTIONS(1422), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1422), - [aux_sym_security_key_provider_token1] = ACTIONS(1422), - [aux_sym_send_env_token1] = ACTIONS(1422), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1422), - [aux_sym_server_alive_interval_token1] = ACTIONS(1422), - [aux_sym_session_type_token1] = ACTIONS(1422), - [aux_sym_set_env_token1] = ACTIONS(1422), - [aux_sym_stdin_null_token1] = ACTIONS(1422), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1422), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1422), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1422), - [aux_sym_syslog_facility_token1] = ACTIONS(1422), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1422), - [aux_sym_keep_alive_token1] = ACTIONS(1422), - [aux_sym_tag_token1] = ACTIONS(1422), - [aux_sym_tunnel_token1] = ACTIONS(1424), - [aux_sym_tunnel_device_token1] = ACTIONS(1422), - [aux_sym_update_host_keys_token1] = ACTIONS(1422), - [aux_sym_use_keychain_token1] = ACTIONS(1422), - [aux_sym_use_roaming_token1] = ACTIONS(1422), - [aux_sym_user_token1] = ACTIONS(1424), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1422), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1422), - [aux_sym_visual_host_key_token1] = ACTIONS(1422), - [aux_sym_xauth_location_token1] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1429), + [anon_sym_DQUOTE] = ACTIONS(1431), + [aux_sym_match_token1] = ACTIONS(1427), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1427), + [aux_sym_address_family_token1] = ACTIONS(1427), + [aux_sym_batch_mode_token1] = ACTIONS(1427), + [aux_sym_bind_address_token1] = ACTIONS(1427), + [aux_sym_bind_interface_token1] = ACTIONS(1427), + [aux_sym_canonical_domains_token1] = ACTIONS(1427), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1427), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1427), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1427), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1427), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1427), + [aux_sym_certificate_file_token1] = ACTIONS(1427), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1427), + [aux_sym_channel_timeout_token1] = ACTIONS(1427), + [aux_sym_check_host_ip_token1] = ACTIONS(1427), + [aux_sym_ciphers_token1] = ACTIONS(1427), + [aux_sym_cipher_token1] = ACTIONS(1429), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1427), + [aux_sym_compression_token1] = ACTIONS(1427), + [aux_sym_connection_attempts_token1] = ACTIONS(1427), + [aux_sym_connect_timeout_token1] = ACTIONS(1427), + [aux_sym_control_master_token1] = ACTIONS(1427), + [aux_sym_control_path_token1] = ACTIONS(1427), + [aux_sym_control_persist_token1] = ACTIONS(1427), + [aux_sym_dynamic_forward_token1] = ACTIONS(1427), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1427), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1427), + [aux_sym_escape_char_token1] = ACTIONS(1427), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1427), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1427), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1427), + [aux_sym_forward_agent_token1] = ACTIONS(1427), + [aux_sym_forward_x11_token1] = ACTIONS(1429), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1427), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1427), + [aux_sym_gateway_ports_token1] = ACTIONS(1427), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1427), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1427), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1427), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1427), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1427), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1427), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1427), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1427), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1427), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1427), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1427), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1427), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1427), + [aux_sym_host_key_alias_token1] = ACTIONS(1427), + [aux_sym_hostname_token1] = ACTIONS(1427), + [aux_sym_identities_only_token1] = ACTIONS(1427), + [aux_sym_identity_agent_token1] = ACTIONS(1427), + [aux_sym_identity_file_token1] = ACTIONS(1427), + [aux_sym_ignore_unknown_token1] = ACTIONS(1427), + [aux_sym_include_token1] = ACTIONS(1427), + [aux_sym_ip_qos_token1] = ACTIONS(1427), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1427), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1427), + [aux_sym_kex_algorithms_token1] = ACTIONS(1427), + [aux_sym_known_hosts_command_token1] = ACTIONS(1427), + [aux_sym_local_command_token1] = ACTIONS(1427), + [aux_sym_local_forward_token1] = ACTIONS(1427), + [aux_sym_log_level_token1] = ACTIONS(1427), + [aux_sym_log_verbose_token1] = ACTIONS(1427), + [aux_sym_macs_token1] = ACTIONS(1427), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1427), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1427), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1427), + [aux_sym_password_authentication_token1] = ACTIONS(1427), + [aux_sym_permit_local_command_token1] = ACTIONS(1427), + [aux_sym_permit_remote_open_token1] = ACTIONS(1427), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1427), + [aux_sym_port_token1] = ACTIONS(1427), + [aux_sym_preferred_authentications_token1] = ACTIONS(1427), + [aux_sym_protocol_token1] = ACTIONS(1427), + [aux_sym_proxy_command_token1] = ACTIONS(1427), + [aux_sym_proxy_jump_token1] = ACTIONS(1427), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1427), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1427), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1427), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1427), + [aux_sym_rekey_limit_token1] = ACTIONS(1427), + [aux_sym_remote_command_token1] = ACTIONS(1427), + [aux_sym_remote_forward_token1] = ACTIONS(1427), + [aux_sym_request_tty_token1] = ACTIONS(1427), + [aux_sym_required_rsa_size_token1] = ACTIONS(1427), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1427), + [aux_sym_security_key_provider_token1] = ACTIONS(1427), + [aux_sym_send_env_token1] = ACTIONS(1427), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1427), + [aux_sym_server_alive_interval_token1] = ACTIONS(1427), + [aux_sym_session_type_token1] = ACTIONS(1427), + [aux_sym_set_env_token1] = ACTIONS(1427), + [aux_sym_stdin_null_token1] = ACTIONS(1427), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1427), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1427), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1427), + [aux_sym_syslog_facility_token1] = ACTIONS(1427), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1427), + [aux_sym_keep_alive_token1] = ACTIONS(1427), + [aux_sym_tag_token1] = ACTIONS(1427), + [aux_sym_tunnel_token1] = ACTIONS(1429), + [aux_sym_tunnel_device_token1] = ACTIONS(1427), + [aux_sym_update_host_keys_token1] = ACTIONS(1427), + [aux_sym_use_keychain_token1] = ACTIONS(1427), + [aux_sym_use_roaming_token1] = ACTIONS(1427), + [aux_sym_user_token1] = ACTIONS(1429), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1427), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1427), + [aux_sym_visual_host_key_token1] = ACTIONS(1427), + [aux_sym_xauth_location_token1] = ACTIONS(1427), }, [145] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1430), - [anon_sym_DQUOTE] = ACTIONS(1432), - [aux_sym_match_token1] = ACTIONS(1428), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1428), - [aux_sym_address_family_token1] = ACTIONS(1428), - [aux_sym_batch_mode_token1] = ACTIONS(1428), - [aux_sym_bind_address_token1] = ACTIONS(1428), - [aux_sym_bind_interface_token1] = ACTIONS(1428), - [aux_sym_canonical_domains_token1] = ACTIONS(1428), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1428), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1428), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1428), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1428), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1428), - [aux_sym_certificate_file_token1] = ACTIONS(1428), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1428), - [aux_sym_channel_timeout_token1] = ACTIONS(1428), - [aux_sym_check_host_ip_token1] = ACTIONS(1428), - [aux_sym_ciphers_token1] = ACTIONS(1428), - [aux_sym_cipher_token1] = ACTIONS(1430), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1428), - [aux_sym_compression_token1] = ACTIONS(1428), - [aux_sym_connection_attempts_token1] = ACTIONS(1428), - [aux_sym_connect_timeout_token1] = ACTIONS(1428), - [aux_sym_control_master_token1] = ACTIONS(1428), - [aux_sym_control_path_token1] = ACTIONS(1428), - [aux_sym_control_persist_token1] = ACTIONS(1428), - [aux_sym_dynamic_forward_token1] = ACTIONS(1428), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1428), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1428), - [aux_sym_escape_char_token1] = ACTIONS(1428), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1428), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1428), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1428), - [aux_sym_forward_agent_token1] = ACTIONS(1428), - [aux_sym_forward_x11_token1] = ACTIONS(1430), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1428), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1428), - [aux_sym_gateway_ports_token1] = ACTIONS(1428), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1428), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1428), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1428), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1428), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1428), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1428), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1428), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1428), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1428), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1428), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1428), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1428), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1428), - [aux_sym_host_key_alias_token1] = ACTIONS(1428), - [aux_sym_hostname_token1] = ACTIONS(1428), - [aux_sym_identities_only_token1] = ACTIONS(1428), - [aux_sym_identity_agent_token1] = ACTIONS(1428), - [aux_sym_identity_file_token1] = ACTIONS(1428), - [aux_sym_ignore_unknown_token1] = ACTIONS(1428), - [aux_sym_include_token1] = ACTIONS(1428), - [aux_sym_ip_qos_token1] = ACTIONS(1428), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1428), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1428), - [aux_sym_kex_algorithms_token1] = ACTIONS(1428), - [aux_sym_known_hosts_command_token1] = ACTIONS(1428), - [aux_sym_local_command_token1] = ACTIONS(1428), - [aux_sym_local_forward_token1] = ACTIONS(1428), - [aux_sym_log_level_token1] = ACTIONS(1428), - [aux_sym_log_verbose_token1] = ACTIONS(1428), - [aux_sym_macs_token1] = ACTIONS(1428), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1428), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1428), - [aux_sym_password_authentication_token1] = ACTIONS(1428), - [aux_sym_permit_local_command_token1] = ACTIONS(1428), - [aux_sym_permit_remote_open_token1] = ACTIONS(1428), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1428), - [aux_sym_port_token1] = ACTIONS(1428), - [aux_sym_preferred_authentications_token1] = ACTIONS(1428), - [aux_sym_protocol_token1] = ACTIONS(1428), - [aux_sym_proxy_command_token1] = ACTIONS(1428), - [aux_sym_proxy_jump_token1] = ACTIONS(1428), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1428), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1428), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1428), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1428), - [aux_sym_rekey_limit_token1] = ACTIONS(1428), - [aux_sym_remote_command_token1] = ACTIONS(1428), - [aux_sym_remote_forward_token1] = ACTIONS(1428), - [aux_sym_request_tty_token1] = ACTIONS(1428), - [aux_sym_required_rsa_size_token1] = ACTIONS(1428), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1428), - [aux_sym_security_key_provider_token1] = ACTIONS(1428), - [aux_sym_send_env_token1] = ACTIONS(1428), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1428), - [aux_sym_server_alive_interval_token1] = ACTIONS(1428), - [aux_sym_session_type_token1] = ACTIONS(1428), - [aux_sym_set_env_token1] = ACTIONS(1428), - [aux_sym_stdin_null_token1] = ACTIONS(1428), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1428), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1428), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1428), - [aux_sym_syslog_facility_token1] = ACTIONS(1428), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1428), - [aux_sym_keep_alive_token1] = ACTIONS(1428), - [aux_sym_tag_token1] = ACTIONS(1428), - [aux_sym_tunnel_token1] = ACTIONS(1430), - [aux_sym_tunnel_device_token1] = ACTIONS(1428), - [aux_sym_update_host_keys_token1] = ACTIONS(1428), - [aux_sym_use_keychain_token1] = ACTIONS(1428), - [aux_sym_use_roaming_token1] = ACTIONS(1428), - [aux_sym_user_token1] = ACTIONS(1430), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1428), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1428), - [aux_sym_visual_host_key_token1] = ACTIONS(1428), - [aux_sym_xauth_location_token1] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1435), + [anon_sym_DQUOTE] = ACTIONS(1437), + [aux_sym_match_token1] = ACTIONS(1433), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1433), + [aux_sym_address_family_token1] = ACTIONS(1433), + [aux_sym_batch_mode_token1] = ACTIONS(1433), + [aux_sym_bind_address_token1] = ACTIONS(1433), + [aux_sym_bind_interface_token1] = ACTIONS(1433), + [aux_sym_canonical_domains_token1] = ACTIONS(1433), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1433), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1433), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1433), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1433), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1433), + [aux_sym_certificate_file_token1] = ACTIONS(1433), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1433), + [aux_sym_channel_timeout_token1] = ACTIONS(1433), + [aux_sym_check_host_ip_token1] = ACTIONS(1433), + [aux_sym_ciphers_token1] = ACTIONS(1433), + [aux_sym_cipher_token1] = ACTIONS(1435), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1433), + [aux_sym_compression_token1] = ACTIONS(1433), + [aux_sym_connection_attempts_token1] = ACTIONS(1433), + [aux_sym_connect_timeout_token1] = ACTIONS(1433), + [aux_sym_control_master_token1] = ACTIONS(1433), + [aux_sym_control_path_token1] = ACTIONS(1433), + [aux_sym_control_persist_token1] = ACTIONS(1433), + [aux_sym_dynamic_forward_token1] = ACTIONS(1433), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1433), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1433), + [aux_sym_escape_char_token1] = ACTIONS(1433), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1433), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1433), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1433), + [aux_sym_forward_agent_token1] = ACTIONS(1433), + [aux_sym_forward_x11_token1] = ACTIONS(1435), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1433), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1433), + [aux_sym_gateway_ports_token1] = ACTIONS(1433), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1433), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1433), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1433), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1433), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1433), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1433), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1433), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1433), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1433), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1433), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1433), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1433), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1433), + [aux_sym_host_key_alias_token1] = ACTIONS(1433), + [aux_sym_hostname_token1] = ACTIONS(1433), + [aux_sym_identities_only_token1] = ACTIONS(1433), + [aux_sym_identity_agent_token1] = ACTIONS(1433), + [aux_sym_identity_file_token1] = ACTIONS(1433), + [aux_sym_ignore_unknown_token1] = ACTIONS(1433), + [aux_sym_include_token1] = ACTIONS(1433), + [aux_sym_ip_qos_token1] = ACTIONS(1433), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1433), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1433), + [aux_sym_kex_algorithms_token1] = ACTIONS(1433), + [aux_sym_known_hosts_command_token1] = ACTIONS(1433), + [aux_sym_local_command_token1] = ACTIONS(1433), + [aux_sym_local_forward_token1] = ACTIONS(1433), + [aux_sym_log_level_token1] = ACTIONS(1433), + [aux_sym_log_verbose_token1] = ACTIONS(1433), + [aux_sym_macs_token1] = ACTIONS(1433), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1433), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1433), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1433), + [aux_sym_password_authentication_token1] = ACTIONS(1433), + [aux_sym_permit_local_command_token1] = ACTIONS(1433), + [aux_sym_permit_remote_open_token1] = ACTIONS(1433), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1433), + [aux_sym_port_token1] = ACTIONS(1433), + [aux_sym_preferred_authentications_token1] = ACTIONS(1433), + [aux_sym_protocol_token1] = ACTIONS(1433), + [aux_sym_proxy_command_token1] = ACTIONS(1433), + [aux_sym_proxy_jump_token1] = ACTIONS(1433), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1433), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1433), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1433), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1433), + [aux_sym_rekey_limit_token1] = ACTIONS(1433), + [aux_sym_remote_command_token1] = ACTIONS(1433), + [aux_sym_remote_forward_token1] = ACTIONS(1433), + [aux_sym_request_tty_token1] = ACTIONS(1433), + [aux_sym_required_rsa_size_token1] = ACTIONS(1433), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1433), + [aux_sym_security_key_provider_token1] = ACTIONS(1433), + [aux_sym_send_env_token1] = ACTIONS(1433), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1433), + [aux_sym_server_alive_interval_token1] = ACTIONS(1433), + [aux_sym_session_type_token1] = ACTIONS(1433), + [aux_sym_set_env_token1] = ACTIONS(1433), + [aux_sym_stdin_null_token1] = ACTIONS(1433), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1433), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1433), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1433), + [aux_sym_syslog_facility_token1] = ACTIONS(1433), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1433), + [aux_sym_keep_alive_token1] = ACTIONS(1433), + [aux_sym_tag_token1] = ACTIONS(1433), + [aux_sym_tunnel_token1] = ACTIONS(1435), + [aux_sym_tunnel_device_token1] = ACTIONS(1433), + [aux_sym_update_host_keys_token1] = ACTIONS(1433), + [aux_sym_use_keychain_token1] = ACTIONS(1433), + [aux_sym_use_roaming_token1] = ACTIONS(1433), + [aux_sym_user_token1] = ACTIONS(1435), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1433), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1433), + [aux_sym_visual_host_key_token1] = ACTIONS(1433), + [aux_sym_xauth_location_token1] = ACTIONS(1433), }, [146] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1436), - [anon_sym_DQUOTE] = ACTIONS(1438), - [aux_sym_match_token1] = ACTIONS(1434), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1434), - [aux_sym_address_family_token1] = ACTIONS(1434), - [aux_sym_batch_mode_token1] = ACTIONS(1434), - [aux_sym_bind_address_token1] = ACTIONS(1434), - [aux_sym_bind_interface_token1] = ACTIONS(1434), - [aux_sym_canonical_domains_token1] = ACTIONS(1434), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1434), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1434), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1434), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1434), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1434), - [aux_sym_certificate_file_token1] = ACTIONS(1434), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1434), - [aux_sym_channel_timeout_token1] = ACTIONS(1434), - [aux_sym_check_host_ip_token1] = ACTIONS(1434), - [aux_sym_ciphers_token1] = ACTIONS(1434), - [aux_sym_cipher_token1] = ACTIONS(1436), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1434), - [aux_sym_compression_token1] = ACTIONS(1434), - [aux_sym_connection_attempts_token1] = ACTIONS(1434), - [aux_sym_connect_timeout_token1] = ACTIONS(1434), - [aux_sym_control_master_token1] = ACTIONS(1434), - [aux_sym_control_path_token1] = ACTIONS(1434), - [aux_sym_control_persist_token1] = ACTIONS(1434), - [aux_sym_dynamic_forward_token1] = ACTIONS(1434), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1434), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1434), - [aux_sym_escape_char_token1] = ACTIONS(1434), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1434), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1434), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1434), - [aux_sym_forward_agent_token1] = ACTIONS(1434), - [aux_sym_forward_x11_token1] = ACTIONS(1436), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1434), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1434), - [aux_sym_gateway_ports_token1] = ACTIONS(1434), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1434), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1434), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1434), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1434), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1434), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1434), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1434), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1434), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1434), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1434), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1434), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1434), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1434), - [aux_sym_host_key_alias_token1] = ACTIONS(1434), - [aux_sym_hostname_token1] = ACTIONS(1434), - [aux_sym_identities_only_token1] = ACTIONS(1434), - [aux_sym_identity_agent_token1] = ACTIONS(1434), - [aux_sym_identity_file_token1] = ACTIONS(1434), - [aux_sym_ignore_unknown_token1] = ACTIONS(1434), - [aux_sym_include_token1] = ACTIONS(1434), - [aux_sym_ip_qos_token1] = ACTIONS(1434), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1434), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1434), - [aux_sym_kex_algorithms_token1] = ACTIONS(1434), - [aux_sym_known_hosts_command_token1] = ACTIONS(1434), - [aux_sym_local_command_token1] = ACTIONS(1434), - [aux_sym_local_forward_token1] = ACTIONS(1434), - [aux_sym_log_level_token1] = ACTIONS(1434), - [aux_sym_log_verbose_token1] = ACTIONS(1434), - [aux_sym_macs_token1] = ACTIONS(1434), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1434), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1434), - [aux_sym_password_authentication_token1] = ACTIONS(1434), - [aux_sym_permit_local_command_token1] = ACTIONS(1434), - [aux_sym_permit_remote_open_token1] = ACTIONS(1434), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1434), - [aux_sym_port_token1] = ACTIONS(1434), - [aux_sym_preferred_authentications_token1] = ACTIONS(1434), - [aux_sym_protocol_token1] = ACTIONS(1434), - [aux_sym_proxy_command_token1] = ACTIONS(1434), - [aux_sym_proxy_jump_token1] = ACTIONS(1434), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1434), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1434), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1434), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1434), - [aux_sym_rekey_limit_token1] = ACTIONS(1434), - [aux_sym_remote_command_token1] = ACTIONS(1434), - [aux_sym_remote_forward_token1] = ACTIONS(1434), - [aux_sym_request_tty_token1] = ACTIONS(1434), - [aux_sym_required_rsa_size_token1] = ACTIONS(1434), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1434), - [aux_sym_security_key_provider_token1] = ACTIONS(1434), - [aux_sym_send_env_token1] = ACTIONS(1434), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1434), - [aux_sym_server_alive_interval_token1] = ACTIONS(1434), - [aux_sym_session_type_token1] = ACTIONS(1434), - [aux_sym_set_env_token1] = ACTIONS(1434), - [aux_sym_stdin_null_token1] = ACTIONS(1434), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1434), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1434), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1434), - [aux_sym_syslog_facility_token1] = ACTIONS(1434), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1434), - [aux_sym_keep_alive_token1] = ACTIONS(1434), - [aux_sym_tag_token1] = ACTIONS(1434), - [aux_sym_tunnel_token1] = ACTIONS(1436), - [aux_sym_tunnel_device_token1] = ACTIONS(1434), - [aux_sym_update_host_keys_token1] = ACTIONS(1434), - [aux_sym_use_keychain_token1] = ACTIONS(1434), - [aux_sym_use_roaming_token1] = ACTIONS(1434), - [aux_sym_user_token1] = ACTIONS(1436), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1434), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1434), - [aux_sym_visual_host_key_token1] = ACTIONS(1434), - [aux_sym_xauth_location_token1] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1443), + [aux_sym_match_token1] = ACTIONS(1439), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1439), + [aux_sym_address_family_token1] = ACTIONS(1439), + [aux_sym_batch_mode_token1] = ACTIONS(1439), + [aux_sym_bind_address_token1] = ACTIONS(1439), + [aux_sym_bind_interface_token1] = ACTIONS(1439), + [aux_sym_canonical_domains_token1] = ACTIONS(1439), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1439), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1439), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1439), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1439), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1439), + [aux_sym_certificate_file_token1] = ACTIONS(1439), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1439), + [aux_sym_channel_timeout_token1] = ACTIONS(1439), + [aux_sym_check_host_ip_token1] = ACTIONS(1439), + [aux_sym_ciphers_token1] = ACTIONS(1439), + [aux_sym_cipher_token1] = ACTIONS(1441), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1439), + [aux_sym_compression_token1] = ACTIONS(1439), + [aux_sym_connection_attempts_token1] = ACTIONS(1439), + [aux_sym_connect_timeout_token1] = ACTIONS(1439), + [aux_sym_control_master_token1] = ACTIONS(1439), + [aux_sym_control_path_token1] = ACTIONS(1439), + [aux_sym_control_persist_token1] = ACTIONS(1439), + [aux_sym_dynamic_forward_token1] = ACTIONS(1439), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1439), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1439), + [aux_sym_escape_char_token1] = ACTIONS(1439), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1439), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1439), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1439), + [aux_sym_forward_agent_token1] = ACTIONS(1439), + [aux_sym_forward_x11_token1] = ACTIONS(1441), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1439), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1439), + [aux_sym_gateway_ports_token1] = ACTIONS(1439), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1439), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1439), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1439), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1439), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1439), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1439), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1439), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1439), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1439), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1439), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1439), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1439), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1439), + [aux_sym_host_key_alias_token1] = ACTIONS(1439), + [aux_sym_hostname_token1] = ACTIONS(1439), + [aux_sym_identities_only_token1] = ACTIONS(1439), + [aux_sym_identity_agent_token1] = ACTIONS(1439), + [aux_sym_identity_file_token1] = ACTIONS(1439), + [aux_sym_ignore_unknown_token1] = ACTIONS(1439), + [aux_sym_include_token1] = ACTIONS(1439), + [aux_sym_ip_qos_token1] = ACTIONS(1439), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1439), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1439), + [aux_sym_kex_algorithms_token1] = ACTIONS(1439), + [aux_sym_known_hosts_command_token1] = ACTIONS(1439), + [aux_sym_local_command_token1] = ACTIONS(1439), + [aux_sym_local_forward_token1] = ACTIONS(1439), + [aux_sym_log_level_token1] = ACTIONS(1439), + [aux_sym_log_verbose_token1] = ACTIONS(1439), + [aux_sym_macs_token1] = ACTIONS(1439), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1439), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1439), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1439), + [aux_sym_password_authentication_token1] = ACTIONS(1439), + [aux_sym_permit_local_command_token1] = ACTIONS(1439), + [aux_sym_permit_remote_open_token1] = ACTIONS(1439), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1439), + [aux_sym_port_token1] = ACTIONS(1439), + [aux_sym_preferred_authentications_token1] = ACTIONS(1439), + [aux_sym_protocol_token1] = ACTIONS(1439), + [aux_sym_proxy_command_token1] = ACTIONS(1439), + [aux_sym_proxy_jump_token1] = ACTIONS(1439), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1439), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1439), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1439), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1439), + [aux_sym_rekey_limit_token1] = ACTIONS(1439), + [aux_sym_remote_command_token1] = ACTIONS(1439), + [aux_sym_remote_forward_token1] = ACTIONS(1439), + [aux_sym_request_tty_token1] = ACTIONS(1439), + [aux_sym_required_rsa_size_token1] = ACTIONS(1439), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1439), + [aux_sym_security_key_provider_token1] = ACTIONS(1439), + [aux_sym_send_env_token1] = ACTIONS(1439), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1439), + [aux_sym_server_alive_interval_token1] = ACTIONS(1439), + [aux_sym_session_type_token1] = ACTIONS(1439), + [aux_sym_set_env_token1] = ACTIONS(1439), + [aux_sym_stdin_null_token1] = ACTIONS(1439), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1439), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1439), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1439), + [aux_sym_syslog_facility_token1] = ACTIONS(1439), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1439), + [aux_sym_keep_alive_token1] = ACTIONS(1439), + [aux_sym_tag_token1] = ACTIONS(1439), + [aux_sym_tunnel_token1] = ACTIONS(1441), + [aux_sym_tunnel_device_token1] = ACTIONS(1439), + [aux_sym_update_host_keys_token1] = ACTIONS(1439), + [aux_sym_use_keychain_token1] = ACTIONS(1439), + [aux_sym_use_roaming_token1] = ACTIONS(1439), + [aux_sym_user_token1] = ACTIONS(1441), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1439), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1439), + [aux_sym_visual_host_key_token1] = ACTIONS(1439), + [aux_sym_xauth_location_token1] = ACTIONS(1439), }, [147] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1442), - [anon_sym_DQUOTE] = ACTIONS(1444), - [aux_sym_match_token1] = ACTIONS(1440), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1440), - [aux_sym_address_family_token1] = ACTIONS(1440), - [aux_sym_batch_mode_token1] = ACTIONS(1440), - [aux_sym_bind_address_token1] = ACTIONS(1440), - [aux_sym_bind_interface_token1] = ACTIONS(1440), - [aux_sym_canonical_domains_token1] = ACTIONS(1440), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1440), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1440), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1440), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1440), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1440), - [aux_sym_certificate_file_token1] = ACTIONS(1440), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1440), - [aux_sym_channel_timeout_token1] = ACTIONS(1440), - [aux_sym_check_host_ip_token1] = ACTIONS(1440), - [aux_sym_ciphers_token1] = ACTIONS(1440), - [aux_sym_cipher_token1] = ACTIONS(1442), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1440), - [aux_sym_compression_token1] = ACTIONS(1440), - [aux_sym_connection_attempts_token1] = ACTIONS(1440), - [aux_sym_connect_timeout_token1] = ACTIONS(1440), - [aux_sym_control_master_token1] = ACTIONS(1440), - [aux_sym_control_path_token1] = ACTIONS(1440), - [aux_sym_control_persist_token1] = ACTIONS(1440), - [aux_sym_dynamic_forward_token1] = ACTIONS(1440), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1440), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1440), - [aux_sym_escape_char_token1] = ACTIONS(1440), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1440), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1440), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1440), - [aux_sym_forward_agent_token1] = ACTIONS(1440), - [aux_sym_forward_x11_token1] = ACTIONS(1442), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1440), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1440), - [aux_sym_gateway_ports_token1] = ACTIONS(1440), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1440), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1440), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1440), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1440), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1440), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1440), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1440), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1440), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1440), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1440), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1440), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1440), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1440), - [aux_sym_host_key_alias_token1] = ACTIONS(1440), - [aux_sym_hostname_token1] = ACTIONS(1440), - [aux_sym_identities_only_token1] = ACTIONS(1440), - [aux_sym_identity_agent_token1] = ACTIONS(1440), - [aux_sym_identity_file_token1] = ACTIONS(1440), - [aux_sym_ignore_unknown_token1] = ACTIONS(1440), - [aux_sym_include_token1] = ACTIONS(1440), - [aux_sym_ip_qos_token1] = ACTIONS(1440), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1440), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1440), - [aux_sym_kex_algorithms_token1] = ACTIONS(1440), - [aux_sym_known_hosts_command_token1] = ACTIONS(1440), - [aux_sym_local_command_token1] = ACTIONS(1440), - [aux_sym_local_forward_token1] = ACTIONS(1440), - [aux_sym_log_level_token1] = ACTIONS(1440), - [aux_sym_log_verbose_token1] = ACTIONS(1440), - [aux_sym_macs_token1] = ACTIONS(1440), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1440), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1440), - [aux_sym_password_authentication_token1] = ACTIONS(1440), - [aux_sym_permit_local_command_token1] = ACTIONS(1440), - [aux_sym_permit_remote_open_token1] = ACTIONS(1440), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1440), - [aux_sym_port_token1] = ACTIONS(1440), - [aux_sym_preferred_authentications_token1] = ACTIONS(1440), - [aux_sym_protocol_token1] = ACTIONS(1440), - [aux_sym_proxy_command_token1] = ACTIONS(1440), - [aux_sym_proxy_jump_token1] = ACTIONS(1440), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1440), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1440), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1440), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1440), - [aux_sym_rekey_limit_token1] = ACTIONS(1440), - [aux_sym_remote_command_token1] = ACTIONS(1440), - [aux_sym_remote_forward_token1] = ACTIONS(1440), - [aux_sym_request_tty_token1] = ACTIONS(1440), - [aux_sym_required_rsa_size_token1] = ACTIONS(1440), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1440), - [aux_sym_security_key_provider_token1] = ACTIONS(1440), - [aux_sym_send_env_token1] = ACTIONS(1440), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1440), - [aux_sym_server_alive_interval_token1] = ACTIONS(1440), - [aux_sym_session_type_token1] = ACTIONS(1440), - [aux_sym_set_env_token1] = ACTIONS(1440), - [aux_sym_stdin_null_token1] = ACTIONS(1440), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1440), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1440), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1440), - [aux_sym_syslog_facility_token1] = ACTIONS(1440), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1440), - [aux_sym_keep_alive_token1] = ACTIONS(1440), - [aux_sym_tag_token1] = ACTIONS(1440), - [aux_sym_tunnel_token1] = ACTIONS(1442), - [aux_sym_tunnel_device_token1] = ACTIONS(1440), - [aux_sym_update_host_keys_token1] = ACTIONS(1440), - [aux_sym_use_keychain_token1] = ACTIONS(1440), - [aux_sym_use_roaming_token1] = ACTIONS(1440), - [aux_sym_user_token1] = ACTIONS(1442), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1440), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1440), - [aux_sym_visual_host_key_token1] = ACTIONS(1440), - [aux_sym_xauth_location_token1] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1449), + [aux_sym_match_token1] = ACTIONS(1445), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1445), + [aux_sym_address_family_token1] = ACTIONS(1445), + [aux_sym_batch_mode_token1] = ACTIONS(1445), + [aux_sym_bind_address_token1] = ACTIONS(1445), + [aux_sym_bind_interface_token1] = ACTIONS(1445), + [aux_sym_canonical_domains_token1] = ACTIONS(1445), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1445), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1445), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1445), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1445), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1445), + [aux_sym_certificate_file_token1] = ACTIONS(1445), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1445), + [aux_sym_channel_timeout_token1] = ACTIONS(1445), + [aux_sym_check_host_ip_token1] = ACTIONS(1445), + [aux_sym_ciphers_token1] = ACTIONS(1445), + [aux_sym_cipher_token1] = ACTIONS(1447), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1445), + [aux_sym_compression_token1] = ACTIONS(1445), + [aux_sym_connection_attempts_token1] = ACTIONS(1445), + [aux_sym_connect_timeout_token1] = ACTIONS(1445), + [aux_sym_control_master_token1] = ACTIONS(1445), + [aux_sym_control_path_token1] = ACTIONS(1445), + [aux_sym_control_persist_token1] = ACTIONS(1445), + [aux_sym_dynamic_forward_token1] = ACTIONS(1445), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1445), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1445), + [aux_sym_escape_char_token1] = ACTIONS(1445), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1445), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1445), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1445), + [aux_sym_forward_agent_token1] = ACTIONS(1445), + [aux_sym_forward_x11_token1] = ACTIONS(1447), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1445), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1445), + [aux_sym_gateway_ports_token1] = ACTIONS(1445), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1445), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1445), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1445), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1445), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1445), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1445), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1445), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1445), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1445), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1445), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1445), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1445), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1445), + [aux_sym_host_key_alias_token1] = ACTIONS(1445), + [aux_sym_hostname_token1] = ACTIONS(1445), + [aux_sym_identities_only_token1] = ACTIONS(1445), + [aux_sym_identity_agent_token1] = ACTIONS(1445), + [aux_sym_identity_file_token1] = ACTIONS(1445), + [aux_sym_ignore_unknown_token1] = ACTIONS(1445), + [aux_sym_include_token1] = ACTIONS(1445), + [aux_sym_ip_qos_token1] = ACTIONS(1445), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1445), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1445), + [aux_sym_kex_algorithms_token1] = ACTIONS(1445), + [aux_sym_known_hosts_command_token1] = ACTIONS(1445), + [aux_sym_local_command_token1] = ACTIONS(1445), + [aux_sym_local_forward_token1] = ACTIONS(1445), + [aux_sym_log_level_token1] = ACTIONS(1445), + [aux_sym_log_verbose_token1] = ACTIONS(1445), + [aux_sym_macs_token1] = ACTIONS(1445), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1445), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1445), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1445), + [aux_sym_password_authentication_token1] = ACTIONS(1445), + [aux_sym_permit_local_command_token1] = ACTIONS(1445), + [aux_sym_permit_remote_open_token1] = ACTIONS(1445), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1445), + [aux_sym_port_token1] = ACTIONS(1445), + [aux_sym_preferred_authentications_token1] = ACTIONS(1445), + [aux_sym_protocol_token1] = ACTIONS(1445), + [aux_sym_proxy_command_token1] = ACTIONS(1445), + [aux_sym_proxy_jump_token1] = ACTIONS(1445), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1445), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1445), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1445), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1445), + [aux_sym_rekey_limit_token1] = ACTIONS(1445), + [aux_sym_remote_command_token1] = ACTIONS(1445), + [aux_sym_remote_forward_token1] = ACTIONS(1445), + [aux_sym_request_tty_token1] = ACTIONS(1445), + [aux_sym_required_rsa_size_token1] = ACTIONS(1445), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1445), + [aux_sym_security_key_provider_token1] = ACTIONS(1445), + [aux_sym_send_env_token1] = ACTIONS(1445), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1445), + [aux_sym_server_alive_interval_token1] = ACTIONS(1445), + [aux_sym_session_type_token1] = ACTIONS(1445), + [aux_sym_set_env_token1] = ACTIONS(1445), + [aux_sym_stdin_null_token1] = ACTIONS(1445), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1445), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1445), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1445), + [aux_sym_syslog_facility_token1] = ACTIONS(1445), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1445), + [aux_sym_keep_alive_token1] = ACTIONS(1445), + [aux_sym_tag_token1] = ACTIONS(1445), + [aux_sym_tunnel_token1] = ACTIONS(1447), + [aux_sym_tunnel_device_token1] = ACTIONS(1445), + [aux_sym_update_host_keys_token1] = ACTIONS(1445), + [aux_sym_use_keychain_token1] = ACTIONS(1445), + [aux_sym_use_roaming_token1] = ACTIONS(1445), + [aux_sym_user_token1] = ACTIONS(1447), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1445), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1445), + [aux_sym_visual_host_key_token1] = ACTIONS(1445), + [aux_sym_xauth_location_token1] = ACTIONS(1445), }, [148] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1448), - [anon_sym_DQUOTE] = ACTIONS(1450), - [aux_sym_match_token1] = ACTIONS(1446), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1446), - [aux_sym_address_family_token1] = ACTIONS(1446), - [aux_sym_batch_mode_token1] = ACTIONS(1446), - [aux_sym_bind_address_token1] = ACTIONS(1446), - [aux_sym_bind_interface_token1] = ACTIONS(1446), - [aux_sym_canonical_domains_token1] = ACTIONS(1446), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1446), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1446), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1446), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1446), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1446), - [aux_sym_certificate_file_token1] = ACTIONS(1446), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1446), - [aux_sym_channel_timeout_token1] = ACTIONS(1446), - [aux_sym_check_host_ip_token1] = ACTIONS(1446), - [aux_sym_ciphers_token1] = ACTIONS(1446), - [aux_sym_cipher_token1] = ACTIONS(1448), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1446), - [aux_sym_compression_token1] = ACTIONS(1446), - [aux_sym_connection_attempts_token1] = ACTIONS(1446), - [aux_sym_connect_timeout_token1] = ACTIONS(1446), - [aux_sym_control_master_token1] = ACTIONS(1446), - [aux_sym_control_path_token1] = ACTIONS(1446), - [aux_sym_control_persist_token1] = ACTIONS(1446), - [aux_sym_dynamic_forward_token1] = ACTIONS(1446), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1446), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1446), - [aux_sym_escape_char_token1] = ACTIONS(1446), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1446), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1446), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1446), - [aux_sym_forward_agent_token1] = ACTIONS(1446), - [aux_sym_forward_x11_token1] = ACTIONS(1448), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1446), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1446), - [aux_sym_gateway_ports_token1] = ACTIONS(1446), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1446), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1446), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1446), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1446), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1446), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1446), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1446), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1446), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1446), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1446), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1446), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1446), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1446), - [aux_sym_host_key_alias_token1] = ACTIONS(1446), - [aux_sym_hostname_token1] = ACTIONS(1446), - [aux_sym_identities_only_token1] = ACTIONS(1446), - [aux_sym_identity_agent_token1] = ACTIONS(1446), - [aux_sym_identity_file_token1] = ACTIONS(1446), - [aux_sym_ignore_unknown_token1] = ACTIONS(1446), - [aux_sym_include_token1] = ACTIONS(1446), - [aux_sym_ip_qos_token1] = ACTIONS(1446), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1446), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1446), - [aux_sym_kex_algorithms_token1] = ACTIONS(1446), - [aux_sym_known_hosts_command_token1] = ACTIONS(1446), - [aux_sym_local_command_token1] = ACTIONS(1446), - [aux_sym_local_forward_token1] = ACTIONS(1446), - [aux_sym_log_level_token1] = ACTIONS(1446), - [aux_sym_log_verbose_token1] = ACTIONS(1446), - [aux_sym_macs_token1] = ACTIONS(1446), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1446), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1446), - [aux_sym_password_authentication_token1] = ACTIONS(1446), - [aux_sym_permit_local_command_token1] = ACTIONS(1446), - [aux_sym_permit_remote_open_token1] = ACTIONS(1446), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1446), - [aux_sym_port_token1] = ACTIONS(1446), - [aux_sym_preferred_authentications_token1] = ACTIONS(1446), - [aux_sym_protocol_token1] = ACTIONS(1446), - [aux_sym_proxy_command_token1] = ACTIONS(1446), - [aux_sym_proxy_jump_token1] = ACTIONS(1446), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1446), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1446), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1446), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1446), - [aux_sym_rekey_limit_token1] = ACTIONS(1446), - [aux_sym_remote_command_token1] = ACTIONS(1446), - [aux_sym_remote_forward_token1] = ACTIONS(1446), - [aux_sym_request_tty_token1] = ACTIONS(1446), - [aux_sym_required_rsa_size_token1] = ACTIONS(1446), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1446), - [aux_sym_security_key_provider_token1] = ACTIONS(1446), - [aux_sym_send_env_token1] = ACTIONS(1446), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1446), - [aux_sym_server_alive_interval_token1] = ACTIONS(1446), - [aux_sym_session_type_token1] = ACTIONS(1446), - [aux_sym_set_env_token1] = ACTIONS(1446), - [aux_sym_stdin_null_token1] = ACTIONS(1446), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1446), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1446), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1446), - [aux_sym_syslog_facility_token1] = ACTIONS(1446), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1446), - [aux_sym_keep_alive_token1] = ACTIONS(1446), - [aux_sym_tag_token1] = ACTIONS(1446), - [aux_sym_tunnel_token1] = ACTIONS(1448), - [aux_sym_tunnel_device_token1] = ACTIONS(1446), - [aux_sym_update_host_keys_token1] = ACTIONS(1446), - [aux_sym_use_keychain_token1] = ACTIONS(1446), - [aux_sym_use_roaming_token1] = ACTIONS(1446), - [aux_sym_user_token1] = ACTIONS(1448), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1446), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1446), - [aux_sym_visual_host_key_token1] = ACTIONS(1446), - [aux_sym_xauth_location_token1] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(1455), + [aux_sym_match_token1] = ACTIONS(1451), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1451), + [aux_sym_address_family_token1] = ACTIONS(1451), + [aux_sym_batch_mode_token1] = ACTIONS(1451), + [aux_sym_bind_address_token1] = ACTIONS(1451), + [aux_sym_bind_interface_token1] = ACTIONS(1451), + [aux_sym_canonical_domains_token1] = ACTIONS(1451), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1451), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1451), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1451), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1451), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1451), + [aux_sym_certificate_file_token1] = ACTIONS(1451), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1451), + [aux_sym_channel_timeout_token1] = ACTIONS(1451), + [aux_sym_check_host_ip_token1] = ACTIONS(1451), + [aux_sym_ciphers_token1] = ACTIONS(1451), + [aux_sym_cipher_token1] = ACTIONS(1453), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1451), + [aux_sym_compression_token1] = ACTIONS(1451), + [aux_sym_connection_attempts_token1] = ACTIONS(1451), + [aux_sym_connect_timeout_token1] = ACTIONS(1451), + [aux_sym_control_master_token1] = ACTIONS(1451), + [aux_sym_control_path_token1] = ACTIONS(1451), + [aux_sym_control_persist_token1] = ACTIONS(1451), + [aux_sym_dynamic_forward_token1] = ACTIONS(1451), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1451), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1451), + [aux_sym_escape_char_token1] = ACTIONS(1451), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1451), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1451), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1451), + [aux_sym_forward_agent_token1] = ACTIONS(1451), + [aux_sym_forward_x11_token1] = ACTIONS(1453), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1451), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1451), + [aux_sym_gateway_ports_token1] = ACTIONS(1451), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1451), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1451), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1451), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1451), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1451), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1451), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1451), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1451), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1451), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1451), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1451), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1451), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1451), + [aux_sym_host_key_alias_token1] = ACTIONS(1451), + [aux_sym_hostname_token1] = ACTIONS(1451), + [aux_sym_identities_only_token1] = ACTIONS(1451), + [aux_sym_identity_agent_token1] = ACTIONS(1451), + [aux_sym_identity_file_token1] = ACTIONS(1451), + [aux_sym_ignore_unknown_token1] = ACTIONS(1451), + [aux_sym_include_token1] = ACTIONS(1451), + [aux_sym_ip_qos_token1] = ACTIONS(1451), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1451), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1451), + [aux_sym_kex_algorithms_token1] = ACTIONS(1451), + [aux_sym_known_hosts_command_token1] = ACTIONS(1451), + [aux_sym_local_command_token1] = ACTIONS(1451), + [aux_sym_local_forward_token1] = ACTIONS(1451), + [aux_sym_log_level_token1] = ACTIONS(1451), + [aux_sym_log_verbose_token1] = ACTIONS(1451), + [aux_sym_macs_token1] = ACTIONS(1451), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1451), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1451), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1451), + [aux_sym_password_authentication_token1] = ACTIONS(1451), + [aux_sym_permit_local_command_token1] = ACTIONS(1451), + [aux_sym_permit_remote_open_token1] = ACTIONS(1451), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1451), + [aux_sym_port_token1] = ACTIONS(1451), + [aux_sym_preferred_authentications_token1] = ACTIONS(1451), + [aux_sym_protocol_token1] = ACTIONS(1451), + [aux_sym_proxy_command_token1] = ACTIONS(1451), + [aux_sym_proxy_jump_token1] = ACTIONS(1451), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1451), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1451), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1451), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1451), + [aux_sym_rekey_limit_token1] = ACTIONS(1451), + [aux_sym_remote_command_token1] = ACTIONS(1451), + [aux_sym_remote_forward_token1] = ACTIONS(1451), + [aux_sym_request_tty_token1] = ACTIONS(1451), + [aux_sym_required_rsa_size_token1] = ACTIONS(1451), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1451), + [aux_sym_security_key_provider_token1] = ACTIONS(1451), + [aux_sym_send_env_token1] = ACTIONS(1451), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1451), + [aux_sym_server_alive_interval_token1] = ACTIONS(1451), + [aux_sym_session_type_token1] = ACTIONS(1451), + [aux_sym_set_env_token1] = ACTIONS(1451), + [aux_sym_stdin_null_token1] = ACTIONS(1451), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1451), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1451), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1451), + [aux_sym_syslog_facility_token1] = ACTIONS(1451), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1451), + [aux_sym_keep_alive_token1] = ACTIONS(1451), + [aux_sym_tag_token1] = ACTIONS(1451), + [aux_sym_tunnel_token1] = ACTIONS(1453), + [aux_sym_tunnel_device_token1] = ACTIONS(1451), + [aux_sym_update_host_keys_token1] = ACTIONS(1451), + [aux_sym_use_keychain_token1] = ACTIONS(1451), + [aux_sym_use_roaming_token1] = ACTIONS(1451), + [aux_sym_user_token1] = ACTIONS(1453), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1451), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1451), + [aux_sym_visual_host_key_token1] = ACTIONS(1451), + [aux_sym_xauth_location_token1] = ACTIONS(1451), }, [149] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1454), - [anon_sym_DQUOTE] = ACTIONS(1456), - [aux_sym_match_token1] = ACTIONS(1452), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1452), - [aux_sym_address_family_token1] = ACTIONS(1452), - [aux_sym_batch_mode_token1] = ACTIONS(1452), - [aux_sym_bind_address_token1] = ACTIONS(1452), - [aux_sym_bind_interface_token1] = ACTIONS(1452), - [aux_sym_canonical_domains_token1] = ACTIONS(1452), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1452), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1452), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1452), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1452), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1452), - [aux_sym_certificate_file_token1] = ACTIONS(1452), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1452), - [aux_sym_channel_timeout_token1] = ACTIONS(1452), - [aux_sym_check_host_ip_token1] = ACTIONS(1452), - [aux_sym_ciphers_token1] = ACTIONS(1452), - [aux_sym_cipher_token1] = ACTIONS(1454), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1452), - [aux_sym_compression_token1] = ACTIONS(1452), - [aux_sym_connection_attempts_token1] = ACTIONS(1452), - [aux_sym_connect_timeout_token1] = ACTIONS(1452), - [aux_sym_control_master_token1] = ACTIONS(1452), - [aux_sym_control_path_token1] = ACTIONS(1452), - [aux_sym_control_persist_token1] = ACTIONS(1452), - [aux_sym_dynamic_forward_token1] = ACTIONS(1452), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1452), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1452), - [aux_sym_escape_char_token1] = ACTIONS(1452), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1452), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1452), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1452), - [aux_sym_forward_agent_token1] = ACTIONS(1452), - [aux_sym_forward_x11_token1] = ACTIONS(1454), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1452), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1452), - [aux_sym_gateway_ports_token1] = ACTIONS(1452), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1452), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1452), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1452), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1452), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1452), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1452), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1452), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1452), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1452), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1452), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1452), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1452), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1452), - [aux_sym_host_key_alias_token1] = ACTIONS(1452), - [aux_sym_hostname_token1] = ACTIONS(1452), - [aux_sym_identities_only_token1] = ACTIONS(1452), - [aux_sym_identity_agent_token1] = ACTIONS(1452), - [aux_sym_identity_file_token1] = ACTIONS(1452), - [aux_sym_ignore_unknown_token1] = ACTIONS(1452), - [aux_sym_include_token1] = ACTIONS(1452), - [aux_sym_ip_qos_token1] = ACTIONS(1452), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1452), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1452), - [aux_sym_kex_algorithms_token1] = ACTIONS(1452), - [aux_sym_known_hosts_command_token1] = ACTIONS(1452), - [aux_sym_local_command_token1] = ACTIONS(1452), - [aux_sym_local_forward_token1] = ACTIONS(1452), - [aux_sym_log_level_token1] = ACTIONS(1452), - [aux_sym_log_verbose_token1] = ACTIONS(1452), - [aux_sym_macs_token1] = ACTIONS(1452), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1452), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1452), - [aux_sym_password_authentication_token1] = ACTIONS(1452), - [aux_sym_permit_local_command_token1] = ACTIONS(1452), - [aux_sym_permit_remote_open_token1] = ACTIONS(1452), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1452), - [aux_sym_port_token1] = ACTIONS(1452), - [aux_sym_preferred_authentications_token1] = ACTIONS(1452), - [aux_sym_protocol_token1] = ACTIONS(1452), - [aux_sym_proxy_command_token1] = ACTIONS(1452), - [aux_sym_proxy_jump_token1] = ACTIONS(1452), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1452), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1452), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1452), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1452), - [aux_sym_rekey_limit_token1] = ACTIONS(1452), - [aux_sym_remote_command_token1] = ACTIONS(1452), - [aux_sym_remote_forward_token1] = ACTIONS(1452), - [aux_sym_request_tty_token1] = ACTIONS(1452), - [aux_sym_required_rsa_size_token1] = ACTIONS(1452), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1452), - [aux_sym_security_key_provider_token1] = ACTIONS(1452), - [aux_sym_send_env_token1] = ACTIONS(1452), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1452), - [aux_sym_server_alive_interval_token1] = ACTIONS(1452), - [aux_sym_session_type_token1] = ACTIONS(1452), - [aux_sym_set_env_token1] = ACTIONS(1452), - [aux_sym_stdin_null_token1] = ACTIONS(1452), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1452), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1452), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1452), - [aux_sym_syslog_facility_token1] = ACTIONS(1452), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1452), - [aux_sym_keep_alive_token1] = ACTIONS(1452), - [aux_sym_tag_token1] = ACTIONS(1452), - [aux_sym_tunnel_token1] = ACTIONS(1454), - [aux_sym_tunnel_device_token1] = ACTIONS(1452), - [aux_sym_update_host_keys_token1] = ACTIONS(1452), - [aux_sym_use_keychain_token1] = ACTIONS(1452), - [aux_sym_use_roaming_token1] = ACTIONS(1452), - [aux_sym_user_token1] = ACTIONS(1454), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1452), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1452), - [aux_sym_visual_host_key_token1] = ACTIONS(1452), - [aux_sym_xauth_location_token1] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1459), + [anon_sym_DQUOTE] = ACTIONS(1461), + [aux_sym_match_token1] = ACTIONS(1457), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1457), + [aux_sym_address_family_token1] = ACTIONS(1457), + [aux_sym_batch_mode_token1] = ACTIONS(1457), + [aux_sym_bind_address_token1] = ACTIONS(1457), + [aux_sym_bind_interface_token1] = ACTIONS(1457), + [aux_sym_canonical_domains_token1] = ACTIONS(1457), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1457), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1457), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1457), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1457), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1457), + [aux_sym_certificate_file_token1] = ACTIONS(1457), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1457), + [aux_sym_channel_timeout_token1] = ACTIONS(1457), + [aux_sym_check_host_ip_token1] = ACTIONS(1457), + [aux_sym_ciphers_token1] = ACTIONS(1457), + [aux_sym_cipher_token1] = ACTIONS(1459), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1457), + [aux_sym_compression_token1] = ACTIONS(1457), + [aux_sym_connection_attempts_token1] = ACTIONS(1457), + [aux_sym_connect_timeout_token1] = ACTIONS(1457), + [aux_sym_control_master_token1] = ACTIONS(1457), + [aux_sym_control_path_token1] = ACTIONS(1457), + [aux_sym_control_persist_token1] = ACTIONS(1457), + [aux_sym_dynamic_forward_token1] = ACTIONS(1457), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1457), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1457), + [aux_sym_escape_char_token1] = ACTIONS(1457), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1457), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1457), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1457), + [aux_sym_forward_agent_token1] = ACTIONS(1457), + [aux_sym_forward_x11_token1] = ACTIONS(1459), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1457), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1457), + [aux_sym_gateway_ports_token1] = ACTIONS(1457), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1457), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1457), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1457), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1457), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1457), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1457), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1457), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1457), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1457), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1457), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1457), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1457), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1457), + [aux_sym_host_key_alias_token1] = ACTIONS(1457), + [aux_sym_hostname_token1] = ACTIONS(1457), + [aux_sym_identities_only_token1] = ACTIONS(1457), + [aux_sym_identity_agent_token1] = ACTIONS(1457), + [aux_sym_identity_file_token1] = ACTIONS(1457), + [aux_sym_ignore_unknown_token1] = ACTIONS(1457), + [aux_sym_include_token1] = ACTIONS(1457), + [aux_sym_ip_qos_token1] = ACTIONS(1457), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1457), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1457), + [aux_sym_kex_algorithms_token1] = ACTIONS(1457), + [aux_sym_known_hosts_command_token1] = ACTIONS(1457), + [aux_sym_local_command_token1] = ACTIONS(1457), + [aux_sym_local_forward_token1] = ACTIONS(1457), + [aux_sym_log_level_token1] = ACTIONS(1457), + [aux_sym_log_verbose_token1] = ACTIONS(1457), + [aux_sym_macs_token1] = ACTIONS(1457), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1457), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1457), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1457), + [aux_sym_password_authentication_token1] = ACTIONS(1457), + [aux_sym_permit_local_command_token1] = ACTIONS(1457), + [aux_sym_permit_remote_open_token1] = ACTIONS(1457), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1457), + [aux_sym_port_token1] = ACTIONS(1457), + [aux_sym_preferred_authentications_token1] = ACTIONS(1457), + [aux_sym_protocol_token1] = ACTIONS(1457), + [aux_sym_proxy_command_token1] = ACTIONS(1457), + [aux_sym_proxy_jump_token1] = ACTIONS(1457), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1457), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1457), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1457), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1457), + [aux_sym_rekey_limit_token1] = ACTIONS(1457), + [aux_sym_remote_command_token1] = ACTIONS(1457), + [aux_sym_remote_forward_token1] = ACTIONS(1457), + [aux_sym_request_tty_token1] = ACTIONS(1457), + [aux_sym_required_rsa_size_token1] = ACTIONS(1457), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1457), + [aux_sym_security_key_provider_token1] = ACTIONS(1457), + [aux_sym_send_env_token1] = ACTIONS(1457), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1457), + [aux_sym_server_alive_interval_token1] = ACTIONS(1457), + [aux_sym_session_type_token1] = ACTIONS(1457), + [aux_sym_set_env_token1] = ACTIONS(1457), + [aux_sym_stdin_null_token1] = ACTIONS(1457), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1457), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1457), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1457), + [aux_sym_syslog_facility_token1] = ACTIONS(1457), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1457), + [aux_sym_keep_alive_token1] = ACTIONS(1457), + [aux_sym_tag_token1] = ACTIONS(1457), + [aux_sym_tunnel_token1] = ACTIONS(1459), + [aux_sym_tunnel_device_token1] = ACTIONS(1457), + [aux_sym_update_host_keys_token1] = ACTIONS(1457), + [aux_sym_use_keychain_token1] = ACTIONS(1457), + [aux_sym_use_roaming_token1] = ACTIONS(1457), + [aux_sym_user_token1] = ACTIONS(1459), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1457), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1457), + [aux_sym_visual_host_key_token1] = ACTIONS(1457), + [aux_sym_xauth_location_token1] = ACTIONS(1457), }, [150] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1460), - [anon_sym_DQUOTE] = ACTIONS(1462), - [aux_sym_match_token1] = ACTIONS(1458), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1458), - [aux_sym_address_family_token1] = ACTIONS(1458), - [aux_sym_batch_mode_token1] = ACTIONS(1458), - [aux_sym_bind_address_token1] = ACTIONS(1458), - [aux_sym_bind_interface_token1] = ACTIONS(1458), - [aux_sym_canonical_domains_token1] = ACTIONS(1458), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1458), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1458), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1458), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1458), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1458), - [aux_sym_certificate_file_token1] = ACTIONS(1458), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1458), - [aux_sym_channel_timeout_token1] = ACTIONS(1458), - [aux_sym_check_host_ip_token1] = ACTIONS(1458), - [aux_sym_ciphers_token1] = ACTIONS(1458), - [aux_sym_cipher_token1] = ACTIONS(1460), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1458), - [aux_sym_compression_token1] = ACTIONS(1458), - [aux_sym_connection_attempts_token1] = ACTIONS(1458), - [aux_sym_connect_timeout_token1] = ACTIONS(1458), - [aux_sym_control_master_token1] = ACTIONS(1458), - [aux_sym_control_path_token1] = ACTIONS(1458), - [aux_sym_control_persist_token1] = ACTIONS(1458), - [aux_sym_dynamic_forward_token1] = ACTIONS(1458), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1458), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1458), - [aux_sym_escape_char_token1] = ACTIONS(1458), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1458), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1458), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1458), - [aux_sym_forward_agent_token1] = ACTIONS(1458), - [aux_sym_forward_x11_token1] = ACTIONS(1460), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1458), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1458), - [aux_sym_gateway_ports_token1] = ACTIONS(1458), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1458), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1458), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1458), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1458), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1458), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1458), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1458), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1458), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1458), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1458), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1458), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1458), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1458), - [aux_sym_host_key_alias_token1] = ACTIONS(1458), - [aux_sym_hostname_token1] = ACTIONS(1458), - [aux_sym_identities_only_token1] = ACTIONS(1458), - [aux_sym_identity_agent_token1] = ACTIONS(1458), - [aux_sym_identity_file_token1] = ACTIONS(1458), - [aux_sym_ignore_unknown_token1] = ACTIONS(1458), - [aux_sym_include_token1] = ACTIONS(1458), - [aux_sym_ip_qos_token1] = ACTIONS(1458), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1458), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1458), - [aux_sym_kex_algorithms_token1] = ACTIONS(1458), - [aux_sym_known_hosts_command_token1] = ACTIONS(1458), - [aux_sym_local_command_token1] = ACTIONS(1458), - [aux_sym_local_forward_token1] = ACTIONS(1458), - [aux_sym_log_level_token1] = ACTIONS(1458), - [aux_sym_log_verbose_token1] = ACTIONS(1458), - [aux_sym_macs_token1] = ACTIONS(1458), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1458), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1458), - [aux_sym_password_authentication_token1] = ACTIONS(1458), - [aux_sym_permit_local_command_token1] = ACTIONS(1458), - [aux_sym_permit_remote_open_token1] = ACTIONS(1458), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1458), - [aux_sym_port_token1] = ACTIONS(1458), - [aux_sym_preferred_authentications_token1] = ACTIONS(1458), - [aux_sym_protocol_token1] = ACTIONS(1458), - [aux_sym_proxy_command_token1] = ACTIONS(1458), - [aux_sym_proxy_jump_token1] = ACTIONS(1458), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1458), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1458), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1458), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1458), - [aux_sym_rekey_limit_token1] = ACTIONS(1458), - [aux_sym_remote_command_token1] = ACTIONS(1458), - [aux_sym_remote_forward_token1] = ACTIONS(1458), - [aux_sym_request_tty_token1] = ACTIONS(1458), - [aux_sym_required_rsa_size_token1] = ACTIONS(1458), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1458), - [aux_sym_security_key_provider_token1] = ACTIONS(1458), - [aux_sym_send_env_token1] = ACTIONS(1458), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1458), - [aux_sym_server_alive_interval_token1] = ACTIONS(1458), - [aux_sym_session_type_token1] = ACTIONS(1458), - [aux_sym_set_env_token1] = ACTIONS(1458), - [aux_sym_stdin_null_token1] = ACTIONS(1458), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1458), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1458), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1458), - [aux_sym_syslog_facility_token1] = ACTIONS(1458), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1458), - [aux_sym_keep_alive_token1] = ACTIONS(1458), - [aux_sym_tag_token1] = ACTIONS(1458), - [aux_sym_tunnel_token1] = ACTIONS(1460), - [aux_sym_tunnel_device_token1] = ACTIONS(1458), - [aux_sym_update_host_keys_token1] = ACTIONS(1458), - [aux_sym_use_keychain_token1] = ACTIONS(1458), - [aux_sym_use_roaming_token1] = ACTIONS(1458), - [aux_sym_user_token1] = ACTIONS(1460), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1458), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1458), - [aux_sym_visual_host_key_token1] = ACTIONS(1458), - [aux_sym_xauth_location_token1] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(1467), + [aux_sym_match_token1] = ACTIONS(1463), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1463), + [aux_sym_address_family_token1] = ACTIONS(1463), + [aux_sym_batch_mode_token1] = ACTIONS(1463), + [aux_sym_bind_address_token1] = ACTIONS(1463), + [aux_sym_bind_interface_token1] = ACTIONS(1463), + [aux_sym_canonical_domains_token1] = ACTIONS(1463), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1463), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1463), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1463), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1463), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1463), + [aux_sym_certificate_file_token1] = ACTIONS(1463), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1463), + [aux_sym_channel_timeout_token1] = ACTIONS(1463), + [aux_sym_check_host_ip_token1] = ACTIONS(1463), + [aux_sym_ciphers_token1] = ACTIONS(1463), + [aux_sym_cipher_token1] = ACTIONS(1465), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1463), + [aux_sym_compression_token1] = ACTIONS(1463), + [aux_sym_connection_attempts_token1] = ACTIONS(1463), + [aux_sym_connect_timeout_token1] = ACTIONS(1463), + [aux_sym_control_master_token1] = ACTIONS(1463), + [aux_sym_control_path_token1] = ACTIONS(1463), + [aux_sym_control_persist_token1] = ACTIONS(1463), + [aux_sym_dynamic_forward_token1] = ACTIONS(1463), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1463), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1463), + [aux_sym_escape_char_token1] = ACTIONS(1463), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1463), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1463), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1463), + [aux_sym_forward_agent_token1] = ACTIONS(1463), + [aux_sym_forward_x11_token1] = ACTIONS(1465), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1463), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1463), + [aux_sym_gateway_ports_token1] = ACTIONS(1463), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1463), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1463), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1463), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1463), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1463), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1463), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1463), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1463), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1463), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1463), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1463), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1463), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1463), + [aux_sym_host_key_alias_token1] = ACTIONS(1463), + [aux_sym_hostname_token1] = ACTIONS(1463), + [aux_sym_identities_only_token1] = ACTIONS(1463), + [aux_sym_identity_agent_token1] = ACTIONS(1463), + [aux_sym_identity_file_token1] = ACTIONS(1463), + [aux_sym_ignore_unknown_token1] = ACTIONS(1463), + [aux_sym_include_token1] = ACTIONS(1463), + [aux_sym_ip_qos_token1] = ACTIONS(1463), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1463), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1463), + [aux_sym_kex_algorithms_token1] = ACTIONS(1463), + [aux_sym_known_hosts_command_token1] = ACTIONS(1463), + [aux_sym_local_command_token1] = ACTIONS(1463), + [aux_sym_local_forward_token1] = ACTIONS(1463), + [aux_sym_log_level_token1] = ACTIONS(1463), + [aux_sym_log_verbose_token1] = ACTIONS(1463), + [aux_sym_macs_token1] = ACTIONS(1463), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1463), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1463), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1463), + [aux_sym_password_authentication_token1] = ACTIONS(1463), + [aux_sym_permit_local_command_token1] = ACTIONS(1463), + [aux_sym_permit_remote_open_token1] = ACTIONS(1463), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1463), + [aux_sym_port_token1] = ACTIONS(1463), + [aux_sym_preferred_authentications_token1] = ACTIONS(1463), + [aux_sym_protocol_token1] = ACTIONS(1463), + [aux_sym_proxy_command_token1] = ACTIONS(1463), + [aux_sym_proxy_jump_token1] = ACTIONS(1463), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1463), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1463), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1463), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1463), + [aux_sym_rekey_limit_token1] = ACTIONS(1463), + [aux_sym_remote_command_token1] = ACTIONS(1463), + [aux_sym_remote_forward_token1] = ACTIONS(1463), + [aux_sym_request_tty_token1] = ACTIONS(1463), + [aux_sym_required_rsa_size_token1] = ACTIONS(1463), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1463), + [aux_sym_security_key_provider_token1] = ACTIONS(1463), + [aux_sym_send_env_token1] = ACTIONS(1463), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1463), + [aux_sym_server_alive_interval_token1] = ACTIONS(1463), + [aux_sym_session_type_token1] = ACTIONS(1463), + [aux_sym_set_env_token1] = ACTIONS(1463), + [aux_sym_stdin_null_token1] = ACTIONS(1463), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1463), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1463), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1463), + [aux_sym_syslog_facility_token1] = ACTIONS(1463), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1463), + [aux_sym_keep_alive_token1] = ACTIONS(1463), + [aux_sym_tag_token1] = ACTIONS(1463), + [aux_sym_tunnel_token1] = ACTIONS(1465), + [aux_sym_tunnel_device_token1] = ACTIONS(1463), + [aux_sym_update_host_keys_token1] = ACTIONS(1463), + [aux_sym_use_keychain_token1] = ACTIONS(1463), + [aux_sym_use_roaming_token1] = ACTIONS(1463), + [aux_sym_user_token1] = ACTIONS(1465), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1463), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1463), + [aux_sym_visual_host_key_token1] = ACTIONS(1463), + [aux_sym_xauth_location_token1] = ACTIONS(1463), }, [151] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1466), - [anon_sym_DQUOTE] = ACTIONS(1468), - [aux_sym_match_token1] = ACTIONS(1464), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1464), - [aux_sym_address_family_token1] = ACTIONS(1464), - [aux_sym_batch_mode_token1] = ACTIONS(1464), - [aux_sym_bind_address_token1] = ACTIONS(1464), - [aux_sym_bind_interface_token1] = ACTIONS(1464), - [aux_sym_canonical_domains_token1] = ACTIONS(1464), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1464), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1464), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1464), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1464), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1464), - [aux_sym_certificate_file_token1] = ACTIONS(1464), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1464), - [aux_sym_channel_timeout_token1] = ACTIONS(1464), - [aux_sym_check_host_ip_token1] = ACTIONS(1464), - [aux_sym_ciphers_token1] = ACTIONS(1464), - [aux_sym_cipher_token1] = ACTIONS(1466), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1464), - [aux_sym_compression_token1] = ACTIONS(1464), - [aux_sym_connection_attempts_token1] = ACTIONS(1464), - [aux_sym_connect_timeout_token1] = ACTIONS(1464), - [aux_sym_control_master_token1] = ACTIONS(1464), - [aux_sym_control_path_token1] = ACTIONS(1464), - [aux_sym_control_persist_token1] = ACTIONS(1464), - [aux_sym_dynamic_forward_token1] = ACTIONS(1464), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1464), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1464), - [aux_sym_escape_char_token1] = ACTIONS(1464), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1464), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1464), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1464), - [aux_sym_forward_agent_token1] = ACTIONS(1464), - [aux_sym_forward_x11_token1] = ACTIONS(1466), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1464), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1464), - [aux_sym_gateway_ports_token1] = ACTIONS(1464), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1464), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1464), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1464), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1464), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1464), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1464), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1464), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1464), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1464), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1464), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1464), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1464), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1464), - [aux_sym_host_key_alias_token1] = ACTIONS(1464), - [aux_sym_hostname_token1] = ACTIONS(1464), - [aux_sym_identities_only_token1] = ACTIONS(1464), - [aux_sym_identity_agent_token1] = ACTIONS(1464), - [aux_sym_identity_file_token1] = ACTIONS(1464), - [aux_sym_ignore_unknown_token1] = ACTIONS(1464), - [aux_sym_include_token1] = ACTIONS(1464), - [aux_sym_ip_qos_token1] = ACTIONS(1464), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1464), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1464), - [aux_sym_kex_algorithms_token1] = ACTIONS(1464), - [aux_sym_known_hosts_command_token1] = ACTIONS(1464), - [aux_sym_local_command_token1] = ACTIONS(1464), - [aux_sym_local_forward_token1] = ACTIONS(1464), - [aux_sym_log_level_token1] = ACTIONS(1464), - [aux_sym_log_verbose_token1] = ACTIONS(1464), - [aux_sym_macs_token1] = ACTIONS(1464), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1464), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1464), - [aux_sym_password_authentication_token1] = ACTIONS(1464), - [aux_sym_permit_local_command_token1] = ACTIONS(1464), - [aux_sym_permit_remote_open_token1] = ACTIONS(1464), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1464), - [aux_sym_port_token1] = ACTIONS(1464), - [aux_sym_preferred_authentications_token1] = ACTIONS(1464), - [aux_sym_protocol_token1] = ACTIONS(1464), - [aux_sym_proxy_command_token1] = ACTIONS(1464), - [aux_sym_proxy_jump_token1] = ACTIONS(1464), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1464), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1464), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1464), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1464), - [aux_sym_rekey_limit_token1] = ACTIONS(1464), - [aux_sym_remote_command_token1] = ACTIONS(1464), - [aux_sym_remote_forward_token1] = ACTIONS(1464), - [aux_sym_request_tty_token1] = ACTIONS(1464), - [aux_sym_required_rsa_size_token1] = ACTIONS(1464), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1464), - [aux_sym_security_key_provider_token1] = ACTIONS(1464), - [aux_sym_send_env_token1] = ACTIONS(1464), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1464), - [aux_sym_server_alive_interval_token1] = ACTIONS(1464), - [aux_sym_session_type_token1] = ACTIONS(1464), - [aux_sym_set_env_token1] = ACTIONS(1464), - [aux_sym_stdin_null_token1] = ACTIONS(1464), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1464), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1464), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1464), - [aux_sym_syslog_facility_token1] = ACTIONS(1464), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1464), - [aux_sym_keep_alive_token1] = ACTIONS(1464), - [aux_sym_tag_token1] = ACTIONS(1464), - [aux_sym_tunnel_token1] = ACTIONS(1466), - [aux_sym_tunnel_device_token1] = ACTIONS(1464), - [aux_sym_update_host_keys_token1] = ACTIONS(1464), - [aux_sym_use_keychain_token1] = ACTIONS(1464), - [aux_sym_use_roaming_token1] = ACTIONS(1464), - [aux_sym_user_token1] = ACTIONS(1466), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1464), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1464), - [aux_sym_visual_host_key_token1] = ACTIONS(1464), - [aux_sym_xauth_location_token1] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(1473), + [aux_sym_match_token1] = ACTIONS(1469), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1469), + [aux_sym_address_family_token1] = ACTIONS(1469), + [aux_sym_batch_mode_token1] = ACTIONS(1469), + [aux_sym_bind_address_token1] = ACTIONS(1469), + [aux_sym_bind_interface_token1] = ACTIONS(1469), + [aux_sym_canonical_domains_token1] = ACTIONS(1469), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1469), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1469), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1469), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1469), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1469), + [aux_sym_certificate_file_token1] = ACTIONS(1469), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1469), + [aux_sym_channel_timeout_token1] = ACTIONS(1469), + [aux_sym_check_host_ip_token1] = ACTIONS(1469), + [aux_sym_ciphers_token1] = ACTIONS(1469), + [aux_sym_cipher_token1] = ACTIONS(1471), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1469), + [aux_sym_compression_token1] = ACTIONS(1469), + [aux_sym_connection_attempts_token1] = ACTIONS(1469), + [aux_sym_connect_timeout_token1] = ACTIONS(1469), + [aux_sym_control_master_token1] = ACTIONS(1469), + [aux_sym_control_path_token1] = ACTIONS(1469), + [aux_sym_control_persist_token1] = ACTIONS(1469), + [aux_sym_dynamic_forward_token1] = ACTIONS(1469), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1469), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1469), + [aux_sym_escape_char_token1] = ACTIONS(1469), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1469), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1469), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1469), + [aux_sym_forward_agent_token1] = ACTIONS(1469), + [aux_sym_forward_x11_token1] = ACTIONS(1471), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1469), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1469), + [aux_sym_gateway_ports_token1] = ACTIONS(1469), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1469), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1469), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1469), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1469), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1469), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1469), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1469), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1469), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1469), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1469), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1469), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1469), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1469), + [aux_sym_host_key_alias_token1] = ACTIONS(1469), + [aux_sym_hostname_token1] = ACTIONS(1469), + [aux_sym_identities_only_token1] = ACTIONS(1469), + [aux_sym_identity_agent_token1] = ACTIONS(1469), + [aux_sym_identity_file_token1] = ACTIONS(1469), + [aux_sym_ignore_unknown_token1] = ACTIONS(1469), + [aux_sym_include_token1] = ACTIONS(1469), + [aux_sym_ip_qos_token1] = ACTIONS(1469), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1469), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1469), + [aux_sym_kex_algorithms_token1] = ACTIONS(1469), + [aux_sym_known_hosts_command_token1] = ACTIONS(1469), + [aux_sym_local_command_token1] = ACTIONS(1469), + [aux_sym_local_forward_token1] = ACTIONS(1469), + [aux_sym_log_level_token1] = ACTIONS(1469), + [aux_sym_log_verbose_token1] = ACTIONS(1469), + [aux_sym_macs_token1] = ACTIONS(1469), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1469), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1469), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1469), + [aux_sym_password_authentication_token1] = ACTIONS(1469), + [aux_sym_permit_local_command_token1] = ACTIONS(1469), + [aux_sym_permit_remote_open_token1] = ACTIONS(1469), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1469), + [aux_sym_port_token1] = ACTIONS(1469), + [aux_sym_preferred_authentications_token1] = ACTIONS(1469), + [aux_sym_protocol_token1] = ACTIONS(1469), + [aux_sym_proxy_command_token1] = ACTIONS(1469), + [aux_sym_proxy_jump_token1] = ACTIONS(1469), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1469), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1469), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1469), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1469), + [aux_sym_rekey_limit_token1] = ACTIONS(1469), + [aux_sym_remote_command_token1] = ACTIONS(1469), + [aux_sym_remote_forward_token1] = ACTIONS(1469), + [aux_sym_request_tty_token1] = ACTIONS(1469), + [aux_sym_required_rsa_size_token1] = ACTIONS(1469), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1469), + [aux_sym_security_key_provider_token1] = ACTIONS(1469), + [aux_sym_send_env_token1] = ACTIONS(1469), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1469), + [aux_sym_server_alive_interval_token1] = ACTIONS(1469), + [aux_sym_session_type_token1] = ACTIONS(1469), + [aux_sym_set_env_token1] = ACTIONS(1469), + [aux_sym_stdin_null_token1] = ACTIONS(1469), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1469), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1469), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1469), + [aux_sym_syslog_facility_token1] = ACTIONS(1469), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1469), + [aux_sym_keep_alive_token1] = ACTIONS(1469), + [aux_sym_tag_token1] = ACTIONS(1469), + [aux_sym_tunnel_token1] = ACTIONS(1471), + [aux_sym_tunnel_device_token1] = ACTIONS(1469), + [aux_sym_update_host_keys_token1] = ACTIONS(1469), + [aux_sym_use_keychain_token1] = ACTIONS(1469), + [aux_sym_use_roaming_token1] = ACTIONS(1469), + [aux_sym_user_token1] = ACTIONS(1471), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1469), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1469), + [aux_sym_visual_host_key_token1] = ACTIONS(1469), + [aux_sym_xauth_location_token1] = ACTIONS(1469), }, [152] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1472), - [anon_sym_DQUOTE] = ACTIONS(1474), - [aux_sym_match_token1] = ACTIONS(1470), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1470), - [aux_sym_address_family_token1] = ACTIONS(1470), - [aux_sym_batch_mode_token1] = ACTIONS(1470), - [aux_sym_bind_address_token1] = ACTIONS(1470), - [aux_sym_bind_interface_token1] = ACTIONS(1470), - [aux_sym_canonical_domains_token1] = ACTIONS(1470), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1470), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1470), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1470), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1470), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1470), - [aux_sym_certificate_file_token1] = ACTIONS(1470), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1470), - [aux_sym_channel_timeout_token1] = ACTIONS(1470), - [aux_sym_check_host_ip_token1] = ACTIONS(1470), - [aux_sym_ciphers_token1] = ACTIONS(1470), - [aux_sym_cipher_token1] = ACTIONS(1472), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1470), - [aux_sym_compression_token1] = ACTIONS(1470), - [aux_sym_connection_attempts_token1] = ACTIONS(1470), - [aux_sym_connect_timeout_token1] = ACTIONS(1470), - [aux_sym_control_master_token1] = ACTIONS(1470), - [aux_sym_control_path_token1] = ACTIONS(1470), - [aux_sym_control_persist_token1] = ACTIONS(1470), - [aux_sym_dynamic_forward_token1] = ACTIONS(1470), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1470), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1470), - [aux_sym_escape_char_token1] = ACTIONS(1470), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1470), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1470), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1470), - [aux_sym_forward_agent_token1] = ACTIONS(1470), - [aux_sym_forward_x11_token1] = ACTIONS(1472), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1470), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1470), - [aux_sym_gateway_ports_token1] = ACTIONS(1470), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1470), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1470), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1470), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1470), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1470), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1470), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1470), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1470), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1470), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1470), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1470), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1470), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1470), - [aux_sym_host_key_alias_token1] = ACTIONS(1470), - [aux_sym_hostname_token1] = ACTIONS(1470), - [aux_sym_identities_only_token1] = ACTIONS(1470), - [aux_sym_identity_agent_token1] = ACTIONS(1470), - [aux_sym_identity_file_token1] = ACTIONS(1470), - [aux_sym_ignore_unknown_token1] = ACTIONS(1470), - [aux_sym_include_token1] = ACTIONS(1470), - [aux_sym_ip_qos_token1] = ACTIONS(1470), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1470), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1470), - [aux_sym_kex_algorithms_token1] = ACTIONS(1470), - [aux_sym_known_hosts_command_token1] = ACTIONS(1470), - [aux_sym_local_command_token1] = ACTIONS(1470), - [aux_sym_local_forward_token1] = ACTIONS(1470), - [aux_sym_log_level_token1] = ACTIONS(1470), - [aux_sym_log_verbose_token1] = ACTIONS(1470), - [aux_sym_macs_token1] = ACTIONS(1470), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1470), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1470), - [aux_sym_password_authentication_token1] = ACTIONS(1470), - [aux_sym_permit_local_command_token1] = ACTIONS(1470), - [aux_sym_permit_remote_open_token1] = ACTIONS(1470), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1470), - [aux_sym_port_token1] = ACTIONS(1470), - [aux_sym_preferred_authentications_token1] = ACTIONS(1470), - [aux_sym_protocol_token1] = ACTIONS(1470), - [aux_sym_proxy_command_token1] = ACTIONS(1470), - [aux_sym_proxy_jump_token1] = ACTIONS(1470), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1470), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1470), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1470), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1470), - [aux_sym_rekey_limit_token1] = ACTIONS(1470), - [aux_sym_remote_command_token1] = ACTIONS(1470), - [aux_sym_remote_forward_token1] = ACTIONS(1470), - [aux_sym_request_tty_token1] = ACTIONS(1470), - [aux_sym_required_rsa_size_token1] = ACTIONS(1470), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1470), - [aux_sym_security_key_provider_token1] = ACTIONS(1470), - [aux_sym_send_env_token1] = ACTIONS(1470), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1470), - [aux_sym_server_alive_interval_token1] = ACTIONS(1470), - [aux_sym_session_type_token1] = ACTIONS(1470), - [aux_sym_set_env_token1] = ACTIONS(1470), - [aux_sym_stdin_null_token1] = ACTIONS(1470), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1470), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1470), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1470), - [aux_sym_syslog_facility_token1] = ACTIONS(1470), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1470), - [aux_sym_keep_alive_token1] = ACTIONS(1470), - [aux_sym_tag_token1] = ACTIONS(1470), - [aux_sym_tunnel_token1] = ACTIONS(1472), - [aux_sym_tunnel_device_token1] = ACTIONS(1470), - [aux_sym_update_host_keys_token1] = ACTIONS(1470), - [aux_sym_use_keychain_token1] = ACTIONS(1470), - [aux_sym_use_roaming_token1] = ACTIONS(1470), - [aux_sym_user_token1] = ACTIONS(1472), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1470), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1470), - [aux_sym_visual_host_key_token1] = ACTIONS(1470), - [aux_sym_xauth_location_token1] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1477), + [anon_sym_DQUOTE] = ACTIONS(1479), + [aux_sym_match_token1] = ACTIONS(1475), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1475), + [aux_sym_address_family_token1] = ACTIONS(1475), + [aux_sym_batch_mode_token1] = ACTIONS(1475), + [aux_sym_bind_address_token1] = ACTIONS(1475), + [aux_sym_bind_interface_token1] = ACTIONS(1475), + [aux_sym_canonical_domains_token1] = ACTIONS(1475), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1475), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1475), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1475), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1475), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1475), + [aux_sym_certificate_file_token1] = ACTIONS(1475), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1475), + [aux_sym_channel_timeout_token1] = ACTIONS(1475), + [aux_sym_check_host_ip_token1] = ACTIONS(1475), + [aux_sym_ciphers_token1] = ACTIONS(1475), + [aux_sym_cipher_token1] = ACTIONS(1477), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1475), + [aux_sym_compression_token1] = ACTIONS(1475), + [aux_sym_connection_attempts_token1] = ACTIONS(1475), + [aux_sym_connect_timeout_token1] = ACTIONS(1475), + [aux_sym_control_master_token1] = ACTIONS(1475), + [aux_sym_control_path_token1] = ACTIONS(1475), + [aux_sym_control_persist_token1] = ACTIONS(1475), + [aux_sym_dynamic_forward_token1] = ACTIONS(1475), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1475), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1475), + [aux_sym_escape_char_token1] = ACTIONS(1475), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1475), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1475), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1475), + [aux_sym_forward_agent_token1] = ACTIONS(1475), + [aux_sym_forward_x11_token1] = ACTIONS(1477), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1475), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1475), + [aux_sym_gateway_ports_token1] = ACTIONS(1475), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1475), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1475), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1475), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1475), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1475), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1475), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1475), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1475), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1475), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1475), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1475), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1475), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1475), + [aux_sym_host_key_alias_token1] = ACTIONS(1475), + [aux_sym_hostname_token1] = ACTIONS(1475), + [aux_sym_identities_only_token1] = ACTIONS(1475), + [aux_sym_identity_agent_token1] = ACTIONS(1475), + [aux_sym_identity_file_token1] = ACTIONS(1475), + [aux_sym_ignore_unknown_token1] = ACTIONS(1475), + [aux_sym_include_token1] = ACTIONS(1475), + [aux_sym_ip_qos_token1] = ACTIONS(1475), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1475), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1475), + [aux_sym_kex_algorithms_token1] = ACTIONS(1475), + [aux_sym_known_hosts_command_token1] = ACTIONS(1475), + [aux_sym_local_command_token1] = ACTIONS(1475), + [aux_sym_local_forward_token1] = ACTIONS(1475), + [aux_sym_log_level_token1] = ACTIONS(1475), + [aux_sym_log_verbose_token1] = ACTIONS(1475), + [aux_sym_macs_token1] = ACTIONS(1475), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1475), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1475), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1475), + [aux_sym_password_authentication_token1] = ACTIONS(1475), + [aux_sym_permit_local_command_token1] = ACTIONS(1475), + [aux_sym_permit_remote_open_token1] = ACTIONS(1475), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1475), + [aux_sym_port_token1] = ACTIONS(1475), + [aux_sym_preferred_authentications_token1] = ACTIONS(1475), + [aux_sym_protocol_token1] = ACTIONS(1475), + [aux_sym_proxy_command_token1] = ACTIONS(1475), + [aux_sym_proxy_jump_token1] = ACTIONS(1475), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1475), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1475), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1475), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1475), + [aux_sym_rekey_limit_token1] = ACTIONS(1475), + [aux_sym_remote_command_token1] = ACTIONS(1475), + [aux_sym_remote_forward_token1] = ACTIONS(1475), + [aux_sym_request_tty_token1] = ACTIONS(1475), + [aux_sym_required_rsa_size_token1] = ACTIONS(1475), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1475), + [aux_sym_security_key_provider_token1] = ACTIONS(1475), + [aux_sym_send_env_token1] = ACTIONS(1475), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1475), + [aux_sym_server_alive_interval_token1] = ACTIONS(1475), + [aux_sym_session_type_token1] = ACTIONS(1475), + [aux_sym_set_env_token1] = ACTIONS(1475), + [aux_sym_stdin_null_token1] = ACTIONS(1475), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1475), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1475), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1475), + [aux_sym_syslog_facility_token1] = ACTIONS(1475), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1475), + [aux_sym_keep_alive_token1] = ACTIONS(1475), + [aux_sym_tag_token1] = ACTIONS(1475), + [aux_sym_tunnel_token1] = ACTIONS(1477), + [aux_sym_tunnel_device_token1] = ACTIONS(1475), + [aux_sym_update_host_keys_token1] = ACTIONS(1475), + [aux_sym_use_keychain_token1] = ACTIONS(1475), + [aux_sym_use_roaming_token1] = ACTIONS(1475), + [aux_sym_user_token1] = ACTIONS(1477), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1475), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1475), + [aux_sym_visual_host_key_token1] = ACTIONS(1475), + [aux_sym_xauth_location_token1] = ACTIONS(1475), }, [153] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1478), - [anon_sym_DQUOTE] = ACTIONS(1480), - [aux_sym_match_token1] = ACTIONS(1476), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1476), - [aux_sym_address_family_token1] = ACTIONS(1476), - [aux_sym_batch_mode_token1] = ACTIONS(1476), - [aux_sym_bind_address_token1] = ACTIONS(1476), - [aux_sym_bind_interface_token1] = ACTIONS(1476), - [aux_sym_canonical_domains_token1] = ACTIONS(1476), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1476), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1476), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1476), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1476), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1476), - [aux_sym_certificate_file_token1] = ACTIONS(1476), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1476), - [aux_sym_channel_timeout_token1] = ACTIONS(1476), - [aux_sym_check_host_ip_token1] = ACTIONS(1476), - [aux_sym_ciphers_token1] = ACTIONS(1476), - [aux_sym_cipher_token1] = ACTIONS(1478), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1476), - [aux_sym_compression_token1] = ACTIONS(1476), - [aux_sym_connection_attempts_token1] = ACTIONS(1476), - [aux_sym_connect_timeout_token1] = ACTIONS(1476), - [aux_sym_control_master_token1] = ACTIONS(1476), - [aux_sym_control_path_token1] = ACTIONS(1476), - [aux_sym_control_persist_token1] = ACTIONS(1476), - [aux_sym_dynamic_forward_token1] = ACTIONS(1476), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1476), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1476), - [aux_sym_escape_char_token1] = ACTIONS(1476), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1476), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1476), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1476), - [aux_sym_forward_agent_token1] = ACTIONS(1476), - [aux_sym_forward_x11_token1] = ACTIONS(1478), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1476), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1476), - [aux_sym_gateway_ports_token1] = ACTIONS(1476), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1476), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1476), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1476), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1476), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1476), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1476), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1476), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1476), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1476), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1476), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1476), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1476), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1476), - [aux_sym_host_key_alias_token1] = ACTIONS(1476), - [aux_sym_hostname_token1] = ACTIONS(1476), - [aux_sym_identities_only_token1] = ACTIONS(1476), - [aux_sym_identity_agent_token1] = ACTIONS(1476), - [aux_sym_identity_file_token1] = ACTIONS(1476), - [aux_sym_ignore_unknown_token1] = ACTIONS(1476), - [aux_sym_include_token1] = ACTIONS(1476), - [aux_sym_ip_qos_token1] = ACTIONS(1476), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1476), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1476), - [aux_sym_kex_algorithms_token1] = ACTIONS(1476), - [aux_sym_known_hosts_command_token1] = ACTIONS(1476), - [aux_sym_local_command_token1] = ACTIONS(1476), - [aux_sym_local_forward_token1] = ACTIONS(1476), - [aux_sym_log_level_token1] = ACTIONS(1476), - [aux_sym_log_verbose_token1] = ACTIONS(1476), - [aux_sym_macs_token1] = ACTIONS(1476), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1476), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1476), - [aux_sym_password_authentication_token1] = ACTIONS(1476), - [aux_sym_permit_local_command_token1] = ACTIONS(1476), - [aux_sym_permit_remote_open_token1] = ACTIONS(1476), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1476), - [aux_sym_port_token1] = ACTIONS(1476), - [aux_sym_preferred_authentications_token1] = ACTIONS(1476), - [aux_sym_protocol_token1] = ACTIONS(1476), - [aux_sym_proxy_command_token1] = ACTIONS(1476), - [aux_sym_proxy_jump_token1] = ACTIONS(1476), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1476), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1476), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1476), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1476), - [aux_sym_rekey_limit_token1] = ACTIONS(1476), - [aux_sym_remote_command_token1] = ACTIONS(1476), - [aux_sym_remote_forward_token1] = ACTIONS(1476), - [aux_sym_request_tty_token1] = ACTIONS(1476), - [aux_sym_required_rsa_size_token1] = ACTIONS(1476), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1476), - [aux_sym_security_key_provider_token1] = ACTIONS(1476), - [aux_sym_send_env_token1] = ACTIONS(1476), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1476), - [aux_sym_server_alive_interval_token1] = ACTIONS(1476), - [aux_sym_session_type_token1] = ACTIONS(1476), - [aux_sym_set_env_token1] = ACTIONS(1476), - [aux_sym_stdin_null_token1] = ACTIONS(1476), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1476), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1476), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1476), - [aux_sym_syslog_facility_token1] = ACTIONS(1476), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1476), - [aux_sym_keep_alive_token1] = ACTIONS(1476), - [aux_sym_tag_token1] = ACTIONS(1476), - [aux_sym_tunnel_token1] = ACTIONS(1478), - [aux_sym_tunnel_device_token1] = ACTIONS(1476), - [aux_sym_update_host_keys_token1] = ACTIONS(1476), - [aux_sym_use_keychain_token1] = ACTIONS(1476), - [aux_sym_use_roaming_token1] = ACTIONS(1476), - [aux_sym_user_token1] = ACTIONS(1478), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1476), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1476), - [aux_sym_visual_host_key_token1] = ACTIONS(1476), - [aux_sym_xauth_location_token1] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1483), + [anon_sym_DQUOTE] = ACTIONS(1485), + [aux_sym_match_token1] = ACTIONS(1481), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1481), + [aux_sym_address_family_token1] = ACTIONS(1481), + [aux_sym_batch_mode_token1] = ACTIONS(1481), + [aux_sym_bind_address_token1] = ACTIONS(1481), + [aux_sym_bind_interface_token1] = ACTIONS(1481), + [aux_sym_canonical_domains_token1] = ACTIONS(1481), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1481), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1481), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1481), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1481), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1481), + [aux_sym_certificate_file_token1] = ACTIONS(1481), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1481), + [aux_sym_channel_timeout_token1] = ACTIONS(1481), + [aux_sym_check_host_ip_token1] = ACTIONS(1481), + [aux_sym_ciphers_token1] = ACTIONS(1481), + [aux_sym_cipher_token1] = ACTIONS(1483), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1481), + [aux_sym_compression_token1] = ACTIONS(1481), + [aux_sym_connection_attempts_token1] = ACTIONS(1481), + [aux_sym_connect_timeout_token1] = ACTIONS(1481), + [aux_sym_control_master_token1] = ACTIONS(1481), + [aux_sym_control_path_token1] = ACTIONS(1481), + [aux_sym_control_persist_token1] = ACTIONS(1481), + [aux_sym_dynamic_forward_token1] = ACTIONS(1481), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1481), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1481), + [aux_sym_escape_char_token1] = ACTIONS(1481), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1481), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1481), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1481), + [aux_sym_forward_agent_token1] = ACTIONS(1481), + [aux_sym_forward_x11_token1] = ACTIONS(1483), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1481), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1481), + [aux_sym_gateway_ports_token1] = ACTIONS(1481), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1481), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1481), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1481), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1481), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1481), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1481), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1481), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1481), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1481), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1481), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1481), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1481), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1481), + [aux_sym_host_key_alias_token1] = ACTIONS(1481), + [aux_sym_hostname_token1] = ACTIONS(1481), + [aux_sym_identities_only_token1] = ACTIONS(1481), + [aux_sym_identity_agent_token1] = ACTIONS(1481), + [aux_sym_identity_file_token1] = ACTIONS(1481), + [aux_sym_ignore_unknown_token1] = ACTIONS(1481), + [aux_sym_include_token1] = ACTIONS(1481), + [aux_sym_ip_qos_token1] = ACTIONS(1481), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1481), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1481), + [aux_sym_kex_algorithms_token1] = ACTIONS(1481), + [aux_sym_known_hosts_command_token1] = ACTIONS(1481), + [aux_sym_local_command_token1] = ACTIONS(1481), + [aux_sym_local_forward_token1] = ACTIONS(1481), + [aux_sym_log_level_token1] = ACTIONS(1481), + [aux_sym_log_verbose_token1] = ACTIONS(1481), + [aux_sym_macs_token1] = ACTIONS(1481), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1481), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1481), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1481), + [aux_sym_password_authentication_token1] = ACTIONS(1481), + [aux_sym_permit_local_command_token1] = ACTIONS(1481), + [aux_sym_permit_remote_open_token1] = ACTIONS(1481), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1481), + [aux_sym_port_token1] = ACTIONS(1481), + [aux_sym_preferred_authentications_token1] = ACTIONS(1481), + [aux_sym_protocol_token1] = ACTIONS(1481), + [aux_sym_proxy_command_token1] = ACTIONS(1481), + [aux_sym_proxy_jump_token1] = ACTIONS(1481), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1481), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1481), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1481), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1481), + [aux_sym_rekey_limit_token1] = ACTIONS(1481), + [aux_sym_remote_command_token1] = ACTIONS(1481), + [aux_sym_remote_forward_token1] = ACTIONS(1481), + [aux_sym_request_tty_token1] = ACTIONS(1481), + [aux_sym_required_rsa_size_token1] = ACTIONS(1481), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1481), + [aux_sym_security_key_provider_token1] = ACTIONS(1481), + [aux_sym_send_env_token1] = ACTIONS(1481), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1481), + [aux_sym_server_alive_interval_token1] = ACTIONS(1481), + [aux_sym_session_type_token1] = ACTIONS(1481), + [aux_sym_set_env_token1] = ACTIONS(1481), + [aux_sym_stdin_null_token1] = ACTIONS(1481), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1481), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1481), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1481), + [aux_sym_syslog_facility_token1] = ACTIONS(1481), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1481), + [aux_sym_keep_alive_token1] = ACTIONS(1481), + [aux_sym_tag_token1] = ACTIONS(1481), + [aux_sym_tunnel_token1] = ACTIONS(1483), + [aux_sym_tunnel_device_token1] = ACTIONS(1481), + [aux_sym_update_host_keys_token1] = ACTIONS(1481), + [aux_sym_use_keychain_token1] = ACTIONS(1481), + [aux_sym_use_roaming_token1] = ACTIONS(1481), + [aux_sym_user_token1] = ACTIONS(1483), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1481), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1481), + [aux_sym_visual_host_key_token1] = ACTIONS(1481), + [aux_sym_xauth_location_token1] = ACTIONS(1481), }, [154] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1484), - [anon_sym_DQUOTE] = ACTIONS(1486), - [aux_sym_match_token1] = ACTIONS(1482), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1482), - [aux_sym_address_family_token1] = ACTIONS(1482), - [aux_sym_batch_mode_token1] = ACTIONS(1482), - [aux_sym_bind_address_token1] = ACTIONS(1482), - [aux_sym_bind_interface_token1] = ACTIONS(1482), - [aux_sym_canonical_domains_token1] = ACTIONS(1482), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1482), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1482), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1482), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1482), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1482), - [aux_sym_certificate_file_token1] = ACTIONS(1482), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1482), - [aux_sym_channel_timeout_token1] = ACTIONS(1482), - [aux_sym_check_host_ip_token1] = ACTIONS(1482), - [aux_sym_ciphers_token1] = ACTIONS(1482), - [aux_sym_cipher_token1] = ACTIONS(1484), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1482), - [aux_sym_compression_token1] = ACTIONS(1482), - [aux_sym_connection_attempts_token1] = ACTIONS(1482), - [aux_sym_connect_timeout_token1] = ACTIONS(1482), - [aux_sym_control_master_token1] = ACTIONS(1482), - [aux_sym_control_path_token1] = ACTIONS(1482), - [aux_sym_control_persist_token1] = ACTIONS(1482), - [aux_sym_dynamic_forward_token1] = ACTIONS(1482), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1482), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1482), - [aux_sym_escape_char_token1] = ACTIONS(1482), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1482), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1482), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1482), - [aux_sym_forward_agent_token1] = ACTIONS(1482), - [aux_sym_forward_x11_token1] = ACTIONS(1484), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1482), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1482), - [aux_sym_gateway_ports_token1] = ACTIONS(1482), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1482), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1482), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1482), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1482), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1482), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1482), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1482), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1482), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1482), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1482), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1482), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1482), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1482), - [aux_sym_host_key_alias_token1] = ACTIONS(1482), - [aux_sym_hostname_token1] = ACTIONS(1482), - [aux_sym_identities_only_token1] = ACTIONS(1482), - [aux_sym_identity_agent_token1] = ACTIONS(1482), - [aux_sym_identity_file_token1] = ACTIONS(1482), - [aux_sym_ignore_unknown_token1] = ACTIONS(1482), - [aux_sym_include_token1] = ACTIONS(1482), - [aux_sym_ip_qos_token1] = ACTIONS(1482), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1482), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1482), - [aux_sym_kex_algorithms_token1] = ACTIONS(1482), - [aux_sym_known_hosts_command_token1] = ACTIONS(1482), - [aux_sym_local_command_token1] = ACTIONS(1482), - [aux_sym_local_forward_token1] = ACTIONS(1482), - [aux_sym_log_level_token1] = ACTIONS(1482), - [aux_sym_log_verbose_token1] = ACTIONS(1482), - [aux_sym_macs_token1] = ACTIONS(1482), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1482), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1482), - [aux_sym_password_authentication_token1] = ACTIONS(1482), - [aux_sym_permit_local_command_token1] = ACTIONS(1482), - [aux_sym_permit_remote_open_token1] = ACTIONS(1482), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1482), - [aux_sym_port_token1] = ACTIONS(1482), - [aux_sym_preferred_authentications_token1] = ACTIONS(1482), - [aux_sym_protocol_token1] = ACTIONS(1482), - [aux_sym_proxy_command_token1] = ACTIONS(1482), - [aux_sym_proxy_jump_token1] = ACTIONS(1482), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1482), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1482), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1482), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1482), - [aux_sym_rekey_limit_token1] = ACTIONS(1482), - [aux_sym_remote_command_token1] = ACTIONS(1482), - [aux_sym_remote_forward_token1] = ACTIONS(1482), - [aux_sym_request_tty_token1] = ACTIONS(1482), - [aux_sym_required_rsa_size_token1] = ACTIONS(1482), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1482), - [aux_sym_security_key_provider_token1] = ACTIONS(1482), - [aux_sym_send_env_token1] = ACTIONS(1482), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1482), - [aux_sym_server_alive_interval_token1] = ACTIONS(1482), - [aux_sym_session_type_token1] = ACTIONS(1482), - [aux_sym_set_env_token1] = ACTIONS(1482), - [aux_sym_stdin_null_token1] = ACTIONS(1482), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1482), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1482), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1482), - [aux_sym_syslog_facility_token1] = ACTIONS(1482), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1482), - [aux_sym_keep_alive_token1] = ACTIONS(1482), - [aux_sym_tag_token1] = ACTIONS(1482), - [aux_sym_tunnel_token1] = ACTIONS(1484), - [aux_sym_tunnel_device_token1] = ACTIONS(1482), - [aux_sym_update_host_keys_token1] = ACTIONS(1482), - [aux_sym_use_keychain_token1] = ACTIONS(1482), - [aux_sym_use_roaming_token1] = ACTIONS(1482), - [aux_sym_user_token1] = ACTIONS(1484), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1482), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1482), - [aux_sym_visual_host_key_token1] = ACTIONS(1482), - [aux_sym_xauth_location_token1] = ACTIONS(1482), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1489), + [anon_sym_DQUOTE] = ACTIONS(1491), + [aux_sym_match_token1] = ACTIONS(1487), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1487), + [aux_sym_address_family_token1] = ACTIONS(1487), + [aux_sym_batch_mode_token1] = ACTIONS(1487), + [aux_sym_bind_address_token1] = ACTIONS(1487), + [aux_sym_bind_interface_token1] = ACTIONS(1487), + [aux_sym_canonical_domains_token1] = ACTIONS(1487), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1487), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1487), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1487), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1487), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1487), + [aux_sym_certificate_file_token1] = ACTIONS(1487), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1487), + [aux_sym_channel_timeout_token1] = ACTIONS(1487), + [aux_sym_check_host_ip_token1] = ACTIONS(1487), + [aux_sym_ciphers_token1] = ACTIONS(1487), + [aux_sym_cipher_token1] = ACTIONS(1489), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1487), + [aux_sym_compression_token1] = ACTIONS(1487), + [aux_sym_connection_attempts_token1] = ACTIONS(1487), + [aux_sym_connect_timeout_token1] = ACTIONS(1487), + [aux_sym_control_master_token1] = ACTIONS(1487), + [aux_sym_control_path_token1] = ACTIONS(1487), + [aux_sym_control_persist_token1] = ACTIONS(1487), + [aux_sym_dynamic_forward_token1] = ACTIONS(1487), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1487), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1487), + [aux_sym_escape_char_token1] = ACTIONS(1487), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1487), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1487), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1487), + [aux_sym_forward_agent_token1] = ACTIONS(1487), + [aux_sym_forward_x11_token1] = ACTIONS(1489), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1487), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1487), + [aux_sym_gateway_ports_token1] = ACTIONS(1487), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1487), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1487), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1487), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1487), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1487), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1487), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1487), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1487), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1487), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1487), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1487), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1487), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1487), + [aux_sym_host_key_alias_token1] = ACTIONS(1487), + [aux_sym_hostname_token1] = ACTIONS(1487), + [aux_sym_identities_only_token1] = ACTIONS(1487), + [aux_sym_identity_agent_token1] = ACTIONS(1487), + [aux_sym_identity_file_token1] = ACTIONS(1487), + [aux_sym_ignore_unknown_token1] = ACTIONS(1487), + [aux_sym_include_token1] = ACTIONS(1487), + [aux_sym_ip_qos_token1] = ACTIONS(1487), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1487), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1487), + [aux_sym_kex_algorithms_token1] = ACTIONS(1487), + [aux_sym_known_hosts_command_token1] = ACTIONS(1487), + [aux_sym_local_command_token1] = ACTIONS(1487), + [aux_sym_local_forward_token1] = ACTIONS(1487), + [aux_sym_log_level_token1] = ACTIONS(1487), + [aux_sym_log_verbose_token1] = ACTIONS(1487), + [aux_sym_macs_token1] = ACTIONS(1487), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1487), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1487), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1487), + [aux_sym_password_authentication_token1] = ACTIONS(1487), + [aux_sym_permit_local_command_token1] = ACTIONS(1487), + [aux_sym_permit_remote_open_token1] = ACTIONS(1487), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1487), + [aux_sym_port_token1] = ACTIONS(1487), + [aux_sym_preferred_authentications_token1] = ACTIONS(1487), + [aux_sym_protocol_token1] = ACTIONS(1487), + [aux_sym_proxy_command_token1] = ACTIONS(1487), + [aux_sym_proxy_jump_token1] = ACTIONS(1487), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1487), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1487), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1487), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1487), + [aux_sym_rekey_limit_token1] = ACTIONS(1487), + [aux_sym_remote_command_token1] = ACTIONS(1487), + [aux_sym_remote_forward_token1] = ACTIONS(1487), + [aux_sym_request_tty_token1] = ACTIONS(1487), + [aux_sym_required_rsa_size_token1] = ACTIONS(1487), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1487), + [aux_sym_security_key_provider_token1] = ACTIONS(1487), + [aux_sym_send_env_token1] = ACTIONS(1487), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1487), + [aux_sym_server_alive_interval_token1] = ACTIONS(1487), + [aux_sym_session_type_token1] = ACTIONS(1487), + [aux_sym_set_env_token1] = ACTIONS(1487), + [aux_sym_stdin_null_token1] = ACTIONS(1487), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1487), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1487), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1487), + [aux_sym_syslog_facility_token1] = ACTIONS(1487), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1487), + [aux_sym_keep_alive_token1] = ACTIONS(1487), + [aux_sym_tag_token1] = ACTIONS(1487), + [aux_sym_tunnel_token1] = ACTIONS(1489), + [aux_sym_tunnel_device_token1] = ACTIONS(1487), + [aux_sym_update_host_keys_token1] = ACTIONS(1487), + [aux_sym_use_keychain_token1] = ACTIONS(1487), + [aux_sym_use_roaming_token1] = ACTIONS(1487), + [aux_sym_user_token1] = ACTIONS(1489), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1487), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1487), + [aux_sym_visual_host_key_token1] = ACTIONS(1487), + [aux_sym_xauth_location_token1] = ACTIONS(1487), }, [155] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1492), - [aux_sym_match_token1] = ACTIONS(1488), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1488), - [aux_sym_address_family_token1] = ACTIONS(1488), - [aux_sym_batch_mode_token1] = ACTIONS(1488), - [aux_sym_bind_address_token1] = ACTIONS(1488), - [aux_sym_bind_interface_token1] = ACTIONS(1488), - [aux_sym_canonical_domains_token1] = ACTIONS(1488), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1488), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1488), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1488), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1488), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1488), - [aux_sym_certificate_file_token1] = ACTIONS(1488), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1488), - [aux_sym_channel_timeout_token1] = ACTIONS(1488), - [aux_sym_check_host_ip_token1] = ACTIONS(1488), - [aux_sym_ciphers_token1] = ACTIONS(1488), - [aux_sym_cipher_token1] = ACTIONS(1490), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1488), - [aux_sym_compression_token1] = ACTIONS(1488), - [aux_sym_connection_attempts_token1] = ACTIONS(1488), - [aux_sym_connect_timeout_token1] = ACTIONS(1488), - [aux_sym_control_master_token1] = ACTIONS(1488), - [aux_sym_control_path_token1] = ACTIONS(1488), - [aux_sym_control_persist_token1] = ACTIONS(1488), - [aux_sym_dynamic_forward_token1] = ACTIONS(1488), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1488), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1488), - [aux_sym_escape_char_token1] = ACTIONS(1488), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1488), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1488), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1488), - [aux_sym_forward_agent_token1] = ACTIONS(1488), - [aux_sym_forward_x11_token1] = ACTIONS(1490), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1488), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1488), - [aux_sym_gateway_ports_token1] = ACTIONS(1488), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1488), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1488), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1488), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1488), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1488), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1488), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1488), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1488), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1488), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1488), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1488), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1488), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1488), - [aux_sym_host_key_alias_token1] = ACTIONS(1488), - [aux_sym_hostname_token1] = ACTIONS(1488), - [aux_sym_identities_only_token1] = ACTIONS(1488), - [aux_sym_identity_agent_token1] = ACTIONS(1488), - [aux_sym_identity_file_token1] = ACTIONS(1488), - [aux_sym_ignore_unknown_token1] = ACTIONS(1488), - [aux_sym_include_token1] = ACTIONS(1488), - [aux_sym_ip_qos_token1] = ACTIONS(1488), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1488), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1488), - [aux_sym_kex_algorithms_token1] = ACTIONS(1488), - [aux_sym_known_hosts_command_token1] = ACTIONS(1488), - [aux_sym_local_command_token1] = ACTIONS(1488), - [aux_sym_local_forward_token1] = ACTIONS(1488), - [aux_sym_log_level_token1] = ACTIONS(1488), - [aux_sym_log_verbose_token1] = ACTIONS(1488), - [aux_sym_macs_token1] = ACTIONS(1488), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1488), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1488), - [aux_sym_password_authentication_token1] = ACTIONS(1488), - [aux_sym_permit_local_command_token1] = ACTIONS(1488), - [aux_sym_permit_remote_open_token1] = ACTIONS(1488), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1488), - [aux_sym_port_token1] = ACTIONS(1488), - [aux_sym_preferred_authentications_token1] = ACTIONS(1488), - [aux_sym_protocol_token1] = ACTIONS(1488), - [aux_sym_proxy_command_token1] = ACTIONS(1488), - [aux_sym_proxy_jump_token1] = ACTIONS(1488), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1488), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1488), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1488), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1488), - [aux_sym_rekey_limit_token1] = ACTIONS(1488), - [aux_sym_remote_command_token1] = ACTIONS(1488), - [aux_sym_remote_forward_token1] = ACTIONS(1488), - [aux_sym_request_tty_token1] = ACTIONS(1488), - [aux_sym_required_rsa_size_token1] = ACTIONS(1488), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1488), - [aux_sym_security_key_provider_token1] = ACTIONS(1488), - [aux_sym_send_env_token1] = ACTIONS(1488), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1488), - [aux_sym_server_alive_interval_token1] = ACTIONS(1488), - [aux_sym_session_type_token1] = ACTIONS(1488), - [aux_sym_set_env_token1] = ACTIONS(1488), - [aux_sym_stdin_null_token1] = ACTIONS(1488), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1488), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1488), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1488), - [aux_sym_syslog_facility_token1] = ACTIONS(1488), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1488), - [aux_sym_keep_alive_token1] = ACTIONS(1488), - [aux_sym_tag_token1] = ACTIONS(1488), - [aux_sym_tunnel_token1] = ACTIONS(1490), - [aux_sym_tunnel_device_token1] = ACTIONS(1488), - [aux_sym_update_host_keys_token1] = ACTIONS(1488), - [aux_sym_use_keychain_token1] = ACTIONS(1488), - [aux_sym_use_roaming_token1] = ACTIONS(1488), - [aux_sym_user_token1] = ACTIONS(1490), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1488), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1488), - [aux_sym_visual_host_key_token1] = ACTIONS(1488), - [aux_sym_xauth_location_token1] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1495), + [anon_sym_DQUOTE] = ACTIONS(1497), + [aux_sym_match_token1] = ACTIONS(1493), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1493), + [aux_sym_address_family_token1] = ACTIONS(1493), + [aux_sym_batch_mode_token1] = ACTIONS(1493), + [aux_sym_bind_address_token1] = ACTIONS(1493), + [aux_sym_bind_interface_token1] = ACTIONS(1493), + [aux_sym_canonical_domains_token1] = ACTIONS(1493), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1493), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1493), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1493), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1493), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1493), + [aux_sym_certificate_file_token1] = ACTIONS(1493), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1493), + [aux_sym_channel_timeout_token1] = ACTIONS(1493), + [aux_sym_check_host_ip_token1] = ACTIONS(1493), + [aux_sym_ciphers_token1] = ACTIONS(1493), + [aux_sym_cipher_token1] = ACTIONS(1495), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1493), + [aux_sym_compression_token1] = ACTIONS(1493), + [aux_sym_connection_attempts_token1] = ACTIONS(1493), + [aux_sym_connect_timeout_token1] = ACTIONS(1493), + [aux_sym_control_master_token1] = ACTIONS(1493), + [aux_sym_control_path_token1] = ACTIONS(1493), + [aux_sym_control_persist_token1] = ACTIONS(1493), + [aux_sym_dynamic_forward_token1] = ACTIONS(1493), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1493), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1493), + [aux_sym_escape_char_token1] = ACTIONS(1493), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1493), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1493), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1493), + [aux_sym_forward_agent_token1] = ACTIONS(1493), + [aux_sym_forward_x11_token1] = ACTIONS(1495), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1493), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1493), + [aux_sym_gateway_ports_token1] = ACTIONS(1493), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1493), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1493), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1493), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1493), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1493), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1493), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1493), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1493), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1493), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1493), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1493), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1493), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1493), + [aux_sym_host_key_alias_token1] = ACTIONS(1493), + [aux_sym_hostname_token1] = ACTIONS(1493), + [aux_sym_identities_only_token1] = ACTIONS(1493), + [aux_sym_identity_agent_token1] = ACTIONS(1493), + [aux_sym_identity_file_token1] = ACTIONS(1493), + [aux_sym_ignore_unknown_token1] = ACTIONS(1493), + [aux_sym_include_token1] = ACTIONS(1493), + [aux_sym_ip_qos_token1] = ACTIONS(1493), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1493), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1493), + [aux_sym_kex_algorithms_token1] = ACTIONS(1493), + [aux_sym_known_hosts_command_token1] = ACTIONS(1493), + [aux_sym_local_command_token1] = ACTIONS(1493), + [aux_sym_local_forward_token1] = ACTIONS(1493), + [aux_sym_log_level_token1] = ACTIONS(1493), + [aux_sym_log_verbose_token1] = ACTIONS(1493), + [aux_sym_macs_token1] = ACTIONS(1493), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1493), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1493), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1493), + [aux_sym_password_authentication_token1] = ACTIONS(1493), + [aux_sym_permit_local_command_token1] = ACTIONS(1493), + [aux_sym_permit_remote_open_token1] = ACTIONS(1493), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1493), + [aux_sym_port_token1] = ACTIONS(1493), + [aux_sym_preferred_authentications_token1] = ACTIONS(1493), + [aux_sym_protocol_token1] = ACTIONS(1493), + [aux_sym_proxy_command_token1] = ACTIONS(1493), + [aux_sym_proxy_jump_token1] = ACTIONS(1493), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1493), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1493), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1493), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1493), + [aux_sym_rekey_limit_token1] = ACTIONS(1493), + [aux_sym_remote_command_token1] = ACTIONS(1493), + [aux_sym_remote_forward_token1] = ACTIONS(1493), + [aux_sym_request_tty_token1] = ACTIONS(1493), + [aux_sym_required_rsa_size_token1] = ACTIONS(1493), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1493), + [aux_sym_security_key_provider_token1] = ACTIONS(1493), + [aux_sym_send_env_token1] = ACTIONS(1493), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1493), + [aux_sym_server_alive_interval_token1] = ACTIONS(1493), + [aux_sym_session_type_token1] = ACTIONS(1493), + [aux_sym_set_env_token1] = ACTIONS(1493), + [aux_sym_stdin_null_token1] = ACTIONS(1493), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1493), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1493), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1493), + [aux_sym_syslog_facility_token1] = ACTIONS(1493), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1493), + [aux_sym_keep_alive_token1] = ACTIONS(1493), + [aux_sym_tag_token1] = ACTIONS(1493), + [aux_sym_tunnel_token1] = ACTIONS(1495), + [aux_sym_tunnel_device_token1] = ACTIONS(1493), + [aux_sym_update_host_keys_token1] = ACTIONS(1493), + [aux_sym_use_keychain_token1] = ACTIONS(1493), + [aux_sym_use_roaming_token1] = ACTIONS(1493), + [aux_sym_user_token1] = ACTIONS(1495), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1493), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1493), + [aux_sym_visual_host_key_token1] = ACTIONS(1493), + [aux_sym_xauth_location_token1] = ACTIONS(1493), }, [156] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1496), - [anon_sym_DQUOTE] = ACTIONS(1498), - [aux_sym_match_token1] = ACTIONS(1494), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1494), - [aux_sym_address_family_token1] = ACTIONS(1494), - [aux_sym_batch_mode_token1] = ACTIONS(1494), - [aux_sym_bind_address_token1] = ACTIONS(1494), - [aux_sym_bind_interface_token1] = ACTIONS(1494), - [aux_sym_canonical_domains_token1] = ACTIONS(1494), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1494), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1494), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1494), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1494), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1494), - [aux_sym_certificate_file_token1] = ACTIONS(1494), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1494), - [aux_sym_channel_timeout_token1] = ACTIONS(1494), - [aux_sym_check_host_ip_token1] = ACTIONS(1494), - [aux_sym_ciphers_token1] = ACTIONS(1494), - [aux_sym_cipher_token1] = ACTIONS(1496), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1494), - [aux_sym_compression_token1] = ACTIONS(1494), - [aux_sym_connection_attempts_token1] = ACTIONS(1494), - [aux_sym_connect_timeout_token1] = ACTIONS(1494), - [aux_sym_control_master_token1] = ACTIONS(1494), - [aux_sym_control_path_token1] = ACTIONS(1494), - [aux_sym_control_persist_token1] = ACTIONS(1494), - [aux_sym_dynamic_forward_token1] = ACTIONS(1494), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1494), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1494), - [aux_sym_escape_char_token1] = ACTIONS(1494), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1494), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1494), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1494), - [aux_sym_forward_agent_token1] = ACTIONS(1494), - [aux_sym_forward_x11_token1] = ACTIONS(1496), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1494), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1494), - [aux_sym_gateway_ports_token1] = ACTIONS(1494), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1494), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1494), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1494), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1494), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1494), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1494), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1494), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1494), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1494), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1494), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1494), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1494), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1494), - [aux_sym_host_key_alias_token1] = ACTIONS(1494), - [aux_sym_hostname_token1] = ACTIONS(1494), - [aux_sym_identities_only_token1] = ACTIONS(1494), - [aux_sym_identity_agent_token1] = ACTIONS(1494), - [aux_sym_identity_file_token1] = ACTIONS(1494), - [aux_sym_ignore_unknown_token1] = ACTIONS(1494), - [aux_sym_include_token1] = ACTIONS(1494), - [aux_sym_ip_qos_token1] = ACTIONS(1494), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1494), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1494), - [aux_sym_kex_algorithms_token1] = ACTIONS(1494), - [aux_sym_known_hosts_command_token1] = ACTIONS(1494), - [aux_sym_local_command_token1] = ACTIONS(1494), - [aux_sym_local_forward_token1] = ACTIONS(1494), - [aux_sym_log_level_token1] = ACTIONS(1494), - [aux_sym_log_verbose_token1] = ACTIONS(1494), - [aux_sym_macs_token1] = ACTIONS(1494), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1494), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1494), - [aux_sym_password_authentication_token1] = ACTIONS(1494), - [aux_sym_permit_local_command_token1] = ACTIONS(1494), - [aux_sym_permit_remote_open_token1] = ACTIONS(1494), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1494), - [aux_sym_port_token1] = ACTIONS(1494), - [aux_sym_preferred_authentications_token1] = ACTIONS(1494), - [aux_sym_protocol_token1] = ACTIONS(1494), - [aux_sym_proxy_command_token1] = ACTIONS(1494), - [aux_sym_proxy_jump_token1] = ACTIONS(1494), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1494), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1494), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1494), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1494), - [aux_sym_rekey_limit_token1] = ACTIONS(1494), - [aux_sym_remote_command_token1] = ACTIONS(1494), - [aux_sym_remote_forward_token1] = ACTIONS(1494), - [aux_sym_request_tty_token1] = ACTIONS(1494), - [aux_sym_required_rsa_size_token1] = ACTIONS(1494), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1494), - [aux_sym_security_key_provider_token1] = ACTIONS(1494), - [aux_sym_send_env_token1] = ACTIONS(1494), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1494), - [aux_sym_server_alive_interval_token1] = ACTIONS(1494), - [aux_sym_session_type_token1] = ACTIONS(1494), - [aux_sym_set_env_token1] = ACTIONS(1494), - [aux_sym_stdin_null_token1] = ACTIONS(1494), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1494), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1494), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1494), - [aux_sym_syslog_facility_token1] = ACTIONS(1494), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1494), - [aux_sym_keep_alive_token1] = ACTIONS(1494), - [aux_sym_tag_token1] = ACTIONS(1494), - [aux_sym_tunnel_token1] = ACTIONS(1496), - [aux_sym_tunnel_device_token1] = ACTIONS(1494), - [aux_sym_update_host_keys_token1] = ACTIONS(1494), - [aux_sym_use_keychain_token1] = ACTIONS(1494), - [aux_sym_use_roaming_token1] = ACTIONS(1494), - [aux_sym_user_token1] = ACTIONS(1496), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1494), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1494), - [aux_sym_visual_host_key_token1] = ACTIONS(1494), - [aux_sym_xauth_location_token1] = ACTIONS(1494), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1501), + [anon_sym_DQUOTE] = ACTIONS(1503), + [aux_sym_match_token1] = ACTIONS(1499), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1499), + [aux_sym_address_family_token1] = ACTIONS(1499), + [aux_sym_batch_mode_token1] = ACTIONS(1499), + [aux_sym_bind_address_token1] = ACTIONS(1499), + [aux_sym_bind_interface_token1] = ACTIONS(1499), + [aux_sym_canonical_domains_token1] = ACTIONS(1499), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1499), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1499), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1499), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1499), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1499), + [aux_sym_certificate_file_token1] = ACTIONS(1499), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1499), + [aux_sym_channel_timeout_token1] = ACTIONS(1499), + [aux_sym_check_host_ip_token1] = ACTIONS(1499), + [aux_sym_ciphers_token1] = ACTIONS(1499), + [aux_sym_cipher_token1] = ACTIONS(1501), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1499), + [aux_sym_compression_token1] = ACTIONS(1499), + [aux_sym_connection_attempts_token1] = ACTIONS(1499), + [aux_sym_connect_timeout_token1] = ACTIONS(1499), + [aux_sym_control_master_token1] = ACTIONS(1499), + [aux_sym_control_path_token1] = ACTIONS(1499), + [aux_sym_control_persist_token1] = ACTIONS(1499), + [aux_sym_dynamic_forward_token1] = ACTIONS(1499), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1499), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1499), + [aux_sym_escape_char_token1] = ACTIONS(1499), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1499), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1499), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1499), + [aux_sym_forward_agent_token1] = ACTIONS(1499), + [aux_sym_forward_x11_token1] = ACTIONS(1501), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1499), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1499), + [aux_sym_gateway_ports_token1] = ACTIONS(1499), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1499), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1499), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1499), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1499), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1499), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1499), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1499), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1499), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1499), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1499), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1499), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1499), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1499), + [aux_sym_host_key_alias_token1] = ACTIONS(1499), + [aux_sym_hostname_token1] = ACTIONS(1499), + [aux_sym_identities_only_token1] = ACTIONS(1499), + [aux_sym_identity_agent_token1] = ACTIONS(1499), + [aux_sym_identity_file_token1] = ACTIONS(1499), + [aux_sym_ignore_unknown_token1] = ACTIONS(1499), + [aux_sym_include_token1] = ACTIONS(1499), + [aux_sym_ip_qos_token1] = ACTIONS(1499), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1499), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1499), + [aux_sym_kex_algorithms_token1] = ACTIONS(1499), + [aux_sym_known_hosts_command_token1] = ACTIONS(1499), + [aux_sym_local_command_token1] = ACTIONS(1499), + [aux_sym_local_forward_token1] = ACTIONS(1499), + [aux_sym_log_level_token1] = ACTIONS(1499), + [aux_sym_log_verbose_token1] = ACTIONS(1499), + [aux_sym_macs_token1] = ACTIONS(1499), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1499), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1499), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1499), + [aux_sym_password_authentication_token1] = ACTIONS(1499), + [aux_sym_permit_local_command_token1] = ACTIONS(1499), + [aux_sym_permit_remote_open_token1] = ACTIONS(1499), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1499), + [aux_sym_port_token1] = ACTIONS(1499), + [aux_sym_preferred_authentications_token1] = ACTIONS(1499), + [aux_sym_protocol_token1] = ACTIONS(1499), + [aux_sym_proxy_command_token1] = ACTIONS(1499), + [aux_sym_proxy_jump_token1] = ACTIONS(1499), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1499), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1499), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1499), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1499), + [aux_sym_rekey_limit_token1] = ACTIONS(1499), + [aux_sym_remote_command_token1] = ACTIONS(1499), + [aux_sym_remote_forward_token1] = ACTIONS(1499), + [aux_sym_request_tty_token1] = ACTIONS(1499), + [aux_sym_required_rsa_size_token1] = ACTIONS(1499), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1499), + [aux_sym_security_key_provider_token1] = ACTIONS(1499), + [aux_sym_send_env_token1] = ACTIONS(1499), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1499), + [aux_sym_server_alive_interval_token1] = ACTIONS(1499), + [aux_sym_session_type_token1] = ACTIONS(1499), + [aux_sym_set_env_token1] = ACTIONS(1499), + [aux_sym_stdin_null_token1] = ACTIONS(1499), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1499), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1499), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1499), + [aux_sym_syslog_facility_token1] = ACTIONS(1499), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1499), + [aux_sym_keep_alive_token1] = ACTIONS(1499), + [aux_sym_tag_token1] = ACTIONS(1499), + [aux_sym_tunnel_token1] = ACTIONS(1501), + [aux_sym_tunnel_device_token1] = ACTIONS(1499), + [aux_sym_update_host_keys_token1] = ACTIONS(1499), + [aux_sym_use_keychain_token1] = ACTIONS(1499), + [aux_sym_use_roaming_token1] = ACTIONS(1499), + [aux_sym_user_token1] = ACTIONS(1501), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1499), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1499), + [aux_sym_visual_host_key_token1] = ACTIONS(1499), + [aux_sym_xauth_location_token1] = ACTIONS(1499), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1504), - [aux_sym_match_token1] = ACTIONS(1500), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1500), - [aux_sym_address_family_token1] = ACTIONS(1500), - [aux_sym_batch_mode_token1] = ACTIONS(1500), - [aux_sym_bind_address_token1] = ACTIONS(1500), - [aux_sym_bind_interface_token1] = ACTIONS(1500), - [aux_sym_canonical_domains_token1] = ACTIONS(1500), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1500), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1500), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1500), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1500), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1500), - [aux_sym_certificate_file_token1] = ACTIONS(1500), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1500), - [aux_sym_channel_timeout_token1] = ACTIONS(1500), - [aux_sym_check_host_ip_token1] = ACTIONS(1500), - [aux_sym_ciphers_token1] = ACTIONS(1500), - [aux_sym_cipher_token1] = ACTIONS(1502), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1500), - [aux_sym_compression_token1] = ACTIONS(1500), - [aux_sym_connection_attempts_token1] = ACTIONS(1500), - [aux_sym_connect_timeout_token1] = ACTIONS(1500), - [aux_sym_control_master_token1] = ACTIONS(1500), - [aux_sym_control_path_token1] = ACTIONS(1500), - [aux_sym_control_persist_token1] = ACTIONS(1500), - [aux_sym_dynamic_forward_token1] = ACTIONS(1500), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1500), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1500), - [aux_sym_escape_char_token1] = ACTIONS(1500), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1500), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1500), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1500), - [aux_sym_forward_agent_token1] = ACTIONS(1500), - [aux_sym_forward_x11_token1] = ACTIONS(1502), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1500), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1500), - [aux_sym_gateway_ports_token1] = ACTIONS(1500), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1500), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1500), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1500), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1500), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1500), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1500), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1500), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1500), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1500), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1500), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1500), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1500), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1500), - [aux_sym_host_key_alias_token1] = ACTIONS(1500), - [aux_sym_hostname_token1] = ACTIONS(1500), - [aux_sym_identities_only_token1] = ACTIONS(1500), - [aux_sym_identity_agent_token1] = ACTIONS(1500), - [aux_sym_identity_file_token1] = ACTIONS(1500), - [aux_sym_ignore_unknown_token1] = ACTIONS(1500), - [aux_sym_include_token1] = ACTIONS(1500), - [aux_sym_ip_qos_token1] = ACTIONS(1500), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1500), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1500), - [aux_sym_kex_algorithms_token1] = ACTIONS(1500), - [aux_sym_known_hosts_command_token1] = ACTIONS(1500), - [aux_sym_local_command_token1] = ACTIONS(1500), - [aux_sym_local_forward_token1] = ACTIONS(1500), - [aux_sym_log_level_token1] = ACTIONS(1500), - [aux_sym_log_verbose_token1] = ACTIONS(1500), - [aux_sym_macs_token1] = ACTIONS(1500), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1500), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1500), - [aux_sym_password_authentication_token1] = ACTIONS(1500), - [aux_sym_permit_local_command_token1] = ACTIONS(1500), - [aux_sym_permit_remote_open_token1] = ACTIONS(1500), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1500), - [aux_sym_port_token1] = ACTIONS(1500), - [aux_sym_preferred_authentications_token1] = ACTIONS(1500), - [aux_sym_protocol_token1] = ACTIONS(1500), - [aux_sym_proxy_command_token1] = ACTIONS(1500), - [aux_sym_proxy_jump_token1] = ACTIONS(1500), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1500), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1500), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1500), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1500), - [aux_sym_rekey_limit_token1] = ACTIONS(1500), - [aux_sym_remote_command_token1] = ACTIONS(1500), - [aux_sym_remote_forward_token1] = ACTIONS(1500), - [aux_sym_request_tty_token1] = ACTIONS(1500), - [aux_sym_required_rsa_size_token1] = ACTIONS(1500), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1500), - [aux_sym_security_key_provider_token1] = ACTIONS(1500), - [aux_sym_send_env_token1] = ACTIONS(1500), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1500), - [aux_sym_server_alive_interval_token1] = ACTIONS(1500), - [aux_sym_session_type_token1] = ACTIONS(1500), - [aux_sym_set_env_token1] = ACTIONS(1500), - [aux_sym_stdin_null_token1] = ACTIONS(1500), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1500), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1500), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1500), - [aux_sym_syslog_facility_token1] = ACTIONS(1500), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1500), - [aux_sym_keep_alive_token1] = ACTIONS(1500), - [aux_sym_tag_token1] = ACTIONS(1500), - [aux_sym_tunnel_token1] = ACTIONS(1502), - [aux_sym_tunnel_device_token1] = ACTIONS(1500), - [aux_sym_update_host_keys_token1] = ACTIONS(1500), - [aux_sym_use_keychain_token1] = ACTIONS(1500), - [aux_sym_use_roaming_token1] = ACTIONS(1500), - [aux_sym_user_token1] = ACTIONS(1502), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1500), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1500), - [aux_sym_visual_host_key_token1] = ACTIONS(1500), - [aux_sym_xauth_location_token1] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1507), + [anon_sym_DQUOTE] = ACTIONS(1509), + [aux_sym_match_token1] = ACTIONS(1505), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1505), + [aux_sym_address_family_token1] = ACTIONS(1505), + [aux_sym_batch_mode_token1] = ACTIONS(1505), + [aux_sym_bind_address_token1] = ACTIONS(1505), + [aux_sym_bind_interface_token1] = ACTIONS(1505), + [aux_sym_canonical_domains_token1] = ACTIONS(1505), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1505), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1505), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1505), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1505), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1505), + [aux_sym_certificate_file_token1] = ACTIONS(1505), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1505), + [aux_sym_channel_timeout_token1] = ACTIONS(1505), + [aux_sym_check_host_ip_token1] = ACTIONS(1505), + [aux_sym_ciphers_token1] = ACTIONS(1505), + [aux_sym_cipher_token1] = ACTIONS(1507), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1505), + [aux_sym_compression_token1] = ACTIONS(1505), + [aux_sym_connection_attempts_token1] = ACTIONS(1505), + [aux_sym_connect_timeout_token1] = ACTIONS(1505), + [aux_sym_control_master_token1] = ACTIONS(1505), + [aux_sym_control_path_token1] = ACTIONS(1505), + [aux_sym_control_persist_token1] = ACTIONS(1505), + [aux_sym_dynamic_forward_token1] = ACTIONS(1505), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1505), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1505), + [aux_sym_escape_char_token1] = ACTIONS(1505), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1505), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1505), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1505), + [aux_sym_forward_agent_token1] = ACTIONS(1505), + [aux_sym_forward_x11_token1] = ACTIONS(1507), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1505), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1505), + [aux_sym_gateway_ports_token1] = ACTIONS(1505), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1505), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1505), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1505), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1505), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1505), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1505), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1505), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1505), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1505), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1505), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1505), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1505), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1505), + [aux_sym_host_key_alias_token1] = ACTIONS(1505), + [aux_sym_hostname_token1] = ACTIONS(1505), + [aux_sym_identities_only_token1] = ACTIONS(1505), + [aux_sym_identity_agent_token1] = ACTIONS(1505), + [aux_sym_identity_file_token1] = ACTIONS(1505), + [aux_sym_ignore_unknown_token1] = ACTIONS(1505), + [aux_sym_include_token1] = ACTIONS(1505), + [aux_sym_ip_qos_token1] = ACTIONS(1505), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1505), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1505), + [aux_sym_kex_algorithms_token1] = ACTIONS(1505), + [aux_sym_known_hosts_command_token1] = ACTIONS(1505), + [aux_sym_local_command_token1] = ACTIONS(1505), + [aux_sym_local_forward_token1] = ACTIONS(1505), + [aux_sym_log_level_token1] = ACTIONS(1505), + [aux_sym_log_verbose_token1] = ACTIONS(1505), + [aux_sym_macs_token1] = ACTIONS(1505), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1505), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1505), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1505), + [aux_sym_password_authentication_token1] = ACTIONS(1505), + [aux_sym_permit_local_command_token1] = ACTIONS(1505), + [aux_sym_permit_remote_open_token1] = ACTIONS(1505), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1505), + [aux_sym_port_token1] = ACTIONS(1505), + [aux_sym_preferred_authentications_token1] = ACTIONS(1505), + [aux_sym_protocol_token1] = ACTIONS(1505), + [aux_sym_proxy_command_token1] = ACTIONS(1505), + [aux_sym_proxy_jump_token1] = ACTIONS(1505), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1505), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1505), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1505), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1505), + [aux_sym_rekey_limit_token1] = ACTIONS(1505), + [aux_sym_remote_command_token1] = ACTIONS(1505), + [aux_sym_remote_forward_token1] = ACTIONS(1505), + [aux_sym_request_tty_token1] = ACTIONS(1505), + [aux_sym_required_rsa_size_token1] = ACTIONS(1505), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1505), + [aux_sym_security_key_provider_token1] = ACTIONS(1505), + [aux_sym_send_env_token1] = ACTIONS(1505), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1505), + [aux_sym_server_alive_interval_token1] = ACTIONS(1505), + [aux_sym_session_type_token1] = ACTIONS(1505), + [aux_sym_set_env_token1] = ACTIONS(1505), + [aux_sym_stdin_null_token1] = ACTIONS(1505), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1505), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1505), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1505), + [aux_sym_syslog_facility_token1] = ACTIONS(1505), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1505), + [aux_sym_keep_alive_token1] = ACTIONS(1505), + [aux_sym_tag_token1] = ACTIONS(1505), + [aux_sym_tunnel_token1] = ACTIONS(1507), + [aux_sym_tunnel_device_token1] = ACTIONS(1505), + [aux_sym_update_host_keys_token1] = ACTIONS(1505), + [aux_sym_use_keychain_token1] = ACTIONS(1505), + [aux_sym_use_roaming_token1] = ACTIONS(1505), + [aux_sym_user_token1] = ACTIONS(1507), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1505), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1505), + [aux_sym_visual_host_key_token1] = ACTIONS(1505), + [aux_sym_xauth_location_token1] = ACTIONS(1505), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1510), - [aux_sym_match_token1] = ACTIONS(1506), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1506), - [aux_sym_address_family_token1] = ACTIONS(1506), - [aux_sym_batch_mode_token1] = ACTIONS(1506), - [aux_sym_bind_address_token1] = ACTIONS(1506), - [aux_sym_bind_interface_token1] = ACTIONS(1506), - [aux_sym_canonical_domains_token1] = ACTIONS(1506), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1506), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1506), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1506), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1506), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1506), - [aux_sym_certificate_file_token1] = ACTIONS(1506), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1506), - [aux_sym_channel_timeout_token1] = ACTIONS(1506), - [aux_sym_check_host_ip_token1] = ACTIONS(1506), - [aux_sym_ciphers_token1] = ACTIONS(1506), - [aux_sym_cipher_token1] = ACTIONS(1508), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1506), - [aux_sym_compression_token1] = ACTIONS(1506), - [aux_sym_connection_attempts_token1] = ACTIONS(1506), - [aux_sym_connect_timeout_token1] = ACTIONS(1506), - [aux_sym_control_master_token1] = ACTIONS(1506), - [aux_sym_control_path_token1] = ACTIONS(1506), - [aux_sym_control_persist_token1] = ACTIONS(1506), - [aux_sym_dynamic_forward_token1] = ACTIONS(1506), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1506), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1506), - [aux_sym_escape_char_token1] = ACTIONS(1506), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1506), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1506), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1506), - [aux_sym_forward_agent_token1] = ACTIONS(1506), - [aux_sym_forward_x11_token1] = ACTIONS(1508), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1506), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1506), - [aux_sym_gateway_ports_token1] = ACTIONS(1506), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1506), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1506), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1506), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1506), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1506), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1506), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1506), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1506), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1506), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1506), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1506), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1506), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1506), - [aux_sym_host_key_alias_token1] = ACTIONS(1506), - [aux_sym_hostname_token1] = ACTIONS(1506), - [aux_sym_identities_only_token1] = ACTIONS(1506), - [aux_sym_identity_agent_token1] = ACTIONS(1506), - [aux_sym_identity_file_token1] = ACTIONS(1506), - [aux_sym_ignore_unknown_token1] = ACTIONS(1506), - [aux_sym_include_token1] = ACTIONS(1506), - [aux_sym_ip_qos_token1] = ACTIONS(1506), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1506), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1506), - [aux_sym_kex_algorithms_token1] = ACTIONS(1506), - [aux_sym_known_hosts_command_token1] = ACTIONS(1506), - [aux_sym_local_command_token1] = ACTIONS(1506), - [aux_sym_local_forward_token1] = ACTIONS(1506), - [aux_sym_log_level_token1] = ACTIONS(1506), - [aux_sym_log_verbose_token1] = ACTIONS(1506), - [aux_sym_macs_token1] = ACTIONS(1506), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1506), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1506), - [aux_sym_password_authentication_token1] = ACTIONS(1506), - [aux_sym_permit_local_command_token1] = ACTIONS(1506), - [aux_sym_permit_remote_open_token1] = ACTIONS(1506), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1506), - [aux_sym_port_token1] = ACTIONS(1506), - [aux_sym_preferred_authentications_token1] = ACTIONS(1506), - [aux_sym_protocol_token1] = ACTIONS(1506), - [aux_sym_proxy_command_token1] = ACTIONS(1506), - [aux_sym_proxy_jump_token1] = ACTIONS(1506), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1506), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1506), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1506), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1506), - [aux_sym_rekey_limit_token1] = ACTIONS(1506), - [aux_sym_remote_command_token1] = ACTIONS(1506), - [aux_sym_remote_forward_token1] = ACTIONS(1506), - [aux_sym_request_tty_token1] = ACTIONS(1506), - [aux_sym_required_rsa_size_token1] = ACTIONS(1506), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1506), - [aux_sym_security_key_provider_token1] = ACTIONS(1506), - [aux_sym_send_env_token1] = ACTIONS(1506), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1506), - [aux_sym_server_alive_interval_token1] = ACTIONS(1506), - [aux_sym_session_type_token1] = ACTIONS(1506), - [aux_sym_set_env_token1] = ACTIONS(1506), - [aux_sym_stdin_null_token1] = ACTIONS(1506), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1506), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1506), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1506), - [aux_sym_syslog_facility_token1] = ACTIONS(1506), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1506), - [aux_sym_keep_alive_token1] = ACTIONS(1506), - [aux_sym_tag_token1] = ACTIONS(1506), - [aux_sym_tunnel_token1] = ACTIONS(1508), - [aux_sym_tunnel_device_token1] = ACTIONS(1506), - [aux_sym_update_host_keys_token1] = ACTIONS(1506), - [aux_sym_use_keychain_token1] = ACTIONS(1506), - [aux_sym_use_roaming_token1] = ACTIONS(1506), - [aux_sym_user_token1] = ACTIONS(1508), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1506), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1506), - [aux_sym_visual_host_key_token1] = ACTIONS(1506), - [aux_sym_xauth_location_token1] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(1515), + [aux_sym_match_token1] = ACTIONS(1511), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1511), + [aux_sym_address_family_token1] = ACTIONS(1511), + [aux_sym_batch_mode_token1] = ACTIONS(1511), + [aux_sym_bind_address_token1] = ACTIONS(1511), + [aux_sym_bind_interface_token1] = ACTIONS(1511), + [aux_sym_canonical_domains_token1] = ACTIONS(1511), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1511), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1511), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1511), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1511), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1511), + [aux_sym_certificate_file_token1] = ACTIONS(1511), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1511), + [aux_sym_channel_timeout_token1] = ACTIONS(1511), + [aux_sym_check_host_ip_token1] = ACTIONS(1511), + [aux_sym_ciphers_token1] = ACTIONS(1511), + [aux_sym_cipher_token1] = ACTIONS(1513), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1511), + [aux_sym_compression_token1] = ACTIONS(1511), + [aux_sym_connection_attempts_token1] = ACTIONS(1511), + [aux_sym_connect_timeout_token1] = ACTIONS(1511), + [aux_sym_control_master_token1] = ACTIONS(1511), + [aux_sym_control_path_token1] = ACTIONS(1511), + [aux_sym_control_persist_token1] = ACTIONS(1511), + [aux_sym_dynamic_forward_token1] = ACTIONS(1511), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1511), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1511), + [aux_sym_escape_char_token1] = ACTIONS(1511), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1511), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1511), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1511), + [aux_sym_forward_agent_token1] = ACTIONS(1511), + [aux_sym_forward_x11_token1] = ACTIONS(1513), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1511), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1511), + [aux_sym_gateway_ports_token1] = ACTIONS(1511), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1511), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1511), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1511), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1511), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1511), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1511), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1511), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1511), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1511), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1511), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1511), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1511), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1511), + [aux_sym_host_key_alias_token1] = ACTIONS(1511), + [aux_sym_hostname_token1] = ACTIONS(1511), + [aux_sym_identities_only_token1] = ACTIONS(1511), + [aux_sym_identity_agent_token1] = ACTIONS(1511), + [aux_sym_identity_file_token1] = ACTIONS(1511), + [aux_sym_ignore_unknown_token1] = ACTIONS(1511), + [aux_sym_include_token1] = ACTIONS(1511), + [aux_sym_ip_qos_token1] = ACTIONS(1511), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1511), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1511), + [aux_sym_kex_algorithms_token1] = ACTIONS(1511), + [aux_sym_known_hosts_command_token1] = ACTIONS(1511), + [aux_sym_local_command_token1] = ACTIONS(1511), + [aux_sym_local_forward_token1] = ACTIONS(1511), + [aux_sym_log_level_token1] = ACTIONS(1511), + [aux_sym_log_verbose_token1] = ACTIONS(1511), + [aux_sym_macs_token1] = ACTIONS(1511), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1511), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1511), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1511), + [aux_sym_password_authentication_token1] = ACTIONS(1511), + [aux_sym_permit_local_command_token1] = ACTIONS(1511), + [aux_sym_permit_remote_open_token1] = ACTIONS(1511), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1511), + [aux_sym_port_token1] = ACTIONS(1511), + [aux_sym_preferred_authentications_token1] = ACTIONS(1511), + [aux_sym_protocol_token1] = ACTIONS(1511), + [aux_sym_proxy_command_token1] = ACTIONS(1511), + [aux_sym_proxy_jump_token1] = ACTIONS(1511), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1511), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1511), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1511), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1511), + [aux_sym_rekey_limit_token1] = ACTIONS(1511), + [aux_sym_remote_command_token1] = ACTIONS(1511), + [aux_sym_remote_forward_token1] = ACTIONS(1511), + [aux_sym_request_tty_token1] = ACTIONS(1511), + [aux_sym_required_rsa_size_token1] = ACTIONS(1511), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1511), + [aux_sym_security_key_provider_token1] = ACTIONS(1511), + [aux_sym_send_env_token1] = ACTIONS(1511), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1511), + [aux_sym_server_alive_interval_token1] = ACTIONS(1511), + [aux_sym_session_type_token1] = ACTIONS(1511), + [aux_sym_set_env_token1] = ACTIONS(1511), + [aux_sym_stdin_null_token1] = ACTIONS(1511), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1511), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1511), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1511), + [aux_sym_syslog_facility_token1] = ACTIONS(1511), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1511), + [aux_sym_keep_alive_token1] = ACTIONS(1511), + [aux_sym_tag_token1] = ACTIONS(1511), + [aux_sym_tunnel_token1] = ACTIONS(1513), + [aux_sym_tunnel_device_token1] = ACTIONS(1511), + [aux_sym_update_host_keys_token1] = ACTIONS(1511), + [aux_sym_use_keychain_token1] = ACTIONS(1511), + [aux_sym_use_roaming_token1] = ACTIONS(1511), + [aux_sym_user_token1] = ACTIONS(1513), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1511), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1511), + [aux_sym_visual_host_key_token1] = ACTIONS(1511), + [aux_sym_xauth_location_token1] = ACTIONS(1511), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1516), - [aux_sym_match_token1] = ACTIONS(1512), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1512), - [aux_sym_address_family_token1] = ACTIONS(1512), - [aux_sym_batch_mode_token1] = ACTIONS(1512), - [aux_sym_bind_address_token1] = ACTIONS(1512), - [aux_sym_bind_interface_token1] = ACTIONS(1512), - [aux_sym_canonical_domains_token1] = ACTIONS(1512), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1512), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1512), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1512), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1512), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1512), - [aux_sym_certificate_file_token1] = ACTIONS(1512), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1512), - [aux_sym_channel_timeout_token1] = ACTIONS(1512), - [aux_sym_check_host_ip_token1] = ACTIONS(1512), - [aux_sym_ciphers_token1] = ACTIONS(1512), - [aux_sym_cipher_token1] = ACTIONS(1514), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1512), - [aux_sym_compression_token1] = ACTIONS(1512), - [aux_sym_connection_attempts_token1] = ACTIONS(1512), - [aux_sym_connect_timeout_token1] = ACTIONS(1512), - [aux_sym_control_master_token1] = ACTIONS(1512), - [aux_sym_control_path_token1] = ACTIONS(1512), - [aux_sym_control_persist_token1] = ACTIONS(1512), - [aux_sym_dynamic_forward_token1] = ACTIONS(1512), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1512), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1512), - [aux_sym_escape_char_token1] = ACTIONS(1512), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1512), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1512), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1512), - [aux_sym_forward_agent_token1] = ACTIONS(1512), - [aux_sym_forward_x11_token1] = ACTIONS(1514), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1512), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1512), - [aux_sym_gateway_ports_token1] = ACTIONS(1512), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1512), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1512), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1512), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1512), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1512), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1512), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1512), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1512), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1512), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1512), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1512), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1512), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1512), - [aux_sym_host_key_alias_token1] = ACTIONS(1512), - [aux_sym_hostname_token1] = ACTIONS(1512), - [aux_sym_identities_only_token1] = ACTIONS(1512), - [aux_sym_identity_agent_token1] = ACTIONS(1512), - [aux_sym_identity_file_token1] = ACTIONS(1512), - [aux_sym_ignore_unknown_token1] = ACTIONS(1512), - [aux_sym_include_token1] = ACTIONS(1512), - [aux_sym_ip_qos_token1] = ACTIONS(1512), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1512), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1512), - [aux_sym_kex_algorithms_token1] = ACTIONS(1512), - [aux_sym_known_hosts_command_token1] = ACTIONS(1512), - [aux_sym_local_command_token1] = ACTIONS(1512), - [aux_sym_local_forward_token1] = ACTIONS(1512), - [aux_sym_log_level_token1] = ACTIONS(1512), - [aux_sym_log_verbose_token1] = ACTIONS(1512), - [aux_sym_macs_token1] = ACTIONS(1512), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1512), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1512), - [aux_sym_password_authentication_token1] = ACTIONS(1512), - [aux_sym_permit_local_command_token1] = ACTIONS(1512), - [aux_sym_permit_remote_open_token1] = ACTIONS(1512), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1512), - [aux_sym_port_token1] = ACTIONS(1512), - [aux_sym_preferred_authentications_token1] = ACTIONS(1512), - [aux_sym_protocol_token1] = ACTIONS(1512), - [aux_sym_proxy_command_token1] = ACTIONS(1512), - [aux_sym_proxy_jump_token1] = ACTIONS(1512), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1512), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1512), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1512), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1512), - [aux_sym_rekey_limit_token1] = ACTIONS(1512), - [aux_sym_remote_command_token1] = ACTIONS(1512), - [aux_sym_remote_forward_token1] = ACTIONS(1512), - [aux_sym_request_tty_token1] = ACTIONS(1512), - [aux_sym_required_rsa_size_token1] = ACTIONS(1512), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1512), - [aux_sym_security_key_provider_token1] = ACTIONS(1512), - [aux_sym_send_env_token1] = ACTIONS(1512), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1512), - [aux_sym_server_alive_interval_token1] = ACTIONS(1512), - [aux_sym_session_type_token1] = ACTIONS(1512), - [aux_sym_set_env_token1] = ACTIONS(1512), - [aux_sym_stdin_null_token1] = ACTIONS(1512), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1512), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1512), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1512), - [aux_sym_syslog_facility_token1] = ACTIONS(1512), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1512), - [aux_sym_keep_alive_token1] = ACTIONS(1512), - [aux_sym_tag_token1] = ACTIONS(1512), - [aux_sym_tunnel_token1] = ACTIONS(1514), - [aux_sym_tunnel_device_token1] = ACTIONS(1512), - [aux_sym_update_host_keys_token1] = ACTIONS(1512), - [aux_sym_use_keychain_token1] = ACTIONS(1512), - [aux_sym_use_roaming_token1] = ACTIONS(1512), - [aux_sym_user_token1] = ACTIONS(1514), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1512), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1512), - [aux_sym_visual_host_key_token1] = ACTIONS(1512), - [aux_sym_xauth_location_token1] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(1521), + [aux_sym_match_token1] = ACTIONS(1517), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1517), + [aux_sym_address_family_token1] = ACTIONS(1517), + [aux_sym_batch_mode_token1] = ACTIONS(1517), + [aux_sym_bind_address_token1] = ACTIONS(1517), + [aux_sym_bind_interface_token1] = ACTIONS(1517), + [aux_sym_canonical_domains_token1] = ACTIONS(1517), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1517), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1517), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1517), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1517), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1517), + [aux_sym_certificate_file_token1] = ACTIONS(1517), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1517), + [aux_sym_channel_timeout_token1] = ACTIONS(1517), + [aux_sym_check_host_ip_token1] = ACTIONS(1517), + [aux_sym_ciphers_token1] = ACTIONS(1517), + [aux_sym_cipher_token1] = ACTIONS(1519), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1517), + [aux_sym_compression_token1] = ACTIONS(1517), + [aux_sym_connection_attempts_token1] = ACTIONS(1517), + [aux_sym_connect_timeout_token1] = ACTIONS(1517), + [aux_sym_control_master_token1] = ACTIONS(1517), + [aux_sym_control_path_token1] = ACTIONS(1517), + [aux_sym_control_persist_token1] = ACTIONS(1517), + [aux_sym_dynamic_forward_token1] = ACTIONS(1517), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1517), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1517), + [aux_sym_escape_char_token1] = ACTIONS(1517), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1517), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1517), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1517), + [aux_sym_forward_agent_token1] = ACTIONS(1517), + [aux_sym_forward_x11_token1] = ACTIONS(1519), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1517), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1517), + [aux_sym_gateway_ports_token1] = ACTIONS(1517), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1517), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1517), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1517), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1517), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1517), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1517), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1517), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1517), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1517), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1517), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1517), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1517), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1517), + [aux_sym_host_key_alias_token1] = ACTIONS(1517), + [aux_sym_hostname_token1] = ACTIONS(1517), + [aux_sym_identities_only_token1] = ACTIONS(1517), + [aux_sym_identity_agent_token1] = ACTIONS(1517), + [aux_sym_identity_file_token1] = ACTIONS(1517), + [aux_sym_ignore_unknown_token1] = ACTIONS(1517), + [aux_sym_include_token1] = ACTIONS(1517), + [aux_sym_ip_qos_token1] = ACTIONS(1517), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1517), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1517), + [aux_sym_kex_algorithms_token1] = ACTIONS(1517), + [aux_sym_known_hosts_command_token1] = ACTIONS(1517), + [aux_sym_local_command_token1] = ACTIONS(1517), + [aux_sym_local_forward_token1] = ACTIONS(1517), + [aux_sym_log_level_token1] = ACTIONS(1517), + [aux_sym_log_verbose_token1] = ACTIONS(1517), + [aux_sym_macs_token1] = ACTIONS(1517), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1517), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1517), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1517), + [aux_sym_password_authentication_token1] = ACTIONS(1517), + [aux_sym_permit_local_command_token1] = ACTIONS(1517), + [aux_sym_permit_remote_open_token1] = ACTIONS(1517), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1517), + [aux_sym_port_token1] = ACTIONS(1517), + [aux_sym_preferred_authentications_token1] = ACTIONS(1517), + [aux_sym_protocol_token1] = ACTIONS(1517), + [aux_sym_proxy_command_token1] = ACTIONS(1517), + [aux_sym_proxy_jump_token1] = ACTIONS(1517), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1517), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1517), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1517), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1517), + [aux_sym_rekey_limit_token1] = ACTIONS(1517), + [aux_sym_remote_command_token1] = ACTIONS(1517), + [aux_sym_remote_forward_token1] = ACTIONS(1517), + [aux_sym_request_tty_token1] = ACTIONS(1517), + [aux_sym_required_rsa_size_token1] = ACTIONS(1517), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1517), + [aux_sym_security_key_provider_token1] = ACTIONS(1517), + [aux_sym_send_env_token1] = ACTIONS(1517), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1517), + [aux_sym_server_alive_interval_token1] = ACTIONS(1517), + [aux_sym_session_type_token1] = ACTIONS(1517), + [aux_sym_set_env_token1] = ACTIONS(1517), + [aux_sym_stdin_null_token1] = ACTIONS(1517), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1517), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1517), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1517), + [aux_sym_syslog_facility_token1] = ACTIONS(1517), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1517), + [aux_sym_keep_alive_token1] = ACTIONS(1517), + [aux_sym_tag_token1] = ACTIONS(1517), + [aux_sym_tunnel_token1] = ACTIONS(1519), + [aux_sym_tunnel_device_token1] = ACTIONS(1517), + [aux_sym_update_host_keys_token1] = ACTIONS(1517), + [aux_sym_use_keychain_token1] = ACTIONS(1517), + [aux_sym_use_roaming_token1] = ACTIONS(1517), + [aux_sym_user_token1] = ACTIONS(1519), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1517), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1517), + [aux_sym_visual_host_key_token1] = ACTIONS(1517), + [aux_sym_xauth_location_token1] = ACTIONS(1517), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1520), - [anon_sym_DQUOTE] = ACTIONS(1522), - [aux_sym_match_token1] = ACTIONS(1518), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1518), - [aux_sym_address_family_token1] = ACTIONS(1518), - [aux_sym_batch_mode_token1] = ACTIONS(1518), - [aux_sym_bind_address_token1] = ACTIONS(1518), - [aux_sym_bind_interface_token1] = ACTIONS(1518), - [aux_sym_canonical_domains_token1] = ACTIONS(1518), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1518), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1518), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1518), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1518), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1518), - [aux_sym_certificate_file_token1] = ACTIONS(1518), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1518), - [aux_sym_channel_timeout_token1] = ACTIONS(1518), - [aux_sym_check_host_ip_token1] = ACTIONS(1518), - [aux_sym_ciphers_token1] = ACTIONS(1518), - [aux_sym_cipher_token1] = ACTIONS(1520), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1518), - [aux_sym_compression_token1] = ACTIONS(1518), - [aux_sym_connection_attempts_token1] = ACTIONS(1518), - [aux_sym_connect_timeout_token1] = ACTIONS(1518), - [aux_sym_control_master_token1] = ACTIONS(1518), - [aux_sym_control_path_token1] = ACTIONS(1518), - [aux_sym_control_persist_token1] = ACTIONS(1518), - [aux_sym_dynamic_forward_token1] = ACTIONS(1518), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1518), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1518), - [aux_sym_escape_char_token1] = ACTIONS(1518), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1518), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1518), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1518), - [aux_sym_forward_agent_token1] = ACTIONS(1518), - [aux_sym_forward_x11_token1] = ACTIONS(1520), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1518), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1518), - [aux_sym_gateway_ports_token1] = ACTIONS(1518), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1518), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1518), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1518), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1518), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1518), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1518), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1518), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1518), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1518), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1518), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1518), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1518), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1518), - [aux_sym_host_key_alias_token1] = ACTIONS(1518), - [aux_sym_hostname_token1] = ACTIONS(1518), - [aux_sym_identities_only_token1] = ACTIONS(1518), - [aux_sym_identity_agent_token1] = ACTIONS(1518), - [aux_sym_identity_file_token1] = ACTIONS(1518), - [aux_sym_ignore_unknown_token1] = ACTIONS(1518), - [aux_sym_include_token1] = ACTIONS(1518), - [aux_sym_ip_qos_token1] = ACTIONS(1518), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1518), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1518), - [aux_sym_kex_algorithms_token1] = ACTIONS(1518), - [aux_sym_known_hosts_command_token1] = ACTIONS(1518), - [aux_sym_local_command_token1] = ACTIONS(1518), - [aux_sym_local_forward_token1] = ACTIONS(1518), - [aux_sym_log_level_token1] = ACTIONS(1518), - [aux_sym_log_verbose_token1] = ACTIONS(1518), - [aux_sym_macs_token1] = ACTIONS(1518), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1518), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1518), - [aux_sym_password_authentication_token1] = ACTIONS(1518), - [aux_sym_permit_local_command_token1] = ACTIONS(1518), - [aux_sym_permit_remote_open_token1] = ACTIONS(1518), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1518), - [aux_sym_port_token1] = ACTIONS(1518), - [aux_sym_preferred_authentications_token1] = ACTIONS(1518), - [aux_sym_protocol_token1] = ACTIONS(1518), - [aux_sym_proxy_command_token1] = ACTIONS(1518), - [aux_sym_proxy_jump_token1] = ACTIONS(1518), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1518), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1518), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1518), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1518), - [aux_sym_rekey_limit_token1] = ACTIONS(1518), - [aux_sym_remote_command_token1] = ACTIONS(1518), - [aux_sym_remote_forward_token1] = ACTIONS(1518), - [aux_sym_request_tty_token1] = ACTIONS(1518), - [aux_sym_required_rsa_size_token1] = ACTIONS(1518), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1518), - [aux_sym_security_key_provider_token1] = ACTIONS(1518), - [aux_sym_send_env_token1] = ACTIONS(1518), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1518), - [aux_sym_server_alive_interval_token1] = ACTIONS(1518), - [aux_sym_session_type_token1] = ACTIONS(1518), - [aux_sym_set_env_token1] = ACTIONS(1518), - [aux_sym_stdin_null_token1] = ACTIONS(1518), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1518), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1518), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1518), - [aux_sym_syslog_facility_token1] = ACTIONS(1518), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1518), - [aux_sym_keep_alive_token1] = ACTIONS(1518), - [aux_sym_tag_token1] = ACTIONS(1518), - [aux_sym_tunnel_token1] = ACTIONS(1520), - [aux_sym_tunnel_device_token1] = ACTIONS(1518), - [aux_sym_update_host_keys_token1] = ACTIONS(1518), - [aux_sym_use_keychain_token1] = ACTIONS(1518), - [aux_sym_use_roaming_token1] = ACTIONS(1518), - [aux_sym_user_token1] = ACTIONS(1520), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1518), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1518), - [aux_sym_visual_host_key_token1] = ACTIONS(1518), - [aux_sym_xauth_location_token1] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1527), + [aux_sym_match_token1] = ACTIONS(1523), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1523), + [aux_sym_address_family_token1] = ACTIONS(1523), + [aux_sym_batch_mode_token1] = ACTIONS(1523), + [aux_sym_bind_address_token1] = ACTIONS(1523), + [aux_sym_bind_interface_token1] = ACTIONS(1523), + [aux_sym_canonical_domains_token1] = ACTIONS(1523), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1523), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1523), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1523), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1523), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1523), + [aux_sym_certificate_file_token1] = ACTIONS(1523), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1523), + [aux_sym_channel_timeout_token1] = ACTIONS(1523), + [aux_sym_check_host_ip_token1] = ACTIONS(1523), + [aux_sym_ciphers_token1] = ACTIONS(1523), + [aux_sym_cipher_token1] = ACTIONS(1525), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1523), + [aux_sym_compression_token1] = ACTIONS(1523), + [aux_sym_connection_attempts_token1] = ACTIONS(1523), + [aux_sym_connect_timeout_token1] = ACTIONS(1523), + [aux_sym_control_master_token1] = ACTIONS(1523), + [aux_sym_control_path_token1] = ACTIONS(1523), + [aux_sym_control_persist_token1] = ACTIONS(1523), + [aux_sym_dynamic_forward_token1] = ACTIONS(1523), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1523), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1523), + [aux_sym_escape_char_token1] = ACTIONS(1523), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1523), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1523), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1523), + [aux_sym_forward_agent_token1] = ACTIONS(1523), + [aux_sym_forward_x11_token1] = ACTIONS(1525), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1523), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1523), + [aux_sym_gateway_ports_token1] = ACTIONS(1523), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1523), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1523), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1523), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1523), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1523), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1523), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1523), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1523), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1523), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1523), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1523), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1523), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1523), + [aux_sym_host_key_alias_token1] = ACTIONS(1523), + [aux_sym_hostname_token1] = ACTIONS(1523), + [aux_sym_identities_only_token1] = ACTIONS(1523), + [aux_sym_identity_agent_token1] = ACTIONS(1523), + [aux_sym_identity_file_token1] = ACTIONS(1523), + [aux_sym_ignore_unknown_token1] = ACTIONS(1523), + [aux_sym_include_token1] = ACTIONS(1523), + [aux_sym_ip_qos_token1] = ACTIONS(1523), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1523), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1523), + [aux_sym_kex_algorithms_token1] = ACTIONS(1523), + [aux_sym_known_hosts_command_token1] = ACTIONS(1523), + [aux_sym_local_command_token1] = ACTIONS(1523), + [aux_sym_local_forward_token1] = ACTIONS(1523), + [aux_sym_log_level_token1] = ACTIONS(1523), + [aux_sym_log_verbose_token1] = ACTIONS(1523), + [aux_sym_macs_token1] = ACTIONS(1523), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1523), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1523), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1523), + [aux_sym_password_authentication_token1] = ACTIONS(1523), + [aux_sym_permit_local_command_token1] = ACTIONS(1523), + [aux_sym_permit_remote_open_token1] = ACTIONS(1523), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1523), + [aux_sym_port_token1] = ACTIONS(1523), + [aux_sym_preferred_authentications_token1] = ACTIONS(1523), + [aux_sym_protocol_token1] = ACTIONS(1523), + [aux_sym_proxy_command_token1] = ACTIONS(1523), + [aux_sym_proxy_jump_token1] = ACTIONS(1523), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1523), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1523), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1523), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1523), + [aux_sym_rekey_limit_token1] = ACTIONS(1523), + [aux_sym_remote_command_token1] = ACTIONS(1523), + [aux_sym_remote_forward_token1] = ACTIONS(1523), + [aux_sym_request_tty_token1] = ACTIONS(1523), + [aux_sym_required_rsa_size_token1] = ACTIONS(1523), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1523), + [aux_sym_security_key_provider_token1] = ACTIONS(1523), + [aux_sym_send_env_token1] = ACTIONS(1523), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1523), + [aux_sym_server_alive_interval_token1] = ACTIONS(1523), + [aux_sym_session_type_token1] = ACTIONS(1523), + [aux_sym_set_env_token1] = ACTIONS(1523), + [aux_sym_stdin_null_token1] = ACTIONS(1523), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1523), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1523), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1523), + [aux_sym_syslog_facility_token1] = ACTIONS(1523), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1523), + [aux_sym_keep_alive_token1] = ACTIONS(1523), + [aux_sym_tag_token1] = ACTIONS(1523), + [aux_sym_tunnel_token1] = ACTIONS(1525), + [aux_sym_tunnel_device_token1] = ACTIONS(1523), + [aux_sym_update_host_keys_token1] = ACTIONS(1523), + [aux_sym_use_keychain_token1] = ACTIONS(1523), + [aux_sym_use_roaming_token1] = ACTIONS(1523), + [aux_sym_user_token1] = ACTIONS(1525), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1523), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1523), + [aux_sym_visual_host_key_token1] = ACTIONS(1523), + [aux_sym_xauth_location_token1] = ACTIONS(1523), }, [161] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1526), - [anon_sym_DQUOTE] = ACTIONS(1528), - [aux_sym_match_token1] = ACTIONS(1524), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1524), - [aux_sym_address_family_token1] = ACTIONS(1524), - [aux_sym_batch_mode_token1] = ACTIONS(1524), - [aux_sym_bind_address_token1] = ACTIONS(1524), - [aux_sym_bind_interface_token1] = ACTIONS(1524), - [aux_sym_canonical_domains_token1] = ACTIONS(1524), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1524), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1524), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1524), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1524), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1524), - [aux_sym_certificate_file_token1] = ACTIONS(1524), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1524), - [aux_sym_channel_timeout_token1] = ACTIONS(1524), - [aux_sym_check_host_ip_token1] = ACTIONS(1524), - [aux_sym_ciphers_token1] = ACTIONS(1524), - [aux_sym_cipher_token1] = ACTIONS(1526), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1524), - [aux_sym_compression_token1] = ACTIONS(1524), - [aux_sym_connection_attempts_token1] = ACTIONS(1524), - [aux_sym_connect_timeout_token1] = ACTIONS(1524), - [aux_sym_control_master_token1] = ACTIONS(1524), - [aux_sym_control_path_token1] = ACTIONS(1524), - [aux_sym_control_persist_token1] = ACTIONS(1524), - [aux_sym_dynamic_forward_token1] = ACTIONS(1524), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1524), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1524), - [aux_sym_escape_char_token1] = ACTIONS(1524), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1524), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1524), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1524), - [aux_sym_forward_agent_token1] = ACTIONS(1524), - [aux_sym_forward_x11_token1] = ACTIONS(1526), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1524), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1524), - [aux_sym_gateway_ports_token1] = ACTIONS(1524), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1524), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1524), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1524), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1524), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1524), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1524), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1524), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1524), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1524), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1524), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1524), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1524), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1524), - [aux_sym_host_key_alias_token1] = ACTIONS(1524), - [aux_sym_hostname_token1] = ACTIONS(1524), - [aux_sym_identities_only_token1] = ACTIONS(1524), - [aux_sym_identity_agent_token1] = ACTIONS(1524), - [aux_sym_identity_file_token1] = ACTIONS(1524), - [aux_sym_ignore_unknown_token1] = ACTIONS(1524), - [aux_sym_include_token1] = ACTIONS(1524), - [aux_sym_ip_qos_token1] = ACTIONS(1524), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1524), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1524), - [aux_sym_kex_algorithms_token1] = ACTIONS(1524), - [aux_sym_known_hosts_command_token1] = ACTIONS(1524), - [aux_sym_local_command_token1] = ACTIONS(1524), - [aux_sym_local_forward_token1] = ACTIONS(1524), - [aux_sym_log_level_token1] = ACTIONS(1524), - [aux_sym_log_verbose_token1] = ACTIONS(1524), - [aux_sym_macs_token1] = ACTIONS(1524), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1524), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1524), - [aux_sym_password_authentication_token1] = ACTIONS(1524), - [aux_sym_permit_local_command_token1] = ACTIONS(1524), - [aux_sym_permit_remote_open_token1] = ACTIONS(1524), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1524), - [aux_sym_port_token1] = ACTIONS(1524), - [aux_sym_preferred_authentications_token1] = ACTIONS(1524), - [aux_sym_protocol_token1] = ACTIONS(1524), - [aux_sym_proxy_command_token1] = ACTIONS(1524), - [aux_sym_proxy_jump_token1] = ACTIONS(1524), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1524), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1524), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1524), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1524), - [aux_sym_rekey_limit_token1] = ACTIONS(1524), - [aux_sym_remote_command_token1] = ACTIONS(1524), - [aux_sym_remote_forward_token1] = ACTIONS(1524), - [aux_sym_request_tty_token1] = ACTIONS(1524), - [aux_sym_required_rsa_size_token1] = ACTIONS(1524), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1524), - [aux_sym_security_key_provider_token1] = ACTIONS(1524), - [aux_sym_send_env_token1] = ACTIONS(1524), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1524), - [aux_sym_server_alive_interval_token1] = ACTIONS(1524), - [aux_sym_session_type_token1] = ACTIONS(1524), - [aux_sym_set_env_token1] = ACTIONS(1524), - [aux_sym_stdin_null_token1] = ACTIONS(1524), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1524), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1524), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1524), - [aux_sym_syslog_facility_token1] = ACTIONS(1524), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1524), - [aux_sym_keep_alive_token1] = ACTIONS(1524), - [aux_sym_tag_token1] = ACTIONS(1524), - [aux_sym_tunnel_token1] = ACTIONS(1526), - [aux_sym_tunnel_device_token1] = ACTIONS(1524), - [aux_sym_update_host_keys_token1] = ACTIONS(1524), - [aux_sym_use_keychain_token1] = ACTIONS(1524), - [aux_sym_use_roaming_token1] = ACTIONS(1524), - [aux_sym_user_token1] = ACTIONS(1526), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1524), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1524), - [aux_sym_visual_host_key_token1] = ACTIONS(1524), - [aux_sym_xauth_location_token1] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1531), + [anon_sym_DQUOTE] = ACTIONS(1533), + [aux_sym_match_token1] = ACTIONS(1529), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1529), + [aux_sym_address_family_token1] = ACTIONS(1529), + [aux_sym_batch_mode_token1] = ACTIONS(1529), + [aux_sym_bind_address_token1] = ACTIONS(1529), + [aux_sym_bind_interface_token1] = ACTIONS(1529), + [aux_sym_canonical_domains_token1] = ACTIONS(1529), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1529), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1529), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1529), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1529), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1529), + [aux_sym_certificate_file_token1] = ACTIONS(1529), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1529), + [aux_sym_channel_timeout_token1] = ACTIONS(1529), + [aux_sym_check_host_ip_token1] = ACTIONS(1529), + [aux_sym_ciphers_token1] = ACTIONS(1529), + [aux_sym_cipher_token1] = ACTIONS(1531), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1529), + [aux_sym_compression_token1] = ACTIONS(1529), + [aux_sym_connection_attempts_token1] = ACTIONS(1529), + [aux_sym_connect_timeout_token1] = ACTIONS(1529), + [aux_sym_control_master_token1] = ACTIONS(1529), + [aux_sym_control_path_token1] = ACTIONS(1529), + [aux_sym_control_persist_token1] = ACTIONS(1529), + [aux_sym_dynamic_forward_token1] = ACTIONS(1529), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1529), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1529), + [aux_sym_escape_char_token1] = ACTIONS(1529), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1529), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1529), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1529), + [aux_sym_forward_agent_token1] = ACTIONS(1529), + [aux_sym_forward_x11_token1] = ACTIONS(1531), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1529), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1529), + [aux_sym_gateway_ports_token1] = ACTIONS(1529), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1529), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1529), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1529), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1529), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1529), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1529), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1529), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1529), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1529), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1529), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1529), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1529), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1529), + [aux_sym_host_key_alias_token1] = ACTIONS(1529), + [aux_sym_hostname_token1] = ACTIONS(1529), + [aux_sym_identities_only_token1] = ACTIONS(1529), + [aux_sym_identity_agent_token1] = ACTIONS(1529), + [aux_sym_identity_file_token1] = ACTIONS(1529), + [aux_sym_ignore_unknown_token1] = ACTIONS(1529), + [aux_sym_include_token1] = ACTIONS(1529), + [aux_sym_ip_qos_token1] = ACTIONS(1529), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1529), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1529), + [aux_sym_kex_algorithms_token1] = ACTIONS(1529), + [aux_sym_known_hosts_command_token1] = ACTIONS(1529), + [aux_sym_local_command_token1] = ACTIONS(1529), + [aux_sym_local_forward_token1] = ACTIONS(1529), + [aux_sym_log_level_token1] = ACTIONS(1529), + [aux_sym_log_verbose_token1] = ACTIONS(1529), + [aux_sym_macs_token1] = ACTIONS(1529), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1529), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1529), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1529), + [aux_sym_password_authentication_token1] = ACTIONS(1529), + [aux_sym_permit_local_command_token1] = ACTIONS(1529), + [aux_sym_permit_remote_open_token1] = ACTIONS(1529), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1529), + [aux_sym_port_token1] = ACTIONS(1529), + [aux_sym_preferred_authentications_token1] = ACTIONS(1529), + [aux_sym_protocol_token1] = ACTIONS(1529), + [aux_sym_proxy_command_token1] = ACTIONS(1529), + [aux_sym_proxy_jump_token1] = ACTIONS(1529), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1529), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1529), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1529), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1529), + [aux_sym_rekey_limit_token1] = ACTIONS(1529), + [aux_sym_remote_command_token1] = ACTIONS(1529), + [aux_sym_remote_forward_token1] = ACTIONS(1529), + [aux_sym_request_tty_token1] = ACTIONS(1529), + [aux_sym_required_rsa_size_token1] = ACTIONS(1529), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1529), + [aux_sym_security_key_provider_token1] = ACTIONS(1529), + [aux_sym_send_env_token1] = ACTIONS(1529), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1529), + [aux_sym_server_alive_interval_token1] = ACTIONS(1529), + [aux_sym_session_type_token1] = ACTIONS(1529), + [aux_sym_set_env_token1] = ACTIONS(1529), + [aux_sym_stdin_null_token1] = ACTIONS(1529), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1529), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1529), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1529), + [aux_sym_syslog_facility_token1] = ACTIONS(1529), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1529), + [aux_sym_keep_alive_token1] = ACTIONS(1529), + [aux_sym_tag_token1] = ACTIONS(1529), + [aux_sym_tunnel_token1] = ACTIONS(1531), + [aux_sym_tunnel_device_token1] = ACTIONS(1529), + [aux_sym_update_host_keys_token1] = ACTIONS(1529), + [aux_sym_use_keychain_token1] = ACTIONS(1529), + [aux_sym_use_roaming_token1] = ACTIONS(1529), + [aux_sym_user_token1] = ACTIONS(1531), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1529), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1529), + [aux_sym_visual_host_key_token1] = ACTIONS(1529), + [aux_sym_xauth_location_token1] = ACTIONS(1529), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1532), - [anon_sym_DQUOTE] = ACTIONS(1534), - [aux_sym_match_token1] = ACTIONS(1530), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1530), - [aux_sym_address_family_token1] = ACTIONS(1530), - [aux_sym_batch_mode_token1] = ACTIONS(1530), - [aux_sym_bind_address_token1] = ACTIONS(1530), - [aux_sym_bind_interface_token1] = ACTIONS(1530), - [aux_sym_canonical_domains_token1] = ACTIONS(1530), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1530), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1530), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1530), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1530), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1530), - [aux_sym_certificate_file_token1] = ACTIONS(1530), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1530), - [aux_sym_channel_timeout_token1] = ACTIONS(1530), - [aux_sym_check_host_ip_token1] = ACTIONS(1530), - [aux_sym_ciphers_token1] = ACTIONS(1530), - [aux_sym_cipher_token1] = ACTIONS(1532), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1530), - [aux_sym_compression_token1] = ACTIONS(1530), - [aux_sym_connection_attempts_token1] = ACTIONS(1530), - [aux_sym_connect_timeout_token1] = ACTIONS(1530), - [aux_sym_control_master_token1] = ACTIONS(1530), - [aux_sym_control_path_token1] = ACTIONS(1530), - [aux_sym_control_persist_token1] = ACTIONS(1530), - [aux_sym_dynamic_forward_token1] = ACTIONS(1530), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1530), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1530), - [aux_sym_escape_char_token1] = ACTIONS(1530), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1530), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1530), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1530), - [aux_sym_forward_agent_token1] = ACTIONS(1530), - [aux_sym_forward_x11_token1] = ACTIONS(1532), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1530), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1530), - [aux_sym_gateway_ports_token1] = ACTIONS(1530), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1530), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1530), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1530), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1530), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1530), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1530), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1530), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1530), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1530), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1530), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1530), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1530), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1530), - [aux_sym_host_key_alias_token1] = ACTIONS(1530), - [aux_sym_hostname_token1] = ACTIONS(1530), - [aux_sym_identities_only_token1] = ACTIONS(1530), - [aux_sym_identity_agent_token1] = ACTIONS(1530), - [aux_sym_identity_file_token1] = ACTIONS(1530), - [aux_sym_ignore_unknown_token1] = ACTIONS(1530), - [aux_sym_include_token1] = ACTIONS(1530), - [aux_sym_ip_qos_token1] = ACTIONS(1530), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1530), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1530), - [aux_sym_kex_algorithms_token1] = ACTIONS(1530), - [aux_sym_known_hosts_command_token1] = ACTIONS(1530), - [aux_sym_local_command_token1] = ACTIONS(1530), - [aux_sym_local_forward_token1] = ACTIONS(1530), - [aux_sym_log_level_token1] = ACTIONS(1530), - [aux_sym_log_verbose_token1] = ACTIONS(1530), - [aux_sym_macs_token1] = ACTIONS(1530), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1530), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1530), - [aux_sym_password_authentication_token1] = ACTIONS(1530), - [aux_sym_permit_local_command_token1] = ACTIONS(1530), - [aux_sym_permit_remote_open_token1] = ACTIONS(1530), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1530), - [aux_sym_port_token1] = ACTIONS(1530), - [aux_sym_preferred_authentications_token1] = ACTIONS(1530), - [aux_sym_protocol_token1] = ACTIONS(1530), - [aux_sym_proxy_command_token1] = ACTIONS(1530), - [aux_sym_proxy_jump_token1] = ACTIONS(1530), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1530), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1530), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1530), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1530), - [aux_sym_rekey_limit_token1] = ACTIONS(1530), - [aux_sym_remote_command_token1] = ACTIONS(1530), - [aux_sym_remote_forward_token1] = ACTIONS(1530), - [aux_sym_request_tty_token1] = ACTIONS(1530), - [aux_sym_required_rsa_size_token1] = ACTIONS(1530), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1530), - [aux_sym_security_key_provider_token1] = ACTIONS(1530), - [aux_sym_send_env_token1] = ACTIONS(1530), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1530), - [aux_sym_server_alive_interval_token1] = ACTIONS(1530), - [aux_sym_session_type_token1] = ACTIONS(1530), - [aux_sym_set_env_token1] = ACTIONS(1530), - [aux_sym_stdin_null_token1] = ACTIONS(1530), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1530), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1530), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1530), - [aux_sym_syslog_facility_token1] = ACTIONS(1530), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1530), - [aux_sym_keep_alive_token1] = ACTIONS(1530), - [aux_sym_tag_token1] = ACTIONS(1530), - [aux_sym_tunnel_token1] = ACTIONS(1532), - [aux_sym_tunnel_device_token1] = ACTIONS(1530), - [aux_sym_update_host_keys_token1] = ACTIONS(1530), - [aux_sym_use_keychain_token1] = ACTIONS(1530), - [aux_sym_use_roaming_token1] = ACTIONS(1530), - [aux_sym_user_token1] = ACTIONS(1532), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1530), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1530), - [aux_sym_visual_host_key_token1] = ACTIONS(1530), - [aux_sym_xauth_location_token1] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1537), + [anon_sym_DQUOTE] = ACTIONS(1539), + [aux_sym_match_token1] = ACTIONS(1535), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1535), + [aux_sym_address_family_token1] = ACTIONS(1535), + [aux_sym_batch_mode_token1] = ACTIONS(1535), + [aux_sym_bind_address_token1] = ACTIONS(1535), + [aux_sym_bind_interface_token1] = ACTIONS(1535), + [aux_sym_canonical_domains_token1] = ACTIONS(1535), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1535), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1535), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1535), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1535), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1535), + [aux_sym_certificate_file_token1] = ACTIONS(1535), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1535), + [aux_sym_channel_timeout_token1] = ACTIONS(1535), + [aux_sym_check_host_ip_token1] = ACTIONS(1535), + [aux_sym_ciphers_token1] = ACTIONS(1535), + [aux_sym_cipher_token1] = ACTIONS(1537), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1535), + [aux_sym_compression_token1] = ACTIONS(1535), + [aux_sym_connection_attempts_token1] = ACTIONS(1535), + [aux_sym_connect_timeout_token1] = ACTIONS(1535), + [aux_sym_control_master_token1] = ACTIONS(1535), + [aux_sym_control_path_token1] = ACTIONS(1535), + [aux_sym_control_persist_token1] = ACTIONS(1535), + [aux_sym_dynamic_forward_token1] = ACTIONS(1535), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1535), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1535), + [aux_sym_escape_char_token1] = ACTIONS(1535), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1535), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1535), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1535), + [aux_sym_forward_agent_token1] = ACTIONS(1535), + [aux_sym_forward_x11_token1] = ACTIONS(1537), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1535), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1535), + [aux_sym_gateway_ports_token1] = ACTIONS(1535), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1535), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1535), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1535), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1535), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1535), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1535), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1535), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1535), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1535), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1535), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1535), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1535), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1535), + [aux_sym_host_key_alias_token1] = ACTIONS(1535), + [aux_sym_hostname_token1] = ACTIONS(1535), + [aux_sym_identities_only_token1] = ACTIONS(1535), + [aux_sym_identity_agent_token1] = ACTIONS(1535), + [aux_sym_identity_file_token1] = ACTIONS(1535), + [aux_sym_ignore_unknown_token1] = ACTIONS(1535), + [aux_sym_include_token1] = ACTIONS(1535), + [aux_sym_ip_qos_token1] = ACTIONS(1535), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1535), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1535), + [aux_sym_kex_algorithms_token1] = ACTIONS(1535), + [aux_sym_known_hosts_command_token1] = ACTIONS(1535), + [aux_sym_local_command_token1] = ACTIONS(1535), + [aux_sym_local_forward_token1] = ACTIONS(1535), + [aux_sym_log_level_token1] = ACTIONS(1535), + [aux_sym_log_verbose_token1] = ACTIONS(1535), + [aux_sym_macs_token1] = ACTIONS(1535), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1535), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1535), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1535), + [aux_sym_password_authentication_token1] = ACTIONS(1535), + [aux_sym_permit_local_command_token1] = ACTIONS(1535), + [aux_sym_permit_remote_open_token1] = ACTIONS(1535), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1535), + [aux_sym_port_token1] = ACTIONS(1535), + [aux_sym_preferred_authentications_token1] = ACTIONS(1535), + [aux_sym_protocol_token1] = ACTIONS(1535), + [aux_sym_proxy_command_token1] = ACTIONS(1535), + [aux_sym_proxy_jump_token1] = ACTIONS(1535), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1535), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1535), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1535), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1535), + [aux_sym_rekey_limit_token1] = ACTIONS(1535), + [aux_sym_remote_command_token1] = ACTIONS(1535), + [aux_sym_remote_forward_token1] = ACTIONS(1535), + [aux_sym_request_tty_token1] = ACTIONS(1535), + [aux_sym_required_rsa_size_token1] = ACTIONS(1535), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1535), + [aux_sym_security_key_provider_token1] = ACTIONS(1535), + [aux_sym_send_env_token1] = ACTIONS(1535), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1535), + [aux_sym_server_alive_interval_token1] = ACTIONS(1535), + [aux_sym_session_type_token1] = ACTIONS(1535), + [aux_sym_set_env_token1] = ACTIONS(1535), + [aux_sym_stdin_null_token1] = ACTIONS(1535), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1535), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1535), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1535), + [aux_sym_syslog_facility_token1] = ACTIONS(1535), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1535), + [aux_sym_keep_alive_token1] = ACTIONS(1535), + [aux_sym_tag_token1] = ACTIONS(1535), + [aux_sym_tunnel_token1] = ACTIONS(1537), + [aux_sym_tunnel_device_token1] = ACTIONS(1535), + [aux_sym_update_host_keys_token1] = ACTIONS(1535), + [aux_sym_use_keychain_token1] = ACTIONS(1535), + [aux_sym_use_roaming_token1] = ACTIONS(1535), + [aux_sym_user_token1] = ACTIONS(1537), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1535), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1535), + [aux_sym_visual_host_key_token1] = ACTIONS(1535), + [aux_sym_xauth_location_token1] = ACTIONS(1535), }, [163] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1538), - [anon_sym_DQUOTE] = ACTIONS(1540), - [aux_sym_match_token1] = ACTIONS(1536), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1536), - [aux_sym_address_family_token1] = ACTIONS(1536), - [aux_sym_batch_mode_token1] = ACTIONS(1536), - [aux_sym_bind_address_token1] = ACTIONS(1536), - [aux_sym_bind_interface_token1] = ACTIONS(1536), - [aux_sym_canonical_domains_token1] = ACTIONS(1536), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1536), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1536), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1536), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1536), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1536), - [aux_sym_certificate_file_token1] = ACTIONS(1536), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1536), - [aux_sym_channel_timeout_token1] = ACTIONS(1536), - [aux_sym_check_host_ip_token1] = ACTIONS(1536), - [aux_sym_ciphers_token1] = ACTIONS(1536), - [aux_sym_cipher_token1] = ACTIONS(1538), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1536), - [aux_sym_compression_token1] = ACTIONS(1536), - [aux_sym_connection_attempts_token1] = ACTIONS(1536), - [aux_sym_connect_timeout_token1] = ACTIONS(1536), - [aux_sym_control_master_token1] = ACTIONS(1536), - [aux_sym_control_path_token1] = ACTIONS(1536), - [aux_sym_control_persist_token1] = ACTIONS(1536), - [aux_sym_dynamic_forward_token1] = ACTIONS(1536), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1536), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1536), - [aux_sym_escape_char_token1] = ACTIONS(1536), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1536), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1536), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1536), - [aux_sym_forward_agent_token1] = ACTIONS(1536), - [aux_sym_forward_x11_token1] = ACTIONS(1538), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1536), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1536), - [aux_sym_gateway_ports_token1] = ACTIONS(1536), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1536), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1536), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1536), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1536), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1536), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1536), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1536), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1536), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1536), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1536), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1536), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1536), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1536), - [aux_sym_host_key_alias_token1] = ACTIONS(1536), - [aux_sym_hostname_token1] = ACTIONS(1536), - [aux_sym_identities_only_token1] = ACTIONS(1536), - [aux_sym_identity_agent_token1] = ACTIONS(1536), - [aux_sym_identity_file_token1] = ACTIONS(1536), - [aux_sym_ignore_unknown_token1] = ACTIONS(1536), - [aux_sym_include_token1] = ACTIONS(1536), - [aux_sym_ip_qos_token1] = ACTIONS(1536), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1536), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1536), - [aux_sym_kex_algorithms_token1] = ACTIONS(1536), - [aux_sym_known_hosts_command_token1] = ACTIONS(1536), - [aux_sym_local_command_token1] = ACTIONS(1536), - [aux_sym_local_forward_token1] = ACTIONS(1536), - [aux_sym_log_level_token1] = ACTIONS(1536), - [aux_sym_log_verbose_token1] = ACTIONS(1536), - [aux_sym_macs_token1] = ACTIONS(1536), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1536), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1536), - [aux_sym_password_authentication_token1] = ACTIONS(1536), - [aux_sym_permit_local_command_token1] = ACTIONS(1536), - [aux_sym_permit_remote_open_token1] = ACTIONS(1536), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1536), - [aux_sym_port_token1] = ACTIONS(1536), - [aux_sym_preferred_authentications_token1] = ACTIONS(1536), - [aux_sym_protocol_token1] = ACTIONS(1536), - [aux_sym_proxy_command_token1] = ACTIONS(1536), - [aux_sym_proxy_jump_token1] = ACTIONS(1536), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1536), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1536), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1536), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1536), - [aux_sym_rekey_limit_token1] = ACTIONS(1536), - [aux_sym_remote_command_token1] = ACTIONS(1536), - [aux_sym_remote_forward_token1] = ACTIONS(1536), - [aux_sym_request_tty_token1] = ACTIONS(1536), - [aux_sym_required_rsa_size_token1] = ACTIONS(1536), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1536), - [aux_sym_security_key_provider_token1] = ACTIONS(1536), - [aux_sym_send_env_token1] = ACTIONS(1536), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1536), - [aux_sym_server_alive_interval_token1] = ACTIONS(1536), - [aux_sym_session_type_token1] = ACTIONS(1536), - [aux_sym_set_env_token1] = ACTIONS(1536), - [aux_sym_stdin_null_token1] = ACTIONS(1536), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1536), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1536), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1536), - [aux_sym_syslog_facility_token1] = ACTIONS(1536), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1536), - [aux_sym_keep_alive_token1] = ACTIONS(1536), - [aux_sym_tag_token1] = ACTIONS(1536), - [aux_sym_tunnel_token1] = ACTIONS(1538), - [aux_sym_tunnel_device_token1] = ACTIONS(1536), - [aux_sym_update_host_keys_token1] = ACTIONS(1536), - [aux_sym_use_keychain_token1] = ACTIONS(1536), - [aux_sym_use_roaming_token1] = ACTIONS(1536), - [aux_sym_user_token1] = ACTIONS(1538), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1536), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1536), - [aux_sym_visual_host_key_token1] = ACTIONS(1536), - [aux_sym_xauth_location_token1] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(1541), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1545), + [aux_sym_match_token1] = ACTIONS(1541), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1541), + [aux_sym_address_family_token1] = ACTIONS(1541), + [aux_sym_batch_mode_token1] = ACTIONS(1541), + [aux_sym_bind_address_token1] = ACTIONS(1541), + [aux_sym_bind_interface_token1] = ACTIONS(1541), + [aux_sym_canonical_domains_token1] = ACTIONS(1541), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1541), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1541), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1541), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1541), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1541), + [aux_sym_certificate_file_token1] = ACTIONS(1541), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1541), + [aux_sym_channel_timeout_token1] = ACTIONS(1541), + [aux_sym_check_host_ip_token1] = ACTIONS(1541), + [aux_sym_ciphers_token1] = ACTIONS(1541), + [aux_sym_cipher_token1] = ACTIONS(1543), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1541), + [aux_sym_compression_token1] = ACTIONS(1541), + [aux_sym_connection_attempts_token1] = ACTIONS(1541), + [aux_sym_connect_timeout_token1] = ACTIONS(1541), + [aux_sym_control_master_token1] = ACTIONS(1541), + [aux_sym_control_path_token1] = ACTIONS(1541), + [aux_sym_control_persist_token1] = ACTIONS(1541), + [aux_sym_dynamic_forward_token1] = ACTIONS(1541), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1541), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1541), + [aux_sym_escape_char_token1] = ACTIONS(1541), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1541), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1541), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1541), + [aux_sym_forward_agent_token1] = ACTIONS(1541), + [aux_sym_forward_x11_token1] = ACTIONS(1543), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1541), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1541), + [aux_sym_gateway_ports_token1] = ACTIONS(1541), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1541), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1541), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1541), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1541), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1541), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1541), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1541), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1541), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1541), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1541), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1541), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1541), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1541), + [aux_sym_host_key_alias_token1] = ACTIONS(1541), + [aux_sym_hostname_token1] = ACTIONS(1541), + [aux_sym_identities_only_token1] = ACTIONS(1541), + [aux_sym_identity_agent_token1] = ACTIONS(1541), + [aux_sym_identity_file_token1] = ACTIONS(1541), + [aux_sym_ignore_unknown_token1] = ACTIONS(1541), + [aux_sym_include_token1] = ACTIONS(1541), + [aux_sym_ip_qos_token1] = ACTIONS(1541), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1541), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1541), + [aux_sym_kex_algorithms_token1] = ACTIONS(1541), + [aux_sym_known_hosts_command_token1] = ACTIONS(1541), + [aux_sym_local_command_token1] = ACTIONS(1541), + [aux_sym_local_forward_token1] = ACTIONS(1541), + [aux_sym_log_level_token1] = ACTIONS(1541), + [aux_sym_log_verbose_token1] = ACTIONS(1541), + [aux_sym_macs_token1] = ACTIONS(1541), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1541), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1541), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1541), + [aux_sym_password_authentication_token1] = ACTIONS(1541), + [aux_sym_permit_local_command_token1] = ACTIONS(1541), + [aux_sym_permit_remote_open_token1] = ACTIONS(1541), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1541), + [aux_sym_port_token1] = ACTIONS(1541), + [aux_sym_preferred_authentications_token1] = ACTIONS(1541), + [aux_sym_protocol_token1] = ACTIONS(1541), + [aux_sym_proxy_command_token1] = ACTIONS(1541), + [aux_sym_proxy_jump_token1] = ACTIONS(1541), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1541), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1541), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1541), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1541), + [aux_sym_rekey_limit_token1] = ACTIONS(1541), + [aux_sym_remote_command_token1] = ACTIONS(1541), + [aux_sym_remote_forward_token1] = ACTIONS(1541), + [aux_sym_request_tty_token1] = ACTIONS(1541), + [aux_sym_required_rsa_size_token1] = ACTIONS(1541), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1541), + [aux_sym_security_key_provider_token1] = ACTIONS(1541), + [aux_sym_send_env_token1] = ACTIONS(1541), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1541), + [aux_sym_server_alive_interval_token1] = ACTIONS(1541), + [aux_sym_session_type_token1] = ACTIONS(1541), + [aux_sym_set_env_token1] = ACTIONS(1541), + [aux_sym_stdin_null_token1] = ACTIONS(1541), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1541), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1541), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1541), + [aux_sym_syslog_facility_token1] = ACTIONS(1541), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1541), + [aux_sym_keep_alive_token1] = ACTIONS(1541), + [aux_sym_tag_token1] = ACTIONS(1541), + [aux_sym_tunnel_token1] = ACTIONS(1543), + [aux_sym_tunnel_device_token1] = ACTIONS(1541), + [aux_sym_update_host_keys_token1] = ACTIONS(1541), + [aux_sym_use_keychain_token1] = ACTIONS(1541), + [aux_sym_use_roaming_token1] = ACTIONS(1541), + [aux_sym_user_token1] = ACTIONS(1543), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1541), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1541), + [aux_sym_visual_host_key_token1] = ACTIONS(1541), + [aux_sym_xauth_location_token1] = ACTIONS(1541), }, [164] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1544), - [anon_sym_DQUOTE] = ACTIONS(1546), - [aux_sym_match_token1] = ACTIONS(1542), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1542), - [aux_sym_address_family_token1] = ACTIONS(1542), - [aux_sym_batch_mode_token1] = ACTIONS(1542), - [aux_sym_bind_address_token1] = ACTIONS(1542), - [aux_sym_bind_interface_token1] = ACTIONS(1542), - [aux_sym_canonical_domains_token1] = ACTIONS(1542), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1542), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1542), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1542), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1542), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1542), - [aux_sym_certificate_file_token1] = ACTIONS(1542), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1542), - [aux_sym_channel_timeout_token1] = ACTIONS(1542), - [aux_sym_check_host_ip_token1] = ACTIONS(1542), - [aux_sym_ciphers_token1] = ACTIONS(1542), - [aux_sym_cipher_token1] = ACTIONS(1544), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1542), - [aux_sym_compression_token1] = ACTIONS(1542), - [aux_sym_connection_attempts_token1] = ACTIONS(1542), - [aux_sym_connect_timeout_token1] = ACTIONS(1542), - [aux_sym_control_master_token1] = ACTIONS(1542), - [aux_sym_control_path_token1] = ACTIONS(1542), - [aux_sym_control_persist_token1] = ACTIONS(1542), - [aux_sym_dynamic_forward_token1] = ACTIONS(1542), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1542), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1542), - [aux_sym_escape_char_token1] = ACTIONS(1542), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1542), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1542), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1542), - [aux_sym_forward_agent_token1] = ACTIONS(1542), - [aux_sym_forward_x11_token1] = ACTIONS(1544), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1542), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1542), - [aux_sym_gateway_ports_token1] = ACTIONS(1542), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1542), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1542), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1542), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1542), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1542), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1542), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1542), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1542), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1542), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1542), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1542), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1542), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1542), - [aux_sym_host_key_alias_token1] = ACTIONS(1542), - [aux_sym_hostname_token1] = ACTIONS(1542), - [aux_sym_identities_only_token1] = ACTIONS(1542), - [aux_sym_identity_agent_token1] = ACTIONS(1542), - [aux_sym_identity_file_token1] = ACTIONS(1542), - [aux_sym_ignore_unknown_token1] = ACTIONS(1542), - [aux_sym_include_token1] = ACTIONS(1542), - [aux_sym_ip_qos_token1] = ACTIONS(1542), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1542), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1542), - [aux_sym_kex_algorithms_token1] = ACTIONS(1542), - [aux_sym_known_hosts_command_token1] = ACTIONS(1542), - [aux_sym_local_command_token1] = ACTIONS(1542), - [aux_sym_local_forward_token1] = ACTIONS(1542), - [aux_sym_log_level_token1] = ACTIONS(1542), - [aux_sym_log_verbose_token1] = ACTIONS(1542), - [aux_sym_macs_token1] = ACTIONS(1542), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1542), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1542), - [aux_sym_password_authentication_token1] = ACTIONS(1542), - [aux_sym_permit_local_command_token1] = ACTIONS(1542), - [aux_sym_permit_remote_open_token1] = ACTIONS(1542), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1542), - [aux_sym_port_token1] = ACTIONS(1542), - [aux_sym_preferred_authentications_token1] = ACTIONS(1542), - [aux_sym_protocol_token1] = ACTIONS(1542), - [aux_sym_proxy_command_token1] = ACTIONS(1542), - [aux_sym_proxy_jump_token1] = ACTIONS(1542), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1542), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1542), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1542), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1542), - [aux_sym_rekey_limit_token1] = ACTIONS(1542), - [aux_sym_remote_command_token1] = ACTIONS(1542), - [aux_sym_remote_forward_token1] = ACTIONS(1542), - [aux_sym_request_tty_token1] = ACTIONS(1542), - [aux_sym_required_rsa_size_token1] = ACTIONS(1542), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1542), - [aux_sym_security_key_provider_token1] = ACTIONS(1542), - [aux_sym_send_env_token1] = ACTIONS(1542), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1542), - [aux_sym_server_alive_interval_token1] = ACTIONS(1542), - [aux_sym_session_type_token1] = ACTIONS(1542), - [aux_sym_set_env_token1] = ACTIONS(1542), - [aux_sym_stdin_null_token1] = ACTIONS(1542), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1542), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1542), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1542), - [aux_sym_syslog_facility_token1] = ACTIONS(1542), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1542), - [aux_sym_keep_alive_token1] = ACTIONS(1542), - [aux_sym_tag_token1] = ACTIONS(1542), - [aux_sym_tunnel_token1] = ACTIONS(1544), - [aux_sym_tunnel_device_token1] = ACTIONS(1542), - [aux_sym_update_host_keys_token1] = ACTIONS(1542), - [aux_sym_use_keychain_token1] = ACTIONS(1542), - [aux_sym_use_roaming_token1] = ACTIONS(1542), - [aux_sym_user_token1] = ACTIONS(1544), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1542), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1542), - [aux_sym_visual_host_key_token1] = ACTIONS(1542), - [aux_sym_xauth_location_token1] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1549), + [anon_sym_DQUOTE] = ACTIONS(1551), + [aux_sym_match_token1] = ACTIONS(1547), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1547), + [aux_sym_address_family_token1] = ACTIONS(1547), + [aux_sym_batch_mode_token1] = ACTIONS(1547), + [aux_sym_bind_address_token1] = ACTIONS(1547), + [aux_sym_bind_interface_token1] = ACTIONS(1547), + [aux_sym_canonical_domains_token1] = ACTIONS(1547), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1547), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1547), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1547), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1547), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1547), + [aux_sym_certificate_file_token1] = ACTIONS(1547), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1547), + [aux_sym_channel_timeout_token1] = ACTIONS(1547), + [aux_sym_check_host_ip_token1] = ACTIONS(1547), + [aux_sym_ciphers_token1] = ACTIONS(1547), + [aux_sym_cipher_token1] = ACTIONS(1549), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1547), + [aux_sym_compression_token1] = ACTIONS(1547), + [aux_sym_connection_attempts_token1] = ACTIONS(1547), + [aux_sym_connect_timeout_token1] = ACTIONS(1547), + [aux_sym_control_master_token1] = ACTIONS(1547), + [aux_sym_control_path_token1] = ACTIONS(1547), + [aux_sym_control_persist_token1] = ACTIONS(1547), + [aux_sym_dynamic_forward_token1] = ACTIONS(1547), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1547), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1547), + [aux_sym_escape_char_token1] = ACTIONS(1547), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1547), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1547), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1547), + [aux_sym_forward_agent_token1] = ACTIONS(1547), + [aux_sym_forward_x11_token1] = ACTIONS(1549), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1547), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1547), + [aux_sym_gateway_ports_token1] = ACTIONS(1547), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1547), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1547), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1547), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1547), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1547), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1547), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1547), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1547), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1547), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1547), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1547), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1547), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1547), + [aux_sym_host_key_alias_token1] = ACTIONS(1547), + [aux_sym_hostname_token1] = ACTIONS(1547), + [aux_sym_identities_only_token1] = ACTIONS(1547), + [aux_sym_identity_agent_token1] = ACTIONS(1547), + [aux_sym_identity_file_token1] = ACTIONS(1547), + [aux_sym_ignore_unknown_token1] = ACTIONS(1547), + [aux_sym_include_token1] = ACTIONS(1547), + [aux_sym_ip_qos_token1] = ACTIONS(1547), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1547), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1547), + [aux_sym_kex_algorithms_token1] = ACTIONS(1547), + [aux_sym_known_hosts_command_token1] = ACTIONS(1547), + [aux_sym_local_command_token1] = ACTIONS(1547), + [aux_sym_local_forward_token1] = ACTIONS(1547), + [aux_sym_log_level_token1] = ACTIONS(1547), + [aux_sym_log_verbose_token1] = ACTIONS(1547), + [aux_sym_macs_token1] = ACTIONS(1547), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1547), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1547), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1547), + [aux_sym_password_authentication_token1] = ACTIONS(1547), + [aux_sym_permit_local_command_token1] = ACTIONS(1547), + [aux_sym_permit_remote_open_token1] = ACTIONS(1547), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1547), + [aux_sym_port_token1] = ACTIONS(1547), + [aux_sym_preferred_authentications_token1] = ACTIONS(1547), + [aux_sym_protocol_token1] = ACTIONS(1547), + [aux_sym_proxy_command_token1] = ACTIONS(1547), + [aux_sym_proxy_jump_token1] = ACTIONS(1547), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1547), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1547), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1547), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1547), + [aux_sym_rekey_limit_token1] = ACTIONS(1547), + [aux_sym_remote_command_token1] = ACTIONS(1547), + [aux_sym_remote_forward_token1] = ACTIONS(1547), + [aux_sym_request_tty_token1] = ACTIONS(1547), + [aux_sym_required_rsa_size_token1] = ACTIONS(1547), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1547), + [aux_sym_security_key_provider_token1] = ACTIONS(1547), + [aux_sym_send_env_token1] = ACTIONS(1547), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1547), + [aux_sym_server_alive_interval_token1] = ACTIONS(1547), + [aux_sym_session_type_token1] = ACTIONS(1547), + [aux_sym_set_env_token1] = ACTIONS(1547), + [aux_sym_stdin_null_token1] = ACTIONS(1547), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1547), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1547), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1547), + [aux_sym_syslog_facility_token1] = ACTIONS(1547), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1547), + [aux_sym_keep_alive_token1] = ACTIONS(1547), + [aux_sym_tag_token1] = ACTIONS(1547), + [aux_sym_tunnel_token1] = ACTIONS(1549), + [aux_sym_tunnel_device_token1] = ACTIONS(1547), + [aux_sym_update_host_keys_token1] = ACTIONS(1547), + [aux_sym_use_keychain_token1] = ACTIONS(1547), + [aux_sym_use_roaming_token1] = ACTIONS(1547), + [aux_sym_user_token1] = ACTIONS(1549), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1547), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1547), + [aux_sym_visual_host_key_token1] = ACTIONS(1547), + [aux_sym_xauth_location_token1] = ACTIONS(1547), }, [165] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1550), - [anon_sym_DQUOTE] = ACTIONS(1552), - [aux_sym_match_token1] = ACTIONS(1548), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1548), - [aux_sym_address_family_token1] = ACTIONS(1548), - [aux_sym_batch_mode_token1] = ACTIONS(1548), - [aux_sym_bind_address_token1] = ACTIONS(1548), - [aux_sym_bind_interface_token1] = ACTIONS(1548), - [aux_sym_canonical_domains_token1] = ACTIONS(1548), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1548), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1548), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1548), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1548), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1548), - [aux_sym_certificate_file_token1] = ACTIONS(1548), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1548), - [aux_sym_channel_timeout_token1] = ACTIONS(1548), - [aux_sym_check_host_ip_token1] = ACTIONS(1548), - [aux_sym_ciphers_token1] = ACTIONS(1548), - [aux_sym_cipher_token1] = ACTIONS(1550), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1548), - [aux_sym_compression_token1] = ACTIONS(1548), - [aux_sym_connection_attempts_token1] = ACTIONS(1548), - [aux_sym_connect_timeout_token1] = ACTIONS(1548), - [aux_sym_control_master_token1] = ACTIONS(1548), - [aux_sym_control_path_token1] = ACTIONS(1548), - [aux_sym_control_persist_token1] = ACTIONS(1548), - [aux_sym_dynamic_forward_token1] = ACTIONS(1548), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1548), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1548), - [aux_sym_escape_char_token1] = ACTIONS(1548), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1548), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1548), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1548), - [aux_sym_forward_agent_token1] = ACTIONS(1548), - [aux_sym_forward_x11_token1] = ACTIONS(1550), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1548), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1548), - [aux_sym_gateway_ports_token1] = ACTIONS(1548), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1548), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1548), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1548), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1548), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1548), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1548), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1548), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1548), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1548), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1548), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1548), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1548), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1548), - [aux_sym_host_key_alias_token1] = ACTIONS(1548), - [aux_sym_hostname_token1] = ACTIONS(1548), - [aux_sym_identities_only_token1] = ACTIONS(1548), - [aux_sym_identity_agent_token1] = ACTIONS(1548), - [aux_sym_identity_file_token1] = ACTIONS(1548), - [aux_sym_ignore_unknown_token1] = ACTIONS(1548), - [aux_sym_include_token1] = ACTIONS(1548), - [aux_sym_ip_qos_token1] = ACTIONS(1548), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1548), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1548), - [aux_sym_kex_algorithms_token1] = ACTIONS(1548), - [aux_sym_known_hosts_command_token1] = ACTIONS(1548), - [aux_sym_local_command_token1] = ACTIONS(1548), - [aux_sym_local_forward_token1] = ACTIONS(1548), - [aux_sym_log_level_token1] = ACTIONS(1548), - [aux_sym_log_verbose_token1] = ACTIONS(1548), - [aux_sym_macs_token1] = ACTIONS(1548), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1548), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1548), - [aux_sym_password_authentication_token1] = ACTIONS(1548), - [aux_sym_permit_local_command_token1] = ACTIONS(1548), - [aux_sym_permit_remote_open_token1] = ACTIONS(1548), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1548), - [aux_sym_port_token1] = ACTIONS(1548), - [aux_sym_preferred_authentications_token1] = ACTIONS(1548), - [aux_sym_protocol_token1] = ACTIONS(1548), - [aux_sym_proxy_command_token1] = ACTIONS(1548), - [aux_sym_proxy_jump_token1] = ACTIONS(1548), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1548), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1548), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1548), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1548), - [aux_sym_rekey_limit_token1] = ACTIONS(1548), - [aux_sym_remote_command_token1] = ACTIONS(1548), - [aux_sym_remote_forward_token1] = ACTIONS(1548), - [aux_sym_request_tty_token1] = ACTIONS(1548), - [aux_sym_required_rsa_size_token1] = ACTIONS(1548), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1548), - [aux_sym_security_key_provider_token1] = ACTIONS(1548), - [aux_sym_send_env_token1] = ACTIONS(1548), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1548), - [aux_sym_server_alive_interval_token1] = ACTIONS(1548), - [aux_sym_session_type_token1] = ACTIONS(1548), - [aux_sym_set_env_token1] = ACTIONS(1548), - [aux_sym_stdin_null_token1] = ACTIONS(1548), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1548), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1548), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1548), - [aux_sym_syslog_facility_token1] = ACTIONS(1548), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1548), - [aux_sym_keep_alive_token1] = ACTIONS(1548), - [aux_sym_tag_token1] = ACTIONS(1548), - [aux_sym_tunnel_token1] = ACTIONS(1550), - [aux_sym_tunnel_device_token1] = ACTIONS(1548), - [aux_sym_update_host_keys_token1] = ACTIONS(1548), - [aux_sym_use_keychain_token1] = ACTIONS(1548), - [aux_sym_use_roaming_token1] = ACTIONS(1548), - [aux_sym_user_token1] = ACTIONS(1550), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1548), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1548), - [aux_sym_visual_host_key_token1] = ACTIONS(1548), - [aux_sym_xauth_location_token1] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [aux_sym_match_token1] = ACTIONS(1553), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1553), + [aux_sym_address_family_token1] = ACTIONS(1553), + [aux_sym_batch_mode_token1] = ACTIONS(1553), + [aux_sym_bind_address_token1] = ACTIONS(1553), + [aux_sym_bind_interface_token1] = ACTIONS(1553), + [aux_sym_canonical_domains_token1] = ACTIONS(1553), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1553), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1553), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1553), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1553), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1553), + [aux_sym_certificate_file_token1] = ACTIONS(1553), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1553), + [aux_sym_channel_timeout_token1] = ACTIONS(1553), + [aux_sym_check_host_ip_token1] = ACTIONS(1553), + [aux_sym_ciphers_token1] = ACTIONS(1553), + [aux_sym_cipher_token1] = ACTIONS(1555), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1553), + [aux_sym_compression_token1] = ACTIONS(1553), + [aux_sym_connection_attempts_token1] = ACTIONS(1553), + [aux_sym_connect_timeout_token1] = ACTIONS(1553), + [aux_sym_control_master_token1] = ACTIONS(1553), + [aux_sym_control_path_token1] = ACTIONS(1553), + [aux_sym_control_persist_token1] = ACTIONS(1553), + [aux_sym_dynamic_forward_token1] = ACTIONS(1553), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1553), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1553), + [aux_sym_escape_char_token1] = ACTIONS(1553), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1553), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1553), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1553), + [aux_sym_forward_agent_token1] = ACTIONS(1553), + [aux_sym_forward_x11_token1] = ACTIONS(1555), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1553), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1553), + [aux_sym_gateway_ports_token1] = ACTIONS(1553), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1553), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1553), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1553), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1553), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1553), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1553), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1553), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1553), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1553), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1553), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1553), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1553), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1553), + [aux_sym_host_key_alias_token1] = ACTIONS(1553), + [aux_sym_hostname_token1] = ACTIONS(1553), + [aux_sym_identities_only_token1] = ACTIONS(1553), + [aux_sym_identity_agent_token1] = ACTIONS(1553), + [aux_sym_identity_file_token1] = ACTIONS(1553), + [aux_sym_ignore_unknown_token1] = ACTIONS(1553), + [aux_sym_include_token1] = ACTIONS(1553), + [aux_sym_ip_qos_token1] = ACTIONS(1553), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1553), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1553), + [aux_sym_kex_algorithms_token1] = ACTIONS(1553), + [aux_sym_known_hosts_command_token1] = ACTIONS(1553), + [aux_sym_local_command_token1] = ACTIONS(1553), + [aux_sym_local_forward_token1] = ACTIONS(1553), + [aux_sym_log_level_token1] = ACTIONS(1553), + [aux_sym_log_verbose_token1] = ACTIONS(1553), + [aux_sym_macs_token1] = ACTIONS(1553), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1553), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1553), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1553), + [aux_sym_password_authentication_token1] = ACTIONS(1553), + [aux_sym_permit_local_command_token1] = ACTIONS(1553), + [aux_sym_permit_remote_open_token1] = ACTIONS(1553), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1553), + [aux_sym_port_token1] = ACTIONS(1553), + [aux_sym_preferred_authentications_token1] = ACTIONS(1553), + [aux_sym_protocol_token1] = ACTIONS(1553), + [aux_sym_proxy_command_token1] = ACTIONS(1553), + [aux_sym_proxy_jump_token1] = ACTIONS(1553), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1553), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1553), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1553), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1553), + [aux_sym_rekey_limit_token1] = ACTIONS(1553), + [aux_sym_remote_command_token1] = ACTIONS(1553), + [aux_sym_remote_forward_token1] = ACTIONS(1553), + [aux_sym_request_tty_token1] = ACTIONS(1553), + [aux_sym_required_rsa_size_token1] = ACTIONS(1553), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1553), + [aux_sym_security_key_provider_token1] = ACTIONS(1553), + [aux_sym_send_env_token1] = ACTIONS(1553), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1553), + [aux_sym_server_alive_interval_token1] = ACTIONS(1553), + [aux_sym_session_type_token1] = ACTIONS(1553), + [aux_sym_set_env_token1] = ACTIONS(1553), + [aux_sym_stdin_null_token1] = ACTIONS(1553), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1553), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1553), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1553), + [aux_sym_syslog_facility_token1] = ACTIONS(1553), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1553), + [aux_sym_keep_alive_token1] = ACTIONS(1553), + [aux_sym_tag_token1] = ACTIONS(1553), + [aux_sym_tunnel_token1] = ACTIONS(1555), + [aux_sym_tunnel_device_token1] = ACTIONS(1553), + [aux_sym_update_host_keys_token1] = ACTIONS(1553), + [aux_sym_use_keychain_token1] = ACTIONS(1553), + [aux_sym_use_roaming_token1] = ACTIONS(1553), + [aux_sym_user_token1] = ACTIONS(1555), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1553), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1553), + [aux_sym_visual_host_key_token1] = ACTIONS(1553), + [aux_sym_xauth_location_token1] = ACTIONS(1553), }, [166] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1556), - [anon_sym_DQUOTE] = ACTIONS(1558), - [aux_sym_match_token1] = ACTIONS(1554), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1554), - [aux_sym_address_family_token1] = ACTIONS(1554), - [aux_sym_batch_mode_token1] = ACTIONS(1554), - [aux_sym_bind_address_token1] = ACTIONS(1554), - [aux_sym_bind_interface_token1] = ACTIONS(1554), - [aux_sym_canonical_domains_token1] = ACTIONS(1554), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1554), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1554), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1554), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1554), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1554), - [aux_sym_certificate_file_token1] = ACTIONS(1554), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1554), - [aux_sym_channel_timeout_token1] = ACTIONS(1554), - [aux_sym_check_host_ip_token1] = ACTIONS(1554), - [aux_sym_ciphers_token1] = ACTIONS(1554), - [aux_sym_cipher_token1] = ACTIONS(1556), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1554), - [aux_sym_compression_token1] = ACTIONS(1554), - [aux_sym_connection_attempts_token1] = ACTIONS(1554), - [aux_sym_connect_timeout_token1] = ACTIONS(1554), - [aux_sym_control_master_token1] = ACTIONS(1554), - [aux_sym_control_path_token1] = ACTIONS(1554), - [aux_sym_control_persist_token1] = ACTIONS(1554), - [aux_sym_dynamic_forward_token1] = ACTIONS(1554), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1554), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1554), - [aux_sym_escape_char_token1] = ACTIONS(1554), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1554), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1554), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1554), - [aux_sym_forward_agent_token1] = ACTIONS(1554), - [aux_sym_forward_x11_token1] = ACTIONS(1556), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1554), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1554), - [aux_sym_gateway_ports_token1] = ACTIONS(1554), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1554), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1554), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1554), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1554), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1554), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1554), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1554), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1554), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1554), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1554), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1554), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1554), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1554), - [aux_sym_host_key_alias_token1] = ACTIONS(1554), - [aux_sym_hostname_token1] = ACTIONS(1554), - [aux_sym_identities_only_token1] = ACTIONS(1554), - [aux_sym_identity_agent_token1] = ACTIONS(1554), - [aux_sym_identity_file_token1] = ACTIONS(1554), - [aux_sym_ignore_unknown_token1] = ACTIONS(1554), - [aux_sym_include_token1] = ACTIONS(1554), - [aux_sym_ip_qos_token1] = ACTIONS(1554), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1554), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1554), - [aux_sym_kex_algorithms_token1] = ACTIONS(1554), - [aux_sym_known_hosts_command_token1] = ACTIONS(1554), - [aux_sym_local_command_token1] = ACTIONS(1554), - [aux_sym_local_forward_token1] = ACTIONS(1554), - [aux_sym_log_level_token1] = ACTIONS(1554), - [aux_sym_log_verbose_token1] = ACTIONS(1554), - [aux_sym_macs_token1] = ACTIONS(1554), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1554), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1554), - [aux_sym_password_authentication_token1] = ACTIONS(1554), - [aux_sym_permit_local_command_token1] = ACTIONS(1554), - [aux_sym_permit_remote_open_token1] = ACTIONS(1554), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1554), - [aux_sym_port_token1] = ACTIONS(1554), - [aux_sym_preferred_authentications_token1] = ACTIONS(1554), - [aux_sym_protocol_token1] = ACTIONS(1554), - [aux_sym_proxy_command_token1] = ACTIONS(1554), - [aux_sym_proxy_jump_token1] = ACTIONS(1554), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1554), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1554), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1554), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1554), - [aux_sym_rekey_limit_token1] = ACTIONS(1554), - [aux_sym_remote_command_token1] = ACTIONS(1554), - [aux_sym_remote_forward_token1] = ACTIONS(1554), - [aux_sym_request_tty_token1] = ACTIONS(1554), - [aux_sym_required_rsa_size_token1] = ACTIONS(1554), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1554), - [aux_sym_security_key_provider_token1] = ACTIONS(1554), - [aux_sym_send_env_token1] = ACTIONS(1554), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1554), - [aux_sym_server_alive_interval_token1] = ACTIONS(1554), - [aux_sym_session_type_token1] = ACTIONS(1554), - [aux_sym_set_env_token1] = ACTIONS(1554), - [aux_sym_stdin_null_token1] = ACTIONS(1554), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1554), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1554), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1554), - [aux_sym_syslog_facility_token1] = ACTIONS(1554), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1554), - [aux_sym_keep_alive_token1] = ACTIONS(1554), - [aux_sym_tag_token1] = ACTIONS(1554), - [aux_sym_tunnel_token1] = ACTIONS(1556), - [aux_sym_tunnel_device_token1] = ACTIONS(1554), - [aux_sym_update_host_keys_token1] = ACTIONS(1554), - [aux_sym_use_keychain_token1] = ACTIONS(1554), - [aux_sym_use_roaming_token1] = ACTIONS(1554), - [aux_sym_user_token1] = ACTIONS(1556), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1554), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1554), - [aux_sym_visual_host_key_token1] = ACTIONS(1554), - [aux_sym_xauth_location_token1] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1563), + [aux_sym_match_token1] = ACTIONS(1559), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1559), + [aux_sym_address_family_token1] = ACTIONS(1559), + [aux_sym_batch_mode_token1] = ACTIONS(1559), + [aux_sym_bind_address_token1] = ACTIONS(1559), + [aux_sym_bind_interface_token1] = ACTIONS(1559), + [aux_sym_canonical_domains_token1] = ACTIONS(1559), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1559), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1559), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1559), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1559), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1559), + [aux_sym_certificate_file_token1] = ACTIONS(1559), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1559), + [aux_sym_channel_timeout_token1] = ACTIONS(1559), + [aux_sym_check_host_ip_token1] = ACTIONS(1559), + [aux_sym_ciphers_token1] = ACTIONS(1559), + [aux_sym_cipher_token1] = ACTIONS(1561), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1559), + [aux_sym_compression_token1] = ACTIONS(1559), + [aux_sym_connection_attempts_token1] = ACTIONS(1559), + [aux_sym_connect_timeout_token1] = ACTIONS(1559), + [aux_sym_control_master_token1] = ACTIONS(1559), + [aux_sym_control_path_token1] = ACTIONS(1559), + [aux_sym_control_persist_token1] = ACTIONS(1559), + [aux_sym_dynamic_forward_token1] = ACTIONS(1559), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1559), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1559), + [aux_sym_escape_char_token1] = ACTIONS(1559), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1559), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1559), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1559), + [aux_sym_forward_agent_token1] = ACTIONS(1559), + [aux_sym_forward_x11_token1] = ACTIONS(1561), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1559), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1559), + [aux_sym_gateway_ports_token1] = ACTIONS(1559), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1559), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1559), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1559), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1559), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1559), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1559), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1559), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1559), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1559), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1559), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1559), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1559), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1559), + [aux_sym_host_key_alias_token1] = ACTIONS(1559), + [aux_sym_hostname_token1] = ACTIONS(1559), + [aux_sym_identities_only_token1] = ACTIONS(1559), + [aux_sym_identity_agent_token1] = ACTIONS(1559), + [aux_sym_identity_file_token1] = ACTIONS(1559), + [aux_sym_ignore_unknown_token1] = ACTIONS(1559), + [aux_sym_include_token1] = ACTIONS(1559), + [aux_sym_ip_qos_token1] = ACTIONS(1559), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1559), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1559), + [aux_sym_kex_algorithms_token1] = ACTIONS(1559), + [aux_sym_known_hosts_command_token1] = ACTIONS(1559), + [aux_sym_local_command_token1] = ACTIONS(1559), + [aux_sym_local_forward_token1] = ACTIONS(1559), + [aux_sym_log_level_token1] = ACTIONS(1559), + [aux_sym_log_verbose_token1] = ACTIONS(1559), + [aux_sym_macs_token1] = ACTIONS(1559), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1559), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1559), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1559), + [aux_sym_password_authentication_token1] = ACTIONS(1559), + [aux_sym_permit_local_command_token1] = ACTIONS(1559), + [aux_sym_permit_remote_open_token1] = ACTIONS(1559), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1559), + [aux_sym_port_token1] = ACTIONS(1559), + [aux_sym_preferred_authentications_token1] = ACTIONS(1559), + [aux_sym_protocol_token1] = ACTIONS(1559), + [aux_sym_proxy_command_token1] = ACTIONS(1559), + [aux_sym_proxy_jump_token1] = ACTIONS(1559), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1559), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1559), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1559), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1559), + [aux_sym_rekey_limit_token1] = ACTIONS(1559), + [aux_sym_remote_command_token1] = ACTIONS(1559), + [aux_sym_remote_forward_token1] = ACTIONS(1559), + [aux_sym_request_tty_token1] = ACTIONS(1559), + [aux_sym_required_rsa_size_token1] = ACTIONS(1559), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1559), + [aux_sym_security_key_provider_token1] = ACTIONS(1559), + [aux_sym_send_env_token1] = ACTIONS(1559), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1559), + [aux_sym_server_alive_interval_token1] = ACTIONS(1559), + [aux_sym_session_type_token1] = ACTIONS(1559), + [aux_sym_set_env_token1] = ACTIONS(1559), + [aux_sym_stdin_null_token1] = ACTIONS(1559), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1559), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1559), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1559), + [aux_sym_syslog_facility_token1] = ACTIONS(1559), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1559), + [aux_sym_keep_alive_token1] = ACTIONS(1559), + [aux_sym_tag_token1] = ACTIONS(1559), + [aux_sym_tunnel_token1] = ACTIONS(1561), + [aux_sym_tunnel_device_token1] = ACTIONS(1559), + [aux_sym_update_host_keys_token1] = ACTIONS(1559), + [aux_sym_use_keychain_token1] = ACTIONS(1559), + [aux_sym_use_roaming_token1] = ACTIONS(1559), + [aux_sym_user_token1] = ACTIONS(1561), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1559), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1559), + [aux_sym_visual_host_key_token1] = ACTIONS(1559), + [aux_sym_xauth_location_token1] = ACTIONS(1559), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1562), - [anon_sym_DQUOTE] = ACTIONS(1564), - [aux_sym_match_token1] = ACTIONS(1560), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1560), - [aux_sym_address_family_token1] = ACTIONS(1560), - [aux_sym_batch_mode_token1] = ACTIONS(1560), - [aux_sym_bind_address_token1] = ACTIONS(1560), - [aux_sym_bind_interface_token1] = ACTIONS(1560), - [aux_sym_canonical_domains_token1] = ACTIONS(1560), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1560), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1560), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1560), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1560), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1560), - [aux_sym_certificate_file_token1] = ACTIONS(1560), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1560), - [aux_sym_channel_timeout_token1] = ACTIONS(1560), - [aux_sym_check_host_ip_token1] = ACTIONS(1560), - [aux_sym_ciphers_token1] = ACTIONS(1560), - [aux_sym_cipher_token1] = ACTIONS(1562), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1560), - [aux_sym_compression_token1] = ACTIONS(1560), - [aux_sym_connection_attempts_token1] = ACTIONS(1560), - [aux_sym_connect_timeout_token1] = ACTIONS(1560), - [aux_sym_control_master_token1] = ACTIONS(1560), - [aux_sym_control_path_token1] = ACTIONS(1560), - [aux_sym_control_persist_token1] = ACTIONS(1560), - [aux_sym_dynamic_forward_token1] = ACTIONS(1560), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1560), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1560), - [aux_sym_escape_char_token1] = ACTIONS(1560), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1560), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1560), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1560), - [aux_sym_forward_agent_token1] = ACTIONS(1560), - [aux_sym_forward_x11_token1] = ACTIONS(1562), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1560), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1560), - [aux_sym_gateway_ports_token1] = ACTIONS(1560), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1560), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1560), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1560), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1560), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1560), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1560), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1560), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1560), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1560), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1560), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1560), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1560), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1560), - [aux_sym_host_key_alias_token1] = ACTIONS(1560), - [aux_sym_hostname_token1] = ACTIONS(1560), - [aux_sym_identities_only_token1] = ACTIONS(1560), - [aux_sym_identity_agent_token1] = ACTIONS(1560), - [aux_sym_identity_file_token1] = ACTIONS(1560), - [aux_sym_ignore_unknown_token1] = ACTIONS(1560), - [aux_sym_include_token1] = ACTIONS(1560), - [aux_sym_ip_qos_token1] = ACTIONS(1560), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1560), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1560), - [aux_sym_kex_algorithms_token1] = ACTIONS(1560), - [aux_sym_known_hosts_command_token1] = ACTIONS(1560), - [aux_sym_local_command_token1] = ACTIONS(1560), - [aux_sym_local_forward_token1] = ACTIONS(1560), - [aux_sym_log_level_token1] = ACTIONS(1560), - [aux_sym_log_verbose_token1] = ACTIONS(1560), - [aux_sym_macs_token1] = ACTIONS(1560), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1560), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1560), - [aux_sym_password_authentication_token1] = ACTIONS(1560), - [aux_sym_permit_local_command_token1] = ACTIONS(1560), - [aux_sym_permit_remote_open_token1] = ACTIONS(1560), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1560), - [aux_sym_port_token1] = ACTIONS(1560), - [aux_sym_preferred_authentications_token1] = ACTIONS(1560), - [aux_sym_protocol_token1] = ACTIONS(1560), - [aux_sym_proxy_command_token1] = ACTIONS(1560), - [aux_sym_proxy_jump_token1] = ACTIONS(1560), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1560), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1560), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1560), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1560), - [aux_sym_rekey_limit_token1] = ACTIONS(1560), - [aux_sym_remote_command_token1] = ACTIONS(1560), - [aux_sym_remote_forward_token1] = ACTIONS(1560), - [aux_sym_request_tty_token1] = ACTIONS(1560), - [aux_sym_required_rsa_size_token1] = ACTIONS(1560), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1560), - [aux_sym_security_key_provider_token1] = ACTIONS(1560), - [aux_sym_send_env_token1] = ACTIONS(1560), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1560), - [aux_sym_server_alive_interval_token1] = ACTIONS(1560), - [aux_sym_session_type_token1] = ACTIONS(1560), - [aux_sym_set_env_token1] = ACTIONS(1560), - [aux_sym_stdin_null_token1] = ACTIONS(1560), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1560), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1560), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1560), - [aux_sym_syslog_facility_token1] = ACTIONS(1560), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1560), - [aux_sym_keep_alive_token1] = ACTIONS(1560), - [aux_sym_tag_token1] = ACTIONS(1560), - [aux_sym_tunnel_token1] = ACTIONS(1562), - [aux_sym_tunnel_device_token1] = ACTIONS(1560), - [aux_sym_update_host_keys_token1] = ACTIONS(1560), - [aux_sym_use_keychain_token1] = ACTIONS(1560), - [aux_sym_use_roaming_token1] = ACTIONS(1560), - [aux_sym_user_token1] = ACTIONS(1562), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1560), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1560), - [aux_sym_visual_host_key_token1] = ACTIONS(1560), - [aux_sym_xauth_location_token1] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1565), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1569), + [aux_sym_match_token1] = ACTIONS(1565), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1565), + [aux_sym_address_family_token1] = ACTIONS(1565), + [aux_sym_batch_mode_token1] = ACTIONS(1565), + [aux_sym_bind_address_token1] = ACTIONS(1565), + [aux_sym_bind_interface_token1] = ACTIONS(1565), + [aux_sym_canonical_domains_token1] = ACTIONS(1565), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1565), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1565), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1565), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1565), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1565), + [aux_sym_certificate_file_token1] = ACTIONS(1565), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1565), + [aux_sym_channel_timeout_token1] = ACTIONS(1565), + [aux_sym_check_host_ip_token1] = ACTIONS(1565), + [aux_sym_ciphers_token1] = ACTIONS(1565), + [aux_sym_cipher_token1] = ACTIONS(1567), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1565), + [aux_sym_compression_token1] = ACTIONS(1565), + [aux_sym_connection_attempts_token1] = ACTIONS(1565), + [aux_sym_connect_timeout_token1] = ACTIONS(1565), + [aux_sym_control_master_token1] = ACTIONS(1565), + [aux_sym_control_path_token1] = ACTIONS(1565), + [aux_sym_control_persist_token1] = ACTIONS(1565), + [aux_sym_dynamic_forward_token1] = ACTIONS(1565), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1565), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1565), + [aux_sym_escape_char_token1] = ACTIONS(1565), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1565), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1565), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1565), + [aux_sym_forward_agent_token1] = ACTIONS(1565), + [aux_sym_forward_x11_token1] = ACTIONS(1567), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1565), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1565), + [aux_sym_gateway_ports_token1] = ACTIONS(1565), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1565), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1565), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1565), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1565), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1565), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1565), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1565), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1565), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1565), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1565), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1565), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1565), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1565), + [aux_sym_host_key_alias_token1] = ACTIONS(1565), + [aux_sym_hostname_token1] = ACTIONS(1565), + [aux_sym_identities_only_token1] = ACTIONS(1565), + [aux_sym_identity_agent_token1] = ACTIONS(1565), + [aux_sym_identity_file_token1] = ACTIONS(1565), + [aux_sym_ignore_unknown_token1] = ACTIONS(1565), + [aux_sym_include_token1] = ACTIONS(1565), + [aux_sym_ip_qos_token1] = ACTIONS(1565), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1565), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1565), + [aux_sym_kex_algorithms_token1] = ACTIONS(1565), + [aux_sym_known_hosts_command_token1] = ACTIONS(1565), + [aux_sym_local_command_token1] = ACTIONS(1565), + [aux_sym_local_forward_token1] = ACTIONS(1565), + [aux_sym_log_level_token1] = ACTIONS(1565), + [aux_sym_log_verbose_token1] = ACTIONS(1565), + [aux_sym_macs_token1] = ACTIONS(1565), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1565), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1565), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1565), + [aux_sym_password_authentication_token1] = ACTIONS(1565), + [aux_sym_permit_local_command_token1] = ACTIONS(1565), + [aux_sym_permit_remote_open_token1] = ACTIONS(1565), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1565), + [aux_sym_port_token1] = ACTIONS(1565), + [aux_sym_preferred_authentications_token1] = ACTIONS(1565), + [aux_sym_protocol_token1] = ACTIONS(1565), + [aux_sym_proxy_command_token1] = ACTIONS(1565), + [aux_sym_proxy_jump_token1] = ACTIONS(1565), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1565), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1565), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1565), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1565), + [aux_sym_rekey_limit_token1] = ACTIONS(1565), + [aux_sym_remote_command_token1] = ACTIONS(1565), + [aux_sym_remote_forward_token1] = ACTIONS(1565), + [aux_sym_request_tty_token1] = ACTIONS(1565), + [aux_sym_required_rsa_size_token1] = ACTIONS(1565), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1565), + [aux_sym_security_key_provider_token1] = ACTIONS(1565), + [aux_sym_send_env_token1] = ACTIONS(1565), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1565), + [aux_sym_server_alive_interval_token1] = ACTIONS(1565), + [aux_sym_session_type_token1] = ACTIONS(1565), + [aux_sym_set_env_token1] = ACTIONS(1565), + [aux_sym_stdin_null_token1] = ACTIONS(1565), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1565), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1565), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1565), + [aux_sym_syslog_facility_token1] = ACTIONS(1565), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1565), + [aux_sym_keep_alive_token1] = ACTIONS(1565), + [aux_sym_tag_token1] = ACTIONS(1565), + [aux_sym_tunnel_token1] = ACTIONS(1567), + [aux_sym_tunnel_device_token1] = ACTIONS(1565), + [aux_sym_update_host_keys_token1] = ACTIONS(1565), + [aux_sym_use_keychain_token1] = ACTIONS(1565), + [aux_sym_use_roaming_token1] = ACTIONS(1565), + [aux_sym_user_token1] = ACTIONS(1567), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1565), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1565), + [aux_sym_visual_host_key_token1] = ACTIONS(1565), + [aux_sym_xauth_location_token1] = ACTIONS(1565), }, [168] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1568), - [anon_sym_DQUOTE] = ACTIONS(1570), - [aux_sym_match_token1] = ACTIONS(1566), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1566), - [aux_sym_address_family_token1] = ACTIONS(1566), - [aux_sym_batch_mode_token1] = ACTIONS(1566), - [aux_sym_bind_address_token1] = ACTIONS(1566), - [aux_sym_bind_interface_token1] = ACTIONS(1566), - [aux_sym_canonical_domains_token1] = ACTIONS(1566), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1566), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1566), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1566), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1566), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1566), - [aux_sym_certificate_file_token1] = ACTIONS(1566), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1566), - [aux_sym_channel_timeout_token1] = ACTIONS(1566), - [aux_sym_check_host_ip_token1] = ACTIONS(1566), - [aux_sym_ciphers_token1] = ACTIONS(1566), - [aux_sym_cipher_token1] = ACTIONS(1568), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1566), - [aux_sym_compression_token1] = ACTIONS(1566), - [aux_sym_connection_attempts_token1] = ACTIONS(1566), - [aux_sym_connect_timeout_token1] = ACTIONS(1566), - [aux_sym_control_master_token1] = ACTIONS(1566), - [aux_sym_control_path_token1] = ACTIONS(1566), - [aux_sym_control_persist_token1] = ACTIONS(1566), - [aux_sym_dynamic_forward_token1] = ACTIONS(1566), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1566), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1566), - [aux_sym_escape_char_token1] = ACTIONS(1566), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1566), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1566), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1566), - [aux_sym_forward_agent_token1] = ACTIONS(1566), - [aux_sym_forward_x11_token1] = ACTIONS(1568), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1566), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1566), - [aux_sym_gateway_ports_token1] = ACTIONS(1566), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1566), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1566), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1566), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1566), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1566), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1566), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1566), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1566), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1566), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1566), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1566), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1566), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1566), - [aux_sym_host_key_alias_token1] = ACTIONS(1566), - [aux_sym_hostname_token1] = ACTIONS(1566), - [aux_sym_identities_only_token1] = ACTIONS(1566), - [aux_sym_identity_agent_token1] = ACTIONS(1566), - [aux_sym_identity_file_token1] = ACTIONS(1566), - [aux_sym_ignore_unknown_token1] = ACTIONS(1566), - [aux_sym_include_token1] = ACTIONS(1566), - [aux_sym_ip_qos_token1] = ACTIONS(1566), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1566), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1566), - [aux_sym_kex_algorithms_token1] = ACTIONS(1566), - [aux_sym_known_hosts_command_token1] = ACTIONS(1566), - [aux_sym_local_command_token1] = ACTIONS(1566), - [aux_sym_local_forward_token1] = ACTIONS(1566), - [aux_sym_log_level_token1] = ACTIONS(1566), - [aux_sym_log_verbose_token1] = ACTIONS(1566), - [aux_sym_macs_token1] = ACTIONS(1566), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1566), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1566), - [aux_sym_password_authentication_token1] = ACTIONS(1566), - [aux_sym_permit_local_command_token1] = ACTIONS(1566), - [aux_sym_permit_remote_open_token1] = ACTIONS(1566), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1566), - [aux_sym_port_token1] = ACTIONS(1566), - [aux_sym_preferred_authentications_token1] = ACTIONS(1566), - [aux_sym_protocol_token1] = ACTIONS(1566), - [aux_sym_proxy_command_token1] = ACTIONS(1566), - [aux_sym_proxy_jump_token1] = ACTIONS(1566), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1566), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1566), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1566), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1566), - [aux_sym_rekey_limit_token1] = ACTIONS(1566), - [aux_sym_remote_command_token1] = ACTIONS(1566), - [aux_sym_remote_forward_token1] = ACTIONS(1566), - [aux_sym_request_tty_token1] = ACTIONS(1566), - [aux_sym_required_rsa_size_token1] = ACTIONS(1566), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1566), - [aux_sym_security_key_provider_token1] = ACTIONS(1566), - [aux_sym_send_env_token1] = ACTIONS(1566), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1566), - [aux_sym_server_alive_interval_token1] = ACTIONS(1566), - [aux_sym_session_type_token1] = ACTIONS(1566), - [aux_sym_set_env_token1] = ACTIONS(1566), - [aux_sym_stdin_null_token1] = ACTIONS(1566), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1566), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1566), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1566), - [aux_sym_syslog_facility_token1] = ACTIONS(1566), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1566), - [aux_sym_keep_alive_token1] = ACTIONS(1566), - [aux_sym_tag_token1] = ACTIONS(1566), - [aux_sym_tunnel_token1] = ACTIONS(1568), - [aux_sym_tunnel_device_token1] = ACTIONS(1566), - [aux_sym_update_host_keys_token1] = ACTIONS(1566), - [aux_sym_use_keychain_token1] = ACTIONS(1566), - [aux_sym_use_roaming_token1] = ACTIONS(1566), - [aux_sym_user_token1] = ACTIONS(1568), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1566), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1566), - [aux_sym_visual_host_key_token1] = ACTIONS(1566), - [aux_sym_xauth_location_token1] = ACTIONS(1566), + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(1575), + [aux_sym_match_token1] = ACTIONS(1571), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1571), + [aux_sym_address_family_token1] = ACTIONS(1571), + [aux_sym_batch_mode_token1] = ACTIONS(1571), + [aux_sym_bind_address_token1] = ACTIONS(1571), + [aux_sym_bind_interface_token1] = ACTIONS(1571), + [aux_sym_canonical_domains_token1] = ACTIONS(1571), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1571), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1571), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1571), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1571), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1571), + [aux_sym_certificate_file_token1] = ACTIONS(1571), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1571), + [aux_sym_channel_timeout_token1] = ACTIONS(1571), + [aux_sym_check_host_ip_token1] = ACTIONS(1571), + [aux_sym_ciphers_token1] = ACTIONS(1571), + [aux_sym_cipher_token1] = ACTIONS(1573), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1571), + [aux_sym_compression_token1] = ACTIONS(1571), + [aux_sym_connection_attempts_token1] = ACTIONS(1571), + [aux_sym_connect_timeout_token1] = ACTIONS(1571), + [aux_sym_control_master_token1] = ACTIONS(1571), + [aux_sym_control_path_token1] = ACTIONS(1571), + [aux_sym_control_persist_token1] = ACTIONS(1571), + [aux_sym_dynamic_forward_token1] = ACTIONS(1571), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1571), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1571), + [aux_sym_escape_char_token1] = ACTIONS(1571), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1571), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1571), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1571), + [aux_sym_forward_agent_token1] = ACTIONS(1571), + [aux_sym_forward_x11_token1] = ACTIONS(1573), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1571), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1571), + [aux_sym_gateway_ports_token1] = ACTIONS(1571), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1571), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1571), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1571), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1571), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1571), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1571), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1571), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1571), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1571), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1571), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1571), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1571), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1571), + [aux_sym_host_key_alias_token1] = ACTIONS(1571), + [aux_sym_hostname_token1] = ACTIONS(1571), + [aux_sym_identities_only_token1] = ACTIONS(1571), + [aux_sym_identity_agent_token1] = ACTIONS(1571), + [aux_sym_identity_file_token1] = ACTIONS(1571), + [aux_sym_ignore_unknown_token1] = ACTIONS(1571), + [aux_sym_include_token1] = ACTIONS(1571), + [aux_sym_ip_qos_token1] = ACTIONS(1571), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1571), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1571), + [aux_sym_kex_algorithms_token1] = ACTIONS(1571), + [aux_sym_known_hosts_command_token1] = ACTIONS(1571), + [aux_sym_local_command_token1] = ACTIONS(1571), + [aux_sym_local_forward_token1] = ACTIONS(1571), + [aux_sym_log_level_token1] = ACTIONS(1571), + [aux_sym_log_verbose_token1] = ACTIONS(1571), + [aux_sym_macs_token1] = ACTIONS(1571), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1571), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1571), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1571), + [aux_sym_password_authentication_token1] = ACTIONS(1571), + [aux_sym_permit_local_command_token1] = ACTIONS(1571), + [aux_sym_permit_remote_open_token1] = ACTIONS(1571), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1571), + [aux_sym_port_token1] = ACTIONS(1571), + [aux_sym_preferred_authentications_token1] = ACTIONS(1571), + [aux_sym_protocol_token1] = ACTIONS(1571), + [aux_sym_proxy_command_token1] = ACTIONS(1571), + [aux_sym_proxy_jump_token1] = ACTIONS(1571), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1571), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1571), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1571), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1571), + [aux_sym_rekey_limit_token1] = ACTIONS(1571), + [aux_sym_remote_command_token1] = ACTIONS(1571), + [aux_sym_remote_forward_token1] = ACTIONS(1571), + [aux_sym_request_tty_token1] = ACTIONS(1571), + [aux_sym_required_rsa_size_token1] = ACTIONS(1571), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1571), + [aux_sym_security_key_provider_token1] = ACTIONS(1571), + [aux_sym_send_env_token1] = ACTIONS(1571), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1571), + [aux_sym_server_alive_interval_token1] = ACTIONS(1571), + [aux_sym_session_type_token1] = ACTIONS(1571), + [aux_sym_set_env_token1] = ACTIONS(1571), + [aux_sym_stdin_null_token1] = ACTIONS(1571), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1571), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1571), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1571), + [aux_sym_syslog_facility_token1] = ACTIONS(1571), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1571), + [aux_sym_keep_alive_token1] = ACTIONS(1571), + [aux_sym_tag_token1] = ACTIONS(1571), + [aux_sym_tunnel_token1] = ACTIONS(1573), + [aux_sym_tunnel_device_token1] = ACTIONS(1571), + [aux_sym_update_host_keys_token1] = ACTIONS(1571), + [aux_sym_use_keychain_token1] = ACTIONS(1571), + [aux_sym_use_roaming_token1] = ACTIONS(1571), + [aux_sym_user_token1] = ACTIONS(1573), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1571), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1571), + [aux_sym_visual_host_key_token1] = ACTIONS(1571), + [aux_sym_xauth_location_token1] = ACTIONS(1571), }, [169] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1574), - [anon_sym_DQUOTE] = ACTIONS(1576), - [aux_sym_match_token1] = ACTIONS(1572), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1572), - [aux_sym_address_family_token1] = ACTIONS(1572), - [aux_sym_batch_mode_token1] = ACTIONS(1572), - [aux_sym_bind_address_token1] = ACTIONS(1572), - [aux_sym_bind_interface_token1] = ACTIONS(1572), - [aux_sym_canonical_domains_token1] = ACTIONS(1572), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1572), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1572), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1572), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1572), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1572), - [aux_sym_certificate_file_token1] = ACTIONS(1572), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1572), - [aux_sym_channel_timeout_token1] = ACTIONS(1572), - [aux_sym_check_host_ip_token1] = ACTIONS(1572), - [aux_sym_ciphers_token1] = ACTIONS(1572), - [aux_sym_cipher_token1] = ACTIONS(1574), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1572), - [aux_sym_compression_token1] = ACTIONS(1572), - [aux_sym_connection_attempts_token1] = ACTIONS(1572), - [aux_sym_connect_timeout_token1] = ACTIONS(1572), - [aux_sym_control_master_token1] = ACTIONS(1572), - [aux_sym_control_path_token1] = ACTIONS(1572), - [aux_sym_control_persist_token1] = ACTIONS(1572), - [aux_sym_dynamic_forward_token1] = ACTIONS(1572), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1572), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1572), - [aux_sym_escape_char_token1] = ACTIONS(1572), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1572), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1572), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1572), - [aux_sym_forward_agent_token1] = ACTIONS(1572), - [aux_sym_forward_x11_token1] = ACTIONS(1574), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1572), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1572), - [aux_sym_gateway_ports_token1] = ACTIONS(1572), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1572), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1572), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1572), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1572), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1572), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1572), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1572), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1572), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1572), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1572), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1572), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1572), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1572), - [aux_sym_host_key_alias_token1] = ACTIONS(1572), - [aux_sym_hostname_token1] = ACTIONS(1572), - [aux_sym_identities_only_token1] = ACTIONS(1572), - [aux_sym_identity_agent_token1] = ACTIONS(1572), - [aux_sym_identity_file_token1] = ACTIONS(1572), - [aux_sym_ignore_unknown_token1] = ACTIONS(1572), - [aux_sym_include_token1] = ACTIONS(1572), - [aux_sym_ip_qos_token1] = ACTIONS(1572), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1572), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1572), - [aux_sym_kex_algorithms_token1] = ACTIONS(1572), - [aux_sym_known_hosts_command_token1] = ACTIONS(1572), - [aux_sym_local_command_token1] = ACTIONS(1572), - [aux_sym_local_forward_token1] = ACTIONS(1572), - [aux_sym_log_level_token1] = ACTIONS(1572), - [aux_sym_log_verbose_token1] = ACTIONS(1572), - [aux_sym_macs_token1] = ACTIONS(1572), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1572), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1572), - [aux_sym_password_authentication_token1] = ACTIONS(1572), - [aux_sym_permit_local_command_token1] = ACTIONS(1572), - [aux_sym_permit_remote_open_token1] = ACTIONS(1572), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1572), - [aux_sym_port_token1] = ACTIONS(1572), - [aux_sym_preferred_authentications_token1] = ACTIONS(1572), - [aux_sym_protocol_token1] = ACTIONS(1572), - [aux_sym_proxy_command_token1] = ACTIONS(1572), - [aux_sym_proxy_jump_token1] = ACTIONS(1572), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1572), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1572), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1572), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1572), - [aux_sym_rekey_limit_token1] = ACTIONS(1572), - [aux_sym_remote_command_token1] = ACTIONS(1572), - [aux_sym_remote_forward_token1] = ACTIONS(1572), - [aux_sym_request_tty_token1] = ACTIONS(1572), - [aux_sym_required_rsa_size_token1] = ACTIONS(1572), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1572), - [aux_sym_security_key_provider_token1] = ACTIONS(1572), - [aux_sym_send_env_token1] = ACTIONS(1572), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1572), - [aux_sym_server_alive_interval_token1] = ACTIONS(1572), - [aux_sym_session_type_token1] = ACTIONS(1572), - [aux_sym_set_env_token1] = ACTIONS(1572), - [aux_sym_stdin_null_token1] = ACTIONS(1572), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1572), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1572), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1572), - [aux_sym_syslog_facility_token1] = ACTIONS(1572), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1572), - [aux_sym_keep_alive_token1] = ACTIONS(1572), - [aux_sym_tag_token1] = ACTIONS(1572), - [aux_sym_tunnel_token1] = ACTIONS(1574), - [aux_sym_tunnel_device_token1] = ACTIONS(1572), - [aux_sym_update_host_keys_token1] = ACTIONS(1572), - [aux_sym_use_keychain_token1] = ACTIONS(1572), - [aux_sym_use_roaming_token1] = ACTIONS(1572), - [aux_sym_user_token1] = ACTIONS(1574), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1572), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1572), - [aux_sym_visual_host_key_token1] = ACTIONS(1572), - [aux_sym_xauth_location_token1] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(1581), + [aux_sym_match_token1] = ACTIONS(1577), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1577), + [aux_sym_address_family_token1] = ACTIONS(1577), + [aux_sym_batch_mode_token1] = ACTIONS(1577), + [aux_sym_bind_address_token1] = ACTIONS(1577), + [aux_sym_bind_interface_token1] = ACTIONS(1577), + [aux_sym_canonical_domains_token1] = ACTIONS(1577), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1577), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1577), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1577), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1577), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1577), + [aux_sym_certificate_file_token1] = ACTIONS(1577), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1577), + [aux_sym_channel_timeout_token1] = ACTIONS(1577), + [aux_sym_check_host_ip_token1] = ACTIONS(1577), + [aux_sym_ciphers_token1] = ACTIONS(1577), + [aux_sym_cipher_token1] = ACTIONS(1579), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1577), + [aux_sym_compression_token1] = ACTIONS(1577), + [aux_sym_connection_attempts_token1] = ACTIONS(1577), + [aux_sym_connect_timeout_token1] = ACTIONS(1577), + [aux_sym_control_master_token1] = ACTIONS(1577), + [aux_sym_control_path_token1] = ACTIONS(1577), + [aux_sym_control_persist_token1] = ACTIONS(1577), + [aux_sym_dynamic_forward_token1] = ACTIONS(1577), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1577), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1577), + [aux_sym_escape_char_token1] = ACTIONS(1577), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1577), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1577), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1577), + [aux_sym_forward_agent_token1] = ACTIONS(1577), + [aux_sym_forward_x11_token1] = ACTIONS(1579), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1577), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1577), + [aux_sym_gateway_ports_token1] = ACTIONS(1577), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1577), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1577), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1577), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1577), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1577), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1577), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1577), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1577), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1577), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1577), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1577), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1577), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1577), + [aux_sym_host_key_alias_token1] = ACTIONS(1577), + [aux_sym_hostname_token1] = ACTIONS(1577), + [aux_sym_identities_only_token1] = ACTIONS(1577), + [aux_sym_identity_agent_token1] = ACTIONS(1577), + [aux_sym_identity_file_token1] = ACTIONS(1577), + [aux_sym_ignore_unknown_token1] = ACTIONS(1577), + [aux_sym_include_token1] = ACTIONS(1577), + [aux_sym_ip_qos_token1] = ACTIONS(1577), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1577), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1577), + [aux_sym_kex_algorithms_token1] = ACTIONS(1577), + [aux_sym_known_hosts_command_token1] = ACTIONS(1577), + [aux_sym_local_command_token1] = ACTIONS(1577), + [aux_sym_local_forward_token1] = ACTIONS(1577), + [aux_sym_log_level_token1] = ACTIONS(1577), + [aux_sym_log_verbose_token1] = ACTIONS(1577), + [aux_sym_macs_token1] = ACTIONS(1577), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1577), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1577), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1577), + [aux_sym_password_authentication_token1] = ACTIONS(1577), + [aux_sym_permit_local_command_token1] = ACTIONS(1577), + [aux_sym_permit_remote_open_token1] = ACTIONS(1577), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1577), + [aux_sym_port_token1] = ACTIONS(1577), + [aux_sym_preferred_authentications_token1] = ACTIONS(1577), + [aux_sym_protocol_token1] = ACTIONS(1577), + [aux_sym_proxy_command_token1] = ACTIONS(1577), + [aux_sym_proxy_jump_token1] = ACTIONS(1577), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1577), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1577), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1577), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1577), + [aux_sym_rekey_limit_token1] = ACTIONS(1577), + [aux_sym_remote_command_token1] = ACTIONS(1577), + [aux_sym_remote_forward_token1] = ACTIONS(1577), + [aux_sym_request_tty_token1] = ACTIONS(1577), + [aux_sym_required_rsa_size_token1] = ACTIONS(1577), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1577), + [aux_sym_security_key_provider_token1] = ACTIONS(1577), + [aux_sym_send_env_token1] = ACTIONS(1577), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1577), + [aux_sym_server_alive_interval_token1] = ACTIONS(1577), + [aux_sym_session_type_token1] = ACTIONS(1577), + [aux_sym_set_env_token1] = ACTIONS(1577), + [aux_sym_stdin_null_token1] = ACTIONS(1577), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1577), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1577), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1577), + [aux_sym_syslog_facility_token1] = ACTIONS(1577), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1577), + [aux_sym_keep_alive_token1] = ACTIONS(1577), + [aux_sym_tag_token1] = ACTIONS(1577), + [aux_sym_tunnel_token1] = ACTIONS(1579), + [aux_sym_tunnel_device_token1] = ACTIONS(1577), + [aux_sym_update_host_keys_token1] = ACTIONS(1577), + [aux_sym_use_keychain_token1] = ACTIONS(1577), + [aux_sym_use_roaming_token1] = ACTIONS(1577), + [aux_sym_user_token1] = ACTIONS(1579), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1577), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1577), + [aux_sym_visual_host_key_token1] = ACTIONS(1577), + [aux_sym_xauth_location_token1] = ACTIONS(1577), }, [170] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1580), - [anon_sym_DQUOTE] = ACTIONS(1582), - [aux_sym_match_token1] = ACTIONS(1578), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1578), - [aux_sym_address_family_token1] = ACTIONS(1578), - [aux_sym_batch_mode_token1] = ACTIONS(1578), - [aux_sym_bind_address_token1] = ACTIONS(1578), - [aux_sym_bind_interface_token1] = ACTIONS(1578), - [aux_sym_canonical_domains_token1] = ACTIONS(1578), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1578), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1578), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1578), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1578), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1578), - [aux_sym_certificate_file_token1] = ACTIONS(1578), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1578), - [aux_sym_channel_timeout_token1] = ACTIONS(1578), - [aux_sym_check_host_ip_token1] = ACTIONS(1578), - [aux_sym_ciphers_token1] = ACTIONS(1578), - [aux_sym_cipher_token1] = ACTIONS(1580), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1578), - [aux_sym_compression_token1] = ACTIONS(1578), - [aux_sym_connection_attempts_token1] = ACTIONS(1578), - [aux_sym_connect_timeout_token1] = ACTIONS(1578), - [aux_sym_control_master_token1] = ACTIONS(1578), - [aux_sym_control_path_token1] = ACTIONS(1578), - [aux_sym_control_persist_token1] = ACTIONS(1578), - [aux_sym_dynamic_forward_token1] = ACTIONS(1578), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1578), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1578), - [aux_sym_escape_char_token1] = ACTIONS(1578), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1578), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1578), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1578), - [aux_sym_forward_agent_token1] = ACTIONS(1578), - [aux_sym_forward_x11_token1] = ACTIONS(1580), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1578), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1578), - [aux_sym_gateway_ports_token1] = ACTIONS(1578), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1578), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1578), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1578), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1578), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1578), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1578), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1578), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1578), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1578), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1578), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1578), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1578), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1578), - [aux_sym_host_key_alias_token1] = ACTIONS(1578), - [aux_sym_hostname_token1] = ACTIONS(1578), - [aux_sym_identities_only_token1] = ACTIONS(1578), - [aux_sym_identity_agent_token1] = ACTIONS(1578), - [aux_sym_identity_file_token1] = ACTIONS(1578), - [aux_sym_ignore_unknown_token1] = ACTIONS(1578), - [aux_sym_include_token1] = ACTIONS(1578), - [aux_sym_ip_qos_token1] = ACTIONS(1578), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1578), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1578), - [aux_sym_kex_algorithms_token1] = ACTIONS(1578), - [aux_sym_known_hosts_command_token1] = ACTIONS(1578), - [aux_sym_local_command_token1] = ACTIONS(1578), - [aux_sym_local_forward_token1] = ACTIONS(1578), - [aux_sym_log_level_token1] = ACTIONS(1578), - [aux_sym_log_verbose_token1] = ACTIONS(1578), - [aux_sym_macs_token1] = ACTIONS(1578), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1578), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1578), - [aux_sym_password_authentication_token1] = ACTIONS(1578), - [aux_sym_permit_local_command_token1] = ACTIONS(1578), - [aux_sym_permit_remote_open_token1] = ACTIONS(1578), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1578), - [aux_sym_port_token1] = ACTIONS(1578), - [aux_sym_preferred_authentications_token1] = ACTIONS(1578), - [aux_sym_protocol_token1] = ACTIONS(1578), - [aux_sym_proxy_command_token1] = ACTIONS(1578), - [aux_sym_proxy_jump_token1] = ACTIONS(1578), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1578), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1578), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1578), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1578), - [aux_sym_rekey_limit_token1] = ACTIONS(1578), - [aux_sym_remote_command_token1] = ACTIONS(1578), - [aux_sym_remote_forward_token1] = ACTIONS(1578), - [aux_sym_request_tty_token1] = ACTIONS(1578), - [aux_sym_required_rsa_size_token1] = ACTIONS(1578), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1578), - [aux_sym_security_key_provider_token1] = ACTIONS(1578), - [aux_sym_send_env_token1] = ACTIONS(1578), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1578), - [aux_sym_server_alive_interval_token1] = ACTIONS(1578), - [aux_sym_session_type_token1] = ACTIONS(1578), - [aux_sym_set_env_token1] = ACTIONS(1578), - [aux_sym_stdin_null_token1] = ACTIONS(1578), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1578), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1578), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1578), - [aux_sym_syslog_facility_token1] = ACTIONS(1578), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1578), - [aux_sym_keep_alive_token1] = ACTIONS(1578), - [aux_sym_tag_token1] = ACTIONS(1578), - [aux_sym_tunnel_token1] = ACTIONS(1580), - [aux_sym_tunnel_device_token1] = ACTIONS(1578), - [aux_sym_update_host_keys_token1] = ACTIONS(1578), - [aux_sym_use_keychain_token1] = ACTIONS(1578), - [aux_sym_use_roaming_token1] = ACTIONS(1578), - [aux_sym_user_token1] = ACTIONS(1580), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1578), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1578), - [aux_sym_visual_host_key_token1] = ACTIONS(1578), - [aux_sym_xauth_location_token1] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1585), + [anon_sym_DQUOTE] = ACTIONS(1587), + [aux_sym_match_token1] = ACTIONS(1583), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1583), + [aux_sym_address_family_token1] = ACTIONS(1583), + [aux_sym_batch_mode_token1] = ACTIONS(1583), + [aux_sym_bind_address_token1] = ACTIONS(1583), + [aux_sym_bind_interface_token1] = ACTIONS(1583), + [aux_sym_canonical_domains_token1] = ACTIONS(1583), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1583), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1583), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1583), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1583), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1583), + [aux_sym_certificate_file_token1] = ACTIONS(1583), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1583), + [aux_sym_channel_timeout_token1] = ACTIONS(1583), + [aux_sym_check_host_ip_token1] = ACTIONS(1583), + [aux_sym_ciphers_token1] = ACTIONS(1583), + [aux_sym_cipher_token1] = ACTIONS(1585), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1583), + [aux_sym_compression_token1] = ACTIONS(1583), + [aux_sym_connection_attempts_token1] = ACTIONS(1583), + [aux_sym_connect_timeout_token1] = ACTIONS(1583), + [aux_sym_control_master_token1] = ACTIONS(1583), + [aux_sym_control_path_token1] = ACTIONS(1583), + [aux_sym_control_persist_token1] = ACTIONS(1583), + [aux_sym_dynamic_forward_token1] = ACTIONS(1583), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1583), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1583), + [aux_sym_escape_char_token1] = ACTIONS(1583), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1583), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1583), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1583), + [aux_sym_forward_agent_token1] = ACTIONS(1583), + [aux_sym_forward_x11_token1] = ACTIONS(1585), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1583), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1583), + [aux_sym_gateway_ports_token1] = ACTIONS(1583), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1583), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1583), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1583), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1583), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1583), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1583), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1583), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1583), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1583), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1583), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1583), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1583), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1583), + [aux_sym_host_key_alias_token1] = ACTIONS(1583), + [aux_sym_hostname_token1] = ACTIONS(1583), + [aux_sym_identities_only_token1] = ACTIONS(1583), + [aux_sym_identity_agent_token1] = ACTIONS(1583), + [aux_sym_identity_file_token1] = ACTIONS(1583), + [aux_sym_ignore_unknown_token1] = ACTIONS(1583), + [aux_sym_include_token1] = ACTIONS(1583), + [aux_sym_ip_qos_token1] = ACTIONS(1583), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1583), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1583), + [aux_sym_kex_algorithms_token1] = ACTIONS(1583), + [aux_sym_known_hosts_command_token1] = ACTIONS(1583), + [aux_sym_local_command_token1] = ACTIONS(1583), + [aux_sym_local_forward_token1] = ACTIONS(1583), + [aux_sym_log_level_token1] = ACTIONS(1583), + [aux_sym_log_verbose_token1] = ACTIONS(1583), + [aux_sym_macs_token1] = ACTIONS(1583), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1583), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1583), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1583), + [aux_sym_password_authentication_token1] = ACTIONS(1583), + [aux_sym_permit_local_command_token1] = ACTIONS(1583), + [aux_sym_permit_remote_open_token1] = ACTIONS(1583), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1583), + [aux_sym_port_token1] = ACTIONS(1583), + [aux_sym_preferred_authentications_token1] = ACTIONS(1583), + [aux_sym_protocol_token1] = ACTIONS(1583), + [aux_sym_proxy_command_token1] = ACTIONS(1583), + [aux_sym_proxy_jump_token1] = ACTIONS(1583), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1583), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1583), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1583), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1583), + [aux_sym_rekey_limit_token1] = ACTIONS(1583), + [aux_sym_remote_command_token1] = ACTIONS(1583), + [aux_sym_remote_forward_token1] = ACTIONS(1583), + [aux_sym_request_tty_token1] = ACTIONS(1583), + [aux_sym_required_rsa_size_token1] = ACTIONS(1583), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1583), + [aux_sym_security_key_provider_token1] = ACTIONS(1583), + [aux_sym_send_env_token1] = ACTIONS(1583), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1583), + [aux_sym_server_alive_interval_token1] = ACTIONS(1583), + [aux_sym_session_type_token1] = ACTIONS(1583), + [aux_sym_set_env_token1] = ACTIONS(1583), + [aux_sym_stdin_null_token1] = ACTIONS(1583), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1583), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1583), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1583), + [aux_sym_syslog_facility_token1] = ACTIONS(1583), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1583), + [aux_sym_keep_alive_token1] = ACTIONS(1583), + [aux_sym_tag_token1] = ACTIONS(1583), + [aux_sym_tunnel_token1] = ACTIONS(1585), + [aux_sym_tunnel_device_token1] = ACTIONS(1583), + [aux_sym_update_host_keys_token1] = ACTIONS(1583), + [aux_sym_use_keychain_token1] = ACTIONS(1583), + [aux_sym_use_roaming_token1] = ACTIONS(1583), + [aux_sym_user_token1] = ACTIONS(1585), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1583), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1583), + [aux_sym_visual_host_key_token1] = ACTIONS(1583), + [aux_sym_xauth_location_token1] = ACTIONS(1583), }, [171] = { - [ts_builtin_sym_end] = ACTIONS(1584), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1586), - [anon_sym_DQUOTE] = ACTIONS(1588), - [aux_sym_match_token1] = ACTIONS(1584), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1584), - [aux_sym_address_family_token1] = ACTIONS(1584), - [aux_sym_batch_mode_token1] = ACTIONS(1584), - [aux_sym_bind_address_token1] = ACTIONS(1584), - [aux_sym_bind_interface_token1] = ACTIONS(1584), - [aux_sym_canonical_domains_token1] = ACTIONS(1584), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1584), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1584), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1584), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1584), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1584), - [aux_sym_certificate_file_token1] = ACTIONS(1584), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1584), - [aux_sym_channel_timeout_token1] = ACTIONS(1584), - [aux_sym_check_host_ip_token1] = ACTIONS(1584), - [aux_sym_ciphers_token1] = ACTIONS(1584), - [aux_sym_cipher_token1] = ACTIONS(1586), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1584), - [aux_sym_compression_token1] = ACTIONS(1584), - [aux_sym_connection_attempts_token1] = ACTIONS(1584), - [aux_sym_connect_timeout_token1] = ACTIONS(1584), - [aux_sym_control_master_token1] = ACTIONS(1584), - [aux_sym_control_path_token1] = ACTIONS(1584), - [aux_sym_control_persist_token1] = ACTIONS(1584), - [aux_sym_dynamic_forward_token1] = ACTIONS(1584), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1584), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1584), - [aux_sym_escape_char_token1] = ACTIONS(1584), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1584), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1584), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1584), - [aux_sym_forward_agent_token1] = ACTIONS(1584), - [aux_sym_forward_x11_token1] = ACTIONS(1586), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1584), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1584), - [aux_sym_gateway_ports_token1] = ACTIONS(1584), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1584), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1584), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1584), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1584), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1584), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1584), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1584), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1584), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1584), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1584), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1584), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1584), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1584), - [aux_sym_host_key_alias_token1] = ACTIONS(1584), - [aux_sym_hostname_token1] = ACTIONS(1584), - [aux_sym_identities_only_token1] = ACTIONS(1584), - [aux_sym_identity_agent_token1] = ACTIONS(1584), - [aux_sym_identity_file_token1] = ACTIONS(1584), - [aux_sym_ignore_unknown_token1] = ACTIONS(1584), - [aux_sym_include_token1] = ACTIONS(1584), - [aux_sym_ip_qos_token1] = ACTIONS(1584), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1584), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1584), - [aux_sym_kex_algorithms_token1] = ACTIONS(1584), - [aux_sym_known_hosts_command_token1] = ACTIONS(1584), - [aux_sym_local_command_token1] = ACTIONS(1584), - [aux_sym_local_forward_token1] = ACTIONS(1584), - [aux_sym_log_level_token1] = ACTIONS(1584), - [aux_sym_log_verbose_token1] = ACTIONS(1584), - [aux_sym_macs_token1] = ACTIONS(1584), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1584), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1584), - [aux_sym_password_authentication_token1] = ACTIONS(1584), - [aux_sym_permit_local_command_token1] = ACTIONS(1584), - [aux_sym_permit_remote_open_token1] = ACTIONS(1584), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1584), - [aux_sym_port_token1] = ACTIONS(1584), - [aux_sym_preferred_authentications_token1] = ACTIONS(1584), - [aux_sym_protocol_token1] = ACTIONS(1584), - [aux_sym_proxy_command_token1] = ACTIONS(1584), - [aux_sym_proxy_jump_token1] = ACTIONS(1584), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1584), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1584), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1584), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1584), - [aux_sym_rekey_limit_token1] = ACTIONS(1584), - [aux_sym_remote_command_token1] = ACTIONS(1584), - [aux_sym_remote_forward_token1] = ACTIONS(1584), - [aux_sym_request_tty_token1] = ACTIONS(1584), - [aux_sym_required_rsa_size_token1] = ACTIONS(1584), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1584), - [aux_sym_security_key_provider_token1] = ACTIONS(1584), - [aux_sym_send_env_token1] = ACTIONS(1584), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1584), - [aux_sym_server_alive_interval_token1] = ACTIONS(1584), - [aux_sym_session_type_token1] = ACTIONS(1584), - [aux_sym_set_env_token1] = ACTIONS(1584), - [aux_sym_stdin_null_token1] = ACTIONS(1584), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1584), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1584), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1584), - [aux_sym_syslog_facility_token1] = ACTIONS(1584), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1584), - [aux_sym_keep_alive_token1] = ACTIONS(1584), - [aux_sym_tag_token1] = ACTIONS(1584), - [aux_sym_tunnel_token1] = ACTIONS(1586), - [aux_sym_tunnel_device_token1] = ACTIONS(1584), - [aux_sym_update_host_keys_token1] = ACTIONS(1584), - [aux_sym_use_keychain_token1] = ACTIONS(1584), - [aux_sym_use_roaming_token1] = ACTIONS(1584), - [aux_sym_user_token1] = ACTIONS(1586), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1584), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1584), - [aux_sym_visual_host_key_token1] = ACTIONS(1584), - [aux_sym_xauth_location_token1] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1591), + [anon_sym_DQUOTE] = ACTIONS(1593), + [aux_sym_match_token1] = ACTIONS(1589), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1589), + [aux_sym_address_family_token1] = ACTIONS(1589), + [aux_sym_batch_mode_token1] = ACTIONS(1589), + [aux_sym_bind_address_token1] = ACTIONS(1589), + [aux_sym_bind_interface_token1] = ACTIONS(1589), + [aux_sym_canonical_domains_token1] = ACTIONS(1589), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1589), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1589), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1589), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1589), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1589), + [aux_sym_certificate_file_token1] = ACTIONS(1589), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1589), + [aux_sym_channel_timeout_token1] = ACTIONS(1589), + [aux_sym_check_host_ip_token1] = ACTIONS(1589), + [aux_sym_ciphers_token1] = ACTIONS(1589), + [aux_sym_cipher_token1] = ACTIONS(1591), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1589), + [aux_sym_compression_token1] = ACTIONS(1589), + [aux_sym_connection_attempts_token1] = ACTIONS(1589), + [aux_sym_connect_timeout_token1] = ACTIONS(1589), + [aux_sym_control_master_token1] = ACTIONS(1589), + [aux_sym_control_path_token1] = ACTIONS(1589), + [aux_sym_control_persist_token1] = ACTIONS(1589), + [aux_sym_dynamic_forward_token1] = ACTIONS(1589), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1589), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1589), + [aux_sym_escape_char_token1] = ACTIONS(1589), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1589), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1589), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1589), + [aux_sym_forward_agent_token1] = ACTIONS(1589), + [aux_sym_forward_x11_token1] = ACTIONS(1591), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1589), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1589), + [aux_sym_gateway_ports_token1] = ACTIONS(1589), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1589), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1589), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1589), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1589), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1589), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1589), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1589), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1589), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1589), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1589), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1589), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1589), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1589), + [aux_sym_host_key_alias_token1] = ACTIONS(1589), + [aux_sym_hostname_token1] = ACTIONS(1589), + [aux_sym_identities_only_token1] = ACTIONS(1589), + [aux_sym_identity_agent_token1] = ACTIONS(1589), + [aux_sym_identity_file_token1] = ACTIONS(1589), + [aux_sym_ignore_unknown_token1] = ACTIONS(1589), + [aux_sym_include_token1] = ACTIONS(1589), + [aux_sym_ip_qos_token1] = ACTIONS(1589), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1589), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1589), + [aux_sym_kex_algorithms_token1] = ACTIONS(1589), + [aux_sym_known_hosts_command_token1] = ACTIONS(1589), + [aux_sym_local_command_token1] = ACTIONS(1589), + [aux_sym_local_forward_token1] = ACTIONS(1589), + [aux_sym_log_level_token1] = ACTIONS(1589), + [aux_sym_log_verbose_token1] = ACTIONS(1589), + [aux_sym_macs_token1] = ACTIONS(1589), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1589), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1589), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1589), + [aux_sym_password_authentication_token1] = ACTIONS(1589), + [aux_sym_permit_local_command_token1] = ACTIONS(1589), + [aux_sym_permit_remote_open_token1] = ACTIONS(1589), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1589), + [aux_sym_port_token1] = ACTIONS(1589), + [aux_sym_preferred_authentications_token1] = ACTIONS(1589), + [aux_sym_protocol_token1] = ACTIONS(1589), + [aux_sym_proxy_command_token1] = ACTIONS(1589), + [aux_sym_proxy_jump_token1] = ACTIONS(1589), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1589), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1589), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1589), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1589), + [aux_sym_rekey_limit_token1] = ACTIONS(1589), + [aux_sym_remote_command_token1] = ACTIONS(1589), + [aux_sym_remote_forward_token1] = ACTIONS(1589), + [aux_sym_request_tty_token1] = ACTIONS(1589), + [aux_sym_required_rsa_size_token1] = ACTIONS(1589), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1589), + [aux_sym_security_key_provider_token1] = ACTIONS(1589), + [aux_sym_send_env_token1] = ACTIONS(1589), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1589), + [aux_sym_server_alive_interval_token1] = ACTIONS(1589), + [aux_sym_session_type_token1] = ACTIONS(1589), + [aux_sym_set_env_token1] = ACTIONS(1589), + [aux_sym_stdin_null_token1] = ACTIONS(1589), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1589), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1589), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1589), + [aux_sym_syslog_facility_token1] = ACTIONS(1589), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1589), + [aux_sym_keep_alive_token1] = ACTIONS(1589), + [aux_sym_tag_token1] = ACTIONS(1589), + [aux_sym_tunnel_token1] = ACTIONS(1591), + [aux_sym_tunnel_device_token1] = ACTIONS(1589), + [aux_sym_update_host_keys_token1] = ACTIONS(1589), + [aux_sym_use_keychain_token1] = ACTIONS(1589), + [aux_sym_use_roaming_token1] = ACTIONS(1589), + [aux_sym_user_token1] = ACTIONS(1591), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1589), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1589), + [aux_sym_visual_host_key_token1] = ACTIONS(1589), + [aux_sym_xauth_location_token1] = ACTIONS(1589), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1592), - [anon_sym_DQUOTE] = ACTIONS(1594), - [aux_sym_match_token1] = ACTIONS(1590), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1590), - [aux_sym_address_family_token1] = ACTIONS(1590), - [aux_sym_batch_mode_token1] = ACTIONS(1590), - [aux_sym_bind_address_token1] = ACTIONS(1590), - [aux_sym_bind_interface_token1] = ACTIONS(1590), - [aux_sym_canonical_domains_token1] = ACTIONS(1590), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1590), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1590), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1590), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1590), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1590), - [aux_sym_certificate_file_token1] = ACTIONS(1590), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1590), - [aux_sym_channel_timeout_token1] = ACTIONS(1590), - [aux_sym_check_host_ip_token1] = ACTIONS(1590), - [aux_sym_ciphers_token1] = ACTIONS(1590), - [aux_sym_cipher_token1] = ACTIONS(1592), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1590), - [aux_sym_compression_token1] = ACTIONS(1590), - [aux_sym_connection_attempts_token1] = ACTIONS(1590), - [aux_sym_connect_timeout_token1] = ACTIONS(1590), - [aux_sym_control_master_token1] = ACTIONS(1590), - [aux_sym_control_path_token1] = ACTIONS(1590), - [aux_sym_control_persist_token1] = ACTIONS(1590), - [aux_sym_dynamic_forward_token1] = ACTIONS(1590), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1590), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1590), - [aux_sym_escape_char_token1] = ACTIONS(1590), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1590), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1590), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1590), - [aux_sym_forward_agent_token1] = ACTIONS(1590), - [aux_sym_forward_x11_token1] = ACTIONS(1592), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1590), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1590), - [aux_sym_gateway_ports_token1] = ACTIONS(1590), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1590), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1590), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1590), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1590), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1590), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1590), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1590), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1590), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1590), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1590), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1590), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1590), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1590), - [aux_sym_host_key_alias_token1] = ACTIONS(1590), - [aux_sym_hostname_token1] = ACTIONS(1590), - [aux_sym_identities_only_token1] = ACTIONS(1590), - [aux_sym_identity_agent_token1] = ACTIONS(1590), - [aux_sym_identity_file_token1] = ACTIONS(1590), - [aux_sym_ignore_unknown_token1] = ACTIONS(1590), - [aux_sym_include_token1] = ACTIONS(1590), - [aux_sym_ip_qos_token1] = ACTIONS(1590), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1590), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1590), - [aux_sym_kex_algorithms_token1] = ACTIONS(1590), - [aux_sym_known_hosts_command_token1] = ACTIONS(1590), - [aux_sym_local_command_token1] = ACTIONS(1590), - [aux_sym_local_forward_token1] = ACTIONS(1590), - [aux_sym_log_level_token1] = ACTIONS(1590), - [aux_sym_log_verbose_token1] = ACTIONS(1590), - [aux_sym_macs_token1] = ACTIONS(1590), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1590), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1590), - [aux_sym_password_authentication_token1] = ACTIONS(1590), - [aux_sym_permit_local_command_token1] = ACTIONS(1590), - [aux_sym_permit_remote_open_token1] = ACTIONS(1590), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1590), - [aux_sym_port_token1] = ACTIONS(1590), - [aux_sym_preferred_authentications_token1] = ACTIONS(1590), - [aux_sym_protocol_token1] = ACTIONS(1590), - [aux_sym_proxy_command_token1] = ACTIONS(1590), - [aux_sym_proxy_jump_token1] = ACTIONS(1590), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1590), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1590), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1590), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1590), - [aux_sym_rekey_limit_token1] = ACTIONS(1590), - [aux_sym_remote_command_token1] = ACTIONS(1590), - [aux_sym_remote_forward_token1] = ACTIONS(1590), - [aux_sym_request_tty_token1] = ACTIONS(1590), - [aux_sym_required_rsa_size_token1] = ACTIONS(1590), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1590), - [aux_sym_security_key_provider_token1] = ACTIONS(1590), - [aux_sym_send_env_token1] = ACTIONS(1590), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1590), - [aux_sym_server_alive_interval_token1] = ACTIONS(1590), - [aux_sym_session_type_token1] = ACTIONS(1590), - [aux_sym_set_env_token1] = ACTIONS(1590), - [aux_sym_stdin_null_token1] = ACTIONS(1590), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1590), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1590), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1590), - [aux_sym_syslog_facility_token1] = ACTIONS(1590), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1590), - [aux_sym_keep_alive_token1] = ACTIONS(1590), - [aux_sym_tag_token1] = ACTIONS(1590), - [aux_sym_tunnel_token1] = ACTIONS(1592), - [aux_sym_tunnel_device_token1] = ACTIONS(1590), - [aux_sym_update_host_keys_token1] = ACTIONS(1590), - [aux_sym_use_keychain_token1] = ACTIONS(1590), - [aux_sym_use_roaming_token1] = ACTIONS(1590), - [aux_sym_user_token1] = ACTIONS(1592), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1590), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1590), - [aux_sym_visual_host_key_token1] = ACTIONS(1590), - [aux_sym_xauth_location_token1] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(1595), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1599), + [aux_sym_match_token1] = ACTIONS(1595), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1595), + [aux_sym_address_family_token1] = ACTIONS(1595), + [aux_sym_batch_mode_token1] = ACTIONS(1595), + [aux_sym_bind_address_token1] = ACTIONS(1595), + [aux_sym_bind_interface_token1] = ACTIONS(1595), + [aux_sym_canonical_domains_token1] = ACTIONS(1595), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1595), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1595), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1595), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1595), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1595), + [aux_sym_certificate_file_token1] = ACTIONS(1595), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1595), + [aux_sym_channel_timeout_token1] = ACTIONS(1595), + [aux_sym_check_host_ip_token1] = ACTIONS(1595), + [aux_sym_ciphers_token1] = ACTIONS(1595), + [aux_sym_cipher_token1] = ACTIONS(1597), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1595), + [aux_sym_compression_token1] = ACTIONS(1595), + [aux_sym_connection_attempts_token1] = ACTIONS(1595), + [aux_sym_connect_timeout_token1] = ACTIONS(1595), + [aux_sym_control_master_token1] = ACTIONS(1595), + [aux_sym_control_path_token1] = ACTIONS(1595), + [aux_sym_control_persist_token1] = ACTIONS(1595), + [aux_sym_dynamic_forward_token1] = ACTIONS(1595), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1595), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1595), + [aux_sym_escape_char_token1] = ACTIONS(1595), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1595), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1595), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1595), + [aux_sym_forward_agent_token1] = ACTIONS(1595), + [aux_sym_forward_x11_token1] = ACTIONS(1597), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1595), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1595), + [aux_sym_gateway_ports_token1] = ACTIONS(1595), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1595), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1595), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1595), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1595), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1595), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1595), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1595), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1595), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1595), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1595), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1595), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1595), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1595), + [aux_sym_host_key_alias_token1] = ACTIONS(1595), + [aux_sym_hostname_token1] = ACTIONS(1595), + [aux_sym_identities_only_token1] = ACTIONS(1595), + [aux_sym_identity_agent_token1] = ACTIONS(1595), + [aux_sym_identity_file_token1] = ACTIONS(1595), + [aux_sym_ignore_unknown_token1] = ACTIONS(1595), + [aux_sym_include_token1] = ACTIONS(1595), + [aux_sym_ip_qos_token1] = ACTIONS(1595), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1595), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1595), + [aux_sym_kex_algorithms_token1] = ACTIONS(1595), + [aux_sym_known_hosts_command_token1] = ACTIONS(1595), + [aux_sym_local_command_token1] = ACTIONS(1595), + [aux_sym_local_forward_token1] = ACTIONS(1595), + [aux_sym_log_level_token1] = ACTIONS(1595), + [aux_sym_log_verbose_token1] = ACTIONS(1595), + [aux_sym_macs_token1] = ACTIONS(1595), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1595), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1595), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1595), + [aux_sym_password_authentication_token1] = ACTIONS(1595), + [aux_sym_permit_local_command_token1] = ACTIONS(1595), + [aux_sym_permit_remote_open_token1] = ACTIONS(1595), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1595), + [aux_sym_port_token1] = ACTIONS(1595), + [aux_sym_preferred_authentications_token1] = ACTIONS(1595), + [aux_sym_protocol_token1] = ACTIONS(1595), + [aux_sym_proxy_command_token1] = ACTIONS(1595), + [aux_sym_proxy_jump_token1] = ACTIONS(1595), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1595), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1595), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1595), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1595), + [aux_sym_rekey_limit_token1] = ACTIONS(1595), + [aux_sym_remote_command_token1] = ACTIONS(1595), + [aux_sym_remote_forward_token1] = ACTIONS(1595), + [aux_sym_request_tty_token1] = ACTIONS(1595), + [aux_sym_required_rsa_size_token1] = ACTIONS(1595), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1595), + [aux_sym_security_key_provider_token1] = ACTIONS(1595), + [aux_sym_send_env_token1] = ACTIONS(1595), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1595), + [aux_sym_server_alive_interval_token1] = ACTIONS(1595), + [aux_sym_session_type_token1] = ACTIONS(1595), + [aux_sym_set_env_token1] = ACTIONS(1595), + [aux_sym_stdin_null_token1] = ACTIONS(1595), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1595), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1595), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1595), + [aux_sym_syslog_facility_token1] = ACTIONS(1595), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1595), + [aux_sym_keep_alive_token1] = ACTIONS(1595), + [aux_sym_tag_token1] = ACTIONS(1595), + [aux_sym_tunnel_token1] = ACTIONS(1597), + [aux_sym_tunnel_device_token1] = ACTIONS(1595), + [aux_sym_update_host_keys_token1] = ACTIONS(1595), + [aux_sym_use_keychain_token1] = ACTIONS(1595), + [aux_sym_use_roaming_token1] = ACTIONS(1595), + [aux_sym_user_token1] = ACTIONS(1597), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1595), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1595), + [aux_sym_visual_host_key_token1] = ACTIONS(1595), + [aux_sym_xauth_location_token1] = ACTIONS(1595), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(1596), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1598), - [anon_sym_DQUOTE] = ACTIONS(1600), - [aux_sym_match_token1] = ACTIONS(1596), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1596), - [aux_sym_address_family_token1] = ACTIONS(1596), - [aux_sym_batch_mode_token1] = ACTIONS(1596), - [aux_sym_bind_address_token1] = ACTIONS(1596), - [aux_sym_bind_interface_token1] = ACTIONS(1596), - [aux_sym_canonical_domains_token1] = ACTIONS(1596), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1596), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1596), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1596), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1596), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1596), - [aux_sym_certificate_file_token1] = ACTIONS(1596), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1596), - [aux_sym_channel_timeout_token1] = ACTIONS(1596), - [aux_sym_check_host_ip_token1] = ACTIONS(1596), - [aux_sym_ciphers_token1] = ACTIONS(1596), - [aux_sym_cipher_token1] = ACTIONS(1598), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1596), - [aux_sym_compression_token1] = ACTIONS(1596), - [aux_sym_connection_attempts_token1] = ACTIONS(1596), - [aux_sym_connect_timeout_token1] = ACTIONS(1596), - [aux_sym_control_master_token1] = ACTIONS(1596), - [aux_sym_control_path_token1] = ACTIONS(1596), - [aux_sym_control_persist_token1] = ACTIONS(1596), - [aux_sym_dynamic_forward_token1] = ACTIONS(1596), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1596), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1596), - [aux_sym_escape_char_token1] = ACTIONS(1596), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1596), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1596), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1596), - [aux_sym_forward_agent_token1] = ACTIONS(1596), - [aux_sym_forward_x11_token1] = ACTIONS(1598), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1596), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1596), - [aux_sym_gateway_ports_token1] = ACTIONS(1596), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1596), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1596), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1596), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1596), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1596), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1596), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1596), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1596), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1596), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1596), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1596), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1596), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1596), - [aux_sym_host_key_alias_token1] = ACTIONS(1596), - [aux_sym_hostname_token1] = ACTIONS(1596), - [aux_sym_identities_only_token1] = ACTIONS(1596), - [aux_sym_identity_agent_token1] = ACTIONS(1596), - [aux_sym_identity_file_token1] = ACTIONS(1596), - [aux_sym_ignore_unknown_token1] = ACTIONS(1596), - [aux_sym_include_token1] = ACTIONS(1596), - [aux_sym_ip_qos_token1] = ACTIONS(1596), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1596), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1596), - [aux_sym_kex_algorithms_token1] = ACTIONS(1596), - [aux_sym_known_hosts_command_token1] = ACTIONS(1596), - [aux_sym_local_command_token1] = ACTIONS(1596), - [aux_sym_local_forward_token1] = ACTIONS(1596), - [aux_sym_log_level_token1] = ACTIONS(1596), - [aux_sym_log_verbose_token1] = ACTIONS(1596), - [aux_sym_macs_token1] = ACTIONS(1596), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1596), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1596), - [aux_sym_password_authentication_token1] = ACTIONS(1596), - [aux_sym_permit_local_command_token1] = ACTIONS(1596), - [aux_sym_permit_remote_open_token1] = ACTIONS(1596), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1596), - [aux_sym_port_token1] = ACTIONS(1596), - [aux_sym_preferred_authentications_token1] = ACTIONS(1596), - [aux_sym_protocol_token1] = ACTIONS(1596), - [aux_sym_proxy_command_token1] = ACTIONS(1596), - [aux_sym_proxy_jump_token1] = ACTIONS(1596), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1596), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1596), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1596), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1596), - [aux_sym_rekey_limit_token1] = ACTIONS(1596), - [aux_sym_remote_command_token1] = ACTIONS(1596), - [aux_sym_remote_forward_token1] = ACTIONS(1596), - [aux_sym_request_tty_token1] = ACTIONS(1596), - [aux_sym_required_rsa_size_token1] = ACTIONS(1596), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1596), - [aux_sym_security_key_provider_token1] = ACTIONS(1596), - [aux_sym_send_env_token1] = ACTIONS(1596), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1596), - [aux_sym_server_alive_interval_token1] = ACTIONS(1596), - [aux_sym_session_type_token1] = ACTIONS(1596), - [aux_sym_set_env_token1] = ACTIONS(1596), - [aux_sym_stdin_null_token1] = ACTIONS(1596), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1596), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1596), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1596), - [aux_sym_syslog_facility_token1] = ACTIONS(1596), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1596), - [aux_sym_keep_alive_token1] = ACTIONS(1596), - [aux_sym_tag_token1] = ACTIONS(1596), - [aux_sym_tunnel_token1] = ACTIONS(1598), - [aux_sym_tunnel_device_token1] = ACTIONS(1596), - [aux_sym_update_host_keys_token1] = ACTIONS(1596), - [aux_sym_use_keychain_token1] = ACTIONS(1596), - [aux_sym_use_roaming_token1] = ACTIONS(1596), - [aux_sym_user_token1] = ACTIONS(1598), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1596), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1596), - [aux_sym_visual_host_key_token1] = ACTIONS(1596), - [aux_sym_xauth_location_token1] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1603), + [anon_sym_DQUOTE] = ACTIONS(1605), + [aux_sym_match_token1] = ACTIONS(1601), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1601), + [aux_sym_address_family_token1] = ACTIONS(1601), + [aux_sym_batch_mode_token1] = ACTIONS(1601), + [aux_sym_bind_address_token1] = ACTIONS(1601), + [aux_sym_bind_interface_token1] = ACTIONS(1601), + [aux_sym_canonical_domains_token1] = ACTIONS(1601), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1601), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1601), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1601), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1601), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1601), + [aux_sym_certificate_file_token1] = ACTIONS(1601), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1601), + [aux_sym_channel_timeout_token1] = ACTIONS(1601), + [aux_sym_check_host_ip_token1] = ACTIONS(1601), + [aux_sym_ciphers_token1] = ACTIONS(1601), + [aux_sym_cipher_token1] = ACTIONS(1603), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1601), + [aux_sym_compression_token1] = ACTIONS(1601), + [aux_sym_connection_attempts_token1] = ACTIONS(1601), + [aux_sym_connect_timeout_token1] = ACTIONS(1601), + [aux_sym_control_master_token1] = ACTIONS(1601), + [aux_sym_control_path_token1] = ACTIONS(1601), + [aux_sym_control_persist_token1] = ACTIONS(1601), + [aux_sym_dynamic_forward_token1] = ACTIONS(1601), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1601), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1601), + [aux_sym_escape_char_token1] = ACTIONS(1601), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1601), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1601), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1601), + [aux_sym_forward_agent_token1] = ACTIONS(1601), + [aux_sym_forward_x11_token1] = ACTIONS(1603), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1601), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1601), + [aux_sym_gateway_ports_token1] = ACTIONS(1601), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1601), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1601), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1601), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1601), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1601), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1601), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1601), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1601), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1601), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1601), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1601), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1601), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1601), + [aux_sym_host_key_alias_token1] = ACTIONS(1601), + [aux_sym_hostname_token1] = ACTIONS(1601), + [aux_sym_identities_only_token1] = ACTIONS(1601), + [aux_sym_identity_agent_token1] = ACTIONS(1601), + [aux_sym_identity_file_token1] = ACTIONS(1601), + [aux_sym_ignore_unknown_token1] = ACTIONS(1601), + [aux_sym_include_token1] = ACTIONS(1601), + [aux_sym_ip_qos_token1] = ACTIONS(1601), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1601), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1601), + [aux_sym_kex_algorithms_token1] = ACTIONS(1601), + [aux_sym_known_hosts_command_token1] = ACTIONS(1601), + [aux_sym_local_command_token1] = ACTIONS(1601), + [aux_sym_local_forward_token1] = ACTIONS(1601), + [aux_sym_log_level_token1] = ACTIONS(1601), + [aux_sym_log_verbose_token1] = ACTIONS(1601), + [aux_sym_macs_token1] = ACTIONS(1601), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1601), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1601), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1601), + [aux_sym_password_authentication_token1] = ACTIONS(1601), + [aux_sym_permit_local_command_token1] = ACTIONS(1601), + [aux_sym_permit_remote_open_token1] = ACTIONS(1601), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1601), + [aux_sym_port_token1] = ACTIONS(1601), + [aux_sym_preferred_authentications_token1] = ACTIONS(1601), + [aux_sym_protocol_token1] = ACTIONS(1601), + [aux_sym_proxy_command_token1] = ACTIONS(1601), + [aux_sym_proxy_jump_token1] = ACTIONS(1601), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1601), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1601), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1601), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1601), + [aux_sym_rekey_limit_token1] = ACTIONS(1601), + [aux_sym_remote_command_token1] = ACTIONS(1601), + [aux_sym_remote_forward_token1] = ACTIONS(1601), + [aux_sym_request_tty_token1] = ACTIONS(1601), + [aux_sym_required_rsa_size_token1] = ACTIONS(1601), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1601), + [aux_sym_security_key_provider_token1] = ACTIONS(1601), + [aux_sym_send_env_token1] = ACTIONS(1601), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1601), + [aux_sym_server_alive_interval_token1] = ACTIONS(1601), + [aux_sym_session_type_token1] = ACTIONS(1601), + [aux_sym_set_env_token1] = ACTIONS(1601), + [aux_sym_stdin_null_token1] = ACTIONS(1601), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1601), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1601), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1601), + [aux_sym_syslog_facility_token1] = ACTIONS(1601), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1601), + [aux_sym_keep_alive_token1] = ACTIONS(1601), + [aux_sym_tag_token1] = ACTIONS(1601), + [aux_sym_tunnel_token1] = ACTIONS(1603), + [aux_sym_tunnel_device_token1] = ACTIONS(1601), + [aux_sym_update_host_keys_token1] = ACTIONS(1601), + [aux_sym_use_keychain_token1] = ACTIONS(1601), + [aux_sym_use_roaming_token1] = ACTIONS(1601), + [aux_sym_user_token1] = ACTIONS(1603), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1601), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1601), + [aux_sym_visual_host_key_token1] = ACTIONS(1601), + [aux_sym_xauth_location_token1] = ACTIONS(1601), }, [174] = { - [ts_builtin_sym_end] = ACTIONS(1602), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(1606), - [aux_sym_match_token1] = ACTIONS(1602), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1602), - [aux_sym_address_family_token1] = ACTIONS(1602), - [aux_sym_batch_mode_token1] = ACTIONS(1602), - [aux_sym_bind_address_token1] = ACTIONS(1602), - [aux_sym_bind_interface_token1] = ACTIONS(1602), - [aux_sym_canonical_domains_token1] = ACTIONS(1602), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1602), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1602), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1602), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1602), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1602), - [aux_sym_certificate_file_token1] = ACTIONS(1602), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1602), - [aux_sym_channel_timeout_token1] = ACTIONS(1602), - [aux_sym_check_host_ip_token1] = ACTIONS(1602), - [aux_sym_ciphers_token1] = ACTIONS(1602), - [aux_sym_cipher_token1] = ACTIONS(1604), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1602), - [aux_sym_compression_token1] = ACTIONS(1602), - [aux_sym_connection_attempts_token1] = ACTIONS(1602), - [aux_sym_connect_timeout_token1] = ACTIONS(1602), - [aux_sym_control_master_token1] = ACTIONS(1602), - [aux_sym_control_path_token1] = ACTIONS(1602), - [aux_sym_control_persist_token1] = ACTIONS(1602), - [aux_sym_dynamic_forward_token1] = ACTIONS(1602), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1602), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1602), - [aux_sym_escape_char_token1] = ACTIONS(1602), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1602), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1602), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1602), - [aux_sym_forward_agent_token1] = ACTIONS(1602), - [aux_sym_forward_x11_token1] = ACTIONS(1604), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1602), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1602), - [aux_sym_gateway_ports_token1] = ACTIONS(1602), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1602), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1602), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1602), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1602), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1602), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1602), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1602), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1602), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1602), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1602), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1602), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1602), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1602), - [aux_sym_host_key_alias_token1] = ACTIONS(1602), - [aux_sym_hostname_token1] = ACTIONS(1602), - [aux_sym_identities_only_token1] = ACTIONS(1602), - [aux_sym_identity_agent_token1] = ACTIONS(1602), - [aux_sym_identity_file_token1] = ACTIONS(1602), - [aux_sym_ignore_unknown_token1] = ACTIONS(1602), - [aux_sym_include_token1] = ACTIONS(1602), - [aux_sym_ip_qos_token1] = ACTIONS(1602), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1602), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1602), - [aux_sym_kex_algorithms_token1] = ACTIONS(1602), - [aux_sym_known_hosts_command_token1] = ACTIONS(1602), - [aux_sym_local_command_token1] = ACTIONS(1602), - [aux_sym_local_forward_token1] = ACTIONS(1602), - [aux_sym_log_level_token1] = ACTIONS(1602), - [aux_sym_log_verbose_token1] = ACTIONS(1602), - [aux_sym_macs_token1] = ACTIONS(1602), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1602), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1602), - [aux_sym_password_authentication_token1] = ACTIONS(1602), - [aux_sym_permit_local_command_token1] = ACTIONS(1602), - [aux_sym_permit_remote_open_token1] = ACTIONS(1602), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1602), - [aux_sym_port_token1] = ACTIONS(1602), - [aux_sym_preferred_authentications_token1] = ACTIONS(1602), - [aux_sym_protocol_token1] = ACTIONS(1602), - [aux_sym_proxy_command_token1] = ACTIONS(1602), - [aux_sym_proxy_jump_token1] = ACTIONS(1602), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1602), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1602), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1602), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1602), - [aux_sym_rekey_limit_token1] = ACTIONS(1602), - [aux_sym_remote_command_token1] = ACTIONS(1602), - [aux_sym_remote_forward_token1] = ACTIONS(1602), - [aux_sym_request_tty_token1] = ACTIONS(1602), - [aux_sym_required_rsa_size_token1] = ACTIONS(1602), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1602), - [aux_sym_security_key_provider_token1] = ACTIONS(1602), - [aux_sym_send_env_token1] = ACTIONS(1602), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1602), - [aux_sym_server_alive_interval_token1] = ACTIONS(1602), - [aux_sym_session_type_token1] = ACTIONS(1602), - [aux_sym_set_env_token1] = ACTIONS(1602), - [aux_sym_stdin_null_token1] = ACTIONS(1602), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1602), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1602), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1602), - [aux_sym_syslog_facility_token1] = ACTIONS(1602), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1602), - [aux_sym_keep_alive_token1] = ACTIONS(1602), - [aux_sym_tag_token1] = ACTIONS(1602), - [aux_sym_tunnel_token1] = ACTIONS(1604), - [aux_sym_tunnel_device_token1] = ACTIONS(1602), - [aux_sym_update_host_keys_token1] = ACTIONS(1602), - [aux_sym_use_keychain_token1] = ACTIONS(1602), - [aux_sym_use_roaming_token1] = ACTIONS(1602), - [aux_sym_user_token1] = ACTIONS(1604), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1602), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1602), - [aux_sym_visual_host_key_token1] = ACTIONS(1602), - [aux_sym_xauth_location_token1] = ACTIONS(1602), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1609), + [anon_sym_DQUOTE] = ACTIONS(1611), + [aux_sym_match_token1] = ACTIONS(1607), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1607), + [aux_sym_address_family_token1] = ACTIONS(1607), + [aux_sym_batch_mode_token1] = ACTIONS(1607), + [aux_sym_bind_address_token1] = ACTIONS(1607), + [aux_sym_bind_interface_token1] = ACTIONS(1607), + [aux_sym_canonical_domains_token1] = ACTIONS(1607), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1607), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1607), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1607), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1607), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1607), + [aux_sym_certificate_file_token1] = ACTIONS(1607), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1607), + [aux_sym_channel_timeout_token1] = ACTIONS(1607), + [aux_sym_check_host_ip_token1] = ACTIONS(1607), + [aux_sym_ciphers_token1] = ACTIONS(1607), + [aux_sym_cipher_token1] = ACTIONS(1609), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1607), + [aux_sym_compression_token1] = ACTIONS(1607), + [aux_sym_connection_attempts_token1] = ACTIONS(1607), + [aux_sym_connect_timeout_token1] = ACTIONS(1607), + [aux_sym_control_master_token1] = ACTIONS(1607), + [aux_sym_control_path_token1] = ACTIONS(1607), + [aux_sym_control_persist_token1] = ACTIONS(1607), + [aux_sym_dynamic_forward_token1] = ACTIONS(1607), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1607), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1607), + [aux_sym_escape_char_token1] = ACTIONS(1607), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1607), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1607), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1607), + [aux_sym_forward_agent_token1] = ACTIONS(1607), + [aux_sym_forward_x11_token1] = ACTIONS(1609), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1607), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1607), + [aux_sym_gateway_ports_token1] = ACTIONS(1607), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1607), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1607), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1607), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1607), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1607), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1607), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1607), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1607), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1607), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1607), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1607), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1607), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1607), + [aux_sym_host_key_alias_token1] = ACTIONS(1607), + [aux_sym_hostname_token1] = ACTIONS(1607), + [aux_sym_identities_only_token1] = ACTIONS(1607), + [aux_sym_identity_agent_token1] = ACTIONS(1607), + [aux_sym_identity_file_token1] = ACTIONS(1607), + [aux_sym_ignore_unknown_token1] = ACTIONS(1607), + [aux_sym_include_token1] = ACTIONS(1607), + [aux_sym_ip_qos_token1] = ACTIONS(1607), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1607), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1607), + [aux_sym_kex_algorithms_token1] = ACTIONS(1607), + [aux_sym_known_hosts_command_token1] = ACTIONS(1607), + [aux_sym_local_command_token1] = ACTIONS(1607), + [aux_sym_local_forward_token1] = ACTIONS(1607), + [aux_sym_log_level_token1] = ACTIONS(1607), + [aux_sym_log_verbose_token1] = ACTIONS(1607), + [aux_sym_macs_token1] = ACTIONS(1607), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1607), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1607), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1607), + [aux_sym_password_authentication_token1] = ACTIONS(1607), + [aux_sym_permit_local_command_token1] = ACTIONS(1607), + [aux_sym_permit_remote_open_token1] = ACTIONS(1607), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1607), + [aux_sym_port_token1] = ACTIONS(1607), + [aux_sym_preferred_authentications_token1] = ACTIONS(1607), + [aux_sym_protocol_token1] = ACTIONS(1607), + [aux_sym_proxy_command_token1] = ACTIONS(1607), + [aux_sym_proxy_jump_token1] = ACTIONS(1607), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1607), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1607), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1607), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1607), + [aux_sym_rekey_limit_token1] = ACTIONS(1607), + [aux_sym_remote_command_token1] = ACTIONS(1607), + [aux_sym_remote_forward_token1] = ACTIONS(1607), + [aux_sym_request_tty_token1] = ACTIONS(1607), + [aux_sym_required_rsa_size_token1] = ACTIONS(1607), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1607), + [aux_sym_security_key_provider_token1] = ACTIONS(1607), + [aux_sym_send_env_token1] = ACTIONS(1607), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1607), + [aux_sym_server_alive_interval_token1] = ACTIONS(1607), + [aux_sym_session_type_token1] = ACTIONS(1607), + [aux_sym_set_env_token1] = ACTIONS(1607), + [aux_sym_stdin_null_token1] = ACTIONS(1607), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1607), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1607), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1607), + [aux_sym_syslog_facility_token1] = ACTIONS(1607), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1607), + [aux_sym_keep_alive_token1] = ACTIONS(1607), + [aux_sym_tag_token1] = ACTIONS(1607), + [aux_sym_tunnel_token1] = ACTIONS(1609), + [aux_sym_tunnel_device_token1] = ACTIONS(1607), + [aux_sym_update_host_keys_token1] = ACTIONS(1607), + [aux_sym_use_keychain_token1] = ACTIONS(1607), + [aux_sym_use_roaming_token1] = ACTIONS(1607), + [aux_sym_user_token1] = ACTIONS(1609), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1607), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1607), + [aux_sym_visual_host_key_token1] = ACTIONS(1607), + [aux_sym_xauth_location_token1] = ACTIONS(1607), }, [175] = { - [ts_builtin_sym_end] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1612), - [aux_sym_match_token1] = ACTIONS(1608), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1608), - [aux_sym_address_family_token1] = ACTIONS(1608), - [aux_sym_batch_mode_token1] = ACTIONS(1608), - [aux_sym_bind_address_token1] = ACTIONS(1608), - [aux_sym_bind_interface_token1] = ACTIONS(1608), - [aux_sym_canonical_domains_token1] = ACTIONS(1608), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1608), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1608), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1608), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1608), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1608), - [aux_sym_certificate_file_token1] = ACTIONS(1608), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1608), - [aux_sym_channel_timeout_token1] = ACTIONS(1608), - [aux_sym_check_host_ip_token1] = ACTIONS(1608), - [aux_sym_ciphers_token1] = ACTIONS(1608), - [aux_sym_cipher_token1] = ACTIONS(1610), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1608), - [aux_sym_compression_token1] = ACTIONS(1608), - [aux_sym_connection_attempts_token1] = ACTIONS(1608), - [aux_sym_connect_timeout_token1] = ACTIONS(1608), - [aux_sym_control_master_token1] = ACTIONS(1608), - [aux_sym_control_path_token1] = ACTIONS(1608), - [aux_sym_control_persist_token1] = ACTIONS(1608), - [aux_sym_dynamic_forward_token1] = ACTIONS(1608), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1608), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1608), - [aux_sym_escape_char_token1] = ACTIONS(1608), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1608), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1608), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1608), - [aux_sym_forward_agent_token1] = ACTIONS(1608), - [aux_sym_forward_x11_token1] = ACTIONS(1610), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1608), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1608), - [aux_sym_gateway_ports_token1] = ACTIONS(1608), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1608), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1608), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1608), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1608), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1608), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1608), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1608), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1608), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1608), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1608), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1608), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1608), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1608), - [aux_sym_host_key_alias_token1] = ACTIONS(1608), - [aux_sym_hostname_token1] = ACTIONS(1608), - [aux_sym_identities_only_token1] = ACTIONS(1608), - [aux_sym_identity_agent_token1] = ACTIONS(1608), - [aux_sym_identity_file_token1] = ACTIONS(1608), - [aux_sym_ignore_unknown_token1] = ACTIONS(1608), - [aux_sym_include_token1] = ACTIONS(1608), - [aux_sym_ip_qos_token1] = ACTIONS(1608), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1608), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1608), - [aux_sym_kex_algorithms_token1] = ACTIONS(1608), - [aux_sym_known_hosts_command_token1] = ACTIONS(1608), - [aux_sym_local_command_token1] = ACTIONS(1608), - [aux_sym_local_forward_token1] = ACTIONS(1608), - [aux_sym_log_level_token1] = ACTIONS(1608), - [aux_sym_log_verbose_token1] = ACTIONS(1608), - [aux_sym_macs_token1] = ACTIONS(1608), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1608), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1608), - [aux_sym_password_authentication_token1] = ACTIONS(1608), - [aux_sym_permit_local_command_token1] = ACTIONS(1608), - [aux_sym_permit_remote_open_token1] = ACTIONS(1608), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1608), - [aux_sym_port_token1] = ACTIONS(1608), - [aux_sym_preferred_authentications_token1] = ACTIONS(1608), - [aux_sym_protocol_token1] = ACTIONS(1608), - [aux_sym_proxy_command_token1] = ACTIONS(1608), - [aux_sym_proxy_jump_token1] = ACTIONS(1608), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1608), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1608), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1608), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1608), - [aux_sym_rekey_limit_token1] = ACTIONS(1608), - [aux_sym_remote_command_token1] = ACTIONS(1608), - [aux_sym_remote_forward_token1] = ACTIONS(1608), - [aux_sym_request_tty_token1] = ACTIONS(1608), - [aux_sym_required_rsa_size_token1] = ACTIONS(1608), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1608), - [aux_sym_security_key_provider_token1] = ACTIONS(1608), - [aux_sym_send_env_token1] = ACTIONS(1608), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1608), - [aux_sym_server_alive_interval_token1] = ACTIONS(1608), - [aux_sym_session_type_token1] = ACTIONS(1608), - [aux_sym_set_env_token1] = ACTIONS(1608), - [aux_sym_stdin_null_token1] = ACTIONS(1608), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1608), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1608), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1608), - [aux_sym_syslog_facility_token1] = ACTIONS(1608), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1608), - [aux_sym_keep_alive_token1] = ACTIONS(1608), - [aux_sym_tag_token1] = ACTIONS(1608), - [aux_sym_tunnel_token1] = ACTIONS(1610), - [aux_sym_tunnel_device_token1] = ACTIONS(1608), - [aux_sym_update_host_keys_token1] = ACTIONS(1608), - [aux_sym_use_keychain_token1] = ACTIONS(1608), - [aux_sym_use_roaming_token1] = ACTIONS(1608), - [aux_sym_user_token1] = ACTIONS(1610), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1608), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1608), - [aux_sym_visual_host_key_token1] = ACTIONS(1608), - [aux_sym_xauth_location_token1] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1613), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1615), + [anon_sym_DQUOTE] = ACTIONS(1617), + [aux_sym_match_token1] = ACTIONS(1613), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1613), + [aux_sym_address_family_token1] = ACTIONS(1613), + [aux_sym_batch_mode_token1] = ACTIONS(1613), + [aux_sym_bind_address_token1] = ACTIONS(1613), + [aux_sym_bind_interface_token1] = ACTIONS(1613), + [aux_sym_canonical_domains_token1] = ACTIONS(1613), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1613), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1613), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1613), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1613), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1613), + [aux_sym_certificate_file_token1] = ACTIONS(1613), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1613), + [aux_sym_channel_timeout_token1] = ACTIONS(1613), + [aux_sym_check_host_ip_token1] = ACTIONS(1613), + [aux_sym_ciphers_token1] = ACTIONS(1613), + [aux_sym_cipher_token1] = ACTIONS(1615), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1613), + [aux_sym_compression_token1] = ACTIONS(1613), + [aux_sym_connection_attempts_token1] = ACTIONS(1613), + [aux_sym_connect_timeout_token1] = ACTIONS(1613), + [aux_sym_control_master_token1] = ACTIONS(1613), + [aux_sym_control_path_token1] = ACTIONS(1613), + [aux_sym_control_persist_token1] = ACTIONS(1613), + [aux_sym_dynamic_forward_token1] = ACTIONS(1613), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1613), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1613), + [aux_sym_escape_char_token1] = ACTIONS(1613), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1613), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1613), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1613), + [aux_sym_forward_agent_token1] = ACTIONS(1613), + [aux_sym_forward_x11_token1] = ACTIONS(1615), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1613), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1613), + [aux_sym_gateway_ports_token1] = ACTIONS(1613), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1613), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1613), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1613), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1613), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1613), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1613), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1613), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1613), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1613), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1613), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1613), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1613), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1613), + [aux_sym_host_key_alias_token1] = ACTIONS(1613), + [aux_sym_hostname_token1] = ACTIONS(1613), + [aux_sym_identities_only_token1] = ACTIONS(1613), + [aux_sym_identity_agent_token1] = ACTIONS(1613), + [aux_sym_identity_file_token1] = ACTIONS(1613), + [aux_sym_ignore_unknown_token1] = ACTIONS(1613), + [aux_sym_include_token1] = ACTIONS(1613), + [aux_sym_ip_qos_token1] = ACTIONS(1613), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1613), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1613), + [aux_sym_kex_algorithms_token1] = ACTIONS(1613), + [aux_sym_known_hosts_command_token1] = ACTIONS(1613), + [aux_sym_local_command_token1] = ACTIONS(1613), + [aux_sym_local_forward_token1] = ACTIONS(1613), + [aux_sym_log_level_token1] = ACTIONS(1613), + [aux_sym_log_verbose_token1] = ACTIONS(1613), + [aux_sym_macs_token1] = ACTIONS(1613), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1613), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1613), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1613), + [aux_sym_password_authentication_token1] = ACTIONS(1613), + [aux_sym_permit_local_command_token1] = ACTIONS(1613), + [aux_sym_permit_remote_open_token1] = ACTIONS(1613), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1613), + [aux_sym_port_token1] = ACTIONS(1613), + [aux_sym_preferred_authentications_token1] = ACTIONS(1613), + [aux_sym_protocol_token1] = ACTIONS(1613), + [aux_sym_proxy_command_token1] = ACTIONS(1613), + [aux_sym_proxy_jump_token1] = ACTIONS(1613), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1613), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1613), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1613), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1613), + [aux_sym_rekey_limit_token1] = ACTIONS(1613), + [aux_sym_remote_command_token1] = ACTIONS(1613), + [aux_sym_remote_forward_token1] = ACTIONS(1613), + [aux_sym_request_tty_token1] = ACTIONS(1613), + [aux_sym_required_rsa_size_token1] = ACTIONS(1613), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1613), + [aux_sym_security_key_provider_token1] = ACTIONS(1613), + [aux_sym_send_env_token1] = ACTIONS(1613), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1613), + [aux_sym_server_alive_interval_token1] = ACTIONS(1613), + [aux_sym_session_type_token1] = ACTIONS(1613), + [aux_sym_set_env_token1] = ACTIONS(1613), + [aux_sym_stdin_null_token1] = ACTIONS(1613), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1613), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1613), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1613), + [aux_sym_syslog_facility_token1] = ACTIONS(1613), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1613), + [aux_sym_keep_alive_token1] = ACTIONS(1613), + [aux_sym_tag_token1] = ACTIONS(1613), + [aux_sym_tunnel_token1] = ACTIONS(1615), + [aux_sym_tunnel_device_token1] = ACTIONS(1613), + [aux_sym_update_host_keys_token1] = ACTIONS(1613), + [aux_sym_use_keychain_token1] = ACTIONS(1613), + [aux_sym_use_roaming_token1] = ACTIONS(1613), + [aux_sym_user_token1] = ACTIONS(1615), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1613), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1613), + [aux_sym_visual_host_key_token1] = ACTIONS(1613), + [aux_sym_xauth_location_token1] = ACTIONS(1613), }, [176] = { - [ts_builtin_sym_end] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1616), - [anon_sym_DQUOTE] = ACTIONS(1618), - [aux_sym_match_token1] = ACTIONS(1614), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1614), - [aux_sym_address_family_token1] = ACTIONS(1614), - [aux_sym_batch_mode_token1] = ACTIONS(1614), - [aux_sym_bind_address_token1] = ACTIONS(1614), - [aux_sym_bind_interface_token1] = ACTIONS(1614), - [aux_sym_canonical_domains_token1] = ACTIONS(1614), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1614), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1614), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1614), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1614), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1614), - [aux_sym_certificate_file_token1] = ACTIONS(1614), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1614), - [aux_sym_channel_timeout_token1] = ACTIONS(1614), - [aux_sym_check_host_ip_token1] = ACTIONS(1614), - [aux_sym_ciphers_token1] = ACTIONS(1614), - [aux_sym_cipher_token1] = ACTIONS(1616), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1614), - [aux_sym_compression_token1] = ACTIONS(1614), - [aux_sym_connection_attempts_token1] = ACTIONS(1614), - [aux_sym_connect_timeout_token1] = ACTIONS(1614), - [aux_sym_control_master_token1] = ACTIONS(1614), - [aux_sym_control_path_token1] = ACTIONS(1614), - [aux_sym_control_persist_token1] = ACTIONS(1614), - [aux_sym_dynamic_forward_token1] = ACTIONS(1614), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1614), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1614), - [aux_sym_escape_char_token1] = ACTIONS(1614), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1614), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1614), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1614), - [aux_sym_forward_agent_token1] = ACTIONS(1614), - [aux_sym_forward_x11_token1] = ACTIONS(1616), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1614), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1614), - [aux_sym_gateway_ports_token1] = ACTIONS(1614), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1614), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1614), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1614), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1614), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1614), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1614), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1614), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1614), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1614), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1614), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1614), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1614), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1614), - [aux_sym_host_key_alias_token1] = ACTIONS(1614), - [aux_sym_hostname_token1] = ACTIONS(1614), - [aux_sym_identities_only_token1] = ACTIONS(1614), - [aux_sym_identity_agent_token1] = ACTIONS(1614), - [aux_sym_identity_file_token1] = ACTIONS(1614), - [aux_sym_ignore_unknown_token1] = ACTIONS(1614), - [aux_sym_include_token1] = ACTIONS(1614), - [aux_sym_ip_qos_token1] = ACTIONS(1614), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1614), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1614), - [aux_sym_kex_algorithms_token1] = ACTIONS(1614), - [aux_sym_known_hosts_command_token1] = ACTIONS(1614), - [aux_sym_local_command_token1] = ACTIONS(1614), - [aux_sym_local_forward_token1] = ACTIONS(1614), - [aux_sym_log_level_token1] = ACTIONS(1614), - [aux_sym_log_verbose_token1] = ACTIONS(1614), - [aux_sym_macs_token1] = ACTIONS(1614), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1614), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1614), - [aux_sym_password_authentication_token1] = ACTIONS(1614), - [aux_sym_permit_local_command_token1] = ACTIONS(1614), - [aux_sym_permit_remote_open_token1] = ACTIONS(1614), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1614), - [aux_sym_port_token1] = ACTIONS(1614), - [aux_sym_preferred_authentications_token1] = ACTIONS(1614), - [aux_sym_protocol_token1] = ACTIONS(1614), - [aux_sym_proxy_command_token1] = ACTIONS(1614), - [aux_sym_proxy_jump_token1] = ACTIONS(1614), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1614), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1614), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1614), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1614), - [aux_sym_rekey_limit_token1] = ACTIONS(1614), - [aux_sym_remote_command_token1] = ACTIONS(1614), - [aux_sym_remote_forward_token1] = ACTIONS(1614), - [aux_sym_request_tty_token1] = ACTIONS(1614), - [aux_sym_required_rsa_size_token1] = ACTIONS(1614), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1614), - [aux_sym_security_key_provider_token1] = ACTIONS(1614), - [aux_sym_send_env_token1] = ACTIONS(1614), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1614), - [aux_sym_server_alive_interval_token1] = ACTIONS(1614), - [aux_sym_session_type_token1] = ACTIONS(1614), - [aux_sym_set_env_token1] = ACTIONS(1614), - [aux_sym_stdin_null_token1] = ACTIONS(1614), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1614), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1614), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1614), - [aux_sym_syslog_facility_token1] = ACTIONS(1614), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1614), - [aux_sym_keep_alive_token1] = ACTIONS(1614), - [aux_sym_tag_token1] = ACTIONS(1614), - [aux_sym_tunnel_token1] = ACTIONS(1616), - [aux_sym_tunnel_device_token1] = ACTIONS(1614), - [aux_sym_update_host_keys_token1] = ACTIONS(1614), - [aux_sym_use_keychain_token1] = ACTIONS(1614), - [aux_sym_use_roaming_token1] = ACTIONS(1614), - [aux_sym_user_token1] = ACTIONS(1616), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1614), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1614), - [aux_sym_visual_host_key_token1] = ACTIONS(1614), - [aux_sym_xauth_location_token1] = ACTIONS(1614), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1621), + [anon_sym_DQUOTE] = ACTIONS(1623), + [aux_sym_match_token1] = ACTIONS(1619), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1619), + [aux_sym_address_family_token1] = ACTIONS(1619), + [aux_sym_batch_mode_token1] = ACTIONS(1619), + [aux_sym_bind_address_token1] = ACTIONS(1619), + [aux_sym_bind_interface_token1] = ACTIONS(1619), + [aux_sym_canonical_domains_token1] = ACTIONS(1619), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1619), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1619), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1619), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1619), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1619), + [aux_sym_certificate_file_token1] = ACTIONS(1619), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1619), + [aux_sym_channel_timeout_token1] = ACTIONS(1619), + [aux_sym_check_host_ip_token1] = ACTIONS(1619), + [aux_sym_ciphers_token1] = ACTIONS(1619), + [aux_sym_cipher_token1] = ACTIONS(1621), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1619), + [aux_sym_compression_token1] = ACTIONS(1619), + [aux_sym_connection_attempts_token1] = ACTIONS(1619), + [aux_sym_connect_timeout_token1] = ACTIONS(1619), + [aux_sym_control_master_token1] = ACTIONS(1619), + [aux_sym_control_path_token1] = ACTIONS(1619), + [aux_sym_control_persist_token1] = ACTIONS(1619), + [aux_sym_dynamic_forward_token1] = ACTIONS(1619), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1619), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1619), + [aux_sym_escape_char_token1] = ACTIONS(1619), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1619), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1619), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1619), + [aux_sym_forward_agent_token1] = ACTIONS(1619), + [aux_sym_forward_x11_token1] = ACTIONS(1621), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1619), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1619), + [aux_sym_gateway_ports_token1] = ACTIONS(1619), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1619), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1619), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1619), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1619), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1619), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1619), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1619), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1619), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1619), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1619), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1619), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1619), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1619), + [aux_sym_host_key_alias_token1] = ACTIONS(1619), + [aux_sym_hostname_token1] = ACTIONS(1619), + [aux_sym_identities_only_token1] = ACTIONS(1619), + [aux_sym_identity_agent_token1] = ACTIONS(1619), + [aux_sym_identity_file_token1] = ACTIONS(1619), + [aux_sym_ignore_unknown_token1] = ACTIONS(1619), + [aux_sym_include_token1] = ACTIONS(1619), + [aux_sym_ip_qos_token1] = ACTIONS(1619), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1619), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1619), + [aux_sym_kex_algorithms_token1] = ACTIONS(1619), + [aux_sym_known_hosts_command_token1] = ACTIONS(1619), + [aux_sym_local_command_token1] = ACTIONS(1619), + [aux_sym_local_forward_token1] = ACTIONS(1619), + [aux_sym_log_level_token1] = ACTIONS(1619), + [aux_sym_log_verbose_token1] = ACTIONS(1619), + [aux_sym_macs_token1] = ACTIONS(1619), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1619), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1619), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1619), + [aux_sym_password_authentication_token1] = ACTIONS(1619), + [aux_sym_permit_local_command_token1] = ACTIONS(1619), + [aux_sym_permit_remote_open_token1] = ACTIONS(1619), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1619), + [aux_sym_port_token1] = ACTIONS(1619), + [aux_sym_preferred_authentications_token1] = ACTIONS(1619), + [aux_sym_protocol_token1] = ACTIONS(1619), + [aux_sym_proxy_command_token1] = ACTIONS(1619), + [aux_sym_proxy_jump_token1] = ACTIONS(1619), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1619), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1619), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1619), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1619), + [aux_sym_rekey_limit_token1] = ACTIONS(1619), + [aux_sym_remote_command_token1] = ACTIONS(1619), + [aux_sym_remote_forward_token1] = ACTIONS(1619), + [aux_sym_request_tty_token1] = ACTIONS(1619), + [aux_sym_required_rsa_size_token1] = ACTIONS(1619), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1619), + [aux_sym_security_key_provider_token1] = ACTIONS(1619), + [aux_sym_send_env_token1] = ACTIONS(1619), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1619), + [aux_sym_server_alive_interval_token1] = ACTIONS(1619), + [aux_sym_session_type_token1] = ACTIONS(1619), + [aux_sym_set_env_token1] = ACTIONS(1619), + [aux_sym_stdin_null_token1] = ACTIONS(1619), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1619), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1619), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1619), + [aux_sym_syslog_facility_token1] = ACTIONS(1619), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1619), + [aux_sym_keep_alive_token1] = ACTIONS(1619), + [aux_sym_tag_token1] = ACTIONS(1619), + [aux_sym_tunnel_token1] = ACTIONS(1621), + [aux_sym_tunnel_device_token1] = ACTIONS(1619), + [aux_sym_update_host_keys_token1] = ACTIONS(1619), + [aux_sym_use_keychain_token1] = ACTIONS(1619), + [aux_sym_use_roaming_token1] = ACTIONS(1619), + [aux_sym_user_token1] = ACTIONS(1621), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1619), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1619), + [aux_sym_visual_host_key_token1] = ACTIONS(1619), + [aux_sym_xauth_location_token1] = ACTIONS(1619), }, [177] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1622), - [anon_sym_DQUOTE] = ACTIONS(1624), - [aux_sym_match_token1] = ACTIONS(1620), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1620), - [aux_sym_address_family_token1] = ACTIONS(1620), - [aux_sym_batch_mode_token1] = ACTIONS(1620), - [aux_sym_bind_address_token1] = ACTIONS(1620), - [aux_sym_bind_interface_token1] = ACTIONS(1620), - [aux_sym_canonical_domains_token1] = ACTIONS(1620), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1620), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1620), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1620), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1620), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1620), - [aux_sym_certificate_file_token1] = ACTIONS(1620), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1620), - [aux_sym_channel_timeout_token1] = ACTIONS(1620), - [aux_sym_check_host_ip_token1] = ACTIONS(1620), - [aux_sym_ciphers_token1] = ACTIONS(1620), - [aux_sym_cipher_token1] = ACTIONS(1622), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1620), - [aux_sym_compression_token1] = ACTIONS(1620), - [aux_sym_connection_attempts_token1] = ACTIONS(1620), - [aux_sym_connect_timeout_token1] = ACTIONS(1620), - [aux_sym_control_master_token1] = ACTIONS(1620), - [aux_sym_control_path_token1] = ACTIONS(1620), - [aux_sym_control_persist_token1] = ACTIONS(1620), - [aux_sym_dynamic_forward_token1] = ACTIONS(1620), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1620), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1620), - [aux_sym_escape_char_token1] = ACTIONS(1620), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1620), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1620), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1620), - [aux_sym_forward_agent_token1] = ACTIONS(1620), - [aux_sym_forward_x11_token1] = ACTIONS(1622), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1620), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1620), - [aux_sym_gateway_ports_token1] = ACTIONS(1620), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1620), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1620), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1620), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1620), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1620), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1620), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1620), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1620), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1620), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1620), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1620), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1620), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1620), - [aux_sym_host_key_alias_token1] = ACTIONS(1620), - [aux_sym_hostname_token1] = ACTIONS(1620), - [aux_sym_identities_only_token1] = ACTIONS(1620), - [aux_sym_identity_agent_token1] = ACTIONS(1620), - [aux_sym_identity_file_token1] = ACTIONS(1620), - [aux_sym_ignore_unknown_token1] = ACTIONS(1620), - [aux_sym_include_token1] = ACTIONS(1620), - [aux_sym_ip_qos_token1] = ACTIONS(1620), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1620), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1620), - [aux_sym_kex_algorithms_token1] = ACTIONS(1620), - [aux_sym_known_hosts_command_token1] = ACTIONS(1620), - [aux_sym_local_command_token1] = ACTIONS(1620), - [aux_sym_local_forward_token1] = ACTIONS(1620), - [aux_sym_log_level_token1] = ACTIONS(1620), - [aux_sym_log_verbose_token1] = ACTIONS(1620), - [aux_sym_macs_token1] = ACTIONS(1620), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1620), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1620), - [aux_sym_password_authentication_token1] = ACTIONS(1620), - [aux_sym_permit_local_command_token1] = ACTIONS(1620), - [aux_sym_permit_remote_open_token1] = ACTIONS(1620), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1620), - [aux_sym_port_token1] = ACTIONS(1620), - [aux_sym_preferred_authentications_token1] = ACTIONS(1620), - [aux_sym_protocol_token1] = ACTIONS(1620), - [aux_sym_proxy_command_token1] = ACTIONS(1620), - [aux_sym_proxy_jump_token1] = ACTIONS(1620), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1620), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1620), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1620), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1620), - [aux_sym_rekey_limit_token1] = ACTIONS(1620), - [aux_sym_remote_command_token1] = ACTIONS(1620), - [aux_sym_remote_forward_token1] = ACTIONS(1620), - [aux_sym_request_tty_token1] = ACTIONS(1620), - [aux_sym_required_rsa_size_token1] = ACTIONS(1620), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1620), - [aux_sym_security_key_provider_token1] = ACTIONS(1620), - [aux_sym_send_env_token1] = ACTIONS(1620), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1620), - [aux_sym_server_alive_interval_token1] = ACTIONS(1620), - [aux_sym_session_type_token1] = ACTIONS(1620), - [aux_sym_set_env_token1] = ACTIONS(1620), - [aux_sym_stdin_null_token1] = ACTIONS(1620), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1620), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1620), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1620), - [aux_sym_syslog_facility_token1] = ACTIONS(1620), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1620), - [aux_sym_keep_alive_token1] = ACTIONS(1620), - [aux_sym_tag_token1] = ACTIONS(1620), - [aux_sym_tunnel_token1] = ACTIONS(1622), - [aux_sym_tunnel_device_token1] = ACTIONS(1620), - [aux_sym_update_host_keys_token1] = ACTIONS(1620), - [aux_sym_use_keychain_token1] = ACTIONS(1620), - [aux_sym_use_roaming_token1] = ACTIONS(1620), - [aux_sym_user_token1] = ACTIONS(1622), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1620), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1620), - [aux_sym_visual_host_key_token1] = ACTIONS(1620), - [aux_sym_xauth_location_token1] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(1625), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1627), + [anon_sym_DQUOTE] = ACTIONS(1625), + [aux_sym_match_token1] = ACTIONS(1625), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1625), + [aux_sym_address_family_token1] = ACTIONS(1625), + [aux_sym_batch_mode_token1] = ACTIONS(1625), + [aux_sym_bind_address_token1] = ACTIONS(1625), + [aux_sym_bind_interface_token1] = ACTIONS(1625), + [aux_sym_canonical_domains_token1] = ACTIONS(1625), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1625), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1625), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1625), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1625), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1625), + [aux_sym_certificate_file_token1] = ACTIONS(1625), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1625), + [aux_sym_channel_timeout_token1] = ACTIONS(1625), + [aux_sym_check_host_ip_token1] = ACTIONS(1625), + [aux_sym_ciphers_token1] = ACTIONS(1625), + [aux_sym_cipher_token1] = ACTIONS(1627), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1625), + [aux_sym_compression_token1] = ACTIONS(1625), + [aux_sym_connection_attempts_token1] = ACTIONS(1625), + [aux_sym_connect_timeout_token1] = ACTIONS(1625), + [aux_sym_control_master_token1] = ACTIONS(1625), + [aux_sym_control_path_token1] = ACTIONS(1625), + [aux_sym_control_persist_token1] = ACTIONS(1625), + [aux_sym_dynamic_forward_token1] = ACTIONS(1625), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1625), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1625), + [aux_sym_escape_char_token1] = ACTIONS(1625), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1625), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1625), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1625), + [aux_sym_forward_agent_token1] = ACTIONS(1625), + [aux_sym_forward_x11_token1] = ACTIONS(1627), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1625), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1625), + [aux_sym_gateway_ports_token1] = ACTIONS(1625), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1625), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1625), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1625), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1625), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1625), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1625), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1625), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1625), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1625), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1625), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1625), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1625), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1625), + [aux_sym_host_key_alias_token1] = ACTIONS(1625), + [aux_sym_hostname_token1] = ACTIONS(1625), + [aux_sym_identities_only_token1] = ACTIONS(1625), + [aux_sym_identity_agent_token1] = ACTIONS(1625), + [aux_sym_identity_file_token1] = ACTIONS(1625), + [aux_sym_ignore_unknown_token1] = ACTIONS(1625), + [aux_sym_include_token1] = ACTIONS(1625), + [aux_sym_ip_qos_token1] = ACTIONS(1625), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1625), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1625), + [aux_sym_kex_algorithms_token1] = ACTIONS(1625), + [aux_sym_known_hosts_command_token1] = ACTIONS(1625), + [aux_sym_local_command_token1] = ACTIONS(1625), + [aux_sym_local_forward_token1] = ACTIONS(1625), + [aux_sym_log_level_token1] = ACTIONS(1625), + [aux_sym_log_verbose_token1] = ACTIONS(1625), + [aux_sym_macs_token1] = ACTIONS(1625), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1625), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1625), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1625), + [aux_sym_password_authentication_token1] = ACTIONS(1625), + [aux_sym_permit_local_command_token1] = ACTIONS(1625), + [aux_sym_permit_remote_open_token1] = ACTIONS(1625), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1625), + [aux_sym_port_token1] = ACTIONS(1625), + [aux_sym_preferred_authentications_token1] = ACTIONS(1625), + [aux_sym_protocol_token1] = ACTIONS(1625), + [aux_sym_proxy_command_token1] = ACTIONS(1625), + [aux_sym_proxy_jump_token1] = ACTIONS(1625), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1625), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1625), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1625), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1625), + [aux_sym_rekey_limit_token1] = ACTIONS(1625), + [aux_sym_remote_command_token1] = ACTIONS(1625), + [aux_sym_remote_forward_token1] = ACTIONS(1625), + [aux_sym_request_tty_token1] = ACTIONS(1625), + [aux_sym_required_rsa_size_token1] = ACTIONS(1625), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1625), + [aux_sym_security_key_provider_token1] = ACTIONS(1625), + [aux_sym_send_env_token1] = ACTIONS(1625), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1625), + [aux_sym_server_alive_interval_token1] = ACTIONS(1625), + [aux_sym_session_type_token1] = ACTIONS(1625), + [aux_sym_set_env_token1] = ACTIONS(1625), + [aux_sym_stdin_null_token1] = ACTIONS(1625), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1625), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1625), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1625), + [aux_sym_syslog_facility_token1] = ACTIONS(1625), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1625), + [aux_sym_keep_alive_token1] = ACTIONS(1625), + [aux_sym_tag_token1] = ACTIONS(1625), + [aux_sym_tunnel_token1] = ACTIONS(1627), + [aux_sym_tunnel_device_token1] = ACTIONS(1625), + [aux_sym_update_host_keys_token1] = ACTIONS(1625), + [aux_sym_use_keychain_token1] = ACTIONS(1625), + [aux_sym_use_roaming_token1] = ACTIONS(1625), + [aux_sym_user_token1] = ACTIONS(1627), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1625), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1625), + [aux_sym_visual_host_key_token1] = ACTIONS(1625), + [aux_sym_xauth_location_token1] = ACTIONS(1625), }, [178] = { - [ts_builtin_sym_end] = ACTIONS(1626), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1628), - [anon_sym_DQUOTE] = ACTIONS(1630), - [aux_sym_match_token1] = ACTIONS(1626), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1626), - [aux_sym_address_family_token1] = ACTIONS(1626), - [aux_sym_batch_mode_token1] = ACTIONS(1626), - [aux_sym_bind_address_token1] = ACTIONS(1626), - [aux_sym_bind_interface_token1] = ACTIONS(1626), - [aux_sym_canonical_domains_token1] = ACTIONS(1626), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1626), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1626), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1626), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1626), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1626), - [aux_sym_certificate_file_token1] = ACTIONS(1626), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1626), - [aux_sym_channel_timeout_token1] = ACTIONS(1626), - [aux_sym_check_host_ip_token1] = ACTIONS(1626), - [aux_sym_ciphers_token1] = ACTIONS(1626), - [aux_sym_cipher_token1] = ACTIONS(1628), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1626), - [aux_sym_compression_token1] = ACTIONS(1626), - [aux_sym_connection_attempts_token1] = ACTIONS(1626), - [aux_sym_connect_timeout_token1] = ACTIONS(1626), - [aux_sym_control_master_token1] = ACTIONS(1626), - [aux_sym_control_path_token1] = ACTIONS(1626), - [aux_sym_control_persist_token1] = ACTIONS(1626), - [aux_sym_dynamic_forward_token1] = ACTIONS(1626), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1626), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1626), - [aux_sym_escape_char_token1] = ACTIONS(1626), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1626), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1626), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1626), - [aux_sym_forward_agent_token1] = ACTIONS(1626), - [aux_sym_forward_x11_token1] = ACTIONS(1628), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1626), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1626), - [aux_sym_gateway_ports_token1] = ACTIONS(1626), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1626), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1626), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1626), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1626), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1626), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1626), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1626), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1626), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1626), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1626), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1626), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1626), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1626), - [aux_sym_host_key_alias_token1] = ACTIONS(1626), - [aux_sym_hostname_token1] = ACTIONS(1626), - [aux_sym_identities_only_token1] = ACTIONS(1626), - [aux_sym_identity_agent_token1] = ACTIONS(1626), - [aux_sym_identity_file_token1] = ACTIONS(1626), - [aux_sym_ignore_unknown_token1] = ACTIONS(1626), - [aux_sym_include_token1] = ACTIONS(1626), - [aux_sym_ip_qos_token1] = ACTIONS(1626), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1626), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1626), - [aux_sym_kex_algorithms_token1] = ACTIONS(1626), - [aux_sym_known_hosts_command_token1] = ACTIONS(1626), - [aux_sym_local_command_token1] = ACTIONS(1626), - [aux_sym_local_forward_token1] = ACTIONS(1626), - [aux_sym_log_level_token1] = ACTIONS(1626), - [aux_sym_log_verbose_token1] = ACTIONS(1626), - [aux_sym_macs_token1] = ACTIONS(1626), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1626), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1626), - [aux_sym_password_authentication_token1] = ACTIONS(1626), - [aux_sym_permit_local_command_token1] = ACTIONS(1626), - [aux_sym_permit_remote_open_token1] = ACTIONS(1626), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1626), - [aux_sym_port_token1] = ACTIONS(1626), - [aux_sym_preferred_authentications_token1] = ACTIONS(1626), - [aux_sym_protocol_token1] = ACTIONS(1626), - [aux_sym_proxy_command_token1] = ACTIONS(1626), - [aux_sym_proxy_jump_token1] = ACTIONS(1626), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1626), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1626), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1626), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1626), - [aux_sym_rekey_limit_token1] = ACTIONS(1626), - [aux_sym_remote_command_token1] = ACTIONS(1626), - [aux_sym_remote_forward_token1] = ACTIONS(1626), - [aux_sym_request_tty_token1] = ACTIONS(1626), - [aux_sym_required_rsa_size_token1] = ACTIONS(1626), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1626), - [aux_sym_security_key_provider_token1] = ACTIONS(1626), - [aux_sym_send_env_token1] = ACTIONS(1626), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1626), - [aux_sym_server_alive_interval_token1] = ACTIONS(1626), - [aux_sym_session_type_token1] = ACTIONS(1626), - [aux_sym_set_env_token1] = ACTIONS(1626), - [aux_sym_stdin_null_token1] = ACTIONS(1626), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1626), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1626), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1626), - [aux_sym_syslog_facility_token1] = ACTIONS(1626), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1626), - [aux_sym_keep_alive_token1] = ACTIONS(1626), - [aux_sym_tag_token1] = ACTIONS(1626), - [aux_sym_tunnel_token1] = ACTIONS(1628), - [aux_sym_tunnel_device_token1] = ACTIONS(1626), - [aux_sym_update_host_keys_token1] = ACTIONS(1626), - [aux_sym_use_keychain_token1] = ACTIONS(1626), - [aux_sym_use_roaming_token1] = ACTIONS(1626), - [aux_sym_user_token1] = ACTIONS(1628), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1626), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1626), - [aux_sym_visual_host_key_token1] = ACTIONS(1626), - [aux_sym_xauth_location_token1] = ACTIONS(1626), + [ts_builtin_sym_end] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1631), + [anon_sym_DQUOTE] = ACTIONS(1633), + [aux_sym_match_token1] = ACTIONS(1629), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1629), + [aux_sym_address_family_token1] = ACTIONS(1629), + [aux_sym_batch_mode_token1] = ACTIONS(1629), + [aux_sym_bind_address_token1] = ACTIONS(1629), + [aux_sym_bind_interface_token1] = ACTIONS(1629), + [aux_sym_canonical_domains_token1] = ACTIONS(1629), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1629), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1629), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1629), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1629), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1629), + [aux_sym_certificate_file_token1] = ACTIONS(1629), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1629), + [aux_sym_channel_timeout_token1] = ACTIONS(1629), + [aux_sym_check_host_ip_token1] = ACTIONS(1629), + [aux_sym_ciphers_token1] = ACTIONS(1629), + [aux_sym_cipher_token1] = ACTIONS(1631), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1629), + [aux_sym_compression_token1] = ACTIONS(1629), + [aux_sym_connection_attempts_token1] = ACTIONS(1629), + [aux_sym_connect_timeout_token1] = ACTIONS(1629), + [aux_sym_control_master_token1] = ACTIONS(1629), + [aux_sym_control_path_token1] = ACTIONS(1629), + [aux_sym_control_persist_token1] = ACTIONS(1629), + [aux_sym_dynamic_forward_token1] = ACTIONS(1629), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1629), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1629), + [aux_sym_escape_char_token1] = ACTIONS(1629), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1629), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1629), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1629), + [aux_sym_forward_agent_token1] = ACTIONS(1629), + [aux_sym_forward_x11_token1] = ACTIONS(1631), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1629), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1629), + [aux_sym_gateway_ports_token1] = ACTIONS(1629), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1629), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1629), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1629), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1629), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1629), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1629), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1629), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1629), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1629), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1629), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1629), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1629), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1629), + [aux_sym_host_key_alias_token1] = ACTIONS(1629), + [aux_sym_hostname_token1] = ACTIONS(1629), + [aux_sym_identities_only_token1] = ACTIONS(1629), + [aux_sym_identity_agent_token1] = ACTIONS(1629), + [aux_sym_identity_file_token1] = ACTIONS(1629), + [aux_sym_ignore_unknown_token1] = ACTIONS(1629), + [aux_sym_include_token1] = ACTIONS(1629), + [aux_sym_ip_qos_token1] = ACTIONS(1629), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1629), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1629), + [aux_sym_kex_algorithms_token1] = ACTIONS(1629), + [aux_sym_known_hosts_command_token1] = ACTIONS(1629), + [aux_sym_local_command_token1] = ACTIONS(1629), + [aux_sym_local_forward_token1] = ACTIONS(1629), + [aux_sym_log_level_token1] = ACTIONS(1629), + [aux_sym_log_verbose_token1] = ACTIONS(1629), + [aux_sym_macs_token1] = ACTIONS(1629), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1629), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1629), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1629), + [aux_sym_password_authentication_token1] = ACTIONS(1629), + [aux_sym_permit_local_command_token1] = ACTIONS(1629), + [aux_sym_permit_remote_open_token1] = ACTIONS(1629), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1629), + [aux_sym_port_token1] = ACTIONS(1629), + [aux_sym_preferred_authentications_token1] = ACTIONS(1629), + [aux_sym_protocol_token1] = ACTIONS(1629), + [aux_sym_proxy_command_token1] = ACTIONS(1629), + [aux_sym_proxy_jump_token1] = ACTIONS(1629), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1629), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1629), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1629), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1629), + [aux_sym_rekey_limit_token1] = ACTIONS(1629), + [aux_sym_remote_command_token1] = ACTIONS(1629), + [aux_sym_remote_forward_token1] = ACTIONS(1629), + [aux_sym_request_tty_token1] = ACTIONS(1629), + [aux_sym_required_rsa_size_token1] = ACTIONS(1629), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1629), + [aux_sym_security_key_provider_token1] = ACTIONS(1629), + [aux_sym_send_env_token1] = ACTIONS(1629), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1629), + [aux_sym_server_alive_interval_token1] = ACTIONS(1629), + [aux_sym_session_type_token1] = ACTIONS(1629), + [aux_sym_set_env_token1] = ACTIONS(1629), + [aux_sym_stdin_null_token1] = ACTIONS(1629), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1629), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1629), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1629), + [aux_sym_syslog_facility_token1] = ACTIONS(1629), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1629), + [aux_sym_keep_alive_token1] = ACTIONS(1629), + [aux_sym_tag_token1] = ACTIONS(1629), + [aux_sym_tunnel_token1] = ACTIONS(1631), + [aux_sym_tunnel_device_token1] = ACTIONS(1629), + [aux_sym_update_host_keys_token1] = ACTIONS(1629), + [aux_sym_use_keychain_token1] = ACTIONS(1629), + [aux_sym_use_roaming_token1] = ACTIONS(1629), + [aux_sym_user_token1] = ACTIONS(1631), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1629), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1629), + [aux_sym_visual_host_key_token1] = ACTIONS(1629), + [aux_sym_xauth_location_token1] = ACTIONS(1629), }, [179] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1634), - [anon_sym_DQUOTE] = ACTIONS(1636), - [aux_sym_match_token1] = ACTIONS(1632), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1632), - [aux_sym_address_family_token1] = ACTIONS(1632), - [aux_sym_batch_mode_token1] = ACTIONS(1632), - [aux_sym_bind_address_token1] = ACTIONS(1632), - [aux_sym_bind_interface_token1] = ACTIONS(1632), - [aux_sym_canonical_domains_token1] = ACTIONS(1632), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1632), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1632), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1632), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1632), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1632), - [aux_sym_certificate_file_token1] = ACTIONS(1632), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1632), - [aux_sym_channel_timeout_token1] = ACTIONS(1632), - [aux_sym_check_host_ip_token1] = ACTIONS(1632), - [aux_sym_ciphers_token1] = ACTIONS(1632), - [aux_sym_cipher_token1] = ACTIONS(1634), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1632), - [aux_sym_compression_token1] = ACTIONS(1632), - [aux_sym_connection_attempts_token1] = ACTIONS(1632), - [aux_sym_connect_timeout_token1] = ACTIONS(1632), - [aux_sym_control_master_token1] = ACTIONS(1632), - [aux_sym_control_path_token1] = ACTIONS(1632), - [aux_sym_control_persist_token1] = ACTIONS(1632), - [aux_sym_dynamic_forward_token1] = ACTIONS(1632), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1632), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1632), - [aux_sym_escape_char_token1] = ACTIONS(1632), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1632), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1632), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1632), - [aux_sym_forward_agent_token1] = ACTIONS(1632), - [aux_sym_forward_x11_token1] = ACTIONS(1634), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1632), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1632), - [aux_sym_gateway_ports_token1] = ACTIONS(1632), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1632), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1632), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1632), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1632), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1632), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1632), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1632), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1632), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1632), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1632), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1632), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1632), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1632), - [aux_sym_host_key_alias_token1] = ACTIONS(1632), - [aux_sym_hostname_token1] = ACTIONS(1632), - [aux_sym_identities_only_token1] = ACTIONS(1632), - [aux_sym_identity_agent_token1] = ACTIONS(1632), - [aux_sym_identity_file_token1] = ACTIONS(1632), - [aux_sym_ignore_unknown_token1] = ACTIONS(1632), - [aux_sym_include_token1] = ACTIONS(1632), - [aux_sym_ip_qos_token1] = ACTIONS(1632), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1632), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1632), - [aux_sym_kex_algorithms_token1] = ACTIONS(1632), - [aux_sym_known_hosts_command_token1] = ACTIONS(1632), - [aux_sym_local_command_token1] = ACTIONS(1632), - [aux_sym_local_forward_token1] = ACTIONS(1632), - [aux_sym_log_level_token1] = ACTIONS(1632), - [aux_sym_log_verbose_token1] = ACTIONS(1632), - [aux_sym_macs_token1] = ACTIONS(1632), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1632), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1632), - [aux_sym_password_authentication_token1] = ACTIONS(1632), - [aux_sym_permit_local_command_token1] = ACTIONS(1632), - [aux_sym_permit_remote_open_token1] = ACTIONS(1632), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1632), - [aux_sym_port_token1] = ACTIONS(1632), - [aux_sym_preferred_authentications_token1] = ACTIONS(1632), - [aux_sym_protocol_token1] = ACTIONS(1632), - [aux_sym_proxy_command_token1] = ACTIONS(1632), - [aux_sym_proxy_jump_token1] = ACTIONS(1632), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1632), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1632), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1632), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1632), - [aux_sym_rekey_limit_token1] = ACTIONS(1632), - [aux_sym_remote_command_token1] = ACTIONS(1632), - [aux_sym_remote_forward_token1] = ACTIONS(1632), - [aux_sym_request_tty_token1] = ACTIONS(1632), - [aux_sym_required_rsa_size_token1] = ACTIONS(1632), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1632), - [aux_sym_security_key_provider_token1] = ACTIONS(1632), - [aux_sym_send_env_token1] = ACTIONS(1632), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1632), - [aux_sym_server_alive_interval_token1] = ACTIONS(1632), - [aux_sym_session_type_token1] = ACTIONS(1632), - [aux_sym_set_env_token1] = ACTIONS(1632), - [aux_sym_stdin_null_token1] = ACTIONS(1632), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1632), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1632), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1632), - [aux_sym_syslog_facility_token1] = ACTIONS(1632), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1632), - [aux_sym_keep_alive_token1] = ACTIONS(1632), - [aux_sym_tag_token1] = ACTIONS(1632), - [aux_sym_tunnel_token1] = ACTIONS(1634), - [aux_sym_tunnel_device_token1] = ACTIONS(1632), - [aux_sym_update_host_keys_token1] = ACTIONS(1632), - [aux_sym_use_keychain_token1] = ACTIONS(1632), - [aux_sym_use_roaming_token1] = ACTIONS(1632), - [aux_sym_user_token1] = ACTIONS(1634), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1632), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1632), - [aux_sym_visual_host_key_token1] = ACTIONS(1632), - [aux_sym_xauth_location_token1] = ACTIONS(1632), + [ts_builtin_sym_end] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1637), + [anon_sym_DQUOTE] = ACTIONS(1639), + [aux_sym_match_token1] = ACTIONS(1635), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1635), + [aux_sym_address_family_token1] = ACTIONS(1635), + [aux_sym_batch_mode_token1] = ACTIONS(1635), + [aux_sym_bind_address_token1] = ACTIONS(1635), + [aux_sym_bind_interface_token1] = ACTIONS(1635), + [aux_sym_canonical_domains_token1] = ACTIONS(1635), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1635), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1635), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1635), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1635), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1635), + [aux_sym_certificate_file_token1] = ACTIONS(1635), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1635), + [aux_sym_channel_timeout_token1] = ACTIONS(1635), + [aux_sym_check_host_ip_token1] = ACTIONS(1635), + [aux_sym_ciphers_token1] = ACTIONS(1635), + [aux_sym_cipher_token1] = ACTIONS(1637), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1635), + [aux_sym_compression_token1] = ACTIONS(1635), + [aux_sym_connection_attempts_token1] = ACTIONS(1635), + [aux_sym_connect_timeout_token1] = ACTIONS(1635), + [aux_sym_control_master_token1] = ACTIONS(1635), + [aux_sym_control_path_token1] = ACTIONS(1635), + [aux_sym_control_persist_token1] = ACTIONS(1635), + [aux_sym_dynamic_forward_token1] = ACTIONS(1635), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1635), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1635), + [aux_sym_escape_char_token1] = ACTIONS(1635), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1635), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1635), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1635), + [aux_sym_forward_agent_token1] = ACTIONS(1635), + [aux_sym_forward_x11_token1] = ACTIONS(1637), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1635), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1635), + [aux_sym_gateway_ports_token1] = ACTIONS(1635), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1635), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1635), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1635), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1635), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1635), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1635), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1635), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1635), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1635), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1635), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1635), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1635), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1635), + [aux_sym_host_key_alias_token1] = ACTIONS(1635), + [aux_sym_hostname_token1] = ACTIONS(1635), + [aux_sym_identities_only_token1] = ACTIONS(1635), + [aux_sym_identity_agent_token1] = ACTIONS(1635), + [aux_sym_identity_file_token1] = ACTIONS(1635), + [aux_sym_ignore_unknown_token1] = ACTIONS(1635), + [aux_sym_include_token1] = ACTIONS(1635), + [aux_sym_ip_qos_token1] = ACTIONS(1635), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1635), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1635), + [aux_sym_kex_algorithms_token1] = ACTIONS(1635), + [aux_sym_known_hosts_command_token1] = ACTIONS(1635), + [aux_sym_local_command_token1] = ACTIONS(1635), + [aux_sym_local_forward_token1] = ACTIONS(1635), + [aux_sym_log_level_token1] = ACTIONS(1635), + [aux_sym_log_verbose_token1] = ACTIONS(1635), + [aux_sym_macs_token1] = ACTIONS(1635), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1635), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1635), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1635), + [aux_sym_password_authentication_token1] = ACTIONS(1635), + [aux_sym_permit_local_command_token1] = ACTIONS(1635), + [aux_sym_permit_remote_open_token1] = ACTIONS(1635), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1635), + [aux_sym_port_token1] = ACTIONS(1635), + [aux_sym_preferred_authentications_token1] = ACTIONS(1635), + [aux_sym_protocol_token1] = ACTIONS(1635), + [aux_sym_proxy_command_token1] = ACTIONS(1635), + [aux_sym_proxy_jump_token1] = ACTIONS(1635), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1635), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1635), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1635), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1635), + [aux_sym_rekey_limit_token1] = ACTIONS(1635), + [aux_sym_remote_command_token1] = ACTIONS(1635), + [aux_sym_remote_forward_token1] = ACTIONS(1635), + [aux_sym_request_tty_token1] = ACTIONS(1635), + [aux_sym_required_rsa_size_token1] = ACTIONS(1635), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1635), + [aux_sym_security_key_provider_token1] = ACTIONS(1635), + [aux_sym_send_env_token1] = ACTIONS(1635), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1635), + [aux_sym_server_alive_interval_token1] = ACTIONS(1635), + [aux_sym_session_type_token1] = ACTIONS(1635), + [aux_sym_set_env_token1] = ACTIONS(1635), + [aux_sym_stdin_null_token1] = ACTIONS(1635), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1635), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1635), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1635), + [aux_sym_syslog_facility_token1] = ACTIONS(1635), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1635), + [aux_sym_keep_alive_token1] = ACTIONS(1635), + [aux_sym_tag_token1] = ACTIONS(1635), + [aux_sym_tunnel_token1] = ACTIONS(1637), + [aux_sym_tunnel_device_token1] = ACTIONS(1635), + [aux_sym_update_host_keys_token1] = ACTIONS(1635), + [aux_sym_use_keychain_token1] = ACTIONS(1635), + [aux_sym_use_roaming_token1] = ACTIONS(1635), + [aux_sym_user_token1] = ACTIONS(1637), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1635), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1635), + [aux_sym_visual_host_key_token1] = ACTIONS(1635), + [aux_sym_xauth_location_token1] = ACTIONS(1635), }, [180] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1640), - [anon_sym_DQUOTE] = ACTIONS(1642), - [aux_sym_match_token1] = ACTIONS(1638), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1638), - [aux_sym_address_family_token1] = ACTIONS(1638), - [aux_sym_batch_mode_token1] = ACTIONS(1638), - [aux_sym_bind_address_token1] = ACTIONS(1638), - [aux_sym_bind_interface_token1] = ACTIONS(1638), - [aux_sym_canonical_domains_token1] = ACTIONS(1638), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1638), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1638), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1638), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1638), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1638), - [aux_sym_certificate_file_token1] = ACTIONS(1638), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1638), - [aux_sym_channel_timeout_token1] = ACTIONS(1638), - [aux_sym_check_host_ip_token1] = ACTIONS(1638), - [aux_sym_ciphers_token1] = ACTIONS(1638), - [aux_sym_cipher_token1] = ACTIONS(1640), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1638), - [aux_sym_compression_token1] = ACTIONS(1638), - [aux_sym_connection_attempts_token1] = ACTIONS(1638), - [aux_sym_connect_timeout_token1] = ACTIONS(1638), - [aux_sym_control_master_token1] = ACTIONS(1638), - [aux_sym_control_path_token1] = ACTIONS(1638), - [aux_sym_control_persist_token1] = ACTIONS(1638), - [aux_sym_dynamic_forward_token1] = ACTIONS(1638), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1638), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1638), - [aux_sym_escape_char_token1] = ACTIONS(1638), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1638), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1638), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1638), - [aux_sym_forward_agent_token1] = ACTIONS(1638), - [aux_sym_forward_x11_token1] = ACTIONS(1640), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1638), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1638), - [aux_sym_gateway_ports_token1] = ACTIONS(1638), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1638), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1638), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1638), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1638), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1638), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1638), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1638), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1638), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1638), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1638), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1638), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1638), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1638), - [aux_sym_host_key_alias_token1] = ACTIONS(1638), - [aux_sym_hostname_token1] = ACTIONS(1638), - [aux_sym_identities_only_token1] = ACTIONS(1638), - [aux_sym_identity_agent_token1] = ACTIONS(1638), - [aux_sym_identity_file_token1] = ACTIONS(1638), - [aux_sym_ignore_unknown_token1] = ACTIONS(1638), - [aux_sym_include_token1] = ACTIONS(1638), - [aux_sym_ip_qos_token1] = ACTIONS(1638), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1638), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1638), - [aux_sym_kex_algorithms_token1] = ACTIONS(1638), - [aux_sym_known_hosts_command_token1] = ACTIONS(1638), - [aux_sym_local_command_token1] = ACTIONS(1638), - [aux_sym_local_forward_token1] = ACTIONS(1638), - [aux_sym_log_level_token1] = ACTIONS(1638), - [aux_sym_log_verbose_token1] = ACTIONS(1638), - [aux_sym_macs_token1] = ACTIONS(1638), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1638), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1638), - [aux_sym_password_authentication_token1] = ACTIONS(1638), - [aux_sym_permit_local_command_token1] = ACTIONS(1638), - [aux_sym_permit_remote_open_token1] = ACTIONS(1638), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1638), - [aux_sym_port_token1] = ACTIONS(1638), - [aux_sym_preferred_authentications_token1] = ACTIONS(1638), - [aux_sym_protocol_token1] = ACTIONS(1638), - [aux_sym_proxy_command_token1] = ACTIONS(1638), - [aux_sym_proxy_jump_token1] = ACTIONS(1638), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1638), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1638), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1638), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1638), - [aux_sym_rekey_limit_token1] = ACTIONS(1638), - [aux_sym_remote_command_token1] = ACTIONS(1638), - [aux_sym_remote_forward_token1] = ACTIONS(1638), - [aux_sym_request_tty_token1] = ACTIONS(1638), - [aux_sym_required_rsa_size_token1] = ACTIONS(1638), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1638), - [aux_sym_security_key_provider_token1] = ACTIONS(1638), - [aux_sym_send_env_token1] = ACTIONS(1638), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1638), - [aux_sym_server_alive_interval_token1] = ACTIONS(1638), - [aux_sym_session_type_token1] = ACTIONS(1638), - [aux_sym_set_env_token1] = ACTIONS(1638), - [aux_sym_stdin_null_token1] = ACTIONS(1638), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1638), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1638), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1638), - [aux_sym_syslog_facility_token1] = ACTIONS(1638), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1638), - [aux_sym_keep_alive_token1] = ACTIONS(1638), - [aux_sym_tag_token1] = ACTIONS(1638), - [aux_sym_tunnel_token1] = ACTIONS(1640), - [aux_sym_tunnel_device_token1] = ACTIONS(1638), - [aux_sym_update_host_keys_token1] = ACTIONS(1638), - [aux_sym_use_keychain_token1] = ACTIONS(1638), - [aux_sym_use_roaming_token1] = ACTIONS(1638), - [aux_sym_user_token1] = ACTIONS(1640), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1638), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1638), - [aux_sym_visual_host_key_token1] = ACTIONS(1638), - [aux_sym_xauth_location_token1] = ACTIONS(1638), + [ts_builtin_sym_end] = ACTIONS(1641), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1643), + [anon_sym_DQUOTE] = ACTIONS(1645), + [aux_sym_match_token1] = ACTIONS(1641), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1641), + [aux_sym_address_family_token1] = ACTIONS(1641), + [aux_sym_batch_mode_token1] = ACTIONS(1641), + [aux_sym_bind_address_token1] = ACTIONS(1641), + [aux_sym_bind_interface_token1] = ACTIONS(1641), + [aux_sym_canonical_domains_token1] = ACTIONS(1641), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1641), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1641), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1641), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1641), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1641), + [aux_sym_certificate_file_token1] = ACTIONS(1641), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1641), + [aux_sym_channel_timeout_token1] = ACTIONS(1641), + [aux_sym_check_host_ip_token1] = ACTIONS(1641), + [aux_sym_ciphers_token1] = ACTIONS(1641), + [aux_sym_cipher_token1] = ACTIONS(1643), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1641), + [aux_sym_compression_token1] = ACTIONS(1641), + [aux_sym_connection_attempts_token1] = ACTIONS(1641), + [aux_sym_connect_timeout_token1] = ACTIONS(1641), + [aux_sym_control_master_token1] = ACTIONS(1641), + [aux_sym_control_path_token1] = ACTIONS(1641), + [aux_sym_control_persist_token1] = ACTIONS(1641), + [aux_sym_dynamic_forward_token1] = ACTIONS(1641), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1641), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1641), + [aux_sym_escape_char_token1] = ACTIONS(1641), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1641), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1641), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1641), + [aux_sym_forward_agent_token1] = ACTIONS(1641), + [aux_sym_forward_x11_token1] = ACTIONS(1643), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1641), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1641), + [aux_sym_gateway_ports_token1] = ACTIONS(1641), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1641), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1641), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1641), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1641), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1641), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1641), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1641), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1641), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1641), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1641), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1641), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1641), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1641), + [aux_sym_host_key_alias_token1] = ACTIONS(1641), + [aux_sym_hostname_token1] = ACTIONS(1641), + [aux_sym_identities_only_token1] = ACTIONS(1641), + [aux_sym_identity_agent_token1] = ACTIONS(1641), + [aux_sym_identity_file_token1] = ACTIONS(1641), + [aux_sym_ignore_unknown_token1] = ACTIONS(1641), + [aux_sym_include_token1] = ACTIONS(1641), + [aux_sym_ip_qos_token1] = ACTIONS(1641), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1641), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1641), + [aux_sym_kex_algorithms_token1] = ACTIONS(1641), + [aux_sym_known_hosts_command_token1] = ACTIONS(1641), + [aux_sym_local_command_token1] = ACTIONS(1641), + [aux_sym_local_forward_token1] = ACTIONS(1641), + [aux_sym_log_level_token1] = ACTIONS(1641), + [aux_sym_log_verbose_token1] = ACTIONS(1641), + [aux_sym_macs_token1] = ACTIONS(1641), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1641), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1641), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1641), + [aux_sym_password_authentication_token1] = ACTIONS(1641), + [aux_sym_permit_local_command_token1] = ACTIONS(1641), + [aux_sym_permit_remote_open_token1] = ACTIONS(1641), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1641), + [aux_sym_port_token1] = ACTIONS(1641), + [aux_sym_preferred_authentications_token1] = ACTIONS(1641), + [aux_sym_protocol_token1] = ACTIONS(1641), + [aux_sym_proxy_command_token1] = ACTIONS(1641), + [aux_sym_proxy_jump_token1] = ACTIONS(1641), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1641), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1641), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1641), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1641), + [aux_sym_rekey_limit_token1] = ACTIONS(1641), + [aux_sym_remote_command_token1] = ACTIONS(1641), + [aux_sym_remote_forward_token1] = ACTIONS(1641), + [aux_sym_request_tty_token1] = ACTIONS(1641), + [aux_sym_required_rsa_size_token1] = ACTIONS(1641), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1641), + [aux_sym_security_key_provider_token1] = ACTIONS(1641), + [aux_sym_send_env_token1] = ACTIONS(1641), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1641), + [aux_sym_server_alive_interval_token1] = ACTIONS(1641), + [aux_sym_session_type_token1] = ACTIONS(1641), + [aux_sym_set_env_token1] = ACTIONS(1641), + [aux_sym_stdin_null_token1] = ACTIONS(1641), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1641), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1641), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1641), + [aux_sym_syslog_facility_token1] = ACTIONS(1641), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1641), + [aux_sym_keep_alive_token1] = ACTIONS(1641), + [aux_sym_tag_token1] = ACTIONS(1641), + [aux_sym_tunnel_token1] = ACTIONS(1643), + [aux_sym_tunnel_device_token1] = ACTIONS(1641), + [aux_sym_update_host_keys_token1] = ACTIONS(1641), + [aux_sym_use_keychain_token1] = ACTIONS(1641), + [aux_sym_use_roaming_token1] = ACTIONS(1641), + [aux_sym_user_token1] = ACTIONS(1643), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1641), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1641), + [aux_sym_visual_host_key_token1] = ACTIONS(1641), + [aux_sym_xauth_location_token1] = ACTIONS(1641), }, [181] = { - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1646), - [anon_sym_DQUOTE] = ACTIONS(1648), - [aux_sym_match_token1] = ACTIONS(1644), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1644), - [aux_sym_address_family_token1] = ACTIONS(1644), - [aux_sym_batch_mode_token1] = ACTIONS(1644), - [aux_sym_bind_address_token1] = ACTIONS(1644), - [aux_sym_bind_interface_token1] = ACTIONS(1644), - [aux_sym_canonical_domains_token1] = ACTIONS(1644), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1644), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1644), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1644), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1644), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1644), - [aux_sym_certificate_file_token1] = ACTIONS(1644), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1644), - [aux_sym_channel_timeout_token1] = ACTIONS(1644), - [aux_sym_check_host_ip_token1] = ACTIONS(1644), - [aux_sym_ciphers_token1] = ACTIONS(1644), - [aux_sym_cipher_token1] = ACTIONS(1646), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1644), - [aux_sym_compression_token1] = ACTIONS(1644), - [aux_sym_connection_attempts_token1] = ACTIONS(1644), - [aux_sym_connect_timeout_token1] = ACTIONS(1644), - [aux_sym_control_master_token1] = ACTIONS(1644), - [aux_sym_control_path_token1] = ACTIONS(1644), - [aux_sym_control_persist_token1] = ACTIONS(1644), - [aux_sym_dynamic_forward_token1] = ACTIONS(1644), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1644), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1644), - [aux_sym_escape_char_token1] = ACTIONS(1644), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1644), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1644), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1644), - [aux_sym_forward_agent_token1] = ACTIONS(1644), - [aux_sym_forward_x11_token1] = ACTIONS(1646), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1644), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1644), - [aux_sym_gateway_ports_token1] = ACTIONS(1644), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1644), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1644), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1644), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1644), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1644), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1644), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1644), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1644), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1644), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1644), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1644), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1644), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1644), - [aux_sym_host_key_alias_token1] = ACTIONS(1644), - [aux_sym_hostname_token1] = ACTIONS(1644), - [aux_sym_identities_only_token1] = ACTIONS(1644), - [aux_sym_identity_agent_token1] = ACTIONS(1644), - [aux_sym_identity_file_token1] = ACTIONS(1644), - [aux_sym_ignore_unknown_token1] = ACTIONS(1644), - [aux_sym_include_token1] = ACTIONS(1644), - [aux_sym_ip_qos_token1] = ACTIONS(1644), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1644), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1644), - [aux_sym_kex_algorithms_token1] = ACTIONS(1644), - [aux_sym_known_hosts_command_token1] = ACTIONS(1644), - [aux_sym_local_command_token1] = ACTIONS(1644), - [aux_sym_local_forward_token1] = ACTIONS(1644), - [aux_sym_log_level_token1] = ACTIONS(1644), - [aux_sym_log_verbose_token1] = ACTIONS(1644), - [aux_sym_macs_token1] = ACTIONS(1644), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1644), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1644), - [aux_sym_password_authentication_token1] = ACTIONS(1644), - [aux_sym_permit_local_command_token1] = ACTIONS(1644), - [aux_sym_permit_remote_open_token1] = ACTIONS(1644), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1644), - [aux_sym_port_token1] = ACTIONS(1644), - [aux_sym_preferred_authentications_token1] = ACTIONS(1644), - [aux_sym_protocol_token1] = ACTIONS(1644), - [aux_sym_proxy_command_token1] = ACTIONS(1644), - [aux_sym_proxy_jump_token1] = ACTIONS(1644), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1644), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1644), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1644), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1644), - [aux_sym_rekey_limit_token1] = ACTIONS(1644), - [aux_sym_remote_command_token1] = ACTIONS(1644), - [aux_sym_remote_forward_token1] = ACTIONS(1644), - [aux_sym_request_tty_token1] = ACTIONS(1644), - [aux_sym_required_rsa_size_token1] = ACTIONS(1644), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1644), - [aux_sym_security_key_provider_token1] = ACTIONS(1644), - [aux_sym_send_env_token1] = ACTIONS(1644), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1644), - [aux_sym_server_alive_interval_token1] = ACTIONS(1644), - [aux_sym_session_type_token1] = ACTIONS(1644), - [aux_sym_set_env_token1] = ACTIONS(1644), - [aux_sym_stdin_null_token1] = ACTIONS(1644), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1644), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1644), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1644), - [aux_sym_syslog_facility_token1] = ACTIONS(1644), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1644), - [aux_sym_keep_alive_token1] = ACTIONS(1644), - [aux_sym_tag_token1] = ACTIONS(1644), - [aux_sym_tunnel_token1] = ACTIONS(1646), - [aux_sym_tunnel_device_token1] = ACTIONS(1644), - [aux_sym_update_host_keys_token1] = ACTIONS(1644), - [aux_sym_use_keychain_token1] = ACTIONS(1644), - [aux_sym_use_roaming_token1] = ACTIONS(1644), - [aux_sym_user_token1] = ACTIONS(1646), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1644), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1644), - [aux_sym_visual_host_key_token1] = ACTIONS(1644), - [aux_sym_xauth_location_token1] = ACTIONS(1644), + [ts_builtin_sym_end] = ACTIONS(1647), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1649), + [anon_sym_DQUOTE] = ACTIONS(1651), + [aux_sym_match_token1] = ACTIONS(1647), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1647), + [aux_sym_address_family_token1] = ACTIONS(1647), + [aux_sym_batch_mode_token1] = ACTIONS(1647), + [aux_sym_bind_address_token1] = ACTIONS(1647), + [aux_sym_bind_interface_token1] = ACTIONS(1647), + [aux_sym_canonical_domains_token1] = ACTIONS(1647), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1647), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1647), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1647), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1647), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1647), + [aux_sym_certificate_file_token1] = ACTIONS(1647), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1647), + [aux_sym_channel_timeout_token1] = ACTIONS(1647), + [aux_sym_check_host_ip_token1] = ACTIONS(1647), + [aux_sym_ciphers_token1] = ACTIONS(1647), + [aux_sym_cipher_token1] = ACTIONS(1649), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1647), + [aux_sym_compression_token1] = ACTIONS(1647), + [aux_sym_connection_attempts_token1] = ACTIONS(1647), + [aux_sym_connect_timeout_token1] = ACTIONS(1647), + [aux_sym_control_master_token1] = ACTIONS(1647), + [aux_sym_control_path_token1] = ACTIONS(1647), + [aux_sym_control_persist_token1] = ACTIONS(1647), + [aux_sym_dynamic_forward_token1] = ACTIONS(1647), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1647), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1647), + [aux_sym_escape_char_token1] = ACTIONS(1647), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1647), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1647), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1647), + [aux_sym_forward_agent_token1] = ACTIONS(1647), + [aux_sym_forward_x11_token1] = ACTIONS(1649), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1647), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1647), + [aux_sym_gateway_ports_token1] = ACTIONS(1647), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1647), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1647), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1647), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1647), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1647), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1647), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1647), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1647), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1647), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1647), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1647), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1647), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1647), + [aux_sym_host_key_alias_token1] = ACTIONS(1647), + [aux_sym_hostname_token1] = ACTIONS(1647), + [aux_sym_identities_only_token1] = ACTIONS(1647), + [aux_sym_identity_agent_token1] = ACTIONS(1647), + [aux_sym_identity_file_token1] = ACTIONS(1647), + [aux_sym_ignore_unknown_token1] = ACTIONS(1647), + [aux_sym_include_token1] = ACTIONS(1647), + [aux_sym_ip_qos_token1] = ACTIONS(1647), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1647), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1647), + [aux_sym_kex_algorithms_token1] = ACTIONS(1647), + [aux_sym_known_hosts_command_token1] = ACTIONS(1647), + [aux_sym_local_command_token1] = ACTIONS(1647), + [aux_sym_local_forward_token1] = ACTIONS(1647), + [aux_sym_log_level_token1] = ACTIONS(1647), + [aux_sym_log_verbose_token1] = ACTIONS(1647), + [aux_sym_macs_token1] = ACTIONS(1647), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1647), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1647), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1647), + [aux_sym_password_authentication_token1] = ACTIONS(1647), + [aux_sym_permit_local_command_token1] = ACTIONS(1647), + [aux_sym_permit_remote_open_token1] = ACTIONS(1647), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1647), + [aux_sym_port_token1] = ACTIONS(1647), + [aux_sym_preferred_authentications_token1] = ACTIONS(1647), + [aux_sym_protocol_token1] = ACTIONS(1647), + [aux_sym_proxy_command_token1] = ACTIONS(1647), + [aux_sym_proxy_jump_token1] = ACTIONS(1647), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1647), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1647), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1647), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1647), + [aux_sym_rekey_limit_token1] = ACTIONS(1647), + [aux_sym_remote_command_token1] = ACTIONS(1647), + [aux_sym_remote_forward_token1] = ACTIONS(1647), + [aux_sym_request_tty_token1] = ACTIONS(1647), + [aux_sym_required_rsa_size_token1] = ACTIONS(1647), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1647), + [aux_sym_security_key_provider_token1] = ACTIONS(1647), + [aux_sym_send_env_token1] = ACTIONS(1647), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1647), + [aux_sym_server_alive_interval_token1] = ACTIONS(1647), + [aux_sym_session_type_token1] = ACTIONS(1647), + [aux_sym_set_env_token1] = ACTIONS(1647), + [aux_sym_stdin_null_token1] = ACTIONS(1647), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1647), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1647), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1647), + [aux_sym_syslog_facility_token1] = ACTIONS(1647), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1647), + [aux_sym_keep_alive_token1] = ACTIONS(1647), + [aux_sym_tag_token1] = ACTIONS(1647), + [aux_sym_tunnel_token1] = ACTIONS(1649), + [aux_sym_tunnel_device_token1] = ACTIONS(1647), + [aux_sym_update_host_keys_token1] = ACTIONS(1647), + [aux_sym_use_keychain_token1] = ACTIONS(1647), + [aux_sym_use_roaming_token1] = ACTIONS(1647), + [aux_sym_user_token1] = ACTIONS(1649), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1647), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1647), + [aux_sym_visual_host_key_token1] = ACTIONS(1647), + [aux_sym_xauth_location_token1] = ACTIONS(1647), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1652), - [anon_sym_DQUOTE] = ACTIONS(1654), - [aux_sym_match_token1] = ACTIONS(1650), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1650), - [aux_sym_address_family_token1] = ACTIONS(1650), - [aux_sym_batch_mode_token1] = ACTIONS(1650), - [aux_sym_bind_address_token1] = ACTIONS(1650), - [aux_sym_bind_interface_token1] = ACTIONS(1650), - [aux_sym_canonical_domains_token1] = ACTIONS(1650), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1650), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1650), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1650), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1650), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1650), - [aux_sym_certificate_file_token1] = ACTIONS(1650), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1650), - [aux_sym_channel_timeout_token1] = ACTIONS(1650), - [aux_sym_check_host_ip_token1] = ACTIONS(1650), - [aux_sym_ciphers_token1] = ACTIONS(1650), - [aux_sym_cipher_token1] = ACTIONS(1652), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1650), - [aux_sym_compression_token1] = ACTIONS(1650), - [aux_sym_connection_attempts_token1] = ACTIONS(1650), - [aux_sym_connect_timeout_token1] = ACTIONS(1650), - [aux_sym_control_master_token1] = ACTIONS(1650), - [aux_sym_control_path_token1] = ACTIONS(1650), - [aux_sym_control_persist_token1] = ACTIONS(1650), - [aux_sym_dynamic_forward_token1] = ACTIONS(1650), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1650), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1650), - [aux_sym_escape_char_token1] = ACTIONS(1650), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1650), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1650), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1650), - [aux_sym_forward_agent_token1] = ACTIONS(1650), - [aux_sym_forward_x11_token1] = ACTIONS(1652), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1650), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1650), - [aux_sym_gateway_ports_token1] = ACTIONS(1650), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1650), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1650), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1650), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1650), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1650), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1650), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1650), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1650), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1650), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1650), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1650), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1650), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1650), - [aux_sym_host_key_alias_token1] = ACTIONS(1650), - [aux_sym_hostname_token1] = ACTIONS(1650), - [aux_sym_identities_only_token1] = ACTIONS(1650), - [aux_sym_identity_agent_token1] = ACTIONS(1650), - [aux_sym_identity_file_token1] = ACTIONS(1650), - [aux_sym_ignore_unknown_token1] = ACTIONS(1650), - [aux_sym_include_token1] = ACTIONS(1650), - [aux_sym_ip_qos_token1] = ACTIONS(1650), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1650), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1650), - [aux_sym_kex_algorithms_token1] = ACTIONS(1650), - [aux_sym_known_hosts_command_token1] = ACTIONS(1650), - [aux_sym_local_command_token1] = ACTIONS(1650), - [aux_sym_local_forward_token1] = ACTIONS(1650), - [aux_sym_log_level_token1] = ACTIONS(1650), - [aux_sym_log_verbose_token1] = ACTIONS(1650), - [aux_sym_macs_token1] = ACTIONS(1650), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1650), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1650), - [aux_sym_password_authentication_token1] = ACTIONS(1650), - [aux_sym_permit_local_command_token1] = ACTIONS(1650), - [aux_sym_permit_remote_open_token1] = ACTIONS(1650), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1650), - [aux_sym_port_token1] = ACTIONS(1650), - [aux_sym_preferred_authentications_token1] = ACTIONS(1650), - [aux_sym_protocol_token1] = ACTIONS(1650), - [aux_sym_proxy_command_token1] = ACTIONS(1650), - [aux_sym_proxy_jump_token1] = ACTIONS(1650), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1650), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1650), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1650), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1650), - [aux_sym_rekey_limit_token1] = ACTIONS(1650), - [aux_sym_remote_command_token1] = ACTIONS(1650), - [aux_sym_remote_forward_token1] = ACTIONS(1650), - [aux_sym_request_tty_token1] = ACTIONS(1650), - [aux_sym_required_rsa_size_token1] = ACTIONS(1650), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1650), - [aux_sym_security_key_provider_token1] = ACTIONS(1650), - [aux_sym_send_env_token1] = ACTIONS(1650), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1650), - [aux_sym_server_alive_interval_token1] = ACTIONS(1650), - [aux_sym_session_type_token1] = ACTIONS(1650), - [aux_sym_set_env_token1] = ACTIONS(1650), - [aux_sym_stdin_null_token1] = ACTIONS(1650), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1650), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1650), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1650), - [aux_sym_syslog_facility_token1] = ACTIONS(1650), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1650), - [aux_sym_keep_alive_token1] = ACTIONS(1650), - [aux_sym_tag_token1] = ACTIONS(1650), - [aux_sym_tunnel_token1] = ACTIONS(1652), - [aux_sym_tunnel_device_token1] = ACTIONS(1650), - [aux_sym_update_host_keys_token1] = ACTIONS(1650), - [aux_sym_use_keychain_token1] = ACTIONS(1650), - [aux_sym_use_roaming_token1] = ACTIONS(1650), - [aux_sym_user_token1] = ACTIONS(1652), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1650), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1650), - [aux_sym_visual_host_key_token1] = ACTIONS(1650), - [aux_sym_xauth_location_token1] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(1657), + [aux_sym_match_token1] = ACTIONS(1653), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1653), + [aux_sym_address_family_token1] = ACTIONS(1653), + [aux_sym_batch_mode_token1] = ACTIONS(1653), + [aux_sym_bind_address_token1] = ACTIONS(1653), + [aux_sym_bind_interface_token1] = ACTIONS(1653), + [aux_sym_canonical_domains_token1] = ACTIONS(1653), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1653), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1653), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1653), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1653), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1653), + [aux_sym_certificate_file_token1] = ACTIONS(1653), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1653), + [aux_sym_channel_timeout_token1] = ACTIONS(1653), + [aux_sym_check_host_ip_token1] = ACTIONS(1653), + [aux_sym_ciphers_token1] = ACTIONS(1653), + [aux_sym_cipher_token1] = ACTIONS(1655), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1653), + [aux_sym_compression_token1] = ACTIONS(1653), + [aux_sym_connection_attempts_token1] = ACTIONS(1653), + [aux_sym_connect_timeout_token1] = ACTIONS(1653), + [aux_sym_control_master_token1] = ACTIONS(1653), + [aux_sym_control_path_token1] = ACTIONS(1653), + [aux_sym_control_persist_token1] = ACTIONS(1653), + [aux_sym_dynamic_forward_token1] = ACTIONS(1653), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1653), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1653), + [aux_sym_escape_char_token1] = ACTIONS(1653), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1653), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1653), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1653), + [aux_sym_forward_agent_token1] = ACTIONS(1653), + [aux_sym_forward_x11_token1] = ACTIONS(1655), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1653), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1653), + [aux_sym_gateway_ports_token1] = ACTIONS(1653), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1653), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1653), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1653), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1653), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1653), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1653), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1653), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1653), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1653), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1653), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1653), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1653), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1653), + [aux_sym_host_key_alias_token1] = ACTIONS(1653), + [aux_sym_hostname_token1] = ACTIONS(1653), + [aux_sym_identities_only_token1] = ACTIONS(1653), + [aux_sym_identity_agent_token1] = ACTIONS(1653), + [aux_sym_identity_file_token1] = ACTIONS(1653), + [aux_sym_ignore_unknown_token1] = ACTIONS(1653), + [aux_sym_include_token1] = ACTIONS(1653), + [aux_sym_ip_qos_token1] = ACTIONS(1653), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1653), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1653), + [aux_sym_kex_algorithms_token1] = ACTIONS(1653), + [aux_sym_known_hosts_command_token1] = ACTIONS(1653), + [aux_sym_local_command_token1] = ACTIONS(1653), + [aux_sym_local_forward_token1] = ACTIONS(1653), + [aux_sym_log_level_token1] = ACTIONS(1653), + [aux_sym_log_verbose_token1] = ACTIONS(1653), + [aux_sym_macs_token1] = ACTIONS(1653), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1653), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1653), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1653), + [aux_sym_password_authentication_token1] = ACTIONS(1653), + [aux_sym_permit_local_command_token1] = ACTIONS(1653), + [aux_sym_permit_remote_open_token1] = ACTIONS(1653), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1653), + [aux_sym_port_token1] = ACTIONS(1653), + [aux_sym_preferred_authentications_token1] = ACTIONS(1653), + [aux_sym_protocol_token1] = ACTIONS(1653), + [aux_sym_proxy_command_token1] = ACTIONS(1653), + [aux_sym_proxy_jump_token1] = ACTIONS(1653), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1653), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1653), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1653), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1653), + [aux_sym_rekey_limit_token1] = ACTIONS(1653), + [aux_sym_remote_command_token1] = ACTIONS(1653), + [aux_sym_remote_forward_token1] = ACTIONS(1653), + [aux_sym_request_tty_token1] = ACTIONS(1653), + [aux_sym_required_rsa_size_token1] = ACTIONS(1653), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1653), + [aux_sym_security_key_provider_token1] = ACTIONS(1653), + [aux_sym_send_env_token1] = ACTIONS(1653), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1653), + [aux_sym_server_alive_interval_token1] = ACTIONS(1653), + [aux_sym_session_type_token1] = ACTIONS(1653), + [aux_sym_set_env_token1] = ACTIONS(1653), + [aux_sym_stdin_null_token1] = ACTIONS(1653), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1653), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1653), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1653), + [aux_sym_syslog_facility_token1] = ACTIONS(1653), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1653), + [aux_sym_keep_alive_token1] = ACTIONS(1653), + [aux_sym_tag_token1] = ACTIONS(1653), + [aux_sym_tunnel_token1] = ACTIONS(1655), + [aux_sym_tunnel_device_token1] = ACTIONS(1653), + [aux_sym_update_host_keys_token1] = ACTIONS(1653), + [aux_sym_use_keychain_token1] = ACTIONS(1653), + [aux_sym_use_roaming_token1] = ACTIONS(1653), + [aux_sym_user_token1] = ACTIONS(1655), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1653), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1653), + [aux_sym_visual_host_key_token1] = ACTIONS(1653), + [aux_sym_xauth_location_token1] = ACTIONS(1653), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1658), - [anon_sym_DQUOTE] = ACTIONS(1660), - [aux_sym_match_token1] = ACTIONS(1656), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1656), - [aux_sym_address_family_token1] = ACTIONS(1656), - [aux_sym_batch_mode_token1] = ACTIONS(1656), - [aux_sym_bind_address_token1] = ACTIONS(1656), - [aux_sym_bind_interface_token1] = ACTIONS(1656), - [aux_sym_canonical_domains_token1] = ACTIONS(1656), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1656), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1656), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1656), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1656), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1656), - [aux_sym_certificate_file_token1] = ACTIONS(1656), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1656), - [aux_sym_channel_timeout_token1] = ACTIONS(1656), - [aux_sym_check_host_ip_token1] = ACTIONS(1656), - [aux_sym_ciphers_token1] = ACTIONS(1656), - [aux_sym_cipher_token1] = ACTIONS(1658), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1656), - [aux_sym_compression_token1] = ACTIONS(1656), - [aux_sym_connection_attempts_token1] = ACTIONS(1656), - [aux_sym_connect_timeout_token1] = ACTIONS(1656), - [aux_sym_control_master_token1] = ACTIONS(1656), - [aux_sym_control_path_token1] = ACTIONS(1656), - [aux_sym_control_persist_token1] = ACTIONS(1656), - [aux_sym_dynamic_forward_token1] = ACTIONS(1656), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1656), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1656), - [aux_sym_escape_char_token1] = ACTIONS(1656), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1656), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1656), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1656), - [aux_sym_forward_agent_token1] = ACTIONS(1656), - [aux_sym_forward_x11_token1] = ACTIONS(1658), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1656), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1656), - [aux_sym_gateway_ports_token1] = ACTIONS(1656), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1656), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1656), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1656), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1656), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1656), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1656), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1656), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1656), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1656), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1656), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1656), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1656), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1656), - [aux_sym_host_key_alias_token1] = ACTIONS(1656), - [aux_sym_hostname_token1] = ACTIONS(1656), - [aux_sym_identities_only_token1] = ACTIONS(1656), - [aux_sym_identity_agent_token1] = ACTIONS(1656), - [aux_sym_identity_file_token1] = ACTIONS(1656), - [aux_sym_ignore_unknown_token1] = ACTIONS(1656), - [aux_sym_include_token1] = ACTIONS(1656), - [aux_sym_ip_qos_token1] = ACTIONS(1656), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1656), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1656), - [aux_sym_kex_algorithms_token1] = ACTIONS(1656), - [aux_sym_known_hosts_command_token1] = ACTIONS(1656), - [aux_sym_local_command_token1] = ACTIONS(1656), - [aux_sym_local_forward_token1] = ACTIONS(1656), - [aux_sym_log_level_token1] = ACTIONS(1656), - [aux_sym_log_verbose_token1] = ACTIONS(1656), - [aux_sym_macs_token1] = ACTIONS(1656), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1656), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1656), - [aux_sym_password_authentication_token1] = ACTIONS(1656), - [aux_sym_permit_local_command_token1] = ACTIONS(1656), - [aux_sym_permit_remote_open_token1] = ACTIONS(1656), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1656), - [aux_sym_port_token1] = ACTIONS(1656), - [aux_sym_preferred_authentications_token1] = ACTIONS(1656), - [aux_sym_protocol_token1] = ACTIONS(1656), - [aux_sym_proxy_command_token1] = ACTIONS(1656), - [aux_sym_proxy_jump_token1] = ACTIONS(1656), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1656), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1656), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1656), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1656), - [aux_sym_rekey_limit_token1] = ACTIONS(1656), - [aux_sym_remote_command_token1] = ACTIONS(1656), - [aux_sym_remote_forward_token1] = ACTIONS(1656), - [aux_sym_request_tty_token1] = ACTIONS(1656), - [aux_sym_required_rsa_size_token1] = ACTIONS(1656), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1656), - [aux_sym_security_key_provider_token1] = ACTIONS(1656), - [aux_sym_send_env_token1] = ACTIONS(1656), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1656), - [aux_sym_server_alive_interval_token1] = ACTIONS(1656), - [aux_sym_session_type_token1] = ACTIONS(1656), - [aux_sym_set_env_token1] = ACTIONS(1656), - [aux_sym_stdin_null_token1] = ACTIONS(1656), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1656), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1656), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1656), - [aux_sym_syslog_facility_token1] = ACTIONS(1656), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1656), - [aux_sym_keep_alive_token1] = ACTIONS(1656), - [aux_sym_tag_token1] = ACTIONS(1656), - [aux_sym_tunnel_token1] = ACTIONS(1658), - [aux_sym_tunnel_device_token1] = ACTIONS(1656), - [aux_sym_update_host_keys_token1] = ACTIONS(1656), - [aux_sym_use_keychain_token1] = ACTIONS(1656), - [aux_sym_use_roaming_token1] = ACTIONS(1656), - [aux_sym_user_token1] = ACTIONS(1658), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1656), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1656), - [aux_sym_visual_host_key_token1] = ACTIONS(1656), - [aux_sym_xauth_location_token1] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1661), + [anon_sym_DQUOTE] = ACTIONS(1663), + [aux_sym_match_token1] = ACTIONS(1659), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1659), + [aux_sym_address_family_token1] = ACTIONS(1659), + [aux_sym_batch_mode_token1] = ACTIONS(1659), + [aux_sym_bind_address_token1] = ACTIONS(1659), + [aux_sym_bind_interface_token1] = ACTIONS(1659), + [aux_sym_canonical_domains_token1] = ACTIONS(1659), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1659), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1659), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1659), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1659), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1659), + [aux_sym_certificate_file_token1] = ACTIONS(1659), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1659), + [aux_sym_channel_timeout_token1] = ACTIONS(1659), + [aux_sym_check_host_ip_token1] = ACTIONS(1659), + [aux_sym_ciphers_token1] = ACTIONS(1659), + [aux_sym_cipher_token1] = ACTIONS(1661), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1659), + [aux_sym_compression_token1] = ACTIONS(1659), + [aux_sym_connection_attempts_token1] = ACTIONS(1659), + [aux_sym_connect_timeout_token1] = ACTIONS(1659), + [aux_sym_control_master_token1] = ACTIONS(1659), + [aux_sym_control_path_token1] = ACTIONS(1659), + [aux_sym_control_persist_token1] = ACTIONS(1659), + [aux_sym_dynamic_forward_token1] = ACTIONS(1659), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1659), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1659), + [aux_sym_escape_char_token1] = ACTIONS(1659), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1659), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1659), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1659), + [aux_sym_forward_agent_token1] = ACTIONS(1659), + [aux_sym_forward_x11_token1] = ACTIONS(1661), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1659), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1659), + [aux_sym_gateway_ports_token1] = ACTIONS(1659), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1659), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1659), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1659), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1659), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1659), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1659), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1659), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1659), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1659), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1659), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1659), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1659), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1659), + [aux_sym_host_key_alias_token1] = ACTIONS(1659), + [aux_sym_hostname_token1] = ACTIONS(1659), + [aux_sym_identities_only_token1] = ACTIONS(1659), + [aux_sym_identity_agent_token1] = ACTIONS(1659), + [aux_sym_identity_file_token1] = ACTIONS(1659), + [aux_sym_ignore_unknown_token1] = ACTIONS(1659), + [aux_sym_include_token1] = ACTIONS(1659), + [aux_sym_ip_qos_token1] = ACTIONS(1659), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1659), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1659), + [aux_sym_kex_algorithms_token1] = ACTIONS(1659), + [aux_sym_known_hosts_command_token1] = ACTIONS(1659), + [aux_sym_local_command_token1] = ACTIONS(1659), + [aux_sym_local_forward_token1] = ACTIONS(1659), + [aux_sym_log_level_token1] = ACTIONS(1659), + [aux_sym_log_verbose_token1] = ACTIONS(1659), + [aux_sym_macs_token1] = ACTIONS(1659), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1659), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1659), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1659), + [aux_sym_password_authentication_token1] = ACTIONS(1659), + [aux_sym_permit_local_command_token1] = ACTIONS(1659), + [aux_sym_permit_remote_open_token1] = ACTIONS(1659), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1659), + [aux_sym_port_token1] = ACTIONS(1659), + [aux_sym_preferred_authentications_token1] = ACTIONS(1659), + [aux_sym_protocol_token1] = ACTIONS(1659), + [aux_sym_proxy_command_token1] = ACTIONS(1659), + [aux_sym_proxy_jump_token1] = ACTIONS(1659), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1659), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1659), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1659), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1659), + [aux_sym_rekey_limit_token1] = ACTIONS(1659), + [aux_sym_remote_command_token1] = ACTIONS(1659), + [aux_sym_remote_forward_token1] = ACTIONS(1659), + [aux_sym_request_tty_token1] = ACTIONS(1659), + [aux_sym_required_rsa_size_token1] = ACTIONS(1659), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1659), + [aux_sym_security_key_provider_token1] = ACTIONS(1659), + [aux_sym_send_env_token1] = ACTIONS(1659), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1659), + [aux_sym_server_alive_interval_token1] = ACTIONS(1659), + [aux_sym_session_type_token1] = ACTIONS(1659), + [aux_sym_set_env_token1] = ACTIONS(1659), + [aux_sym_stdin_null_token1] = ACTIONS(1659), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1659), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1659), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1659), + [aux_sym_syslog_facility_token1] = ACTIONS(1659), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1659), + [aux_sym_keep_alive_token1] = ACTIONS(1659), + [aux_sym_tag_token1] = ACTIONS(1659), + [aux_sym_tunnel_token1] = ACTIONS(1661), + [aux_sym_tunnel_device_token1] = ACTIONS(1659), + [aux_sym_update_host_keys_token1] = ACTIONS(1659), + [aux_sym_use_keychain_token1] = ACTIONS(1659), + [aux_sym_use_roaming_token1] = ACTIONS(1659), + [aux_sym_user_token1] = ACTIONS(1661), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1659), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1659), + [aux_sym_visual_host_key_token1] = ACTIONS(1659), + [aux_sym_xauth_location_token1] = ACTIONS(1659), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1664), - [anon_sym_DQUOTE] = ACTIONS(1666), - [aux_sym_match_token1] = ACTIONS(1662), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1662), - [aux_sym_address_family_token1] = ACTIONS(1662), - [aux_sym_batch_mode_token1] = ACTIONS(1662), - [aux_sym_bind_address_token1] = ACTIONS(1662), - [aux_sym_bind_interface_token1] = ACTIONS(1662), - [aux_sym_canonical_domains_token1] = ACTIONS(1662), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1662), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1662), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1662), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1662), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1662), - [aux_sym_certificate_file_token1] = ACTIONS(1662), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1662), - [aux_sym_channel_timeout_token1] = ACTIONS(1662), - [aux_sym_check_host_ip_token1] = ACTIONS(1662), - [aux_sym_ciphers_token1] = ACTIONS(1662), - [aux_sym_cipher_token1] = ACTIONS(1664), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1662), - [aux_sym_compression_token1] = ACTIONS(1662), - [aux_sym_connection_attempts_token1] = ACTIONS(1662), - [aux_sym_connect_timeout_token1] = ACTIONS(1662), - [aux_sym_control_master_token1] = ACTIONS(1662), - [aux_sym_control_path_token1] = ACTIONS(1662), - [aux_sym_control_persist_token1] = ACTIONS(1662), - [aux_sym_dynamic_forward_token1] = ACTIONS(1662), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1662), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1662), - [aux_sym_escape_char_token1] = ACTIONS(1662), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1662), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1662), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1662), - [aux_sym_forward_agent_token1] = ACTIONS(1662), - [aux_sym_forward_x11_token1] = ACTIONS(1664), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1662), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1662), - [aux_sym_gateway_ports_token1] = ACTIONS(1662), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1662), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1662), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1662), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1662), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1662), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1662), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1662), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1662), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1662), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1662), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1662), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1662), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1662), - [aux_sym_host_key_alias_token1] = ACTIONS(1662), - [aux_sym_hostname_token1] = ACTIONS(1662), - [aux_sym_identities_only_token1] = ACTIONS(1662), - [aux_sym_identity_agent_token1] = ACTIONS(1662), - [aux_sym_identity_file_token1] = ACTIONS(1662), - [aux_sym_ignore_unknown_token1] = ACTIONS(1662), - [aux_sym_include_token1] = ACTIONS(1662), - [aux_sym_ip_qos_token1] = ACTIONS(1662), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1662), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1662), - [aux_sym_kex_algorithms_token1] = ACTIONS(1662), - [aux_sym_known_hosts_command_token1] = ACTIONS(1662), - [aux_sym_local_command_token1] = ACTIONS(1662), - [aux_sym_local_forward_token1] = ACTIONS(1662), - [aux_sym_log_level_token1] = ACTIONS(1662), - [aux_sym_log_verbose_token1] = ACTIONS(1662), - [aux_sym_macs_token1] = ACTIONS(1662), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1662), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1662), - [aux_sym_password_authentication_token1] = ACTIONS(1662), - [aux_sym_permit_local_command_token1] = ACTIONS(1662), - [aux_sym_permit_remote_open_token1] = ACTIONS(1662), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1662), - [aux_sym_port_token1] = ACTIONS(1662), - [aux_sym_preferred_authentications_token1] = ACTIONS(1662), - [aux_sym_protocol_token1] = ACTIONS(1662), - [aux_sym_proxy_command_token1] = ACTIONS(1662), - [aux_sym_proxy_jump_token1] = ACTIONS(1662), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1662), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1662), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1662), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1662), - [aux_sym_rekey_limit_token1] = ACTIONS(1662), - [aux_sym_remote_command_token1] = ACTIONS(1662), - [aux_sym_remote_forward_token1] = ACTIONS(1662), - [aux_sym_request_tty_token1] = ACTIONS(1662), - [aux_sym_required_rsa_size_token1] = ACTIONS(1662), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1662), - [aux_sym_security_key_provider_token1] = ACTIONS(1662), - [aux_sym_send_env_token1] = ACTIONS(1662), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1662), - [aux_sym_server_alive_interval_token1] = ACTIONS(1662), - [aux_sym_session_type_token1] = ACTIONS(1662), - [aux_sym_set_env_token1] = ACTIONS(1662), - [aux_sym_stdin_null_token1] = ACTIONS(1662), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1662), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1662), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1662), - [aux_sym_syslog_facility_token1] = ACTIONS(1662), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1662), - [aux_sym_keep_alive_token1] = ACTIONS(1662), - [aux_sym_tag_token1] = ACTIONS(1662), - [aux_sym_tunnel_token1] = ACTIONS(1664), - [aux_sym_tunnel_device_token1] = ACTIONS(1662), - [aux_sym_update_host_keys_token1] = ACTIONS(1662), - [aux_sym_use_keychain_token1] = ACTIONS(1662), - [aux_sym_use_roaming_token1] = ACTIONS(1662), - [aux_sym_user_token1] = ACTIONS(1664), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1662), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1662), - [aux_sym_visual_host_key_token1] = ACTIONS(1662), - [aux_sym_xauth_location_token1] = ACTIONS(1662), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1667), + [anon_sym_DQUOTE] = ACTIONS(1669), + [aux_sym_match_token1] = ACTIONS(1665), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1665), + [aux_sym_address_family_token1] = ACTIONS(1665), + [aux_sym_batch_mode_token1] = ACTIONS(1665), + [aux_sym_bind_address_token1] = ACTIONS(1665), + [aux_sym_bind_interface_token1] = ACTIONS(1665), + [aux_sym_canonical_domains_token1] = ACTIONS(1665), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1665), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1665), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1665), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1665), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1665), + [aux_sym_certificate_file_token1] = ACTIONS(1665), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1665), + [aux_sym_channel_timeout_token1] = ACTIONS(1665), + [aux_sym_check_host_ip_token1] = ACTIONS(1665), + [aux_sym_ciphers_token1] = ACTIONS(1665), + [aux_sym_cipher_token1] = ACTIONS(1667), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1665), + [aux_sym_compression_token1] = ACTIONS(1665), + [aux_sym_connection_attempts_token1] = ACTIONS(1665), + [aux_sym_connect_timeout_token1] = ACTIONS(1665), + [aux_sym_control_master_token1] = ACTIONS(1665), + [aux_sym_control_path_token1] = ACTIONS(1665), + [aux_sym_control_persist_token1] = ACTIONS(1665), + [aux_sym_dynamic_forward_token1] = ACTIONS(1665), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1665), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1665), + [aux_sym_escape_char_token1] = ACTIONS(1665), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1665), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1665), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1665), + [aux_sym_forward_agent_token1] = ACTIONS(1665), + [aux_sym_forward_x11_token1] = ACTIONS(1667), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1665), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1665), + [aux_sym_gateway_ports_token1] = ACTIONS(1665), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1665), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1665), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1665), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1665), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1665), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1665), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1665), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1665), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1665), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1665), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1665), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1665), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1665), + [aux_sym_host_key_alias_token1] = ACTIONS(1665), + [aux_sym_hostname_token1] = ACTIONS(1665), + [aux_sym_identities_only_token1] = ACTIONS(1665), + [aux_sym_identity_agent_token1] = ACTIONS(1665), + [aux_sym_identity_file_token1] = ACTIONS(1665), + [aux_sym_ignore_unknown_token1] = ACTIONS(1665), + [aux_sym_include_token1] = ACTIONS(1665), + [aux_sym_ip_qos_token1] = ACTIONS(1665), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1665), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1665), + [aux_sym_kex_algorithms_token1] = ACTIONS(1665), + [aux_sym_known_hosts_command_token1] = ACTIONS(1665), + [aux_sym_local_command_token1] = ACTIONS(1665), + [aux_sym_local_forward_token1] = ACTIONS(1665), + [aux_sym_log_level_token1] = ACTIONS(1665), + [aux_sym_log_verbose_token1] = ACTIONS(1665), + [aux_sym_macs_token1] = ACTIONS(1665), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1665), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1665), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1665), + [aux_sym_password_authentication_token1] = ACTIONS(1665), + [aux_sym_permit_local_command_token1] = ACTIONS(1665), + [aux_sym_permit_remote_open_token1] = ACTIONS(1665), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1665), + [aux_sym_port_token1] = ACTIONS(1665), + [aux_sym_preferred_authentications_token1] = ACTIONS(1665), + [aux_sym_protocol_token1] = ACTIONS(1665), + [aux_sym_proxy_command_token1] = ACTIONS(1665), + [aux_sym_proxy_jump_token1] = ACTIONS(1665), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1665), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1665), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1665), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1665), + [aux_sym_rekey_limit_token1] = ACTIONS(1665), + [aux_sym_remote_command_token1] = ACTIONS(1665), + [aux_sym_remote_forward_token1] = ACTIONS(1665), + [aux_sym_request_tty_token1] = ACTIONS(1665), + [aux_sym_required_rsa_size_token1] = ACTIONS(1665), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1665), + [aux_sym_security_key_provider_token1] = ACTIONS(1665), + [aux_sym_send_env_token1] = ACTIONS(1665), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1665), + [aux_sym_server_alive_interval_token1] = ACTIONS(1665), + [aux_sym_session_type_token1] = ACTIONS(1665), + [aux_sym_set_env_token1] = ACTIONS(1665), + [aux_sym_stdin_null_token1] = ACTIONS(1665), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1665), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1665), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1665), + [aux_sym_syslog_facility_token1] = ACTIONS(1665), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1665), + [aux_sym_keep_alive_token1] = ACTIONS(1665), + [aux_sym_tag_token1] = ACTIONS(1665), + [aux_sym_tunnel_token1] = ACTIONS(1667), + [aux_sym_tunnel_device_token1] = ACTIONS(1665), + [aux_sym_update_host_keys_token1] = ACTIONS(1665), + [aux_sym_use_keychain_token1] = ACTIONS(1665), + [aux_sym_use_roaming_token1] = ACTIONS(1665), + [aux_sym_user_token1] = ACTIONS(1667), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1665), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1665), + [aux_sym_visual_host_key_token1] = ACTIONS(1665), + [aux_sym_xauth_location_token1] = ACTIONS(1665), }, [185] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1670), - [anon_sym_DQUOTE] = ACTIONS(1672), - [aux_sym_match_token1] = ACTIONS(1668), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1668), - [aux_sym_address_family_token1] = ACTIONS(1668), - [aux_sym_batch_mode_token1] = ACTIONS(1668), - [aux_sym_bind_address_token1] = ACTIONS(1668), - [aux_sym_bind_interface_token1] = ACTIONS(1668), - [aux_sym_canonical_domains_token1] = ACTIONS(1668), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1668), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1668), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1668), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1668), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1668), - [aux_sym_certificate_file_token1] = ACTIONS(1668), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1668), - [aux_sym_channel_timeout_token1] = ACTIONS(1668), - [aux_sym_check_host_ip_token1] = ACTIONS(1668), - [aux_sym_ciphers_token1] = ACTIONS(1668), - [aux_sym_cipher_token1] = ACTIONS(1670), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1668), - [aux_sym_compression_token1] = ACTIONS(1668), - [aux_sym_connection_attempts_token1] = ACTIONS(1668), - [aux_sym_connect_timeout_token1] = ACTIONS(1668), - [aux_sym_control_master_token1] = ACTIONS(1668), - [aux_sym_control_path_token1] = ACTIONS(1668), - [aux_sym_control_persist_token1] = ACTIONS(1668), - [aux_sym_dynamic_forward_token1] = ACTIONS(1668), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1668), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1668), - [aux_sym_escape_char_token1] = ACTIONS(1668), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1668), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1668), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1668), - [aux_sym_forward_agent_token1] = ACTIONS(1668), - [aux_sym_forward_x11_token1] = ACTIONS(1670), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1668), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1668), - [aux_sym_gateway_ports_token1] = ACTIONS(1668), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1668), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1668), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1668), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1668), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1668), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1668), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1668), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1668), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1668), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1668), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1668), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1668), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1668), - [aux_sym_host_key_alias_token1] = ACTIONS(1668), - [aux_sym_hostname_token1] = ACTIONS(1668), - [aux_sym_identities_only_token1] = ACTIONS(1668), - [aux_sym_identity_agent_token1] = ACTIONS(1668), - [aux_sym_identity_file_token1] = ACTIONS(1668), - [aux_sym_ignore_unknown_token1] = ACTIONS(1668), - [aux_sym_include_token1] = ACTIONS(1668), - [aux_sym_ip_qos_token1] = ACTIONS(1668), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1668), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1668), - [aux_sym_kex_algorithms_token1] = ACTIONS(1668), - [aux_sym_known_hosts_command_token1] = ACTIONS(1668), - [aux_sym_local_command_token1] = ACTIONS(1668), - [aux_sym_local_forward_token1] = ACTIONS(1668), - [aux_sym_log_level_token1] = ACTIONS(1668), - [aux_sym_log_verbose_token1] = ACTIONS(1668), - [aux_sym_macs_token1] = ACTIONS(1668), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1668), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1668), - [aux_sym_password_authentication_token1] = ACTIONS(1668), - [aux_sym_permit_local_command_token1] = ACTIONS(1668), - [aux_sym_permit_remote_open_token1] = ACTIONS(1668), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1668), - [aux_sym_port_token1] = ACTIONS(1668), - [aux_sym_preferred_authentications_token1] = ACTIONS(1668), - [aux_sym_protocol_token1] = ACTIONS(1668), - [aux_sym_proxy_command_token1] = ACTIONS(1668), - [aux_sym_proxy_jump_token1] = ACTIONS(1668), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1668), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1668), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1668), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1668), - [aux_sym_rekey_limit_token1] = ACTIONS(1668), - [aux_sym_remote_command_token1] = ACTIONS(1668), - [aux_sym_remote_forward_token1] = ACTIONS(1668), - [aux_sym_request_tty_token1] = ACTIONS(1668), - [aux_sym_required_rsa_size_token1] = ACTIONS(1668), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1668), - [aux_sym_security_key_provider_token1] = ACTIONS(1668), - [aux_sym_send_env_token1] = ACTIONS(1668), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1668), - [aux_sym_server_alive_interval_token1] = ACTIONS(1668), - [aux_sym_session_type_token1] = ACTIONS(1668), - [aux_sym_set_env_token1] = ACTIONS(1668), - [aux_sym_stdin_null_token1] = ACTIONS(1668), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1668), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1668), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1668), - [aux_sym_syslog_facility_token1] = ACTIONS(1668), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1668), - [aux_sym_keep_alive_token1] = ACTIONS(1668), - [aux_sym_tag_token1] = ACTIONS(1668), - [aux_sym_tunnel_token1] = ACTIONS(1670), - [aux_sym_tunnel_device_token1] = ACTIONS(1668), - [aux_sym_update_host_keys_token1] = ACTIONS(1668), - [aux_sym_use_keychain_token1] = ACTIONS(1668), - [aux_sym_use_roaming_token1] = ACTIONS(1668), - [aux_sym_user_token1] = ACTIONS(1670), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1668), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1668), - [aux_sym_visual_host_key_token1] = ACTIONS(1668), - [aux_sym_xauth_location_token1] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1675), + [aux_sym_match_token1] = ACTIONS(1671), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1671), + [aux_sym_address_family_token1] = ACTIONS(1671), + [aux_sym_batch_mode_token1] = ACTIONS(1671), + [aux_sym_bind_address_token1] = ACTIONS(1671), + [aux_sym_bind_interface_token1] = ACTIONS(1671), + [aux_sym_canonical_domains_token1] = ACTIONS(1671), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1671), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1671), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1671), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1671), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1671), + [aux_sym_certificate_file_token1] = ACTIONS(1671), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1671), + [aux_sym_channel_timeout_token1] = ACTIONS(1671), + [aux_sym_check_host_ip_token1] = ACTIONS(1671), + [aux_sym_ciphers_token1] = ACTIONS(1671), + [aux_sym_cipher_token1] = ACTIONS(1673), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1671), + [aux_sym_compression_token1] = ACTIONS(1671), + [aux_sym_connection_attempts_token1] = ACTIONS(1671), + [aux_sym_connect_timeout_token1] = ACTIONS(1671), + [aux_sym_control_master_token1] = ACTIONS(1671), + [aux_sym_control_path_token1] = ACTIONS(1671), + [aux_sym_control_persist_token1] = ACTIONS(1671), + [aux_sym_dynamic_forward_token1] = ACTIONS(1671), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1671), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1671), + [aux_sym_escape_char_token1] = ACTIONS(1671), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1671), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1671), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1671), + [aux_sym_forward_agent_token1] = ACTIONS(1671), + [aux_sym_forward_x11_token1] = ACTIONS(1673), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1671), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1671), + [aux_sym_gateway_ports_token1] = ACTIONS(1671), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1671), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1671), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1671), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1671), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1671), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1671), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1671), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1671), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1671), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1671), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1671), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1671), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1671), + [aux_sym_host_key_alias_token1] = ACTIONS(1671), + [aux_sym_hostname_token1] = ACTIONS(1671), + [aux_sym_identities_only_token1] = ACTIONS(1671), + [aux_sym_identity_agent_token1] = ACTIONS(1671), + [aux_sym_identity_file_token1] = ACTIONS(1671), + [aux_sym_ignore_unknown_token1] = ACTIONS(1671), + [aux_sym_include_token1] = ACTIONS(1671), + [aux_sym_ip_qos_token1] = ACTIONS(1671), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1671), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1671), + [aux_sym_kex_algorithms_token1] = ACTIONS(1671), + [aux_sym_known_hosts_command_token1] = ACTIONS(1671), + [aux_sym_local_command_token1] = ACTIONS(1671), + [aux_sym_local_forward_token1] = ACTIONS(1671), + [aux_sym_log_level_token1] = ACTIONS(1671), + [aux_sym_log_verbose_token1] = ACTIONS(1671), + [aux_sym_macs_token1] = ACTIONS(1671), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1671), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1671), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1671), + [aux_sym_password_authentication_token1] = ACTIONS(1671), + [aux_sym_permit_local_command_token1] = ACTIONS(1671), + [aux_sym_permit_remote_open_token1] = ACTIONS(1671), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1671), + [aux_sym_port_token1] = ACTIONS(1671), + [aux_sym_preferred_authentications_token1] = ACTIONS(1671), + [aux_sym_protocol_token1] = ACTIONS(1671), + [aux_sym_proxy_command_token1] = ACTIONS(1671), + [aux_sym_proxy_jump_token1] = ACTIONS(1671), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1671), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1671), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1671), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1671), + [aux_sym_rekey_limit_token1] = ACTIONS(1671), + [aux_sym_remote_command_token1] = ACTIONS(1671), + [aux_sym_remote_forward_token1] = ACTIONS(1671), + [aux_sym_request_tty_token1] = ACTIONS(1671), + [aux_sym_required_rsa_size_token1] = ACTIONS(1671), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1671), + [aux_sym_security_key_provider_token1] = ACTIONS(1671), + [aux_sym_send_env_token1] = ACTIONS(1671), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1671), + [aux_sym_server_alive_interval_token1] = ACTIONS(1671), + [aux_sym_session_type_token1] = ACTIONS(1671), + [aux_sym_set_env_token1] = ACTIONS(1671), + [aux_sym_stdin_null_token1] = ACTIONS(1671), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1671), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1671), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1671), + [aux_sym_syslog_facility_token1] = ACTIONS(1671), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1671), + [aux_sym_keep_alive_token1] = ACTIONS(1671), + [aux_sym_tag_token1] = ACTIONS(1671), + [aux_sym_tunnel_token1] = ACTIONS(1673), + [aux_sym_tunnel_device_token1] = ACTIONS(1671), + [aux_sym_update_host_keys_token1] = ACTIONS(1671), + [aux_sym_use_keychain_token1] = ACTIONS(1671), + [aux_sym_use_roaming_token1] = ACTIONS(1671), + [aux_sym_user_token1] = ACTIONS(1673), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1671), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1671), + [aux_sym_visual_host_key_token1] = ACTIONS(1671), + [aux_sym_xauth_location_token1] = ACTIONS(1671), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1676), - [anon_sym_DQUOTE] = ACTIONS(1678), - [aux_sym_match_token1] = ACTIONS(1674), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1674), - [aux_sym_address_family_token1] = ACTIONS(1674), - [aux_sym_batch_mode_token1] = ACTIONS(1674), - [aux_sym_bind_address_token1] = ACTIONS(1674), - [aux_sym_bind_interface_token1] = ACTIONS(1674), - [aux_sym_canonical_domains_token1] = ACTIONS(1674), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1674), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1674), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1674), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1674), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1674), - [aux_sym_certificate_file_token1] = ACTIONS(1674), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1674), - [aux_sym_channel_timeout_token1] = ACTIONS(1674), - [aux_sym_check_host_ip_token1] = ACTIONS(1674), - [aux_sym_ciphers_token1] = ACTIONS(1674), - [aux_sym_cipher_token1] = ACTIONS(1676), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1674), - [aux_sym_compression_token1] = ACTIONS(1674), - [aux_sym_connection_attempts_token1] = ACTIONS(1674), - [aux_sym_connect_timeout_token1] = ACTIONS(1674), - [aux_sym_control_master_token1] = ACTIONS(1674), - [aux_sym_control_path_token1] = ACTIONS(1674), - [aux_sym_control_persist_token1] = ACTIONS(1674), - [aux_sym_dynamic_forward_token1] = ACTIONS(1674), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1674), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1674), - [aux_sym_escape_char_token1] = ACTIONS(1674), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1674), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1674), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1674), - [aux_sym_forward_agent_token1] = ACTIONS(1674), - [aux_sym_forward_x11_token1] = ACTIONS(1676), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1674), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1674), - [aux_sym_gateway_ports_token1] = ACTIONS(1674), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1674), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1674), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1674), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1674), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1674), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1674), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1674), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1674), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1674), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1674), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1674), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1674), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1674), - [aux_sym_host_key_alias_token1] = ACTIONS(1674), - [aux_sym_hostname_token1] = ACTIONS(1674), - [aux_sym_identities_only_token1] = ACTIONS(1674), - [aux_sym_identity_agent_token1] = ACTIONS(1674), - [aux_sym_identity_file_token1] = ACTIONS(1674), - [aux_sym_ignore_unknown_token1] = ACTIONS(1674), - [aux_sym_include_token1] = ACTIONS(1674), - [aux_sym_ip_qos_token1] = ACTIONS(1674), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1674), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1674), - [aux_sym_kex_algorithms_token1] = ACTIONS(1674), - [aux_sym_known_hosts_command_token1] = ACTIONS(1674), - [aux_sym_local_command_token1] = ACTIONS(1674), - [aux_sym_local_forward_token1] = ACTIONS(1674), - [aux_sym_log_level_token1] = ACTIONS(1674), - [aux_sym_log_verbose_token1] = ACTIONS(1674), - [aux_sym_macs_token1] = ACTIONS(1674), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1674), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1674), - [aux_sym_password_authentication_token1] = ACTIONS(1674), - [aux_sym_permit_local_command_token1] = ACTIONS(1674), - [aux_sym_permit_remote_open_token1] = ACTIONS(1674), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1674), - [aux_sym_port_token1] = ACTIONS(1674), - [aux_sym_preferred_authentications_token1] = ACTIONS(1674), - [aux_sym_protocol_token1] = ACTIONS(1674), - [aux_sym_proxy_command_token1] = ACTIONS(1674), - [aux_sym_proxy_jump_token1] = ACTIONS(1674), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1674), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1674), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1674), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1674), - [aux_sym_rekey_limit_token1] = ACTIONS(1674), - [aux_sym_remote_command_token1] = ACTIONS(1674), - [aux_sym_remote_forward_token1] = ACTIONS(1674), - [aux_sym_request_tty_token1] = ACTIONS(1674), - [aux_sym_required_rsa_size_token1] = ACTIONS(1674), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1674), - [aux_sym_security_key_provider_token1] = ACTIONS(1674), - [aux_sym_send_env_token1] = ACTIONS(1674), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1674), - [aux_sym_server_alive_interval_token1] = ACTIONS(1674), - [aux_sym_session_type_token1] = ACTIONS(1674), - [aux_sym_set_env_token1] = ACTIONS(1674), - [aux_sym_stdin_null_token1] = ACTIONS(1674), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1674), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1674), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1674), - [aux_sym_syslog_facility_token1] = ACTIONS(1674), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1674), - [aux_sym_keep_alive_token1] = ACTIONS(1674), - [aux_sym_tag_token1] = ACTIONS(1674), - [aux_sym_tunnel_token1] = ACTIONS(1676), - [aux_sym_tunnel_device_token1] = ACTIONS(1674), - [aux_sym_update_host_keys_token1] = ACTIONS(1674), - [aux_sym_use_keychain_token1] = ACTIONS(1674), - [aux_sym_use_roaming_token1] = ACTIONS(1674), - [aux_sym_user_token1] = ACTIONS(1676), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1674), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1674), - [aux_sym_visual_host_key_token1] = ACTIONS(1674), - [aux_sym_xauth_location_token1] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1677), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1679), + [anon_sym_DQUOTE] = ACTIONS(1681), + [aux_sym_match_token1] = ACTIONS(1677), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1677), + [aux_sym_address_family_token1] = ACTIONS(1677), + [aux_sym_batch_mode_token1] = ACTIONS(1677), + [aux_sym_bind_address_token1] = ACTIONS(1677), + [aux_sym_bind_interface_token1] = ACTIONS(1677), + [aux_sym_canonical_domains_token1] = ACTIONS(1677), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1677), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1677), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1677), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1677), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1677), + [aux_sym_certificate_file_token1] = ACTIONS(1677), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1677), + [aux_sym_channel_timeout_token1] = ACTIONS(1677), + [aux_sym_check_host_ip_token1] = ACTIONS(1677), + [aux_sym_ciphers_token1] = ACTIONS(1677), + [aux_sym_cipher_token1] = ACTIONS(1679), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1677), + [aux_sym_compression_token1] = ACTIONS(1677), + [aux_sym_connection_attempts_token1] = ACTIONS(1677), + [aux_sym_connect_timeout_token1] = ACTIONS(1677), + [aux_sym_control_master_token1] = ACTIONS(1677), + [aux_sym_control_path_token1] = ACTIONS(1677), + [aux_sym_control_persist_token1] = ACTIONS(1677), + [aux_sym_dynamic_forward_token1] = ACTIONS(1677), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1677), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1677), + [aux_sym_escape_char_token1] = ACTIONS(1677), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1677), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1677), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1677), + [aux_sym_forward_agent_token1] = ACTIONS(1677), + [aux_sym_forward_x11_token1] = ACTIONS(1679), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1677), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1677), + [aux_sym_gateway_ports_token1] = ACTIONS(1677), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1677), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1677), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1677), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1677), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1677), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1677), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1677), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1677), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1677), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1677), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1677), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1677), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1677), + [aux_sym_host_key_alias_token1] = ACTIONS(1677), + [aux_sym_hostname_token1] = ACTIONS(1677), + [aux_sym_identities_only_token1] = ACTIONS(1677), + [aux_sym_identity_agent_token1] = ACTIONS(1677), + [aux_sym_identity_file_token1] = ACTIONS(1677), + [aux_sym_ignore_unknown_token1] = ACTIONS(1677), + [aux_sym_include_token1] = ACTIONS(1677), + [aux_sym_ip_qos_token1] = ACTIONS(1677), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1677), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1677), + [aux_sym_kex_algorithms_token1] = ACTIONS(1677), + [aux_sym_known_hosts_command_token1] = ACTIONS(1677), + [aux_sym_local_command_token1] = ACTIONS(1677), + [aux_sym_local_forward_token1] = ACTIONS(1677), + [aux_sym_log_level_token1] = ACTIONS(1677), + [aux_sym_log_verbose_token1] = ACTIONS(1677), + [aux_sym_macs_token1] = ACTIONS(1677), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1677), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1677), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1677), + [aux_sym_password_authentication_token1] = ACTIONS(1677), + [aux_sym_permit_local_command_token1] = ACTIONS(1677), + [aux_sym_permit_remote_open_token1] = ACTIONS(1677), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1677), + [aux_sym_port_token1] = ACTIONS(1677), + [aux_sym_preferred_authentications_token1] = ACTIONS(1677), + [aux_sym_protocol_token1] = ACTIONS(1677), + [aux_sym_proxy_command_token1] = ACTIONS(1677), + [aux_sym_proxy_jump_token1] = ACTIONS(1677), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1677), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1677), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1677), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1677), + [aux_sym_rekey_limit_token1] = ACTIONS(1677), + [aux_sym_remote_command_token1] = ACTIONS(1677), + [aux_sym_remote_forward_token1] = ACTIONS(1677), + [aux_sym_request_tty_token1] = ACTIONS(1677), + [aux_sym_required_rsa_size_token1] = ACTIONS(1677), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1677), + [aux_sym_security_key_provider_token1] = ACTIONS(1677), + [aux_sym_send_env_token1] = ACTIONS(1677), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1677), + [aux_sym_server_alive_interval_token1] = ACTIONS(1677), + [aux_sym_session_type_token1] = ACTIONS(1677), + [aux_sym_set_env_token1] = ACTIONS(1677), + [aux_sym_stdin_null_token1] = ACTIONS(1677), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1677), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1677), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1677), + [aux_sym_syslog_facility_token1] = ACTIONS(1677), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1677), + [aux_sym_keep_alive_token1] = ACTIONS(1677), + [aux_sym_tag_token1] = ACTIONS(1677), + [aux_sym_tunnel_token1] = ACTIONS(1679), + [aux_sym_tunnel_device_token1] = ACTIONS(1677), + [aux_sym_update_host_keys_token1] = ACTIONS(1677), + [aux_sym_use_keychain_token1] = ACTIONS(1677), + [aux_sym_use_roaming_token1] = ACTIONS(1677), + [aux_sym_user_token1] = ACTIONS(1679), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1677), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1677), + [aux_sym_visual_host_key_token1] = ACTIONS(1677), + [aux_sym_xauth_location_token1] = ACTIONS(1677), }, [187] = { - [ts_builtin_sym_end] = ACTIONS(1680), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1682), - [anon_sym_DQUOTE] = ACTIONS(1684), - [aux_sym_match_token1] = ACTIONS(1680), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1680), - [aux_sym_address_family_token1] = ACTIONS(1680), - [aux_sym_batch_mode_token1] = ACTIONS(1680), - [aux_sym_bind_address_token1] = ACTIONS(1680), - [aux_sym_bind_interface_token1] = ACTIONS(1680), - [aux_sym_canonical_domains_token1] = ACTIONS(1680), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1680), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1680), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1680), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1680), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1680), - [aux_sym_certificate_file_token1] = ACTIONS(1680), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1680), - [aux_sym_channel_timeout_token1] = ACTIONS(1680), - [aux_sym_check_host_ip_token1] = ACTIONS(1680), - [aux_sym_ciphers_token1] = ACTIONS(1680), - [aux_sym_cipher_token1] = ACTIONS(1682), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1680), - [aux_sym_compression_token1] = ACTIONS(1680), - [aux_sym_connection_attempts_token1] = ACTIONS(1680), - [aux_sym_connect_timeout_token1] = ACTIONS(1680), - [aux_sym_control_master_token1] = ACTIONS(1680), - [aux_sym_control_path_token1] = ACTIONS(1680), - [aux_sym_control_persist_token1] = ACTIONS(1680), - [aux_sym_dynamic_forward_token1] = ACTIONS(1680), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1680), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1680), - [aux_sym_escape_char_token1] = ACTIONS(1680), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1680), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1680), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1680), - [aux_sym_forward_agent_token1] = ACTIONS(1680), - [aux_sym_forward_x11_token1] = ACTIONS(1682), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1680), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1680), - [aux_sym_gateway_ports_token1] = ACTIONS(1680), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1680), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1680), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1680), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1680), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1680), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1680), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1680), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1680), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1680), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1680), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1680), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1680), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1680), - [aux_sym_host_key_alias_token1] = ACTIONS(1680), - [aux_sym_hostname_token1] = ACTIONS(1680), - [aux_sym_identities_only_token1] = ACTIONS(1680), - [aux_sym_identity_agent_token1] = ACTIONS(1680), - [aux_sym_identity_file_token1] = ACTIONS(1680), - [aux_sym_ignore_unknown_token1] = ACTIONS(1680), - [aux_sym_include_token1] = ACTIONS(1680), - [aux_sym_ip_qos_token1] = ACTIONS(1680), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1680), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1680), - [aux_sym_kex_algorithms_token1] = ACTIONS(1680), - [aux_sym_known_hosts_command_token1] = ACTIONS(1680), - [aux_sym_local_command_token1] = ACTIONS(1680), - [aux_sym_local_forward_token1] = ACTIONS(1680), - [aux_sym_log_level_token1] = ACTIONS(1680), - [aux_sym_log_verbose_token1] = ACTIONS(1680), - [aux_sym_macs_token1] = ACTIONS(1680), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1680), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1680), - [aux_sym_password_authentication_token1] = ACTIONS(1680), - [aux_sym_permit_local_command_token1] = ACTIONS(1680), - [aux_sym_permit_remote_open_token1] = ACTIONS(1680), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1680), - [aux_sym_port_token1] = ACTIONS(1680), - [aux_sym_preferred_authentications_token1] = ACTIONS(1680), - [aux_sym_protocol_token1] = ACTIONS(1680), - [aux_sym_proxy_command_token1] = ACTIONS(1680), - [aux_sym_proxy_jump_token1] = ACTIONS(1680), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1680), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1680), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1680), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1680), - [aux_sym_rekey_limit_token1] = ACTIONS(1680), - [aux_sym_remote_command_token1] = ACTIONS(1680), - [aux_sym_remote_forward_token1] = ACTIONS(1680), - [aux_sym_request_tty_token1] = ACTIONS(1680), - [aux_sym_required_rsa_size_token1] = ACTIONS(1680), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1680), - [aux_sym_security_key_provider_token1] = ACTIONS(1680), - [aux_sym_send_env_token1] = ACTIONS(1680), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1680), - [aux_sym_server_alive_interval_token1] = ACTIONS(1680), - [aux_sym_session_type_token1] = ACTIONS(1680), - [aux_sym_set_env_token1] = ACTIONS(1680), - [aux_sym_stdin_null_token1] = ACTIONS(1680), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1680), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1680), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1680), - [aux_sym_syslog_facility_token1] = ACTIONS(1680), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1680), - [aux_sym_keep_alive_token1] = ACTIONS(1680), - [aux_sym_tag_token1] = ACTIONS(1680), - [aux_sym_tunnel_token1] = ACTIONS(1682), - [aux_sym_tunnel_device_token1] = ACTIONS(1680), - [aux_sym_update_host_keys_token1] = ACTIONS(1680), - [aux_sym_use_keychain_token1] = ACTIONS(1680), - [aux_sym_use_roaming_token1] = ACTIONS(1680), - [aux_sym_user_token1] = ACTIONS(1682), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1680), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1680), - [aux_sym_visual_host_key_token1] = ACTIONS(1680), - [aux_sym_xauth_location_token1] = ACTIONS(1680), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1687), + [aux_sym_match_token1] = ACTIONS(1683), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1683), + [aux_sym_address_family_token1] = ACTIONS(1683), + [aux_sym_batch_mode_token1] = ACTIONS(1683), + [aux_sym_bind_address_token1] = ACTIONS(1683), + [aux_sym_bind_interface_token1] = ACTIONS(1683), + [aux_sym_canonical_domains_token1] = ACTIONS(1683), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1683), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1683), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1683), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1683), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1683), + [aux_sym_certificate_file_token1] = ACTIONS(1683), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1683), + [aux_sym_channel_timeout_token1] = ACTIONS(1683), + [aux_sym_check_host_ip_token1] = ACTIONS(1683), + [aux_sym_ciphers_token1] = ACTIONS(1683), + [aux_sym_cipher_token1] = ACTIONS(1685), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1683), + [aux_sym_compression_token1] = ACTIONS(1683), + [aux_sym_connection_attempts_token1] = ACTIONS(1683), + [aux_sym_connect_timeout_token1] = ACTIONS(1683), + [aux_sym_control_master_token1] = ACTIONS(1683), + [aux_sym_control_path_token1] = ACTIONS(1683), + [aux_sym_control_persist_token1] = ACTIONS(1683), + [aux_sym_dynamic_forward_token1] = ACTIONS(1683), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1683), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1683), + [aux_sym_escape_char_token1] = ACTIONS(1683), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1683), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1683), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1683), + [aux_sym_forward_agent_token1] = ACTIONS(1683), + [aux_sym_forward_x11_token1] = ACTIONS(1685), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1683), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1683), + [aux_sym_gateway_ports_token1] = ACTIONS(1683), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1683), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1683), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1683), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1683), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1683), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1683), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1683), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1683), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1683), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1683), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1683), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1683), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1683), + [aux_sym_host_key_alias_token1] = ACTIONS(1683), + [aux_sym_hostname_token1] = ACTIONS(1683), + [aux_sym_identities_only_token1] = ACTIONS(1683), + [aux_sym_identity_agent_token1] = ACTIONS(1683), + [aux_sym_identity_file_token1] = ACTIONS(1683), + [aux_sym_ignore_unknown_token1] = ACTIONS(1683), + [aux_sym_include_token1] = ACTIONS(1683), + [aux_sym_ip_qos_token1] = ACTIONS(1683), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1683), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1683), + [aux_sym_kex_algorithms_token1] = ACTIONS(1683), + [aux_sym_known_hosts_command_token1] = ACTIONS(1683), + [aux_sym_local_command_token1] = ACTIONS(1683), + [aux_sym_local_forward_token1] = ACTIONS(1683), + [aux_sym_log_level_token1] = ACTIONS(1683), + [aux_sym_log_verbose_token1] = ACTIONS(1683), + [aux_sym_macs_token1] = ACTIONS(1683), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1683), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1683), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1683), + [aux_sym_password_authentication_token1] = ACTIONS(1683), + [aux_sym_permit_local_command_token1] = ACTIONS(1683), + [aux_sym_permit_remote_open_token1] = ACTIONS(1683), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1683), + [aux_sym_port_token1] = ACTIONS(1683), + [aux_sym_preferred_authentications_token1] = ACTIONS(1683), + [aux_sym_protocol_token1] = ACTIONS(1683), + [aux_sym_proxy_command_token1] = ACTIONS(1683), + [aux_sym_proxy_jump_token1] = ACTIONS(1683), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1683), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1683), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1683), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1683), + [aux_sym_rekey_limit_token1] = ACTIONS(1683), + [aux_sym_remote_command_token1] = ACTIONS(1683), + [aux_sym_remote_forward_token1] = ACTIONS(1683), + [aux_sym_request_tty_token1] = ACTIONS(1683), + [aux_sym_required_rsa_size_token1] = ACTIONS(1683), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1683), + [aux_sym_security_key_provider_token1] = ACTIONS(1683), + [aux_sym_send_env_token1] = ACTIONS(1683), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1683), + [aux_sym_server_alive_interval_token1] = ACTIONS(1683), + [aux_sym_session_type_token1] = ACTIONS(1683), + [aux_sym_set_env_token1] = ACTIONS(1683), + [aux_sym_stdin_null_token1] = ACTIONS(1683), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1683), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1683), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1683), + [aux_sym_syslog_facility_token1] = ACTIONS(1683), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1683), + [aux_sym_keep_alive_token1] = ACTIONS(1683), + [aux_sym_tag_token1] = ACTIONS(1683), + [aux_sym_tunnel_token1] = ACTIONS(1685), + [aux_sym_tunnel_device_token1] = ACTIONS(1683), + [aux_sym_update_host_keys_token1] = ACTIONS(1683), + [aux_sym_use_keychain_token1] = ACTIONS(1683), + [aux_sym_use_roaming_token1] = ACTIONS(1683), + [aux_sym_user_token1] = ACTIONS(1685), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1683), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1683), + [aux_sym_visual_host_key_token1] = ACTIONS(1683), + [aux_sym_xauth_location_token1] = ACTIONS(1683), }, [188] = { - [ts_builtin_sym_end] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1688), - [anon_sym_DQUOTE] = ACTIONS(1690), - [aux_sym_match_token1] = ACTIONS(1686), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1686), - [aux_sym_address_family_token1] = ACTIONS(1686), - [aux_sym_batch_mode_token1] = ACTIONS(1686), - [aux_sym_bind_address_token1] = ACTIONS(1686), - [aux_sym_bind_interface_token1] = ACTIONS(1686), - [aux_sym_canonical_domains_token1] = ACTIONS(1686), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1686), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1686), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1686), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1686), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1686), - [aux_sym_certificate_file_token1] = ACTIONS(1686), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1686), - [aux_sym_channel_timeout_token1] = ACTIONS(1686), - [aux_sym_check_host_ip_token1] = ACTIONS(1686), - [aux_sym_ciphers_token1] = ACTIONS(1686), - [aux_sym_cipher_token1] = ACTIONS(1688), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1686), - [aux_sym_compression_token1] = ACTIONS(1686), - [aux_sym_connection_attempts_token1] = ACTIONS(1686), - [aux_sym_connect_timeout_token1] = ACTIONS(1686), - [aux_sym_control_master_token1] = ACTIONS(1686), - [aux_sym_control_path_token1] = ACTIONS(1686), - [aux_sym_control_persist_token1] = ACTIONS(1686), - [aux_sym_dynamic_forward_token1] = ACTIONS(1686), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1686), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1686), - [aux_sym_escape_char_token1] = ACTIONS(1686), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1686), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1686), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1686), - [aux_sym_forward_agent_token1] = ACTIONS(1686), - [aux_sym_forward_x11_token1] = ACTIONS(1688), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1686), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1686), - [aux_sym_gateway_ports_token1] = ACTIONS(1686), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1686), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1686), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1686), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1686), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1686), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1686), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1686), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1686), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1686), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1686), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1686), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1686), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1686), - [aux_sym_host_key_alias_token1] = ACTIONS(1686), - [aux_sym_hostname_token1] = ACTIONS(1686), - [aux_sym_identities_only_token1] = ACTIONS(1686), - [aux_sym_identity_agent_token1] = ACTIONS(1686), - [aux_sym_identity_file_token1] = ACTIONS(1686), - [aux_sym_ignore_unknown_token1] = ACTIONS(1686), - [aux_sym_include_token1] = ACTIONS(1686), - [aux_sym_ip_qos_token1] = ACTIONS(1686), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1686), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1686), - [aux_sym_kex_algorithms_token1] = ACTIONS(1686), - [aux_sym_known_hosts_command_token1] = ACTIONS(1686), - [aux_sym_local_command_token1] = ACTIONS(1686), - [aux_sym_local_forward_token1] = ACTIONS(1686), - [aux_sym_log_level_token1] = ACTIONS(1686), - [aux_sym_log_verbose_token1] = ACTIONS(1686), - [aux_sym_macs_token1] = ACTIONS(1686), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1686), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1686), - [aux_sym_password_authentication_token1] = ACTIONS(1686), - [aux_sym_permit_local_command_token1] = ACTIONS(1686), - [aux_sym_permit_remote_open_token1] = ACTIONS(1686), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1686), - [aux_sym_port_token1] = ACTIONS(1686), - [aux_sym_preferred_authentications_token1] = ACTIONS(1686), - [aux_sym_protocol_token1] = ACTIONS(1686), - [aux_sym_proxy_command_token1] = ACTIONS(1686), - [aux_sym_proxy_jump_token1] = ACTIONS(1686), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1686), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1686), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1686), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1686), - [aux_sym_rekey_limit_token1] = ACTIONS(1686), - [aux_sym_remote_command_token1] = ACTIONS(1686), - [aux_sym_remote_forward_token1] = ACTIONS(1686), - [aux_sym_request_tty_token1] = ACTIONS(1686), - [aux_sym_required_rsa_size_token1] = ACTIONS(1686), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1686), - [aux_sym_security_key_provider_token1] = ACTIONS(1686), - [aux_sym_send_env_token1] = ACTIONS(1686), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1686), - [aux_sym_server_alive_interval_token1] = ACTIONS(1686), - [aux_sym_session_type_token1] = ACTIONS(1686), - [aux_sym_set_env_token1] = ACTIONS(1686), - [aux_sym_stdin_null_token1] = ACTIONS(1686), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1686), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1686), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1686), - [aux_sym_syslog_facility_token1] = ACTIONS(1686), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1686), - [aux_sym_keep_alive_token1] = ACTIONS(1686), - [aux_sym_tag_token1] = ACTIONS(1686), - [aux_sym_tunnel_token1] = ACTIONS(1688), - [aux_sym_tunnel_device_token1] = ACTIONS(1686), - [aux_sym_update_host_keys_token1] = ACTIONS(1686), - [aux_sym_use_keychain_token1] = ACTIONS(1686), - [aux_sym_use_roaming_token1] = ACTIONS(1686), - [aux_sym_user_token1] = ACTIONS(1688), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1686), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1686), - [aux_sym_visual_host_key_token1] = ACTIONS(1686), - [aux_sym_xauth_location_token1] = ACTIONS(1686), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1691), + [anon_sym_DQUOTE] = ACTIONS(1693), + [aux_sym_match_token1] = ACTIONS(1689), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1689), + [aux_sym_address_family_token1] = ACTIONS(1689), + [aux_sym_batch_mode_token1] = ACTIONS(1689), + [aux_sym_bind_address_token1] = ACTIONS(1689), + [aux_sym_bind_interface_token1] = ACTIONS(1689), + [aux_sym_canonical_domains_token1] = ACTIONS(1689), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1689), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1689), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1689), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1689), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1689), + [aux_sym_certificate_file_token1] = ACTIONS(1689), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1689), + [aux_sym_channel_timeout_token1] = ACTIONS(1689), + [aux_sym_check_host_ip_token1] = ACTIONS(1689), + [aux_sym_ciphers_token1] = ACTIONS(1689), + [aux_sym_cipher_token1] = ACTIONS(1691), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1689), + [aux_sym_compression_token1] = ACTIONS(1689), + [aux_sym_connection_attempts_token1] = ACTIONS(1689), + [aux_sym_connect_timeout_token1] = ACTIONS(1689), + [aux_sym_control_master_token1] = ACTIONS(1689), + [aux_sym_control_path_token1] = ACTIONS(1689), + [aux_sym_control_persist_token1] = ACTIONS(1689), + [aux_sym_dynamic_forward_token1] = ACTIONS(1689), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1689), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1689), + [aux_sym_escape_char_token1] = ACTIONS(1689), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1689), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1689), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1689), + [aux_sym_forward_agent_token1] = ACTIONS(1689), + [aux_sym_forward_x11_token1] = ACTIONS(1691), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1689), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1689), + [aux_sym_gateway_ports_token1] = ACTIONS(1689), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1689), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1689), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1689), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1689), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1689), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1689), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1689), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1689), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1689), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1689), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1689), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1689), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1689), + [aux_sym_host_key_alias_token1] = ACTIONS(1689), + [aux_sym_hostname_token1] = ACTIONS(1689), + [aux_sym_identities_only_token1] = ACTIONS(1689), + [aux_sym_identity_agent_token1] = ACTIONS(1689), + [aux_sym_identity_file_token1] = ACTIONS(1689), + [aux_sym_ignore_unknown_token1] = ACTIONS(1689), + [aux_sym_include_token1] = ACTIONS(1689), + [aux_sym_ip_qos_token1] = ACTIONS(1689), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1689), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1689), + [aux_sym_kex_algorithms_token1] = ACTIONS(1689), + [aux_sym_known_hosts_command_token1] = ACTIONS(1689), + [aux_sym_local_command_token1] = ACTIONS(1689), + [aux_sym_local_forward_token1] = ACTIONS(1689), + [aux_sym_log_level_token1] = ACTIONS(1689), + [aux_sym_log_verbose_token1] = ACTIONS(1689), + [aux_sym_macs_token1] = ACTIONS(1689), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1689), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1689), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1689), + [aux_sym_password_authentication_token1] = ACTIONS(1689), + [aux_sym_permit_local_command_token1] = ACTIONS(1689), + [aux_sym_permit_remote_open_token1] = ACTIONS(1689), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1689), + [aux_sym_port_token1] = ACTIONS(1689), + [aux_sym_preferred_authentications_token1] = ACTIONS(1689), + [aux_sym_protocol_token1] = ACTIONS(1689), + [aux_sym_proxy_command_token1] = ACTIONS(1689), + [aux_sym_proxy_jump_token1] = ACTIONS(1689), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1689), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1689), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1689), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1689), + [aux_sym_rekey_limit_token1] = ACTIONS(1689), + [aux_sym_remote_command_token1] = ACTIONS(1689), + [aux_sym_remote_forward_token1] = ACTIONS(1689), + [aux_sym_request_tty_token1] = ACTIONS(1689), + [aux_sym_required_rsa_size_token1] = ACTIONS(1689), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1689), + [aux_sym_security_key_provider_token1] = ACTIONS(1689), + [aux_sym_send_env_token1] = ACTIONS(1689), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1689), + [aux_sym_server_alive_interval_token1] = ACTIONS(1689), + [aux_sym_session_type_token1] = ACTIONS(1689), + [aux_sym_set_env_token1] = ACTIONS(1689), + [aux_sym_stdin_null_token1] = ACTIONS(1689), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1689), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1689), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1689), + [aux_sym_syslog_facility_token1] = ACTIONS(1689), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1689), + [aux_sym_keep_alive_token1] = ACTIONS(1689), + [aux_sym_tag_token1] = ACTIONS(1689), + [aux_sym_tunnel_token1] = ACTIONS(1691), + [aux_sym_tunnel_device_token1] = ACTIONS(1689), + [aux_sym_update_host_keys_token1] = ACTIONS(1689), + [aux_sym_use_keychain_token1] = ACTIONS(1689), + [aux_sym_use_roaming_token1] = ACTIONS(1689), + [aux_sym_user_token1] = ACTIONS(1691), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1689), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1689), + [aux_sym_visual_host_key_token1] = ACTIONS(1689), + [aux_sym_xauth_location_token1] = ACTIONS(1689), }, [189] = { - [ts_builtin_sym_end] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1694), - [anon_sym_DQUOTE] = ACTIONS(1696), - [aux_sym_match_token1] = ACTIONS(1692), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1692), - [aux_sym_address_family_token1] = ACTIONS(1692), - [aux_sym_batch_mode_token1] = ACTIONS(1692), - [aux_sym_bind_address_token1] = ACTIONS(1692), - [aux_sym_bind_interface_token1] = ACTIONS(1692), - [aux_sym_canonical_domains_token1] = ACTIONS(1692), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1692), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1692), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1692), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1692), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1692), - [aux_sym_certificate_file_token1] = ACTIONS(1692), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1692), - [aux_sym_channel_timeout_token1] = ACTIONS(1692), - [aux_sym_check_host_ip_token1] = ACTIONS(1692), - [aux_sym_ciphers_token1] = ACTIONS(1692), - [aux_sym_cipher_token1] = ACTIONS(1694), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1692), - [aux_sym_compression_token1] = ACTIONS(1692), - [aux_sym_connection_attempts_token1] = ACTIONS(1692), - [aux_sym_connect_timeout_token1] = ACTIONS(1692), - [aux_sym_control_master_token1] = ACTIONS(1692), - [aux_sym_control_path_token1] = ACTIONS(1692), - [aux_sym_control_persist_token1] = ACTIONS(1692), - [aux_sym_dynamic_forward_token1] = ACTIONS(1692), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1692), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1692), - [aux_sym_escape_char_token1] = ACTIONS(1692), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1692), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1692), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1692), - [aux_sym_forward_agent_token1] = ACTIONS(1692), - [aux_sym_forward_x11_token1] = ACTIONS(1694), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1692), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1692), - [aux_sym_gateway_ports_token1] = ACTIONS(1692), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1692), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1692), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1692), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1692), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1692), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1692), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1692), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1692), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1692), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1692), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1692), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1692), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1692), - [aux_sym_host_key_alias_token1] = ACTIONS(1692), - [aux_sym_hostname_token1] = ACTIONS(1692), - [aux_sym_identities_only_token1] = ACTIONS(1692), - [aux_sym_identity_agent_token1] = ACTIONS(1692), - [aux_sym_identity_file_token1] = ACTIONS(1692), - [aux_sym_ignore_unknown_token1] = ACTIONS(1692), - [aux_sym_include_token1] = ACTIONS(1692), - [aux_sym_ip_qos_token1] = ACTIONS(1692), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1692), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1692), - [aux_sym_kex_algorithms_token1] = ACTIONS(1692), - [aux_sym_known_hosts_command_token1] = ACTIONS(1692), - [aux_sym_local_command_token1] = ACTIONS(1692), - [aux_sym_local_forward_token1] = ACTIONS(1692), - [aux_sym_log_level_token1] = ACTIONS(1692), - [aux_sym_log_verbose_token1] = ACTIONS(1692), - [aux_sym_macs_token1] = ACTIONS(1692), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1692), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1692), - [aux_sym_password_authentication_token1] = ACTIONS(1692), - [aux_sym_permit_local_command_token1] = ACTIONS(1692), - [aux_sym_permit_remote_open_token1] = ACTIONS(1692), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1692), - [aux_sym_port_token1] = ACTIONS(1692), - [aux_sym_preferred_authentications_token1] = ACTIONS(1692), - [aux_sym_protocol_token1] = ACTIONS(1692), - [aux_sym_proxy_command_token1] = ACTIONS(1692), - [aux_sym_proxy_jump_token1] = ACTIONS(1692), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1692), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1692), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1692), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1692), - [aux_sym_rekey_limit_token1] = ACTIONS(1692), - [aux_sym_remote_command_token1] = ACTIONS(1692), - [aux_sym_remote_forward_token1] = ACTIONS(1692), - [aux_sym_request_tty_token1] = ACTIONS(1692), - [aux_sym_required_rsa_size_token1] = ACTIONS(1692), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1692), - [aux_sym_security_key_provider_token1] = ACTIONS(1692), - [aux_sym_send_env_token1] = ACTIONS(1692), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1692), - [aux_sym_server_alive_interval_token1] = ACTIONS(1692), - [aux_sym_session_type_token1] = ACTIONS(1692), - [aux_sym_set_env_token1] = ACTIONS(1692), - [aux_sym_stdin_null_token1] = ACTIONS(1692), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1692), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1692), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1692), - [aux_sym_syslog_facility_token1] = ACTIONS(1692), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1692), - [aux_sym_keep_alive_token1] = ACTIONS(1692), - [aux_sym_tag_token1] = ACTIONS(1692), - [aux_sym_tunnel_token1] = ACTIONS(1694), - [aux_sym_tunnel_device_token1] = ACTIONS(1692), - [aux_sym_update_host_keys_token1] = ACTIONS(1692), - [aux_sym_use_keychain_token1] = ACTIONS(1692), - [aux_sym_use_roaming_token1] = ACTIONS(1692), - [aux_sym_user_token1] = ACTIONS(1694), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1692), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1692), - [aux_sym_visual_host_key_token1] = ACTIONS(1692), - [aux_sym_xauth_location_token1] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(1699), + [aux_sym_match_token1] = ACTIONS(1695), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1695), + [aux_sym_address_family_token1] = ACTIONS(1695), + [aux_sym_batch_mode_token1] = ACTIONS(1695), + [aux_sym_bind_address_token1] = ACTIONS(1695), + [aux_sym_bind_interface_token1] = ACTIONS(1695), + [aux_sym_canonical_domains_token1] = ACTIONS(1695), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1695), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1695), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1695), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1695), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1695), + [aux_sym_certificate_file_token1] = ACTIONS(1695), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1695), + [aux_sym_channel_timeout_token1] = ACTIONS(1695), + [aux_sym_check_host_ip_token1] = ACTIONS(1695), + [aux_sym_ciphers_token1] = ACTIONS(1695), + [aux_sym_cipher_token1] = ACTIONS(1697), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1695), + [aux_sym_compression_token1] = ACTIONS(1695), + [aux_sym_connection_attempts_token1] = ACTIONS(1695), + [aux_sym_connect_timeout_token1] = ACTIONS(1695), + [aux_sym_control_master_token1] = ACTIONS(1695), + [aux_sym_control_path_token1] = ACTIONS(1695), + [aux_sym_control_persist_token1] = ACTIONS(1695), + [aux_sym_dynamic_forward_token1] = ACTIONS(1695), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1695), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1695), + [aux_sym_escape_char_token1] = ACTIONS(1695), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1695), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1695), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1695), + [aux_sym_forward_agent_token1] = ACTIONS(1695), + [aux_sym_forward_x11_token1] = ACTIONS(1697), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1695), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1695), + [aux_sym_gateway_ports_token1] = ACTIONS(1695), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1695), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1695), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1695), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1695), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1695), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1695), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1695), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1695), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1695), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1695), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1695), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1695), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1695), + [aux_sym_host_key_alias_token1] = ACTIONS(1695), + [aux_sym_hostname_token1] = ACTIONS(1695), + [aux_sym_identities_only_token1] = ACTIONS(1695), + [aux_sym_identity_agent_token1] = ACTIONS(1695), + [aux_sym_identity_file_token1] = ACTIONS(1695), + [aux_sym_ignore_unknown_token1] = ACTIONS(1695), + [aux_sym_include_token1] = ACTIONS(1695), + [aux_sym_ip_qos_token1] = ACTIONS(1695), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1695), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1695), + [aux_sym_kex_algorithms_token1] = ACTIONS(1695), + [aux_sym_known_hosts_command_token1] = ACTIONS(1695), + [aux_sym_local_command_token1] = ACTIONS(1695), + [aux_sym_local_forward_token1] = ACTIONS(1695), + [aux_sym_log_level_token1] = ACTIONS(1695), + [aux_sym_log_verbose_token1] = ACTIONS(1695), + [aux_sym_macs_token1] = ACTIONS(1695), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1695), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1695), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1695), + [aux_sym_password_authentication_token1] = ACTIONS(1695), + [aux_sym_permit_local_command_token1] = ACTIONS(1695), + [aux_sym_permit_remote_open_token1] = ACTIONS(1695), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1695), + [aux_sym_port_token1] = ACTIONS(1695), + [aux_sym_preferred_authentications_token1] = ACTIONS(1695), + [aux_sym_protocol_token1] = ACTIONS(1695), + [aux_sym_proxy_command_token1] = ACTIONS(1695), + [aux_sym_proxy_jump_token1] = ACTIONS(1695), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1695), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1695), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1695), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1695), + [aux_sym_rekey_limit_token1] = ACTIONS(1695), + [aux_sym_remote_command_token1] = ACTIONS(1695), + [aux_sym_remote_forward_token1] = ACTIONS(1695), + [aux_sym_request_tty_token1] = ACTIONS(1695), + [aux_sym_required_rsa_size_token1] = ACTIONS(1695), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1695), + [aux_sym_security_key_provider_token1] = ACTIONS(1695), + [aux_sym_send_env_token1] = ACTIONS(1695), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1695), + [aux_sym_server_alive_interval_token1] = ACTIONS(1695), + [aux_sym_session_type_token1] = ACTIONS(1695), + [aux_sym_set_env_token1] = ACTIONS(1695), + [aux_sym_stdin_null_token1] = ACTIONS(1695), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1695), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1695), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1695), + [aux_sym_syslog_facility_token1] = ACTIONS(1695), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1695), + [aux_sym_keep_alive_token1] = ACTIONS(1695), + [aux_sym_tag_token1] = ACTIONS(1695), + [aux_sym_tunnel_token1] = ACTIONS(1697), + [aux_sym_tunnel_device_token1] = ACTIONS(1695), + [aux_sym_update_host_keys_token1] = ACTIONS(1695), + [aux_sym_use_keychain_token1] = ACTIONS(1695), + [aux_sym_use_roaming_token1] = ACTIONS(1695), + [aux_sym_user_token1] = ACTIONS(1697), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1695), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1695), + [aux_sym_visual_host_key_token1] = ACTIONS(1695), + [aux_sym_xauth_location_token1] = ACTIONS(1695), }, [190] = { - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1700), - [anon_sym_DQUOTE] = ACTIONS(1702), - [aux_sym_match_token1] = ACTIONS(1698), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1698), - [aux_sym_address_family_token1] = ACTIONS(1698), - [aux_sym_batch_mode_token1] = ACTIONS(1698), - [aux_sym_bind_address_token1] = ACTIONS(1698), - [aux_sym_bind_interface_token1] = ACTIONS(1698), - [aux_sym_canonical_domains_token1] = ACTIONS(1698), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1698), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1698), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1698), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1698), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1698), - [aux_sym_certificate_file_token1] = ACTIONS(1698), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1698), - [aux_sym_channel_timeout_token1] = ACTIONS(1698), - [aux_sym_check_host_ip_token1] = ACTIONS(1698), - [aux_sym_ciphers_token1] = ACTIONS(1698), - [aux_sym_cipher_token1] = ACTIONS(1700), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1698), - [aux_sym_compression_token1] = ACTIONS(1698), - [aux_sym_connection_attempts_token1] = ACTIONS(1698), - [aux_sym_connect_timeout_token1] = ACTIONS(1698), - [aux_sym_control_master_token1] = ACTIONS(1698), - [aux_sym_control_path_token1] = ACTIONS(1698), - [aux_sym_control_persist_token1] = ACTIONS(1698), - [aux_sym_dynamic_forward_token1] = ACTIONS(1698), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1698), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1698), - [aux_sym_escape_char_token1] = ACTIONS(1698), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1698), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1698), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1698), - [aux_sym_forward_agent_token1] = ACTIONS(1698), - [aux_sym_forward_x11_token1] = ACTIONS(1700), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1698), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1698), - [aux_sym_gateway_ports_token1] = ACTIONS(1698), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1698), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1698), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1698), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1698), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1698), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1698), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1698), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1698), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1698), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1698), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1698), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1698), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1698), - [aux_sym_host_key_alias_token1] = ACTIONS(1698), - [aux_sym_hostname_token1] = ACTIONS(1698), - [aux_sym_identities_only_token1] = ACTIONS(1698), - [aux_sym_identity_agent_token1] = ACTIONS(1698), - [aux_sym_identity_file_token1] = ACTIONS(1698), - [aux_sym_ignore_unknown_token1] = ACTIONS(1698), - [aux_sym_include_token1] = ACTIONS(1698), - [aux_sym_ip_qos_token1] = ACTIONS(1698), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1698), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1698), - [aux_sym_kex_algorithms_token1] = ACTIONS(1698), - [aux_sym_known_hosts_command_token1] = ACTIONS(1698), - [aux_sym_local_command_token1] = ACTIONS(1698), - [aux_sym_local_forward_token1] = ACTIONS(1698), - [aux_sym_log_level_token1] = ACTIONS(1698), - [aux_sym_log_verbose_token1] = ACTIONS(1698), - [aux_sym_macs_token1] = ACTIONS(1698), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1698), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1698), - [aux_sym_password_authentication_token1] = ACTIONS(1698), - [aux_sym_permit_local_command_token1] = ACTIONS(1698), - [aux_sym_permit_remote_open_token1] = ACTIONS(1698), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1698), - [aux_sym_port_token1] = ACTIONS(1698), - [aux_sym_preferred_authentications_token1] = ACTIONS(1698), - [aux_sym_protocol_token1] = ACTIONS(1698), - [aux_sym_proxy_command_token1] = ACTIONS(1698), - [aux_sym_proxy_jump_token1] = ACTIONS(1698), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1698), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1698), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1698), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1698), - [aux_sym_rekey_limit_token1] = ACTIONS(1698), - [aux_sym_remote_command_token1] = ACTIONS(1698), - [aux_sym_remote_forward_token1] = ACTIONS(1698), - [aux_sym_request_tty_token1] = ACTIONS(1698), - [aux_sym_required_rsa_size_token1] = ACTIONS(1698), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1698), - [aux_sym_security_key_provider_token1] = ACTIONS(1698), - [aux_sym_send_env_token1] = ACTIONS(1698), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1698), - [aux_sym_server_alive_interval_token1] = ACTIONS(1698), - [aux_sym_session_type_token1] = ACTIONS(1698), - [aux_sym_set_env_token1] = ACTIONS(1698), - [aux_sym_stdin_null_token1] = ACTIONS(1698), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1698), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1698), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1698), - [aux_sym_syslog_facility_token1] = ACTIONS(1698), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1698), - [aux_sym_keep_alive_token1] = ACTIONS(1698), - [aux_sym_tag_token1] = ACTIONS(1698), - [aux_sym_tunnel_token1] = ACTIONS(1700), - [aux_sym_tunnel_device_token1] = ACTIONS(1698), - [aux_sym_update_host_keys_token1] = ACTIONS(1698), - [aux_sym_use_keychain_token1] = ACTIONS(1698), - [aux_sym_use_roaming_token1] = ACTIONS(1698), - [aux_sym_user_token1] = ACTIONS(1700), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1698), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1698), - [aux_sym_visual_host_key_token1] = ACTIONS(1698), - [aux_sym_xauth_location_token1] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(1701), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1705), + [aux_sym_match_token1] = ACTIONS(1701), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1701), + [aux_sym_address_family_token1] = ACTIONS(1701), + [aux_sym_batch_mode_token1] = ACTIONS(1701), + [aux_sym_bind_address_token1] = ACTIONS(1701), + [aux_sym_bind_interface_token1] = ACTIONS(1701), + [aux_sym_canonical_domains_token1] = ACTIONS(1701), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1701), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1701), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1701), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1701), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1701), + [aux_sym_certificate_file_token1] = ACTIONS(1701), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1701), + [aux_sym_channel_timeout_token1] = ACTIONS(1701), + [aux_sym_check_host_ip_token1] = ACTIONS(1701), + [aux_sym_ciphers_token1] = ACTIONS(1701), + [aux_sym_cipher_token1] = ACTIONS(1703), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1701), + [aux_sym_compression_token1] = ACTIONS(1701), + [aux_sym_connection_attempts_token1] = ACTIONS(1701), + [aux_sym_connect_timeout_token1] = ACTIONS(1701), + [aux_sym_control_master_token1] = ACTIONS(1701), + [aux_sym_control_path_token1] = ACTIONS(1701), + [aux_sym_control_persist_token1] = ACTIONS(1701), + [aux_sym_dynamic_forward_token1] = ACTIONS(1701), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1701), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1701), + [aux_sym_escape_char_token1] = ACTIONS(1701), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1701), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1701), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1701), + [aux_sym_forward_agent_token1] = ACTIONS(1701), + [aux_sym_forward_x11_token1] = ACTIONS(1703), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1701), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1701), + [aux_sym_gateway_ports_token1] = ACTIONS(1701), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1701), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1701), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1701), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1701), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1701), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1701), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1701), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1701), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1701), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1701), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1701), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1701), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1701), + [aux_sym_host_key_alias_token1] = ACTIONS(1701), + [aux_sym_hostname_token1] = ACTIONS(1701), + [aux_sym_identities_only_token1] = ACTIONS(1701), + [aux_sym_identity_agent_token1] = ACTIONS(1701), + [aux_sym_identity_file_token1] = ACTIONS(1701), + [aux_sym_ignore_unknown_token1] = ACTIONS(1701), + [aux_sym_include_token1] = ACTIONS(1701), + [aux_sym_ip_qos_token1] = ACTIONS(1701), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1701), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1701), + [aux_sym_kex_algorithms_token1] = ACTIONS(1701), + [aux_sym_known_hosts_command_token1] = ACTIONS(1701), + [aux_sym_local_command_token1] = ACTIONS(1701), + [aux_sym_local_forward_token1] = ACTIONS(1701), + [aux_sym_log_level_token1] = ACTIONS(1701), + [aux_sym_log_verbose_token1] = ACTIONS(1701), + [aux_sym_macs_token1] = ACTIONS(1701), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1701), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1701), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1701), + [aux_sym_password_authentication_token1] = ACTIONS(1701), + [aux_sym_permit_local_command_token1] = ACTIONS(1701), + [aux_sym_permit_remote_open_token1] = ACTIONS(1701), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1701), + [aux_sym_port_token1] = ACTIONS(1701), + [aux_sym_preferred_authentications_token1] = ACTIONS(1701), + [aux_sym_protocol_token1] = ACTIONS(1701), + [aux_sym_proxy_command_token1] = ACTIONS(1701), + [aux_sym_proxy_jump_token1] = ACTIONS(1701), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1701), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1701), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1701), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1701), + [aux_sym_rekey_limit_token1] = ACTIONS(1701), + [aux_sym_remote_command_token1] = ACTIONS(1701), + [aux_sym_remote_forward_token1] = ACTIONS(1701), + [aux_sym_request_tty_token1] = ACTIONS(1701), + [aux_sym_required_rsa_size_token1] = ACTIONS(1701), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1701), + [aux_sym_security_key_provider_token1] = ACTIONS(1701), + [aux_sym_send_env_token1] = ACTIONS(1701), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1701), + [aux_sym_server_alive_interval_token1] = ACTIONS(1701), + [aux_sym_session_type_token1] = ACTIONS(1701), + [aux_sym_set_env_token1] = ACTIONS(1701), + [aux_sym_stdin_null_token1] = ACTIONS(1701), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1701), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1701), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1701), + [aux_sym_syslog_facility_token1] = ACTIONS(1701), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1701), + [aux_sym_keep_alive_token1] = ACTIONS(1701), + [aux_sym_tag_token1] = ACTIONS(1701), + [aux_sym_tunnel_token1] = ACTIONS(1703), + [aux_sym_tunnel_device_token1] = ACTIONS(1701), + [aux_sym_update_host_keys_token1] = ACTIONS(1701), + [aux_sym_use_keychain_token1] = ACTIONS(1701), + [aux_sym_use_roaming_token1] = ACTIONS(1701), + [aux_sym_user_token1] = ACTIONS(1703), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1701), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1701), + [aux_sym_visual_host_key_token1] = ACTIONS(1701), + [aux_sym_xauth_location_token1] = ACTIONS(1701), }, [191] = { - [ts_builtin_sym_end] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1706), - [anon_sym_DQUOTE] = ACTIONS(1708), - [aux_sym_match_token1] = ACTIONS(1704), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1704), - [aux_sym_address_family_token1] = ACTIONS(1704), - [aux_sym_batch_mode_token1] = ACTIONS(1704), - [aux_sym_bind_address_token1] = ACTIONS(1704), - [aux_sym_bind_interface_token1] = ACTIONS(1704), - [aux_sym_canonical_domains_token1] = ACTIONS(1704), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1704), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1704), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1704), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1704), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1704), - [aux_sym_certificate_file_token1] = ACTIONS(1704), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1704), - [aux_sym_channel_timeout_token1] = ACTIONS(1704), - [aux_sym_check_host_ip_token1] = ACTIONS(1704), - [aux_sym_ciphers_token1] = ACTIONS(1704), - [aux_sym_cipher_token1] = ACTIONS(1706), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1704), - [aux_sym_compression_token1] = ACTIONS(1704), - [aux_sym_connection_attempts_token1] = ACTIONS(1704), - [aux_sym_connect_timeout_token1] = ACTIONS(1704), - [aux_sym_control_master_token1] = ACTIONS(1704), - [aux_sym_control_path_token1] = ACTIONS(1704), - [aux_sym_control_persist_token1] = ACTIONS(1704), - [aux_sym_dynamic_forward_token1] = ACTIONS(1704), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1704), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1704), - [aux_sym_escape_char_token1] = ACTIONS(1704), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1704), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1704), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1704), - [aux_sym_forward_agent_token1] = ACTIONS(1704), - [aux_sym_forward_x11_token1] = ACTIONS(1706), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1704), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1704), - [aux_sym_gateway_ports_token1] = ACTIONS(1704), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1704), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1704), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1704), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1704), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1704), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1704), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1704), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1704), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1704), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1704), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1704), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1704), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1704), - [aux_sym_host_key_alias_token1] = ACTIONS(1704), - [aux_sym_hostname_token1] = ACTIONS(1704), - [aux_sym_identities_only_token1] = ACTIONS(1704), - [aux_sym_identity_agent_token1] = ACTIONS(1704), - [aux_sym_identity_file_token1] = ACTIONS(1704), - [aux_sym_ignore_unknown_token1] = ACTIONS(1704), - [aux_sym_include_token1] = ACTIONS(1704), - [aux_sym_ip_qos_token1] = ACTIONS(1704), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1704), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1704), - [aux_sym_kex_algorithms_token1] = ACTIONS(1704), - [aux_sym_known_hosts_command_token1] = ACTIONS(1704), - [aux_sym_local_command_token1] = ACTIONS(1704), - [aux_sym_local_forward_token1] = ACTIONS(1704), - [aux_sym_log_level_token1] = ACTIONS(1704), - [aux_sym_log_verbose_token1] = ACTIONS(1704), - [aux_sym_macs_token1] = ACTIONS(1704), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1704), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1704), - [aux_sym_password_authentication_token1] = ACTIONS(1704), - [aux_sym_permit_local_command_token1] = ACTIONS(1704), - [aux_sym_permit_remote_open_token1] = ACTIONS(1704), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1704), - [aux_sym_port_token1] = ACTIONS(1704), - [aux_sym_preferred_authentications_token1] = ACTIONS(1704), - [aux_sym_protocol_token1] = ACTIONS(1704), - [aux_sym_proxy_command_token1] = ACTIONS(1704), - [aux_sym_proxy_jump_token1] = ACTIONS(1704), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1704), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1704), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1704), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1704), - [aux_sym_rekey_limit_token1] = ACTIONS(1704), - [aux_sym_remote_command_token1] = ACTIONS(1704), - [aux_sym_remote_forward_token1] = ACTIONS(1704), - [aux_sym_request_tty_token1] = ACTIONS(1704), - [aux_sym_required_rsa_size_token1] = ACTIONS(1704), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1704), - [aux_sym_security_key_provider_token1] = ACTIONS(1704), - [aux_sym_send_env_token1] = ACTIONS(1704), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1704), - [aux_sym_server_alive_interval_token1] = ACTIONS(1704), - [aux_sym_session_type_token1] = ACTIONS(1704), - [aux_sym_set_env_token1] = ACTIONS(1704), - [aux_sym_stdin_null_token1] = ACTIONS(1704), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1704), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1704), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1704), - [aux_sym_syslog_facility_token1] = ACTIONS(1704), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1704), - [aux_sym_keep_alive_token1] = ACTIONS(1704), - [aux_sym_tag_token1] = ACTIONS(1704), - [aux_sym_tunnel_token1] = ACTIONS(1706), - [aux_sym_tunnel_device_token1] = ACTIONS(1704), - [aux_sym_update_host_keys_token1] = ACTIONS(1704), - [aux_sym_use_keychain_token1] = ACTIONS(1704), - [aux_sym_use_roaming_token1] = ACTIONS(1704), - [aux_sym_user_token1] = ACTIONS(1706), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1704), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1704), - [aux_sym_visual_host_key_token1] = ACTIONS(1704), - [aux_sym_xauth_location_token1] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1711), + [aux_sym_match_token1] = ACTIONS(1707), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1707), + [aux_sym_address_family_token1] = ACTIONS(1707), + [aux_sym_batch_mode_token1] = ACTIONS(1707), + [aux_sym_bind_address_token1] = ACTIONS(1707), + [aux_sym_bind_interface_token1] = ACTIONS(1707), + [aux_sym_canonical_domains_token1] = ACTIONS(1707), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1707), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1707), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1707), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1707), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1707), + [aux_sym_certificate_file_token1] = ACTIONS(1707), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1707), + [aux_sym_channel_timeout_token1] = ACTIONS(1707), + [aux_sym_check_host_ip_token1] = ACTIONS(1707), + [aux_sym_ciphers_token1] = ACTIONS(1707), + [aux_sym_cipher_token1] = ACTIONS(1709), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1707), + [aux_sym_compression_token1] = ACTIONS(1707), + [aux_sym_connection_attempts_token1] = ACTIONS(1707), + [aux_sym_connect_timeout_token1] = ACTIONS(1707), + [aux_sym_control_master_token1] = ACTIONS(1707), + [aux_sym_control_path_token1] = ACTIONS(1707), + [aux_sym_control_persist_token1] = ACTIONS(1707), + [aux_sym_dynamic_forward_token1] = ACTIONS(1707), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1707), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1707), + [aux_sym_escape_char_token1] = ACTIONS(1707), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1707), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1707), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1707), + [aux_sym_forward_agent_token1] = ACTIONS(1707), + [aux_sym_forward_x11_token1] = ACTIONS(1709), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1707), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1707), + [aux_sym_gateway_ports_token1] = ACTIONS(1707), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1707), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1707), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1707), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1707), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1707), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1707), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1707), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1707), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1707), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1707), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1707), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1707), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1707), + [aux_sym_host_key_alias_token1] = ACTIONS(1707), + [aux_sym_hostname_token1] = ACTIONS(1707), + [aux_sym_identities_only_token1] = ACTIONS(1707), + [aux_sym_identity_agent_token1] = ACTIONS(1707), + [aux_sym_identity_file_token1] = ACTIONS(1707), + [aux_sym_ignore_unknown_token1] = ACTIONS(1707), + [aux_sym_include_token1] = ACTIONS(1707), + [aux_sym_ip_qos_token1] = ACTIONS(1707), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1707), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1707), + [aux_sym_kex_algorithms_token1] = ACTIONS(1707), + [aux_sym_known_hosts_command_token1] = ACTIONS(1707), + [aux_sym_local_command_token1] = ACTIONS(1707), + [aux_sym_local_forward_token1] = ACTIONS(1707), + [aux_sym_log_level_token1] = ACTIONS(1707), + [aux_sym_log_verbose_token1] = ACTIONS(1707), + [aux_sym_macs_token1] = ACTIONS(1707), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1707), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1707), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1707), + [aux_sym_password_authentication_token1] = ACTIONS(1707), + [aux_sym_permit_local_command_token1] = ACTIONS(1707), + [aux_sym_permit_remote_open_token1] = ACTIONS(1707), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1707), + [aux_sym_port_token1] = ACTIONS(1707), + [aux_sym_preferred_authentications_token1] = ACTIONS(1707), + [aux_sym_protocol_token1] = ACTIONS(1707), + [aux_sym_proxy_command_token1] = ACTIONS(1707), + [aux_sym_proxy_jump_token1] = ACTIONS(1707), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1707), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1707), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1707), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1707), + [aux_sym_rekey_limit_token1] = ACTIONS(1707), + [aux_sym_remote_command_token1] = ACTIONS(1707), + [aux_sym_remote_forward_token1] = ACTIONS(1707), + [aux_sym_request_tty_token1] = ACTIONS(1707), + [aux_sym_required_rsa_size_token1] = ACTIONS(1707), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1707), + [aux_sym_security_key_provider_token1] = ACTIONS(1707), + [aux_sym_send_env_token1] = ACTIONS(1707), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1707), + [aux_sym_server_alive_interval_token1] = ACTIONS(1707), + [aux_sym_session_type_token1] = ACTIONS(1707), + [aux_sym_set_env_token1] = ACTIONS(1707), + [aux_sym_stdin_null_token1] = ACTIONS(1707), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1707), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1707), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1707), + [aux_sym_syslog_facility_token1] = ACTIONS(1707), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1707), + [aux_sym_keep_alive_token1] = ACTIONS(1707), + [aux_sym_tag_token1] = ACTIONS(1707), + [aux_sym_tunnel_token1] = ACTIONS(1709), + [aux_sym_tunnel_device_token1] = ACTIONS(1707), + [aux_sym_update_host_keys_token1] = ACTIONS(1707), + [aux_sym_use_keychain_token1] = ACTIONS(1707), + [aux_sym_use_roaming_token1] = ACTIONS(1707), + [aux_sym_user_token1] = ACTIONS(1709), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1707), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1707), + [aux_sym_visual_host_key_token1] = ACTIONS(1707), + [aux_sym_xauth_location_token1] = ACTIONS(1707), }, [192] = { - [ts_builtin_sym_end] = ACTIONS(1710), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1712), - [anon_sym_DQUOTE] = ACTIONS(1714), - [aux_sym_match_token1] = ACTIONS(1710), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1710), - [aux_sym_address_family_token1] = ACTIONS(1710), - [aux_sym_batch_mode_token1] = ACTIONS(1710), - [aux_sym_bind_address_token1] = ACTIONS(1710), - [aux_sym_bind_interface_token1] = ACTIONS(1710), - [aux_sym_canonical_domains_token1] = ACTIONS(1710), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1710), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1710), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1710), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1710), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1710), - [aux_sym_certificate_file_token1] = ACTIONS(1710), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1710), - [aux_sym_channel_timeout_token1] = ACTIONS(1710), - [aux_sym_check_host_ip_token1] = ACTIONS(1710), - [aux_sym_ciphers_token1] = ACTIONS(1710), - [aux_sym_cipher_token1] = ACTIONS(1712), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1710), - [aux_sym_compression_token1] = ACTIONS(1710), - [aux_sym_connection_attempts_token1] = ACTIONS(1710), - [aux_sym_connect_timeout_token1] = ACTIONS(1710), - [aux_sym_control_master_token1] = ACTIONS(1710), - [aux_sym_control_path_token1] = ACTIONS(1710), - [aux_sym_control_persist_token1] = ACTIONS(1710), - [aux_sym_dynamic_forward_token1] = ACTIONS(1710), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1710), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1710), - [aux_sym_escape_char_token1] = ACTIONS(1710), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1710), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1710), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1710), - [aux_sym_forward_agent_token1] = ACTIONS(1710), - [aux_sym_forward_x11_token1] = ACTIONS(1712), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1710), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1710), - [aux_sym_gateway_ports_token1] = ACTIONS(1710), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1710), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1710), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1710), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1710), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1710), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1710), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1710), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1710), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1710), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1710), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1710), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1710), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1710), - [aux_sym_host_key_alias_token1] = ACTIONS(1710), - [aux_sym_hostname_token1] = ACTIONS(1710), - [aux_sym_identities_only_token1] = ACTIONS(1710), - [aux_sym_identity_agent_token1] = ACTIONS(1710), - [aux_sym_identity_file_token1] = ACTIONS(1710), - [aux_sym_ignore_unknown_token1] = ACTIONS(1710), - [aux_sym_include_token1] = ACTIONS(1710), - [aux_sym_ip_qos_token1] = ACTIONS(1710), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1710), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1710), - [aux_sym_kex_algorithms_token1] = ACTIONS(1710), - [aux_sym_known_hosts_command_token1] = ACTIONS(1710), - [aux_sym_local_command_token1] = ACTIONS(1710), - [aux_sym_local_forward_token1] = ACTIONS(1710), - [aux_sym_log_level_token1] = ACTIONS(1710), - [aux_sym_log_verbose_token1] = ACTIONS(1710), - [aux_sym_macs_token1] = ACTIONS(1710), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1710), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1710), - [aux_sym_password_authentication_token1] = ACTIONS(1710), - [aux_sym_permit_local_command_token1] = ACTIONS(1710), - [aux_sym_permit_remote_open_token1] = ACTIONS(1710), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1710), - [aux_sym_port_token1] = ACTIONS(1710), - [aux_sym_preferred_authentications_token1] = ACTIONS(1710), - [aux_sym_protocol_token1] = ACTIONS(1710), - [aux_sym_proxy_command_token1] = ACTIONS(1710), - [aux_sym_proxy_jump_token1] = ACTIONS(1710), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1710), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1710), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1710), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1710), - [aux_sym_rekey_limit_token1] = ACTIONS(1710), - [aux_sym_remote_command_token1] = ACTIONS(1710), - [aux_sym_remote_forward_token1] = ACTIONS(1710), - [aux_sym_request_tty_token1] = ACTIONS(1710), - [aux_sym_required_rsa_size_token1] = ACTIONS(1710), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1710), - [aux_sym_security_key_provider_token1] = ACTIONS(1710), - [aux_sym_send_env_token1] = ACTIONS(1710), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1710), - [aux_sym_server_alive_interval_token1] = ACTIONS(1710), - [aux_sym_session_type_token1] = ACTIONS(1710), - [aux_sym_set_env_token1] = ACTIONS(1710), - [aux_sym_stdin_null_token1] = ACTIONS(1710), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1710), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1710), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1710), - [aux_sym_syslog_facility_token1] = ACTIONS(1710), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1710), - [aux_sym_keep_alive_token1] = ACTIONS(1710), - [aux_sym_tag_token1] = ACTIONS(1710), - [aux_sym_tunnel_token1] = ACTIONS(1712), - [aux_sym_tunnel_device_token1] = ACTIONS(1710), - [aux_sym_update_host_keys_token1] = ACTIONS(1710), - [aux_sym_use_keychain_token1] = ACTIONS(1710), - [aux_sym_use_roaming_token1] = ACTIONS(1710), - [aux_sym_user_token1] = ACTIONS(1712), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1710), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1710), - [aux_sym_visual_host_key_token1] = ACTIONS(1710), - [aux_sym_xauth_location_token1] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1713), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(1717), + [aux_sym_match_token1] = ACTIONS(1713), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1713), + [aux_sym_address_family_token1] = ACTIONS(1713), + [aux_sym_batch_mode_token1] = ACTIONS(1713), + [aux_sym_bind_address_token1] = ACTIONS(1713), + [aux_sym_bind_interface_token1] = ACTIONS(1713), + [aux_sym_canonical_domains_token1] = ACTIONS(1713), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1713), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1713), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1713), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1713), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1713), + [aux_sym_certificate_file_token1] = ACTIONS(1713), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1713), + [aux_sym_channel_timeout_token1] = ACTIONS(1713), + [aux_sym_check_host_ip_token1] = ACTIONS(1713), + [aux_sym_ciphers_token1] = ACTIONS(1713), + [aux_sym_cipher_token1] = ACTIONS(1715), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1713), + [aux_sym_compression_token1] = ACTIONS(1713), + [aux_sym_connection_attempts_token1] = ACTIONS(1713), + [aux_sym_connect_timeout_token1] = ACTIONS(1713), + [aux_sym_control_master_token1] = ACTIONS(1713), + [aux_sym_control_path_token1] = ACTIONS(1713), + [aux_sym_control_persist_token1] = ACTIONS(1713), + [aux_sym_dynamic_forward_token1] = ACTIONS(1713), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1713), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1713), + [aux_sym_escape_char_token1] = ACTIONS(1713), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1713), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1713), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1713), + [aux_sym_forward_agent_token1] = ACTIONS(1713), + [aux_sym_forward_x11_token1] = ACTIONS(1715), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1713), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1713), + [aux_sym_gateway_ports_token1] = ACTIONS(1713), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1713), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1713), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1713), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1713), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1713), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1713), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1713), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1713), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1713), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1713), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1713), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1713), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1713), + [aux_sym_host_key_alias_token1] = ACTIONS(1713), + [aux_sym_hostname_token1] = ACTIONS(1713), + [aux_sym_identities_only_token1] = ACTIONS(1713), + [aux_sym_identity_agent_token1] = ACTIONS(1713), + [aux_sym_identity_file_token1] = ACTIONS(1713), + [aux_sym_ignore_unknown_token1] = ACTIONS(1713), + [aux_sym_include_token1] = ACTIONS(1713), + [aux_sym_ip_qos_token1] = ACTIONS(1713), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1713), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1713), + [aux_sym_kex_algorithms_token1] = ACTIONS(1713), + [aux_sym_known_hosts_command_token1] = ACTIONS(1713), + [aux_sym_local_command_token1] = ACTIONS(1713), + [aux_sym_local_forward_token1] = ACTIONS(1713), + [aux_sym_log_level_token1] = ACTIONS(1713), + [aux_sym_log_verbose_token1] = ACTIONS(1713), + [aux_sym_macs_token1] = ACTIONS(1713), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1713), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1713), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1713), + [aux_sym_password_authentication_token1] = ACTIONS(1713), + [aux_sym_permit_local_command_token1] = ACTIONS(1713), + [aux_sym_permit_remote_open_token1] = ACTIONS(1713), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1713), + [aux_sym_port_token1] = ACTIONS(1713), + [aux_sym_preferred_authentications_token1] = ACTIONS(1713), + [aux_sym_protocol_token1] = ACTIONS(1713), + [aux_sym_proxy_command_token1] = ACTIONS(1713), + [aux_sym_proxy_jump_token1] = ACTIONS(1713), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1713), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1713), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1713), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1713), + [aux_sym_rekey_limit_token1] = ACTIONS(1713), + [aux_sym_remote_command_token1] = ACTIONS(1713), + [aux_sym_remote_forward_token1] = ACTIONS(1713), + [aux_sym_request_tty_token1] = ACTIONS(1713), + [aux_sym_required_rsa_size_token1] = ACTIONS(1713), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1713), + [aux_sym_security_key_provider_token1] = ACTIONS(1713), + [aux_sym_send_env_token1] = ACTIONS(1713), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1713), + [aux_sym_server_alive_interval_token1] = ACTIONS(1713), + [aux_sym_session_type_token1] = ACTIONS(1713), + [aux_sym_set_env_token1] = ACTIONS(1713), + [aux_sym_stdin_null_token1] = ACTIONS(1713), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1713), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1713), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1713), + [aux_sym_syslog_facility_token1] = ACTIONS(1713), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1713), + [aux_sym_keep_alive_token1] = ACTIONS(1713), + [aux_sym_tag_token1] = ACTIONS(1713), + [aux_sym_tunnel_token1] = ACTIONS(1715), + [aux_sym_tunnel_device_token1] = ACTIONS(1713), + [aux_sym_update_host_keys_token1] = ACTIONS(1713), + [aux_sym_use_keychain_token1] = ACTIONS(1713), + [aux_sym_use_roaming_token1] = ACTIONS(1713), + [aux_sym_user_token1] = ACTIONS(1715), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1713), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1713), + [aux_sym_visual_host_key_token1] = ACTIONS(1713), + [aux_sym_xauth_location_token1] = ACTIONS(1713), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1718), - [anon_sym_DQUOTE] = ACTIONS(1720), - [aux_sym_match_token1] = ACTIONS(1716), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1716), - [aux_sym_address_family_token1] = ACTIONS(1716), - [aux_sym_batch_mode_token1] = ACTIONS(1716), - [aux_sym_bind_address_token1] = ACTIONS(1716), - [aux_sym_bind_interface_token1] = ACTIONS(1716), - [aux_sym_canonical_domains_token1] = ACTIONS(1716), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1716), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1716), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1716), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1716), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1716), - [aux_sym_certificate_file_token1] = ACTIONS(1716), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1716), - [aux_sym_channel_timeout_token1] = ACTIONS(1716), - [aux_sym_check_host_ip_token1] = ACTIONS(1716), - [aux_sym_ciphers_token1] = ACTIONS(1716), - [aux_sym_cipher_token1] = ACTIONS(1718), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1716), - [aux_sym_compression_token1] = ACTIONS(1716), - [aux_sym_connection_attempts_token1] = ACTIONS(1716), - [aux_sym_connect_timeout_token1] = ACTIONS(1716), - [aux_sym_control_master_token1] = ACTIONS(1716), - [aux_sym_control_path_token1] = ACTIONS(1716), - [aux_sym_control_persist_token1] = ACTIONS(1716), - [aux_sym_dynamic_forward_token1] = ACTIONS(1716), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1716), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1716), - [aux_sym_escape_char_token1] = ACTIONS(1716), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1716), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1716), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1716), - [aux_sym_forward_agent_token1] = ACTIONS(1716), - [aux_sym_forward_x11_token1] = ACTIONS(1718), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1716), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1716), - [aux_sym_gateway_ports_token1] = ACTIONS(1716), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1716), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1716), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1716), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1716), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1716), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1716), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1716), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1716), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1716), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1716), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1716), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1716), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1716), - [aux_sym_host_key_alias_token1] = ACTIONS(1716), - [aux_sym_hostname_token1] = ACTIONS(1716), - [aux_sym_identities_only_token1] = ACTIONS(1716), - [aux_sym_identity_agent_token1] = ACTIONS(1716), - [aux_sym_identity_file_token1] = ACTIONS(1716), - [aux_sym_ignore_unknown_token1] = ACTIONS(1716), - [aux_sym_include_token1] = ACTIONS(1716), - [aux_sym_ip_qos_token1] = ACTIONS(1716), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1716), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1716), - [aux_sym_kex_algorithms_token1] = ACTIONS(1716), - [aux_sym_known_hosts_command_token1] = ACTIONS(1716), - [aux_sym_local_command_token1] = ACTIONS(1716), - [aux_sym_local_forward_token1] = ACTIONS(1716), - [aux_sym_log_level_token1] = ACTIONS(1716), - [aux_sym_log_verbose_token1] = ACTIONS(1716), - [aux_sym_macs_token1] = ACTIONS(1716), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1716), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1716), - [aux_sym_password_authentication_token1] = ACTIONS(1716), - [aux_sym_permit_local_command_token1] = ACTIONS(1716), - [aux_sym_permit_remote_open_token1] = ACTIONS(1716), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1716), - [aux_sym_port_token1] = ACTIONS(1716), - [aux_sym_preferred_authentications_token1] = ACTIONS(1716), - [aux_sym_protocol_token1] = ACTIONS(1716), - [aux_sym_proxy_command_token1] = ACTIONS(1716), - [aux_sym_proxy_jump_token1] = ACTIONS(1716), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1716), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1716), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1716), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1716), - [aux_sym_rekey_limit_token1] = ACTIONS(1716), - [aux_sym_remote_command_token1] = ACTIONS(1716), - [aux_sym_remote_forward_token1] = ACTIONS(1716), - [aux_sym_request_tty_token1] = ACTIONS(1716), - [aux_sym_required_rsa_size_token1] = ACTIONS(1716), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1716), - [aux_sym_security_key_provider_token1] = ACTIONS(1716), - [aux_sym_send_env_token1] = ACTIONS(1716), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1716), - [aux_sym_server_alive_interval_token1] = ACTIONS(1716), - [aux_sym_session_type_token1] = ACTIONS(1716), - [aux_sym_set_env_token1] = ACTIONS(1716), - [aux_sym_stdin_null_token1] = ACTIONS(1716), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1716), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1716), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1716), - [aux_sym_syslog_facility_token1] = ACTIONS(1716), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1716), - [aux_sym_keep_alive_token1] = ACTIONS(1716), - [aux_sym_tag_token1] = ACTIONS(1716), - [aux_sym_tunnel_token1] = ACTIONS(1718), - [aux_sym_tunnel_device_token1] = ACTIONS(1716), - [aux_sym_update_host_keys_token1] = ACTIONS(1716), - [aux_sym_use_keychain_token1] = ACTIONS(1716), - [aux_sym_use_roaming_token1] = ACTIONS(1716), - [aux_sym_user_token1] = ACTIONS(1718), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1716), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1716), - [aux_sym_visual_host_key_token1] = ACTIONS(1716), - [aux_sym_xauth_location_token1] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1723), + [aux_sym_match_token1] = ACTIONS(1719), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1719), + [aux_sym_address_family_token1] = ACTIONS(1719), + [aux_sym_batch_mode_token1] = ACTIONS(1719), + [aux_sym_bind_address_token1] = ACTIONS(1719), + [aux_sym_bind_interface_token1] = ACTIONS(1719), + [aux_sym_canonical_domains_token1] = ACTIONS(1719), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1719), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1719), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1719), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1719), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1719), + [aux_sym_certificate_file_token1] = ACTIONS(1719), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1719), + [aux_sym_channel_timeout_token1] = ACTIONS(1719), + [aux_sym_check_host_ip_token1] = ACTIONS(1719), + [aux_sym_ciphers_token1] = ACTIONS(1719), + [aux_sym_cipher_token1] = ACTIONS(1721), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1719), + [aux_sym_compression_token1] = ACTIONS(1719), + [aux_sym_connection_attempts_token1] = ACTIONS(1719), + [aux_sym_connect_timeout_token1] = ACTIONS(1719), + [aux_sym_control_master_token1] = ACTIONS(1719), + [aux_sym_control_path_token1] = ACTIONS(1719), + [aux_sym_control_persist_token1] = ACTIONS(1719), + [aux_sym_dynamic_forward_token1] = ACTIONS(1719), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1719), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1719), + [aux_sym_escape_char_token1] = ACTIONS(1719), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1719), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1719), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1719), + [aux_sym_forward_agent_token1] = ACTIONS(1719), + [aux_sym_forward_x11_token1] = ACTIONS(1721), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1719), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1719), + [aux_sym_gateway_ports_token1] = ACTIONS(1719), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1719), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1719), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1719), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1719), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1719), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1719), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1719), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1719), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1719), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1719), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1719), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1719), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1719), + [aux_sym_host_key_alias_token1] = ACTIONS(1719), + [aux_sym_hostname_token1] = ACTIONS(1719), + [aux_sym_identities_only_token1] = ACTIONS(1719), + [aux_sym_identity_agent_token1] = ACTIONS(1719), + [aux_sym_identity_file_token1] = ACTIONS(1719), + [aux_sym_ignore_unknown_token1] = ACTIONS(1719), + [aux_sym_include_token1] = ACTIONS(1719), + [aux_sym_ip_qos_token1] = ACTIONS(1719), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1719), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1719), + [aux_sym_kex_algorithms_token1] = ACTIONS(1719), + [aux_sym_known_hosts_command_token1] = ACTIONS(1719), + [aux_sym_local_command_token1] = ACTIONS(1719), + [aux_sym_local_forward_token1] = ACTIONS(1719), + [aux_sym_log_level_token1] = ACTIONS(1719), + [aux_sym_log_verbose_token1] = ACTIONS(1719), + [aux_sym_macs_token1] = ACTIONS(1719), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1719), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1719), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1719), + [aux_sym_password_authentication_token1] = ACTIONS(1719), + [aux_sym_permit_local_command_token1] = ACTIONS(1719), + [aux_sym_permit_remote_open_token1] = ACTIONS(1719), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1719), + [aux_sym_port_token1] = ACTIONS(1719), + [aux_sym_preferred_authentications_token1] = ACTIONS(1719), + [aux_sym_protocol_token1] = ACTIONS(1719), + [aux_sym_proxy_command_token1] = ACTIONS(1719), + [aux_sym_proxy_jump_token1] = ACTIONS(1719), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1719), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1719), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1719), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1719), + [aux_sym_rekey_limit_token1] = ACTIONS(1719), + [aux_sym_remote_command_token1] = ACTIONS(1719), + [aux_sym_remote_forward_token1] = ACTIONS(1719), + [aux_sym_request_tty_token1] = ACTIONS(1719), + [aux_sym_required_rsa_size_token1] = ACTIONS(1719), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1719), + [aux_sym_security_key_provider_token1] = ACTIONS(1719), + [aux_sym_send_env_token1] = ACTIONS(1719), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1719), + [aux_sym_server_alive_interval_token1] = ACTIONS(1719), + [aux_sym_session_type_token1] = ACTIONS(1719), + [aux_sym_set_env_token1] = ACTIONS(1719), + [aux_sym_stdin_null_token1] = ACTIONS(1719), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1719), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1719), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1719), + [aux_sym_syslog_facility_token1] = ACTIONS(1719), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1719), + [aux_sym_keep_alive_token1] = ACTIONS(1719), + [aux_sym_tag_token1] = ACTIONS(1719), + [aux_sym_tunnel_token1] = ACTIONS(1721), + [aux_sym_tunnel_device_token1] = ACTIONS(1719), + [aux_sym_update_host_keys_token1] = ACTIONS(1719), + [aux_sym_use_keychain_token1] = ACTIONS(1719), + [aux_sym_use_roaming_token1] = ACTIONS(1719), + [aux_sym_user_token1] = ACTIONS(1721), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1719), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1719), + [aux_sym_visual_host_key_token1] = ACTIONS(1719), + [aux_sym_xauth_location_token1] = ACTIONS(1719), }, [194] = { - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1724), - [anon_sym_DQUOTE] = ACTIONS(1726), - [aux_sym_match_token1] = ACTIONS(1722), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1722), - [aux_sym_address_family_token1] = ACTIONS(1722), - [aux_sym_batch_mode_token1] = ACTIONS(1722), - [aux_sym_bind_address_token1] = ACTIONS(1722), - [aux_sym_bind_interface_token1] = ACTIONS(1722), - [aux_sym_canonical_domains_token1] = ACTIONS(1722), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1722), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1722), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1722), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1722), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1722), - [aux_sym_certificate_file_token1] = ACTIONS(1722), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1722), - [aux_sym_channel_timeout_token1] = ACTIONS(1722), - [aux_sym_check_host_ip_token1] = ACTIONS(1722), - [aux_sym_ciphers_token1] = ACTIONS(1722), - [aux_sym_cipher_token1] = ACTIONS(1724), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1722), - [aux_sym_compression_token1] = ACTIONS(1722), - [aux_sym_connection_attempts_token1] = ACTIONS(1722), - [aux_sym_connect_timeout_token1] = ACTIONS(1722), - [aux_sym_control_master_token1] = ACTIONS(1722), - [aux_sym_control_path_token1] = ACTIONS(1722), - [aux_sym_control_persist_token1] = ACTIONS(1722), - [aux_sym_dynamic_forward_token1] = ACTIONS(1722), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1722), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1722), - [aux_sym_escape_char_token1] = ACTIONS(1722), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1722), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1722), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1722), - [aux_sym_forward_agent_token1] = ACTIONS(1722), - [aux_sym_forward_x11_token1] = ACTIONS(1724), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1722), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1722), - [aux_sym_gateway_ports_token1] = ACTIONS(1722), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1722), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1722), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1722), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1722), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1722), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1722), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1722), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1722), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1722), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1722), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1722), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1722), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1722), - [aux_sym_host_key_alias_token1] = ACTIONS(1722), - [aux_sym_hostname_token1] = ACTIONS(1722), - [aux_sym_identities_only_token1] = ACTIONS(1722), - [aux_sym_identity_agent_token1] = ACTIONS(1722), - [aux_sym_identity_file_token1] = ACTIONS(1722), - [aux_sym_ignore_unknown_token1] = ACTIONS(1722), - [aux_sym_include_token1] = ACTIONS(1722), - [aux_sym_ip_qos_token1] = ACTIONS(1722), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1722), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1722), - [aux_sym_kex_algorithms_token1] = ACTIONS(1722), - [aux_sym_known_hosts_command_token1] = ACTIONS(1722), - [aux_sym_local_command_token1] = ACTIONS(1722), - [aux_sym_local_forward_token1] = ACTIONS(1722), - [aux_sym_log_level_token1] = ACTIONS(1722), - [aux_sym_log_verbose_token1] = ACTIONS(1722), - [aux_sym_macs_token1] = ACTIONS(1722), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1722), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1722), - [aux_sym_password_authentication_token1] = ACTIONS(1722), - [aux_sym_permit_local_command_token1] = ACTIONS(1722), - [aux_sym_permit_remote_open_token1] = ACTIONS(1722), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1722), - [aux_sym_port_token1] = ACTIONS(1722), - [aux_sym_preferred_authentications_token1] = ACTIONS(1722), - [aux_sym_protocol_token1] = ACTIONS(1722), - [aux_sym_proxy_command_token1] = ACTIONS(1722), - [aux_sym_proxy_jump_token1] = ACTIONS(1722), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1722), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1722), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1722), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1722), - [aux_sym_rekey_limit_token1] = ACTIONS(1722), - [aux_sym_remote_command_token1] = ACTIONS(1722), - [aux_sym_remote_forward_token1] = ACTIONS(1722), - [aux_sym_request_tty_token1] = ACTIONS(1722), - [aux_sym_required_rsa_size_token1] = ACTIONS(1722), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1722), - [aux_sym_security_key_provider_token1] = ACTIONS(1722), - [aux_sym_send_env_token1] = ACTIONS(1722), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1722), - [aux_sym_server_alive_interval_token1] = ACTIONS(1722), - [aux_sym_session_type_token1] = ACTIONS(1722), - [aux_sym_set_env_token1] = ACTIONS(1722), - [aux_sym_stdin_null_token1] = ACTIONS(1722), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1722), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1722), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1722), - [aux_sym_syslog_facility_token1] = ACTIONS(1722), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1722), - [aux_sym_keep_alive_token1] = ACTIONS(1722), - [aux_sym_tag_token1] = ACTIONS(1722), - [aux_sym_tunnel_token1] = ACTIONS(1724), - [aux_sym_tunnel_device_token1] = ACTIONS(1722), - [aux_sym_update_host_keys_token1] = ACTIONS(1722), - [aux_sym_use_keychain_token1] = ACTIONS(1722), - [aux_sym_use_roaming_token1] = ACTIONS(1722), - [aux_sym_user_token1] = ACTIONS(1724), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1722), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1722), - [aux_sym_visual_host_key_token1] = ACTIONS(1722), - [aux_sym_xauth_location_token1] = ACTIONS(1722), + [ts_builtin_sym_end] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [aux_sym_match_token1] = ACTIONS(1725), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1725), + [aux_sym_address_family_token1] = ACTIONS(1725), + [aux_sym_batch_mode_token1] = ACTIONS(1725), + [aux_sym_bind_address_token1] = ACTIONS(1725), + [aux_sym_bind_interface_token1] = ACTIONS(1725), + [aux_sym_canonical_domains_token1] = ACTIONS(1725), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1725), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1725), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1725), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1725), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1725), + [aux_sym_certificate_file_token1] = ACTIONS(1725), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1725), + [aux_sym_channel_timeout_token1] = ACTIONS(1725), + [aux_sym_check_host_ip_token1] = ACTIONS(1725), + [aux_sym_ciphers_token1] = ACTIONS(1725), + [aux_sym_cipher_token1] = ACTIONS(1727), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1725), + [aux_sym_compression_token1] = ACTIONS(1725), + [aux_sym_connection_attempts_token1] = ACTIONS(1725), + [aux_sym_connect_timeout_token1] = ACTIONS(1725), + [aux_sym_control_master_token1] = ACTIONS(1725), + [aux_sym_control_path_token1] = ACTIONS(1725), + [aux_sym_control_persist_token1] = ACTIONS(1725), + [aux_sym_dynamic_forward_token1] = ACTIONS(1725), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1725), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1725), + [aux_sym_escape_char_token1] = ACTIONS(1725), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1725), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1725), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1725), + [aux_sym_forward_agent_token1] = ACTIONS(1725), + [aux_sym_forward_x11_token1] = ACTIONS(1727), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1725), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1725), + [aux_sym_gateway_ports_token1] = ACTIONS(1725), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1725), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1725), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1725), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1725), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1725), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1725), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1725), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1725), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1725), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1725), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1725), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1725), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1725), + [aux_sym_host_key_alias_token1] = ACTIONS(1725), + [aux_sym_hostname_token1] = ACTIONS(1725), + [aux_sym_identities_only_token1] = ACTIONS(1725), + [aux_sym_identity_agent_token1] = ACTIONS(1725), + [aux_sym_identity_file_token1] = ACTIONS(1725), + [aux_sym_ignore_unknown_token1] = ACTIONS(1725), + [aux_sym_include_token1] = ACTIONS(1725), + [aux_sym_ip_qos_token1] = ACTIONS(1725), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1725), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1725), + [aux_sym_kex_algorithms_token1] = ACTIONS(1725), + [aux_sym_known_hosts_command_token1] = ACTIONS(1725), + [aux_sym_local_command_token1] = ACTIONS(1725), + [aux_sym_local_forward_token1] = ACTIONS(1725), + [aux_sym_log_level_token1] = ACTIONS(1725), + [aux_sym_log_verbose_token1] = ACTIONS(1725), + [aux_sym_macs_token1] = ACTIONS(1725), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1725), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1725), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1725), + [aux_sym_password_authentication_token1] = ACTIONS(1725), + [aux_sym_permit_local_command_token1] = ACTIONS(1725), + [aux_sym_permit_remote_open_token1] = ACTIONS(1725), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1725), + [aux_sym_port_token1] = ACTIONS(1725), + [aux_sym_preferred_authentications_token1] = ACTIONS(1725), + [aux_sym_protocol_token1] = ACTIONS(1725), + [aux_sym_proxy_command_token1] = ACTIONS(1725), + [aux_sym_proxy_jump_token1] = ACTIONS(1725), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1725), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1725), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1725), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1725), + [aux_sym_rekey_limit_token1] = ACTIONS(1725), + [aux_sym_remote_command_token1] = ACTIONS(1725), + [aux_sym_remote_forward_token1] = ACTIONS(1725), + [aux_sym_request_tty_token1] = ACTIONS(1725), + [aux_sym_required_rsa_size_token1] = ACTIONS(1725), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1725), + [aux_sym_security_key_provider_token1] = ACTIONS(1725), + [aux_sym_send_env_token1] = ACTIONS(1725), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1725), + [aux_sym_server_alive_interval_token1] = ACTIONS(1725), + [aux_sym_session_type_token1] = ACTIONS(1725), + [aux_sym_set_env_token1] = ACTIONS(1725), + [aux_sym_stdin_null_token1] = ACTIONS(1725), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1725), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1725), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1725), + [aux_sym_syslog_facility_token1] = ACTIONS(1725), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1725), + [aux_sym_keep_alive_token1] = ACTIONS(1725), + [aux_sym_tag_token1] = ACTIONS(1725), + [aux_sym_tunnel_token1] = ACTIONS(1727), + [aux_sym_tunnel_device_token1] = ACTIONS(1725), + [aux_sym_update_host_keys_token1] = ACTIONS(1725), + [aux_sym_use_keychain_token1] = ACTIONS(1725), + [aux_sym_use_roaming_token1] = ACTIONS(1725), + [aux_sym_user_token1] = ACTIONS(1727), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1725), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1725), + [aux_sym_visual_host_key_token1] = ACTIONS(1725), + [aux_sym_xauth_location_token1] = ACTIONS(1725), }, [195] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1730), - [anon_sym_DQUOTE] = ACTIONS(1732), - [aux_sym_match_token1] = ACTIONS(1728), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1728), - [aux_sym_address_family_token1] = ACTIONS(1728), - [aux_sym_batch_mode_token1] = ACTIONS(1728), - [aux_sym_bind_address_token1] = ACTIONS(1728), - [aux_sym_bind_interface_token1] = ACTIONS(1728), - [aux_sym_canonical_domains_token1] = ACTIONS(1728), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1728), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1728), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1728), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1728), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1728), - [aux_sym_certificate_file_token1] = ACTIONS(1728), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1728), - [aux_sym_channel_timeout_token1] = ACTIONS(1728), - [aux_sym_check_host_ip_token1] = ACTIONS(1728), - [aux_sym_ciphers_token1] = ACTIONS(1728), - [aux_sym_cipher_token1] = ACTIONS(1730), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1728), - [aux_sym_compression_token1] = ACTIONS(1728), - [aux_sym_connection_attempts_token1] = ACTIONS(1728), - [aux_sym_connect_timeout_token1] = ACTIONS(1728), - [aux_sym_control_master_token1] = ACTIONS(1728), - [aux_sym_control_path_token1] = ACTIONS(1728), - [aux_sym_control_persist_token1] = ACTIONS(1728), - [aux_sym_dynamic_forward_token1] = ACTIONS(1728), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1728), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1728), - [aux_sym_escape_char_token1] = ACTIONS(1728), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1728), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1728), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1728), - [aux_sym_forward_agent_token1] = ACTIONS(1728), - [aux_sym_forward_x11_token1] = ACTIONS(1730), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1728), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1728), - [aux_sym_gateway_ports_token1] = ACTIONS(1728), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1728), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1728), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1728), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1728), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1728), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1728), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1728), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1728), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1728), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1728), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1728), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1728), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1728), - [aux_sym_host_key_alias_token1] = ACTIONS(1728), - [aux_sym_hostname_token1] = ACTIONS(1728), - [aux_sym_identities_only_token1] = ACTIONS(1728), - [aux_sym_identity_agent_token1] = ACTIONS(1728), - [aux_sym_identity_file_token1] = ACTIONS(1728), - [aux_sym_ignore_unknown_token1] = ACTIONS(1728), - [aux_sym_include_token1] = ACTIONS(1728), - [aux_sym_ip_qos_token1] = ACTIONS(1728), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1728), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1728), - [aux_sym_kex_algorithms_token1] = ACTIONS(1728), - [aux_sym_known_hosts_command_token1] = ACTIONS(1728), - [aux_sym_local_command_token1] = ACTIONS(1728), - [aux_sym_local_forward_token1] = ACTIONS(1728), - [aux_sym_log_level_token1] = ACTIONS(1728), - [aux_sym_log_verbose_token1] = ACTIONS(1728), - [aux_sym_macs_token1] = ACTIONS(1728), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1728), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1728), - [aux_sym_password_authentication_token1] = ACTIONS(1728), - [aux_sym_permit_local_command_token1] = ACTIONS(1728), - [aux_sym_permit_remote_open_token1] = ACTIONS(1728), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1728), - [aux_sym_port_token1] = ACTIONS(1728), - [aux_sym_preferred_authentications_token1] = ACTIONS(1728), - [aux_sym_protocol_token1] = ACTIONS(1728), - [aux_sym_proxy_command_token1] = ACTIONS(1728), - [aux_sym_proxy_jump_token1] = ACTIONS(1728), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1728), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1728), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1728), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1728), - [aux_sym_rekey_limit_token1] = ACTIONS(1728), - [aux_sym_remote_command_token1] = ACTIONS(1728), - [aux_sym_remote_forward_token1] = ACTIONS(1728), - [aux_sym_request_tty_token1] = ACTIONS(1728), - [aux_sym_required_rsa_size_token1] = ACTIONS(1728), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1728), - [aux_sym_security_key_provider_token1] = ACTIONS(1728), - [aux_sym_send_env_token1] = ACTIONS(1728), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1728), - [aux_sym_server_alive_interval_token1] = ACTIONS(1728), - [aux_sym_session_type_token1] = ACTIONS(1728), - [aux_sym_set_env_token1] = ACTIONS(1728), - [aux_sym_stdin_null_token1] = ACTIONS(1728), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1728), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1728), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1728), - [aux_sym_syslog_facility_token1] = ACTIONS(1728), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1728), - [aux_sym_keep_alive_token1] = ACTIONS(1728), - [aux_sym_tag_token1] = ACTIONS(1728), - [aux_sym_tunnel_token1] = ACTIONS(1730), - [aux_sym_tunnel_device_token1] = ACTIONS(1728), - [aux_sym_update_host_keys_token1] = ACTIONS(1728), - [aux_sym_use_keychain_token1] = ACTIONS(1728), - [aux_sym_use_roaming_token1] = ACTIONS(1728), - [aux_sym_user_token1] = ACTIONS(1730), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1728), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1728), - [aux_sym_visual_host_key_token1] = ACTIONS(1728), - [aux_sym_xauth_location_token1] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1731), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1735), + [aux_sym_match_token1] = ACTIONS(1731), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1731), + [aux_sym_address_family_token1] = ACTIONS(1731), + [aux_sym_batch_mode_token1] = ACTIONS(1731), + [aux_sym_bind_address_token1] = ACTIONS(1731), + [aux_sym_bind_interface_token1] = ACTIONS(1731), + [aux_sym_canonical_domains_token1] = ACTIONS(1731), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1731), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1731), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1731), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1731), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1731), + [aux_sym_certificate_file_token1] = ACTIONS(1731), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1731), + [aux_sym_channel_timeout_token1] = ACTIONS(1731), + [aux_sym_check_host_ip_token1] = ACTIONS(1731), + [aux_sym_ciphers_token1] = ACTIONS(1731), + [aux_sym_cipher_token1] = ACTIONS(1733), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1731), + [aux_sym_compression_token1] = ACTIONS(1731), + [aux_sym_connection_attempts_token1] = ACTIONS(1731), + [aux_sym_connect_timeout_token1] = ACTIONS(1731), + [aux_sym_control_master_token1] = ACTIONS(1731), + [aux_sym_control_path_token1] = ACTIONS(1731), + [aux_sym_control_persist_token1] = ACTIONS(1731), + [aux_sym_dynamic_forward_token1] = ACTIONS(1731), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1731), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1731), + [aux_sym_escape_char_token1] = ACTIONS(1731), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1731), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1731), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1731), + [aux_sym_forward_agent_token1] = ACTIONS(1731), + [aux_sym_forward_x11_token1] = ACTIONS(1733), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1731), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1731), + [aux_sym_gateway_ports_token1] = ACTIONS(1731), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1731), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1731), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1731), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1731), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1731), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1731), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1731), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1731), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1731), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1731), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1731), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1731), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1731), + [aux_sym_host_key_alias_token1] = ACTIONS(1731), + [aux_sym_hostname_token1] = ACTIONS(1731), + [aux_sym_identities_only_token1] = ACTIONS(1731), + [aux_sym_identity_agent_token1] = ACTIONS(1731), + [aux_sym_identity_file_token1] = ACTIONS(1731), + [aux_sym_ignore_unknown_token1] = ACTIONS(1731), + [aux_sym_include_token1] = ACTIONS(1731), + [aux_sym_ip_qos_token1] = ACTIONS(1731), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1731), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1731), + [aux_sym_kex_algorithms_token1] = ACTIONS(1731), + [aux_sym_known_hosts_command_token1] = ACTIONS(1731), + [aux_sym_local_command_token1] = ACTIONS(1731), + [aux_sym_local_forward_token1] = ACTIONS(1731), + [aux_sym_log_level_token1] = ACTIONS(1731), + [aux_sym_log_verbose_token1] = ACTIONS(1731), + [aux_sym_macs_token1] = ACTIONS(1731), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1731), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1731), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1731), + [aux_sym_password_authentication_token1] = ACTIONS(1731), + [aux_sym_permit_local_command_token1] = ACTIONS(1731), + [aux_sym_permit_remote_open_token1] = ACTIONS(1731), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1731), + [aux_sym_port_token1] = ACTIONS(1731), + [aux_sym_preferred_authentications_token1] = ACTIONS(1731), + [aux_sym_protocol_token1] = ACTIONS(1731), + [aux_sym_proxy_command_token1] = ACTIONS(1731), + [aux_sym_proxy_jump_token1] = ACTIONS(1731), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1731), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1731), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1731), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1731), + [aux_sym_rekey_limit_token1] = ACTIONS(1731), + [aux_sym_remote_command_token1] = ACTIONS(1731), + [aux_sym_remote_forward_token1] = ACTIONS(1731), + [aux_sym_request_tty_token1] = ACTIONS(1731), + [aux_sym_required_rsa_size_token1] = ACTIONS(1731), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1731), + [aux_sym_security_key_provider_token1] = ACTIONS(1731), + [aux_sym_send_env_token1] = ACTIONS(1731), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1731), + [aux_sym_server_alive_interval_token1] = ACTIONS(1731), + [aux_sym_session_type_token1] = ACTIONS(1731), + [aux_sym_set_env_token1] = ACTIONS(1731), + [aux_sym_stdin_null_token1] = ACTIONS(1731), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1731), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1731), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1731), + [aux_sym_syslog_facility_token1] = ACTIONS(1731), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1731), + [aux_sym_keep_alive_token1] = ACTIONS(1731), + [aux_sym_tag_token1] = ACTIONS(1731), + [aux_sym_tunnel_token1] = ACTIONS(1733), + [aux_sym_tunnel_device_token1] = ACTIONS(1731), + [aux_sym_update_host_keys_token1] = ACTIONS(1731), + [aux_sym_use_keychain_token1] = ACTIONS(1731), + [aux_sym_use_roaming_token1] = ACTIONS(1731), + [aux_sym_user_token1] = ACTIONS(1733), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1731), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1731), + [aux_sym_visual_host_key_token1] = ACTIONS(1731), + [aux_sym_xauth_location_token1] = ACTIONS(1731), }, [196] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1736), - [anon_sym_DQUOTE] = ACTIONS(1738), - [aux_sym_match_token1] = ACTIONS(1734), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1734), - [aux_sym_address_family_token1] = ACTIONS(1734), - [aux_sym_batch_mode_token1] = ACTIONS(1734), - [aux_sym_bind_address_token1] = ACTIONS(1734), - [aux_sym_bind_interface_token1] = ACTIONS(1734), - [aux_sym_canonical_domains_token1] = ACTIONS(1734), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1734), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1734), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1734), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1734), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1734), - [aux_sym_certificate_file_token1] = ACTIONS(1734), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1734), - [aux_sym_channel_timeout_token1] = ACTIONS(1734), - [aux_sym_check_host_ip_token1] = ACTIONS(1734), - [aux_sym_ciphers_token1] = ACTIONS(1734), - [aux_sym_cipher_token1] = ACTIONS(1736), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1734), - [aux_sym_compression_token1] = ACTIONS(1734), - [aux_sym_connection_attempts_token1] = ACTIONS(1734), - [aux_sym_connect_timeout_token1] = ACTIONS(1734), - [aux_sym_control_master_token1] = ACTIONS(1734), - [aux_sym_control_path_token1] = ACTIONS(1734), - [aux_sym_control_persist_token1] = ACTIONS(1734), - [aux_sym_dynamic_forward_token1] = ACTIONS(1734), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1734), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1734), - [aux_sym_escape_char_token1] = ACTIONS(1734), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1734), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1734), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1734), - [aux_sym_forward_agent_token1] = ACTIONS(1734), - [aux_sym_forward_x11_token1] = ACTIONS(1736), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1734), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1734), - [aux_sym_gateway_ports_token1] = ACTIONS(1734), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1734), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1734), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1734), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1734), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1734), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1734), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1734), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1734), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1734), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1734), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1734), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1734), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1734), - [aux_sym_host_key_alias_token1] = ACTIONS(1734), - [aux_sym_hostname_token1] = ACTIONS(1734), - [aux_sym_identities_only_token1] = ACTIONS(1734), - [aux_sym_identity_agent_token1] = ACTIONS(1734), - [aux_sym_identity_file_token1] = ACTIONS(1734), - [aux_sym_ignore_unknown_token1] = ACTIONS(1734), - [aux_sym_include_token1] = ACTIONS(1734), - [aux_sym_ip_qos_token1] = ACTIONS(1734), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1734), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1734), - [aux_sym_kex_algorithms_token1] = ACTIONS(1734), - [aux_sym_known_hosts_command_token1] = ACTIONS(1734), - [aux_sym_local_command_token1] = ACTIONS(1734), - [aux_sym_local_forward_token1] = ACTIONS(1734), - [aux_sym_log_level_token1] = ACTIONS(1734), - [aux_sym_log_verbose_token1] = ACTIONS(1734), - [aux_sym_macs_token1] = ACTIONS(1734), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1734), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1734), - [aux_sym_password_authentication_token1] = ACTIONS(1734), - [aux_sym_permit_local_command_token1] = ACTIONS(1734), - [aux_sym_permit_remote_open_token1] = ACTIONS(1734), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1734), - [aux_sym_port_token1] = ACTIONS(1734), - [aux_sym_preferred_authentications_token1] = ACTIONS(1734), - [aux_sym_protocol_token1] = ACTIONS(1734), - [aux_sym_proxy_command_token1] = ACTIONS(1734), - [aux_sym_proxy_jump_token1] = ACTIONS(1734), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1734), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1734), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1734), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1734), - [aux_sym_rekey_limit_token1] = ACTIONS(1734), - [aux_sym_remote_command_token1] = ACTIONS(1734), - [aux_sym_remote_forward_token1] = ACTIONS(1734), - [aux_sym_request_tty_token1] = ACTIONS(1734), - [aux_sym_required_rsa_size_token1] = ACTIONS(1734), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1734), - [aux_sym_security_key_provider_token1] = ACTIONS(1734), - [aux_sym_send_env_token1] = ACTIONS(1734), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1734), - [aux_sym_server_alive_interval_token1] = ACTIONS(1734), - [aux_sym_session_type_token1] = ACTIONS(1734), - [aux_sym_set_env_token1] = ACTIONS(1734), - [aux_sym_stdin_null_token1] = ACTIONS(1734), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1734), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1734), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1734), - [aux_sym_syslog_facility_token1] = ACTIONS(1734), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1734), - [aux_sym_keep_alive_token1] = ACTIONS(1734), - [aux_sym_tag_token1] = ACTIONS(1734), - [aux_sym_tunnel_token1] = ACTIONS(1736), - [aux_sym_tunnel_device_token1] = ACTIONS(1734), - [aux_sym_update_host_keys_token1] = ACTIONS(1734), - [aux_sym_use_keychain_token1] = ACTIONS(1734), - [aux_sym_use_roaming_token1] = ACTIONS(1734), - [aux_sym_user_token1] = ACTIONS(1736), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1734), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1734), - [aux_sym_visual_host_key_token1] = ACTIONS(1734), - [aux_sym_xauth_location_token1] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(1741), + [aux_sym_match_token1] = ACTIONS(1737), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1737), + [aux_sym_address_family_token1] = ACTIONS(1737), + [aux_sym_batch_mode_token1] = ACTIONS(1737), + [aux_sym_bind_address_token1] = ACTIONS(1737), + [aux_sym_bind_interface_token1] = ACTIONS(1737), + [aux_sym_canonical_domains_token1] = ACTIONS(1737), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1737), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1737), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1737), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1737), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1737), + [aux_sym_certificate_file_token1] = ACTIONS(1737), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1737), + [aux_sym_channel_timeout_token1] = ACTIONS(1737), + [aux_sym_check_host_ip_token1] = ACTIONS(1737), + [aux_sym_ciphers_token1] = ACTIONS(1737), + [aux_sym_cipher_token1] = ACTIONS(1739), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1737), + [aux_sym_compression_token1] = ACTIONS(1737), + [aux_sym_connection_attempts_token1] = ACTIONS(1737), + [aux_sym_connect_timeout_token1] = ACTIONS(1737), + [aux_sym_control_master_token1] = ACTIONS(1737), + [aux_sym_control_path_token1] = ACTIONS(1737), + [aux_sym_control_persist_token1] = ACTIONS(1737), + [aux_sym_dynamic_forward_token1] = ACTIONS(1737), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1737), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1737), + [aux_sym_escape_char_token1] = ACTIONS(1737), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1737), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1737), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1737), + [aux_sym_forward_agent_token1] = ACTIONS(1737), + [aux_sym_forward_x11_token1] = ACTIONS(1739), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1737), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1737), + [aux_sym_gateway_ports_token1] = ACTIONS(1737), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1737), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1737), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1737), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1737), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1737), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1737), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1737), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1737), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1737), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1737), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1737), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1737), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1737), + [aux_sym_host_key_alias_token1] = ACTIONS(1737), + [aux_sym_hostname_token1] = ACTIONS(1737), + [aux_sym_identities_only_token1] = ACTIONS(1737), + [aux_sym_identity_agent_token1] = ACTIONS(1737), + [aux_sym_identity_file_token1] = ACTIONS(1737), + [aux_sym_ignore_unknown_token1] = ACTIONS(1737), + [aux_sym_include_token1] = ACTIONS(1737), + [aux_sym_ip_qos_token1] = ACTIONS(1737), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1737), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1737), + [aux_sym_kex_algorithms_token1] = ACTIONS(1737), + [aux_sym_known_hosts_command_token1] = ACTIONS(1737), + [aux_sym_local_command_token1] = ACTIONS(1737), + [aux_sym_local_forward_token1] = ACTIONS(1737), + [aux_sym_log_level_token1] = ACTIONS(1737), + [aux_sym_log_verbose_token1] = ACTIONS(1737), + [aux_sym_macs_token1] = ACTIONS(1737), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1737), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1737), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1737), + [aux_sym_password_authentication_token1] = ACTIONS(1737), + [aux_sym_permit_local_command_token1] = ACTIONS(1737), + [aux_sym_permit_remote_open_token1] = ACTIONS(1737), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1737), + [aux_sym_port_token1] = ACTIONS(1737), + [aux_sym_preferred_authentications_token1] = ACTIONS(1737), + [aux_sym_protocol_token1] = ACTIONS(1737), + [aux_sym_proxy_command_token1] = ACTIONS(1737), + [aux_sym_proxy_jump_token1] = ACTIONS(1737), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1737), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1737), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1737), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1737), + [aux_sym_rekey_limit_token1] = ACTIONS(1737), + [aux_sym_remote_command_token1] = ACTIONS(1737), + [aux_sym_remote_forward_token1] = ACTIONS(1737), + [aux_sym_request_tty_token1] = ACTIONS(1737), + [aux_sym_required_rsa_size_token1] = ACTIONS(1737), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1737), + [aux_sym_security_key_provider_token1] = ACTIONS(1737), + [aux_sym_send_env_token1] = ACTIONS(1737), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1737), + [aux_sym_server_alive_interval_token1] = ACTIONS(1737), + [aux_sym_session_type_token1] = ACTIONS(1737), + [aux_sym_set_env_token1] = ACTIONS(1737), + [aux_sym_stdin_null_token1] = ACTIONS(1737), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1737), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1737), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1737), + [aux_sym_syslog_facility_token1] = ACTIONS(1737), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1737), + [aux_sym_keep_alive_token1] = ACTIONS(1737), + [aux_sym_tag_token1] = ACTIONS(1737), + [aux_sym_tunnel_token1] = ACTIONS(1739), + [aux_sym_tunnel_device_token1] = ACTIONS(1737), + [aux_sym_update_host_keys_token1] = ACTIONS(1737), + [aux_sym_use_keychain_token1] = ACTIONS(1737), + [aux_sym_use_roaming_token1] = ACTIONS(1737), + [aux_sym_user_token1] = ACTIONS(1739), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1737), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1737), + [aux_sym_visual_host_key_token1] = ACTIONS(1737), + [aux_sym_xauth_location_token1] = ACTIONS(1737), }, [197] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1742), - [anon_sym_DQUOTE] = ACTIONS(1744), - [aux_sym_match_token1] = ACTIONS(1740), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1740), - [aux_sym_address_family_token1] = ACTIONS(1740), - [aux_sym_batch_mode_token1] = ACTIONS(1740), - [aux_sym_bind_address_token1] = ACTIONS(1740), - [aux_sym_bind_interface_token1] = ACTIONS(1740), - [aux_sym_canonical_domains_token1] = ACTIONS(1740), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1740), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1740), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1740), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1740), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1740), - [aux_sym_certificate_file_token1] = ACTIONS(1740), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1740), - [aux_sym_channel_timeout_token1] = ACTIONS(1740), - [aux_sym_check_host_ip_token1] = ACTIONS(1740), - [aux_sym_ciphers_token1] = ACTIONS(1740), - [aux_sym_cipher_token1] = ACTIONS(1742), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1740), - [aux_sym_compression_token1] = ACTIONS(1740), - [aux_sym_connection_attempts_token1] = ACTIONS(1740), - [aux_sym_connect_timeout_token1] = ACTIONS(1740), - [aux_sym_control_master_token1] = ACTIONS(1740), - [aux_sym_control_path_token1] = ACTIONS(1740), - [aux_sym_control_persist_token1] = ACTIONS(1740), - [aux_sym_dynamic_forward_token1] = ACTIONS(1740), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1740), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1740), - [aux_sym_escape_char_token1] = ACTIONS(1740), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1740), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1740), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1740), - [aux_sym_forward_agent_token1] = ACTIONS(1740), - [aux_sym_forward_x11_token1] = ACTIONS(1742), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1740), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1740), - [aux_sym_gateway_ports_token1] = ACTIONS(1740), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1740), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1740), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1740), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1740), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1740), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1740), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1740), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1740), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1740), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1740), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1740), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1740), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1740), - [aux_sym_host_key_alias_token1] = ACTIONS(1740), - [aux_sym_hostname_token1] = ACTIONS(1740), - [aux_sym_identities_only_token1] = ACTIONS(1740), - [aux_sym_identity_agent_token1] = ACTIONS(1740), - [aux_sym_identity_file_token1] = ACTIONS(1740), - [aux_sym_ignore_unknown_token1] = ACTIONS(1740), - [aux_sym_include_token1] = ACTIONS(1740), - [aux_sym_ip_qos_token1] = ACTIONS(1740), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1740), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1740), - [aux_sym_kex_algorithms_token1] = ACTIONS(1740), - [aux_sym_known_hosts_command_token1] = ACTIONS(1740), - [aux_sym_local_command_token1] = ACTIONS(1740), - [aux_sym_local_forward_token1] = ACTIONS(1740), - [aux_sym_log_level_token1] = ACTIONS(1740), - [aux_sym_log_verbose_token1] = ACTIONS(1740), - [aux_sym_macs_token1] = ACTIONS(1740), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1740), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1740), - [aux_sym_password_authentication_token1] = ACTIONS(1740), - [aux_sym_permit_local_command_token1] = ACTIONS(1740), - [aux_sym_permit_remote_open_token1] = ACTIONS(1740), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1740), - [aux_sym_port_token1] = ACTIONS(1740), - [aux_sym_preferred_authentications_token1] = ACTIONS(1740), - [aux_sym_protocol_token1] = ACTIONS(1740), - [aux_sym_proxy_command_token1] = ACTIONS(1740), - [aux_sym_proxy_jump_token1] = ACTIONS(1740), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1740), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1740), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1740), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1740), - [aux_sym_rekey_limit_token1] = ACTIONS(1740), - [aux_sym_remote_command_token1] = ACTIONS(1740), - [aux_sym_remote_forward_token1] = ACTIONS(1740), - [aux_sym_request_tty_token1] = ACTIONS(1740), - [aux_sym_required_rsa_size_token1] = ACTIONS(1740), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1740), - [aux_sym_security_key_provider_token1] = ACTIONS(1740), - [aux_sym_send_env_token1] = ACTIONS(1740), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1740), - [aux_sym_server_alive_interval_token1] = ACTIONS(1740), - [aux_sym_session_type_token1] = ACTIONS(1740), - [aux_sym_set_env_token1] = ACTIONS(1740), - [aux_sym_stdin_null_token1] = ACTIONS(1740), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1740), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1740), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1740), - [aux_sym_syslog_facility_token1] = ACTIONS(1740), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1740), - [aux_sym_keep_alive_token1] = ACTIONS(1740), - [aux_sym_tag_token1] = ACTIONS(1740), - [aux_sym_tunnel_token1] = ACTIONS(1742), - [aux_sym_tunnel_device_token1] = ACTIONS(1740), - [aux_sym_update_host_keys_token1] = ACTIONS(1740), - [aux_sym_use_keychain_token1] = ACTIONS(1740), - [aux_sym_use_roaming_token1] = ACTIONS(1740), - [aux_sym_user_token1] = ACTIONS(1742), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1740), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1740), - [aux_sym_visual_host_key_token1] = ACTIONS(1740), - [aux_sym_xauth_location_token1] = ACTIONS(1740), + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1747), + [aux_sym_match_token1] = ACTIONS(1743), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1743), + [aux_sym_address_family_token1] = ACTIONS(1743), + [aux_sym_batch_mode_token1] = ACTIONS(1743), + [aux_sym_bind_address_token1] = ACTIONS(1743), + [aux_sym_bind_interface_token1] = ACTIONS(1743), + [aux_sym_canonical_domains_token1] = ACTIONS(1743), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1743), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1743), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1743), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1743), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1743), + [aux_sym_certificate_file_token1] = ACTIONS(1743), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1743), + [aux_sym_channel_timeout_token1] = ACTIONS(1743), + [aux_sym_check_host_ip_token1] = ACTIONS(1743), + [aux_sym_ciphers_token1] = ACTIONS(1743), + [aux_sym_cipher_token1] = ACTIONS(1745), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1743), + [aux_sym_compression_token1] = ACTIONS(1743), + [aux_sym_connection_attempts_token1] = ACTIONS(1743), + [aux_sym_connect_timeout_token1] = ACTIONS(1743), + [aux_sym_control_master_token1] = ACTIONS(1743), + [aux_sym_control_path_token1] = ACTIONS(1743), + [aux_sym_control_persist_token1] = ACTIONS(1743), + [aux_sym_dynamic_forward_token1] = ACTIONS(1743), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1743), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1743), + [aux_sym_escape_char_token1] = ACTIONS(1743), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1743), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1743), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1743), + [aux_sym_forward_agent_token1] = ACTIONS(1743), + [aux_sym_forward_x11_token1] = ACTIONS(1745), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1743), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1743), + [aux_sym_gateway_ports_token1] = ACTIONS(1743), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1743), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1743), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1743), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1743), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1743), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1743), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1743), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1743), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1743), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1743), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1743), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1743), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1743), + [aux_sym_host_key_alias_token1] = ACTIONS(1743), + [aux_sym_hostname_token1] = ACTIONS(1743), + [aux_sym_identities_only_token1] = ACTIONS(1743), + [aux_sym_identity_agent_token1] = ACTIONS(1743), + [aux_sym_identity_file_token1] = ACTIONS(1743), + [aux_sym_ignore_unknown_token1] = ACTIONS(1743), + [aux_sym_include_token1] = ACTIONS(1743), + [aux_sym_ip_qos_token1] = ACTIONS(1743), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1743), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1743), + [aux_sym_kex_algorithms_token1] = ACTIONS(1743), + [aux_sym_known_hosts_command_token1] = ACTIONS(1743), + [aux_sym_local_command_token1] = ACTIONS(1743), + [aux_sym_local_forward_token1] = ACTIONS(1743), + [aux_sym_log_level_token1] = ACTIONS(1743), + [aux_sym_log_verbose_token1] = ACTIONS(1743), + [aux_sym_macs_token1] = ACTIONS(1743), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1743), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1743), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1743), + [aux_sym_password_authentication_token1] = ACTIONS(1743), + [aux_sym_permit_local_command_token1] = ACTIONS(1743), + [aux_sym_permit_remote_open_token1] = ACTIONS(1743), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1743), + [aux_sym_port_token1] = ACTIONS(1743), + [aux_sym_preferred_authentications_token1] = ACTIONS(1743), + [aux_sym_protocol_token1] = ACTIONS(1743), + [aux_sym_proxy_command_token1] = ACTIONS(1743), + [aux_sym_proxy_jump_token1] = ACTIONS(1743), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1743), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1743), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1743), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1743), + [aux_sym_rekey_limit_token1] = ACTIONS(1743), + [aux_sym_remote_command_token1] = ACTIONS(1743), + [aux_sym_remote_forward_token1] = ACTIONS(1743), + [aux_sym_request_tty_token1] = ACTIONS(1743), + [aux_sym_required_rsa_size_token1] = ACTIONS(1743), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1743), + [aux_sym_security_key_provider_token1] = ACTIONS(1743), + [aux_sym_send_env_token1] = ACTIONS(1743), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1743), + [aux_sym_server_alive_interval_token1] = ACTIONS(1743), + [aux_sym_session_type_token1] = ACTIONS(1743), + [aux_sym_set_env_token1] = ACTIONS(1743), + [aux_sym_stdin_null_token1] = ACTIONS(1743), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1743), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1743), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1743), + [aux_sym_syslog_facility_token1] = ACTIONS(1743), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1743), + [aux_sym_keep_alive_token1] = ACTIONS(1743), + [aux_sym_tag_token1] = ACTIONS(1743), + [aux_sym_tunnel_token1] = ACTIONS(1745), + [aux_sym_tunnel_device_token1] = ACTIONS(1743), + [aux_sym_update_host_keys_token1] = ACTIONS(1743), + [aux_sym_use_keychain_token1] = ACTIONS(1743), + [aux_sym_use_roaming_token1] = ACTIONS(1743), + [aux_sym_user_token1] = ACTIONS(1745), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1743), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1743), + [aux_sym_visual_host_key_token1] = ACTIONS(1743), + [aux_sym_xauth_location_token1] = ACTIONS(1743), }, [198] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1750), - [aux_sym_match_token1] = ACTIONS(1746), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1746), - [aux_sym_address_family_token1] = ACTIONS(1746), - [aux_sym_batch_mode_token1] = ACTIONS(1746), - [aux_sym_bind_address_token1] = ACTIONS(1746), - [aux_sym_bind_interface_token1] = ACTIONS(1746), - [aux_sym_canonical_domains_token1] = ACTIONS(1746), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1746), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1746), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1746), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1746), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1746), - [aux_sym_certificate_file_token1] = ACTIONS(1746), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1746), - [aux_sym_channel_timeout_token1] = ACTIONS(1746), - [aux_sym_check_host_ip_token1] = ACTIONS(1746), - [aux_sym_ciphers_token1] = ACTIONS(1746), - [aux_sym_cipher_token1] = ACTIONS(1748), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1746), - [aux_sym_compression_token1] = ACTIONS(1746), - [aux_sym_connection_attempts_token1] = ACTIONS(1746), - [aux_sym_connect_timeout_token1] = ACTIONS(1746), - [aux_sym_control_master_token1] = ACTIONS(1746), - [aux_sym_control_path_token1] = ACTIONS(1746), - [aux_sym_control_persist_token1] = ACTIONS(1746), - [aux_sym_dynamic_forward_token1] = ACTIONS(1746), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1746), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1746), - [aux_sym_escape_char_token1] = ACTIONS(1746), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1746), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1746), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1746), - [aux_sym_forward_agent_token1] = ACTIONS(1746), - [aux_sym_forward_x11_token1] = ACTIONS(1748), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1746), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1746), - [aux_sym_gateway_ports_token1] = ACTIONS(1746), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1746), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1746), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1746), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1746), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1746), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1746), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1746), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1746), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1746), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1746), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1746), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1746), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1746), - [aux_sym_host_key_alias_token1] = ACTIONS(1746), - [aux_sym_hostname_token1] = ACTIONS(1746), - [aux_sym_identities_only_token1] = ACTIONS(1746), - [aux_sym_identity_agent_token1] = ACTIONS(1746), - [aux_sym_identity_file_token1] = ACTIONS(1746), - [aux_sym_ignore_unknown_token1] = ACTIONS(1746), - [aux_sym_include_token1] = ACTIONS(1746), - [aux_sym_ip_qos_token1] = ACTIONS(1746), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1746), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1746), - [aux_sym_kex_algorithms_token1] = ACTIONS(1746), - [aux_sym_known_hosts_command_token1] = ACTIONS(1746), - [aux_sym_local_command_token1] = ACTIONS(1746), - [aux_sym_local_forward_token1] = ACTIONS(1746), - [aux_sym_log_level_token1] = ACTIONS(1746), - [aux_sym_log_verbose_token1] = ACTIONS(1746), - [aux_sym_macs_token1] = ACTIONS(1746), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1746), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1746), - [aux_sym_password_authentication_token1] = ACTIONS(1746), - [aux_sym_permit_local_command_token1] = ACTIONS(1746), - [aux_sym_permit_remote_open_token1] = ACTIONS(1746), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1746), - [aux_sym_port_token1] = ACTIONS(1746), - [aux_sym_preferred_authentications_token1] = ACTIONS(1746), - [aux_sym_protocol_token1] = ACTIONS(1746), - [aux_sym_proxy_command_token1] = ACTIONS(1746), - [aux_sym_proxy_jump_token1] = ACTIONS(1746), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1746), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1746), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1746), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1746), - [aux_sym_rekey_limit_token1] = ACTIONS(1746), - [aux_sym_remote_command_token1] = ACTIONS(1746), - [aux_sym_remote_forward_token1] = ACTIONS(1746), - [aux_sym_request_tty_token1] = ACTIONS(1746), - [aux_sym_required_rsa_size_token1] = ACTIONS(1746), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1746), - [aux_sym_security_key_provider_token1] = ACTIONS(1746), - [aux_sym_send_env_token1] = ACTIONS(1746), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1746), - [aux_sym_server_alive_interval_token1] = ACTIONS(1746), - [aux_sym_session_type_token1] = ACTIONS(1746), - [aux_sym_set_env_token1] = ACTIONS(1746), - [aux_sym_stdin_null_token1] = ACTIONS(1746), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1746), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1746), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1746), - [aux_sym_syslog_facility_token1] = ACTIONS(1746), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1746), - [aux_sym_keep_alive_token1] = ACTIONS(1746), - [aux_sym_tag_token1] = ACTIONS(1746), - [aux_sym_tunnel_token1] = ACTIONS(1748), - [aux_sym_tunnel_device_token1] = ACTIONS(1746), - [aux_sym_update_host_keys_token1] = ACTIONS(1746), - [aux_sym_use_keychain_token1] = ACTIONS(1746), - [aux_sym_use_roaming_token1] = ACTIONS(1746), - [aux_sym_user_token1] = ACTIONS(1748), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1746), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1746), - [aux_sym_visual_host_key_token1] = ACTIONS(1746), - [aux_sym_xauth_location_token1] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1749), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1753), + [aux_sym_match_token1] = ACTIONS(1749), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1749), + [aux_sym_address_family_token1] = ACTIONS(1749), + [aux_sym_batch_mode_token1] = ACTIONS(1749), + [aux_sym_bind_address_token1] = ACTIONS(1749), + [aux_sym_bind_interface_token1] = ACTIONS(1749), + [aux_sym_canonical_domains_token1] = ACTIONS(1749), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1749), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1749), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1749), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1749), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1749), + [aux_sym_certificate_file_token1] = ACTIONS(1749), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1749), + [aux_sym_channel_timeout_token1] = ACTIONS(1749), + [aux_sym_check_host_ip_token1] = ACTIONS(1749), + [aux_sym_ciphers_token1] = ACTIONS(1749), + [aux_sym_cipher_token1] = ACTIONS(1751), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1749), + [aux_sym_compression_token1] = ACTIONS(1749), + [aux_sym_connection_attempts_token1] = ACTIONS(1749), + [aux_sym_connect_timeout_token1] = ACTIONS(1749), + [aux_sym_control_master_token1] = ACTIONS(1749), + [aux_sym_control_path_token1] = ACTIONS(1749), + [aux_sym_control_persist_token1] = ACTIONS(1749), + [aux_sym_dynamic_forward_token1] = ACTIONS(1749), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1749), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1749), + [aux_sym_escape_char_token1] = ACTIONS(1749), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1749), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1749), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1749), + [aux_sym_forward_agent_token1] = ACTIONS(1749), + [aux_sym_forward_x11_token1] = ACTIONS(1751), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1749), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1749), + [aux_sym_gateway_ports_token1] = ACTIONS(1749), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1749), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1749), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1749), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1749), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1749), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1749), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1749), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1749), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1749), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1749), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1749), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1749), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1749), + [aux_sym_host_key_alias_token1] = ACTIONS(1749), + [aux_sym_hostname_token1] = ACTIONS(1749), + [aux_sym_identities_only_token1] = ACTIONS(1749), + [aux_sym_identity_agent_token1] = ACTIONS(1749), + [aux_sym_identity_file_token1] = ACTIONS(1749), + [aux_sym_ignore_unknown_token1] = ACTIONS(1749), + [aux_sym_include_token1] = ACTIONS(1749), + [aux_sym_ip_qos_token1] = ACTIONS(1749), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1749), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1749), + [aux_sym_kex_algorithms_token1] = ACTIONS(1749), + [aux_sym_known_hosts_command_token1] = ACTIONS(1749), + [aux_sym_local_command_token1] = ACTIONS(1749), + [aux_sym_local_forward_token1] = ACTIONS(1749), + [aux_sym_log_level_token1] = ACTIONS(1749), + [aux_sym_log_verbose_token1] = ACTIONS(1749), + [aux_sym_macs_token1] = ACTIONS(1749), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1749), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1749), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1749), + [aux_sym_password_authentication_token1] = ACTIONS(1749), + [aux_sym_permit_local_command_token1] = ACTIONS(1749), + [aux_sym_permit_remote_open_token1] = ACTIONS(1749), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1749), + [aux_sym_port_token1] = ACTIONS(1749), + [aux_sym_preferred_authentications_token1] = ACTIONS(1749), + [aux_sym_protocol_token1] = ACTIONS(1749), + [aux_sym_proxy_command_token1] = ACTIONS(1749), + [aux_sym_proxy_jump_token1] = ACTIONS(1749), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1749), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1749), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1749), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1749), + [aux_sym_rekey_limit_token1] = ACTIONS(1749), + [aux_sym_remote_command_token1] = ACTIONS(1749), + [aux_sym_remote_forward_token1] = ACTIONS(1749), + [aux_sym_request_tty_token1] = ACTIONS(1749), + [aux_sym_required_rsa_size_token1] = ACTIONS(1749), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1749), + [aux_sym_security_key_provider_token1] = ACTIONS(1749), + [aux_sym_send_env_token1] = ACTIONS(1749), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1749), + [aux_sym_server_alive_interval_token1] = ACTIONS(1749), + [aux_sym_session_type_token1] = ACTIONS(1749), + [aux_sym_set_env_token1] = ACTIONS(1749), + [aux_sym_stdin_null_token1] = ACTIONS(1749), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1749), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1749), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1749), + [aux_sym_syslog_facility_token1] = ACTIONS(1749), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1749), + [aux_sym_keep_alive_token1] = ACTIONS(1749), + [aux_sym_tag_token1] = ACTIONS(1749), + [aux_sym_tunnel_token1] = ACTIONS(1751), + [aux_sym_tunnel_device_token1] = ACTIONS(1749), + [aux_sym_update_host_keys_token1] = ACTIONS(1749), + [aux_sym_use_keychain_token1] = ACTIONS(1749), + [aux_sym_use_roaming_token1] = ACTIONS(1749), + [aux_sym_user_token1] = ACTIONS(1751), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1749), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1749), + [aux_sym_visual_host_key_token1] = ACTIONS(1749), + [aux_sym_xauth_location_token1] = ACTIONS(1749), }, [199] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1754), - [anon_sym_DQUOTE] = ACTIONS(1756), - [aux_sym_match_token1] = ACTIONS(1752), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1752), - [aux_sym_address_family_token1] = ACTIONS(1752), - [aux_sym_batch_mode_token1] = ACTIONS(1752), - [aux_sym_bind_address_token1] = ACTIONS(1752), - [aux_sym_bind_interface_token1] = ACTIONS(1752), - [aux_sym_canonical_domains_token1] = ACTIONS(1752), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1752), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1752), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1752), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1752), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1752), - [aux_sym_certificate_file_token1] = ACTIONS(1752), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1752), - [aux_sym_channel_timeout_token1] = ACTIONS(1752), - [aux_sym_check_host_ip_token1] = ACTIONS(1752), - [aux_sym_ciphers_token1] = ACTIONS(1752), - [aux_sym_cipher_token1] = ACTIONS(1754), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1752), - [aux_sym_compression_token1] = ACTIONS(1752), - [aux_sym_connection_attempts_token1] = ACTIONS(1752), - [aux_sym_connect_timeout_token1] = ACTIONS(1752), - [aux_sym_control_master_token1] = ACTIONS(1752), - [aux_sym_control_path_token1] = ACTIONS(1752), - [aux_sym_control_persist_token1] = ACTIONS(1752), - [aux_sym_dynamic_forward_token1] = ACTIONS(1752), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1752), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1752), - [aux_sym_escape_char_token1] = ACTIONS(1752), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1752), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1752), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1752), - [aux_sym_forward_agent_token1] = ACTIONS(1752), - [aux_sym_forward_x11_token1] = ACTIONS(1754), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1752), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1752), - [aux_sym_gateway_ports_token1] = ACTIONS(1752), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1752), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1752), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1752), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1752), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1752), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1752), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1752), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1752), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1752), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1752), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1752), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1752), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1752), - [aux_sym_host_key_alias_token1] = ACTIONS(1752), - [aux_sym_hostname_token1] = ACTIONS(1752), - [aux_sym_identities_only_token1] = ACTIONS(1752), - [aux_sym_identity_agent_token1] = ACTIONS(1752), - [aux_sym_identity_file_token1] = ACTIONS(1752), - [aux_sym_ignore_unknown_token1] = ACTIONS(1752), - [aux_sym_include_token1] = ACTIONS(1752), - [aux_sym_ip_qos_token1] = ACTIONS(1752), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1752), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1752), - [aux_sym_kex_algorithms_token1] = ACTIONS(1752), - [aux_sym_known_hosts_command_token1] = ACTIONS(1752), - [aux_sym_local_command_token1] = ACTIONS(1752), - [aux_sym_local_forward_token1] = ACTIONS(1752), - [aux_sym_log_level_token1] = ACTIONS(1752), - [aux_sym_log_verbose_token1] = ACTIONS(1752), - [aux_sym_macs_token1] = ACTIONS(1752), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1752), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1752), - [aux_sym_password_authentication_token1] = ACTIONS(1752), - [aux_sym_permit_local_command_token1] = ACTIONS(1752), - [aux_sym_permit_remote_open_token1] = ACTIONS(1752), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1752), - [aux_sym_port_token1] = ACTIONS(1752), - [aux_sym_preferred_authentications_token1] = ACTIONS(1752), - [aux_sym_protocol_token1] = ACTIONS(1752), - [aux_sym_proxy_command_token1] = ACTIONS(1752), - [aux_sym_proxy_jump_token1] = ACTIONS(1752), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1752), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1752), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1752), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1752), - [aux_sym_rekey_limit_token1] = ACTIONS(1752), - [aux_sym_remote_command_token1] = ACTIONS(1752), - [aux_sym_remote_forward_token1] = ACTIONS(1752), - [aux_sym_request_tty_token1] = ACTIONS(1752), - [aux_sym_required_rsa_size_token1] = ACTIONS(1752), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1752), - [aux_sym_security_key_provider_token1] = ACTIONS(1752), - [aux_sym_send_env_token1] = ACTIONS(1752), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1752), - [aux_sym_server_alive_interval_token1] = ACTIONS(1752), - [aux_sym_session_type_token1] = ACTIONS(1752), - [aux_sym_set_env_token1] = ACTIONS(1752), - [aux_sym_stdin_null_token1] = ACTIONS(1752), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1752), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1752), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1752), - [aux_sym_syslog_facility_token1] = ACTIONS(1752), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1752), - [aux_sym_keep_alive_token1] = ACTIONS(1752), - [aux_sym_tag_token1] = ACTIONS(1752), - [aux_sym_tunnel_token1] = ACTIONS(1754), - [aux_sym_tunnel_device_token1] = ACTIONS(1752), - [aux_sym_update_host_keys_token1] = ACTIONS(1752), - [aux_sym_use_keychain_token1] = ACTIONS(1752), - [aux_sym_use_roaming_token1] = ACTIONS(1752), - [aux_sym_user_token1] = ACTIONS(1754), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1752), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1752), - [aux_sym_visual_host_key_token1] = ACTIONS(1752), - [aux_sym_xauth_location_token1] = ACTIONS(1752), + [ts_builtin_sym_end] = ACTIONS(1755), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1759), + [aux_sym_match_token1] = ACTIONS(1755), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1755), + [aux_sym_address_family_token1] = ACTIONS(1755), + [aux_sym_batch_mode_token1] = ACTIONS(1755), + [aux_sym_bind_address_token1] = ACTIONS(1755), + [aux_sym_bind_interface_token1] = ACTIONS(1755), + [aux_sym_canonical_domains_token1] = ACTIONS(1755), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1755), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1755), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1755), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1755), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1755), + [aux_sym_certificate_file_token1] = ACTIONS(1755), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1755), + [aux_sym_channel_timeout_token1] = ACTIONS(1755), + [aux_sym_check_host_ip_token1] = ACTIONS(1755), + [aux_sym_ciphers_token1] = ACTIONS(1755), + [aux_sym_cipher_token1] = ACTIONS(1757), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1755), + [aux_sym_compression_token1] = ACTIONS(1755), + [aux_sym_connection_attempts_token1] = ACTIONS(1755), + [aux_sym_connect_timeout_token1] = ACTIONS(1755), + [aux_sym_control_master_token1] = ACTIONS(1755), + [aux_sym_control_path_token1] = ACTIONS(1755), + [aux_sym_control_persist_token1] = ACTIONS(1755), + [aux_sym_dynamic_forward_token1] = ACTIONS(1755), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1755), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1755), + [aux_sym_escape_char_token1] = ACTIONS(1755), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1755), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1755), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1755), + [aux_sym_forward_agent_token1] = ACTIONS(1755), + [aux_sym_forward_x11_token1] = ACTIONS(1757), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1755), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1755), + [aux_sym_gateway_ports_token1] = ACTIONS(1755), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1755), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1755), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1755), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1755), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1755), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1755), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1755), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1755), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1755), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1755), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1755), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1755), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1755), + [aux_sym_host_key_alias_token1] = ACTIONS(1755), + [aux_sym_hostname_token1] = ACTIONS(1755), + [aux_sym_identities_only_token1] = ACTIONS(1755), + [aux_sym_identity_agent_token1] = ACTIONS(1755), + [aux_sym_identity_file_token1] = ACTIONS(1755), + [aux_sym_ignore_unknown_token1] = ACTIONS(1755), + [aux_sym_include_token1] = ACTIONS(1755), + [aux_sym_ip_qos_token1] = ACTIONS(1755), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1755), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1755), + [aux_sym_kex_algorithms_token1] = ACTIONS(1755), + [aux_sym_known_hosts_command_token1] = ACTIONS(1755), + [aux_sym_local_command_token1] = ACTIONS(1755), + [aux_sym_local_forward_token1] = ACTIONS(1755), + [aux_sym_log_level_token1] = ACTIONS(1755), + [aux_sym_log_verbose_token1] = ACTIONS(1755), + [aux_sym_macs_token1] = ACTIONS(1755), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1755), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1755), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1755), + [aux_sym_password_authentication_token1] = ACTIONS(1755), + [aux_sym_permit_local_command_token1] = ACTIONS(1755), + [aux_sym_permit_remote_open_token1] = ACTIONS(1755), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1755), + [aux_sym_port_token1] = ACTIONS(1755), + [aux_sym_preferred_authentications_token1] = ACTIONS(1755), + [aux_sym_protocol_token1] = ACTIONS(1755), + [aux_sym_proxy_command_token1] = ACTIONS(1755), + [aux_sym_proxy_jump_token1] = ACTIONS(1755), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1755), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1755), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1755), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1755), + [aux_sym_rekey_limit_token1] = ACTIONS(1755), + [aux_sym_remote_command_token1] = ACTIONS(1755), + [aux_sym_remote_forward_token1] = ACTIONS(1755), + [aux_sym_request_tty_token1] = ACTIONS(1755), + [aux_sym_required_rsa_size_token1] = ACTIONS(1755), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1755), + [aux_sym_security_key_provider_token1] = ACTIONS(1755), + [aux_sym_send_env_token1] = ACTIONS(1755), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1755), + [aux_sym_server_alive_interval_token1] = ACTIONS(1755), + [aux_sym_session_type_token1] = ACTIONS(1755), + [aux_sym_set_env_token1] = ACTIONS(1755), + [aux_sym_stdin_null_token1] = ACTIONS(1755), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1755), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1755), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1755), + [aux_sym_syslog_facility_token1] = ACTIONS(1755), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1755), + [aux_sym_keep_alive_token1] = ACTIONS(1755), + [aux_sym_tag_token1] = ACTIONS(1755), + [aux_sym_tunnel_token1] = ACTIONS(1757), + [aux_sym_tunnel_device_token1] = ACTIONS(1755), + [aux_sym_update_host_keys_token1] = ACTIONS(1755), + [aux_sym_use_keychain_token1] = ACTIONS(1755), + [aux_sym_use_roaming_token1] = ACTIONS(1755), + [aux_sym_user_token1] = ACTIONS(1757), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1755), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1755), + [aux_sym_visual_host_key_token1] = ACTIONS(1755), + [aux_sym_xauth_location_token1] = ACTIONS(1755), }, [200] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [aux_sym_match_token1] = ACTIONS(1758), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1758), - [aux_sym_address_family_token1] = ACTIONS(1758), - [aux_sym_batch_mode_token1] = ACTIONS(1758), - [aux_sym_bind_address_token1] = ACTIONS(1758), - [aux_sym_bind_interface_token1] = ACTIONS(1758), - [aux_sym_canonical_domains_token1] = ACTIONS(1758), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1758), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1758), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1758), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1758), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1758), - [aux_sym_certificate_file_token1] = ACTIONS(1758), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1758), - [aux_sym_channel_timeout_token1] = ACTIONS(1758), - [aux_sym_check_host_ip_token1] = ACTIONS(1758), - [aux_sym_ciphers_token1] = ACTIONS(1758), - [aux_sym_cipher_token1] = ACTIONS(1760), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1758), - [aux_sym_compression_token1] = ACTIONS(1758), - [aux_sym_connection_attempts_token1] = ACTIONS(1758), - [aux_sym_connect_timeout_token1] = ACTIONS(1758), - [aux_sym_control_master_token1] = ACTIONS(1758), - [aux_sym_control_path_token1] = ACTIONS(1758), - [aux_sym_control_persist_token1] = ACTIONS(1758), - [aux_sym_dynamic_forward_token1] = ACTIONS(1758), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1758), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1758), - [aux_sym_escape_char_token1] = ACTIONS(1758), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1758), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1758), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1758), - [aux_sym_forward_agent_token1] = ACTIONS(1758), - [aux_sym_forward_x11_token1] = ACTIONS(1760), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1758), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1758), - [aux_sym_gateway_ports_token1] = ACTIONS(1758), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1758), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1758), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1758), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1758), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1758), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1758), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1758), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1758), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1758), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1758), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1758), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1758), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1758), - [aux_sym_host_key_alias_token1] = ACTIONS(1758), - [aux_sym_hostname_token1] = ACTIONS(1758), - [aux_sym_identities_only_token1] = ACTIONS(1758), - [aux_sym_identity_agent_token1] = ACTIONS(1758), - [aux_sym_identity_file_token1] = ACTIONS(1758), - [aux_sym_ignore_unknown_token1] = ACTIONS(1758), - [aux_sym_include_token1] = ACTIONS(1758), - [aux_sym_ip_qos_token1] = ACTIONS(1758), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1758), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1758), - [aux_sym_kex_algorithms_token1] = ACTIONS(1758), - [aux_sym_known_hosts_command_token1] = ACTIONS(1758), - [aux_sym_local_command_token1] = ACTIONS(1758), - [aux_sym_local_forward_token1] = ACTIONS(1758), - [aux_sym_log_level_token1] = ACTIONS(1758), - [aux_sym_log_verbose_token1] = ACTIONS(1758), - [aux_sym_macs_token1] = ACTIONS(1758), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1758), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1758), - [aux_sym_password_authentication_token1] = ACTIONS(1758), - [aux_sym_permit_local_command_token1] = ACTIONS(1758), - [aux_sym_permit_remote_open_token1] = ACTIONS(1758), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1758), - [aux_sym_port_token1] = ACTIONS(1758), - [aux_sym_preferred_authentications_token1] = ACTIONS(1758), - [aux_sym_protocol_token1] = ACTIONS(1758), - [aux_sym_proxy_command_token1] = ACTIONS(1758), - [aux_sym_proxy_jump_token1] = ACTIONS(1758), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1758), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1758), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1758), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1758), - [aux_sym_rekey_limit_token1] = ACTIONS(1758), - [aux_sym_remote_command_token1] = ACTIONS(1758), - [aux_sym_remote_forward_token1] = ACTIONS(1758), - [aux_sym_request_tty_token1] = ACTIONS(1758), - [aux_sym_required_rsa_size_token1] = ACTIONS(1758), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1758), - [aux_sym_security_key_provider_token1] = ACTIONS(1758), - [aux_sym_send_env_token1] = ACTIONS(1758), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1758), - [aux_sym_server_alive_interval_token1] = ACTIONS(1758), - [aux_sym_session_type_token1] = ACTIONS(1758), - [aux_sym_set_env_token1] = ACTIONS(1758), - [aux_sym_stdin_null_token1] = ACTIONS(1758), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1758), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1758), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1758), - [aux_sym_syslog_facility_token1] = ACTIONS(1758), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1758), - [aux_sym_keep_alive_token1] = ACTIONS(1758), - [aux_sym_tag_token1] = ACTIONS(1758), - [aux_sym_tunnel_token1] = ACTIONS(1760), - [aux_sym_tunnel_device_token1] = ACTIONS(1758), - [aux_sym_update_host_keys_token1] = ACTIONS(1758), - [aux_sym_use_keychain_token1] = ACTIONS(1758), - [aux_sym_use_roaming_token1] = ACTIONS(1758), - [aux_sym_user_token1] = ACTIONS(1760), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1758), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1758), - [aux_sym_visual_host_key_token1] = ACTIONS(1758), - [aux_sym_xauth_location_token1] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(1765), + [aux_sym_match_token1] = ACTIONS(1761), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1761), + [aux_sym_address_family_token1] = ACTIONS(1761), + [aux_sym_batch_mode_token1] = ACTIONS(1761), + [aux_sym_bind_address_token1] = ACTIONS(1761), + [aux_sym_bind_interface_token1] = ACTIONS(1761), + [aux_sym_canonical_domains_token1] = ACTIONS(1761), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1761), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1761), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1761), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1761), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1761), + [aux_sym_certificate_file_token1] = ACTIONS(1761), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1761), + [aux_sym_channel_timeout_token1] = ACTIONS(1761), + [aux_sym_check_host_ip_token1] = ACTIONS(1761), + [aux_sym_ciphers_token1] = ACTIONS(1761), + [aux_sym_cipher_token1] = ACTIONS(1763), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1761), + [aux_sym_compression_token1] = ACTIONS(1761), + [aux_sym_connection_attempts_token1] = ACTIONS(1761), + [aux_sym_connect_timeout_token1] = ACTIONS(1761), + [aux_sym_control_master_token1] = ACTIONS(1761), + [aux_sym_control_path_token1] = ACTIONS(1761), + [aux_sym_control_persist_token1] = ACTIONS(1761), + [aux_sym_dynamic_forward_token1] = ACTIONS(1761), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1761), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1761), + [aux_sym_escape_char_token1] = ACTIONS(1761), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1761), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1761), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1761), + [aux_sym_forward_agent_token1] = ACTIONS(1761), + [aux_sym_forward_x11_token1] = ACTIONS(1763), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1761), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1761), + [aux_sym_gateway_ports_token1] = ACTIONS(1761), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1761), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1761), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1761), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1761), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1761), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1761), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1761), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1761), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1761), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1761), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1761), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1761), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1761), + [aux_sym_host_key_alias_token1] = ACTIONS(1761), + [aux_sym_hostname_token1] = ACTIONS(1761), + [aux_sym_identities_only_token1] = ACTIONS(1761), + [aux_sym_identity_agent_token1] = ACTIONS(1761), + [aux_sym_identity_file_token1] = ACTIONS(1761), + [aux_sym_ignore_unknown_token1] = ACTIONS(1761), + [aux_sym_include_token1] = ACTIONS(1761), + [aux_sym_ip_qos_token1] = ACTIONS(1761), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1761), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1761), + [aux_sym_kex_algorithms_token1] = ACTIONS(1761), + [aux_sym_known_hosts_command_token1] = ACTIONS(1761), + [aux_sym_local_command_token1] = ACTIONS(1761), + [aux_sym_local_forward_token1] = ACTIONS(1761), + [aux_sym_log_level_token1] = ACTIONS(1761), + [aux_sym_log_verbose_token1] = ACTIONS(1761), + [aux_sym_macs_token1] = ACTIONS(1761), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1761), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1761), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1761), + [aux_sym_password_authentication_token1] = ACTIONS(1761), + [aux_sym_permit_local_command_token1] = ACTIONS(1761), + [aux_sym_permit_remote_open_token1] = ACTIONS(1761), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1761), + [aux_sym_port_token1] = ACTIONS(1761), + [aux_sym_preferred_authentications_token1] = ACTIONS(1761), + [aux_sym_protocol_token1] = ACTIONS(1761), + [aux_sym_proxy_command_token1] = ACTIONS(1761), + [aux_sym_proxy_jump_token1] = ACTIONS(1761), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1761), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1761), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1761), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1761), + [aux_sym_rekey_limit_token1] = ACTIONS(1761), + [aux_sym_remote_command_token1] = ACTIONS(1761), + [aux_sym_remote_forward_token1] = ACTIONS(1761), + [aux_sym_request_tty_token1] = ACTIONS(1761), + [aux_sym_required_rsa_size_token1] = ACTIONS(1761), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1761), + [aux_sym_security_key_provider_token1] = ACTIONS(1761), + [aux_sym_send_env_token1] = ACTIONS(1761), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1761), + [aux_sym_server_alive_interval_token1] = ACTIONS(1761), + [aux_sym_session_type_token1] = ACTIONS(1761), + [aux_sym_set_env_token1] = ACTIONS(1761), + [aux_sym_stdin_null_token1] = ACTIONS(1761), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1761), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1761), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1761), + [aux_sym_syslog_facility_token1] = ACTIONS(1761), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1761), + [aux_sym_keep_alive_token1] = ACTIONS(1761), + [aux_sym_tag_token1] = ACTIONS(1761), + [aux_sym_tunnel_token1] = ACTIONS(1763), + [aux_sym_tunnel_device_token1] = ACTIONS(1761), + [aux_sym_update_host_keys_token1] = ACTIONS(1761), + [aux_sym_use_keychain_token1] = ACTIONS(1761), + [aux_sym_use_roaming_token1] = ACTIONS(1761), + [aux_sym_user_token1] = ACTIONS(1763), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1761), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1761), + [aux_sym_visual_host_key_token1] = ACTIONS(1761), + [aux_sym_xauth_location_token1] = ACTIONS(1761), }, [201] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1766), - [anon_sym_DQUOTE] = ACTIONS(1768), - [aux_sym_match_token1] = ACTIONS(1764), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1764), - [aux_sym_address_family_token1] = ACTIONS(1764), - [aux_sym_batch_mode_token1] = ACTIONS(1764), - [aux_sym_bind_address_token1] = ACTIONS(1764), - [aux_sym_bind_interface_token1] = ACTIONS(1764), - [aux_sym_canonical_domains_token1] = ACTIONS(1764), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1764), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1764), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1764), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1764), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1764), - [aux_sym_certificate_file_token1] = ACTIONS(1764), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1764), - [aux_sym_channel_timeout_token1] = ACTIONS(1764), - [aux_sym_check_host_ip_token1] = ACTIONS(1764), - [aux_sym_ciphers_token1] = ACTIONS(1764), - [aux_sym_cipher_token1] = ACTIONS(1766), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1764), - [aux_sym_compression_token1] = ACTIONS(1764), - [aux_sym_connection_attempts_token1] = ACTIONS(1764), - [aux_sym_connect_timeout_token1] = ACTIONS(1764), - [aux_sym_control_master_token1] = ACTIONS(1764), - [aux_sym_control_path_token1] = ACTIONS(1764), - [aux_sym_control_persist_token1] = ACTIONS(1764), - [aux_sym_dynamic_forward_token1] = ACTIONS(1764), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1764), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1764), - [aux_sym_escape_char_token1] = ACTIONS(1764), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1764), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1764), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1764), - [aux_sym_forward_agent_token1] = ACTIONS(1764), - [aux_sym_forward_x11_token1] = ACTIONS(1766), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1764), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1764), - [aux_sym_gateway_ports_token1] = ACTIONS(1764), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1764), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1764), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1764), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1764), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1764), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1764), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1764), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1764), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1764), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1764), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1764), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1764), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1764), - [aux_sym_host_key_alias_token1] = ACTIONS(1764), - [aux_sym_hostname_token1] = ACTIONS(1764), - [aux_sym_identities_only_token1] = ACTIONS(1764), - [aux_sym_identity_agent_token1] = ACTIONS(1764), - [aux_sym_identity_file_token1] = ACTIONS(1764), - [aux_sym_ignore_unknown_token1] = ACTIONS(1764), - [aux_sym_include_token1] = ACTIONS(1764), - [aux_sym_ip_qos_token1] = ACTIONS(1764), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1764), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1764), - [aux_sym_kex_algorithms_token1] = ACTIONS(1764), - [aux_sym_known_hosts_command_token1] = ACTIONS(1764), - [aux_sym_local_command_token1] = ACTIONS(1764), - [aux_sym_local_forward_token1] = ACTIONS(1764), - [aux_sym_log_level_token1] = ACTIONS(1764), - [aux_sym_log_verbose_token1] = ACTIONS(1764), - [aux_sym_macs_token1] = ACTIONS(1764), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1764), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1764), - [aux_sym_password_authentication_token1] = ACTIONS(1764), - [aux_sym_permit_local_command_token1] = ACTIONS(1764), - [aux_sym_permit_remote_open_token1] = ACTIONS(1764), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1764), - [aux_sym_port_token1] = ACTIONS(1764), - [aux_sym_preferred_authentications_token1] = ACTIONS(1764), - [aux_sym_protocol_token1] = ACTIONS(1764), - [aux_sym_proxy_command_token1] = ACTIONS(1764), - [aux_sym_proxy_jump_token1] = ACTIONS(1764), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1764), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1764), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1764), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1764), - [aux_sym_rekey_limit_token1] = ACTIONS(1764), - [aux_sym_remote_command_token1] = ACTIONS(1764), - [aux_sym_remote_forward_token1] = ACTIONS(1764), - [aux_sym_request_tty_token1] = ACTIONS(1764), - [aux_sym_required_rsa_size_token1] = ACTIONS(1764), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1764), - [aux_sym_security_key_provider_token1] = ACTIONS(1764), - [aux_sym_send_env_token1] = ACTIONS(1764), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1764), - [aux_sym_server_alive_interval_token1] = ACTIONS(1764), - [aux_sym_session_type_token1] = ACTIONS(1764), - [aux_sym_set_env_token1] = ACTIONS(1764), - [aux_sym_stdin_null_token1] = ACTIONS(1764), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1764), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1764), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1764), - [aux_sym_syslog_facility_token1] = ACTIONS(1764), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1764), - [aux_sym_keep_alive_token1] = ACTIONS(1764), - [aux_sym_tag_token1] = ACTIONS(1764), - [aux_sym_tunnel_token1] = ACTIONS(1766), - [aux_sym_tunnel_device_token1] = ACTIONS(1764), - [aux_sym_update_host_keys_token1] = ACTIONS(1764), - [aux_sym_use_keychain_token1] = ACTIONS(1764), - [aux_sym_use_roaming_token1] = ACTIONS(1764), - [aux_sym_user_token1] = ACTIONS(1766), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1764), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1764), - [aux_sym_visual_host_key_token1] = ACTIONS(1764), - [aux_sym_xauth_location_token1] = ACTIONS(1764), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(1771), + [aux_sym_match_token1] = ACTIONS(1767), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1767), + [aux_sym_address_family_token1] = ACTIONS(1767), + [aux_sym_batch_mode_token1] = ACTIONS(1767), + [aux_sym_bind_address_token1] = ACTIONS(1767), + [aux_sym_bind_interface_token1] = ACTIONS(1767), + [aux_sym_canonical_domains_token1] = ACTIONS(1767), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1767), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1767), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1767), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1767), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1767), + [aux_sym_certificate_file_token1] = ACTIONS(1767), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1767), + [aux_sym_channel_timeout_token1] = ACTIONS(1767), + [aux_sym_check_host_ip_token1] = ACTIONS(1767), + [aux_sym_ciphers_token1] = ACTIONS(1767), + [aux_sym_cipher_token1] = ACTIONS(1769), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1767), + [aux_sym_compression_token1] = ACTIONS(1767), + [aux_sym_connection_attempts_token1] = ACTIONS(1767), + [aux_sym_connect_timeout_token1] = ACTIONS(1767), + [aux_sym_control_master_token1] = ACTIONS(1767), + [aux_sym_control_path_token1] = ACTIONS(1767), + [aux_sym_control_persist_token1] = ACTIONS(1767), + [aux_sym_dynamic_forward_token1] = ACTIONS(1767), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1767), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1767), + [aux_sym_escape_char_token1] = ACTIONS(1767), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1767), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1767), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1767), + [aux_sym_forward_agent_token1] = ACTIONS(1767), + [aux_sym_forward_x11_token1] = ACTIONS(1769), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1767), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1767), + [aux_sym_gateway_ports_token1] = ACTIONS(1767), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1767), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1767), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1767), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1767), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1767), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1767), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1767), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1767), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1767), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1767), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1767), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1767), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1767), + [aux_sym_host_key_alias_token1] = ACTIONS(1767), + [aux_sym_hostname_token1] = ACTIONS(1767), + [aux_sym_identities_only_token1] = ACTIONS(1767), + [aux_sym_identity_agent_token1] = ACTIONS(1767), + [aux_sym_identity_file_token1] = ACTIONS(1767), + [aux_sym_ignore_unknown_token1] = ACTIONS(1767), + [aux_sym_include_token1] = ACTIONS(1767), + [aux_sym_ip_qos_token1] = ACTIONS(1767), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1767), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1767), + [aux_sym_kex_algorithms_token1] = ACTIONS(1767), + [aux_sym_known_hosts_command_token1] = ACTIONS(1767), + [aux_sym_local_command_token1] = ACTIONS(1767), + [aux_sym_local_forward_token1] = ACTIONS(1767), + [aux_sym_log_level_token1] = ACTIONS(1767), + [aux_sym_log_verbose_token1] = ACTIONS(1767), + [aux_sym_macs_token1] = ACTIONS(1767), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1767), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1767), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1767), + [aux_sym_password_authentication_token1] = ACTIONS(1767), + [aux_sym_permit_local_command_token1] = ACTIONS(1767), + [aux_sym_permit_remote_open_token1] = ACTIONS(1767), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1767), + [aux_sym_port_token1] = ACTIONS(1767), + [aux_sym_preferred_authentications_token1] = ACTIONS(1767), + [aux_sym_protocol_token1] = ACTIONS(1767), + [aux_sym_proxy_command_token1] = ACTIONS(1767), + [aux_sym_proxy_jump_token1] = ACTIONS(1767), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1767), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1767), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1767), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1767), + [aux_sym_rekey_limit_token1] = ACTIONS(1767), + [aux_sym_remote_command_token1] = ACTIONS(1767), + [aux_sym_remote_forward_token1] = ACTIONS(1767), + [aux_sym_request_tty_token1] = ACTIONS(1767), + [aux_sym_required_rsa_size_token1] = ACTIONS(1767), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1767), + [aux_sym_security_key_provider_token1] = ACTIONS(1767), + [aux_sym_send_env_token1] = ACTIONS(1767), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1767), + [aux_sym_server_alive_interval_token1] = ACTIONS(1767), + [aux_sym_session_type_token1] = ACTIONS(1767), + [aux_sym_set_env_token1] = ACTIONS(1767), + [aux_sym_stdin_null_token1] = ACTIONS(1767), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1767), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1767), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1767), + [aux_sym_syslog_facility_token1] = ACTIONS(1767), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1767), + [aux_sym_keep_alive_token1] = ACTIONS(1767), + [aux_sym_tag_token1] = ACTIONS(1767), + [aux_sym_tunnel_token1] = ACTIONS(1769), + [aux_sym_tunnel_device_token1] = ACTIONS(1767), + [aux_sym_update_host_keys_token1] = ACTIONS(1767), + [aux_sym_use_keychain_token1] = ACTIONS(1767), + [aux_sym_use_roaming_token1] = ACTIONS(1767), + [aux_sym_user_token1] = ACTIONS(1769), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1767), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1767), + [aux_sym_visual_host_key_token1] = ACTIONS(1767), + [aux_sym_xauth_location_token1] = ACTIONS(1767), }, [202] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1774), - [aux_sym_match_token1] = ACTIONS(1770), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1770), - [aux_sym_address_family_token1] = ACTIONS(1770), - [aux_sym_batch_mode_token1] = ACTIONS(1770), - [aux_sym_bind_address_token1] = ACTIONS(1770), - [aux_sym_bind_interface_token1] = ACTIONS(1770), - [aux_sym_canonical_domains_token1] = ACTIONS(1770), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1770), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1770), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1770), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1770), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1770), - [aux_sym_certificate_file_token1] = ACTIONS(1770), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1770), - [aux_sym_channel_timeout_token1] = ACTIONS(1770), - [aux_sym_check_host_ip_token1] = ACTIONS(1770), - [aux_sym_ciphers_token1] = ACTIONS(1770), - [aux_sym_cipher_token1] = ACTIONS(1772), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1770), - [aux_sym_compression_token1] = ACTIONS(1770), - [aux_sym_connection_attempts_token1] = ACTIONS(1770), - [aux_sym_connect_timeout_token1] = ACTIONS(1770), - [aux_sym_control_master_token1] = ACTIONS(1770), - [aux_sym_control_path_token1] = ACTIONS(1770), - [aux_sym_control_persist_token1] = ACTIONS(1770), - [aux_sym_dynamic_forward_token1] = ACTIONS(1770), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1770), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1770), - [aux_sym_escape_char_token1] = ACTIONS(1770), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1770), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1770), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1770), - [aux_sym_forward_agent_token1] = ACTIONS(1770), - [aux_sym_forward_x11_token1] = ACTIONS(1772), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1770), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1770), - [aux_sym_gateway_ports_token1] = ACTIONS(1770), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1770), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1770), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1770), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1770), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1770), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1770), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1770), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1770), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1770), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1770), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1770), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1770), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1770), - [aux_sym_host_key_alias_token1] = ACTIONS(1770), - [aux_sym_hostname_token1] = ACTIONS(1770), - [aux_sym_identities_only_token1] = ACTIONS(1770), - [aux_sym_identity_agent_token1] = ACTIONS(1770), - [aux_sym_identity_file_token1] = ACTIONS(1770), - [aux_sym_ignore_unknown_token1] = ACTIONS(1770), - [aux_sym_include_token1] = ACTIONS(1770), - [aux_sym_ip_qos_token1] = ACTIONS(1770), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1770), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1770), - [aux_sym_kex_algorithms_token1] = ACTIONS(1770), - [aux_sym_known_hosts_command_token1] = ACTIONS(1770), - [aux_sym_local_command_token1] = ACTIONS(1770), - [aux_sym_local_forward_token1] = ACTIONS(1770), - [aux_sym_log_level_token1] = ACTIONS(1770), - [aux_sym_log_verbose_token1] = ACTIONS(1770), - [aux_sym_macs_token1] = ACTIONS(1770), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1770), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1770), - [aux_sym_password_authentication_token1] = ACTIONS(1770), - [aux_sym_permit_local_command_token1] = ACTIONS(1770), - [aux_sym_permit_remote_open_token1] = ACTIONS(1770), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1770), - [aux_sym_port_token1] = ACTIONS(1770), - [aux_sym_preferred_authentications_token1] = ACTIONS(1770), - [aux_sym_protocol_token1] = ACTIONS(1770), - [aux_sym_proxy_command_token1] = ACTIONS(1770), - [aux_sym_proxy_jump_token1] = ACTIONS(1770), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1770), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1770), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1770), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1770), - [aux_sym_rekey_limit_token1] = ACTIONS(1770), - [aux_sym_remote_command_token1] = ACTIONS(1770), - [aux_sym_remote_forward_token1] = ACTIONS(1770), - [aux_sym_request_tty_token1] = ACTIONS(1770), - [aux_sym_required_rsa_size_token1] = ACTIONS(1770), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1770), - [aux_sym_security_key_provider_token1] = ACTIONS(1770), - [aux_sym_send_env_token1] = ACTIONS(1770), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1770), - [aux_sym_server_alive_interval_token1] = ACTIONS(1770), - [aux_sym_session_type_token1] = ACTIONS(1770), - [aux_sym_set_env_token1] = ACTIONS(1770), - [aux_sym_stdin_null_token1] = ACTIONS(1770), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1770), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1770), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1770), - [aux_sym_syslog_facility_token1] = ACTIONS(1770), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1770), - [aux_sym_keep_alive_token1] = ACTIONS(1770), - [aux_sym_tag_token1] = ACTIONS(1770), - [aux_sym_tunnel_token1] = ACTIONS(1772), - [aux_sym_tunnel_device_token1] = ACTIONS(1770), - [aux_sym_update_host_keys_token1] = ACTIONS(1770), - [aux_sym_use_keychain_token1] = ACTIONS(1770), - [aux_sym_use_roaming_token1] = ACTIONS(1770), - [aux_sym_user_token1] = ACTIONS(1772), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1770), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1770), - [aux_sym_visual_host_key_token1] = ACTIONS(1770), - [aux_sym_xauth_location_token1] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1777), + [aux_sym_match_token1] = ACTIONS(1773), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1773), + [aux_sym_address_family_token1] = ACTIONS(1773), + [aux_sym_batch_mode_token1] = ACTIONS(1773), + [aux_sym_bind_address_token1] = ACTIONS(1773), + [aux_sym_bind_interface_token1] = ACTIONS(1773), + [aux_sym_canonical_domains_token1] = ACTIONS(1773), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1773), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1773), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1773), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1773), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1773), + [aux_sym_certificate_file_token1] = ACTIONS(1773), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1773), + [aux_sym_channel_timeout_token1] = ACTIONS(1773), + [aux_sym_check_host_ip_token1] = ACTIONS(1773), + [aux_sym_ciphers_token1] = ACTIONS(1773), + [aux_sym_cipher_token1] = ACTIONS(1775), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1773), + [aux_sym_compression_token1] = ACTIONS(1773), + [aux_sym_connection_attempts_token1] = ACTIONS(1773), + [aux_sym_connect_timeout_token1] = ACTIONS(1773), + [aux_sym_control_master_token1] = ACTIONS(1773), + [aux_sym_control_path_token1] = ACTIONS(1773), + [aux_sym_control_persist_token1] = ACTIONS(1773), + [aux_sym_dynamic_forward_token1] = ACTIONS(1773), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1773), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1773), + [aux_sym_escape_char_token1] = ACTIONS(1773), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1773), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1773), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1773), + [aux_sym_forward_agent_token1] = ACTIONS(1773), + [aux_sym_forward_x11_token1] = ACTIONS(1775), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1773), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1773), + [aux_sym_gateway_ports_token1] = ACTIONS(1773), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1773), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1773), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1773), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1773), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1773), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1773), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1773), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1773), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1773), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1773), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1773), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1773), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1773), + [aux_sym_host_key_alias_token1] = ACTIONS(1773), + [aux_sym_hostname_token1] = ACTIONS(1773), + [aux_sym_identities_only_token1] = ACTIONS(1773), + [aux_sym_identity_agent_token1] = ACTIONS(1773), + [aux_sym_identity_file_token1] = ACTIONS(1773), + [aux_sym_ignore_unknown_token1] = ACTIONS(1773), + [aux_sym_include_token1] = ACTIONS(1773), + [aux_sym_ip_qos_token1] = ACTIONS(1773), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1773), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1773), + [aux_sym_kex_algorithms_token1] = ACTIONS(1773), + [aux_sym_known_hosts_command_token1] = ACTIONS(1773), + [aux_sym_local_command_token1] = ACTIONS(1773), + [aux_sym_local_forward_token1] = ACTIONS(1773), + [aux_sym_log_level_token1] = ACTIONS(1773), + [aux_sym_log_verbose_token1] = ACTIONS(1773), + [aux_sym_macs_token1] = ACTIONS(1773), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1773), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1773), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1773), + [aux_sym_password_authentication_token1] = ACTIONS(1773), + [aux_sym_permit_local_command_token1] = ACTIONS(1773), + [aux_sym_permit_remote_open_token1] = ACTIONS(1773), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1773), + [aux_sym_port_token1] = ACTIONS(1773), + [aux_sym_preferred_authentications_token1] = ACTIONS(1773), + [aux_sym_protocol_token1] = ACTIONS(1773), + [aux_sym_proxy_command_token1] = ACTIONS(1773), + [aux_sym_proxy_jump_token1] = ACTIONS(1773), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1773), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1773), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1773), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1773), + [aux_sym_rekey_limit_token1] = ACTIONS(1773), + [aux_sym_remote_command_token1] = ACTIONS(1773), + [aux_sym_remote_forward_token1] = ACTIONS(1773), + [aux_sym_request_tty_token1] = ACTIONS(1773), + [aux_sym_required_rsa_size_token1] = ACTIONS(1773), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1773), + [aux_sym_security_key_provider_token1] = ACTIONS(1773), + [aux_sym_send_env_token1] = ACTIONS(1773), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1773), + [aux_sym_server_alive_interval_token1] = ACTIONS(1773), + [aux_sym_session_type_token1] = ACTIONS(1773), + [aux_sym_set_env_token1] = ACTIONS(1773), + [aux_sym_stdin_null_token1] = ACTIONS(1773), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1773), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1773), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1773), + [aux_sym_syslog_facility_token1] = ACTIONS(1773), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1773), + [aux_sym_keep_alive_token1] = ACTIONS(1773), + [aux_sym_tag_token1] = ACTIONS(1773), + [aux_sym_tunnel_token1] = ACTIONS(1775), + [aux_sym_tunnel_device_token1] = ACTIONS(1773), + [aux_sym_update_host_keys_token1] = ACTIONS(1773), + [aux_sym_use_keychain_token1] = ACTIONS(1773), + [aux_sym_use_roaming_token1] = ACTIONS(1773), + [aux_sym_user_token1] = ACTIONS(1775), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1773), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1773), + [aux_sym_visual_host_key_token1] = ACTIONS(1773), + [aux_sym_xauth_location_token1] = ACTIONS(1773), }, [203] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1778), - [anon_sym_DQUOTE] = ACTIONS(1780), - [aux_sym_match_token1] = ACTIONS(1776), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1776), - [aux_sym_address_family_token1] = ACTIONS(1776), - [aux_sym_batch_mode_token1] = ACTIONS(1776), - [aux_sym_bind_address_token1] = ACTIONS(1776), - [aux_sym_bind_interface_token1] = ACTIONS(1776), - [aux_sym_canonical_domains_token1] = ACTIONS(1776), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1776), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1776), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1776), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1776), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1776), - [aux_sym_certificate_file_token1] = ACTIONS(1776), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1776), - [aux_sym_channel_timeout_token1] = ACTIONS(1776), - [aux_sym_check_host_ip_token1] = ACTIONS(1776), - [aux_sym_ciphers_token1] = ACTIONS(1776), - [aux_sym_cipher_token1] = ACTIONS(1778), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1776), - [aux_sym_compression_token1] = ACTIONS(1776), - [aux_sym_connection_attempts_token1] = ACTIONS(1776), - [aux_sym_connect_timeout_token1] = ACTIONS(1776), - [aux_sym_control_master_token1] = ACTIONS(1776), - [aux_sym_control_path_token1] = ACTIONS(1776), - [aux_sym_control_persist_token1] = ACTIONS(1776), - [aux_sym_dynamic_forward_token1] = ACTIONS(1776), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1776), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1776), - [aux_sym_escape_char_token1] = ACTIONS(1776), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1776), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1776), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1776), - [aux_sym_forward_agent_token1] = ACTIONS(1776), - [aux_sym_forward_x11_token1] = ACTIONS(1778), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1776), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1776), - [aux_sym_gateway_ports_token1] = ACTIONS(1776), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1776), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1776), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1776), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1776), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1776), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1776), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1776), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1776), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1776), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1776), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1776), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1776), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1776), - [aux_sym_host_key_alias_token1] = ACTIONS(1776), - [aux_sym_hostname_token1] = ACTIONS(1776), - [aux_sym_identities_only_token1] = ACTIONS(1776), - [aux_sym_identity_agent_token1] = ACTIONS(1776), - [aux_sym_identity_file_token1] = ACTIONS(1776), - [aux_sym_ignore_unknown_token1] = ACTIONS(1776), - [aux_sym_include_token1] = ACTIONS(1776), - [aux_sym_ip_qos_token1] = ACTIONS(1776), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1776), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1776), - [aux_sym_kex_algorithms_token1] = ACTIONS(1776), - [aux_sym_known_hosts_command_token1] = ACTIONS(1776), - [aux_sym_local_command_token1] = ACTIONS(1776), - [aux_sym_local_forward_token1] = ACTIONS(1776), - [aux_sym_log_level_token1] = ACTIONS(1776), - [aux_sym_log_verbose_token1] = ACTIONS(1776), - [aux_sym_macs_token1] = ACTIONS(1776), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1776), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1776), - [aux_sym_password_authentication_token1] = ACTIONS(1776), - [aux_sym_permit_local_command_token1] = ACTIONS(1776), - [aux_sym_permit_remote_open_token1] = ACTIONS(1776), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1776), - [aux_sym_port_token1] = ACTIONS(1776), - [aux_sym_preferred_authentications_token1] = ACTIONS(1776), - [aux_sym_protocol_token1] = ACTIONS(1776), - [aux_sym_proxy_command_token1] = ACTIONS(1776), - [aux_sym_proxy_jump_token1] = ACTIONS(1776), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1776), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1776), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1776), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1776), - [aux_sym_rekey_limit_token1] = ACTIONS(1776), - [aux_sym_remote_command_token1] = ACTIONS(1776), - [aux_sym_remote_forward_token1] = ACTIONS(1776), - [aux_sym_request_tty_token1] = ACTIONS(1776), - [aux_sym_required_rsa_size_token1] = ACTIONS(1776), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1776), - [aux_sym_security_key_provider_token1] = ACTIONS(1776), - [aux_sym_send_env_token1] = ACTIONS(1776), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1776), - [aux_sym_server_alive_interval_token1] = ACTIONS(1776), - [aux_sym_session_type_token1] = ACTIONS(1776), - [aux_sym_set_env_token1] = ACTIONS(1776), - [aux_sym_stdin_null_token1] = ACTIONS(1776), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1776), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1776), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1776), - [aux_sym_syslog_facility_token1] = ACTIONS(1776), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1776), - [aux_sym_keep_alive_token1] = ACTIONS(1776), - [aux_sym_tag_token1] = ACTIONS(1776), - [aux_sym_tunnel_token1] = ACTIONS(1778), - [aux_sym_tunnel_device_token1] = ACTIONS(1776), - [aux_sym_update_host_keys_token1] = ACTIONS(1776), - [aux_sym_use_keychain_token1] = ACTIONS(1776), - [aux_sym_use_roaming_token1] = ACTIONS(1776), - [aux_sym_user_token1] = ACTIONS(1778), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1776), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1776), - [aux_sym_visual_host_key_token1] = ACTIONS(1776), - [aux_sym_xauth_location_token1] = ACTIONS(1776), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(1783), + [aux_sym_match_token1] = ACTIONS(1779), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1779), + [aux_sym_address_family_token1] = ACTIONS(1779), + [aux_sym_batch_mode_token1] = ACTIONS(1779), + [aux_sym_bind_address_token1] = ACTIONS(1779), + [aux_sym_bind_interface_token1] = ACTIONS(1779), + [aux_sym_canonical_domains_token1] = ACTIONS(1779), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1779), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1779), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1779), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1779), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1779), + [aux_sym_certificate_file_token1] = ACTIONS(1779), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1779), + [aux_sym_channel_timeout_token1] = ACTIONS(1779), + [aux_sym_check_host_ip_token1] = ACTIONS(1779), + [aux_sym_ciphers_token1] = ACTIONS(1779), + [aux_sym_cipher_token1] = ACTIONS(1781), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1779), + [aux_sym_compression_token1] = ACTIONS(1779), + [aux_sym_connection_attempts_token1] = ACTIONS(1779), + [aux_sym_connect_timeout_token1] = ACTIONS(1779), + [aux_sym_control_master_token1] = ACTIONS(1779), + [aux_sym_control_path_token1] = ACTIONS(1779), + [aux_sym_control_persist_token1] = ACTIONS(1779), + [aux_sym_dynamic_forward_token1] = ACTIONS(1779), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1779), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1779), + [aux_sym_escape_char_token1] = ACTIONS(1779), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1779), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1779), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1779), + [aux_sym_forward_agent_token1] = ACTIONS(1779), + [aux_sym_forward_x11_token1] = ACTIONS(1781), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1779), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1779), + [aux_sym_gateway_ports_token1] = ACTIONS(1779), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1779), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1779), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1779), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1779), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1779), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1779), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1779), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1779), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1779), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1779), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1779), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1779), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1779), + [aux_sym_host_key_alias_token1] = ACTIONS(1779), + [aux_sym_hostname_token1] = ACTIONS(1779), + [aux_sym_identities_only_token1] = ACTIONS(1779), + [aux_sym_identity_agent_token1] = ACTIONS(1779), + [aux_sym_identity_file_token1] = ACTIONS(1779), + [aux_sym_ignore_unknown_token1] = ACTIONS(1779), + [aux_sym_include_token1] = ACTIONS(1779), + [aux_sym_ip_qos_token1] = ACTIONS(1779), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1779), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1779), + [aux_sym_kex_algorithms_token1] = ACTIONS(1779), + [aux_sym_known_hosts_command_token1] = ACTIONS(1779), + [aux_sym_local_command_token1] = ACTIONS(1779), + [aux_sym_local_forward_token1] = ACTIONS(1779), + [aux_sym_log_level_token1] = ACTIONS(1779), + [aux_sym_log_verbose_token1] = ACTIONS(1779), + [aux_sym_macs_token1] = ACTIONS(1779), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1779), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1779), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1779), + [aux_sym_password_authentication_token1] = ACTIONS(1779), + [aux_sym_permit_local_command_token1] = ACTIONS(1779), + [aux_sym_permit_remote_open_token1] = ACTIONS(1779), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1779), + [aux_sym_port_token1] = ACTIONS(1779), + [aux_sym_preferred_authentications_token1] = ACTIONS(1779), + [aux_sym_protocol_token1] = ACTIONS(1779), + [aux_sym_proxy_command_token1] = ACTIONS(1779), + [aux_sym_proxy_jump_token1] = ACTIONS(1779), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1779), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1779), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1779), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1779), + [aux_sym_rekey_limit_token1] = ACTIONS(1779), + [aux_sym_remote_command_token1] = ACTIONS(1779), + [aux_sym_remote_forward_token1] = ACTIONS(1779), + [aux_sym_request_tty_token1] = ACTIONS(1779), + [aux_sym_required_rsa_size_token1] = ACTIONS(1779), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1779), + [aux_sym_security_key_provider_token1] = ACTIONS(1779), + [aux_sym_send_env_token1] = ACTIONS(1779), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1779), + [aux_sym_server_alive_interval_token1] = ACTIONS(1779), + [aux_sym_session_type_token1] = ACTIONS(1779), + [aux_sym_set_env_token1] = ACTIONS(1779), + [aux_sym_stdin_null_token1] = ACTIONS(1779), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1779), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1779), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1779), + [aux_sym_syslog_facility_token1] = ACTIONS(1779), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1779), + [aux_sym_keep_alive_token1] = ACTIONS(1779), + [aux_sym_tag_token1] = ACTIONS(1779), + [aux_sym_tunnel_token1] = ACTIONS(1781), + [aux_sym_tunnel_device_token1] = ACTIONS(1779), + [aux_sym_update_host_keys_token1] = ACTIONS(1779), + [aux_sym_use_keychain_token1] = ACTIONS(1779), + [aux_sym_use_roaming_token1] = ACTIONS(1779), + [aux_sym_user_token1] = ACTIONS(1781), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1779), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1779), + [aux_sym_visual_host_key_token1] = ACTIONS(1779), + [aux_sym_xauth_location_token1] = ACTIONS(1779), }, [204] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1784), - [anon_sym_DQUOTE] = ACTIONS(1786), - [aux_sym_match_token1] = ACTIONS(1782), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1782), - [aux_sym_address_family_token1] = ACTIONS(1782), - [aux_sym_batch_mode_token1] = ACTIONS(1782), - [aux_sym_bind_address_token1] = ACTIONS(1782), - [aux_sym_bind_interface_token1] = ACTIONS(1782), - [aux_sym_canonical_domains_token1] = ACTIONS(1782), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1782), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1782), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1782), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1782), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1782), - [aux_sym_certificate_file_token1] = ACTIONS(1782), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1782), - [aux_sym_channel_timeout_token1] = ACTIONS(1782), - [aux_sym_check_host_ip_token1] = ACTIONS(1782), - [aux_sym_ciphers_token1] = ACTIONS(1782), - [aux_sym_cipher_token1] = ACTIONS(1784), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1782), - [aux_sym_compression_token1] = ACTIONS(1782), - [aux_sym_connection_attempts_token1] = ACTIONS(1782), - [aux_sym_connect_timeout_token1] = ACTIONS(1782), - [aux_sym_control_master_token1] = ACTIONS(1782), - [aux_sym_control_path_token1] = ACTIONS(1782), - [aux_sym_control_persist_token1] = ACTIONS(1782), - [aux_sym_dynamic_forward_token1] = ACTIONS(1782), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1782), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1782), - [aux_sym_escape_char_token1] = ACTIONS(1782), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1782), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1782), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1782), - [aux_sym_forward_agent_token1] = ACTIONS(1782), - [aux_sym_forward_x11_token1] = ACTIONS(1784), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1782), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1782), - [aux_sym_gateway_ports_token1] = ACTIONS(1782), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1782), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1782), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1782), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1782), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1782), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1782), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1782), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1782), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1782), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1782), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1782), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1782), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1782), - [aux_sym_host_key_alias_token1] = ACTIONS(1782), - [aux_sym_hostname_token1] = ACTIONS(1782), - [aux_sym_identities_only_token1] = ACTIONS(1782), - [aux_sym_identity_agent_token1] = ACTIONS(1782), - [aux_sym_identity_file_token1] = ACTIONS(1782), - [aux_sym_ignore_unknown_token1] = ACTIONS(1782), - [aux_sym_include_token1] = ACTIONS(1782), - [aux_sym_ip_qos_token1] = ACTIONS(1782), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1782), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1782), - [aux_sym_kex_algorithms_token1] = ACTIONS(1782), - [aux_sym_known_hosts_command_token1] = ACTIONS(1782), - [aux_sym_local_command_token1] = ACTIONS(1782), - [aux_sym_local_forward_token1] = ACTIONS(1782), - [aux_sym_log_level_token1] = ACTIONS(1782), - [aux_sym_log_verbose_token1] = ACTIONS(1782), - [aux_sym_macs_token1] = ACTIONS(1782), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1782), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1782), - [aux_sym_password_authentication_token1] = ACTIONS(1782), - [aux_sym_permit_local_command_token1] = ACTIONS(1782), - [aux_sym_permit_remote_open_token1] = ACTIONS(1782), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1782), - [aux_sym_port_token1] = ACTIONS(1782), - [aux_sym_preferred_authentications_token1] = ACTIONS(1782), - [aux_sym_protocol_token1] = ACTIONS(1782), - [aux_sym_proxy_command_token1] = ACTIONS(1782), - [aux_sym_proxy_jump_token1] = ACTIONS(1782), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1782), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1782), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1782), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1782), - [aux_sym_rekey_limit_token1] = ACTIONS(1782), - [aux_sym_remote_command_token1] = ACTIONS(1782), - [aux_sym_remote_forward_token1] = ACTIONS(1782), - [aux_sym_request_tty_token1] = ACTIONS(1782), - [aux_sym_required_rsa_size_token1] = ACTIONS(1782), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1782), - [aux_sym_security_key_provider_token1] = ACTIONS(1782), - [aux_sym_send_env_token1] = ACTIONS(1782), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1782), - [aux_sym_server_alive_interval_token1] = ACTIONS(1782), - [aux_sym_session_type_token1] = ACTIONS(1782), - [aux_sym_set_env_token1] = ACTIONS(1782), - [aux_sym_stdin_null_token1] = ACTIONS(1782), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1782), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1782), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1782), - [aux_sym_syslog_facility_token1] = ACTIONS(1782), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1782), - [aux_sym_keep_alive_token1] = ACTIONS(1782), - [aux_sym_tag_token1] = ACTIONS(1782), - [aux_sym_tunnel_token1] = ACTIONS(1784), - [aux_sym_tunnel_device_token1] = ACTIONS(1782), - [aux_sym_update_host_keys_token1] = ACTIONS(1782), - [aux_sym_use_keychain_token1] = ACTIONS(1782), - [aux_sym_use_roaming_token1] = ACTIONS(1782), - [aux_sym_user_token1] = ACTIONS(1784), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1782), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1782), - [aux_sym_visual_host_key_token1] = ACTIONS(1782), - [aux_sym_xauth_location_token1] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1789), + [aux_sym_match_token1] = ACTIONS(1785), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1785), + [aux_sym_address_family_token1] = ACTIONS(1785), + [aux_sym_batch_mode_token1] = ACTIONS(1785), + [aux_sym_bind_address_token1] = ACTIONS(1785), + [aux_sym_bind_interface_token1] = ACTIONS(1785), + [aux_sym_canonical_domains_token1] = ACTIONS(1785), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1785), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1785), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1785), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1785), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1785), + [aux_sym_certificate_file_token1] = ACTIONS(1785), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1785), + [aux_sym_channel_timeout_token1] = ACTIONS(1785), + [aux_sym_check_host_ip_token1] = ACTIONS(1785), + [aux_sym_ciphers_token1] = ACTIONS(1785), + [aux_sym_cipher_token1] = ACTIONS(1787), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1785), + [aux_sym_compression_token1] = ACTIONS(1785), + [aux_sym_connection_attempts_token1] = ACTIONS(1785), + [aux_sym_connect_timeout_token1] = ACTIONS(1785), + [aux_sym_control_master_token1] = ACTIONS(1785), + [aux_sym_control_path_token1] = ACTIONS(1785), + [aux_sym_control_persist_token1] = ACTIONS(1785), + [aux_sym_dynamic_forward_token1] = ACTIONS(1785), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1785), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1785), + [aux_sym_escape_char_token1] = ACTIONS(1785), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1785), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1785), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1785), + [aux_sym_forward_agent_token1] = ACTIONS(1785), + [aux_sym_forward_x11_token1] = ACTIONS(1787), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1785), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1785), + [aux_sym_gateway_ports_token1] = ACTIONS(1785), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1785), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1785), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1785), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1785), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1785), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1785), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1785), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1785), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1785), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1785), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1785), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1785), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1785), + [aux_sym_host_key_alias_token1] = ACTIONS(1785), + [aux_sym_hostname_token1] = ACTIONS(1785), + [aux_sym_identities_only_token1] = ACTIONS(1785), + [aux_sym_identity_agent_token1] = ACTIONS(1785), + [aux_sym_identity_file_token1] = ACTIONS(1785), + [aux_sym_ignore_unknown_token1] = ACTIONS(1785), + [aux_sym_include_token1] = ACTIONS(1785), + [aux_sym_ip_qos_token1] = ACTIONS(1785), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1785), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1785), + [aux_sym_kex_algorithms_token1] = ACTIONS(1785), + [aux_sym_known_hosts_command_token1] = ACTIONS(1785), + [aux_sym_local_command_token1] = ACTIONS(1785), + [aux_sym_local_forward_token1] = ACTIONS(1785), + [aux_sym_log_level_token1] = ACTIONS(1785), + [aux_sym_log_verbose_token1] = ACTIONS(1785), + [aux_sym_macs_token1] = ACTIONS(1785), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1785), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1785), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1785), + [aux_sym_password_authentication_token1] = ACTIONS(1785), + [aux_sym_permit_local_command_token1] = ACTIONS(1785), + [aux_sym_permit_remote_open_token1] = ACTIONS(1785), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1785), + [aux_sym_port_token1] = ACTIONS(1785), + [aux_sym_preferred_authentications_token1] = ACTIONS(1785), + [aux_sym_protocol_token1] = ACTIONS(1785), + [aux_sym_proxy_command_token1] = ACTIONS(1785), + [aux_sym_proxy_jump_token1] = ACTIONS(1785), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1785), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1785), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1785), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1785), + [aux_sym_rekey_limit_token1] = ACTIONS(1785), + [aux_sym_remote_command_token1] = ACTIONS(1785), + [aux_sym_remote_forward_token1] = ACTIONS(1785), + [aux_sym_request_tty_token1] = ACTIONS(1785), + [aux_sym_required_rsa_size_token1] = ACTIONS(1785), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1785), + [aux_sym_security_key_provider_token1] = ACTIONS(1785), + [aux_sym_send_env_token1] = ACTIONS(1785), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1785), + [aux_sym_server_alive_interval_token1] = ACTIONS(1785), + [aux_sym_session_type_token1] = ACTIONS(1785), + [aux_sym_set_env_token1] = ACTIONS(1785), + [aux_sym_stdin_null_token1] = ACTIONS(1785), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1785), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1785), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1785), + [aux_sym_syslog_facility_token1] = ACTIONS(1785), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1785), + [aux_sym_keep_alive_token1] = ACTIONS(1785), + [aux_sym_tag_token1] = ACTIONS(1785), + [aux_sym_tunnel_token1] = ACTIONS(1787), + [aux_sym_tunnel_device_token1] = ACTIONS(1785), + [aux_sym_update_host_keys_token1] = ACTIONS(1785), + [aux_sym_use_keychain_token1] = ACTIONS(1785), + [aux_sym_use_roaming_token1] = ACTIONS(1785), + [aux_sym_user_token1] = ACTIONS(1787), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1785), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1785), + [aux_sym_visual_host_key_token1] = ACTIONS(1785), + [aux_sym_xauth_location_token1] = ACTIONS(1785), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1790), - [anon_sym_DQUOTE] = ACTIONS(1792), - [aux_sym_match_token1] = ACTIONS(1788), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1788), - [aux_sym_address_family_token1] = ACTIONS(1788), - [aux_sym_batch_mode_token1] = ACTIONS(1788), - [aux_sym_bind_address_token1] = ACTIONS(1788), - [aux_sym_bind_interface_token1] = ACTIONS(1788), - [aux_sym_canonical_domains_token1] = ACTIONS(1788), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1788), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1788), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1788), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1788), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1788), - [aux_sym_certificate_file_token1] = ACTIONS(1788), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1788), - [aux_sym_channel_timeout_token1] = ACTIONS(1788), - [aux_sym_check_host_ip_token1] = ACTIONS(1788), - [aux_sym_ciphers_token1] = ACTIONS(1788), - [aux_sym_cipher_token1] = ACTIONS(1790), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1788), - [aux_sym_compression_token1] = ACTIONS(1788), - [aux_sym_connection_attempts_token1] = ACTIONS(1788), - [aux_sym_connect_timeout_token1] = ACTIONS(1788), - [aux_sym_control_master_token1] = ACTIONS(1788), - [aux_sym_control_path_token1] = ACTIONS(1788), - [aux_sym_control_persist_token1] = ACTIONS(1788), - [aux_sym_dynamic_forward_token1] = ACTIONS(1788), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1788), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1788), - [aux_sym_escape_char_token1] = ACTIONS(1788), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1788), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1788), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1788), - [aux_sym_forward_agent_token1] = ACTIONS(1788), - [aux_sym_forward_x11_token1] = ACTIONS(1790), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1788), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1788), - [aux_sym_gateway_ports_token1] = ACTIONS(1788), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1788), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1788), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1788), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1788), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1788), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1788), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1788), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1788), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1788), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1788), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1788), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1788), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1788), - [aux_sym_host_key_alias_token1] = ACTIONS(1788), - [aux_sym_hostname_token1] = ACTIONS(1788), - [aux_sym_identities_only_token1] = ACTIONS(1788), - [aux_sym_identity_agent_token1] = ACTIONS(1788), - [aux_sym_identity_file_token1] = ACTIONS(1788), - [aux_sym_ignore_unknown_token1] = ACTIONS(1788), - [aux_sym_include_token1] = ACTIONS(1788), - [aux_sym_ip_qos_token1] = ACTIONS(1788), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1788), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1788), - [aux_sym_kex_algorithms_token1] = ACTIONS(1788), - [aux_sym_known_hosts_command_token1] = ACTIONS(1788), - [aux_sym_local_command_token1] = ACTIONS(1788), - [aux_sym_local_forward_token1] = ACTIONS(1788), - [aux_sym_log_level_token1] = ACTIONS(1788), - [aux_sym_log_verbose_token1] = ACTIONS(1788), - [aux_sym_macs_token1] = ACTIONS(1788), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1788), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1788), - [aux_sym_password_authentication_token1] = ACTIONS(1788), - [aux_sym_permit_local_command_token1] = ACTIONS(1788), - [aux_sym_permit_remote_open_token1] = ACTIONS(1788), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1788), - [aux_sym_port_token1] = ACTIONS(1788), - [aux_sym_preferred_authentications_token1] = ACTIONS(1788), - [aux_sym_protocol_token1] = ACTIONS(1788), - [aux_sym_proxy_command_token1] = ACTIONS(1788), - [aux_sym_proxy_jump_token1] = ACTIONS(1788), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1788), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1788), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1788), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1788), - [aux_sym_rekey_limit_token1] = ACTIONS(1788), - [aux_sym_remote_command_token1] = ACTIONS(1788), - [aux_sym_remote_forward_token1] = ACTIONS(1788), - [aux_sym_request_tty_token1] = ACTIONS(1788), - [aux_sym_required_rsa_size_token1] = ACTIONS(1788), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1788), - [aux_sym_security_key_provider_token1] = ACTIONS(1788), - [aux_sym_send_env_token1] = ACTIONS(1788), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1788), - [aux_sym_server_alive_interval_token1] = ACTIONS(1788), - [aux_sym_session_type_token1] = ACTIONS(1788), - [aux_sym_set_env_token1] = ACTIONS(1788), - [aux_sym_stdin_null_token1] = ACTIONS(1788), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1788), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1788), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1788), - [aux_sym_syslog_facility_token1] = ACTIONS(1788), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1788), - [aux_sym_keep_alive_token1] = ACTIONS(1788), - [aux_sym_tag_token1] = ACTIONS(1788), - [aux_sym_tunnel_token1] = ACTIONS(1790), - [aux_sym_tunnel_device_token1] = ACTIONS(1788), - [aux_sym_update_host_keys_token1] = ACTIONS(1788), - [aux_sym_use_keychain_token1] = ACTIONS(1788), - [aux_sym_use_roaming_token1] = ACTIONS(1788), - [aux_sym_user_token1] = ACTIONS(1790), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1788), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1788), - [aux_sym_visual_host_key_token1] = ACTIONS(1788), - [aux_sym_xauth_location_token1] = ACTIONS(1788), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1795), + [aux_sym_match_token1] = ACTIONS(1791), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1791), + [aux_sym_address_family_token1] = ACTIONS(1791), + [aux_sym_batch_mode_token1] = ACTIONS(1791), + [aux_sym_bind_address_token1] = ACTIONS(1791), + [aux_sym_bind_interface_token1] = ACTIONS(1791), + [aux_sym_canonical_domains_token1] = ACTIONS(1791), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1791), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1791), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1791), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1791), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1791), + [aux_sym_certificate_file_token1] = ACTIONS(1791), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1791), + [aux_sym_channel_timeout_token1] = ACTIONS(1791), + [aux_sym_check_host_ip_token1] = ACTIONS(1791), + [aux_sym_ciphers_token1] = ACTIONS(1791), + [aux_sym_cipher_token1] = ACTIONS(1793), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1791), + [aux_sym_compression_token1] = ACTIONS(1791), + [aux_sym_connection_attempts_token1] = ACTIONS(1791), + [aux_sym_connect_timeout_token1] = ACTIONS(1791), + [aux_sym_control_master_token1] = ACTIONS(1791), + [aux_sym_control_path_token1] = ACTIONS(1791), + [aux_sym_control_persist_token1] = ACTIONS(1791), + [aux_sym_dynamic_forward_token1] = ACTIONS(1791), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1791), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1791), + [aux_sym_escape_char_token1] = ACTIONS(1791), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1791), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1791), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1791), + [aux_sym_forward_agent_token1] = ACTIONS(1791), + [aux_sym_forward_x11_token1] = ACTIONS(1793), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1791), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1791), + [aux_sym_gateway_ports_token1] = ACTIONS(1791), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1791), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1791), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1791), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1791), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1791), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1791), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1791), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1791), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1791), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1791), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1791), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1791), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1791), + [aux_sym_host_key_alias_token1] = ACTIONS(1791), + [aux_sym_hostname_token1] = ACTIONS(1791), + [aux_sym_identities_only_token1] = ACTIONS(1791), + [aux_sym_identity_agent_token1] = ACTIONS(1791), + [aux_sym_identity_file_token1] = ACTIONS(1791), + [aux_sym_ignore_unknown_token1] = ACTIONS(1791), + [aux_sym_include_token1] = ACTIONS(1791), + [aux_sym_ip_qos_token1] = ACTIONS(1791), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1791), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1791), + [aux_sym_kex_algorithms_token1] = ACTIONS(1791), + [aux_sym_known_hosts_command_token1] = ACTIONS(1791), + [aux_sym_local_command_token1] = ACTIONS(1791), + [aux_sym_local_forward_token1] = ACTIONS(1791), + [aux_sym_log_level_token1] = ACTIONS(1791), + [aux_sym_log_verbose_token1] = ACTIONS(1791), + [aux_sym_macs_token1] = ACTIONS(1791), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1791), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1791), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1791), + [aux_sym_password_authentication_token1] = ACTIONS(1791), + [aux_sym_permit_local_command_token1] = ACTIONS(1791), + [aux_sym_permit_remote_open_token1] = ACTIONS(1791), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1791), + [aux_sym_port_token1] = ACTIONS(1791), + [aux_sym_preferred_authentications_token1] = ACTIONS(1791), + [aux_sym_protocol_token1] = ACTIONS(1791), + [aux_sym_proxy_command_token1] = ACTIONS(1791), + [aux_sym_proxy_jump_token1] = ACTIONS(1791), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1791), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1791), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1791), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1791), + [aux_sym_rekey_limit_token1] = ACTIONS(1791), + [aux_sym_remote_command_token1] = ACTIONS(1791), + [aux_sym_remote_forward_token1] = ACTIONS(1791), + [aux_sym_request_tty_token1] = ACTIONS(1791), + [aux_sym_required_rsa_size_token1] = ACTIONS(1791), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1791), + [aux_sym_security_key_provider_token1] = ACTIONS(1791), + [aux_sym_send_env_token1] = ACTIONS(1791), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1791), + [aux_sym_server_alive_interval_token1] = ACTIONS(1791), + [aux_sym_session_type_token1] = ACTIONS(1791), + [aux_sym_set_env_token1] = ACTIONS(1791), + [aux_sym_stdin_null_token1] = ACTIONS(1791), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1791), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1791), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1791), + [aux_sym_syslog_facility_token1] = ACTIONS(1791), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1791), + [aux_sym_keep_alive_token1] = ACTIONS(1791), + [aux_sym_tag_token1] = ACTIONS(1791), + [aux_sym_tunnel_token1] = ACTIONS(1793), + [aux_sym_tunnel_device_token1] = ACTIONS(1791), + [aux_sym_update_host_keys_token1] = ACTIONS(1791), + [aux_sym_use_keychain_token1] = ACTIONS(1791), + [aux_sym_use_roaming_token1] = ACTIONS(1791), + [aux_sym_user_token1] = ACTIONS(1793), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1791), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1791), + [aux_sym_visual_host_key_token1] = ACTIONS(1791), + [aux_sym_xauth_location_token1] = ACTIONS(1791), }, [206] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1796), - [anon_sym_DQUOTE] = ACTIONS(1798), - [aux_sym_match_token1] = ACTIONS(1794), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1794), - [aux_sym_address_family_token1] = ACTIONS(1794), - [aux_sym_batch_mode_token1] = ACTIONS(1794), - [aux_sym_bind_address_token1] = ACTIONS(1794), - [aux_sym_bind_interface_token1] = ACTIONS(1794), - [aux_sym_canonical_domains_token1] = ACTIONS(1794), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1794), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1794), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1794), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1794), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1794), - [aux_sym_certificate_file_token1] = ACTIONS(1794), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1794), - [aux_sym_channel_timeout_token1] = ACTIONS(1794), - [aux_sym_check_host_ip_token1] = ACTIONS(1794), - [aux_sym_ciphers_token1] = ACTIONS(1794), - [aux_sym_cipher_token1] = ACTIONS(1796), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1794), - [aux_sym_compression_token1] = ACTIONS(1794), - [aux_sym_connection_attempts_token1] = ACTIONS(1794), - [aux_sym_connect_timeout_token1] = ACTIONS(1794), - [aux_sym_control_master_token1] = ACTIONS(1794), - [aux_sym_control_path_token1] = ACTIONS(1794), - [aux_sym_control_persist_token1] = ACTIONS(1794), - [aux_sym_dynamic_forward_token1] = ACTIONS(1794), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1794), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1794), - [aux_sym_escape_char_token1] = ACTIONS(1794), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1794), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1794), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1794), - [aux_sym_forward_agent_token1] = ACTIONS(1794), - [aux_sym_forward_x11_token1] = ACTIONS(1796), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1794), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1794), - [aux_sym_gateway_ports_token1] = ACTIONS(1794), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1794), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1794), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1794), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1794), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1794), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1794), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1794), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1794), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1794), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1794), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1794), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1794), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1794), - [aux_sym_host_key_alias_token1] = ACTIONS(1794), - [aux_sym_hostname_token1] = ACTIONS(1794), - [aux_sym_identities_only_token1] = ACTIONS(1794), - [aux_sym_identity_agent_token1] = ACTIONS(1794), - [aux_sym_identity_file_token1] = ACTIONS(1794), - [aux_sym_ignore_unknown_token1] = ACTIONS(1794), - [aux_sym_include_token1] = ACTIONS(1794), - [aux_sym_ip_qos_token1] = ACTIONS(1794), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1794), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1794), - [aux_sym_kex_algorithms_token1] = ACTIONS(1794), - [aux_sym_known_hosts_command_token1] = ACTIONS(1794), - [aux_sym_local_command_token1] = ACTIONS(1794), - [aux_sym_local_forward_token1] = ACTIONS(1794), - [aux_sym_log_level_token1] = ACTIONS(1794), - [aux_sym_log_verbose_token1] = ACTIONS(1794), - [aux_sym_macs_token1] = ACTIONS(1794), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1794), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1794), - [aux_sym_password_authentication_token1] = ACTIONS(1794), - [aux_sym_permit_local_command_token1] = ACTIONS(1794), - [aux_sym_permit_remote_open_token1] = ACTIONS(1794), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1794), - [aux_sym_port_token1] = ACTIONS(1794), - [aux_sym_preferred_authentications_token1] = ACTIONS(1794), - [aux_sym_protocol_token1] = ACTIONS(1794), - [aux_sym_proxy_command_token1] = ACTIONS(1794), - [aux_sym_proxy_jump_token1] = ACTIONS(1794), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1794), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1794), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1794), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1794), - [aux_sym_rekey_limit_token1] = ACTIONS(1794), - [aux_sym_remote_command_token1] = ACTIONS(1794), - [aux_sym_remote_forward_token1] = ACTIONS(1794), - [aux_sym_request_tty_token1] = ACTIONS(1794), - [aux_sym_required_rsa_size_token1] = ACTIONS(1794), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1794), - [aux_sym_security_key_provider_token1] = ACTIONS(1794), - [aux_sym_send_env_token1] = ACTIONS(1794), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1794), - [aux_sym_server_alive_interval_token1] = ACTIONS(1794), - [aux_sym_session_type_token1] = ACTIONS(1794), - [aux_sym_set_env_token1] = ACTIONS(1794), - [aux_sym_stdin_null_token1] = ACTIONS(1794), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1794), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1794), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1794), - [aux_sym_syslog_facility_token1] = ACTIONS(1794), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1794), - [aux_sym_keep_alive_token1] = ACTIONS(1794), - [aux_sym_tag_token1] = ACTIONS(1794), - [aux_sym_tunnel_token1] = ACTIONS(1796), - [aux_sym_tunnel_device_token1] = ACTIONS(1794), - [aux_sym_update_host_keys_token1] = ACTIONS(1794), - [aux_sym_use_keychain_token1] = ACTIONS(1794), - [aux_sym_use_roaming_token1] = ACTIONS(1794), - [aux_sym_user_token1] = ACTIONS(1796), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1794), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1794), - [aux_sym_visual_host_key_token1] = ACTIONS(1794), - [aux_sym_xauth_location_token1] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(1801), + [aux_sym_match_token1] = ACTIONS(1797), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1797), + [aux_sym_address_family_token1] = ACTIONS(1797), + [aux_sym_batch_mode_token1] = ACTIONS(1797), + [aux_sym_bind_address_token1] = ACTIONS(1797), + [aux_sym_bind_interface_token1] = ACTIONS(1797), + [aux_sym_canonical_domains_token1] = ACTIONS(1797), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1797), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1797), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1797), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1797), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1797), + [aux_sym_certificate_file_token1] = ACTIONS(1797), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1797), + [aux_sym_channel_timeout_token1] = ACTIONS(1797), + [aux_sym_check_host_ip_token1] = ACTIONS(1797), + [aux_sym_ciphers_token1] = ACTIONS(1797), + [aux_sym_cipher_token1] = ACTIONS(1799), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1797), + [aux_sym_compression_token1] = ACTIONS(1797), + [aux_sym_connection_attempts_token1] = ACTIONS(1797), + [aux_sym_connect_timeout_token1] = ACTIONS(1797), + [aux_sym_control_master_token1] = ACTIONS(1797), + [aux_sym_control_path_token1] = ACTIONS(1797), + [aux_sym_control_persist_token1] = ACTIONS(1797), + [aux_sym_dynamic_forward_token1] = ACTIONS(1797), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1797), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1797), + [aux_sym_escape_char_token1] = ACTIONS(1797), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1797), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1797), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1797), + [aux_sym_forward_agent_token1] = ACTIONS(1797), + [aux_sym_forward_x11_token1] = ACTIONS(1799), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1797), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1797), + [aux_sym_gateway_ports_token1] = ACTIONS(1797), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1797), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1797), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1797), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1797), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1797), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1797), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1797), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1797), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1797), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1797), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1797), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1797), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1797), + [aux_sym_host_key_alias_token1] = ACTIONS(1797), + [aux_sym_hostname_token1] = ACTIONS(1797), + [aux_sym_identities_only_token1] = ACTIONS(1797), + [aux_sym_identity_agent_token1] = ACTIONS(1797), + [aux_sym_identity_file_token1] = ACTIONS(1797), + [aux_sym_ignore_unknown_token1] = ACTIONS(1797), + [aux_sym_include_token1] = ACTIONS(1797), + [aux_sym_ip_qos_token1] = ACTIONS(1797), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1797), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1797), + [aux_sym_kex_algorithms_token1] = ACTIONS(1797), + [aux_sym_known_hosts_command_token1] = ACTIONS(1797), + [aux_sym_local_command_token1] = ACTIONS(1797), + [aux_sym_local_forward_token1] = ACTIONS(1797), + [aux_sym_log_level_token1] = ACTIONS(1797), + [aux_sym_log_verbose_token1] = ACTIONS(1797), + [aux_sym_macs_token1] = ACTIONS(1797), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1797), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1797), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1797), + [aux_sym_password_authentication_token1] = ACTIONS(1797), + [aux_sym_permit_local_command_token1] = ACTIONS(1797), + [aux_sym_permit_remote_open_token1] = ACTIONS(1797), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1797), + [aux_sym_port_token1] = ACTIONS(1797), + [aux_sym_preferred_authentications_token1] = ACTIONS(1797), + [aux_sym_protocol_token1] = ACTIONS(1797), + [aux_sym_proxy_command_token1] = ACTIONS(1797), + [aux_sym_proxy_jump_token1] = ACTIONS(1797), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1797), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1797), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1797), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1797), + [aux_sym_rekey_limit_token1] = ACTIONS(1797), + [aux_sym_remote_command_token1] = ACTIONS(1797), + [aux_sym_remote_forward_token1] = ACTIONS(1797), + [aux_sym_request_tty_token1] = ACTIONS(1797), + [aux_sym_required_rsa_size_token1] = ACTIONS(1797), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1797), + [aux_sym_security_key_provider_token1] = ACTIONS(1797), + [aux_sym_send_env_token1] = ACTIONS(1797), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1797), + [aux_sym_server_alive_interval_token1] = ACTIONS(1797), + [aux_sym_session_type_token1] = ACTIONS(1797), + [aux_sym_set_env_token1] = ACTIONS(1797), + [aux_sym_stdin_null_token1] = ACTIONS(1797), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1797), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1797), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1797), + [aux_sym_syslog_facility_token1] = ACTIONS(1797), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1797), + [aux_sym_keep_alive_token1] = ACTIONS(1797), + [aux_sym_tag_token1] = ACTIONS(1797), + [aux_sym_tunnel_token1] = ACTIONS(1799), + [aux_sym_tunnel_device_token1] = ACTIONS(1797), + [aux_sym_update_host_keys_token1] = ACTIONS(1797), + [aux_sym_use_keychain_token1] = ACTIONS(1797), + [aux_sym_use_roaming_token1] = ACTIONS(1797), + [aux_sym_user_token1] = ACTIONS(1799), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1797), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1797), + [aux_sym_visual_host_key_token1] = ACTIONS(1797), + [aux_sym_xauth_location_token1] = ACTIONS(1797), }, [207] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1802), - [anon_sym_DQUOTE] = ACTIONS(1804), - [aux_sym_match_token1] = ACTIONS(1800), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1800), - [aux_sym_address_family_token1] = ACTIONS(1800), - [aux_sym_batch_mode_token1] = ACTIONS(1800), - [aux_sym_bind_address_token1] = ACTIONS(1800), - [aux_sym_bind_interface_token1] = ACTIONS(1800), - [aux_sym_canonical_domains_token1] = ACTIONS(1800), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1800), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1800), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1800), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1800), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1800), - [aux_sym_certificate_file_token1] = ACTIONS(1800), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1800), - [aux_sym_channel_timeout_token1] = ACTIONS(1800), - [aux_sym_check_host_ip_token1] = ACTIONS(1800), - [aux_sym_ciphers_token1] = ACTIONS(1800), - [aux_sym_cipher_token1] = ACTIONS(1802), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1800), - [aux_sym_compression_token1] = ACTIONS(1800), - [aux_sym_connection_attempts_token1] = ACTIONS(1800), - [aux_sym_connect_timeout_token1] = ACTIONS(1800), - [aux_sym_control_master_token1] = ACTIONS(1800), - [aux_sym_control_path_token1] = ACTIONS(1800), - [aux_sym_control_persist_token1] = ACTIONS(1800), - [aux_sym_dynamic_forward_token1] = ACTIONS(1800), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1800), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1800), - [aux_sym_escape_char_token1] = ACTIONS(1800), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1800), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1800), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1800), - [aux_sym_forward_agent_token1] = ACTIONS(1800), - [aux_sym_forward_x11_token1] = ACTIONS(1802), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1800), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1800), - [aux_sym_gateway_ports_token1] = ACTIONS(1800), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1800), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1800), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1800), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1800), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1800), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1800), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1800), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1800), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1800), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1800), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1800), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1800), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1800), - [aux_sym_host_key_alias_token1] = ACTIONS(1800), - [aux_sym_hostname_token1] = ACTIONS(1800), - [aux_sym_identities_only_token1] = ACTIONS(1800), - [aux_sym_identity_agent_token1] = ACTIONS(1800), - [aux_sym_identity_file_token1] = ACTIONS(1800), - [aux_sym_ignore_unknown_token1] = ACTIONS(1800), - [aux_sym_include_token1] = ACTIONS(1800), - [aux_sym_ip_qos_token1] = ACTIONS(1800), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1800), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1800), - [aux_sym_kex_algorithms_token1] = ACTIONS(1800), - [aux_sym_known_hosts_command_token1] = ACTIONS(1800), - [aux_sym_local_command_token1] = ACTIONS(1800), - [aux_sym_local_forward_token1] = ACTIONS(1800), - [aux_sym_log_level_token1] = ACTIONS(1800), - [aux_sym_log_verbose_token1] = ACTIONS(1800), - [aux_sym_macs_token1] = ACTIONS(1800), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1800), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1800), - [aux_sym_password_authentication_token1] = ACTIONS(1800), - [aux_sym_permit_local_command_token1] = ACTIONS(1800), - [aux_sym_permit_remote_open_token1] = ACTIONS(1800), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1800), - [aux_sym_port_token1] = ACTIONS(1800), - [aux_sym_preferred_authentications_token1] = ACTIONS(1800), - [aux_sym_protocol_token1] = ACTIONS(1800), - [aux_sym_proxy_command_token1] = ACTIONS(1800), - [aux_sym_proxy_jump_token1] = ACTIONS(1800), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1800), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1800), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1800), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1800), - [aux_sym_rekey_limit_token1] = ACTIONS(1800), - [aux_sym_remote_command_token1] = ACTIONS(1800), - [aux_sym_remote_forward_token1] = ACTIONS(1800), - [aux_sym_request_tty_token1] = ACTIONS(1800), - [aux_sym_required_rsa_size_token1] = ACTIONS(1800), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1800), - [aux_sym_security_key_provider_token1] = ACTIONS(1800), - [aux_sym_send_env_token1] = ACTIONS(1800), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1800), - [aux_sym_server_alive_interval_token1] = ACTIONS(1800), - [aux_sym_session_type_token1] = ACTIONS(1800), - [aux_sym_set_env_token1] = ACTIONS(1800), - [aux_sym_stdin_null_token1] = ACTIONS(1800), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1800), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1800), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1800), - [aux_sym_syslog_facility_token1] = ACTIONS(1800), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1800), - [aux_sym_keep_alive_token1] = ACTIONS(1800), - [aux_sym_tag_token1] = ACTIONS(1800), - [aux_sym_tunnel_token1] = ACTIONS(1802), - [aux_sym_tunnel_device_token1] = ACTIONS(1800), - [aux_sym_update_host_keys_token1] = ACTIONS(1800), - [aux_sym_use_keychain_token1] = ACTIONS(1800), - [aux_sym_use_roaming_token1] = ACTIONS(1800), - [aux_sym_user_token1] = ACTIONS(1802), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1800), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1800), - [aux_sym_visual_host_key_token1] = ACTIONS(1800), - [aux_sym_xauth_location_token1] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1807), + [aux_sym_match_token1] = ACTIONS(1803), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1803), + [aux_sym_address_family_token1] = ACTIONS(1803), + [aux_sym_batch_mode_token1] = ACTIONS(1803), + [aux_sym_bind_address_token1] = ACTIONS(1803), + [aux_sym_bind_interface_token1] = ACTIONS(1803), + [aux_sym_canonical_domains_token1] = ACTIONS(1803), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1803), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1803), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1803), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1803), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1803), + [aux_sym_certificate_file_token1] = ACTIONS(1803), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1803), + [aux_sym_channel_timeout_token1] = ACTIONS(1803), + [aux_sym_check_host_ip_token1] = ACTIONS(1803), + [aux_sym_ciphers_token1] = ACTIONS(1803), + [aux_sym_cipher_token1] = ACTIONS(1805), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1803), + [aux_sym_compression_token1] = ACTIONS(1803), + [aux_sym_connection_attempts_token1] = ACTIONS(1803), + [aux_sym_connect_timeout_token1] = ACTIONS(1803), + [aux_sym_control_master_token1] = ACTIONS(1803), + [aux_sym_control_path_token1] = ACTIONS(1803), + [aux_sym_control_persist_token1] = ACTIONS(1803), + [aux_sym_dynamic_forward_token1] = ACTIONS(1803), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1803), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1803), + [aux_sym_escape_char_token1] = ACTIONS(1803), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1803), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1803), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1803), + [aux_sym_forward_agent_token1] = ACTIONS(1803), + [aux_sym_forward_x11_token1] = ACTIONS(1805), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1803), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1803), + [aux_sym_gateway_ports_token1] = ACTIONS(1803), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1803), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1803), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1803), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1803), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1803), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1803), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1803), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1803), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1803), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1803), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1803), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1803), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1803), + [aux_sym_host_key_alias_token1] = ACTIONS(1803), + [aux_sym_hostname_token1] = ACTIONS(1803), + [aux_sym_identities_only_token1] = ACTIONS(1803), + [aux_sym_identity_agent_token1] = ACTIONS(1803), + [aux_sym_identity_file_token1] = ACTIONS(1803), + [aux_sym_ignore_unknown_token1] = ACTIONS(1803), + [aux_sym_include_token1] = ACTIONS(1803), + [aux_sym_ip_qos_token1] = ACTIONS(1803), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1803), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1803), + [aux_sym_kex_algorithms_token1] = ACTIONS(1803), + [aux_sym_known_hosts_command_token1] = ACTIONS(1803), + [aux_sym_local_command_token1] = ACTIONS(1803), + [aux_sym_local_forward_token1] = ACTIONS(1803), + [aux_sym_log_level_token1] = ACTIONS(1803), + [aux_sym_log_verbose_token1] = ACTIONS(1803), + [aux_sym_macs_token1] = ACTIONS(1803), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1803), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1803), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1803), + [aux_sym_password_authentication_token1] = ACTIONS(1803), + [aux_sym_permit_local_command_token1] = ACTIONS(1803), + [aux_sym_permit_remote_open_token1] = ACTIONS(1803), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1803), + [aux_sym_port_token1] = ACTIONS(1803), + [aux_sym_preferred_authentications_token1] = ACTIONS(1803), + [aux_sym_protocol_token1] = ACTIONS(1803), + [aux_sym_proxy_command_token1] = ACTIONS(1803), + [aux_sym_proxy_jump_token1] = ACTIONS(1803), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1803), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1803), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1803), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1803), + [aux_sym_rekey_limit_token1] = ACTIONS(1803), + [aux_sym_remote_command_token1] = ACTIONS(1803), + [aux_sym_remote_forward_token1] = ACTIONS(1803), + [aux_sym_request_tty_token1] = ACTIONS(1803), + [aux_sym_required_rsa_size_token1] = ACTIONS(1803), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1803), + [aux_sym_security_key_provider_token1] = ACTIONS(1803), + [aux_sym_send_env_token1] = ACTIONS(1803), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1803), + [aux_sym_server_alive_interval_token1] = ACTIONS(1803), + [aux_sym_session_type_token1] = ACTIONS(1803), + [aux_sym_set_env_token1] = ACTIONS(1803), + [aux_sym_stdin_null_token1] = ACTIONS(1803), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1803), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1803), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1803), + [aux_sym_syslog_facility_token1] = ACTIONS(1803), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1803), + [aux_sym_keep_alive_token1] = ACTIONS(1803), + [aux_sym_tag_token1] = ACTIONS(1803), + [aux_sym_tunnel_token1] = ACTIONS(1805), + [aux_sym_tunnel_device_token1] = ACTIONS(1803), + [aux_sym_update_host_keys_token1] = ACTIONS(1803), + [aux_sym_use_keychain_token1] = ACTIONS(1803), + [aux_sym_use_roaming_token1] = ACTIONS(1803), + [aux_sym_user_token1] = ACTIONS(1805), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1803), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1803), + [aux_sym_visual_host_key_token1] = ACTIONS(1803), + [aux_sym_xauth_location_token1] = ACTIONS(1803), }, [208] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1808), - [anon_sym_DQUOTE] = ACTIONS(1810), - [aux_sym_match_token1] = ACTIONS(1806), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1806), - [aux_sym_address_family_token1] = ACTIONS(1806), - [aux_sym_batch_mode_token1] = ACTIONS(1806), - [aux_sym_bind_address_token1] = ACTIONS(1806), - [aux_sym_bind_interface_token1] = ACTIONS(1806), - [aux_sym_canonical_domains_token1] = ACTIONS(1806), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1806), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1806), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1806), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1806), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1806), - [aux_sym_certificate_file_token1] = ACTIONS(1806), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1806), - [aux_sym_channel_timeout_token1] = ACTIONS(1806), - [aux_sym_check_host_ip_token1] = ACTIONS(1806), - [aux_sym_ciphers_token1] = ACTIONS(1806), - [aux_sym_cipher_token1] = ACTIONS(1808), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1806), - [aux_sym_compression_token1] = ACTIONS(1806), - [aux_sym_connection_attempts_token1] = ACTIONS(1806), - [aux_sym_connect_timeout_token1] = ACTIONS(1806), - [aux_sym_control_master_token1] = ACTIONS(1806), - [aux_sym_control_path_token1] = ACTIONS(1806), - [aux_sym_control_persist_token1] = ACTIONS(1806), - [aux_sym_dynamic_forward_token1] = ACTIONS(1806), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1806), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1806), - [aux_sym_escape_char_token1] = ACTIONS(1806), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1806), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1806), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1806), - [aux_sym_forward_agent_token1] = ACTIONS(1806), - [aux_sym_forward_x11_token1] = ACTIONS(1808), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1806), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1806), - [aux_sym_gateway_ports_token1] = ACTIONS(1806), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1806), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1806), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1806), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1806), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1806), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1806), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1806), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1806), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1806), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1806), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1806), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1806), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1806), - [aux_sym_host_key_alias_token1] = ACTIONS(1806), - [aux_sym_hostname_token1] = ACTIONS(1806), - [aux_sym_identities_only_token1] = ACTIONS(1806), - [aux_sym_identity_agent_token1] = ACTIONS(1806), - [aux_sym_identity_file_token1] = ACTIONS(1806), - [aux_sym_ignore_unknown_token1] = ACTIONS(1806), - [aux_sym_include_token1] = ACTIONS(1806), - [aux_sym_ip_qos_token1] = ACTIONS(1806), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1806), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1806), - [aux_sym_kex_algorithms_token1] = ACTIONS(1806), - [aux_sym_known_hosts_command_token1] = ACTIONS(1806), - [aux_sym_local_command_token1] = ACTIONS(1806), - [aux_sym_local_forward_token1] = ACTIONS(1806), - [aux_sym_log_level_token1] = ACTIONS(1806), - [aux_sym_log_verbose_token1] = ACTIONS(1806), - [aux_sym_macs_token1] = ACTIONS(1806), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1806), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1806), - [aux_sym_password_authentication_token1] = ACTIONS(1806), - [aux_sym_permit_local_command_token1] = ACTIONS(1806), - [aux_sym_permit_remote_open_token1] = ACTIONS(1806), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1806), - [aux_sym_port_token1] = ACTIONS(1806), - [aux_sym_preferred_authentications_token1] = ACTIONS(1806), - [aux_sym_protocol_token1] = ACTIONS(1806), - [aux_sym_proxy_command_token1] = ACTIONS(1806), - [aux_sym_proxy_jump_token1] = ACTIONS(1806), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1806), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1806), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1806), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1806), - [aux_sym_rekey_limit_token1] = ACTIONS(1806), - [aux_sym_remote_command_token1] = ACTIONS(1806), - [aux_sym_remote_forward_token1] = ACTIONS(1806), - [aux_sym_request_tty_token1] = ACTIONS(1806), - [aux_sym_required_rsa_size_token1] = ACTIONS(1806), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1806), - [aux_sym_security_key_provider_token1] = ACTIONS(1806), - [aux_sym_send_env_token1] = ACTIONS(1806), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1806), - [aux_sym_server_alive_interval_token1] = ACTIONS(1806), - [aux_sym_session_type_token1] = ACTIONS(1806), - [aux_sym_set_env_token1] = ACTIONS(1806), - [aux_sym_stdin_null_token1] = ACTIONS(1806), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1806), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1806), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1806), - [aux_sym_syslog_facility_token1] = ACTIONS(1806), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1806), - [aux_sym_keep_alive_token1] = ACTIONS(1806), - [aux_sym_tag_token1] = ACTIONS(1806), - [aux_sym_tunnel_token1] = ACTIONS(1808), - [aux_sym_tunnel_device_token1] = ACTIONS(1806), - [aux_sym_update_host_keys_token1] = ACTIONS(1806), - [aux_sym_use_keychain_token1] = ACTIONS(1806), - [aux_sym_use_roaming_token1] = ACTIONS(1806), - [aux_sym_user_token1] = ACTIONS(1808), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1806), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1806), - [aux_sym_visual_host_key_token1] = ACTIONS(1806), - [aux_sym_xauth_location_token1] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1813), + [aux_sym_match_token1] = ACTIONS(1809), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1809), + [aux_sym_address_family_token1] = ACTIONS(1809), + [aux_sym_batch_mode_token1] = ACTIONS(1809), + [aux_sym_bind_address_token1] = ACTIONS(1809), + [aux_sym_bind_interface_token1] = ACTIONS(1809), + [aux_sym_canonical_domains_token1] = ACTIONS(1809), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1809), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1809), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1809), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1809), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1809), + [aux_sym_certificate_file_token1] = ACTIONS(1809), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1809), + [aux_sym_channel_timeout_token1] = ACTIONS(1809), + [aux_sym_check_host_ip_token1] = ACTIONS(1809), + [aux_sym_ciphers_token1] = ACTIONS(1809), + [aux_sym_cipher_token1] = ACTIONS(1811), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1809), + [aux_sym_compression_token1] = ACTIONS(1809), + [aux_sym_connection_attempts_token1] = ACTIONS(1809), + [aux_sym_connect_timeout_token1] = ACTIONS(1809), + [aux_sym_control_master_token1] = ACTIONS(1809), + [aux_sym_control_path_token1] = ACTIONS(1809), + [aux_sym_control_persist_token1] = ACTIONS(1809), + [aux_sym_dynamic_forward_token1] = ACTIONS(1809), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1809), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1809), + [aux_sym_escape_char_token1] = ACTIONS(1809), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1809), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1809), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1809), + [aux_sym_forward_agent_token1] = ACTIONS(1809), + [aux_sym_forward_x11_token1] = ACTIONS(1811), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1809), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1809), + [aux_sym_gateway_ports_token1] = ACTIONS(1809), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1809), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1809), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1809), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1809), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1809), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1809), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1809), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1809), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1809), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1809), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1809), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1809), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1809), + [aux_sym_host_key_alias_token1] = ACTIONS(1809), + [aux_sym_hostname_token1] = ACTIONS(1809), + [aux_sym_identities_only_token1] = ACTIONS(1809), + [aux_sym_identity_agent_token1] = ACTIONS(1809), + [aux_sym_identity_file_token1] = ACTIONS(1809), + [aux_sym_ignore_unknown_token1] = ACTIONS(1809), + [aux_sym_include_token1] = ACTIONS(1809), + [aux_sym_ip_qos_token1] = ACTIONS(1809), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1809), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1809), + [aux_sym_kex_algorithms_token1] = ACTIONS(1809), + [aux_sym_known_hosts_command_token1] = ACTIONS(1809), + [aux_sym_local_command_token1] = ACTIONS(1809), + [aux_sym_local_forward_token1] = ACTIONS(1809), + [aux_sym_log_level_token1] = ACTIONS(1809), + [aux_sym_log_verbose_token1] = ACTIONS(1809), + [aux_sym_macs_token1] = ACTIONS(1809), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1809), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1809), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1809), + [aux_sym_password_authentication_token1] = ACTIONS(1809), + [aux_sym_permit_local_command_token1] = ACTIONS(1809), + [aux_sym_permit_remote_open_token1] = ACTIONS(1809), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1809), + [aux_sym_port_token1] = ACTIONS(1809), + [aux_sym_preferred_authentications_token1] = ACTIONS(1809), + [aux_sym_protocol_token1] = ACTIONS(1809), + [aux_sym_proxy_command_token1] = ACTIONS(1809), + [aux_sym_proxy_jump_token1] = ACTIONS(1809), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1809), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1809), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1809), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1809), + [aux_sym_rekey_limit_token1] = ACTIONS(1809), + [aux_sym_remote_command_token1] = ACTIONS(1809), + [aux_sym_remote_forward_token1] = ACTIONS(1809), + [aux_sym_request_tty_token1] = ACTIONS(1809), + [aux_sym_required_rsa_size_token1] = ACTIONS(1809), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1809), + [aux_sym_security_key_provider_token1] = ACTIONS(1809), + [aux_sym_send_env_token1] = ACTIONS(1809), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1809), + [aux_sym_server_alive_interval_token1] = ACTIONS(1809), + [aux_sym_session_type_token1] = ACTIONS(1809), + [aux_sym_set_env_token1] = ACTIONS(1809), + [aux_sym_stdin_null_token1] = ACTIONS(1809), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1809), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1809), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1809), + [aux_sym_syslog_facility_token1] = ACTIONS(1809), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1809), + [aux_sym_keep_alive_token1] = ACTIONS(1809), + [aux_sym_tag_token1] = ACTIONS(1809), + [aux_sym_tunnel_token1] = ACTIONS(1811), + [aux_sym_tunnel_device_token1] = ACTIONS(1809), + [aux_sym_update_host_keys_token1] = ACTIONS(1809), + [aux_sym_use_keychain_token1] = ACTIONS(1809), + [aux_sym_use_roaming_token1] = ACTIONS(1809), + [aux_sym_user_token1] = ACTIONS(1811), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1809), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1809), + [aux_sym_visual_host_key_token1] = ACTIONS(1809), + [aux_sym_xauth_location_token1] = ACTIONS(1809), }, [209] = { - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1814), - [anon_sym_DQUOTE] = ACTIONS(1816), - [aux_sym_match_token1] = ACTIONS(1812), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1812), - [aux_sym_address_family_token1] = ACTIONS(1812), - [aux_sym_batch_mode_token1] = ACTIONS(1812), - [aux_sym_bind_address_token1] = ACTIONS(1812), - [aux_sym_bind_interface_token1] = ACTIONS(1812), - [aux_sym_canonical_domains_token1] = ACTIONS(1812), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1812), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1812), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1812), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1812), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1812), - [aux_sym_certificate_file_token1] = ACTIONS(1812), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1812), - [aux_sym_channel_timeout_token1] = ACTIONS(1812), - [aux_sym_check_host_ip_token1] = ACTIONS(1812), - [aux_sym_ciphers_token1] = ACTIONS(1812), - [aux_sym_cipher_token1] = ACTIONS(1814), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1812), - [aux_sym_compression_token1] = ACTIONS(1812), - [aux_sym_connection_attempts_token1] = ACTIONS(1812), - [aux_sym_connect_timeout_token1] = ACTIONS(1812), - [aux_sym_control_master_token1] = ACTIONS(1812), - [aux_sym_control_path_token1] = ACTIONS(1812), - [aux_sym_control_persist_token1] = ACTIONS(1812), - [aux_sym_dynamic_forward_token1] = ACTIONS(1812), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1812), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1812), - [aux_sym_escape_char_token1] = ACTIONS(1812), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1812), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1812), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1812), - [aux_sym_forward_agent_token1] = ACTIONS(1812), - [aux_sym_forward_x11_token1] = ACTIONS(1814), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1812), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1812), - [aux_sym_gateway_ports_token1] = ACTIONS(1812), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1812), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1812), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1812), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1812), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1812), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1812), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1812), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1812), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1812), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1812), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1812), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1812), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1812), - [aux_sym_host_key_alias_token1] = ACTIONS(1812), - [aux_sym_hostname_token1] = ACTIONS(1812), - [aux_sym_identities_only_token1] = ACTIONS(1812), - [aux_sym_identity_agent_token1] = ACTIONS(1812), - [aux_sym_identity_file_token1] = ACTIONS(1812), - [aux_sym_ignore_unknown_token1] = ACTIONS(1812), - [aux_sym_include_token1] = ACTIONS(1812), - [aux_sym_ip_qos_token1] = ACTIONS(1812), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1812), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1812), - [aux_sym_kex_algorithms_token1] = ACTIONS(1812), - [aux_sym_known_hosts_command_token1] = ACTIONS(1812), - [aux_sym_local_command_token1] = ACTIONS(1812), - [aux_sym_local_forward_token1] = ACTIONS(1812), - [aux_sym_log_level_token1] = ACTIONS(1812), - [aux_sym_log_verbose_token1] = ACTIONS(1812), - [aux_sym_macs_token1] = ACTIONS(1812), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1812), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1812), - [aux_sym_password_authentication_token1] = ACTIONS(1812), - [aux_sym_permit_local_command_token1] = ACTIONS(1812), - [aux_sym_permit_remote_open_token1] = ACTIONS(1812), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1812), - [aux_sym_port_token1] = ACTIONS(1812), - [aux_sym_preferred_authentications_token1] = ACTIONS(1812), - [aux_sym_protocol_token1] = ACTIONS(1812), - [aux_sym_proxy_command_token1] = ACTIONS(1812), - [aux_sym_proxy_jump_token1] = ACTIONS(1812), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1812), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1812), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1812), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1812), - [aux_sym_rekey_limit_token1] = ACTIONS(1812), - [aux_sym_remote_command_token1] = ACTIONS(1812), - [aux_sym_remote_forward_token1] = ACTIONS(1812), - [aux_sym_request_tty_token1] = ACTIONS(1812), - [aux_sym_required_rsa_size_token1] = ACTIONS(1812), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1812), - [aux_sym_security_key_provider_token1] = ACTIONS(1812), - [aux_sym_send_env_token1] = ACTIONS(1812), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1812), - [aux_sym_server_alive_interval_token1] = ACTIONS(1812), - [aux_sym_session_type_token1] = ACTIONS(1812), - [aux_sym_set_env_token1] = ACTIONS(1812), - [aux_sym_stdin_null_token1] = ACTIONS(1812), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1812), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1812), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1812), - [aux_sym_syslog_facility_token1] = ACTIONS(1812), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1812), - [aux_sym_keep_alive_token1] = ACTIONS(1812), - [aux_sym_tag_token1] = ACTIONS(1812), - [aux_sym_tunnel_token1] = ACTIONS(1814), - [aux_sym_tunnel_device_token1] = ACTIONS(1812), - [aux_sym_update_host_keys_token1] = ACTIONS(1812), - [aux_sym_use_keychain_token1] = ACTIONS(1812), - [aux_sym_use_roaming_token1] = ACTIONS(1812), - [aux_sym_user_token1] = ACTIONS(1814), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1812), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1812), - [aux_sym_visual_host_key_token1] = ACTIONS(1812), - [aux_sym_xauth_location_token1] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1815), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1819), + [aux_sym_match_token1] = ACTIONS(1815), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1815), + [aux_sym_address_family_token1] = ACTIONS(1815), + [aux_sym_batch_mode_token1] = ACTIONS(1815), + [aux_sym_bind_address_token1] = ACTIONS(1815), + [aux_sym_bind_interface_token1] = ACTIONS(1815), + [aux_sym_canonical_domains_token1] = ACTIONS(1815), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1815), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1815), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1815), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1815), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1815), + [aux_sym_certificate_file_token1] = ACTIONS(1815), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1815), + [aux_sym_channel_timeout_token1] = ACTIONS(1815), + [aux_sym_check_host_ip_token1] = ACTIONS(1815), + [aux_sym_ciphers_token1] = ACTIONS(1815), + [aux_sym_cipher_token1] = ACTIONS(1817), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1815), + [aux_sym_compression_token1] = ACTIONS(1815), + [aux_sym_connection_attempts_token1] = ACTIONS(1815), + [aux_sym_connect_timeout_token1] = ACTIONS(1815), + [aux_sym_control_master_token1] = ACTIONS(1815), + [aux_sym_control_path_token1] = ACTIONS(1815), + [aux_sym_control_persist_token1] = ACTIONS(1815), + [aux_sym_dynamic_forward_token1] = ACTIONS(1815), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1815), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1815), + [aux_sym_escape_char_token1] = ACTIONS(1815), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1815), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1815), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1815), + [aux_sym_forward_agent_token1] = ACTIONS(1815), + [aux_sym_forward_x11_token1] = ACTIONS(1817), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1815), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1815), + [aux_sym_gateway_ports_token1] = ACTIONS(1815), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1815), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1815), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1815), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1815), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1815), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1815), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1815), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1815), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1815), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1815), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1815), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1815), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1815), + [aux_sym_host_key_alias_token1] = ACTIONS(1815), + [aux_sym_hostname_token1] = ACTIONS(1815), + [aux_sym_identities_only_token1] = ACTIONS(1815), + [aux_sym_identity_agent_token1] = ACTIONS(1815), + [aux_sym_identity_file_token1] = ACTIONS(1815), + [aux_sym_ignore_unknown_token1] = ACTIONS(1815), + [aux_sym_include_token1] = ACTIONS(1815), + [aux_sym_ip_qos_token1] = ACTIONS(1815), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1815), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1815), + [aux_sym_kex_algorithms_token1] = ACTIONS(1815), + [aux_sym_known_hosts_command_token1] = ACTIONS(1815), + [aux_sym_local_command_token1] = ACTIONS(1815), + [aux_sym_local_forward_token1] = ACTIONS(1815), + [aux_sym_log_level_token1] = ACTIONS(1815), + [aux_sym_log_verbose_token1] = ACTIONS(1815), + [aux_sym_macs_token1] = ACTIONS(1815), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1815), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1815), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1815), + [aux_sym_password_authentication_token1] = ACTIONS(1815), + [aux_sym_permit_local_command_token1] = ACTIONS(1815), + [aux_sym_permit_remote_open_token1] = ACTIONS(1815), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1815), + [aux_sym_port_token1] = ACTIONS(1815), + [aux_sym_preferred_authentications_token1] = ACTIONS(1815), + [aux_sym_protocol_token1] = ACTIONS(1815), + [aux_sym_proxy_command_token1] = ACTIONS(1815), + [aux_sym_proxy_jump_token1] = ACTIONS(1815), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1815), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1815), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1815), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1815), + [aux_sym_rekey_limit_token1] = ACTIONS(1815), + [aux_sym_remote_command_token1] = ACTIONS(1815), + [aux_sym_remote_forward_token1] = ACTIONS(1815), + [aux_sym_request_tty_token1] = ACTIONS(1815), + [aux_sym_required_rsa_size_token1] = ACTIONS(1815), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1815), + [aux_sym_security_key_provider_token1] = ACTIONS(1815), + [aux_sym_send_env_token1] = ACTIONS(1815), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1815), + [aux_sym_server_alive_interval_token1] = ACTIONS(1815), + [aux_sym_session_type_token1] = ACTIONS(1815), + [aux_sym_set_env_token1] = ACTIONS(1815), + [aux_sym_stdin_null_token1] = ACTIONS(1815), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1815), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1815), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1815), + [aux_sym_syslog_facility_token1] = ACTIONS(1815), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1815), + [aux_sym_keep_alive_token1] = ACTIONS(1815), + [aux_sym_tag_token1] = ACTIONS(1815), + [aux_sym_tunnel_token1] = ACTIONS(1817), + [aux_sym_tunnel_device_token1] = ACTIONS(1815), + [aux_sym_update_host_keys_token1] = ACTIONS(1815), + [aux_sym_use_keychain_token1] = ACTIONS(1815), + [aux_sym_use_roaming_token1] = ACTIONS(1815), + [aux_sym_user_token1] = ACTIONS(1817), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1815), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1815), + [aux_sym_visual_host_key_token1] = ACTIONS(1815), + [aux_sym_xauth_location_token1] = ACTIONS(1815), }, [210] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1820), - [anon_sym_DQUOTE] = ACTIONS(1822), - [aux_sym_match_token1] = ACTIONS(1818), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1818), - [aux_sym_address_family_token1] = ACTIONS(1818), - [aux_sym_batch_mode_token1] = ACTIONS(1818), - [aux_sym_bind_address_token1] = ACTIONS(1818), - [aux_sym_bind_interface_token1] = ACTIONS(1818), - [aux_sym_canonical_domains_token1] = ACTIONS(1818), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1818), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1818), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1818), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1818), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1818), - [aux_sym_certificate_file_token1] = ACTIONS(1818), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1818), - [aux_sym_channel_timeout_token1] = ACTIONS(1818), - [aux_sym_check_host_ip_token1] = ACTIONS(1818), - [aux_sym_ciphers_token1] = ACTIONS(1818), - [aux_sym_cipher_token1] = ACTIONS(1820), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1818), - [aux_sym_compression_token1] = ACTIONS(1818), - [aux_sym_connection_attempts_token1] = ACTIONS(1818), - [aux_sym_connect_timeout_token1] = ACTIONS(1818), - [aux_sym_control_master_token1] = ACTIONS(1818), - [aux_sym_control_path_token1] = ACTIONS(1818), - [aux_sym_control_persist_token1] = ACTIONS(1818), - [aux_sym_dynamic_forward_token1] = ACTIONS(1818), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1818), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1818), - [aux_sym_escape_char_token1] = ACTIONS(1818), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1818), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1818), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1818), - [aux_sym_forward_agent_token1] = ACTIONS(1818), - [aux_sym_forward_x11_token1] = ACTIONS(1820), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1818), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1818), - [aux_sym_gateway_ports_token1] = ACTIONS(1818), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1818), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1818), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1818), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1818), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1818), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1818), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1818), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1818), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1818), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1818), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1818), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1818), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1818), - [aux_sym_host_key_alias_token1] = ACTIONS(1818), - [aux_sym_hostname_token1] = ACTIONS(1818), - [aux_sym_identities_only_token1] = ACTIONS(1818), - [aux_sym_identity_agent_token1] = ACTIONS(1818), - [aux_sym_identity_file_token1] = ACTIONS(1818), - [aux_sym_ignore_unknown_token1] = ACTIONS(1818), - [aux_sym_include_token1] = ACTIONS(1818), - [aux_sym_ip_qos_token1] = ACTIONS(1818), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1818), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1818), - [aux_sym_kex_algorithms_token1] = ACTIONS(1818), - [aux_sym_known_hosts_command_token1] = ACTIONS(1818), - [aux_sym_local_command_token1] = ACTIONS(1818), - [aux_sym_local_forward_token1] = ACTIONS(1818), - [aux_sym_log_level_token1] = ACTIONS(1818), - [aux_sym_log_verbose_token1] = ACTIONS(1818), - [aux_sym_macs_token1] = ACTIONS(1818), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1818), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1818), - [aux_sym_password_authentication_token1] = ACTIONS(1818), - [aux_sym_permit_local_command_token1] = ACTIONS(1818), - [aux_sym_permit_remote_open_token1] = ACTIONS(1818), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1818), - [aux_sym_port_token1] = ACTIONS(1818), - [aux_sym_preferred_authentications_token1] = ACTIONS(1818), - [aux_sym_protocol_token1] = ACTIONS(1818), - [aux_sym_proxy_command_token1] = ACTIONS(1818), - [aux_sym_proxy_jump_token1] = ACTIONS(1818), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1818), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1818), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1818), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1818), - [aux_sym_rekey_limit_token1] = ACTIONS(1818), - [aux_sym_remote_command_token1] = ACTIONS(1818), - [aux_sym_remote_forward_token1] = ACTIONS(1818), - [aux_sym_request_tty_token1] = ACTIONS(1818), - [aux_sym_required_rsa_size_token1] = ACTIONS(1818), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1818), - [aux_sym_security_key_provider_token1] = ACTIONS(1818), - [aux_sym_send_env_token1] = ACTIONS(1818), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1818), - [aux_sym_server_alive_interval_token1] = ACTIONS(1818), - [aux_sym_session_type_token1] = ACTIONS(1818), - [aux_sym_set_env_token1] = ACTIONS(1818), - [aux_sym_stdin_null_token1] = ACTIONS(1818), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1818), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1818), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1818), - [aux_sym_syslog_facility_token1] = ACTIONS(1818), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1818), - [aux_sym_keep_alive_token1] = ACTIONS(1818), - [aux_sym_tag_token1] = ACTIONS(1818), - [aux_sym_tunnel_token1] = ACTIONS(1820), - [aux_sym_tunnel_device_token1] = ACTIONS(1818), - [aux_sym_update_host_keys_token1] = ACTIONS(1818), - [aux_sym_use_keychain_token1] = ACTIONS(1818), - [aux_sym_use_roaming_token1] = ACTIONS(1818), - [aux_sym_user_token1] = ACTIONS(1820), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1818), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1818), - [aux_sym_visual_host_key_token1] = ACTIONS(1818), - [aux_sym_xauth_location_token1] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1825), + [aux_sym_match_token1] = ACTIONS(1821), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1821), + [aux_sym_address_family_token1] = ACTIONS(1821), + [aux_sym_batch_mode_token1] = ACTIONS(1821), + [aux_sym_bind_address_token1] = ACTIONS(1821), + [aux_sym_bind_interface_token1] = ACTIONS(1821), + [aux_sym_canonical_domains_token1] = ACTIONS(1821), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1821), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1821), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1821), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1821), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1821), + [aux_sym_certificate_file_token1] = ACTIONS(1821), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1821), + [aux_sym_channel_timeout_token1] = ACTIONS(1821), + [aux_sym_check_host_ip_token1] = ACTIONS(1821), + [aux_sym_ciphers_token1] = ACTIONS(1821), + [aux_sym_cipher_token1] = ACTIONS(1823), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1821), + [aux_sym_compression_token1] = ACTIONS(1821), + [aux_sym_connection_attempts_token1] = ACTIONS(1821), + [aux_sym_connect_timeout_token1] = ACTIONS(1821), + [aux_sym_control_master_token1] = ACTIONS(1821), + [aux_sym_control_path_token1] = ACTIONS(1821), + [aux_sym_control_persist_token1] = ACTIONS(1821), + [aux_sym_dynamic_forward_token1] = ACTIONS(1821), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1821), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1821), + [aux_sym_escape_char_token1] = ACTIONS(1821), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1821), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1821), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1821), + [aux_sym_forward_agent_token1] = ACTIONS(1821), + [aux_sym_forward_x11_token1] = ACTIONS(1823), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1821), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1821), + [aux_sym_gateway_ports_token1] = ACTIONS(1821), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1821), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1821), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1821), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1821), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1821), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1821), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1821), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1821), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1821), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1821), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1821), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1821), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1821), + [aux_sym_host_key_alias_token1] = ACTIONS(1821), + [aux_sym_hostname_token1] = ACTIONS(1821), + [aux_sym_identities_only_token1] = ACTIONS(1821), + [aux_sym_identity_agent_token1] = ACTIONS(1821), + [aux_sym_identity_file_token1] = ACTIONS(1821), + [aux_sym_ignore_unknown_token1] = ACTIONS(1821), + [aux_sym_include_token1] = ACTIONS(1821), + [aux_sym_ip_qos_token1] = ACTIONS(1821), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1821), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1821), + [aux_sym_kex_algorithms_token1] = ACTIONS(1821), + [aux_sym_known_hosts_command_token1] = ACTIONS(1821), + [aux_sym_local_command_token1] = ACTIONS(1821), + [aux_sym_local_forward_token1] = ACTIONS(1821), + [aux_sym_log_level_token1] = ACTIONS(1821), + [aux_sym_log_verbose_token1] = ACTIONS(1821), + [aux_sym_macs_token1] = ACTIONS(1821), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1821), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1821), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1821), + [aux_sym_password_authentication_token1] = ACTIONS(1821), + [aux_sym_permit_local_command_token1] = ACTIONS(1821), + [aux_sym_permit_remote_open_token1] = ACTIONS(1821), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1821), + [aux_sym_port_token1] = ACTIONS(1821), + [aux_sym_preferred_authentications_token1] = ACTIONS(1821), + [aux_sym_protocol_token1] = ACTIONS(1821), + [aux_sym_proxy_command_token1] = ACTIONS(1821), + [aux_sym_proxy_jump_token1] = ACTIONS(1821), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1821), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1821), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1821), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1821), + [aux_sym_rekey_limit_token1] = ACTIONS(1821), + [aux_sym_remote_command_token1] = ACTIONS(1821), + [aux_sym_remote_forward_token1] = ACTIONS(1821), + [aux_sym_request_tty_token1] = ACTIONS(1821), + [aux_sym_required_rsa_size_token1] = ACTIONS(1821), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1821), + [aux_sym_security_key_provider_token1] = ACTIONS(1821), + [aux_sym_send_env_token1] = ACTIONS(1821), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1821), + [aux_sym_server_alive_interval_token1] = ACTIONS(1821), + [aux_sym_session_type_token1] = ACTIONS(1821), + [aux_sym_set_env_token1] = ACTIONS(1821), + [aux_sym_stdin_null_token1] = ACTIONS(1821), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1821), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1821), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1821), + [aux_sym_syslog_facility_token1] = ACTIONS(1821), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1821), + [aux_sym_keep_alive_token1] = ACTIONS(1821), + [aux_sym_tag_token1] = ACTIONS(1821), + [aux_sym_tunnel_token1] = ACTIONS(1823), + [aux_sym_tunnel_device_token1] = ACTIONS(1821), + [aux_sym_update_host_keys_token1] = ACTIONS(1821), + [aux_sym_use_keychain_token1] = ACTIONS(1821), + [aux_sym_use_roaming_token1] = ACTIONS(1821), + [aux_sym_user_token1] = ACTIONS(1823), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1821), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1821), + [aux_sym_visual_host_key_token1] = ACTIONS(1821), + [aux_sym_xauth_location_token1] = ACTIONS(1821), }, [211] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1826), - [anon_sym_DQUOTE] = ACTIONS(1828), - [aux_sym_match_token1] = ACTIONS(1824), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1824), - [aux_sym_address_family_token1] = ACTIONS(1824), - [aux_sym_batch_mode_token1] = ACTIONS(1824), - [aux_sym_bind_address_token1] = ACTIONS(1824), - [aux_sym_bind_interface_token1] = ACTIONS(1824), - [aux_sym_canonical_domains_token1] = ACTIONS(1824), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1824), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1824), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1824), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1824), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1824), - [aux_sym_certificate_file_token1] = ACTIONS(1824), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1824), - [aux_sym_channel_timeout_token1] = ACTIONS(1824), - [aux_sym_check_host_ip_token1] = ACTIONS(1824), - [aux_sym_ciphers_token1] = ACTIONS(1824), - [aux_sym_cipher_token1] = ACTIONS(1826), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1824), - [aux_sym_compression_token1] = ACTIONS(1824), - [aux_sym_connection_attempts_token1] = ACTIONS(1824), - [aux_sym_connect_timeout_token1] = ACTIONS(1824), - [aux_sym_control_master_token1] = ACTIONS(1824), - [aux_sym_control_path_token1] = ACTIONS(1824), - [aux_sym_control_persist_token1] = ACTIONS(1824), - [aux_sym_dynamic_forward_token1] = ACTIONS(1824), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1824), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1824), - [aux_sym_escape_char_token1] = ACTIONS(1824), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1824), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1824), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1824), - [aux_sym_forward_agent_token1] = ACTIONS(1824), - [aux_sym_forward_x11_token1] = ACTIONS(1826), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1824), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1824), - [aux_sym_gateway_ports_token1] = ACTIONS(1824), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1824), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1824), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1824), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1824), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1824), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1824), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1824), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1824), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1824), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1824), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1824), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1824), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1824), - [aux_sym_host_key_alias_token1] = ACTIONS(1824), - [aux_sym_hostname_token1] = ACTIONS(1824), - [aux_sym_identities_only_token1] = ACTIONS(1824), - [aux_sym_identity_agent_token1] = ACTIONS(1824), - [aux_sym_identity_file_token1] = ACTIONS(1824), - [aux_sym_ignore_unknown_token1] = ACTIONS(1824), - [aux_sym_include_token1] = ACTIONS(1824), - [aux_sym_ip_qos_token1] = ACTIONS(1824), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1824), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1824), - [aux_sym_kex_algorithms_token1] = ACTIONS(1824), - [aux_sym_known_hosts_command_token1] = ACTIONS(1824), - [aux_sym_local_command_token1] = ACTIONS(1824), - [aux_sym_local_forward_token1] = ACTIONS(1824), - [aux_sym_log_level_token1] = ACTIONS(1824), - [aux_sym_log_verbose_token1] = ACTIONS(1824), - [aux_sym_macs_token1] = ACTIONS(1824), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1824), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1824), - [aux_sym_password_authentication_token1] = ACTIONS(1824), - [aux_sym_permit_local_command_token1] = ACTIONS(1824), - [aux_sym_permit_remote_open_token1] = ACTIONS(1824), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1824), - [aux_sym_port_token1] = ACTIONS(1824), - [aux_sym_preferred_authentications_token1] = ACTIONS(1824), - [aux_sym_protocol_token1] = ACTIONS(1824), - [aux_sym_proxy_command_token1] = ACTIONS(1824), - [aux_sym_proxy_jump_token1] = ACTIONS(1824), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1824), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1824), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1824), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1824), - [aux_sym_rekey_limit_token1] = ACTIONS(1824), - [aux_sym_remote_command_token1] = ACTIONS(1824), - [aux_sym_remote_forward_token1] = ACTIONS(1824), - [aux_sym_request_tty_token1] = ACTIONS(1824), - [aux_sym_required_rsa_size_token1] = ACTIONS(1824), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1824), - [aux_sym_security_key_provider_token1] = ACTIONS(1824), - [aux_sym_send_env_token1] = ACTIONS(1824), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1824), - [aux_sym_server_alive_interval_token1] = ACTIONS(1824), - [aux_sym_session_type_token1] = ACTIONS(1824), - [aux_sym_set_env_token1] = ACTIONS(1824), - [aux_sym_stdin_null_token1] = ACTIONS(1824), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1824), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1824), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1824), - [aux_sym_syslog_facility_token1] = ACTIONS(1824), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1824), - [aux_sym_keep_alive_token1] = ACTIONS(1824), - [aux_sym_tag_token1] = ACTIONS(1824), - [aux_sym_tunnel_token1] = ACTIONS(1826), - [aux_sym_tunnel_device_token1] = ACTIONS(1824), - [aux_sym_update_host_keys_token1] = ACTIONS(1824), - [aux_sym_use_keychain_token1] = ACTIONS(1824), - [aux_sym_use_roaming_token1] = ACTIONS(1824), - [aux_sym_user_token1] = ACTIONS(1826), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1824), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1824), - [aux_sym_visual_host_key_token1] = ACTIONS(1824), - [aux_sym_xauth_location_token1] = ACTIONS(1824), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(1831), + [aux_sym_match_token1] = ACTIONS(1827), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1827), + [aux_sym_address_family_token1] = ACTIONS(1827), + [aux_sym_batch_mode_token1] = ACTIONS(1827), + [aux_sym_bind_address_token1] = ACTIONS(1827), + [aux_sym_bind_interface_token1] = ACTIONS(1827), + [aux_sym_canonical_domains_token1] = ACTIONS(1827), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1827), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1827), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1827), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1827), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1827), + [aux_sym_certificate_file_token1] = ACTIONS(1827), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1827), + [aux_sym_channel_timeout_token1] = ACTIONS(1827), + [aux_sym_check_host_ip_token1] = ACTIONS(1827), + [aux_sym_ciphers_token1] = ACTIONS(1827), + [aux_sym_cipher_token1] = ACTIONS(1829), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1827), + [aux_sym_compression_token1] = ACTIONS(1827), + [aux_sym_connection_attempts_token1] = ACTIONS(1827), + [aux_sym_connect_timeout_token1] = ACTIONS(1827), + [aux_sym_control_master_token1] = ACTIONS(1827), + [aux_sym_control_path_token1] = ACTIONS(1827), + [aux_sym_control_persist_token1] = ACTIONS(1827), + [aux_sym_dynamic_forward_token1] = ACTIONS(1827), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1827), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1827), + [aux_sym_escape_char_token1] = ACTIONS(1827), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1827), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1827), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1827), + [aux_sym_forward_agent_token1] = ACTIONS(1827), + [aux_sym_forward_x11_token1] = ACTIONS(1829), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1827), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1827), + [aux_sym_gateway_ports_token1] = ACTIONS(1827), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1827), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1827), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1827), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1827), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1827), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1827), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1827), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1827), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1827), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1827), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1827), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1827), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1827), + [aux_sym_host_key_alias_token1] = ACTIONS(1827), + [aux_sym_hostname_token1] = ACTIONS(1827), + [aux_sym_identities_only_token1] = ACTIONS(1827), + [aux_sym_identity_agent_token1] = ACTIONS(1827), + [aux_sym_identity_file_token1] = ACTIONS(1827), + [aux_sym_ignore_unknown_token1] = ACTIONS(1827), + [aux_sym_include_token1] = ACTIONS(1827), + [aux_sym_ip_qos_token1] = ACTIONS(1827), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1827), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1827), + [aux_sym_kex_algorithms_token1] = ACTIONS(1827), + [aux_sym_known_hosts_command_token1] = ACTIONS(1827), + [aux_sym_local_command_token1] = ACTIONS(1827), + [aux_sym_local_forward_token1] = ACTIONS(1827), + [aux_sym_log_level_token1] = ACTIONS(1827), + [aux_sym_log_verbose_token1] = ACTIONS(1827), + [aux_sym_macs_token1] = ACTIONS(1827), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1827), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1827), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1827), + [aux_sym_password_authentication_token1] = ACTIONS(1827), + [aux_sym_permit_local_command_token1] = ACTIONS(1827), + [aux_sym_permit_remote_open_token1] = ACTIONS(1827), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1827), + [aux_sym_port_token1] = ACTIONS(1827), + [aux_sym_preferred_authentications_token1] = ACTIONS(1827), + [aux_sym_protocol_token1] = ACTIONS(1827), + [aux_sym_proxy_command_token1] = ACTIONS(1827), + [aux_sym_proxy_jump_token1] = ACTIONS(1827), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1827), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1827), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1827), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1827), + [aux_sym_rekey_limit_token1] = ACTIONS(1827), + [aux_sym_remote_command_token1] = ACTIONS(1827), + [aux_sym_remote_forward_token1] = ACTIONS(1827), + [aux_sym_request_tty_token1] = ACTIONS(1827), + [aux_sym_required_rsa_size_token1] = ACTIONS(1827), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1827), + [aux_sym_security_key_provider_token1] = ACTIONS(1827), + [aux_sym_send_env_token1] = ACTIONS(1827), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1827), + [aux_sym_server_alive_interval_token1] = ACTIONS(1827), + [aux_sym_session_type_token1] = ACTIONS(1827), + [aux_sym_set_env_token1] = ACTIONS(1827), + [aux_sym_stdin_null_token1] = ACTIONS(1827), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1827), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1827), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1827), + [aux_sym_syslog_facility_token1] = ACTIONS(1827), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1827), + [aux_sym_keep_alive_token1] = ACTIONS(1827), + [aux_sym_tag_token1] = ACTIONS(1827), + [aux_sym_tunnel_token1] = ACTIONS(1829), + [aux_sym_tunnel_device_token1] = ACTIONS(1827), + [aux_sym_update_host_keys_token1] = ACTIONS(1827), + [aux_sym_use_keychain_token1] = ACTIONS(1827), + [aux_sym_use_roaming_token1] = ACTIONS(1827), + [aux_sym_user_token1] = ACTIONS(1829), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1827), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1827), + [aux_sym_visual_host_key_token1] = ACTIONS(1827), + [aux_sym_xauth_location_token1] = ACTIONS(1827), }, [212] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1832), - [anon_sym_DQUOTE] = ACTIONS(1834), - [aux_sym_match_token1] = ACTIONS(1830), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1830), - [aux_sym_address_family_token1] = ACTIONS(1830), - [aux_sym_batch_mode_token1] = ACTIONS(1830), - [aux_sym_bind_address_token1] = ACTIONS(1830), - [aux_sym_bind_interface_token1] = ACTIONS(1830), - [aux_sym_canonical_domains_token1] = ACTIONS(1830), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1830), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1830), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1830), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1830), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1830), - [aux_sym_certificate_file_token1] = ACTIONS(1830), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1830), - [aux_sym_channel_timeout_token1] = ACTIONS(1830), - [aux_sym_check_host_ip_token1] = ACTIONS(1830), - [aux_sym_ciphers_token1] = ACTIONS(1830), - [aux_sym_cipher_token1] = ACTIONS(1832), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1830), - [aux_sym_compression_token1] = ACTIONS(1830), - [aux_sym_connection_attempts_token1] = ACTIONS(1830), - [aux_sym_connect_timeout_token1] = ACTIONS(1830), - [aux_sym_control_master_token1] = ACTIONS(1830), - [aux_sym_control_path_token1] = ACTIONS(1830), - [aux_sym_control_persist_token1] = ACTIONS(1830), - [aux_sym_dynamic_forward_token1] = ACTIONS(1830), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1830), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1830), - [aux_sym_escape_char_token1] = ACTIONS(1830), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1830), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1830), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1830), - [aux_sym_forward_agent_token1] = ACTIONS(1830), - [aux_sym_forward_x11_token1] = ACTIONS(1832), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1830), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1830), - [aux_sym_gateway_ports_token1] = ACTIONS(1830), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1830), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1830), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1830), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1830), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1830), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1830), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1830), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1830), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1830), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1830), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1830), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1830), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1830), - [aux_sym_host_key_alias_token1] = ACTIONS(1830), - [aux_sym_hostname_token1] = ACTIONS(1830), - [aux_sym_identities_only_token1] = ACTIONS(1830), - [aux_sym_identity_agent_token1] = ACTIONS(1830), - [aux_sym_identity_file_token1] = ACTIONS(1830), - [aux_sym_ignore_unknown_token1] = ACTIONS(1830), - [aux_sym_include_token1] = ACTIONS(1830), - [aux_sym_ip_qos_token1] = ACTIONS(1830), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1830), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1830), - [aux_sym_kex_algorithms_token1] = ACTIONS(1830), - [aux_sym_known_hosts_command_token1] = ACTIONS(1830), - [aux_sym_local_command_token1] = ACTIONS(1830), - [aux_sym_local_forward_token1] = ACTIONS(1830), - [aux_sym_log_level_token1] = ACTIONS(1830), - [aux_sym_log_verbose_token1] = ACTIONS(1830), - [aux_sym_macs_token1] = ACTIONS(1830), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1830), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1830), - [aux_sym_password_authentication_token1] = ACTIONS(1830), - [aux_sym_permit_local_command_token1] = ACTIONS(1830), - [aux_sym_permit_remote_open_token1] = ACTIONS(1830), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1830), - [aux_sym_port_token1] = ACTIONS(1830), - [aux_sym_preferred_authentications_token1] = ACTIONS(1830), - [aux_sym_protocol_token1] = ACTIONS(1830), - [aux_sym_proxy_command_token1] = ACTIONS(1830), - [aux_sym_proxy_jump_token1] = ACTIONS(1830), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1830), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1830), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1830), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1830), - [aux_sym_rekey_limit_token1] = ACTIONS(1830), - [aux_sym_remote_command_token1] = ACTIONS(1830), - [aux_sym_remote_forward_token1] = ACTIONS(1830), - [aux_sym_request_tty_token1] = ACTIONS(1830), - [aux_sym_required_rsa_size_token1] = ACTIONS(1830), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1830), - [aux_sym_security_key_provider_token1] = ACTIONS(1830), - [aux_sym_send_env_token1] = ACTIONS(1830), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1830), - [aux_sym_server_alive_interval_token1] = ACTIONS(1830), - [aux_sym_session_type_token1] = ACTIONS(1830), - [aux_sym_set_env_token1] = ACTIONS(1830), - [aux_sym_stdin_null_token1] = ACTIONS(1830), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1830), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1830), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1830), - [aux_sym_syslog_facility_token1] = ACTIONS(1830), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1830), - [aux_sym_keep_alive_token1] = ACTIONS(1830), - [aux_sym_tag_token1] = ACTIONS(1830), - [aux_sym_tunnel_token1] = ACTIONS(1832), - [aux_sym_tunnel_device_token1] = ACTIONS(1830), - [aux_sym_update_host_keys_token1] = ACTIONS(1830), - [aux_sym_use_keychain_token1] = ACTIONS(1830), - [aux_sym_use_roaming_token1] = ACTIONS(1830), - [aux_sym_user_token1] = ACTIONS(1832), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1830), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1830), - [aux_sym_visual_host_key_token1] = ACTIONS(1830), - [aux_sym_xauth_location_token1] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1837), + [aux_sym_match_token1] = ACTIONS(1833), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1833), + [aux_sym_address_family_token1] = ACTIONS(1833), + [aux_sym_batch_mode_token1] = ACTIONS(1833), + [aux_sym_bind_address_token1] = ACTIONS(1833), + [aux_sym_bind_interface_token1] = ACTIONS(1833), + [aux_sym_canonical_domains_token1] = ACTIONS(1833), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1833), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1833), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1833), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1833), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1833), + [aux_sym_certificate_file_token1] = ACTIONS(1833), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1833), + [aux_sym_channel_timeout_token1] = ACTIONS(1833), + [aux_sym_check_host_ip_token1] = ACTIONS(1833), + [aux_sym_ciphers_token1] = ACTIONS(1833), + [aux_sym_cipher_token1] = ACTIONS(1835), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1833), + [aux_sym_compression_token1] = ACTIONS(1833), + [aux_sym_connection_attempts_token1] = ACTIONS(1833), + [aux_sym_connect_timeout_token1] = ACTIONS(1833), + [aux_sym_control_master_token1] = ACTIONS(1833), + [aux_sym_control_path_token1] = ACTIONS(1833), + [aux_sym_control_persist_token1] = ACTIONS(1833), + [aux_sym_dynamic_forward_token1] = ACTIONS(1833), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1833), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1833), + [aux_sym_escape_char_token1] = ACTIONS(1833), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1833), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1833), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1833), + [aux_sym_forward_agent_token1] = ACTIONS(1833), + [aux_sym_forward_x11_token1] = ACTIONS(1835), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1833), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1833), + [aux_sym_gateway_ports_token1] = ACTIONS(1833), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1833), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1833), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1833), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1833), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1833), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1833), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1833), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1833), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1833), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1833), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1833), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1833), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1833), + [aux_sym_host_key_alias_token1] = ACTIONS(1833), + [aux_sym_hostname_token1] = ACTIONS(1833), + [aux_sym_identities_only_token1] = ACTIONS(1833), + [aux_sym_identity_agent_token1] = ACTIONS(1833), + [aux_sym_identity_file_token1] = ACTIONS(1833), + [aux_sym_ignore_unknown_token1] = ACTIONS(1833), + [aux_sym_include_token1] = ACTIONS(1833), + [aux_sym_ip_qos_token1] = ACTIONS(1833), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1833), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1833), + [aux_sym_kex_algorithms_token1] = ACTIONS(1833), + [aux_sym_known_hosts_command_token1] = ACTIONS(1833), + [aux_sym_local_command_token1] = ACTIONS(1833), + [aux_sym_local_forward_token1] = ACTIONS(1833), + [aux_sym_log_level_token1] = ACTIONS(1833), + [aux_sym_log_verbose_token1] = ACTIONS(1833), + [aux_sym_macs_token1] = ACTIONS(1833), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1833), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1833), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1833), + [aux_sym_password_authentication_token1] = ACTIONS(1833), + [aux_sym_permit_local_command_token1] = ACTIONS(1833), + [aux_sym_permit_remote_open_token1] = ACTIONS(1833), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1833), + [aux_sym_port_token1] = ACTIONS(1833), + [aux_sym_preferred_authentications_token1] = ACTIONS(1833), + [aux_sym_protocol_token1] = ACTIONS(1833), + [aux_sym_proxy_command_token1] = ACTIONS(1833), + [aux_sym_proxy_jump_token1] = ACTIONS(1833), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1833), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1833), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1833), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1833), + [aux_sym_rekey_limit_token1] = ACTIONS(1833), + [aux_sym_remote_command_token1] = ACTIONS(1833), + [aux_sym_remote_forward_token1] = ACTIONS(1833), + [aux_sym_request_tty_token1] = ACTIONS(1833), + [aux_sym_required_rsa_size_token1] = ACTIONS(1833), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1833), + [aux_sym_security_key_provider_token1] = ACTIONS(1833), + [aux_sym_send_env_token1] = ACTIONS(1833), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1833), + [aux_sym_server_alive_interval_token1] = ACTIONS(1833), + [aux_sym_session_type_token1] = ACTIONS(1833), + [aux_sym_set_env_token1] = ACTIONS(1833), + [aux_sym_stdin_null_token1] = ACTIONS(1833), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1833), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1833), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1833), + [aux_sym_syslog_facility_token1] = ACTIONS(1833), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1833), + [aux_sym_keep_alive_token1] = ACTIONS(1833), + [aux_sym_tag_token1] = ACTIONS(1833), + [aux_sym_tunnel_token1] = ACTIONS(1835), + [aux_sym_tunnel_device_token1] = ACTIONS(1833), + [aux_sym_update_host_keys_token1] = ACTIONS(1833), + [aux_sym_use_keychain_token1] = ACTIONS(1833), + [aux_sym_use_roaming_token1] = ACTIONS(1833), + [aux_sym_user_token1] = ACTIONS(1835), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1833), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1833), + [aux_sym_visual_host_key_token1] = ACTIONS(1833), + [aux_sym_xauth_location_token1] = ACTIONS(1833), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(1836), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1838), - [anon_sym_DQUOTE] = ACTIONS(1840), - [aux_sym_match_token1] = ACTIONS(1836), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1836), - [aux_sym_address_family_token1] = ACTIONS(1836), - [aux_sym_batch_mode_token1] = ACTIONS(1836), - [aux_sym_bind_address_token1] = ACTIONS(1836), - [aux_sym_bind_interface_token1] = ACTIONS(1836), - [aux_sym_canonical_domains_token1] = ACTIONS(1836), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1836), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1836), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1836), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1836), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1836), - [aux_sym_certificate_file_token1] = ACTIONS(1836), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1836), - [aux_sym_channel_timeout_token1] = ACTIONS(1836), - [aux_sym_check_host_ip_token1] = ACTIONS(1836), - [aux_sym_ciphers_token1] = ACTIONS(1836), - [aux_sym_cipher_token1] = ACTIONS(1838), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1836), - [aux_sym_compression_token1] = ACTIONS(1836), - [aux_sym_connection_attempts_token1] = ACTIONS(1836), - [aux_sym_connect_timeout_token1] = ACTIONS(1836), - [aux_sym_control_master_token1] = ACTIONS(1836), - [aux_sym_control_path_token1] = ACTIONS(1836), - [aux_sym_control_persist_token1] = ACTIONS(1836), - [aux_sym_dynamic_forward_token1] = ACTIONS(1836), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1836), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1836), - [aux_sym_escape_char_token1] = ACTIONS(1836), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1836), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1836), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1836), - [aux_sym_forward_agent_token1] = ACTIONS(1836), - [aux_sym_forward_x11_token1] = ACTIONS(1838), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1836), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1836), - [aux_sym_gateway_ports_token1] = ACTIONS(1836), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1836), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1836), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1836), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1836), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1836), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1836), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1836), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1836), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1836), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1836), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1836), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1836), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1836), - [aux_sym_host_key_alias_token1] = ACTIONS(1836), - [aux_sym_hostname_token1] = ACTIONS(1836), - [aux_sym_identities_only_token1] = ACTIONS(1836), - [aux_sym_identity_agent_token1] = ACTIONS(1836), - [aux_sym_identity_file_token1] = ACTIONS(1836), - [aux_sym_ignore_unknown_token1] = ACTIONS(1836), - [aux_sym_include_token1] = ACTIONS(1836), - [aux_sym_ip_qos_token1] = ACTIONS(1836), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1836), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1836), - [aux_sym_kex_algorithms_token1] = ACTIONS(1836), - [aux_sym_known_hosts_command_token1] = ACTIONS(1836), - [aux_sym_local_command_token1] = ACTIONS(1836), - [aux_sym_local_forward_token1] = ACTIONS(1836), - [aux_sym_log_level_token1] = ACTIONS(1836), - [aux_sym_log_verbose_token1] = ACTIONS(1836), - [aux_sym_macs_token1] = ACTIONS(1836), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1836), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1836), - [aux_sym_password_authentication_token1] = ACTIONS(1836), - [aux_sym_permit_local_command_token1] = ACTIONS(1836), - [aux_sym_permit_remote_open_token1] = ACTIONS(1836), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1836), - [aux_sym_port_token1] = ACTIONS(1836), - [aux_sym_preferred_authentications_token1] = ACTIONS(1836), - [aux_sym_protocol_token1] = ACTIONS(1836), - [aux_sym_proxy_command_token1] = ACTIONS(1836), - [aux_sym_proxy_jump_token1] = ACTIONS(1836), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1836), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1836), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1836), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1836), - [aux_sym_rekey_limit_token1] = ACTIONS(1836), - [aux_sym_remote_command_token1] = ACTIONS(1836), - [aux_sym_remote_forward_token1] = ACTIONS(1836), - [aux_sym_request_tty_token1] = ACTIONS(1836), - [aux_sym_required_rsa_size_token1] = ACTIONS(1836), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1836), - [aux_sym_security_key_provider_token1] = ACTIONS(1836), - [aux_sym_send_env_token1] = ACTIONS(1836), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1836), - [aux_sym_server_alive_interval_token1] = ACTIONS(1836), - [aux_sym_session_type_token1] = ACTIONS(1836), - [aux_sym_set_env_token1] = ACTIONS(1836), - [aux_sym_stdin_null_token1] = ACTIONS(1836), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1836), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1836), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1836), - [aux_sym_syslog_facility_token1] = ACTIONS(1836), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1836), - [aux_sym_keep_alive_token1] = ACTIONS(1836), - [aux_sym_tag_token1] = ACTIONS(1836), - [aux_sym_tunnel_token1] = ACTIONS(1838), - [aux_sym_tunnel_device_token1] = ACTIONS(1836), - [aux_sym_update_host_keys_token1] = ACTIONS(1836), - [aux_sym_use_keychain_token1] = ACTIONS(1836), - [aux_sym_use_roaming_token1] = ACTIONS(1836), - [aux_sym_user_token1] = ACTIONS(1838), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1836), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1836), - [aux_sym_visual_host_key_token1] = ACTIONS(1836), - [aux_sym_xauth_location_token1] = ACTIONS(1836), + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1843), + [aux_sym_match_token1] = ACTIONS(1839), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1839), + [aux_sym_address_family_token1] = ACTIONS(1839), + [aux_sym_batch_mode_token1] = ACTIONS(1839), + [aux_sym_bind_address_token1] = ACTIONS(1839), + [aux_sym_bind_interface_token1] = ACTIONS(1839), + [aux_sym_canonical_domains_token1] = ACTIONS(1839), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1839), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1839), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1839), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1839), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1839), + [aux_sym_certificate_file_token1] = ACTIONS(1839), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1839), + [aux_sym_channel_timeout_token1] = ACTIONS(1839), + [aux_sym_check_host_ip_token1] = ACTIONS(1839), + [aux_sym_ciphers_token1] = ACTIONS(1839), + [aux_sym_cipher_token1] = ACTIONS(1841), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1839), + [aux_sym_compression_token1] = ACTIONS(1839), + [aux_sym_connection_attempts_token1] = ACTIONS(1839), + [aux_sym_connect_timeout_token1] = ACTIONS(1839), + [aux_sym_control_master_token1] = ACTIONS(1839), + [aux_sym_control_path_token1] = ACTIONS(1839), + [aux_sym_control_persist_token1] = ACTIONS(1839), + [aux_sym_dynamic_forward_token1] = ACTIONS(1839), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1839), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1839), + [aux_sym_escape_char_token1] = ACTIONS(1839), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1839), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1839), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1839), + [aux_sym_forward_agent_token1] = ACTIONS(1839), + [aux_sym_forward_x11_token1] = ACTIONS(1841), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1839), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1839), + [aux_sym_gateway_ports_token1] = ACTIONS(1839), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1839), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1839), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1839), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1839), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1839), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1839), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1839), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1839), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1839), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1839), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1839), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1839), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1839), + [aux_sym_host_key_alias_token1] = ACTIONS(1839), + [aux_sym_hostname_token1] = ACTIONS(1839), + [aux_sym_identities_only_token1] = ACTIONS(1839), + [aux_sym_identity_agent_token1] = ACTIONS(1839), + [aux_sym_identity_file_token1] = ACTIONS(1839), + [aux_sym_ignore_unknown_token1] = ACTIONS(1839), + [aux_sym_include_token1] = ACTIONS(1839), + [aux_sym_ip_qos_token1] = ACTIONS(1839), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1839), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1839), + [aux_sym_kex_algorithms_token1] = ACTIONS(1839), + [aux_sym_known_hosts_command_token1] = ACTIONS(1839), + [aux_sym_local_command_token1] = ACTIONS(1839), + [aux_sym_local_forward_token1] = ACTIONS(1839), + [aux_sym_log_level_token1] = ACTIONS(1839), + [aux_sym_log_verbose_token1] = ACTIONS(1839), + [aux_sym_macs_token1] = ACTIONS(1839), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1839), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1839), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1839), + [aux_sym_password_authentication_token1] = ACTIONS(1839), + [aux_sym_permit_local_command_token1] = ACTIONS(1839), + [aux_sym_permit_remote_open_token1] = ACTIONS(1839), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1839), + [aux_sym_port_token1] = ACTIONS(1839), + [aux_sym_preferred_authentications_token1] = ACTIONS(1839), + [aux_sym_protocol_token1] = ACTIONS(1839), + [aux_sym_proxy_command_token1] = ACTIONS(1839), + [aux_sym_proxy_jump_token1] = ACTIONS(1839), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1839), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1839), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1839), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1839), + [aux_sym_rekey_limit_token1] = ACTIONS(1839), + [aux_sym_remote_command_token1] = ACTIONS(1839), + [aux_sym_remote_forward_token1] = ACTIONS(1839), + [aux_sym_request_tty_token1] = ACTIONS(1839), + [aux_sym_required_rsa_size_token1] = ACTIONS(1839), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1839), + [aux_sym_security_key_provider_token1] = ACTIONS(1839), + [aux_sym_send_env_token1] = ACTIONS(1839), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1839), + [aux_sym_server_alive_interval_token1] = ACTIONS(1839), + [aux_sym_session_type_token1] = ACTIONS(1839), + [aux_sym_set_env_token1] = ACTIONS(1839), + [aux_sym_stdin_null_token1] = ACTIONS(1839), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1839), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1839), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1839), + [aux_sym_syslog_facility_token1] = ACTIONS(1839), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1839), + [aux_sym_keep_alive_token1] = ACTIONS(1839), + [aux_sym_tag_token1] = ACTIONS(1839), + [aux_sym_tunnel_token1] = ACTIONS(1841), + [aux_sym_tunnel_device_token1] = ACTIONS(1839), + [aux_sym_update_host_keys_token1] = ACTIONS(1839), + [aux_sym_use_keychain_token1] = ACTIONS(1839), + [aux_sym_use_roaming_token1] = ACTIONS(1839), + [aux_sym_user_token1] = ACTIONS(1841), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1839), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1839), + [aux_sym_visual_host_key_token1] = ACTIONS(1839), + [aux_sym_xauth_location_token1] = ACTIONS(1839), }, [214] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1844), - [anon_sym_DQUOTE] = ACTIONS(1846), - [aux_sym_match_token1] = ACTIONS(1842), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1842), - [aux_sym_address_family_token1] = ACTIONS(1842), - [aux_sym_batch_mode_token1] = ACTIONS(1842), - [aux_sym_bind_address_token1] = ACTIONS(1842), - [aux_sym_bind_interface_token1] = ACTIONS(1842), - [aux_sym_canonical_domains_token1] = ACTIONS(1842), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1842), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1842), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1842), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1842), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1842), - [aux_sym_certificate_file_token1] = ACTIONS(1842), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1842), - [aux_sym_channel_timeout_token1] = ACTIONS(1842), - [aux_sym_check_host_ip_token1] = ACTIONS(1842), - [aux_sym_ciphers_token1] = ACTIONS(1842), - [aux_sym_cipher_token1] = ACTIONS(1844), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1842), - [aux_sym_compression_token1] = ACTIONS(1842), - [aux_sym_connection_attempts_token1] = ACTIONS(1842), - [aux_sym_connect_timeout_token1] = ACTIONS(1842), - [aux_sym_control_master_token1] = ACTIONS(1842), - [aux_sym_control_path_token1] = ACTIONS(1842), - [aux_sym_control_persist_token1] = ACTIONS(1842), - [aux_sym_dynamic_forward_token1] = ACTIONS(1842), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1842), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1842), - [aux_sym_escape_char_token1] = ACTIONS(1842), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1842), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1842), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1842), - [aux_sym_forward_agent_token1] = ACTIONS(1842), - [aux_sym_forward_x11_token1] = ACTIONS(1844), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1842), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1842), - [aux_sym_gateway_ports_token1] = ACTIONS(1842), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1842), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1842), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1842), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1842), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1842), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1842), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1842), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1842), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1842), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1842), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1842), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1842), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1842), - [aux_sym_host_key_alias_token1] = ACTIONS(1842), - [aux_sym_hostname_token1] = ACTIONS(1842), - [aux_sym_identities_only_token1] = ACTIONS(1842), - [aux_sym_identity_agent_token1] = ACTIONS(1842), - [aux_sym_identity_file_token1] = ACTIONS(1842), - [aux_sym_ignore_unknown_token1] = ACTIONS(1842), - [aux_sym_include_token1] = ACTIONS(1842), - [aux_sym_ip_qos_token1] = ACTIONS(1842), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1842), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1842), - [aux_sym_kex_algorithms_token1] = ACTIONS(1842), - [aux_sym_known_hosts_command_token1] = ACTIONS(1842), - [aux_sym_local_command_token1] = ACTIONS(1842), - [aux_sym_local_forward_token1] = ACTIONS(1842), - [aux_sym_log_level_token1] = ACTIONS(1842), - [aux_sym_log_verbose_token1] = ACTIONS(1842), - [aux_sym_macs_token1] = ACTIONS(1842), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1842), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1842), - [aux_sym_password_authentication_token1] = ACTIONS(1842), - [aux_sym_permit_local_command_token1] = ACTIONS(1842), - [aux_sym_permit_remote_open_token1] = ACTIONS(1842), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1842), - [aux_sym_port_token1] = ACTIONS(1842), - [aux_sym_preferred_authentications_token1] = ACTIONS(1842), - [aux_sym_protocol_token1] = ACTIONS(1842), - [aux_sym_proxy_command_token1] = ACTIONS(1842), - [aux_sym_proxy_jump_token1] = ACTIONS(1842), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1842), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1842), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1842), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1842), - [aux_sym_rekey_limit_token1] = ACTIONS(1842), - [aux_sym_remote_command_token1] = ACTIONS(1842), - [aux_sym_remote_forward_token1] = ACTIONS(1842), - [aux_sym_request_tty_token1] = ACTIONS(1842), - [aux_sym_required_rsa_size_token1] = ACTIONS(1842), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1842), - [aux_sym_security_key_provider_token1] = ACTIONS(1842), - [aux_sym_send_env_token1] = ACTIONS(1842), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1842), - [aux_sym_server_alive_interval_token1] = ACTIONS(1842), - [aux_sym_session_type_token1] = ACTIONS(1842), - [aux_sym_set_env_token1] = ACTIONS(1842), - [aux_sym_stdin_null_token1] = ACTIONS(1842), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1842), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1842), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1842), - [aux_sym_syslog_facility_token1] = ACTIONS(1842), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1842), - [aux_sym_keep_alive_token1] = ACTIONS(1842), - [aux_sym_tag_token1] = ACTIONS(1842), - [aux_sym_tunnel_token1] = ACTIONS(1844), - [aux_sym_tunnel_device_token1] = ACTIONS(1842), - [aux_sym_update_host_keys_token1] = ACTIONS(1842), - [aux_sym_use_keychain_token1] = ACTIONS(1842), - [aux_sym_use_roaming_token1] = ACTIONS(1842), - [aux_sym_user_token1] = ACTIONS(1844), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1842), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1842), - [aux_sym_visual_host_key_token1] = ACTIONS(1842), - [aux_sym_xauth_location_token1] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1849), + [aux_sym_match_token1] = ACTIONS(1845), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1845), + [aux_sym_address_family_token1] = ACTIONS(1845), + [aux_sym_batch_mode_token1] = ACTIONS(1845), + [aux_sym_bind_address_token1] = ACTIONS(1845), + [aux_sym_bind_interface_token1] = ACTIONS(1845), + [aux_sym_canonical_domains_token1] = ACTIONS(1845), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1845), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1845), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1845), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1845), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1845), + [aux_sym_certificate_file_token1] = ACTIONS(1845), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1845), + [aux_sym_channel_timeout_token1] = ACTIONS(1845), + [aux_sym_check_host_ip_token1] = ACTIONS(1845), + [aux_sym_ciphers_token1] = ACTIONS(1845), + [aux_sym_cipher_token1] = ACTIONS(1847), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1845), + [aux_sym_compression_token1] = ACTIONS(1845), + [aux_sym_connection_attempts_token1] = ACTIONS(1845), + [aux_sym_connect_timeout_token1] = ACTIONS(1845), + [aux_sym_control_master_token1] = ACTIONS(1845), + [aux_sym_control_path_token1] = ACTIONS(1845), + [aux_sym_control_persist_token1] = ACTIONS(1845), + [aux_sym_dynamic_forward_token1] = ACTIONS(1845), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1845), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1845), + [aux_sym_escape_char_token1] = ACTIONS(1845), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1845), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1845), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1845), + [aux_sym_forward_agent_token1] = ACTIONS(1845), + [aux_sym_forward_x11_token1] = ACTIONS(1847), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1845), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1845), + [aux_sym_gateway_ports_token1] = ACTIONS(1845), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1845), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1845), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1845), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1845), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1845), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1845), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1845), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1845), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1845), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1845), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1845), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1845), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1845), + [aux_sym_host_key_alias_token1] = ACTIONS(1845), + [aux_sym_hostname_token1] = ACTIONS(1845), + [aux_sym_identities_only_token1] = ACTIONS(1845), + [aux_sym_identity_agent_token1] = ACTIONS(1845), + [aux_sym_identity_file_token1] = ACTIONS(1845), + [aux_sym_ignore_unknown_token1] = ACTIONS(1845), + [aux_sym_include_token1] = ACTIONS(1845), + [aux_sym_ip_qos_token1] = ACTIONS(1845), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1845), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1845), + [aux_sym_kex_algorithms_token1] = ACTIONS(1845), + [aux_sym_known_hosts_command_token1] = ACTIONS(1845), + [aux_sym_local_command_token1] = ACTIONS(1845), + [aux_sym_local_forward_token1] = ACTIONS(1845), + [aux_sym_log_level_token1] = ACTIONS(1845), + [aux_sym_log_verbose_token1] = ACTIONS(1845), + [aux_sym_macs_token1] = ACTIONS(1845), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1845), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1845), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1845), + [aux_sym_password_authentication_token1] = ACTIONS(1845), + [aux_sym_permit_local_command_token1] = ACTIONS(1845), + [aux_sym_permit_remote_open_token1] = ACTIONS(1845), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1845), + [aux_sym_port_token1] = ACTIONS(1845), + [aux_sym_preferred_authentications_token1] = ACTIONS(1845), + [aux_sym_protocol_token1] = ACTIONS(1845), + [aux_sym_proxy_command_token1] = ACTIONS(1845), + [aux_sym_proxy_jump_token1] = ACTIONS(1845), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1845), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1845), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1845), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1845), + [aux_sym_rekey_limit_token1] = ACTIONS(1845), + [aux_sym_remote_command_token1] = ACTIONS(1845), + [aux_sym_remote_forward_token1] = ACTIONS(1845), + [aux_sym_request_tty_token1] = ACTIONS(1845), + [aux_sym_required_rsa_size_token1] = ACTIONS(1845), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1845), + [aux_sym_security_key_provider_token1] = ACTIONS(1845), + [aux_sym_send_env_token1] = ACTIONS(1845), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1845), + [aux_sym_server_alive_interval_token1] = ACTIONS(1845), + [aux_sym_session_type_token1] = ACTIONS(1845), + [aux_sym_set_env_token1] = ACTIONS(1845), + [aux_sym_stdin_null_token1] = ACTIONS(1845), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1845), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1845), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1845), + [aux_sym_syslog_facility_token1] = ACTIONS(1845), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1845), + [aux_sym_keep_alive_token1] = ACTIONS(1845), + [aux_sym_tag_token1] = ACTIONS(1845), + [aux_sym_tunnel_token1] = ACTIONS(1847), + [aux_sym_tunnel_device_token1] = ACTIONS(1845), + [aux_sym_update_host_keys_token1] = ACTIONS(1845), + [aux_sym_use_keychain_token1] = ACTIONS(1845), + [aux_sym_use_roaming_token1] = ACTIONS(1845), + [aux_sym_user_token1] = ACTIONS(1847), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1845), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1845), + [aux_sym_visual_host_key_token1] = ACTIONS(1845), + [aux_sym_xauth_location_token1] = ACTIONS(1845), }, [215] = { - [ts_builtin_sym_end] = ACTIONS(1848), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1850), - [anon_sym_DQUOTE] = ACTIONS(1848), - [aux_sym_match_token1] = ACTIONS(1848), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1848), - [aux_sym_address_family_token1] = ACTIONS(1848), - [aux_sym_batch_mode_token1] = ACTIONS(1848), - [aux_sym_bind_address_token1] = ACTIONS(1848), - [aux_sym_bind_interface_token1] = ACTIONS(1848), - [aux_sym_canonical_domains_token1] = ACTIONS(1848), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1848), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1848), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1848), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1848), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1848), - [aux_sym_certificate_file_token1] = ACTIONS(1848), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1848), - [aux_sym_channel_timeout_token1] = ACTIONS(1848), - [aux_sym_check_host_ip_token1] = ACTIONS(1848), - [aux_sym_ciphers_token1] = ACTIONS(1848), - [aux_sym_cipher_token1] = ACTIONS(1850), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1848), - [aux_sym_compression_token1] = ACTIONS(1848), - [aux_sym_connection_attempts_token1] = ACTIONS(1848), - [aux_sym_connect_timeout_token1] = ACTIONS(1848), - [aux_sym_control_master_token1] = ACTIONS(1848), - [aux_sym_control_path_token1] = ACTIONS(1848), - [aux_sym_control_persist_token1] = ACTIONS(1848), - [aux_sym_dynamic_forward_token1] = ACTIONS(1848), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1848), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1848), - [aux_sym_escape_char_token1] = ACTIONS(1848), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1848), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1848), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1848), - [aux_sym_forward_agent_token1] = ACTIONS(1848), - [aux_sym_forward_x11_token1] = ACTIONS(1850), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1848), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1848), - [aux_sym_gateway_ports_token1] = ACTIONS(1848), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1848), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1848), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1848), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1848), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1848), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1848), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1848), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1848), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1848), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1848), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1848), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1848), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1848), - [aux_sym_host_key_alias_token1] = ACTIONS(1848), - [aux_sym_hostname_token1] = ACTIONS(1848), - [aux_sym_identities_only_token1] = ACTIONS(1848), - [aux_sym_identity_agent_token1] = ACTIONS(1848), - [aux_sym_identity_file_token1] = ACTIONS(1848), - [aux_sym_ignore_unknown_token1] = ACTIONS(1848), - [aux_sym_include_token1] = ACTIONS(1848), - [aux_sym_ip_qos_token1] = ACTIONS(1848), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1848), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1848), - [aux_sym_kex_algorithms_token1] = ACTIONS(1848), - [aux_sym_known_hosts_command_token1] = ACTIONS(1848), - [aux_sym_local_command_token1] = ACTIONS(1848), - [aux_sym_local_forward_token1] = ACTIONS(1848), - [aux_sym_log_level_token1] = ACTIONS(1848), - [aux_sym_log_verbose_token1] = ACTIONS(1848), - [aux_sym_macs_token1] = ACTIONS(1848), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1848), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1848), - [aux_sym_password_authentication_token1] = ACTIONS(1848), - [aux_sym_permit_local_command_token1] = ACTIONS(1848), - [aux_sym_permit_remote_open_token1] = ACTIONS(1848), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1848), - [aux_sym_port_token1] = ACTIONS(1848), - [aux_sym_preferred_authentications_token1] = ACTIONS(1848), - [aux_sym_protocol_token1] = ACTIONS(1848), - [aux_sym_proxy_command_token1] = ACTIONS(1848), - [aux_sym_proxy_jump_token1] = ACTIONS(1848), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1848), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1848), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1848), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1848), - [aux_sym_rekey_limit_token1] = ACTIONS(1848), - [aux_sym_remote_command_token1] = ACTIONS(1848), - [aux_sym_remote_forward_token1] = ACTIONS(1848), - [aux_sym_request_tty_token1] = ACTIONS(1848), - [aux_sym_required_rsa_size_token1] = ACTIONS(1848), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1848), - [aux_sym_security_key_provider_token1] = ACTIONS(1848), - [aux_sym_send_env_token1] = ACTIONS(1848), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1848), - [aux_sym_server_alive_interval_token1] = ACTIONS(1848), - [aux_sym_session_type_token1] = ACTIONS(1848), - [aux_sym_set_env_token1] = ACTIONS(1848), - [aux_sym_stdin_null_token1] = ACTIONS(1848), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1848), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1848), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1848), - [aux_sym_syslog_facility_token1] = ACTIONS(1848), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1848), - [aux_sym_keep_alive_token1] = ACTIONS(1848), - [aux_sym_tag_token1] = ACTIONS(1848), - [aux_sym_tunnel_token1] = ACTIONS(1850), - [aux_sym_tunnel_device_token1] = ACTIONS(1848), - [aux_sym_update_host_keys_token1] = ACTIONS(1848), - [aux_sym_use_keychain_token1] = ACTIONS(1848), - [aux_sym_use_roaming_token1] = ACTIONS(1848), - [aux_sym_user_token1] = ACTIONS(1850), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1848), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1848), - [aux_sym_visual_host_key_token1] = ACTIONS(1848), - [aux_sym_xauth_location_token1] = ACTIONS(1848), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1855), + [aux_sym_match_token1] = ACTIONS(1851), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1851), + [aux_sym_address_family_token1] = ACTIONS(1851), + [aux_sym_batch_mode_token1] = ACTIONS(1851), + [aux_sym_bind_address_token1] = ACTIONS(1851), + [aux_sym_bind_interface_token1] = ACTIONS(1851), + [aux_sym_canonical_domains_token1] = ACTIONS(1851), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1851), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1851), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1851), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1851), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1851), + [aux_sym_certificate_file_token1] = ACTIONS(1851), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1851), + [aux_sym_channel_timeout_token1] = ACTIONS(1851), + [aux_sym_check_host_ip_token1] = ACTIONS(1851), + [aux_sym_ciphers_token1] = ACTIONS(1851), + [aux_sym_cipher_token1] = ACTIONS(1853), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1851), + [aux_sym_compression_token1] = ACTIONS(1851), + [aux_sym_connection_attempts_token1] = ACTIONS(1851), + [aux_sym_connect_timeout_token1] = ACTIONS(1851), + [aux_sym_control_master_token1] = ACTIONS(1851), + [aux_sym_control_path_token1] = ACTIONS(1851), + [aux_sym_control_persist_token1] = ACTIONS(1851), + [aux_sym_dynamic_forward_token1] = ACTIONS(1851), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1851), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1851), + [aux_sym_escape_char_token1] = ACTIONS(1851), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1851), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1851), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1851), + [aux_sym_forward_agent_token1] = ACTIONS(1851), + [aux_sym_forward_x11_token1] = ACTIONS(1853), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1851), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1851), + [aux_sym_gateway_ports_token1] = ACTIONS(1851), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1851), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1851), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1851), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1851), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1851), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1851), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1851), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1851), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1851), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1851), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1851), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1851), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1851), + [aux_sym_host_key_alias_token1] = ACTIONS(1851), + [aux_sym_hostname_token1] = ACTIONS(1851), + [aux_sym_identities_only_token1] = ACTIONS(1851), + [aux_sym_identity_agent_token1] = ACTIONS(1851), + [aux_sym_identity_file_token1] = ACTIONS(1851), + [aux_sym_ignore_unknown_token1] = ACTIONS(1851), + [aux_sym_include_token1] = ACTIONS(1851), + [aux_sym_ip_qos_token1] = ACTIONS(1851), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1851), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1851), + [aux_sym_kex_algorithms_token1] = ACTIONS(1851), + [aux_sym_known_hosts_command_token1] = ACTIONS(1851), + [aux_sym_local_command_token1] = ACTIONS(1851), + [aux_sym_local_forward_token1] = ACTIONS(1851), + [aux_sym_log_level_token1] = ACTIONS(1851), + [aux_sym_log_verbose_token1] = ACTIONS(1851), + [aux_sym_macs_token1] = ACTIONS(1851), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1851), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1851), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1851), + [aux_sym_password_authentication_token1] = ACTIONS(1851), + [aux_sym_permit_local_command_token1] = ACTIONS(1851), + [aux_sym_permit_remote_open_token1] = ACTIONS(1851), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1851), + [aux_sym_port_token1] = ACTIONS(1851), + [aux_sym_preferred_authentications_token1] = ACTIONS(1851), + [aux_sym_protocol_token1] = ACTIONS(1851), + [aux_sym_proxy_command_token1] = ACTIONS(1851), + [aux_sym_proxy_jump_token1] = ACTIONS(1851), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1851), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1851), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1851), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1851), + [aux_sym_rekey_limit_token1] = ACTIONS(1851), + [aux_sym_remote_command_token1] = ACTIONS(1851), + [aux_sym_remote_forward_token1] = ACTIONS(1851), + [aux_sym_request_tty_token1] = ACTIONS(1851), + [aux_sym_required_rsa_size_token1] = ACTIONS(1851), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1851), + [aux_sym_security_key_provider_token1] = ACTIONS(1851), + [aux_sym_send_env_token1] = ACTIONS(1851), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1851), + [aux_sym_server_alive_interval_token1] = ACTIONS(1851), + [aux_sym_session_type_token1] = ACTIONS(1851), + [aux_sym_set_env_token1] = ACTIONS(1851), + [aux_sym_stdin_null_token1] = ACTIONS(1851), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1851), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1851), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1851), + [aux_sym_syslog_facility_token1] = ACTIONS(1851), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1851), + [aux_sym_keep_alive_token1] = ACTIONS(1851), + [aux_sym_tag_token1] = ACTIONS(1851), + [aux_sym_tunnel_token1] = ACTIONS(1853), + [aux_sym_tunnel_device_token1] = ACTIONS(1851), + [aux_sym_update_host_keys_token1] = ACTIONS(1851), + [aux_sym_use_keychain_token1] = ACTIONS(1851), + [aux_sym_use_roaming_token1] = ACTIONS(1851), + [aux_sym_user_token1] = ACTIONS(1853), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1851), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1851), + [aux_sym_visual_host_key_token1] = ACTIONS(1851), + [aux_sym_xauth_location_token1] = ACTIONS(1851), }, [216] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1854), - [anon_sym_DQUOTE] = ACTIONS(1856), - [aux_sym_match_token1] = ACTIONS(1852), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1852), - [aux_sym_address_family_token1] = ACTIONS(1852), - [aux_sym_batch_mode_token1] = ACTIONS(1852), - [aux_sym_bind_address_token1] = ACTIONS(1852), - [aux_sym_bind_interface_token1] = ACTIONS(1852), - [aux_sym_canonical_domains_token1] = ACTIONS(1852), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1852), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1852), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1852), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1852), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1852), - [aux_sym_certificate_file_token1] = ACTIONS(1852), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1852), - [aux_sym_channel_timeout_token1] = ACTIONS(1852), - [aux_sym_check_host_ip_token1] = ACTIONS(1852), - [aux_sym_ciphers_token1] = ACTIONS(1852), - [aux_sym_cipher_token1] = ACTIONS(1854), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1852), - [aux_sym_compression_token1] = ACTIONS(1852), - [aux_sym_connection_attempts_token1] = ACTIONS(1852), - [aux_sym_connect_timeout_token1] = ACTIONS(1852), - [aux_sym_control_master_token1] = ACTIONS(1852), - [aux_sym_control_path_token1] = ACTIONS(1852), - [aux_sym_control_persist_token1] = ACTIONS(1852), - [aux_sym_dynamic_forward_token1] = ACTIONS(1852), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1852), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1852), - [aux_sym_escape_char_token1] = ACTIONS(1852), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1852), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1852), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1852), - [aux_sym_forward_agent_token1] = ACTIONS(1852), - [aux_sym_forward_x11_token1] = ACTIONS(1854), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1852), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1852), - [aux_sym_gateway_ports_token1] = ACTIONS(1852), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1852), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1852), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1852), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1852), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1852), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1852), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1852), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1852), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1852), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1852), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1852), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1852), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1852), - [aux_sym_host_key_alias_token1] = ACTIONS(1852), - [aux_sym_hostname_token1] = ACTIONS(1852), - [aux_sym_identities_only_token1] = ACTIONS(1852), - [aux_sym_identity_agent_token1] = ACTIONS(1852), - [aux_sym_identity_file_token1] = ACTIONS(1852), - [aux_sym_ignore_unknown_token1] = ACTIONS(1852), - [aux_sym_include_token1] = ACTIONS(1852), - [aux_sym_ip_qos_token1] = ACTIONS(1852), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1852), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1852), - [aux_sym_kex_algorithms_token1] = ACTIONS(1852), - [aux_sym_known_hosts_command_token1] = ACTIONS(1852), - [aux_sym_local_command_token1] = ACTIONS(1852), - [aux_sym_local_forward_token1] = ACTIONS(1852), - [aux_sym_log_level_token1] = ACTIONS(1852), - [aux_sym_log_verbose_token1] = ACTIONS(1852), - [aux_sym_macs_token1] = ACTIONS(1852), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1852), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1852), - [aux_sym_password_authentication_token1] = ACTIONS(1852), - [aux_sym_permit_local_command_token1] = ACTIONS(1852), - [aux_sym_permit_remote_open_token1] = ACTIONS(1852), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1852), - [aux_sym_port_token1] = ACTIONS(1852), - [aux_sym_preferred_authentications_token1] = ACTIONS(1852), - [aux_sym_protocol_token1] = ACTIONS(1852), - [aux_sym_proxy_command_token1] = ACTIONS(1852), - [aux_sym_proxy_jump_token1] = ACTIONS(1852), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1852), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1852), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1852), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1852), - [aux_sym_rekey_limit_token1] = ACTIONS(1852), - [aux_sym_remote_command_token1] = ACTIONS(1852), - [aux_sym_remote_forward_token1] = ACTIONS(1852), - [aux_sym_request_tty_token1] = ACTIONS(1852), - [aux_sym_required_rsa_size_token1] = ACTIONS(1852), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1852), - [aux_sym_security_key_provider_token1] = ACTIONS(1852), - [aux_sym_send_env_token1] = ACTIONS(1852), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1852), - [aux_sym_server_alive_interval_token1] = ACTIONS(1852), - [aux_sym_session_type_token1] = ACTIONS(1852), - [aux_sym_set_env_token1] = ACTIONS(1852), - [aux_sym_stdin_null_token1] = ACTIONS(1852), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1852), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1852), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1852), - [aux_sym_syslog_facility_token1] = ACTIONS(1852), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1852), - [aux_sym_keep_alive_token1] = ACTIONS(1852), - [aux_sym_tag_token1] = ACTIONS(1852), - [aux_sym_tunnel_token1] = ACTIONS(1854), - [aux_sym_tunnel_device_token1] = ACTIONS(1852), - [aux_sym_update_host_keys_token1] = ACTIONS(1852), - [aux_sym_use_keychain_token1] = ACTIONS(1852), - [aux_sym_use_roaming_token1] = ACTIONS(1852), - [aux_sym_user_token1] = ACTIONS(1854), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1852), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1852), - [aux_sym_visual_host_key_token1] = ACTIONS(1852), - [aux_sym_xauth_location_token1] = ACTIONS(1852), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1861), + [aux_sym_match_token1] = ACTIONS(1857), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1857), + [aux_sym_address_family_token1] = ACTIONS(1857), + [aux_sym_batch_mode_token1] = ACTIONS(1857), + [aux_sym_bind_address_token1] = ACTIONS(1857), + [aux_sym_bind_interface_token1] = ACTIONS(1857), + [aux_sym_canonical_domains_token1] = ACTIONS(1857), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1857), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1857), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1857), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1857), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1857), + [aux_sym_certificate_file_token1] = ACTIONS(1857), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1857), + [aux_sym_channel_timeout_token1] = ACTIONS(1857), + [aux_sym_check_host_ip_token1] = ACTIONS(1857), + [aux_sym_ciphers_token1] = ACTIONS(1857), + [aux_sym_cipher_token1] = ACTIONS(1859), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1857), + [aux_sym_compression_token1] = ACTIONS(1857), + [aux_sym_connection_attempts_token1] = ACTIONS(1857), + [aux_sym_connect_timeout_token1] = ACTIONS(1857), + [aux_sym_control_master_token1] = ACTIONS(1857), + [aux_sym_control_path_token1] = ACTIONS(1857), + [aux_sym_control_persist_token1] = ACTIONS(1857), + [aux_sym_dynamic_forward_token1] = ACTIONS(1857), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1857), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1857), + [aux_sym_escape_char_token1] = ACTIONS(1857), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1857), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1857), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1857), + [aux_sym_forward_agent_token1] = ACTIONS(1857), + [aux_sym_forward_x11_token1] = ACTIONS(1859), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1857), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1857), + [aux_sym_gateway_ports_token1] = ACTIONS(1857), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1857), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1857), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1857), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1857), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1857), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1857), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1857), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1857), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1857), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1857), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1857), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1857), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1857), + [aux_sym_host_key_alias_token1] = ACTIONS(1857), + [aux_sym_hostname_token1] = ACTIONS(1857), + [aux_sym_identities_only_token1] = ACTIONS(1857), + [aux_sym_identity_agent_token1] = ACTIONS(1857), + [aux_sym_identity_file_token1] = ACTIONS(1857), + [aux_sym_ignore_unknown_token1] = ACTIONS(1857), + [aux_sym_include_token1] = ACTIONS(1857), + [aux_sym_ip_qos_token1] = ACTIONS(1857), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1857), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1857), + [aux_sym_kex_algorithms_token1] = ACTIONS(1857), + [aux_sym_known_hosts_command_token1] = ACTIONS(1857), + [aux_sym_local_command_token1] = ACTIONS(1857), + [aux_sym_local_forward_token1] = ACTIONS(1857), + [aux_sym_log_level_token1] = ACTIONS(1857), + [aux_sym_log_verbose_token1] = ACTIONS(1857), + [aux_sym_macs_token1] = ACTIONS(1857), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1857), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1857), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1857), + [aux_sym_password_authentication_token1] = ACTIONS(1857), + [aux_sym_permit_local_command_token1] = ACTIONS(1857), + [aux_sym_permit_remote_open_token1] = ACTIONS(1857), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1857), + [aux_sym_port_token1] = ACTIONS(1857), + [aux_sym_preferred_authentications_token1] = ACTIONS(1857), + [aux_sym_protocol_token1] = ACTIONS(1857), + [aux_sym_proxy_command_token1] = ACTIONS(1857), + [aux_sym_proxy_jump_token1] = ACTIONS(1857), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1857), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1857), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1857), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1857), + [aux_sym_rekey_limit_token1] = ACTIONS(1857), + [aux_sym_remote_command_token1] = ACTIONS(1857), + [aux_sym_remote_forward_token1] = ACTIONS(1857), + [aux_sym_request_tty_token1] = ACTIONS(1857), + [aux_sym_required_rsa_size_token1] = ACTIONS(1857), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1857), + [aux_sym_security_key_provider_token1] = ACTIONS(1857), + [aux_sym_send_env_token1] = ACTIONS(1857), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1857), + [aux_sym_server_alive_interval_token1] = ACTIONS(1857), + [aux_sym_session_type_token1] = ACTIONS(1857), + [aux_sym_set_env_token1] = ACTIONS(1857), + [aux_sym_stdin_null_token1] = ACTIONS(1857), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1857), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1857), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1857), + [aux_sym_syslog_facility_token1] = ACTIONS(1857), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1857), + [aux_sym_keep_alive_token1] = ACTIONS(1857), + [aux_sym_tag_token1] = ACTIONS(1857), + [aux_sym_tunnel_token1] = ACTIONS(1859), + [aux_sym_tunnel_device_token1] = ACTIONS(1857), + [aux_sym_update_host_keys_token1] = ACTIONS(1857), + [aux_sym_use_keychain_token1] = ACTIONS(1857), + [aux_sym_use_roaming_token1] = ACTIONS(1857), + [aux_sym_user_token1] = ACTIONS(1859), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1857), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1857), + [aux_sym_visual_host_key_token1] = ACTIONS(1857), + [aux_sym_xauth_location_token1] = ACTIONS(1857), }, [217] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1860), - [anon_sym_DQUOTE] = ACTIONS(1862), - [aux_sym_match_token1] = ACTIONS(1858), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1858), - [aux_sym_address_family_token1] = ACTIONS(1858), - [aux_sym_batch_mode_token1] = ACTIONS(1858), - [aux_sym_bind_address_token1] = ACTIONS(1858), - [aux_sym_bind_interface_token1] = ACTIONS(1858), - [aux_sym_canonical_domains_token1] = ACTIONS(1858), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1858), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1858), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1858), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1858), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1858), - [aux_sym_certificate_file_token1] = ACTIONS(1858), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1858), - [aux_sym_channel_timeout_token1] = ACTIONS(1858), - [aux_sym_check_host_ip_token1] = ACTIONS(1858), - [aux_sym_ciphers_token1] = ACTIONS(1858), - [aux_sym_cipher_token1] = ACTIONS(1860), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1858), - [aux_sym_compression_token1] = ACTIONS(1858), - [aux_sym_connection_attempts_token1] = ACTIONS(1858), - [aux_sym_connect_timeout_token1] = ACTIONS(1858), - [aux_sym_control_master_token1] = ACTIONS(1858), - [aux_sym_control_path_token1] = ACTIONS(1858), - [aux_sym_control_persist_token1] = ACTIONS(1858), - [aux_sym_dynamic_forward_token1] = ACTIONS(1858), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1858), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1858), - [aux_sym_escape_char_token1] = ACTIONS(1858), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1858), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1858), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1858), - [aux_sym_forward_agent_token1] = ACTIONS(1858), - [aux_sym_forward_x11_token1] = ACTIONS(1860), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1858), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1858), - [aux_sym_gateway_ports_token1] = ACTIONS(1858), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1858), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1858), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1858), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1858), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1858), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1858), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1858), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1858), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1858), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1858), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1858), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1858), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1858), - [aux_sym_host_key_alias_token1] = ACTIONS(1858), - [aux_sym_hostname_token1] = ACTIONS(1858), - [aux_sym_identities_only_token1] = ACTIONS(1858), - [aux_sym_identity_agent_token1] = ACTIONS(1858), - [aux_sym_identity_file_token1] = ACTIONS(1858), - [aux_sym_ignore_unknown_token1] = ACTIONS(1858), - [aux_sym_include_token1] = ACTIONS(1858), - [aux_sym_ip_qos_token1] = ACTIONS(1858), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1858), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1858), - [aux_sym_kex_algorithms_token1] = ACTIONS(1858), - [aux_sym_known_hosts_command_token1] = ACTIONS(1858), - [aux_sym_local_command_token1] = ACTIONS(1858), - [aux_sym_local_forward_token1] = ACTIONS(1858), - [aux_sym_log_level_token1] = ACTIONS(1858), - [aux_sym_log_verbose_token1] = ACTIONS(1858), - [aux_sym_macs_token1] = ACTIONS(1858), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1858), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1858), - [aux_sym_password_authentication_token1] = ACTIONS(1858), - [aux_sym_permit_local_command_token1] = ACTIONS(1858), - [aux_sym_permit_remote_open_token1] = ACTIONS(1858), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1858), - [aux_sym_port_token1] = ACTIONS(1858), - [aux_sym_preferred_authentications_token1] = ACTIONS(1858), - [aux_sym_protocol_token1] = ACTIONS(1858), - [aux_sym_proxy_command_token1] = ACTIONS(1858), - [aux_sym_proxy_jump_token1] = ACTIONS(1858), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1858), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1858), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1858), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1858), - [aux_sym_rekey_limit_token1] = ACTIONS(1858), - [aux_sym_remote_command_token1] = ACTIONS(1858), - [aux_sym_remote_forward_token1] = ACTIONS(1858), - [aux_sym_request_tty_token1] = ACTIONS(1858), - [aux_sym_required_rsa_size_token1] = ACTIONS(1858), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1858), - [aux_sym_security_key_provider_token1] = ACTIONS(1858), - [aux_sym_send_env_token1] = ACTIONS(1858), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1858), - [aux_sym_server_alive_interval_token1] = ACTIONS(1858), - [aux_sym_session_type_token1] = ACTIONS(1858), - [aux_sym_set_env_token1] = ACTIONS(1858), - [aux_sym_stdin_null_token1] = ACTIONS(1858), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1858), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1858), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1858), - [aux_sym_syslog_facility_token1] = ACTIONS(1858), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1858), - [aux_sym_keep_alive_token1] = ACTIONS(1858), - [aux_sym_tag_token1] = ACTIONS(1858), - [aux_sym_tunnel_token1] = ACTIONS(1860), - [aux_sym_tunnel_device_token1] = ACTIONS(1858), - [aux_sym_update_host_keys_token1] = ACTIONS(1858), - [aux_sym_use_keychain_token1] = ACTIONS(1858), - [aux_sym_use_roaming_token1] = ACTIONS(1858), - [aux_sym_user_token1] = ACTIONS(1860), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1858), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1858), - [aux_sym_visual_host_key_token1] = ACTIONS(1858), - [aux_sym_xauth_location_token1] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1867), + [aux_sym_match_token1] = ACTIONS(1863), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1863), + [aux_sym_address_family_token1] = ACTIONS(1863), + [aux_sym_batch_mode_token1] = ACTIONS(1863), + [aux_sym_bind_address_token1] = ACTIONS(1863), + [aux_sym_bind_interface_token1] = ACTIONS(1863), + [aux_sym_canonical_domains_token1] = ACTIONS(1863), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1863), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1863), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1863), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1863), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1863), + [aux_sym_certificate_file_token1] = ACTIONS(1863), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1863), + [aux_sym_channel_timeout_token1] = ACTIONS(1863), + [aux_sym_check_host_ip_token1] = ACTIONS(1863), + [aux_sym_ciphers_token1] = ACTIONS(1863), + [aux_sym_cipher_token1] = ACTIONS(1865), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1863), + [aux_sym_compression_token1] = ACTIONS(1863), + [aux_sym_connection_attempts_token1] = ACTIONS(1863), + [aux_sym_connect_timeout_token1] = ACTIONS(1863), + [aux_sym_control_master_token1] = ACTIONS(1863), + [aux_sym_control_path_token1] = ACTIONS(1863), + [aux_sym_control_persist_token1] = ACTIONS(1863), + [aux_sym_dynamic_forward_token1] = ACTIONS(1863), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1863), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1863), + [aux_sym_escape_char_token1] = ACTIONS(1863), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1863), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1863), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1863), + [aux_sym_forward_agent_token1] = ACTIONS(1863), + [aux_sym_forward_x11_token1] = ACTIONS(1865), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1863), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1863), + [aux_sym_gateway_ports_token1] = ACTIONS(1863), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1863), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1863), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1863), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1863), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1863), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1863), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1863), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1863), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1863), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1863), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1863), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1863), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1863), + [aux_sym_host_key_alias_token1] = ACTIONS(1863), + [aux_sym_hostname_token1] = ACTIONS(1863), + [aux_sym_identities_only_token1] = ACTIONS(1863), + [aux_sym_identity_agent_token1] = ACTIONS(1863), + [aux_sym_identity_file_token1] = ACTIONS(1863), + [aux_sym_ignore_unknown_token1] = ACTIONS(1863), + [aux_sym_include_token1] = ACTIONS(1863), + [aux_sym_ip_qos_token1] = ACTIONS(1863), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1863), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1863), + [aux_sym_kex_algorithms_token1] = ACTIONS(1863), + [aux_sym_known_hosts_command_token1] = ACTIONS(1863), + [aux_sym_local_command_token1] = ACTIONS(1863), + [aux_sym_local_forward_token1] = ACTIONS(1863), + [aux_sym_log_level_token1] = ACTIONS(1863), + [aux_sym_log_verbose_token1] = ACTIONS(1863), + [aux_sym_macs_token1] = ACTIONS(1863), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1863), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1863), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1863), + [aux_sym_password_authentication_token1] = ACTIONS(1863), + [aux_sym_permit_local_command_token1] = ACTIONS(1863), + [aux_sym_permit_remote_open_token1] = ACTIONS(1863), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1863), + [aux_sym_port_token1] = ACTIONS(1863), + [aux_sym_preferred_authentications_token1] = ACTIONS(1863), + [aux_sym_protocol_token1] = ACTIONS(1863), + [aux_sym_proxy_command_token1] = ACTIONS(1863), + [aux_sym_proxy_jump_token1] = ACTIONS(1863), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1863), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1863), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1863), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1863), + [aux_sym_rekey_limit_token1] = ACTIONS(1863), + [aux_sym_remote_command_token1] = ACTIONS(1863), + [aux_sym_remote_forward_token1] = ACTIONS(1863), + [aux_sym_request_tty_token1] = ACTIONS(1863), + [aux_sym_required_rsa_size_token1] = ACTIONS(1863), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1863), + [aux_sym_security_key_provider_token1] = ACTIONS(1863), + [aux_sym_send_env_token1] = ACTIONS(1863), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1863), + [aux_sym_server_alive_interval_token1] = ACTIONS(1863), + [aux_sym_session_type_token1] = ACTIONS(1863), + [aux_sym_set_env_token1] = ACTIONS(1863), + [aux_sym_stdin_null_token1] = ACTIONS(1863), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1863), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1863), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1863), + [aux_sym_syslog_facility_token1] = ACTIONS(1863), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1863), + [aux_sym_keep_alive_token1] = ACTIONS(1863), + [aux_sym_tag_token1] = ACTIONS(1863), + [aux_sym_tunnel_token1] = ACTIONS(1865), + [aux_sym_tunnel_device_token1] = ACTIONS(1863), + [aux_sym_update_host_keys_token1] = ACTIONS(1863), + [aux_sym_use_keychain_token1] = ACTIONS(1863), + [aux_sym_use_roaming_token1] = ACTIONS(1863), + [aux_sym_user_token1] = ACTIONS(1865), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1863), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1863), + [aux_sym_visual_host_key_token1] = ACTIONS(1863), + [aux_sym_xauth_location_token1] = ACTIONS(1863), }, [218] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1866), - [anon_sym_DQUOTE] = ACTIONS(1868), - [aux_sym_match_token1] = ACTIONS(1864), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1864), - [aux_sym_address_family_token1] = ACTIONS(1864), - [aux_sym_batch_mode_token1] = ACTIONS(1864), - [aux_sym_bind_address_token1] = ACTIONS(1864), - [aux_sym_bind_interface_token1] = ACTIONS(1864), - [aux_sym_canonical_domains_token1] = ACTIONS(1864), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1864), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1864), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1864), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1864), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1864), - [aux_sym_certificate_file_token1] = ACTIONS(1864), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1864), - [aux_sym_channel_timeout_token1] = ACTIONS(1864), - [aux_sym_check_host_ip_token1] = ACTIONS(1864), - [aux_sym_ciphers_token1] = ACTIONS(1864), - [aux_sym_cipher_token1] = ACTIONS(1866), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1864), - [aux_sym_compression_token1] = ACTIONS(1864), - [aux_sym_connection_attempts_token1] = ACTIONS(1864), - [aux_sym_connect_timeout_token1] = ACTIONS(1864), - [aux_sym_control_master_token1] = ACTIONS(1864), - [aux_sym_control_path_token1] = ACTIONS(1864), - [aux_sym_control_persist_token1] = ACTIONS(1864), - [aux_sym_dynamic_forward_token1] = ACTIONS(1864), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1864), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1864), - [aux_sym_escape_char_token1] = ACTIONS(1864), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1864), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1864), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1864), - [aux_sym_forward_agent_token1] = ACTIONS(1864), - [aux_sym_forward_x11_token1] = ACTIONS(1866), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1864), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1864), - [aux_sym_gateway_ports_token1] = ACTIONS(1864), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1864), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1864), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1864), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1864), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1864), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1864), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1864), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1864), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1864), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1864), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1864), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1864), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1864), - [aux_sym_host_key_alias_token1] = ACTIONS(1864), - [aux_sym_hostname_token1] = ACTIONS(1864), - [aux_sym_identities_only_token1] = ACTIONS(1864), - [aux_sym_identity_agent_token1] = ACTIONS(1864), - [aux_sym_identity_file_token1] = ACTIONS(1864), - [aux_sym_ignore_unknown_token1] = ACTIONS(1864), - [aux_sym_include_token1] = ACTIONS(1864), - [aux_sym_ip_qos_token1] = ACTIONS(1864), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1864), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1864), - [aux_sym_kex_algorithms_token1] = ACTIONS(1864), - [aux_sym_known_hosts_command_token1] = ACTIONS(1864), - [aux_sym_local_command_token1] = ACTIONS(1864), - [aux_sym_local_forward_token1] = ACTIONS(1864), - [aux_sym_log_level_token1] = ACTIONS(1864), - [aux_sym_log_verbose_token1] = ACTIONS(1864), - [aux_sym_macs_token1] = ACTIONS(1864), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1864), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1864), - [aux_sym_password_authentication_token1] = ACTIONS(1864), - [aux_sym_permit_local_command_token1] = ACTIONS(1864), - [aux_sym_permit_remote_open_token1] = ACTIONS(1864), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1864), - [aux_sym_port_token1] = ACTIONS(1864), - [aux_sym_preferred_authentications_token1] = ACTIONS(1864), - [aux_sym_protocol_token1] = ACTIONS(1864), - [aux_sym_proxy_command_token1] = ACTIONS(1864), - [aux_sym_proxy_jump_token1] = ACTIONS(1864), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1864), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1864), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1864), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1864), - [aux_sym_rekey_limit_token1] = ACTIONS(1864), - [aux_sym_remote_command_token1] = ACTIONS(1864), - [aux_sym_remote_forward_token1] = ACTIONS(1864), - [aux_sym_request_tty_token1] = ACTIONS(1864), - [aux_sym_required_rsa_size_token1] = ACTIONS(1864), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1864), - [aux_sym_security_key_provider_token1] = ACTIONS(1864), - [aux_sym_send_env_token1] = ACTIONS(1864), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1864), - [aux_sym_server_alive_interval_token1] = ACTIONS(1864), - [aux_sym_session_type_token1] = ACTIONS(1864), - [aux_sym_set_env_token1] = ACTIONS(1864), - [aux_sym_stdin_null_token1] = ACTIONS(1864), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1864), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1864), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1864), - [aux_sym_syslog_facility_token1] = ACTIONS(1864), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1864), - [aux_sym_keep_alive_token1] = ACTIONS(1864), - [aux_sym_tag_token1] = ACTIONS(1864), - [aux_sym_tunnel_token1] = ACTIONS(1866), - [aux_sym_tunnel_device_token1] = ACTIONS(1864), - [aux_sym_update_host_keys_token1] = ACTIONS(1864), - [aux_sym_use_keychain_token1] = ACTIONS(1864), - [aux_sym_use_roaming_token1] = ACTIONS(1864), - [aux_sym_user_token1] = ACTIONS(1866), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1864), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1864), - [aux_sym_visual_host_key_token1] = ACTIONS(1864), - [aux_sym_xauth_location_token1] = ACTIONS(1864), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1873), + [aux_sym_match_token1] = ACTIONS(1869), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1869), + [aux_sym_address_family_token1] = ACTIONS(1869), + [aux_sym_batch_mode_token1] = ACTIONS(1869), + [aux_sym_bind_address_token1] = ACTIONS(1869), + [aux_sym_bind_interface_token1] = ACTIONS(1869), + [aux_sym_canonical_domains_token1] = ACTIONS(1869), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1869), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1869), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1869), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1869), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1869), + [aux_sym_certificate_file_token1] = ACTIONS(1869), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1869), + [aux_sym_channel_timeout_token1] = ACTIONS(1869), + [aux_sym_check_host_ip_token1] = ACTIONS(1869), + [aux_sym_ciphers_token1] = ACTIONS(1869), + [aux_sym_cipher_token1] = ACTIONS(1871), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1869), + [aux_sym_compression_token1] = ACTIONS(1869), + [aux_sym_connection_attempts_token1] = ACTIONS(1869), + [aux_sym_connect_timeout_token1] = ACTIONS(1869), + [aux_sym_control_master_token1] = ACTIONS(1869), + [aux_sym_control_path_token1] = ACTIONS(1869), + [aux_sym_control_persist_token1] = ACTIONS(1869), + [aux_sym_dynamic_forward_token1] = ACTIONS(1869), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1869), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1869), + [aux_sym_escape_char_token1] = ACTIONS(1869), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1869), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1869), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1869), + [aux_sym_forward_agent_token1] = ACTIONS(1869), + [aux_sym_forward_x11_token1] = ACTIONS(1871), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1869), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1869), + [aux_sym_gateway_ports_token1] = ACTIONS(1869), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1869), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1869), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1869), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1869), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1869), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1869), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1869), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1869), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1869), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1869), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1869), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1869), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1869), + [aux_sym_host_key_alias_token1] = ACTIONS(1869), + [aux_sym_hostname_token1] = ACTIONS(1869), + [aux_sym_identities_only_token1] = ACTIONS(1869), + [aux_sym_identity_agent_token1] = ACTIONS(1869), + [aux_sym_identity_file_token1] = ACTIONS(1869), + [aux_sym_ignore_unknown_token1] = ACTIONS(1869), + [aux_sym_include_token1] = ACTIONS(1869), + [aux_sym_ip_qos_token1] = ACTIONS(1869), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1869), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1869), + [aux_sym_kex_algorithms_token1] = ACTIONS(1869), + [aux_sym_known_hosts_command_token1] = ACTIONS(1869), + [aux_sym_local_command_token1] = ACTIONS(1869), + [aux_sym_local_forward_token1] = ACTIONS(1869), + [aux_sym_log_level_token1] = ACTIONS(1869), + [aux_sym_log_verbose_token1] = ACTIONS(1869), + [aux_sym_macs_token1] = ACTIONS(1869), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1869), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1869), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1869), + [aux_sym_password_authentication_token1] = ACTIONS(1869), + [aux_sym_permit_local_command_token1] = ACTIONS(1869), + [aux_sym_permit_remote_open_token1] = ACTIONS(1869), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1869), + [aux_sym_port_token1] = ACTIONS(1869), + [aux_sym_preferred_authentications_token1] = ACTIONS(1869), + [aux_sym_protocol_token1] = ACTIONS(1869), + [aux_sym_proxy_command_token1] = ACTIONS(1869), + [aux_sym_proxy_jump_token1] = ACTIONS(1869), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1869), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1869), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1869), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1869), + [aux_sym_rekey_limit_token1] = ACTIONS(1869), + [aux_sym_remote_command_token1] = ACTIONS(1869), + [aux_sym_remote_forward_token1] = ACTIONS(1869), + [aux_sym_request_tty_token1] = ACTIONS(1869), + [aux_sym_required_rsa_size_token1] = ACTIONS(1869), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1869), + [aux_sym_security_key_provider_token1] = ACTIONS(1869), + [aux_sym_send_env_token1] = ACTIONS(1869), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1869), + [aux_sym_server_alive_interval_token1] = ACTIONS(1869), + [aux_sym_session_type_token1] = ACTIONS(1869), + [aux_sym_set_env_token1] = ACTIONS(1869), + [aux_sym_stdin_null_token1] = ACTIONS(1869), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1869), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1869), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1869), + [aux_sym_syslog_facility_token1] = ACTIONS(1869), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1869), + [aux_sym_keep_alive_token1] = ACTIONS(1869), + [aux_sym_tag_token1] = ACTIONS(1869), + [aux_sym_tunnel_token1] = ACTIONS(1871), + [aux_sym_tunnel_device_token1] = ACTIONS(1869), + [aux_sym_update_host_keys_token1] = ACTIONS(1869), + [aux_sym_use_keychain_token1] = ACTIONS(1869), + [aux_sym_use_roaming_token1] = ACTIONS(1869), + [aux_sym_user_token1] = ACTIONS(1871), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1869), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1869), + [aux_sym_visual_host_key_token1] = ACTIONS(1869), + [aux_sym_xauth_location_token1] = ACTIONS(1869), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1872), - [anon_sym_DQUOTE] = ACTIONS(1874), - [aux_sym_match_token1] = ACTIONS(1870), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1870), - [aux_sym_address_family_token1] = ACTIONS(1870), - [aux_sym_batch_mode_token1] = ACTIONS(1870), - [aux_sym_bind_address_token1] = ACTIONS(1870), - [aux_sym_bind_interface_token1] = ACTIONS(1870), - [aux_sym_canonical_domains_token1] = ACTIONS(1870), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1870), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1870), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1870), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1870), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1870), - [aux_sym_certificate_file_token1] = ACTIONS(1870), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1870), - [aux_sym_channel_timeout_token1] = ACTIONS(1870), - [aux_sym_check_host_ip_token1] = ACTIONS(1870), - [aux_sym_ciphers_token1] = ACTIONS(1870), - [aux_sym_cipher_token1] = ACTIONS(1872), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1870), - [aux_sym_compression_token1] = ACTIONS(1870), - [aux_sym_connection_attempts_token1] = ACTIONS(1870), - [aux_sym_connect_timeout_token1] = ACTIONS(1870), - [aux_sym_control_master_token1] = ACTIONS(1870), - [aux_sym_control_path_token1] = ACTIONS(1870), - [aux_sym_control_persist_token1] = ACTIONS(1870), - [aux_sym_dynamic_forward_token1] = ACTIONS(1870), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1870), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1870), - [aux_sym_escape_char_token1] = ACTIONS(1870), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1870), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1870), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1870), - [aux_sym_forward_agent_token1] = ACTIONS(1870), - [aux_sym_forward_x11_token1] = ACTIONS(1872), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1870), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1870), - [aux_sym_gateway_ports_token1] = ACTIONS(1870), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1870), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1870), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1870), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1870), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1870), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1870), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1870), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1870), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1870), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1870), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1870), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1870), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1870), - [aux_sym_host_key_alias_token1] = ACTIONS(1870), - [aux_sym_hostname_token1] = ACTIONS(1870), - [aux_sym_identities_only_token1] = ACTIONS(1870), - [aux_sym_identity_agent_token1] = ACTIONS(1870), - [aux_sym_identity_file_token1] = ACTIONS(1870), - [aux_sym_ignore_unknown_token1] = ACTIONS(1870), - [aux_sym_include_token1] = ACTIONS(1870), - [aux_sym_ip_qos_token1] = ACTIONS(1870), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1870), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1870), - [aux_sym_kex_algorithms_token1] = ACTIONS(1870), - [aux_sym_known_hosts_command_token1] = ACTIONS(1870), - [aux_sym_local_command_token1] = ACTIONS(1870), - [aux_sym_local_forward_token1] = ACTIONS(1870), - [aux_sym_log_level_token1] = ACTIONS(1870), - [aux_sym_log_verbose_token1] = ACTIONS(1870), - [aux_sym_macs_token1] = ACTIONS(1870), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1870), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1870), - [aux_sym_password_authentication_token1] = ACTIONS(1870), - [aux_sym_permit_local_command_token1] = ACTIONS(1870), - [aux_sym_permit_remote_open_token1] = ACTIONS(1870), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1870), - [aux_sym_port_token1] = ACTIONS(1870), - [aux_sym_preferred_authentications_token1] = ACTIONS(1870), - [aux_sym_protocol_token1] = ACTIONS(1870), - [aux_sym_proxy_command_token1] = ACTIONS(1870), - [aux_sym_proxy_jump_token1] = ACTIONS(1870), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1870), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1870), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1870), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1870), - [aux_sym_rekey_limit_token1] = ACTIONS(1870), - [aux_sym_remote_command_token1] = ACTIONS(1870), - [aux_sym_remote_forward_token1] = ACTIONS(1870), - [aux_sym_request_tty_token1] = ACTIONS(1870), - [aux_sym_required_rsa_size_token1] = ACTIONS(1870), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1870), - [aux_sym_security_key_provider_token1] = ACTIONS(1870), - [aux_sym_send_env_token1] = ACTIONS(1870), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1870), - [aux_sym_server_alive_interval_token1] = ACTIONS(1870), - [aux_sym_session_type_token1] = ACTIONS(1870), - [aux_sym_set_env_token1] = ACTIONS(1870), - [aux_sym_stdin_null_token1] = ACTIONS(1870), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1870), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1870), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1870), - [aux_sym_syslog_facility_token1] = ACTIONS(1870), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1870), - [aux_sym_keep_alive_token1] = ACTIONS(1870), - [aux_sym_tag_token1] = ACTIONS(1870), - [aux_sym_tunnel_token1] = ACTIONS(1872), - [aux_sym_tunnel_device_token1] = ACTIONS(1870), - [aux_sym_update_host_keys_token1] = ACTIONS(1870), - [aux_sym_use_keychain_token1] = ACTIONS(1870), - [aux_sym_use_roaming_token1] = ACTIONS(1870), - [aux_sym_user_token1] = ACTIONS(1872), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1870), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1870), - [aux_sym_visual_host_key_token1] = ACTIONS(1870), - [aux_sym_xauth_location_token1] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1879), + [aux_sym_match_token1] = ACTIONS(1875), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1875), + [aux_sym_address_family_token1] = ACTIONS(1875), + [aux_sym_batch_mode_token1] = ACTIONS(1875), + [aux_sym_bind_address_token1] = ACTIONS(1875), + [aux_sym_bind_interface_token1] = ACTIONS(1875), + [aux_sym_canonical_domains_token1] = ACTIONS(1875), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1875), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1875), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1875), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1875), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1875), + [aux_sym_certificate_file_token1] = ACTIONS(1875), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1875), + [aux_sym_channel_timeout_token1] = ACTIONS(1875), + [aux_sym_check_host_ip_token1] = ACTIONS(1875), + [aux_sym_ciphers_token1] = ACTIONS(1875), + [aux_sym_cipher_token1] = ACTIONS(1877), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1875), + [aux_sym_compression_token1] = ACTIONS(1875), + [aux_sym_connection_attempts_token1] = ACTIONS(1875), + [aux_sym_connect_timeout_token1] = ACTIONS(1875), + [aux_sym_control_master_token1] = ACTIONS(1875), + [aux_sym_control_path_token1] = ACTIONS(1875), + [aux_sym_control_persist_token1] = ACTIONS(1875), + [aux_sym_dynamic_forward_token1] = ACTIONS(1875), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1875), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1875), + [aux_sym_escape_char_token1] = ACTIONS(1875), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1875), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1875), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1875), + [aux_sym_forward_agent_token1] = ACTIONS(1875), + [aux_sym_forward_x11_token1] = ACTIONS(1877), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1875), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1875), + [aux_sym_gateway_ports_token1] = ACTIONS(1875), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1875), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1875), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1875), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1875), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1875), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1875), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1875), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1875), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1875), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1875), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1875), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1875), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1875), + [aux_sym_host_key_alias_token1] = ACTIONS(1875), + [aux_sym_hostname_token1] = ACTIONS(1875), + [aux_sym_identities_only_token1] = ACTIONS(1875), + [aux_sym_identity_agent_token1] = ACTIONS(1875), + [aux_sym_identity_file_token1] = ACTIONS(1875), + [aux_sym_ignore_unknown_token1] = ACTIONS(1875), + [aux_sym_include_token1] = ACTIONS(1875), + [aux_sym_ip_qos_token1] = ACTIONS(1875), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1875), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1875), + [aux_sym_kex_algorithms_token1] = ACTIONS(1875), + [aux_sym_known_hosts_command_token1] = ACTIONS(1875), + [aux_sym_local_command_token1] = ACTIONS(1875), + [aux_sym_local_forward_token1] = ACTIONS(1875), + [aux_sym_log_level_token1] = ACTIONS(1875), + [aux_sym_log_verbose_token1] = ACTIONS(1875), + [aux_sym_macs_token1] = ACTIONS(1875), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1875), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1875), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1875), + [aux_sym_password_authentication_token1] = ACTIONS(1875), + [aux_sym_permit_local_command_token1] = ACTIONS(1875), + [aux_sym_permit_remote_open_token1] = ACTIONS(1875), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1875), + [aux_sym_port_token1] = ACTIONS(1875), + [aux_sym_preferred_authentications_token1] = ACTIONS(1875), + [aux_sym_protocol_token1] = ACTIONS(1875), + [aux_sym_proxy_command_token1] = ACTIONS(1875), + [aux_sym_proxy_jump_token1] = ACTIONS(1875), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1875), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1875), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1875), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1875), + [aux_sym_rekey_limit_token1] = ACTIONS(1875), + [aux_sym_remote_command_token1] = ACTIONS(1875), + [aux_sym_remote_forward_token1] = ACTIONS(1875), + [aux_sym_request_tty_token1] = ACTIONS(1875), + [aux_sym_required_rsa_size_token1] = ACTIONS(1875), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1875), + [aux_sym_security_key_provider_token1] = ACTIONS(1875), + [aux_sym_send_env_token1] = ACTIONS(1875), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1875), + [aux_sym_server_alive_interval_token1] = ACTIONS(1875), + [aux_sym_session_type_token1] = ACTIONS(1875), + [aux_sym_set_env_token1] = ACTIONS(1875), + [aux_sym_stdin_null_token1] = ACTIONS(1875), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1875), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1875), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1875), + [aux_sym_syslog_facility_token1] = ACTIONS(1875), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1875), + [aux_sym_keep_alive_token1] = ACTIONS(1875), + [aux_sym_tag_token1] = ACTIONS(1875), + [aux_sym_tunnel_token1] = ACTIONS(1877), + [aux_sym_tunnel_device_token1] = ACTIONS(1875), + [aux_sym_update_host_keys_token1] = ACTIONS(1875), + [aux_sym_use_keychain_token1] = ACTIONS(1875), + [aux_sym_use_roaming_token1] = ACTIONS(1875), + [aux_sym_user_token1] = ACTIONS(1877), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1875), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1875), + [aux_sym_visual_host_key_token1] = ACTIONS(1875), + [aux_sym_xauth_location_token1] = ACTIONS(1875), }, [220] = { - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1878), - [anon_sym_DQUOTE] = ACTIONS(1880), - [aux_sym_match_token1] = ACTIONS(1876), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1876), - [aux_sym_address_family_token1] = ACTIONS(1876), - [aux_sym_batch_mode_token1] = ACTIONS(1876), - [aux_sym_bind_address_token1] = ACTIONS(1876), - [aux_sym_bind_interface_token1] = ACTIONS(1876), - [aux_sym_canonical_domains_token1] = ACTIONS(1876), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1876), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1876), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1876), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1876), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1876), - [aux_sym_certificate_file_token1] = ACTIONS(1876), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1876), - [aux_sym_channel_timeout_token1] = ACTIONS(1876), - [aux_sym_check_host_ip_token1] = ACTIONS(1876), - [aux_sym_ciphers_token1] = ACTIONS(1876), - [aux_sym_cipher_token1] = ACTIONS(1878), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1876), - [aux_sym_compression_token1] = ACTIONS(1876), - [aux_sym_connection_attempts_token1] = ACTIONS(1876), - [aux_sym_connect_timeout_token1] = ACTIONS(1876), - [aux_sym_control_master_token1] = ACTIONS(1876), - [aux_sym_control_path_token1] = ACTIONS(1876), - [aux_sym_control_persist_token1] = ACTIONS(1876), - [aux_sym_dynamic_forward_token1] = ACTIONS(1876), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1876), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1876), - [aux_sym_escape_char_token1] = ACTIONS(1876), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1876), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1876), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1876), - [aux_sym_forward_agent_token1] = ACTIONS(1876), - [aux_sym_forward_x11_token1] = ACTIONS(1878), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1876), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1876), - [aux_sym_gateway_ports_token1] = ACTIONS(1876), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1876), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1876), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1876), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1876), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1876), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1876), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1876), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1876), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1876), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1876), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1876), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1876), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1876), - [aux_sym_host_key_alias_token1] = ACTIONS(1876), - [aux_sym_hostname_token1] = ACTIONS(1876), - [aux_sym_identities_only_token1] = ACTIONS(1876), - [aux_sym_identity_agent_token1] = ACTIONS(1876), - [aux_sym_identity_file_token1] = ACTIONS(1876), - [aux_sym_ignore_unknown_token1] = ACTIONS(1876), - [aux_sym_include_token1] = ACTIONS(1876), - [aux_sym_ip_qos_token1] = ACTIONS(1876), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1876), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1876), - [aux_sym_kex_algorithms_token1] = ACTIONS(1876), - [aux_sym_known_hosts_command_token1] = ACTIONS(1876), - [aux_sym_local_command_token1] = ACTIONS(1876), - [aux_sym_local_forward_token1] = ACTIONS(1876), - [aux_sym_log_level_token1] = ACTIONS(1876), - [aux_sym_log_verbose_token1] = ACTIONS(1876), - [aux_sym_macs_token1] = ACTIONS(1876), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1876), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1876), - [aux_sym_password_authentication_token1] = ACTIONS(1876), - [aux_sym_permit_local_command_token1] = ACTIONS(1876), - [aux_sym_permit_remote_open_token1] = ACTIONS(1876), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1876), - [aux_sym_port_token1] = ACTIONS(1876), - [aux_sym_preferred_authentications_token1] = ACTIONS(1876), - [aux_sym_protocol_token1] = ACTIONS(1876), - [aux_sym_proxy_command_token1] = ACTIONS(1876), - [aux_sym_proxy_jump_token1] = ACTIONS(1876), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1876), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1876), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1876), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1876), - [aux_sym_rekey_limit_token1] = ACTIONS(1876), - [aux_sym_remote_command_token1] = ACTIONS(1876), - [aux_sym_remote_forward_token1] = ACTIONS(1876), - [aux_sym_request_tty_token1] = ACTIONS(1876), - [aux_sym_required_rsa_size_token1] = ACTIONS(1876), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1876), - [aux_sym_security_key_provider_token1] = ACTIONS(1876), - [aux_sym_send_env_token1] = ACTIONS(1876), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1876), - [aux_sym_server_alive_interval_token1] = ACTIONS(1876), - [aux_sym_session_type_token1] = ACTIONS(1876), - [aux_sym_set_env_token1] = ACTIONS(1876), - [aux_sym_stdin_null_token1] = ACTIONS(1876), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1876), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1876), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1876), - [aux_sym_syslog_facility_token1] = ACTIONS(1876), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1876), - [aux_sym_keep_alive_token1] = ACTIONS(1876), - [aux_sym_tag_token1] = ACTIONS(1876), - [aux_sym_tunnel_token1] = ACTIONS(1878), - [aux_sym_tunnel_device_token1] = ACTIONS(1876), - [aux_sym_update_host_keys_token1] = ACTIONS(1876), - [aux_sym_use_keychain_token1] = ACTIONS(1876), - [aux_sym_use_roaming_token1] = ACTIONS(1876), - [aux_sym_user_token1] = ACTIONS(1878), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1876), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1876), - [aux_sym_visual_host_key_token1] = ACTIONS(1876), - [aux_sym_xauth_location_token1] = ACTIONS(1876), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(1885), + [aux_sym_match_token1] = ACTIONS(1881), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1881), + [aux_sym_address_family_token1] = ACTIONS(1881), + [aux_sym_batch_mode_token1] = ACTIONS(1881), + [aux_sym_bind_address_token1] = ACTIONS(1881), + [aux_sym_bind_interface_token1] = ACTIONS(1881), + [aux_sym_canonical_domains_token1] = ACTIONS(1881), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1881), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1881), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1881), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1881), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1881), + [aux_sym_certificate_file_token1] = ACTIONS(1881), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1881), + [aux_sym_channel_timeout_token1] = ACTIONS(1881), + [aux_sym_check_host_ip_token1] = ACTIONS(1881), + [aux_sym_ciphers_token1] = ACTIONS(1881), + [aux_sym_cipher_token1] = ACTIONS(1883), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1881), + [aux_sym_compression_token1] = ACTIONS(1881), + [aux_sym_connection_attempts_token1] = ACTIONS(1881), + [aux_sym_connect_timeout_token1] = ACTIONS(1881), + [aux_sym_control_master_token1] = ACTIONS(1881), + [aux_sym_control_path_token1] = ACTIONS(1881), + [aux_sym_control_persist_token1] = ACTIONS(1881), + [aux_sym_dynamic_forward_token1] = ACTIONS(1881), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1881), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1881), + [aux_sym_escape_char_token1] = ACTIONS(1881), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1881), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1881), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1881), + [aux_sym_forward_agent_token1] = ACTIONS(1881), + [aux_sym_forward_x11_token1] = ACTIONS(1883), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1881), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1881), + [aux_sym_gateway_ports_token1] = ACTIONS(1881), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1881), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1881), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1881), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1881), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1881), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1881), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1881), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1881), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1881), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1881), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1881), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1881), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1881), + [aux_sym_host_key_alias_token1] = ACTIONS(1881), + [aux_sym_hostname_token1] = ACTIONS(1881), + [aux_sym_identities_only_token1] = ACTIONS(1881), + [aux_sym_identity_agent_token1] = ACTIONS(1881), + [aux_sym_identity_file_token1] = ACTIONS(1881), + [aux_sym_ignore_unknown_token1] = ACTIONS(1881), + [aux_sym_include_token1] = ACTIONS(1881), + [aux_sym_ip_qos_token1] = ACTIONS(1881), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1881), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1881), + [aux_sym_kex_algorithms_token1] = ACTIONS(1881), + [aux_sym_known_hosts_command_token1] = ACTIONS(1881), + [aux_sym_local_command_token1] = ACTIONS(1881), + [aux_sym_local_forward_token1] = ACTIONS(1881), + [aux_sym_log_level_token1] = ACTIONS(1881), + [aux_sym_log_verbose_token1] = ACTIONS(1881), + [aux_sym_macs_token1] = ACTIONS(1881), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1881), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1881), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1881), + [aux_sym_password_authentication_token1] = ACTIONS(1881), + [aux_sym_permit_local_command_token1] = ACTIONS(1881), + [aux_sym_permit_remote_open_token1] = ACTIONS(1881), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1881), + [aux_sym_port_token1] = ACTIONS(1881), + [aux_sym_preferred_authentications_token1] = ACTIONS(1881), + [aux_sym_protocol_token1] = ACTIONS(1881), + [aux_sym_proxy_command_token1] = ACTIONS(1881), + [aux_sym_proxy_jump_token1] = ACTIONS(1881), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1881), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1881), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1881), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1881), + [aux_sym_rekey_limit_token1] = ACTIONS(1881), + [aux_sym_remote_command_token1] = ACTIONS(1881), + [aux_sym_remote_forward_token1] = ACTIONS(1881), + [aux_sym_request_tty_token1] = ACTIONS(1881), + [aux_sym_required_rsa_size_token1] = ACTIONS(1881), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1881), + [aux_sym_security_key_provider_token1] = ACTIONS(1881), + [aux_sym_send_env_token1] = ACTIONS(1881), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1881), + [aux_sym_server_alive_interval_token1] = ACTIONS(1881), + [aux_sym_session_type_token1] = ACTIONS(1881), + [aux_sym_set_env_token1] = ACTIONS(1881), + [aux_sym_stdin_null_token1] = ACTIONS(1881), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1881), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1881), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1881), + [aux_sym_syslog_facility_token1] = ACTIONS(1881), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1881), + [aux_sym_keep_alive_token1] = ACTIONS(1881), + [aux_sym_tag_token1] = ACTIONS(1881), + [aux_sym_tunnel_token1] = ACTIONS(1883), + [aux_sym_tunnel_device_token1] = ACTIONS(1881), + [aux_sym_update_host_keys_token1] = ACTIONS(1881), + [aux_sym_use_keychain_token1] = ACTIONS(1881), + [aux_sym_use_roaming_token1] = ACTIONS(1881), + [aux_sym_user_token1] = ACTIONS(1883), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1881), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1881), + [aux_sym_visual_host_key_token1] = ACTIONS(1881), + [aux_sym_xauth_location_token1] = ACTIONS(1881), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1884), - [anon_sym_DQUOTE] = ACTIONS(1886), - [aux_sym_match_token1] = ACTIONS(1882), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1882), - [aux_sym_address_family_token1] = ACTIONS(1882), - [aux_sym_batch_mode_token1] = ACTIONS(1882), - [aux_sym_bind_address_token1] = ACTIONS(1882), - [aux_sym_bind_interface_token1] = ACTIONS(1882), - [aux_sym_canonical_domains_token1] = ACTIONS(1882), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1882), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1882), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1882), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1882), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1882), - [aux_sym_certificate_file_token1] = ACTIONS(1882), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1882), - [aux_sym_channel_timeout_token1] = ACTIONS(1882), - [aux_sym_check_host_ip_token1] = ACTIONS(1882), - [aux_sym_ciphers_token1] = ACTIONS(1882), - [aux_sym_cipher_token1] = ACTIONS(1884), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1882), - [aux_sym_compression_token1] = ACTIONS(1882), - [aux_sym_connection_attempts_token1] = ACTIONS(1882), - [aux_sym_connect_timeout_token1] = ACTIONS(1882), - [aux_sym_control_master_token1] = ACTIONS(1882), - [aux_sym_control_path_token1] = ACTIONS(1882), - [aux_sym_control_persist_token1] = ACTIONS(1882), - [aux_sym_dynamic_forward_token1] = ACTIONS(1882), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1882), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1882), - [aux_sym_escape_char_token1] = ACTIONS(1882), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1882), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1882), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1882), - [aux_sym_forward_agent_token1] = ACTIONS(1882), - [aux_sym_forward_x11_token1] = ACTIONS(1884), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1882), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1882), - [aux_sym_gateway_ports_token1] = ACTIONS(1882), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1882), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1882), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1882), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1882), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1882), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1882), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1882), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1882), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1882), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1882), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1882), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1882), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1882), - [aux_sym_host_key_alias_token1] = ACTIONS(1882), - [aux_sym_hostname_token1] = ACTIONS(1882), - [aux_sym_identities_only_token1] = ACTIONS(1882), - [aux_sym_identity_agent_token1] = ACTIONS(1882), - [aux_sym_identity_file_token1] = ACTIONS(1882), - [aux_sym_ignore_unknown_token1] = ACTIONS(1882), - [aux_sym_include_token1] = ACTIONS(1882), - [aux_sym_ip_qos_token1] = ACTIONS(1882), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1882), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1882), - [aux_sym_kex_algorithms_token1] = ACTIONS(1882), - [aux_sym_known_hosts_command_token1] = ACTIONS(1882), - [aux_sym_local_command_token1] = ACTIONS(1882), - [aux_sym_local_forward_token1] = ACTIONS(1882), - [aux_sym_log_level_token1] = ACTIONS(1882), - [aux_sym_log_verbose_token1] = ACTIONS(1882), - [aux_sym_macs_token1] = ACTIONS(1882), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1882), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1882), - [aux_sym_password_authentication_token1] = ACTIONS(1882), - [aux_sym_permit_local_command_token1] = ACTIONS(1882), - [aux_sym_permit_remote_open_token1] = ACTIONS(1882), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1882), - [aux_sym_port_token1] = ACTIONS(1882), - [aux_sym_preferred_authentications_token1] = ACTIONS(1882), - [aux_sym_protocol_token1] = ACTIONS(1882), - [aux_sym_proxy_command_token1] = ACTIONS(1882), - [aux_sym_proxy_jump_token1] = ACTIONS(1882), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1882), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1882), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1882), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1882), - [aux_sym_rekey_limit_token1] = ACTIONS(1882), - [aux_sym_remote_command_token1] = ACTIONS(1882), - [aux_sym_remote_forward_token1] = ACTIONS(1882), - [aux_sym_request_tty_token1] = ACTIONS(1882), - [aux_sym_required_rsa_size_token1] = ACTIONS(1882), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1882), - [aux_sym_security_key_provider_token1] = ACTIONS(1882), - [aux_sym_send_env_token1] = ACTIONS(1882), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1882), - [aux_sym_server_alive_interval_token1] = ACTIONS(1882), - [aux_sym_session_type_token1] = ACTIONS(1882), - [aux_sym_set_env_token1] = ACTIONS(1882), - [aux_sym_stdin_null_token1] = ACTIONS(1882), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1882), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1882), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1882), - [aux_sym_syslog_facility_token1] = ACTIONS(1882), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1882), - [aux_sym_keep_alive_token1] = ACTIONS(1882), - [aux_sym_tag_token1] = ACTIONS(1882), - [aux_sym_tunnel_token1] = ACTIONS(1884), - [aux_sym_tunnel_device_token1] = ACTIONS(1882), - [aux_sym_update_host_keys_token1] = ACTIONS(1882), - [aux_sym_use_keychain_token1] = ACTIONS(1882), - [aux_sym_use_roaming_token1] = ACTIONS(1882), - [aux_sym_user_token1] = ACTIONS(1884), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1882), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1882), - [aux_sym_visual_host_key_token1] = ACTIONS(1882), - [aux_sym_xauth_location_token1] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(1891), + [aux_sym_match_token1] = ACTIONS(1887), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1887), + [aux_sym_address_family_token1] = ACTIONS(1887), + [aux_sym_batch_mode_token1] = ACTIONS(1887), + [aux_sym_bind_address_token1] = ACTIONS(1887), + [aux_sym_bind_interface_token1] = ACTIONS(1887), + [aux_sym_canonical_domains_token1] = ACTIONS(1887), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1887), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1887), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1887), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1887), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1887), + [aux_sym_certificate_file_token1] = ACTIONS(1887), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1887), + [aux_sym_channel_timeout_token1] = ACTIONS(1887), + [aux_sym_check_host_ip_token1] = ACTIONS(1887), + [aux_sym_ciphers_token1] = ACTIONS(1887), + [aux_sym_cipher_token1] = ACTIONS(1889), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1887), + [aux_sym_compression_token1] = ACTIONS(1887), + [aux_sym_connection_attempts_token1] = ACTIONS(1887), + [aux_sym_connect_timeout_token1] = ACTIONS(1887), + [aux_sym_control_master_token1] = ACTIONS(1887), + [aux_sym_control_path_token1] = ACTIONS(1887), + [aux_sym_control_persist_token1] = ACTIONS(1887), + [aux_sym_dynamic_forward_token1] = ACTIONS(1887), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1887), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1887), + [aux_sym_escape_char_token1] = ACTIONS(1887), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1887), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1887), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1887), + [aux_sym_forward_agent_token1] = ACTIONS(1887), + [aux_sym_forward_x11_token1] = ACTIONS(1889), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1887), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1887), + [aux_sym_gateway_ports_token1] = ACTIONS(1887), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1887), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1887), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1887), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1887), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1887), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1887), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1887), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1887), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1887), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1887), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1887), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1887), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1887), + [aux_sym_host_key_alias_token1] = ACTIONS(1887), + [aux_sym_hostname_token1] = ACTIONS(1887), + [aux_sym_identities_only_token1] = ACTIONS(1887), + [aux_sym_identity_agent_token1] = ACTIONS(1887), + [aux_sym_identity_file_token1] = ACTIONS(1887), + [aux_sym_ignore_unknown_token1] = ACTIONS(1887), + [aux_sym_include_token1] = ACTIONS(1887), + [aux_sym_ip_qos_token1] = ACTIONS(1887), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1887), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1887), + [aux_sym_kex_algorithms_token1] = ACTIONS(1887), + [aux_sym_known_hosts_command_token1] = ACTIONS(1887), + [aux_sym_local_command_token1] = ACTIONS(1887), + [aux_sym_local_forward_token1] = ACTIONS(1887), + [aux_sym_log_level_token1] = ACTIONS(1887), + [aux_sym_log_verbose_token1] = ACTIONS(1887), + [aux_sym_macs_token1] = ACTIONS(1887), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1887), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1887), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1887), + [aux_sym_password_authentication_token1] = ACTIONS(1887), + [aux_sym_permit_local_command_token1] = ACTIONS(1887), + [aux_sym_permit_remote_open_token1] = ACTIONS(1887), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1887), + [aux_sym_port_token1] = ACTIONS(1887), + [aux_sym_preferred_authentications_token1] = ACTIONS(1887), + [aux_sym_protocol_token1] = ACTIONS(1887), + [aux_sym_proxy_command_token1] = ACTIONS(1887), + [aux_sym_proxy_jump_token1] = ACTIONS(1887), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1887), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1887), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1887), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1887), + [aux_sym_rekey_limit_token1] = ACTIONS(1887), + [aux_sym_remote_command_token1] = ACTIONS(1887), + [aux_sym_remote_forward_token1] = ACTIONS(1887), + [aux_sym_request_tty_token1] = ACTIONS(1887), + [aux_sym_required_rsa_size_token1] = ACTIONS(1887), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1887), + [aux_sym_security_key_provider_token1] = ACTIONS(1887), + [aux_sym_send_env_token1] = ACTIONS(1887), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1887), + [aux_sym_server_alive_interval_token1] = ACTIONS(1887), + [aux_sym_session_type_token1] = ACTIONS(1887), + [aux_sym_set_env_token1] = ACTIONS(1887), + [aux_sym_stdin_null_token1] = ACTIONS(1887), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1887), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1887), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1887), + [aux_sym_syslog_facility_token1] = ACTIONS(1887), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1887), + [aux_sym_keep_alive_token1] = ACTIONS(1887), + [aux_sym_tag_token1] = ACTIONS(1887), + [aux_sym_tunnel_token1] = ACTIONS(1889), + [aux_sym_tunnel_device_token1] = ACTIONS(1887), + [aux_sym_update_host_keys_token1] = ACTIONS(1887), + [aux_sym_use_keychain_token1] = ACTIONS(1887), + [aux_sym_use_roaming_token1] = ACTIONS(1887), + [aux_sym_user_token1] = ACTIONS(1889), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1887), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1887), + [aux_sym_visual_host_key_token1] = ACTIONS(1887), + [aux_sym_xauth_location_token1] = ACTIONS(1887), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1888), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1890), - [anon_sym_DQUOTE] = ACTIONS(1892), - [aux_sym_match_token1] = ACTIONS(1888), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1888), - [aux_sym_address_family_token1] = ACTIONS(1888), - [aux_sym_batch_mode_token1] = ACTIONS(1888), - [aux_sym_bind_address_token1] = ACTIONS(1888), - [aux_sym_bind_interface_token1] = ACTIONS(1888), - [aux_sym_canonical_domains_token1] = ACTIONS(1888), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1888), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1888), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1888), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1888), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1888), - [aux_sym_certificate_file_token1] = ACTIONS(1888), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1888), - [aux_sym_channel_timeout_token1] = ACTIONS(1888), - [aux_sym_check_host_ip_token1] = ACTIONS(1888), - [aux_sym_ciphers_token1] = ACTIONS(1888), - [aux_sym_cipher_token1] = ACTIONS(1890), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1888), - [aux_sym_compression_token1] = ACTIONS(1888), - [aux_sym_connection_attempts_token1] = ACTIONS(1888), - [aux_sym_connect_timeout_token1] = ACTIONS(1888), - [aux_sym_control_master_token1] = ACTIONS(1888), - [aux_sym_control_path_token1] = ACTIONS(1888), - [aux_sym_control_persist_token1] = ACTIONS(1888), - [aux_sym_dynamic_forward_token1] = ACTIONS(1888), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1888), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1888), - [aux_sym_escape_char_token1] = ACTIONS(1888), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1888), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1888), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1888), - [aux_sym_forward_agent_token1] = ACTIONS(1888), - [aux_sym_forward_x11_token1] = ACTIONS(1890), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1888), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1888), - [aux_sym_gateway_ports_token1] = ACTIONS(1888), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1888), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1888), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1888), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1888), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1888), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1888), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1888), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1888), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1888), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1888), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1888), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1888), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1888), - [aux_sym_host_key_alias_token1] = ACTIONS(1888), - [aux_sym_hostname_token1] = ACTIONS(1888), - [aux_sym_identities_only_token1] = ACTIONS(1888), - [aux_sym_identity_agent_token1] = ACTIONS(1888), - [aux_sym_identity_file_token1] = ACTIONS(1888), - [aux_sym_ignore_unknown_token1] = ACTIONS(1888), - [aux_sym_include_token1] = ACTIONS(1888), - [aux_sym_ip_qos_token1] = ACTIONS(1888), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1888), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1888), - [aux_sym_kex_algorithms_token1] = ACTIONS(1888), - [aux_sym_known_hosts_command_token1] = ACTIONS(1888), - [aux_sym_local_command_token1] = ACTIONS(1888), - [aux_sym_local_forward_token1] = ACTIONS(1888), - [aux_sym_log_level_token1] = ACTIONS(1888), - [aux_sym_log_verbose_token1] = ACTIONS(1888), - [aux_sym_macs_token1] = ACTIONS(1888), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1888), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1888), - [aux_sym_password_authentication_token1] = ACTIONS(1888), - [aux_sym_permit_local_command_token1] = ACTIONS(1888), - [aux_sym_permit_remote_open_token1] = ACTIONS(1888), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1888), - [aux_sym_port_token1] = ACTIONS(1888), - [aux_sym_preferred_authentications_token1] = ACTIONS(1888), - [aux_sym_protocol_token1] = ACTIONS(1888), - [aux_sym_proxy_command_token1] = ACTIONS(1888), - [aux_sym_proxy_jump_token1] = ACTIONS(1888), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1888), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1888), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1888), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1888), - [aux_sym_rekey_limit_token1] = ACTIONS(1888), - [aux_sym_remote_command_token1] = ACTIONS(1888), - [aux_sym_remote_forward_token1] = ACTIONS(1888), - [aux_sym_request_tty_token1] = ACTIONS(1888), - [aux_sym_required_rsa_size_token1] = ACTIONS(1888), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1888), - [aux_sym_security_key_provider_token1] = ACTIONS(1888), - [aux_sym_send_env_token1] = ACTIONS(1888), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1888), - [aux_sym_server_alive_interval_token1] = ACTIONS(1888), - [aux_sym_session_type_token1] = ACTIONS(1888), - [aux_sym_set_env_token1] = ACTIONS(1888), - [aux_sym_stdin_null_token1] = ACTIONS(1888), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1888), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1888), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1888), - [aux_sym_syslog_facility_token1] = ACTIONS(1888), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1888), - [aux_sym_keep_alive_token1] = ACTIONS(1888), - [aux_sym_tag_token1] = ACTIONS(1888), - [aux_sym_tunnel_token1] = ACTIONS(1890), - [aux_sym_tunnel_device_token1] = ACTIONS(1888), - [aux_sym_update_host_keys_token1] = ACTIONS(1888), - [aux_sym_use_keychain_token1] = ACTIONS(1888), - [aux_sym_use_roaming_token1] = ACTIONS(1888), - [aux_sym_user_token1] = ACTIONS(1890), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1888), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1888), - [aux_sym_visual_host_key_token1] = ACTIONS(1888), - [aux_sym_xauth_location_token1] = ACTIONS(1888), + [ts_builtin_sym_end] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1897), + [aux_sym_match_token1] = ACTIONS(1893), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1893), + [aux_sym_address_family_token1] = ACTIONS(1893), + [aux_sym_batch_mode_token1] = ACTIONS(1893), + [aux_sym_bind_address_token1] = ACTIONS(1893), + [aux_sym_bind_interface_token1] = ACTIONS(1893), + [aux_sym_canonical_domains_token1] = ACTIONS(1893), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1893), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1893), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1893), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1893), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1893), + [aux_sym_certificate_file_token1] = ACTIONS(1893), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1893), + [aux_sym_channel_timeout_token1] = ACTIONS(1893), + [aux_sym_check_host_ip_token1] = ACTIONS(1893), + [aux_sym_ciphers_token1] = ACTIONS(1893), + [aux_sym_cipher_token1] = ACTIONS(1895), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1893), + [aux_sym_compression_token1] = ACTIONS(1893), + [aux_sym_connection_attempts_token1] = ACTIONS(1893), + [aux_sym_connect_timeout_token1] = ACTIONS(1893), + [aux_sym_control_master_token1] = ACTIONS(1893), + [aux_sym_control_path_token1] = ACTIONS(1893), + [aux_sym_control_persist_token1] = ACTIONS(1893), + [aux_sym_dynamic_forward_token1] = ACTIONS(1893), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1893), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1893), + [aux_sym_escape_char_token1] = ACTIONS(1893), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1893), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1893), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1893), + [aux_sym_forward_agent_token1] = ACTIONS(1893), + [aux_sym_forward_x11_token1] = ACTIONS(1895), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1893), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1893), + [aux_sym_gateway_ports_token1] = ACTIONS(1893), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1893), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1893), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1893), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1893), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1893), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1893), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1893), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1893), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1893), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1893), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1893), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1893), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1893), + [aux_sym_host_key_alias_token1] = ACTIONS(1893), + [aux_sym_hostname_token1] = ACTIONS(1893), + [aux_sym_identities_only_token1] = ACTIONS(1893), + [aux_sym_identity_agent_token1] = ACTIONS(1893), + [aux_sym_identity_file_token1] = ACTIONS(1893), + [aux_sym_ignore_unknown_token1] = ACTIONS(1893), + [aux_sym_include_token1] = ACTIONS(1893), + [aux_sym_ip_qos_token1] = ACTIONS(1893), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1893), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1893), + [aux_sym_kex_algorithms_token1] = ACTIONS(1893), + [aux_sym_known_hosts_command_token1] = ACTIONS(1893), + [aux_sym_local_command_token1] = ACTIONS(1893), + [aux_sym_local_forward_token1] = ACTIONS(1893), + [aux_sym_log_level_token1] = ACTIONS(1893), + [aux_sym_log_verbose_token1] = ACTIONS(1893), + [aux_sym_macs_token1] = ACTIONS(1893), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1893), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1893), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1893), + [aux_sym_password_authentication_token1] = ACTIONS(1893), + [aux_sym_permit_local_command_token1] = ACTIONS(1893), + [aux_sym_permit_remote_open_token1] = ACTIONS(1893), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1893), + [aux_sym_port_token1] = ACTIONS(1893), + [aux_sym_preferred_authentications_token1] = ACTIONS(1893), + [aux_sym_protocol_token1] = ACTIONS(1893), + [aux_sym_proxy_command_token1] = ACTIONS(1893), + [aux_sym_proxy_jump_token1] = ACTIONS(1893), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1893), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1893), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1893), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1893), + [aux_sym_rekey_limit_token1] = ACTIONS(1893), + [aux_sym_remote_command_token1] = ACTIONS(1893), + [aux_sym_remote_forward_token1] = ACTIONS(1893), + [aux_sym_request_tty_token1] = ACTIONS(1893), + [aux_sym_required_rsa_size_token1] = ACTIONS(1893), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1893), + [aux_sym_security_key_provider_token1] = ACTIONS(1893), + [aux_sym_send_env_token1] = ACTIONS(1893), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1893), + [aux_sym_server_alive_interval_token1] = ACTIONS(1893), + [aux_sym_session_type_token1] = ACTIONS(1893), + [aux_sym_set_env_token1] = ACTIONS(1893), + [aux_sym_stdin_null_token1] = ACTIONS(1893), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1893), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1893), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1893), + [aux_sym_syslog_facility_token1] = ACTIONS(1893), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1893), + [aux_sym_keep_alive_token1] = ACTIONS(1893), + [aux_sym_tag_token1] = ACTIONS(1893), + [aux_sym_tunnel_token1] = ACTIONS(1895), + [aux_sym_tunnel_device_token1] = ACTIONS(1893), + [aux_sym_update_host_keys_token1] = ACTIONS(1893), + [aux_sym_use_keychain_token1] = ACTIONS(1893), + [aux_sym_use_roaming_token1] = ACTIONS(1893), + [aux_sym_user_token1] = ACTIONS(1895), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1893), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1893), + [aux_sym_visual_host_key_token1] = ACTIONS(1893), + [aux_sym_xauth_location_token1] = ACTIONS(1893), }, [223] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1896), - [anon_sym_DQUOTE] = ACTIONS(1898), - [aux_sym_match_token1] = ACTIONS(1894), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1894), - [aux_sym_address_family_token1] = ACTIONS(1894), - [aux_sym_batch_mode_token1] = ACTIONS(1894), - [aux_sym_bind_address_token1] = ACTIONS(1894), - [aux_sym_bind_interface_token1] = ACTIONS(1894), - [aux_sym_canonical_domains_token1] = ACTIONS(1894), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1894), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1894), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1894), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1894), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1894), - [aux_sym_certificate_file_token1] = ACTIONS(1894), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1894), - [aux_sym_channel_timeout_token1] = ACTIONS(1894), - [aux_sym_check_host_ip_token1] = ACTIONS(1894), - [aux_sym_ciphers_token1] = ACTIONS(1894), - [aux_sym_cipher_token1] = ACTIONS(1896), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1894), - [aux_sym_compression_token1] = ACTIONS(1894), - [aux_sym_connection_attempts_token1] = ACTIONS(1894), - [aux_sym_connect_timeout_token1] = ACTIONS(1894), - [aux_sym_control_master_token1] = ACTIONS(1894), - [aux_sym_control_path_token1] = ACTIONS(1894), - [aux_sym_control_persist_token1] = ACTIONS(1894), - [aux_sym_dynamic_forward_token1] = ACTIONS(1894), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1894), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1894), - [aux_sym_escape_char_token1] = ACTIONS(1894), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1894), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1894), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1894), - [aux_sym_forward_agent_token1] = ACTIONS(1894), - [aux_sym_forward_x11_token1] = ACTIONS(1896), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1894), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1894), - [aux_sym_gateway_ports_token1] = ACTIONS(1894), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1894), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1894), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1894), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1894), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1894), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1894), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1894), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1894), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1894), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1894), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1894), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1894), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1894), - [aux_sym_host_key_alias_token1] = ACTIONS(1894), - [aux_sym_hostname_token1] = ACTIONS(1894), - [aux_sym_identities_only_token1] = ACTIONS(1894), - [aux_sym_identity_agent_token1] = ACTIONS(1894), - [aux_sym_identity_file_token1] = ACTIONS(1894), - [aux_sym_ignore_unknown_token1] = ACTIONS(1894), - [aux_sym_include_token1] = ACTIONS(1894), - [aux_sym_ip_qos_token1] = ACTIONS(1894), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1894), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1894), - [aux_sym_kex_algorithms_token1] = ACTIONS(1894), - [aux_sym_known_hosts_command_token1] = ACTIONS(1894), - [aux_sym_local_command_token1] = ACTIONS(1894), - [aux_sym_local_forward_token1] = ACTIONS(1894), - [aux_sym_log_level_token1] = ACTIONS(1894), - [aux_sym_log_verbose_token1] = ACTIONS(1894), - [aux_sym_macs_token1] = ACTIONS(1894), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1894), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1894), - [aux_sym_password_authentication_token1] = ACTIONS(1894), - [aux_sym_permit_local_command_token1] = ACTIONS(1894), - [aux_sym_permit_remote_open_token1] = ACTIONS(1894), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1894), - [aux_sym_port_token1] = ACTIONS(1894), - [aux_sym_preferred_authentications_token1] = ACTIONS(1894), - [aux_sym_protocol_token1] = ACTIONS(1894), - [aux_sym_proxy_command_token1] = ACTIONS(1894), - [aux_sym_proxy_jump_token1] = ACTIONS(1894), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1894), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1894), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1894), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1894), - [aux_sym_rekey_limit_token1] = ACTIONS(1894), - [aux_sym_remote_command_token1] = ACTIONS(1894), - [aux_sym_remote_forward_token1] = ACTIONS(1894), - [aux_sym_request_tty_token1] = ACTIONS(1894), - [aux_sym_required_rsa_size_token1] = ACTIONS(1894), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1894), - [aux_sym_security_key_provider_token1] = ACTIONS(1894), - [aux_sym_send_env_token1] = ACTIONS(1894), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1894), - [aux_sym_server_alive_interval_token1] = ACTIONS(1894), - [aux_sym_session_type_token1] = ACTIONS(1894), - [aux_sym_set_env_token1] = ACTIONS(1894), - [aux_sym_stdin_null_token1] = ACTIONS(1894), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1894), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1894), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1894), - [aux_sym_syslog_facility_token1] = ACTIONS(1894), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1894), - [aux_sym_keep_alive_token1] = ACTIONS(1894), - [aux_sym_tag_token1] = ACTIONS(1894), - [aux_sym_tunnel_token1] = ACTIONS(1896), - [aux_sym_tunnel_device_token1] = ACTIONS(1894), - [aux_sym_update_host_keys_token1] = ACTIONS(1894), - [aux_sym_use_keychain_token1] = ACTIONS(1894), - [aux_sym_use_roaming_token1] = ACTIONS(1894), - [aux_sym_user_token1] = ACTIONS(1896), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1894), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1894), - [aux_sym_visual_host_key_token1] = ACTIONS(1894), - [aux_sym_xauth_location_token1] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1903), + [aux_sym_match_token1] = ACTIONS(1899), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1899), + [aux_sym_address_family_token1] = ACTIONS(1899), + [aux_sym_batch_mode_token1] = ACTIONS(1899), + [aux_sym_bind_address_token1] = ACTIONS(1899), + [aux_sym_bind_interface_token1] = ACTIONS(1899), + [aux_sym_canonical_domains_token1] = ACTIONS(1899), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1899), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1899), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1899), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1899), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1899), + [aux_sym_certificate_file_token1] = ACTIONS(1899), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1899), + [aux_sym_channel_timeout_token1] = ACTIONS(1899), + [aux_sym_check_host_ip_token1] = ACTIONS(1899), + [aux_sym_ciphers_token1] = ACTIONS(1899), + [aux_sym_cipher_token1] = ACTIONS(1901), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1899), + [aux_sym_compression_token1] = ACTIONS(1899), + [aux_sym_connection_attempts_token1] = ACTIONS(1899), + [aux_sym_connect_timeout_token1] = ACTIONS(1899), + [aux_sym_control_master_token1] = ACTIONS(1899), + [aux_sym_control_path_token1] = ACTIONS(1899), + [aux_sym_control_persist_token1] = ACTIONS(1899), + [aux_sym_dynamic_forward_token1] = ACTIONS(1899), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1899), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1899), + [aux_sym_escape_char_token1] = ACTIONS(1899), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1899), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1899), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1899), + [aux_sym_forward_agent_token1] = ACTIONS(1899), + [aux_sym_forward_x11_token1] = ACTIONS(1901), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1899), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1899), + [aux_sym_gateway_ports_token1] = ACTIONS(1899), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1899), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1899), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1899), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1899), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1899), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1899), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1899), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1899), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1899), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1899), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1899), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1899), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1899), + [aux_sym_host_key_alias_token1] = ACTIONS(1899), + [aux_sym_hostname_token1] = ACTIONS(1899), + [aux_sym_identities_only_token1] = ACTIONS(1899), + [aux_sym_identity_agent_token1] = ACTIONS(1899), + [aux_sym_identity_file_token1] = ACTIONS(1899), + [aux_sym_ignore_unknown_token1] = ACTIONS(1899), + [aux_sym_include_token1] = ACTIONS(1899), + [aux_sym_ip_qos_token1] = ACTIONS(1899), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1899), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1899), + [aux_sym_kex_algorithms_token1] = ACTIONS(1899), + [aux_sym_known_hosts_command_token1] = ACTIONS(1899), + [aux_sym_local_command_token1] = ACTIONS(1899), + [aux_sym_local_forward_token1] = ACTIONS(1899), + [aux_sym_log_level_token1] = ACTIONS(1899), + [aux_sym_log_verbose_token1] = ACTIONS(1899), + [aux_sym_macs_token1] = ACTIONS(1899), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1899), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1899), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1899), + [aux_sym_password_authentication_token1] = ACTIONS(1899), + [aux_sym_permit_local_command_token1] = ACTIONS(1899), + [aux_sym_permit_remote_open_token1] = ACTIONS(1899), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1899), + [aux_sym_port_token1] = ACTIONS(1899), + [aux_sym_preferred_authentications_token1] = ACTIONS(1899), + [aux_sym_protocol_token1] = ACTIONS(1899), + [aux_sym_proxy_command_token1] = ACTIONS(1899), + [aux_sym_proxy_jump_token1] = ACTIONS(1899), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1899), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1899), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1899), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1899), + [aux_sym_rekey_limit_token1] = ACTIONS(1899), + [aux_sym_remote_command_token1] = ACTIONS(1899), + [aux_sym_remote_forward_token1] = ACTIONS(1899), + [aux_sym_request_tty_token1] = ACTIONS(1899), + [aux_sym_required_rsa_size_token1] = ACTIONS(1899), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1899), + [aux_sym_security_key_provider_token1] = ACTIONS(1899), + [aux_sym_send_env_token1] = ACTIONS(1899), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1899), + [aux_sym_server_alive_interval_token1] = ACTIONS(1899), + [aux_sym_session_type_token1] = ACTIONS(1899), + [aux_sym_set_env_token1] = ACTIONS(1899), + [aux_sym_stdin_null_token1] = ACTIONS(1899), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1899), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1899), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1899), + [aux_sym_syslog_facility_token1] = ACTIONS(1899), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1899), + [aux_sym_keep_alive_token1] = ACTIONS(1899), + [aux_sym_tag_token1] = ACTIONS(1899), + [aux_sym_tunnel_token1] = ACTIONS(1901), + [aux_sym_tunnel_device_token1] = ACTIONS(1899), + [aux_sym_update_host_keys_token1] = ACTIONS(1899), + [aux_sym_use_keychain_token1] = ACTIONS(1899), + [aux_sym_use_roaming_token1] = ACTIONS(1899), + [aux_sym_user_token1] = ACTIONS(1901), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1899), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1899), + [aux_sym_visual_host_key_token1] = ACTIONS(1899), + [aux_sym_xauth_location_token1] = ACTIONS(1899), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1900), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1902), - [anon_sym_DQUOTE] = ACTIONS(1904), - [aux_sym_match_token1] = ACTIONS(1900), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1900), - [aux_sym_address_family_token1] = ACTIONS(1900), - [aux_sym_batch_mode_token1] = ACTIONS(1900), - [aux_sym_bind_address_token1] = ACTIONS(1900), - [aux_sym_bind_interface_token1] = ACTIONS(1900), - [aux_sym_canonical_domains_token1] = ACTIONS(1900), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1900), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1900), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1900), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1900), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1900), - [aux_sym_certificate_file_token1] = ACTIONS(1900), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1900), - [aux_sym_channel_timeout_token1] = ACTIONS(1900), - [aux_sym_check_host_ip_token1] = ACTIONS(1900), - [aux_sym_ciphers_token1] = ACTIONS(1900), - [aux_sym_cipher_token1] = ACTIONS(1902), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1900), - [aux_sym_compression_token1] = ACTIONS(1900), - [aux_sym_connection_attempts_token1] = ACTIONS(1900), - [aux_sym_connect_timeout_token1] = ACTIONS(1900), - [aux_sym_control_master_token1] = ACTIONS(1900), - [aux_sym_control_path_token1] = ACTIONS(1900), - [aux_sym_control_persist_token1] = ACTIONS(1900), - [aux_sym_dynamic_forward_token1] = ACTIONS(1900), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1900), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1900), - [aux_sym_escape_char_token1] = ACTIONS(1900), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1900), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1900), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1900), - [aux_sym_forward_agent_token1] = ACTIONS(1900), - [aux_sym_forward_x11_token1] = ACTIONS(1902), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1900), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1900), - [aux_sym_gateway_ports_token1] = ACTIONS(1900), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1900), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1900), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1900), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1900), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1900), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1900), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1900), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1900), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1900), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1900), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1900), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1900), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1900), - [aux_sym_host_key_alias_token1] = ACTIONS(1900), - [aux_sym_hostname_token1] = ACTIONS(1900), - [aux_sym_identities_only_token1] = ACTIONS(1900), - [aux_sym_identity_agent_token1] = ACTIONS(1900), - [aux_sym_identity_file_token1] = ACTIONS(1900), - [aux_sym_ignore_unknown_token1] = ACTIONS(1900), - [aux_sym_include_token1] = ACTIONS(1900), - [aux_sym_ip_qos_token1] = ACTIONS(1900), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1900), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1900), - [aux_sym_kex_algorithms_token1] = ACTIONS(1900), - [aux_sym_known_hosts_command_token1] = ACTIONS(1900), - [aux_sym_local_command_token1] = ACTIONS(1900), - [aux_sym_local_forward_token1] = ACTIONS(1900), - [aux_sym_log_level_token1] = ACTIONS(1900), - [aux_sym_log_verbose_token1] = ACTIONS(1900), - [aux_sym_macs_token1] = ACTIONS(1900), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1900), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1900), - [aux_sym_password_authentication_token1] = ACTIONS(1900), - [aux_sym_permit_local_command_token1] = ACTIONS(1900), - [aux_sym_permit_remote_open_token1] = ACTIONS(1900), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1900), - [aux_sym_port_token1] = ACTIONS(1900), - [aux_sym_preferred_authentications_token1] = ACTIONS(1900), - [aux_sym_protocol_token1] = ACTIONS(1900), - [aux_sym_proxy_command_token1] = ACTIONS(1900), - [aux_sym_proxy_jump_token1] = ACTIONS(1900), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1900), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1900), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1900), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1900), - [aux_sym_rekey_limit_token1] = ACTIONS(1900), - [aux_sym_remote_command_token1] = ACTIONS(1900), - [aux_sym_remote_forward_token1] = ACTIONS(1900), - [aux_sym_request_tty_token1] = ACTIONS(1900), - [aux_sym_required_rsa_size_token1] = ACTIONS(1900), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1900), - [aux_sym_security_key_provider_token1] = ACTIONS(1900), - [aux_sym_send_env_token1] = ACTIONS(1900), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1900), - [aux_sym_server_alive_interval_token1] = ACTIONS(1900), - [aux_sym_session_type_token1] = ACTIONS(1900), - [aux_sym_set_env_token1] = ACTIONS(1900), - [aux_sym_stdin_null_token1] = ACTIONS(1900), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1900), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1900), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1900), - [aux_sym_syslog_facility_token1] = ACTIONS(1900), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1900), - [aux_sym_keep_alive_token1] = ACTIONS(1900), - [aux_sym_tag_token1] = ACTIONS(1900), - [aux_sym_tunnel_token1] = ACTIONS(1902), - [aux_sym_tunnel_device_token1] = ACTIONS(1900), - [aux_sym_update_host_keys_token1] = ACTIONS(1900), - [aux_sym_use_keychain_token1] = ACTIONS(1900), - [aux_sym_use_roaming_token1] = ACTIONS(1900), - [aux_sym_user_token1] = ACTIONS(1902), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1900), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1900), - [aux_sym_visual_host_key_token1] = ACTIONS(1900), - [aux_sym_xauth_location_token1] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(1909), + [aux_sym_match_token1] = ACTIONS(1905), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1905), + [aux_sym_address_family_token1] = ACTIONS(1905), + [aux_sym_batch_mode_token1] = ACTIONS(1905), + [aux_sym_bind_address_token1] = ACTIONS(1905), + [aux_sym_bind_interface_token1] = ACTIONS(1905), + [aux_sym_canonical_domains_token1] = ACTIONS(1905), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1905), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1905), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1905), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1905), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1905), + [aux_sym_certificate_file_token1] = ACTIONS(1905), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1905), + [aux_sym_channel_timeout_token1] = ACTIONS(1905), + [aux_sym_check_host_ip_token1] = ACTIONS(1905), + [aux_sym_ciphers_token1] = ACTIONS(1905), + [aux_sym_cipher_token1] = ACTIONS(1907), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1905), + [aux_sym_compression_token1] = ACTIONS(1905), + [aux_sym_connection_attempts_token1] = ACTIONS(1905), + [aux_sym_connect_timeout_token1] = ACTIONS(1905), + [aux_sym_control_master_token1] = ACTIONS(1905), + [aux_sym_control_path_token1] = ACTIONS(1905), + [aux_sym_control_persist_token1] = ACTIONS(1905), + [aux_sym_dynamic_forward_token1] = ACTIONS(1905), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1905), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1905), + [aux_sym_escape_char_token1] = ACTIONS(1905), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1905), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1905), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1905), + [aux_sym_forward_agent_token1] = ACTIONS(1905), + [aux_sym_forward_x11_token1] = ACTIONS(1907), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1905), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1905), + [aux_sym_gateway_ports_token1] = ACTIONS(1905), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1905), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1905), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1905), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1905), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1905), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1905), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1905), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1905), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1905), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1905), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1905), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1905), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1905), + [aux_sym_host_key_alias_token1] = ACTIONS(1905), + [aux_sym_hostname_token1] = ACTIONS(1905), + [aux_sym_identities_only_token1] = ACTIONS(1905), + [aux_sym_identity_agent_token1] = ACTIONS(1905), + [aux_sym_identity_file_token1] = ACTIONS(1905), + [aux_sym_ignore_unknown_token1] = ACTIONS(1905), + [aux_sym_include_token1] = ACTIONS(1905), + [aux_sym_ip_qos_token1] = ACTIONS(1905), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1905), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1905), + [aux_sym_kex_algorithms_token1] = ACTIONS(1905), + [aux_sym_known_hosts_command_token1] = ACTIONS(1905), + [aux_sym_local_command_token1] = ACTIONS(1905), + [aux_sym_local_forward_token1] = ACTIONS(1905), + [aux_sym_log_level_token1] = ACTIONS(1905), + [aux_sym_log_verbose_token1] = ACTIONS(1905), + [aux_sym_macs_token1] = ACTIONS(1905), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1905), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1905), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1905), + [aux_sym_password_authentication_token1] = ACTIONS(1905), + [aux_sym_permit_local_command_token1] = ACTIONS(1905), + [aux_sym_permit_remote_open_token1] = ACTIONS(1905), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1905), + [aux_sym_port_token1] = ACTIONS(1905), + [aux_sym_preferred_authentications_token1] = ACTIONS(1905), + [aux_sym_protocol_token1] = ACTIONS(1905), + [aux_sym_proxy_command_token1] = ACTIONS(1905), + [aux_sym_proxy_jump_token1] = ACTIONS(1905), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1905), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1905), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1905), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1905), + [aux_sym_rekey_limit_token1] = ACTIONS(1905), + [aux_sym_remote_command_token1] = ACTIONS(1905), + [aux_sym_remote_forward_token1] = ACTIONS(1905), + [aux_sym_request_tty_token1] = ACTIONS(1905), + [aux_sym_required_rsa_size_token1] = ACTIONS(1905), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1905), + [aux_sym_security_key_provider_token1] = ACTIONS(1905), + [aux_sym_send_env_token1] = ACTIONS(1905), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1905), + [aux_sym_server_alive_interval_token1] = ACTIONS(1905), + [aux_sym_session_type_token1] = ACTIONS(1905), + [aux_sym_set_env_token1] = ACTIONS(1905), + [aux_sym_stdin_null_token1] = ACTIONS(1905), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1905), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1905), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1905), + [aux_sym_syslog_facility_token1] = ACTIONS(1905), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1905), + [aux_sym_keep_alive_token1] = ACTIONS(1905), + [aux_sym_tag_token1] = ACTIONS(1905), + [aux_sym_tunnel_token1] = ACTIONS(1907), + [aux_sym_tunnel_device_token1] = ACTIONS(1905), + [aux_sym_update_host_keys_token1] = ACTIONS(1905), + [aux_sym_use_keychain_token1] = ACTIONS(1905), + [aux_sym_use_roaming_token1] = ACTIONS(1905), + [aux_sym_user_token1] = ACTIONS(1907), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1905), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1905), + [aux_sym_visual_host_key_token1] = ACTIONS(1905), + [aux_sym_xauth_location_token1] = ACTIONS(1905), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1908), - [anon_sym_DQUOTE] = ACTIONS(1910), - [aux_sym_match_token1] = ACTIONS(1906), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1906), - [aux_sym_address_family_token1] = ACTIONS(1906), - [aux_sym_batch_mode_token1] = ACTIONS(1906), - [aux_sym_bind_address_token1] = ACTIONS(1906), - [aux_sym_bind_interface_token1] = ACTIONS(1906), - [aux_sym_canonical_domains_token1] = ACTIONS(1906), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1906), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1906), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1906), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1906), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1906), - [aux_sym_certificate_file_token1] = ACTIONS(1906), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1906), - [aux_sym_channel_timeout_token1] = ACTIONS(1906), - [aux_sym_check_host_ip_token1] = ACTIONS(1906), - [aux_sym_ciphers_token1] = ACTIONS(1906), - [aux_sym_cipher_token1] = ACTIONS(1908), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1906), - [aux_sym_compression_token1] = ACTIONS(1906), - [aux_sym_connection_attempts_token1] = ACTIONS(1906), - [aux_sym_connect_timeout_token1] = ACTIONS(1906), - [aux_sym_control_master_token1] = ACTIONS(1906), - [aux_sym_control_path_token1] = ACTIONS(1906), - [aux_sym_control_persist_token1] = ACTIONS(1906), - [aux_sym_dynamic_forward_token1] = ACTIONS(1906), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1906), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1906), - [aux_sym_escape_char_token1] = ACTIONS(1906), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1906), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1906), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1906), - [aux_sym_forward_agent_token1] = ACTIONS(1906), - [aux_sym_forward_x11_token1] = ACTIONS(1908), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1906), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1906), - [aux_sym_gateway_ports_token1] = ACTIONS(1906), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1906), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1906), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1906), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1906), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1906), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1906), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1906), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1906), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1906), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1906), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1906), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1906), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1906), - [aux_sym_host_key_alias_token1] = ACTIONS(1906), - [aux_sym_hostname_token1] = ACTIONS(1906), - [aux_sym_identities_only_token1] = ACTIONS(1906), - [aux_sym_identity_agent_token1] = ACTIONS(1906), - [aux_sym_identity_file_token1] = ACTIONS(1906), - [aux_sym_ignore_unknown_token1] = ACTIONS(1906), - [aux_sym_include_token1] = ACTIONS(1906), - [aux_sym_ip_qos_token1] = ACTIONS(1906), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1906), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1906), - [aux_sym_kex_algorithms_token1] = ACTIONS(1906), - [aux_sym_known_hosts_command_token1] = ACTIONS(1906), - [aux_sym_local_command_token1] = ACTIONS(1906), - [aux_sym_local_forward_token1] = ACTIONS(1906), - [aux_sym_log_level_token1] = ACTIONS(1906), - [aux_sym_log_verbose_token1] = ACTIONS(1906), - [aux_sym_macs_token1] = ACTIONS(1906), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1906), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1906), - [aux_sym_password_authentication_token1] = ACTIONS(1906), - [aux_sym_permit_local_command_token1] = ACTIONS(1906), - [aux_sym_permit_remote_open_token1] = ACTIONS(1906), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1906), - [aux_sym_port_token1] = ACTIONS(1906), - [aux_sym_preferred_authentications_token1] = ACTIONS(1906), - [aux_sym_protocol_token1] = ACTIONS(1906), - [aux_sym_proxy_command_token1] = ACTIONS(1906), - [aux_sym_proxy_jump_token1] = ACTIONS(1906), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1906), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1906), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1906), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1906), - [aux_sym_rekey_limit_token1] = ACTIONS(1906), - [aux_sym_remote_command_token1] = ACTIONS(1906), - [aux_sym_remote_forward_token1] = ACTIONS(1906), - [aux_sym_request_tty_token1] = ACTIONS(1906), - [aux_sym_required_rsa_size_token1] = ACTIONS(1906), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1906), - [aux_sym_security_key_provider_token1] = ACTIONS(1906), - [aux_sym_send_env_token1] = ACTIONS(1906), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1906), - [aux_sym_server_alive_interval_token1] = ACTIONS(1906), - [aux_sym_session_type_token1] = ACTIONS(1906), - [aux_sym_set_env_token1] = ACTIONS(1906), - [aux_sym_stdin_null_token1] = ACTIONS(1906), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1906), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1906), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1906), - [aux_sym_syslog_facility_token1] = ACTIONS(1906), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1906), - [aux_sym_keep_alive_token1] = ACTIONS(1906), - [aux_sym_tag_token1] = ACTIONS(1906), - [aux_sym_tunnel_token1] = ACTIONS(1908), - [aux_sym_tunnel_device_token1] = ACTIONS(1906), - [aux_sym_update_host_keys_token1] = ACTIONS(1906), - [aux_sym_use_keychain_token1] = ACTIONS(1906), - [aux_sym_use_roaming_token1] = ACTIONS(1906), - [aux_sym_user_token1] = ACTIONS(1908), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1906), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1906), - [aux_sym_visual_host_key_token1] = ACTIONS(1906), - [aux_sym_xauth_location_token1] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(1915), + [aux_sym_match_token1] = ACTIONS(1911), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1911), + [aux_sym_address_family_token1] = ACTIONS(1911), + [aux_sym_batch_mode_token1] = ACTIONS(1911), + [aux_sym_bind_address_token1] = ACTIONS(1911), + [aux_sym_bind_interface_token1] = ACTIONS(1911), + [aux_sym_canonical_domains_token1] = ACTIONS(1911), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1911), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1911), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1911), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1911), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1911), + [aux_sym_certificate_file_token1] = ACTIONS(1911), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1911), + [aux_sym_channel_timeout_token1] = ACTIONS(1911), + [aux_sym_check_host_ip_token1] = ACTIONS(1911), + [aux_sym_ciphers_token1] = ACTIONS(1911), + [aux_sym_cipher_token1] = ACTIONS(1913), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1911), + [aux_sym_compression_token1] = ACTIONS(1911), + [aux_sym_connection_attempts_token1] = ACTIONS(1911), + [aux_sym_connect_timeout_token1] = ACTIONS(1911), + [aux_sym_control_master_token1] = ACTIONS(1911), + [aux_sym_control_path_token1] = ACTIONS(1911), + [aux_sym_control_persist_token1] = ACTIONS(1911), + [aux_sym_dynamic_forward_token1] = ACTIONS(1911), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1911), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1911), + [aux_sym_escape_char_token1] = ACTIONS(1911), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1911), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1911), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1911), + [aux_sym_forward_agent_token1] = ACTIONS(1911), + [aux_sym_forward_x11_token1] = ACTIONS(1913), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1911), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1911), + [aux_sym_gateway_ports_token1] = ACTIONS(1911), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1911), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1911), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1911), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1911), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1911), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1911), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1911), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1911), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1911), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1911), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1911), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1911), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1911), + [aux_sym_host_key_alias_token1] = ACTIONS(1911), + [aux_sym_hostname_token1] = ACTIONS(1911), + [aux_sym_identities_only_token1] = ACTIONS(1911), + [aux_sym_identity_agent_token1] = ACTIONS(1911), + [aux_sym_identity_file_token1] = ACTIONS(1911), + [aux_sym_ignore_unknown_token1] = ACTIONS(1911), + [aux_sym_include_token1] = ACTIONS(1911), + [aux_sym_ip_qos_token1] = ACTIONS(1911), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1911), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1911), + [aux_sym_kex_algorithms_token1] = ACTIONS(1911), + [aux_sym_known_hosts_command_token1] = ACTIONS(1911), + [aux_sym_local_command_token1] = ACTIONS(1911), + [aux_sym_local_forward_token1] = ACTIONS(1911), + [aux_sym_log_level_token1] = ACTIONS(1911), + [aux_sym_log_verbose_token1] = ACTIONS(1911), + [aux_sym_macs_token1] = ACTIONS(1911), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1911), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1911), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1911), + [aux_sym_password_authentication_token1] = ACTIONS(1911), + [aux_sym_permit_local_command_token1] = ACTIONS(1911), + [aux_sym_permit_remote_open_token1] = ACTIONS(1911), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1911), + [aux_sym_port_token1] = ACTIONS(1911), + [aux_sym_preferred_authentications_token1] = ACTIONS(1911), + [aux_sym_protocol_token1] = ACTIONS(1911), + [aux_sym_proxy_command_token1] = ACTIONS(1911), + [aux_sym_proxy_jump_token1] = ACTIONS(1911), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1911), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1911), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1911), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1911), + [aux_sym_rekey_limit_token1] = ACTIONS(1911), + [aux_sym_remote_command_token1] = ACTIONS(1911), + [aux_sym_remote_forward_token1] = ACTIONS(1911), + [aux_sym_request_tty_token1] = ACTIONS(1911), + [aux_sym_required_rsa_size_token1] = ACTIONS(1911), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1911), + [aux_sym_security_key_provider_token1] = ACTIONS(1911), + [aux_sym_send_env_token1] = ACTIONS(1911), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1911), + [aux_sym_server_alive_interval_token1] = ACTIONS(1911), + [aux_sym_session_type_token1] = ACTIONS(1911), + [aux_sym_set_env_token1] = ACTIONS(1911), + [aux_sym_stdin_null_token1] = ACTIONS(1911), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1911), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1911), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1911), + [aux_sym_syslog_facility_token1] = ACTIONS(1911), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1911), + [aux_sym_keep_alive_token1] = ACTIONS(1911), + [aux_sym_tag_token1] = ACTIONS(1911), + [aux_sym_tunnel_token1] = ACTIONS(1913), + [aux_sym_tunnel_device_token1] = ACTIONS(1911), + [aux_sym_update_host_keys_token1] = ACTIONS(1911), + [aux_sym_use_keychain_token1] = ACTIONS(1911), + [aux_sym_use_roaming_token1] = ACTIONS(1911), + [aux_sym_user_token1] = ACTIONS(1913), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1911), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1911), + [aux_sym_visual_host_key_token1] = ACTIONS(1911), + [aux_sym_xauth_location_token1] = ACTIONS(1911), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1914), - [anon_sym_DQUOTE] = ACTIONS(1916), - [aux_sym_match_token1] = ACTIONS(1912), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1912), - [aux_sym_address_family_token1] = ACTIONS(1912), - [aux_sym_batch_mode_token1] = ACTIONS(1912), - [aux_sym_bind_address_token1] = ACTIONS(1912), - [aux_sym_bind_interface_token1] = ACTIONS(1912), - [aux_sym_canonical_domains_token1] = ACTIONS(1912), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1912), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1912), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1912), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1912), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1912), - [aux_sym_certificate_file_token1] = ACTIONS(1912), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1912), - [aux_sym_channel_timeout_token1] = ACTIONS(1912), - [aux_sym_check_host_ip_token1] = ACTIONS(1912), - [aux_sym_ciphers_token1] = ACTIONS(1912), - [aux_sym_cipher_token1] = ACTIONS(1914), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1912), - [aux_sym_compression_token1] = ACTIONS(1912), - [aux_sym_connection_attempts_token1] = ACTIONS(1912), - [aux_sym_connect_timeout_token1] = ACTIONS(1912), - [aux_sym_control_master_token1] = ACTIONS(1912), - [aux_sym_control_path_token1] = ACTIONS(1912), - [aux_sym_control_persist_token1] = ACTIONS(1912), - [aux_sym_dynamic_forward_token1] = ACTIONS(1912), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1912), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1912), - [aux_sym_escape_char_token1] = ACTIONS(1912), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1912), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1912), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1912), - [aux_sym_forward_agent_token1] = ACTIONS(1912), - [aux_sym_forward_x11_token1] = ACTIONS(1914), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1912), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1912), - [aux_sym_gateway_ports_token1] = ACTIONS(1912), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1912), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1912), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1912), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1912), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1912), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1912), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1912), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1912), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1912), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1912), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1912), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1912), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1912), - [aux_sym_host_key_alias_token1] = ACTIONS(1912), - [aux_sym_hostname_token1] = ACTIONS(1912), - [aux_sym_identities_only_token1] = ACTIONS(1912), - [aux_sym_identity_agent_token1] = ACTIONS(1912), - [aux_sym_identity_file_token1] = ACTIONS(1912), - [aux_sym_ignore_unknown_token1] = ACTIONS(1912), - [aux_sym_include_token1] = ACTIONS(1912), - [aux_sym_ip_qos_token1] = ACTIONS(1912), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1912), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1912), - [aux_sym_kex_algorithms_token1] = ACTIONS(1912), - [aux_sym_known_hosts_command_token1] = ACTIONS(1912), - [aux_sym_local_command_token1] = ACTIONS(1912), - [aux_sym_local_forward_token1] = ACTIONS(1912), - [aux_sym_log_level_token1] = ACTIONS(1912), - [aux_sym_log_verbose_token1] = ACTIONS(1912), - [aux_sym_macs_token1] = ACTIONS(1912), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1912), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1912), - [aux_sym_password_authentication_token1] = ACTIONS(1912), - [aux_sym_permit_local_command_token1] = ACTIONS(1912), - [aux_sym_permit_remote_open_token1] = ACTIONS(1912), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1912), - [aux_sym_port_token1] = ACTIONS(1912), - [aux_sym_preferred_authentications_token1] = ACTIONS(1912), - [aux_sym_protocol_token1] = ACTIONS(1912), - [aux_sym_proxy_command_token1] = ACTIONS(1912), - [aux_sym_proxy_jump_token1] = ACTIONS(1912), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1912), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1912), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1912), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1912), - [aux_sym_rekey_limit_token1] = ACTIONS(1912), - [aux_sym_remote_command_token1] = ACTIONS(1912), - [aux_sym_remote_forward_token1] = ACTIONS(1912), - [aux_sym_request_tty_token1] = ACTIONS(1912), - [aux_sym_required_rsa_size_token1] = ACTIONS(1912), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1912), - [aux_sym_security_key_provider_token1] = ACTIONS(1912), - [aux_sym_send_env_token1] = ACTIONS(1912), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1912), - [aux_sym_server_alive_interval_token1] = ACTIONS(1912), - [aux_sym_session_type_token1] = ACTIONS(1912), - [aux_sym_set_env_token1] = ACTIONS(1912), - [aux_sym_stdin_null_token1] = ACTIONS(1912), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1912), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1912), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1912), - [aux_sym_syslog_facility_token1] = ACTIONS(1912), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1912), - [aux_sym_keep_alive_token1] = ACTIONS(1912), - [aux_sym_tag_token1] = ACTIONS(1912), - [aux_sym_tunnel_token1] = ACTIONS(1914), - [aux_sym_tunnel_device_token1] = ACTIONS(1912), - [aux_sym_update_host_keys_token1] = ACTIONS(1912), - [aux_sym_use_keychain_token1] = ACTIONS(1912), - [aux_sym_use_roaming_token1] = ACTIONS(1912), - [aux_sym_user_token1] = ACTIONS(1914), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1912), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1912), - [aux_sym_visual_host_key_token1] = ACTIONS(1912), - [aux_sym_xauth_location_token1] = ACTIONS(1912), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(1921), + [aux_sym_match_token1] = ACTIONS(1917), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1917), + [aux_sym_address_family_token1] = ACTIONS(1917), + [aux_sym_batch_mode_token1] = ACTIONS(1917), + [aux_sym_bind_address_token1] = ACTIONS(1917), + [aux_sym_bind_interface_token1] = ACTIONS(1917), + [aux_sym_canonical_domains_token1] = ACTIONS(1917), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1917), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1917), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1917), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1917), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1917), + [aux_sym_certificate_file_token1] = ACTIONS(1917), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1917), + [aux_sym_channel_timeout_token1] = ACTIONS(1917), + [aux_sym_check_host_ip_token1] = ACTIONS(1917), + [aux_sym_ciphers_token1] = ACTIONS(1917), + [aux_sym_cipher_token1] = ACTIONS(1919), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1917), + [aux_sym_compression_token1] = ACTIONS(1917), + [aux_sym_connection_attempts_token1] = ACTIONS(1917), + [aux_sym_connect_timeout_token1] = ACTIONS(1917), + [aux_sym_control_master_token1] = ACTIONS(1917), + [aux_sym_control_path_token1] = ACTIONS(1917), + [aux_sym_control_persist_token1] = ACTIONS(1917), + [aux_sym_dynamic_forward_token1] = ACTIONS(1917), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1917), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1917), + [aux_sym_escape_char_token1] = ACTIONS(1917), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1917), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1917), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1917), + [aux_sym_forward_agent_token1] = ACTIONS(1917), + [aux_sym_forward_x11_token1] = ACTIONS(1919), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1917), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1917), + [aux_sym_gateway_ports_token1] = ACTIONS(1917), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1917), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1917), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1917), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1917), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1917), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1917), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1917), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1917), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1917), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1917), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1917), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1917), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1917), + [aux_sym_host_key_alias_token1] = ACTIONS(1917), + [aux_sym_hostname_token1] = ACTIONS(1917), + [aux_sym_identities_only_token1] = ACTIONS(1917), + [aux_sym_identity_agent_token1] = ACTIONS(1917), + [aux_sym_identity_file_token1] = ACTIONS(1917), + [aux_sym_ignore_unknown_token1] = ACTIONS(1917), + [aux_sym_include_token1] = ACTIONS(1917), + [aux_sym_ip_qos_token1] = ACTIONS(1917), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1917), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1917), + [aux_sym_kex_algorithms_token1] = ACTIONS(1917), + [aux_sym_known_hosts_command_token1] = ACTIONS(1917), + [aux_sym_local_command_token1] = ACTIONS(1917), + [aux_sym_local_forward_token1] = ACTIONS(1917), + [aux_sym_log_level_token1] = ACTIONS(1917), + [aux_sym_log_verbose_token1] = ACTIONS(1917), + [aux_sym_macs_token1] = ACTIONS(1917), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1917), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1917), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1917), + [aux_sym_password_authentication_token1] = ACTIONS(1917), + [aux_sym_permit_local_command_token1] = ACTIONS(1917), + [aux_sym_permit_remote_open_token1] = ACTIONS(1917), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1917), + [aux_sym_port_token1] = ACTIONS(1917), + [aux_sym_preferred_authentications_token1] = ACTIONS(1917), + [aux_sym_protocol_token1] = ACTIONS(1917), + [aux_sym_proxy_command_token1] = ACTIONS(1917), + [aux_sym_proxy_jump_token1] = ACTIONS(1917), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1917), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1917), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1917), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1917), + [aux_sym_rekey_limit_token1] = ACTIONS(1917), + [aux_sym_remote_command_token1] = ACTIONS(1917), + [aux_sym_remote_forward_token1] = ACTIONS(1917), + [aux_sym_request_tty_token1] = ACTIONS(1917), + [aux_sym_required_rsa_size_token1] = ACTIONS(1917), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1917), + [aux_sym_security_key_provider_token1] = ACTIONS(1917), + [aux_sym_send_env_token1] = ACTIONS(1917), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1917), + [aux_sym_server_alive_interval_token1] = ACTIONS(1917), + [aux_sym_session_type_token1] = ACTIONS(1917), + [aux_sym_set_env_token1] = ACTIONS(1917), + [aux_sym_stdin_null_token1] = ACTIONS(1917), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1917), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1917), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1917), + [aux_sym_syslog_facility_token1] = ACTIONS(1917), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1917), + [aux_sym_keep_alive_token1] = ACTIONS(1917), + [aux_sym_tag_token1] = ACTIONS(1917), + [aux_sym_tunnel_token1] = ACTIONS(1919), + [aux_sym_tunnel_device_token1] = ACTIONS(1917), + [aux_sym_update_host_keys_token1] = ACTIONS(1917), + [aux_sym_use_keychain_token1] = ACTIONS(1917), + [aux_sym_use_roaming_token1] = ACTIONS(1917), + [aux_sym_user_token1] = ACTIONS(1919), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1917), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1917), + [aux_sym_visual_host_key_token1] = ACTIONS(1917), + [aux_sym_xauth_location_token1] = ACTIONS(1917), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1920), - [anon_sym_DQUOTE] = ACTIONS(1922), - [aux_sym_match_token1] = ACTIONS(1918), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1918), - [aux_sym_address_family_token1] = ACTIONS(1918), - [aux_sym_batch_mode_token1] = ACTIONS(1918), - [aux_sym_bind_address_token1] = ACTIONS(1918), - [aux_sym_bind_interface_token1] = ACTIONS(1918), - [aux_sym_canonical_domains_token1] = ACTIONS(1918), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1918), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1918), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1918), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1918), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1918), - [aux_sym_certificate_file_token1] = ACTIONS(1918), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1918), - [aux_sym_channel_timeout_token1] = ACTIONS(1918), - [aux_sym_check_host_ip_token1] = ACTIONS(1918), - [aux_sym_ciphers_token1] = ACTIONS(1918), - [aux_sym_cipher_token1] = ACTIONS(1920), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1918), - [aux_sym_compression_token1] = ACTIONS(1918), - [aux_sym_connection_attempts_token1] = ACTIONS(1918), - [aux_sym_connect_timeout_token1] = ACTIONS(1918), - [aux_sym_control_master_token1] = ACTIONS(1918), - [aux_sym_control_path_token1] = ACTIONS(1918), - [aux_sym_control_persist_token1] = ACTIONS(1918), - [aux_sym_dynamic_forward_token1] = ACTIONS(1918), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1918), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1918), - [aux_sym_escape_char_token1] = ACTIONS(1918), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1918), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1918), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1918), - [aux_sym_forward_agent_token1] = ACTIONS(1918), - [aux_sym_forward_x11_token1] = ACTIONS(1920), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1918), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1918), - [aux_sym_gateway_ports_token1] = ACTIONS(1918), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1918), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1918), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1918), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1918), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1918), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1918), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1918), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1918), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1918), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1918), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1918), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1918), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1918), - [aux_sym_host_key_alias_token1] = ACTIONS(1918), - [aux_sym_hostname_token1] = ACTIONS(1918), - [aux_sym_identities_only_token1] = ACTIONS(1918), - [aux_sym_identity_agent_token1] = ACTIONS(1918), - [aux_sym_identity_file_token1] = ACTIONS(1918), - [aux_sym_ignore_unknown_token1] = ACTIONS(1918), - [aux_sym_include_token1] = ACTIONS(1918), - [aux_sym_ip_qos_token1] = ACTIONS(1918), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1918), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1918), - [aux_sym_kex_algorithms_token1] = ACTIONS(1918), - [aux_sym_known_hosts_command_token1] = ACTIONS(1918), - [aux_sym_local_command_token1] = ACTIONS(1918), - [aux_sym_local_forward_token1] = ACTIONS(1918), - [aux_sym_log_level_token1] = ACTIONS(1918), - [aux_sym_log_verbose_token1] = ACTIONS(1918), - [aux_sym_macs_token1] = ACTIONS(1918), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1918), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1918), - [aux_sym_password_authentication_token1] = ACTIONS(1918), - [aux_sym_permit_local_command_token1] = ACTIONS(1918), - [aux_sym_permit_remote_open_token1] = ACTIONS(1918), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1918), - [aux_sym_port_token1] = ACTIONS(1918), - [aux_sym_preferred_authentications_token1] = ACTIONS(1918), - [aux_sym_protocol_token1] = ACTIONS(1918), - [aux_sym_proxy_command_token1] = ACTIONS(1918), - [aux_sym_proxy_jump_token1] = ACTIONS(1918), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1918), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1918), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1918), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1918), - [aux_sym_rekey_limit_token1] = ACTIONS(1918), - [aux_sym_remote_command_token1] = ACTIONS(1918), - [aux_sym_remote_forward_token1] = ACTIONS(1918), - [aux_sym_request_tty_token1] = ACTIONS(1918), - [aux_sym_required_rsa_size_token1] = ACTIONS(1918), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1918), - [aux_sym_security_key_provider_token1] = ACTIONS(1918), - [aux_sym_send_env_token1] = ACTIONS(1918), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1918), - [aux_sym_server_alive_interval_token1] = ACTIONS(1918), - [aux_sym_session_type_token1] = ACTIONS(1918), - [aux_sym_set_env_token1] = ACTIONS(1918), - [aux_sym_stdin_null_token1] = ACTIONS(1918), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1918), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1918), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1918), - [aux_sym_syslog_facility_token1] = ACTIONS(1918), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1918), - [aux_sym_keep_alive_token1] = ACTIONS(1918), - [aux_sym_tag_token1] = ACTIONS(1918), - [aux_sym_tunnel_token1] = ACTIONS(1920), - [aux_sym_tunnel_device_token1] = ACTIONS(1918), - [aux_sym_update_host_keys_token1] = ACTIONS(1918), - [aux_sym_use_keychain_token1] = ACTIONS(1918), - [aux_sym_use_roaming_token1] = ACTIONS(1918), - [aux_sym_user_token1] = ACTIONS(1920), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1918), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1918), - [aux_sym_visual_host_key_token1] = ACTIONS(1918), - [aux_sym_xauth_location_token1] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(1927), + [aux_sym_match_token1] = ACTIONS(1923), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1923), + [aux_sym_address_family_token1] = ACTIONS(1923), + [aux_sym_batch_mode_token1] = ACTIONS(1923), + [aux_sym_bind_address_token1] = ACTIONS(1923), + [aux_sym_bind_interface_token1] = ACTIONS(1923), + [aux_sym_canonical_domains_token1] = ACTIONS(1923), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1923), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1923), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1923), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1923), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1923), + [aux_sym_certificate_file_token1] = ACTIONS(1923), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1923), + [aux_sym_channel_timeout_token1] = ACTIONS(1923), + [aux_sym_check_host_ip_token1] = ACTIONS(1923), + [aux_sym_ciphers_token1] = ACTIONS(1923), + [aux_sym_cipher_token1] = ACTIONS(1925), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1923), + [aux_sym_compression_token1] = ACTIONS(1923), + [aux_sym_connection_attempts_token1] = ACTIONS(1923), + [aux_sym_connect_timeout_token1] = ACTIONS(1923), + [aux_sym_control_master_token1] = ACTIONS(1923), + [aux_sym_control_path_token1] = ACTIONS(1923), + [aux_sym_control_persist_token1] = ACTIONS(1923), + [aux_sym_dynamic_forward_token1] = ACTIONS(1923), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1923), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1923), + [aux_sym_escape_char_token1] = ACTIONS(1923), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1923), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1923), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1923), + [aux_sym_forward_agent_token1] = ACTIONS(1923), + [aux_sym_forward_x11_token1] = ACTIONS(1925), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1923), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1923), + [aux_sym_gateway_ports_token1] = ACTIONS(1923), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1923), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1923), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1923), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1923), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1923), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1923), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1923), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1923), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1923), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1923), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1923), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1923), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1923), + [aux_sym_host_key_alias_token1] = ACTIONS(1923), + [aux_sym_hostname_token1] = ACTIONS(1923), + [aux_sym_identities_only_token1] = ACTIONS(1923), + [aux_sym_identity_agent_token1] = ACTIONS(1923), + [aux_sym_identity_file_token1] = ACTIONS(1923), + [aux_sym_ignore_unknown_token1] = ACTIONS(1923), + [aux_sym_include_token1] = ACTIONS(1923), + [aux_sym_ip_qos_token1] = ACTIONS(1923), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1923), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1923), + [aux_sym_kex_algorithms_token1] = ACTIONS(1923), + [aux_sym_known_hosts_command_token1] = ACTIONS(1923), + [aux_sym_local_command_token1] = ACTIONS(1923), + [aux_sym_local_forward_token1] = ACTIONS(1923), + [aux_sym_log_level_token1] = ACTIONS(1923), + [aux_sym_log_verbose_token1] = ACTIONS(1923), + [aux_sym_macs_token1] = ACTIONS(1923), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1923), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1923), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1923), + [aux_sym_password_authentication_token1] = ACTIONS(1923), + [aux_sym_permit_local_command_token1] = ACTIONS(1923), + [aux_sym_permit_remote_open_token1] = ACTIONS(1923), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1923), + [aux_sym_port_token1] = ACTIONS(1923), + [aux_sym_preferred_authentications_token1] = ACTIONS(1923), + [aux_sym_protocol_token1] = ACTIONS(1923), + [aux_sym_proxy_command_token1] = ACTIONS(1923), + [aux_sym_proxy_jump_token1] = ACTIONS(1923), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1923), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1923), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1923), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1923), + [aux_sym_rekey_limit_token1] = ACTIONS(1923), + [aux_sym_remote_command_token1] = ACTIONS(1923), + [aux_sym_remote_forward_token1] = ACTIONS(1923), + [aux_sym_request_tty_token1] = ACTIONS(1923), + [aux_sym_required_rsa_size_token1] = ACTIONS(1923), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1923), + [aux_sym_security_key_provider_token1] = ACTIONS(1923), + [aux_sym_send_env_token1] = ACTIONS(1923), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1923), + [aux_sym_server_alive_interval_token1] = ACTIONS(1923), + [aux_sym_session_type_token1] = ACTIONS(1923), + [aux_sym_set_env_token1] = ACTIONS(1923), + [aux_sym_stdin_null_token1] = ACTIONS(1923), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1923), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1923), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1923), + [aux_sym_syslog_facility_token1] = ACTIONS(1923), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1923), + [aux_sym_keep_alive_token1] = ACTIONS(1923), + [aux_sym_tag_token1] = ACTIONS(1923), + [aux_sym_tunnel_token1] = ACTIONS(1925), + [aux_sym_tunnel_device_token1] = ACTIONS(1923), + [aux_sym_update_host_keys_token1] = ACTIONS(1923), + [aux_sym_use_keychain_token1] = ACTIONS(1923), + [aux_sym_use_roaming_token1] = ACTIONS(1923), + [aux_sym_user_token1] = ACTIONS(1925), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1923), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1923), + [aux_sym_visual_host_key_token1] = ACTIONS(1923), + [aux_sym_xauth_location_token1] = ACTIONS(1923), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1926), - [anon_sym_DQUOTE] = ACTIONS(1928), - [aux_sym_match_token1] = ACTIONS(1924), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1924), - [aux_sym_address_family_token1] = ACTIONS(1924), - [aux_sym_batch_mode_token1] = ACTIONS(1924), - [aux_sym_bind_address_token1] = ACTIONS(1924), - [aux_sym_bind_interface_token1] = ACTIONS(1924), - [aux_sym_canonical_domains_token1] = ACTIONS(1924), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1924), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1924), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1924), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1924), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1924), - [aux_sym_certificate_file_token1] = ACTIONS(1924), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1924), - [aux_sym_channel_timeout_token1] = ACTIONS(1924), - [aux_sym_check_host_ip_token1] = ACTIONS(1924), - [aux_sym_ciphers_token1] = ACTIONS(1924), - [aux_sym_cipher_token1] = ACTIONS(1926), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1924), - [aux_sym_compression_token1] = ACTIONS(1924), - [aux_sym_connection_attempts_token1] = ACTIONS(1924), - [aux_sym_connect_timeout_token1] = ACTIONS(1924), - [aux_sym_control_master_token1] = ACTIONS(1924), - [aux_sym_control_path_token1] = ACTIONS(1924), - [aux_sym_control_persist_token1] = ACTIONS(1924), - [aux_sym_dynamic_forward_token1] = ACTIONS(1924), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1924), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1924), - [aux_sym_escape_char_token1] = ACTIONS(1924), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1924), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1924), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1924), - [aux_sym_forward_agent_token1] = ACTIONS(1924), - [aux_sym_forward_x11_token1] = ACTIONS(1926), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1924), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1924), - [aux_sym_gateway_ports_token1] = ACTIONS(1924), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1924), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1924), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1924), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1924), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1924), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1924), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1924), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1924), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1924), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1924), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1924), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1924), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1924), - [aux_sym_host_key_alias_token1] = ACTIONS(1924), - [aux_sym_hostname_token1] = ACTIONS(1924), - [aux_sym_identities_only_token1] = ACTIONS(1924), - [aux_sym_identity_agent_token1] = ACTIONS(1924), - [aux_sym_identity_file_token1] = ACTIONS(1924), - [aux_sym_ignore_unknown_token1] = ACTIONS(1924), - [aux_sym_include_token1] = ACTIONS(1924), - [aux_sym_ip_qos_token1] = ACTIONS(1924), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1924), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1924), - [aux_sym_kex_algorithms_token1] = ACTIONS(1924), - [aux_sym_known_hosts_command_token1] = ACTIONS(1924), - [aux_sym_local_command_token1] = ACTIONS(1924), - [aux_sym_local_forward_token1] = ACTIONS(1924), - [aux_sym_log_level_token1] = ACTIONS(1924), - [aux_sym_log_verbose_token1] = ACTIONS(1924), - [aux_sym_macs_token1] = ACTIONS(1924), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1924), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1924), - [aux_sym_password_authentication_token1] = ACTIONS(1924), - [aux_sym_permit_local_command_token1] = ACTIONS(1924), - [aux_sym_permit_remote_open_token1] = ACTIONS(1924), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1924), - [aux_sym_port_token1] = ACTIONS(1924), - [aux_sym_preferred_authentications_token1] = ACTIONS(1924), - [aux_sym_protocol_token1] = ACTIONS(1924), - [aux_sym_proxy_command_token1] = ACTIONS(1924), - [aux_sym_proxy_jump_token1] = ACTIONS(1924), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1924), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1924), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1924), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1924), - [aux_sym_rekey_limit_token1] = ACTIONS(1924), - [aux_sym_remote_command_token1] = ACTIONS(1924), - [aux_sym_remote_forward_token1] = ACTIONS(1924), - [aux_sym_request_tty_token1] = ACTIONS(1924), - [aux_sym_required_rsa_size_token1] = ACTIONS(1924), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1924), - [aux_sym_security_key_provider_token1] = ACTIONS(1924), - [aux_sym_send_env_token1] = ACTIONS(1924), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1924), - [aux_sym_server_alive_interval_token1] = ACTIONS(1924), - [aux_sym_session_type_token1] = ACTIONS(1924), - [aux_sym_set_env_token1] = ACTIONS(1924), - [aux_sym_stdin_null_token1] = ACTIONS(1924), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1924), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1924), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1924), - [aux_sym_syslog_facility_token1] = ACTIONS(1924), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1924), - [aux_sym_keep_alive_token1] = ACTIONS(1924), - [aux_sym_tag_token1] = ACTIONS(1924), - [aux_sym_tunnel_token1] = ACTIONS(1926), - [aux_sym_tunnel_device_token1] = ACTIONS(1924), - [aux_sym_update_host_keys_token1] = ACTIONS(1924), - [aux_sym_use_keychain_token1] = ACTIONS(1924), - [aux_sym_use_roaming_token1] = ACTIONS(1924), - [aux_sym_user_token1] = ACTIONS(1926), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1924), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1924), - [aux_sym_visual_host_key_token1] = ACTIONS(1924), - [aux_sym_xauth_location_token1] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(1933), + [aux_sym_match_token1] = ACTIONS(1929), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1929), + [aux_sym_address_family_token1] = ACTIONS(1929), + [aux_sym_batch_mode_token1] = ACTIONS(1929), + [aux_sym_bind_address_token1] = ACTIONS(1929), + [aux_sym_bind_interface_token1] = ACTIONS(1929), + [aux_sym_canonical_domains_token1] = ACTIONS(1929), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1929), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1929), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1929), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1929), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1929), + [aux_sym_certificate_file_token1] = ACTIONS(1929), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1929), + [aux_sym_channel_timeout_token1] = ACTIONS(1929), + [aux_sym_check_host_ip_token1] = ACTIONS(1929), + [aux_sym_ciphers_token1] = ACTIONS(1929), + [aux_sym_cipher_token1] = ACTIONS(1931), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1929), + [aux_sym_compression_token1] = ACTIONS(1929), + [aux_sym_connection_attempts_token1] = ACTIONS(1929), + [aux_sym_connect_timeout_token1] = ACTIONS(1929), + [aux_sym_control_master_token1] = ACTIONS(1929), + [aux_sym_control_path_token1] = ACTIONS(1929), + [aux_sym_control_persist_token1] = ACTIONS(1929), + [aux_sym_dynamic_forward_token1] = ACTIONS(1929), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1929), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1929), + [aux_sym_escape_char_token1] = ACTIONS(1929), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1929), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1929), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1929), + [aux_sym_forward_agent_token1] = ACTIONS(1929), + [aux_sym_forward_x11_token1] = ACTIONS(1931), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1929), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1929), + [aux_sym_gateway_ports_token1] = ACTIONS(1929), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1929), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1929), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1929), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1929), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1929), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1929), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1929), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1929), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1929), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1929), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1929), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1929), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1929), + [aux_sym_host_key_alias_token1] = ACTIONS(1929), + [aux_sym_hostname_token1] = ACTIONS(1929), + [aux_sym_identities_only_token1] = ACTIONS(1929), + [aux_sym_identity_agent_token1] = ACTIONS(1929), + [aux_sym_identity_file_token1] = ACTIONS(1929), + [aux_sym_ignore_unknown_token1] = ACTIONS(1929), + [aux_sym_include_token1] = ACTIONS(1929), + [aux_sym_ip_qos_token1] = ACTIONS(1929), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1929), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1929), + [aux_sym_kex_algorithms_token1] = ACTIONS(1929), + [aux_sym_known_hosts_command_token1] = ACTIONS(1929), + [aux_sym_local_command_token1] = ACTIONS(1929), + [aux_sym_local_forward_token1] = ACTIONS(1929), + [aux_sym_log_level_token1] = ACTIONS(1929), + [aux_sym_log_verbose_token1] = ACTIONS(1929), + [aux_sym_macs_token1] = ACTIONS(1929), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1929), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1929), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1929), + [aux_sym_password_authentication_token1] = ACTIONS(1929), + [aux_sym_permit_local_command_token1] = ACTIONS(1929), + [aux_sym_permit_remote_open_token1] = ACTIONS(1929), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1929), + [aux_sym_port_token1] = ACTIONS(1929), + [aux_sym_preferred_authentications_token1] = ACTIONS(1929), + [aux_sym_protocol_token1] = ACTIONS(1929), + [aux_sym_proxy_command_token1] = ACTIONS(1929), + [aux_sym_proxy_jump_token1] = ACTIONS(1929), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1929), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1929), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1929), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1929), + [aux_sym_rekey_limit_token1] = ACTIONS(1929), + [aux_sym_remote_command_token1] = ACTIONS(1929), + [aux_sym_remote_forward_token1] = ACTIONS(1929), + [aux_sym_request_tty_token1] = ACTIONS(1929), + [aux_sym_required_rsa_size_token1] = ACTIONS(1929), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1929), + [aux_sym_security_key_provider_token1] = ACTIONS(1929), + [aux_sym_send_env_token1] = ACTIONS(1929), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1929), + [aux_sym_server_alive_interval_token1] = ACTIONS(1929), + [aux_sym_session_type_token1] = ACTIONS(1929), + [aux_sym_set_env_token1] = ACTIONS(1929), + [aux_sym_stdin_null_token1] = ACTIONS(1929), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1929), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1929), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1929), + [aux_sym_syslog_facility_token1] = ACTIONS(1929), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1929), + [aux_sym_keep_alive_token1] = ACTIONS(1929), + [aux_sym_tag_token1] = ACTIONS(1929), + [aux_sym_tunnel_token1] = ACTIONS(1931), + [aux_sym_tunnel_device_token1] = ACTIONS(1929), + [aux_sym_update_host_keys_token1] = ACTIONS(1929), + [aux_sym_use_keychain_token1] = ACTIONS(1929), + [aux_sym_use_roaming_token1] = ACTIONS(1929), + [aux_sym_user_token1] = ACTIONS(1931), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1929), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1929), + [aux_sym_visual_host_key_token1] = ACTIONS(1929), + [aux_sym_xauth_location_token1] = ACTIONS(1929), }, [229] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1932), - [anon_sym_DQUOTE] = ACTIONS(1934), - [aux_sym_match_token1] = ACTIONS(1930), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1930), - [aux_sym_address_family_token1] = ACTIONS(1930), - [aux_sym_batch_mode_token1] = ACTIONS(1930), - [aux_sym_bind_address_token1] = ACTIONS(1930), - [aux_sym_bind_interface_token1] = ACTIONS(1930), - [aux_sym_canonical_domains_token1] = ACTIONS(1930), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1930), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1930), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1930), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1930), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1930), - [aux_sym_certificate_file_token1] = ACTIONS(1930), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1930), - [aux_sym_channel_timeout_token1] = ACTIONS(1930), - [aux_sym_check_host_ip_token1] = ACTIONS(1930), - [aux_sym_ciphers_token1] = ACTIONS(1930), - [aux_sym_cipher_token1] = ACTIONS(1932), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1930), - [aux_sym_compression_token1] = ACTIONS(1930), - [aux_sym_connection_attempts_token1] = ACTIONS(1930), - [aux_sym_connect_timeout_token1] = ACTIONS(1930), - [aux_sym_control_master_token1] = ACTIONS(1930), - [aux_sym_control_path_token1] = ACTIONS(1930), - [aux_sym_control_persist_token1] = ACTIONS(1930), - [aux_sym_dynamic_forward_token1] = ACTIONS(1930), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1930), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1930), - [aux_sym_escape_char_token1] = ACTIONS(1930), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1930), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1930), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1930), - [aux_sym_forward_agent_token1] = ACTIONS(1930), - [aux_sym_forward_x11_token1] = ACTIONS(1932), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1930), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1930), - [aux_sym_gateway_ports_token1] = ACTIONS(1930), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1930), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1930), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1930), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1930), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1930), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1930), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1930), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1930), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1930), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1930), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1930), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1930), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1930), - [aux_sym_host_key_alias_token1] = ACTIONS(1930), - [aux_sym_hostname_token1] = ACTIONS(1930), - [aux_sym_identities_only_token1] = ACTIONS(1930), - [aux_sym_identity_agent_token1] = ACTIONS(1930), - [aux_sym_identity_file_token1] = ACTIONS(1930), - [aux_sym_ignore_unknown_token1] = ACTIONS(1930), - [aux_sym_include_token1] = ACTIONS(1930), - [aux_sym_ip_qos_token1] = ACTIONS(1930), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1930), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1930), - [aux_sym_kex_algorithms_token1] = ACTIONS(1930), - [aux_sym_known_hosts_command_token1] = ACTIONS(1930), - [aux_sym_local_command_token1] = ACTIONS(1930), - [aux_sym_local_forward_token1] = ACTIONS(1930), - [aux_sym_log_level_token1] = ACTIONS(1930), - [aux_sym_log_verbose_token1] = ACTIONS(1930), - [aux_sym_macs_token1] = ACTIONS(1930), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1930), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1930), - [aux_sym_password_authentication_token1] = ACTIONS(1930), - [aux_sym_permit_local_command_token1] = ACTIONS(1930), - [aux_sym_permit_remote_open_token1] = ACTIONS(1930), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1930), - [aux_sym_port_token1] = ACTIONS(1930), - [aux_sym_preferred_authentications_token1] = ACTIONS(1930), - [aux_sym_protocol_token1] = ACTIONS(1930), - [aux_sym_proxy_command_token1] = ACTIONS(1930), - [aux_sym_proxy_jump_token1] = ACTIONS(1930), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1930), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1930), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1930), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1930), - [aux_sym_rekey_limit_token1] = ACTIONS(1930), - [aux_sym_remote_command_token1] = ACTIONS(1930), - [aux_sym_remote_forward_token1] = ACTIONS(1930), - [aux_sym_request_tty_token1] = ACTIONS(1930), - [aux_sym_required_rsa_size_token1] = ACTIONS(1930), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1930), - [aux_sym_security_key_provider_token1] = ACTIONS(1930), - [aux_sym_send_env_token1] = ACTIONS(1930), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1930), - [aux_sym_server_alive_interval_token1] = ACTIONS(1930), - [aux_sym_session_type_token1] = ACTIONS(1930), - [aux_sym_set_env_token1] = ACTIONS(1930), - [aux_sym_stdin_null_token1] = ACTIONS(1930), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1930), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1930), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1930), - [aux_sym_syslog_facility_token1] = ACTIONS(1930), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1930), - [aux_sym_keep_alive_token1] = ACTIONS(1930), - [aux_sym_tag_token1] = ACTIONS(1930), - [aux_sym_tunnel_token1] = ACTIONS(1932), - [aux_sym_tunnel_device_token1] = ACTIONS(1930), - [aux_sym_update_host_keys_token1] = ACTIONS(1930), - [aux_sym_use_keychain_token1] = ACTIONS(1930), - [aux_sym_use_roaming_token1] = ACTIONS(1930), - [aux_sym_user_token1] = ACTIONS(1932), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1930), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1930), - [aux_sym_visual_host_key_token1] = ACTIONS(1930), - [aux_sym_xauth_location_token1] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(1939), + [aux_sym_match_token1] = ACTIONS(1935), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1935), + [aux_sym_address_family_token1] = ACTIONS(1935), + [aux_sym_batch_mode_token1] = ACTIONS(1935), + [aux_sym_bind_address_token1] = ACTIONS(1935), + [aux_sym_bind_interface_token1] = ACTIONS(1935), + [aux_sym_canonical_domains_token1] = ACTIONS(1935), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1935), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1935), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1935), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1935), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1935), + [aux_sym_certificate_file_token1] = ACTIONS(1935), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1935), + [aux_sym_channel_timeout_token1] = ACTIONS(1935), + [aux_sym_check_host_ip_token1] = ACTIONS(1935), + [aux_sym_ciphers_token1] = ACTIONS(1935), + [aux_sym_cipher_token1] = ACTIONS(1937), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1935), + [aux_sym_compression_token1] = ACTIONS(1935), + [aux_sym_connection_attempts_token1] = ACTIONS(1935), + [aux_sym_connect_timeout_token1] = ACTIONS(1935), + [aux_sym_control_master_token1] = ACTIONS(1935), + [aux_sym_control_path_token1] = ACTIONS(1935), + [aux_sym_control_persist_token1] = ACTIONS(1935), + [aux_sym_dynamic_forward_token1] = ACTIONS(1935), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1935), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1935), + [aux_sym_escape_char_token1] = ACTIONS(1935), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1935), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1935), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1935), + [aux_sym_forward_agent_token1] = ACTIONS(1935), + [aux_sym_forward_x11_token1] = ACTIONS(1937), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1935), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1935), + [aux_sym_gateway_ports_token1] = ACTIONS(1935), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1935), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1935), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1935), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1935), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1935), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1935), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1935), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1935), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1935), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1935), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1935), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1935), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1935), + [aux_sym_host_key_alias_token1] = ACTIONS(1935), + [aux_sym_hostname_token1] = ACTIONS(1935), + [aux_sym_identities_only_token1] = ACTIONS(1935), + [aux_sym_identity_agent_token1] = ACTIONS(1935), + [aux_sym_identity_file_token1] = ACTIONS(1935), + [aux_sym_ignore_unknown_token1] = ACTIONS(1935), + [aux_sym_include_token1] = ACTIONS(1935), + [aux_sym_ip_qos_token1] = ACTIONS(1935), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1935), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1935), + [aux_sym_kex_algorithms_token1] = ACTIONS(1935), + [aux_sym_known_hosts_command_token1] = ACTIONS(1935), + [aux_sym_local_command_token1] = ACTIONS(1935), + [aux_sym_local_forward_token1] = ACTIONS(1935), + [aux_sym_log_level_token1] = ACTIONS(1935), + [aux_sym_log_verbose_token1] = ACTIONS(1935), + [aux_sym_macs_token1] = ACTIONS(1935), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1935), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1935), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1935), + [aux_sym_password_authentication_token1] = ACTIONS(1935), + [aux_sym_permit_local_command_token1] = ACTIONS(1935), + [aux_sym_permit_remote_open_token1] = ACTIONS(1935), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1935), + [aux_sym_port_token1] = ACTIONS(1935), + [aux_sym_preferred_authentications_token1] = ACTIONS(1935), + [aux_sym_protocol_token1] = ACTIONS(1935), + [aux_sym_proxy_command_token1] = ACTIONS(1935), + [aux_sym_proxy_jump_token1] = ACTIONS(1935), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1935), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1935), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1935), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1935), + [aux_sym_rekey_limit_token1] = ACTIONS(1935), + [aux_sym_remote_command_token1] = ACTIONS(1935), + [aux_sym_remote_forward_token1] = ACTIONS(1935), + [aux_sym_request_tty_token1] = ACTIONS(1935), + [aux_sym_required_rsa_size_token1] = ACTIONS(1935), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1935), + [aux_sym_security_key_provider_token1] = ACTIONS(1935), + [aux_sym_send_env_token1] = ACTIONS(1935), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1935), + [aux_sym_server_alive_interval_token1] = ACTIONS(1935), + [aux_sym_session_type_token1] = ACTIONS(1935), + [aux_sym_set_env_token1] = ACTIONS(1935), + [aux_sym_stdin_null_token1] = ACTIONS(1935), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1935), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1935), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1935), + [aux_sym_syslog_facility_token1] = ACTIONS(1935), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1935), + [aux_sym_keep_alive_token1] = ACTIONS(1935), + [aux_sym_tag_token1] = ACTIONS(1935), + [aux_sym_tunnel_token1] = ACTIONS(1937), + [aux_sym_tunnel_device_token1] = ACTIONS(1935), + [aux_sym_update_host_keys_token1] = ACTIONS(1935), + [aux_sym_use_keychain_token1] = ACTIONS(1935), + [aux_sym_use_roaming_token1] = ACTIONS(1935), + [aux_sym_user_token1] = ACTIONS(1937), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1935), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1935), + [aux_sym_visual_host_key_token1] = ACTIONS(1935), + [aux_sym_xauth_location_token1] = ACTIONS(1935), }, [230] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1938), - [anon_sym_DQUOTE] = ACTIONS(1940), - [aux_sym_match_token1] = ACTIONS(1936), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1936), - [aux_sym_address_family_token1] = ACTIONS(1936), - [aux_sym_batch_mode_token1] = ACTIONS(1936), - [aux_sym_bind_address_token1] = ACTIONS(1936), - [aux_sym_bind_interface_token1] = ACTIONS(1936), - [aux_sym_canonical_domains_token1] = ACTIONS(1936), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1936), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1936), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1936), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1936), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1936), - [aux_sym_certificate_file_token1] = ACTIONS(1936), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1936), - [aux_sym_channel_timeout_token1] = ACTIONS(1936), - [aux_sym_check_host_ip_token1] = ACTIONS(1936), - [aux_sym_ciphers_token1] = ACTIONS(1936), - [aux_sym_cipher_token1] = ACTIONS(1938), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1936), - [aux_sym_compression_token1] = ACTIONS(1936), - [aux_sym_connection_attempts_token1] = ACTIONS(1936), - [aux_sym_connect_timeout_token1] = ACTIONS(1936), - [aux_sym_control_master_token1] = ACTIONS(1936), - [aux_sym_control_path_token1] = ACTIONS(1936), - [aux_sym_control_persist_token1] = ACTIONS(1936), - [aux_sym_dynamic_forward_token1] = ACTIONS(1936), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1936), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1936), - [aux_sym_escape_char_token1] = ACTIONS(1936), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1936), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1936), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1936), - [aux_sym_forward_agent_token1] = ACTIONS(1936), - [aux_sym_forward_x11_token1] = ACTIONS(1938), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1936), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1936), - [aux_sym_gateway_ports_token1] = ACTIONS(1936), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1936), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1936), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1936), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1936), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1936), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1936), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1936), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1936), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1936), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1936), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1936), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1936), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1936), - [aux_sym_host_key_alias_token1] = ACTIONS(1936), - [aux_sym_hostname_token1] = ACTIONS(1936), - [aux_sym_identities_only_token1] = ACTIONS(1936), - [aux_sym_identity_agent_token1] = ACTIONS(1936), - [aux_sym_identity_file_token1] = ACTIONS(1936), - [aux_sym_ignore_unknown_token1] = ACTIONS(1936), - [aux_sym_include_token1] = ACTIONS(1936), - [aux_sym_ip_qos_token1] = ACTIONS(1936), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1936), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1936), - [aux_sym_kex_algorithms_token1] = ACTIONS(1936), - [aux_sym_known_hosts_command_token1] = ACTIONS(1936), - [aux_sym_local_command_token1] = ACTIONS(1936), - [aux_sym_local_forward_token1] = ACTIONS(1936), - [aux_sym_log_level_token1] = ACTIONS(1936), - [aux_sym_log_verbose_token1] = ACTIONS(1936), - [aux_sym_macs_token1] = ACTIONS(1936), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1936), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1936), - [aux_sym_password_authentication_token1] = ACTIONS(1936), - [aux_sym_permit_local_command_token1] = ACTIONS(1936), - [aux_sym_permit_remote_open_token1] = ACTIONS(1936), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1936), - [aux_sym_port_token1] = ACTIONS(1936), - [aux_sym_preferred_authentications_token1] = ACTIONS(1936), - [aux_sym_protocol_token1] = ACTIONS(1936), - [aux_sym_proxy_command_token1] = ACTIONS(1936), - [aux_sym_proxy_jump_token1] = ACTIONS(1936), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1936), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1936), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1936), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1936), - [aux_sym_rekey_limit_token1] = ACTIONS(1936), - [aux_sym_remote_command_token1] = ACTIONS(1936), - [aux_sym_remote_forward_token1] = ACTIONS(1936), - [aux_sym_request_tty_token1] = ACTIONS(1936), - [aux_sym_required_rsa_size_token1] = ACTIONS(1936), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1936), - [aux_sym_security_key_provider_token1] = ACTIONS(1936), - [aux_sym_send_env_token1] = ACTIONS(1936), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1936), - [aux_sym_server_alive_interval_token1] = ACTIONS(1936), - [aux_sym_session_type_token1] = ACTIONS(1936), - [aux_sym_set_env_token1] = ACTIONS(1936), - [aux_sym_stdin_null_token1] = ACTIONS(1936), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1936), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1936), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1936), - [aux_sym_syslog_facility_token1] = ACTIONS(1936), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1936), - [aux_sym_keep_alive_token1] = ACTIONS(1936), - [aux_sym_tag_token1] = ACTIONS(1936), - [aux_sym_tunnel_token1] = ACTIONS(1938), - [aux_sym_tunnel_device_token1] = ACTIONS(1936), - [aux_sym_update_host_keys_token1] = ACTIONS(1936), - [aux_sym_use_keychain_token1] = ACTIONS(1936), - [aux_sym_use_roaming_token1] = ACTIONS(1936), - [aux_sym_user_token1] = ACTIONS(1938), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1936), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1936), - [aux_sym_visual_host_key_token1] = ACTIONS(1936), - [aux_sym_xauth_location_token1] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(1945), + [aux_sym_match_token1] = ACTIONS(1941), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1941), + [aux_sym_address_family_token1] = ACTIONS(1941), + [aux_sym_batch_mode_token1] = ACTIONS(1941), + [aux_sym_bind_address_token1] = ACTIONS(1941), + [aux_sym_bind_interface_token1] = ACTIONS(1941), + [aux_sym_canonical_domains_token1] = ACTIONS(1941), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1941), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1941), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1941), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1941), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1941), + [aux_sym_certificate_file_token1] = ACTIONS(1941), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1941), + [aux_sym_channel_timeout_token1] = ACTIONS(1941), + [aux_sym_check_host_ip_token1] = ACTIONS(1941), + [aux_sym_ciphers_token1] = ACTIONS(1941), + [aux_sym_cipher_token1] = ACTIONS(1943), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1941), + [aux_sym_compression_token1] = ACTIONS(1941), + [aux_sym_connection_attempts_token1] = ACTIONS(1941), + [aux_sym_connect_timeout_token1] = ACTIONS(1941), + [aux_sym_control_master_token1] = ACTIONS(1941), + [aux_sym_control_path_token1] = ACTIONS(1941), + [aux_sym_control_persist_token1] = ACTIONS(1941), + [aux_sym_dynamic_forward_token1] = ACTIONS(1941), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1941), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1941), + [aux_sym_escape_char_token1] = ACTIONS(1941), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1941), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1941), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1941), + [aux_sym_forward_agent_token1] = ACTIONS(1941), + [aux_sym_forward_x11_token1] = ACTIONS(1943), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1941), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1941), + [aux_sym_gateway_ports_token1] = ACTIONS(1941), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1941), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1941), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1941), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1941), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1941), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1941), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1941), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1941), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1941), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1941), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1941), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1941), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1941), + [aux_sym_host_key_alias_token1] = ACTIONS(1941), + [aux_sym_hostname_token1] = ACTIONS(1941), + [aux_sym_identities_only_token1] = ACTIONS(1941), + [aux_sym_identity_agent_token1] = ACTIONS(1941), + [aux_sym_identity_file_token1] = ACTIONS(1941), + [aux_sym_ignore_unknown_token1] = ACTIONS(1941), + [aux_sym_include_token1] = ACTIONS(1941), + [aux_sym_ip_qos_token1] = ACTIONS(1941), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1941), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1941), + [aux_sym_kex_algorithms_token1] = ACTIONS(1941), + [aux_sym_known_hosts_command_token1] = ACTIONS(1941), + [aux_sym_local_command_token1] = ACTIONS(1941), + [aux_sym_local_forward_token1] = ACTIONS(1941), + [aux_sym_log_level_token1] = ACTIONS(1941), + [aux_sym_log_verbose_token1] = ACTIONS(1941), + [aux_sym_macs_token1] = ACTIONS(1941), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1941), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1941), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1941), + [aux_sym_password_authentication_token1] = ACTIONS(1941), + [aux_sym_permit_local_command_token1] = ACTIONS(1941), + [aux_sym_permit_remote_open_token1] = ACTIONS(1941), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1941), + [aux_sym_port_token1] = ACTIONS(1941), + [aux_sym_preferred_authentications_token1] = ACTIONS(1941), + [aux_sym_protocol_token1] = ACTIONS(1941), + [aux_sym_proxy_command_token1] = ACTIONS(1941), + [aux_sym_proxy_jump_token1] = ACTIONS(1941), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1941), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1941), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1941), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1941), + [aux_sym_rekey_limit_token1] = ACTIONS(1941), + [aux_sym_remote_command_token1] = ACTIONS(1941), + [aux_sym_remote_forward_token1] = ACTIONS(1941), + [aux_sym_request_tty_token1] = ACTIONS(1941), + [aux_sym_required_rsa_size_token1] = ACTIONS(1941), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1941), + [aux_sym_security_key_provider_token1] = ACTIONS(1941), + [aux_sym_send_env_token1] = ACTIONS(1941), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1941), + [aux_sym_server_alive_interval_token1] = ACTIONS(1941), + [aux_sym_session_type_token1] = ACTIONS(1941), + [aux_sym_set_env_token1] = ACTIONS(1941), + [aux_sym_stdin_null_token1] = ACTIONS(1941), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1941), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1941), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1941), + [aux_sym_syslog_facility_token1] = ACTIONS(1941), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1941), + [aux_sym_keep_alive_token1] = ACTIONS(1941), + [aux_sym_tag_token1] = ACTIONS(1941), + [aux_sym_tunnel_token1] = ACTIONS(1943), + [aux_sym_tunnel_device_token1] = ACTIONS(1941), + [aux_sym_update_host_keys_token1] = ACTIONS(1941), + [aux_sym_use_keychain_token1] = ACTIONS(1941), + [aux_sym_use_roaming_token1] = ACTIONS(1941), + [aux_sym_user_token1] = ACTIONS(1943), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1941), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1941), + [aux_sym_visual_host_key_token1] = ACTIONS(1941), + [aux_sym_xauth_location_token1] = ACTIONS(1941), }, [231] = { - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1944), - [anon_sym_DQUOTE] = ACTIONS(1942), - [aux_sym_match_token1] = ACTIONS(1942), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1942), - [aux_sym_address_family_token1] = ACTIONS(1942), - [aux_sym_batch_mode_token1] = ACTIONS(1942), - [aux_sym_bind_address_token1] = ACTIONS(1942), - [aux_sym_bind_interface_token1] = ACTIONS(1942), - [aux_sym_canonical_domains_token1] = ACTIONS(1942), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1942), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1942), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1942), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1942), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1942), - [aux_sym_certificate_file_token1] = ACTIONS(1942), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1942), - [aux_sym_channel_timeout_token1] = ACTIONS(1942), - [aux_sym_check_host_ip_token1] = ACTIONS(1942), - [aux_sym_ciphers_token1] = ACTIONS(1942), - [aux_sym_cipher_token1] = ACTIONS(1944), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1942), - [aux_sym_compression_token1] = ACTIONS(1942), - [aux_sym_connection_attempts_token1] = ACTIONS(1942), - [aux_sym_connect_timeout_token1] = ACTIONS(1942), - [aux_sym_control_master_token1] = ACTIONS(1942), - [aux_sym_control_path_token1] = ACTIONS(1942), - [aux_sym_control_persist_token1] = ACTIONS(1942), - [aux_sym_dynamic_forward_token1] = ACTIONS(1942), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1942), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1942), - [aux_sym_escape_char_token1] = ACTIONS(1942), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1942), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1942), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1942), - [aux_sym_forward_agent_token1] = ACTIONS(1942), - [aux_sym_forward_x11_token1] = ACTIONS(1944), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1942), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1942), - [aux_sym_gateway_ports_token1] = ACTIONS(1942), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1942), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1942), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1942), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1942), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1942), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1942), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1942), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1942), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1942), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1942), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1942), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1942), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1942), - [aux_sym_host_key_alias_token1] = ACTIONS(1942), - [aux_sym_hostname_token1] = ACTIONS(1942), - [aux_sym_identities_only_token1] = ACTIONS(1942), - [aux_sym_identity_agent_token1] = ACTIONS(1942), - [aux_sym_identity_file_token1] = ACTIONS(1942), - [aux_sym_ignore_unknown_token1] = ACTIONS(1942), - [aux_sym_include_token1] = ACTIONS(1942), - [aux_sym_ip_qos_token1] = ACTIONS(1942), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1942), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1942), - [aux_sym_kex_algorithms_token1] = ACTIONS(1942), - [aux_sym_known_hosts_command_token1] = ACTIONS(1942), - [aux_sym_local_command_token1] = ACTIONS(1942), - [aux_sym_local_forward_token1] = ACTIONS(1942), - [aux_sym_log_level_token1] = ACTIONS(1942), - [aux_sym_log_verbose_token1] = ACTIONS(1942), - [aux_sym_macs_token1] = ACTIONS(1942), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1942), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1942), - [aux_sym_password_authentication_token1] = ACTIONS(1942), - [aux_sym_permit_local_command_token1] = ACTIONS(1942), - [aux_sym_permit_remote_open_token1] = ACTIONS(1942), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1942), - [aux_sym_port_token1] = ACTIONS(1942), - [aux_sym_preferred_authentications_token1] = ACTIONS(1942), - [aux_sym_protocol_token1] = ACTIONS(1942), - [aux_sym_proxy_command_token1] = ACTIONS(1942), - [aux_sym_proxy_jump_token1] = ACTIONS(1942), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1942), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1942), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1942), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1942), - [aux_sym_rekey_limit_token1] = ACTIONS(1942), - [aux_sym_remote_command_token1] = ACTIONS(1942), - [aux_sym_remote_forward_token1] = ACTIONS(1942), - [aux_sym_request_tty_token1] = ACTIONS(1942), - [aux_sym_required_rsa_size_token1] = ACTIONS(1942), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1942), - [aux_sym_security_key_provider_token1] = ACTIONS(1942), - [aux_sym_send_env_token1] = ACTIONS(1942), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1942), - [aux_sym_server_alive_interval_token1] = ACTIONS(1942), - [aux_sym_session_type_token1] = ACTIONS(1942), - [aux_sym_set_env_token1] = ACTIONS(1942), - [aux_sym_stdin_null_token1] = ACTIONS(1942), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1942), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1942), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1942), - [aux_sym_syslog_facility_token1] = ACTIONS(1942), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1942), - [aux_sym_keep_alive_token1] = ACTIONS(1942), - [aux_sym_tag_token1] = ACTIONS(1942), - [aux_sym_tunnel_token1] = ACTIONS(1944), - [aux_sym_tunnel_device_token1] = ACTIONS(1942), - [aux_sym_update_host_keys_token1] = ACTIONS(1942), - [aux_sym_use_keychain_token1] = ACTIONS(1942), - [aux_sym_use_roaming_token1] = ACTIONS(1942), - [aux_sym_user_token1] = ACTIONS(1944), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1942), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1942), - [aux_sym_visual_host_key_token1] = ACTIONS(1942), - [aux_sym_xauth_location_token1] = ACTIONS(1942), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(1951), + [aux_sym_match_token1] = ACTIONS(1947), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1947), + [aux_sym_address_family_token1] = ACTIONS(1947), + [aux_sym_batch_mode_token1] = ACTIONS(1947), + [aux_sym_bind_address_token1] = ACTIONS(1947), + [aux_sym_bind_interface_token1] = ACTIONS(1947), + [aux_sym_canonical_domains_token1] = ACTIONS(1947), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1947), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1947), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1947), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1947), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1947), + [aux_sym_certificate_file_token1] = ACTIONS(1947), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1947), + [aux_sym_channel_timeout_token1] = ACTIONS(1947), + [aux_sym_check_host_ip_token1] = ACTIONS(1947), + [aux_sym_ciphers_token1] = ACTIONS(1947), + [aux_sym_cipher_token1] = ACTIONS(1949), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1947), + [aux_sym_compression_token1] = ACTIONS(1947), + [aux_sym_connection_attempts_token1] = ACTIONS(1947), + [aux_sym_connect_timeout_token1] = ACTIONS(1947), + [aux_sym_control_master_token1] = ACTIONS(1947), + [aux_sym_control_path_token1] = ACTIONS(1947), + [aux_sym_control_persist_token1] = ACTIONS(1947), + [aux_sym_dynamic_forward_token1] = ACTIONS(1947), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1947), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1947), + [aux_sym_escape_char_token1] = ACTIONS(1947), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1947), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1947), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1947), + [aux_sym_forward_agent_token1] = ACTIONS(1947), + [aux_sym_forward_x11_token1] = ACTIONS(1949), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1947), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1947), + [aux_sym_gateway_ports_token1] = ACTIONS(1947), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1947), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1947), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1947), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1947), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1947), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1947), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1947), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1947), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1947), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1947), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1947), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1947), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1947), + [aux_sym_host_key_alias_token1] = ACTIONS(1947), + [aux_sym_hostname_token1] = ACTIONS(1947), + [aux_sym_identities_only_token1] = ACTIONS(1947), + [aux_sym_identity_agent_token1] = ACTIONS(1947), + [aux_sym_identity_file_token1] = ACTIONS(1947), + [aux_sym_ignore_unknown_token1] = ACTIONS(1947), + [aux_sym_include_token1] = ACTIONS(1947), + [aux_sym_ip_qos_token1] = ACTIONS(1947), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1947), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1947), + [aux_sym_kex_algorithms_token1] = ACTIONS(1947), + [aux_sym_known_hosts_command_token1] = ACTIONS(1947), + [aux_sym_local_command_token1] = ACTIONS(1947), + [aux_sym_local_forward_token1] = ACTIONS(1947), + [aux_sym_log_level_token1] = ACTIONS(1947), + [aux_sym_log_verbose_token1] = ACTIONS(1947), + [aux_sym_macs_token1] = ACTIONS(1947), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1947), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1947), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1947), + [aux_sym_password_authentication_token1] = ACTIONS(1947), + [aux_sym_permit_local_command_token1] = ACTIONS(1947), + [aux_sym_permit_remote_open_token1] = ACTIONS(1947), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1947), + [aux_sym_port_token1] = ACTIONS(1947), + [aux_sym_preferred_authentications_token1] = ACTIONS(1947), + [aux_sym_protocol_token1] = ACTIONS(1947), + [aux_sym_proxy_command_token1] = ACTIONS(1947), + [aux_sym_proxy_jump_token1] = ACTIONS(1947), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1947), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1947), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1947), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1947), + [aux_sym_rekey_limit_token1] = ACTIONS(1947), + [aux_sym_remote_command_token1] = ACTIONS(1947), + [aux_sym_remote_forward_token1] = ACTIONS(1947), + [aux_sym_request_tty_token1] = ACTIONS(1947), + [aux_sym_required_rsa_size_token1] = ACTIONS(1947), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1947), + [aux_sym_security_key_provider_token1] = ACTIONS(1947), + [aux_sym_send_env_token1] = ACTIONS(1947), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1947), + [aux_sym_server_alive_interval_token1] = ACTIONS(1947), + [aux_sym_session_type_token1] = ACTIONS(1947), + [aux_sym_set_env_token1] = ACTIONS(1947), + [aux_sym_stdin_null_token1] = ACTIONS(1947), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1947), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1947), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1947), + [aux_sym_syslog_facility_token1] = ACTIONS(1947), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1947), + [aux_sym_keep_alive_token1] = ACTIONS(1947), + [aux_sym_tag_token1] = ACTIONS(1947), + [aux_sym_tunnel_token1] = ACTIONS(1949), + [aux_sym_tunnel_device_token1] = ACTIONS(1947), + [aux_sym_update_host_keys_token1] = ACTIONS(1947), + [aux_sym_use_keychain_token1] = ACTIONS(1947), + [aux_sym_use_roaming_token1] = ACTIONS(1947), + [aux_sym_user_token1] = ACTIONS(1949), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1947), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1947), + [aux_sym_visual_host_key_token1] = ACTIONS(1947), + [aux_sym_xauth_location_token1] = ACTIONS(1947), }, [232] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1948), - [anon_sym_DQUOTE] = ACTIONS(1950), - [aux_sym_match_token1] = ACTIONS(1946), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1946), - [aux_sym_address_family_token1] = ACTIONS(1946), - [aux_sym_batch_mode_token1] = ACTIONS(1946), - [aux_sym_bind_address_token1] = ACTIONS(1946), - [aux_sym_bind_interface_token1] = ACTIONS(1946), - [aux_sym_canonical_domains_token1] = ACTIONS(1946), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1946), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1946), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1946), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1946), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1946), - [aux_sym_certificate_file_token1] = ACTIONS(1946), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1946), - [aux_sym_channel_timeout_token1] = ACTIONS(1946), - [aux_sym_check_host_ip_token1] = ACTIONS(1946), - [aux_sym_ciphers_token1] = ACTIONS(1946), - [aux_sym_cipher_token1] = ACTIONS(1948), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1946), - [aux_sym_compression_token1] = ACTIONS(1946), - [aux_sym_connection_attempts_token1] = ACTIONS(1946), - [aux_sym_connect_timeout_token1] = ACTIONS(1946), - [aux_sym_control_master_token1] = ACTIONS(1946), - [aux_sym_control_path_token1] = ACTIONS(1946), - [aux_sym_control_persist_token1] = ACTIONS(1946), - [aux_sym_dynamic_forward_token1] = ACTIONS(1946), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1946), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1946), - [aux_sym_escape_char_token1] = ACTIONS(1946), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1946), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1946), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1946), - [aux_sym_forward_agent_token1] = ACTIONS(1946), - [aux_sym_forward_x11_token1] = ACTIONS(1948), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1946), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1946), - [aux_sym_gateway_ports_token1] = ACTIONS(1946), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1946), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1946), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1946), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1946), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1946), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1946), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1946), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1946), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1946), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1946), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1946), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1946), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1946), - [aux_sym_host_key_alias_token1] = ACTIONS(1946), - [aux_sym_hostname_token1] = ACTIONS(1946), - [aux_sym_identities_only_token1] = ACTIONS(1946), - [aux_sym_identity_agent_token1] = ACTIONS(1946), - [aux_sym_identity_file_token1] = ACTIONS(1946), - [aux_sym_ignore_unknown_token1] = ACTIONS(1946), - [aux_sym_include_token1] = ACTIONS(1946), - [aux_sym_ip_qos_token1] = ACTIONS(1946), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1946), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1946), - [aux_sym_kex_algorithms_token1] = ACTIONS(1946), - [aux_sym_known_hosts_command_token1] = ACTIONS(1946), - [aux_sym_local_command_token1] = ACTIONS(1946), - [aux_sym_local_forward_token1] = ACTIONS(1946), - [aux_sym_log_level_token1] = ACTIONS(1946), - [aux_sym_log_verbose_token1] = ACTIONS(1946), - [aux_sym_macs_token1] = ACTIONS(1946), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1946), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1946), - [aux_sym_password_authentication_token1] = ACTIONS(1946), - [aux_sym_permit_local_command_token1] = ACTIONS(1946), - [aux_sym_permit_remote_open_token1] = ACTIONS(1946), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1946), - [aux_sym_port_token1] = ACTIONS(1946), - [aux_sym_preferred_authentications_token1] = ACTIONS(1946), - [aux_sym_protocol_token1] = ACTIONS(1946), - [aux_sym_proxy_command_token1] = ACTIONS(1946), - [aux_sym_proxy_jump_token1] = ACTIONS(1946), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1946), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1946), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1946), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1946), - [aux_sym_rekey_limit_token1] = ACTIONS(1946), - [aux_sym_remote_command_token1] = ACTIONS(1946), - [aux_sym_remote_forward_token1] = ACTIONS(1946), - [aux_sym_request_tty_token1] = ACTIONS(1946), - [aux_sym_required_rsa_size_token1] = ACTIONS(1946), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1946), - [aux_sym_security_key_provider_token1] = ACTIONS(1946), - [aux_sym_send_env_token1] = ACTIONS(1946), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1946), - [aux_sym_server_alive_interval_token1] = ACTIONS(1946), - [aux_sym_session_type_token1] = ACTIONS(1946), - [aux_sym_set_env_token1] = ACTIONS(1946), - [aux_sym_stdin_null_token1] = ACTIONS(1946), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1946), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1946), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1946), - [aux_sym_syslog_facility_token1] = ACTIONS(1946), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1946), - [aux_sym_keep_alive_token1] = ACTIONS(1946), - [aux_sym_tag_token1] = ACTIONS(1946), - [aux_sym_tunnel_token1] = ACTIONS(1948), - [aux_sym_tunnel_device_token1] = ACTIONS(1946), - [aux_sym_update_host_keys_token1] = ACTIONS(1946), - [aux_sym_use_keychain_token1] = ACTIONS(1946), - [aux_sym_use_roaming_token1] = ACTIONS(1946), - [aux_sym_user_token1] = ACTIONS(1948), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1946), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1946), - [aux_sym_visual_host_key_token1] = ACTIONS(1946), - [aux_sym_xauth_location_token1] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(1957), + [aux_sym_match_token1] = ACTIONS(1953), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1953), + [aux_sym_address_family_token1] = ACTIONS(1953), + [aux_sym_batch_mode_token1] = ACTIONS(1953), + [aux_sym_bind_address_token1] = ACTIONS(1953), + [aux_sym_bind_interface_token1] = ACTIONS(1953), + [aux_sym_canonical_domains_token1] = ACTIONS(1953), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1953), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1953), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1953), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1953), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1953), + [aux_sym_certificate_file_token1] = ACTIONS(1953), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1953), + [aux_sym_channel_timeout_token1] = ACTIONS(1953), + [aux_sym_check_host_ip_token1] = ACTIONS(1953), + [aux_sym_ciphers_token1] = ACTIONS(1953), + [aux_sym_cipher_token1] = ACTIONS(1955), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1953), + [aux_sym_compression_token1] = ACTIONS(1953), + [aux_sym_connection_attempts_token1] = ACTIONS(1953), + [aux_sym_connect_timeout_token1] = ACTIONS(1953), + [aux_sym_control_master_token1] = ACTIONS(1953), + [aux_sym_control_path_token1] = ACTIONS(1953), + [aux_sym_control_persist_token1] = ACTIONS(1953), + [aux_sym_dynamic_forward_token1] = ACTIONS(1953), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1953), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1953), + [aux_sym_escape_char_token1] = ACTIONS(1953), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1953), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1953), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1953), + [aux_sym_forward_agent_token1] = ACTIONS(1953), + [aux_sym_forward_x11_token1] = ACTIONS(1955), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1953), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1953), + [aux_sym_gateway_ports_token1] = ACTIONS(1953), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1953), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1953), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1953), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1953), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1953), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1953), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1953), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1953), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1953), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1953), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1953), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1953), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1953), + [aux_sym_host_key_alias_token1] = ACTIONS(1953), + [aux_sym_hostname_token1] = ACTIONS(1953), + [aux_sym_identities_only_token1] = ACTIONS(1953), + [aux_sym_identity_agent_token1] = ACTIONS(1953), + [aux_sym_identity_file_token1] = ACTIONS(1953), + [aux_sym_ignore_unknown_token1] = ACTIONS(1953), + [aux_sym_include_token1] = ACTIONS(1953), + [aux_sym_ip_qos_token1] = ACTIONS(1953), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1953), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1953), + [aux_sym_kex_algorithms_token1] = ACTIONS(1953), + [aux_sym_known_hosts_command_token1] = ACTIONS(1953), + [aux_sym_local_command_token1] = ACTIONS(1953), + [aux_sym_local_forward_token1] = ACTIONS(1953), + [aux_sym_log_level_token1] = ACTIONS(1953), + [aux_sym_log_verbose_token1] = ACTIONS(1953), + [aux_sym_macs_token1] = ACTIONS(1953), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1953), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1953), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1953), + [aux_sym_password_authentication_token1] = ACTIONS(1953), + [aux_sym_permit_local_command_token1] = ACTIONS(1953), + [aux_sym_permit_remote_open_token1] = ACTIONS(1953), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1953), + [aux_sym_port_token1] = ACTIONS(1953), + [aux_sym_preferred_authentications_token1] = ACTIONS(1953), + [aux_sym_protocol_token1] = ACTIONS(1953), + [aux_sym_proxy_command_token1] = ACTIONS(1953), + [aux_sym_proxy_jump_token1] = ACTIONS(1953), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1953), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1953), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1953), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1953), + [aux_sym_rekey_limit_token1] = ACTIONS(1953), + [aux_sym_remote_command_token1] = ACTIONS(1953), + [aux_sym_remote_forward_token1] = ACTIONS(1953), + [aux_sym_request_tty_token1] = ACTIONS(1953), + [aux_sym_required_rsa_size_token1] = ACTIONS(1953), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1953), + [aux_sym_security_key_provider_token1] = ACTIONS(1953), + [aux_sym_send_env_token1] = ACTIONS(1953), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1953), + [aux_sym_server_alive_interval_token1] = ACTIONS(1953), + [aux_sym_session_type_token1] = ACTIONS(1953), + [aux_sym_set_env_token1] = ACTIONS(1953), + [aux_sym_stdin_null_token1] = ACTIONS(1953), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1953), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1953), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1953), + [aux_sym_syslog_facility_token1] = ACTIONS(1953), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1953), + [aux_sym_keep_alive_token1] = ACTIONS(1953), + [aux_sym_tag_token1] = ACTIONS(1953), + [aux_sym_tunnel_token1] = ACTIONS(1955), + [aux_sym_tunnel_device_token1] = ACTIONS(1953), + [aux_sym_update_host_keys_token1] = ACTIONS(1953), + [aux_sym_use_keychain_token1] = ACTIONS(1953), + [aux_sym_use_roaming_token1] = ACTIONS(1953), + [aux_sym_user_token1] = ACTIONS(1955), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1953), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1953), + [aux_sym_visual_host_key_token1] = ACTIONS(1953), + [aux_sym_xauth_location_token1] = ACTIONS(1953), }, [233] = { - [ts_builtin_sym_end] = ACTIONS(1952), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1954), - [anon_sym_DQUOTE] = ACTIONS(1952), - [aux_sym_match_token1] = ACTIONS(1952), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1952), - [aux_sym_address_family_token1] = ACTIONS(1952), - [aux_sym_batch_mode_token1] = ACTIONS(1952), - [aux_sym_bind_address_token1] = ACTIONS(1952), - [aux_sym_bind_interface_token1] = ACTIONS(1952), - [aux_sym_canonical_domains_token1] = ACTIONS(1952), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1952), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1952), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1952), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1952), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1952), - [aux_sym_certificate_file_token1] = ACTIONS(1952), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1952), - [aux_sym_channel_timeout_token1] = ACTIONS(1952), - [aux_sym_check_host_ip_token1] = ACTIONS(1952), - [aux_sym_ciphers_token1] = ACTIONS(1952), - [aux_sym_cipher_token1] = ACTIONS(1954), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1952), - [aux_sym_compression_token1] = ACTIONS(1952), - [aux_sym_connection_attempts_token1] = ACTIONS(1952), - [aux_sym_connect_timeout_token1] = ACTIONS(1952), - [aux_sym_control_master_token1] = ACTIONS(1952), - [aux_sym_control_path_token1] = ACTIONS(1952), - [aux_sym_control_persist_token1] = ACTIONS(1952), - [aux_sym_dynamic_forward_token1] = ACTIONS(1952), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1952), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1952), - [aux_sym_escape_char_token1] = ACTIONS(1952), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1952), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1952), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1952), - [aux_sym_forward_agent_token1] = ACTIONS(1952), - [aux_sym_forward_x11_token1] = ACTIONS(1954), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1952), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1952), - [aux_sym_gateway_ports_token1] = ACTIONS(1952), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1952), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1952), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1952), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1952), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1952), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1952), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1952), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1952), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1952), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1952), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1952), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1952), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1952), - [aux_sym_host_key_alias_token1] = ACTIONS(1952), - [aux_sym_hostname_token1] = ACTIONS(1952), - [aux_sym_identities_only_token1] = ACTIONS(1952), - [aux_sym_identity_agent_token1] = ACTIONS(1952), - [aux_sym_identity_file_token1] = ACTIONS(1952), - [aux_sym_ignore_unknown_token1] = ACTIONS(1952), - [aux_sym_include_token1] = ACTIONS(1952), - [aux_sym_ip_qos_token1] = ACTIONS(1952), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1952), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1952), - [aux_sym_kex_algorithms_token1] = ACTIONS(1952), - [aux_sym_known_hosts_command_token1] = ACTIONS(1952), - [aux_sym_local_command_token1] = ACTIONS(1952), - [aux_sym_local_forward_token1] = ACTIONS(1952), - [aux_sym_log_level_token1] = ACTIONS(1952), - [aux_sym_log_verbose_token1] = ACTIONS(1952), - [aux_sym_macs_token1] = ACTIONS(1952), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1952), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1952), - [aux_sym_password_authentication_token1] = ACTIONS(1952), - [aux_sym_permit_local_command_token1] = ACTIONS(1952), - [aux_sym_permit_remote_open_token1] = ACTIONS(1952), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1952), - [aux_sym_port_token1] = ACTIONS(1952), - [aux_sym_preferred_authentications_token1] = ACTIONS(1952), - [aux_sym_protocol_token1] = ACTIONS(1952), - [aux_sym_proxy_command_token1] = ACTIONS(1952), - [aux_sym_proxy_jump_token1] = ACTIONS(1952), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1952), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1952), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1952), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1952), - [aux_sym_rekey_limit_token1] = ACTIONS(1952), - [aux_sym_remote_command_token1] = ACTIONS(1952), - [aux_sym_remote_forward_token1] = ACTIONS(1952), - [aux_sym_request_tty_token1] = ACTIONS(1952), - [aux_sym_required_rsa_size_token1] = ACTIONS(1952), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1952), - [aux_sym_security_key_provider_token1] = ACTIONS(1952), - [aux_sym_send_env_token1] = ACTIONS(1952), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1952), - [aux_sym_server_alive_interval_token1] = ACTIONS(1952), - [aux_sym_session_type_token1] = ACTIONS(1952), - [aux_sym_set_env_token1] = ACTIONS(1952), - [aux_sym_stdin_null_token1] = ACTIONS(1952), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1952), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1952), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1952), - [aux_sym_syslog_facility_token1] = ACTIONS(1952), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1952), - [aux_sym_keep_alive_token1] = ACTIONS(1952), - [aux_sym_tag_token1] = ACTIONS(1952), - [aux_sym_tunnel_token1] = ACTIONS(1954), - [aux_sym_tunnel_device_token1] = ACTIONS(1952), - [aux_sym_update_host_keys_token1] = ACTIONS(1952), - [aux_sym_use_keychain_token1] = ACTIONS(1952), - [aux_sym_use_roaming_token1] = ACTIONS(1952), - [aux_sym_user_token1] = ACTIONS(1954), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1952), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1952), - [aux_sym_visual_host_key_token1] = ACTIONS(1952), - [aux_sym_xauth_location_token1] = ACTIONS(1952), + [ts_builtin_sym_end] = ACTIONS(1959), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(1959), + [aux_sym_match_token1] = ACTIONS(1959), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1959), + [aux_sym_address_family_token1] = ACTIONS(1959), + [aux_sym_batch_mode_token1] = ACTIONS(1959), + [aux_sym_bind_address_token1] = ACTIONS(1959), + [aux_sym_bind_interface_token1] = ACTIONS(1959), + [aux_sym_canonical_domains_token1] = ACTIONS(1959), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1959), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1959), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1959), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1959), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1959), + [aux_sym_certificate_file_token1] = ACTIONS(1959), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1959), + [aux_sym_channel_timeout_token1] = ACTIONS(1959), + [aux_sym_check_host_ip_token1] = ACTIONS(1959), + [aux_sym_ciphers_token1] = ACTIONS(1959), + [aux_sym_cipher_token1] = ACTIONS(1961), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1959), + [aux_sym_compression_token1] = ACTIONS(1959), + [aux_sym_connection_attempts_token1] = ACTIONS(1959), + [aux_sym_connect_timeout_token1] = ACTIONS(1959), + [aux_sym_control_master_token1] = ACTIONS(1959), + [aux_sym_control_path_token1] = ACTIONS(1959), + [aux_sym_control_persist_token1] = ACTIONS(1959), + [aux_sym_dynamic_forward_token1] = ACTIONS(1959), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1959), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1959), + [aux_sym_escape_char_token1] = ACTIONS(1959), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1959), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1959), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1959), + [aux_sym_forward_agent_token1] = ACTIONS(1959), + [aux_sym_forward_x11_token1] = ACTIONS(1961), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1959), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1959), + [aux_sym_gateway_ports_token1] = ACTIONS(1959), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1959), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1959), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1959), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1959), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1959), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1959), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1959), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1959), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1959), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1959), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1959), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1959), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1959), + [aux_sym_host_key_alias_token1] = ACTIONS(1959), + [aux_sym_hostname_token1] = ACTIONS(1959), + [aux_sym_identities_only_token1] = ACTIONS(1959), + [aux_sym_identity_agent_token1] = ACTIONS(1959), + [aux_sym_identity_file_token1] = ACTIONS(1959), + [aux_sym_ignore_unknown_token1] = ACTIONS(1959), + [aux_sym_include_token1] = ACTIONS(1959), + [aux_sym_ip_qos_token1] = ACTIONS(1959), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1959), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1959), + [aux_sym_kex_algorithms_token1] = ACTIONS(1959), + [aux_sym_known_hosts_command_token1] = ACTIONS(1959), + [aux_sym_local_command_token1] = ACTIONS(1959), + [aux_sym_local_forward_token1] = ACTIONS(1959), + [aux_sym_log_level_token1] = ACTIONS(1959), + [aux_sym_log_verbose_token1] = ACTIONS(1959), + [aux_sym_macs_token1] = ACTIONS(1959), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1959), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1959), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1959), + [aux_sym_password_authentication_token1] = ACTIONS(1959), + [aux_sym_permit_local_command_token1] = ACTIONS(1959), + [aux_sym_permit_remote_open_token1] = ACTIONS(1959), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1959), + [aux_sym_port_token1] = ACTIONS(1959), + [aux_sym_preferred_authentications_token1] = ACTIONS(1959), + [aux_sym_protocol_token1] = ACTIONS(1959), + [aux_sym_proxy_command_token1] = ACTIONS(1959), + [aux_sym_proxy_jump_token1] = ACTIONS(1959), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1959), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1959), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1959), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1959), + [aux_sym_rekey_limit_token1] = ACTIONS(1959), + [aux_sym_remote_command_token1] = ACTIONS(1959), + [aux_sym_remote_forward_token1] = ACTIONS(1959), + [aux_sym_request_tty_token1] = ACTIONS(1959), + [aux_sym_required_rsa_size_token1] = ACTIONS(1959), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1959), + [aux_sym_security_key_provider_token1] = ACTIONS(1959), + [aux_sym_send_env_token1] = ACTIONS(1959), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1959), + [aux_sym_server_alive_interval_token1] = ACTIONS(1959), + [aux_sym_session_type_token1] = ACTIONS(1959), + [aux_sym_set_env_token1] = ACTIONS(1959), + [aux_sym_stdin_null_token1] = ACTIONS(1959), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1959), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1959), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1959), + [aux_sym_syslog_facility_token1] = ACTIONS(1959), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1959), + [aux_sym_keep_alive_token1] = ACTIONS(1959), + [aux_sym_tag_token1] = ACTIONS(1959), + [aux_sym_tunnel_token1] = ACTIONS(1961), + [aux_sym_tunnel_device_token1] = ACTIONS(1959), + [aux_sym_update_host_keys_token1] = ACTIONS(1959), + [aux_sym_use_keychain_token1] = ACTIONS(1959), + [aux_sym_use_roaming_token1] = ACTIONS(1959), + [aux_sym_user_token1] = ACTIONS(1961), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1959), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1959), + [aux_sym_visual_host_key_token1] = ACTIONS(1959), + [aux_sym_xauth_location_token1] = ACTIONS(1959), }, [234] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1958), - [anon_sym_DQUOTE] = ACTIONS(1960), - [aux_sym_match_token1] = ACTIONS(1956), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1956), - [aux_sym_address_family_token1] = ACTIONS(1956), - [aux_sym_batch_mode_token1] = ACTIONS(1956), - [aux_sym_bind_address_token1] = ACTIONS(1956), - [aux_sym_bind_interface_token1] = ACTIONS(1956), - [aux_sym_canonical_domains_token1] = ACTIONS(1956), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1956), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1956), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1956), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1956), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1956), - [aux_sym_certificate_file_token1] = ACTIONS(1956), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1956), - [aux_sym_channel_timeout_token1] = ACTIONS(1956), - [aux_sym_check_host_ip_token1] = ACTIONS(1956), - [aux_sym_ciphers_token1] = ACTIONS(1956), - [aux_sym_cipher_token1] = ACTIONS(1958), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1956), - [aux_sym_compression_token1] = ACTIONS(1956), - [aux_sym_connection_attempts_token1] = ACTIONS(1956), - [aux_sym_connect_timeout_token1] = ACTIONS(1956), - [aux_sym_control_master_token1] = ACTIONS(1956), - [aux_sym_control_path_token1] = ACTIONS(1956), - [aux_sym_control_persist_token1] = ACTIONS(1956), - [aux_sym_dynamic_forward_token1] = ACTIONS(1956), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1956), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1956), - [aux_sym_escape_char_token1] = ACTIONS(1956), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1956), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1956), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1956), - [aux_sym_forward_agent_token1] = ACTIONS(1956), - [aux_sym_forward_x11_token1] = ACTIONS(1958), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1956), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1956), - [aux_sym_gateway_ports_token1] = ACTIONS(1956), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1956), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1956), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1956), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1956), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1956), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1956), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1956), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1956), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1956), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1956), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1956), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1956), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1956), - [aux_sym_host_key_alias_token1] = ACTIONS(1956), - [aux_sym_hostname_token1] = ACTIONS(1956), - [aux_sym_identities_only_token1] = ACTIONS(1956), - [aux_sym_identity_agent_token1] = ACTIONS(1956), - [aux_sym_identity_file_token1] = ACTIONS(1956), - [aux_sym_ignore_unknown_token1] = ACTIONS(1956), - [aux_sym_include_token1] = ACTIONS(1956), - [aux_sym_ip_qos_token1] = ACTIONS(1956), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1956), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1956), - [aux_sym_kex_algorithms_token1] = ACTIONS(1956), - [aux_sym_known_hosts_command_token1] = ACTIONS(1956), - [aux_sym_local_command_token1] = ACTIONS(1956), - [aux_sym_local_forward_token1] = ACTIONS(1956), - [aux_sym_log_level_token1] = ACTIONS(1956), - [aux_sym_log_verbose_token1] = ACTIONS(1956), - [aux_sym_macs_token1] = ACTIONS(1956), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1956), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1956), - [aux_sym_password_authentication_token1] = ACTIONS(1956), - [aux_sym_permit_local_command_token1] = ACTIONS(1956), - [aux_sym_permit_remote_open_token1] = ACTIONS(1956), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1956), - [aux_sym_port_token1] = ACTIONS(1956), - [aux_sym_preferred_authentications_token1] = ACTIONS(1956), - [aux_sym_protocol_token1] = ACTIONS(1956), - [aux_sym_proxy_command_token1] = ACTIONS(1956), - [aux_sym_proxy_jump_token1] = ACTIONS(1956), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1956), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1956), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1956), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1956), - [aux_sym_rekey_limit_token1] = ACTIONS(1956), - [aux_sym_remote_command_token1] = ACTIONS(1956), - [aux_sym_remote_forward_token1] = ACTIONS(1956), - [aux_sym_request_tty_token1] = ACTIONS(1956), - [aux_sym_required_rsa_size_token1] = ACTIONS(1956), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1956), - [aux_sym_security_key_provider_token1] = ACTIONS(1956), - [aux_sym_send_env_token1] = ACTIONS(1956), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1956), - [aux_sym_server_alive_interval_token1] = ACTIONS(1956), - [aux_sym_session_type_token1] = ACTIONS(1956), - [aux_sym_set_env_token1] = ACTIONS(1956), - [aux_sym_stdin_null_token1] = ACTIONS(1956), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1956), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1956), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1956), - [aux_sym_syslog_facility_token1] = ACTIONS(1956), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1956), - [aux_sym_keep_alive_token1] = ACTIONS(1956), - [aux_sym_tag_token1] = ACTIONS(1956), - [aux_sym_tunnel_token1] = ACTIONS(1958), - [aux_sym_tunnel_device_token1] = ACTIONS(1956), - [aux_sym_update_host_keys_token1] = ACTIONS(1956), - [aux_sym_use_keychain_token1] = ACTIONS(1956), - [aux_sym_use_roaming_token1] = ACTIONS(1956), - [aux_sym_user_token1] = ACTIONS(1958), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1956), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1956), - [aux_sym_visual_host_key_token1] = ACTIONS(1956), - [aux_sym_xauth_location_token1] = ACTIONS(1956), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(1967), + [aux_sym_match_token1] = ACTIONS(1963), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1963), + [aux_sym_address_family_token1] = ACTIONS(1963), + [aux_sym_batch_mode_token1] = ACTIONS(1963), + [aux_sym_bind_address_token1] = ACTIONS(1963), + [aux_sym_bind_interface_token1] = ACTIONS(1963), + [aux_sym_canonical_domains_token1] = ACTIONS(1963), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1963), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1963), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1963), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1963), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1963), + [aux_sym_certificate_file_token1] = ACTIONS(1963), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1963), + [aux_sym_channel_timeout_token1] = ACTIONS(1963), + [aux_sym_check_host_ip_token1] = ACTIONS(1963), + [aux_sym_ciphers_token1] = ACTIONS(1963), + [aux_sym_cipher_token1] = ACTIONS(1965), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1963), + [aux_sym_compression_token1] = ACTIONS(1963), + [aux_sym_connection_attempts_token1] = ACTIONS(1963), + [aux_sym_connect_timeout_token1] = ACTIONS(1963), + [aux_sym_control_master_token1] = ACTIONS(1963), + [aux_sym_control_path_token1] = ACTIONS(1963), + [aux_sym_control_persist_token1] = ACTIONS(1963), + [aux_sym_dynamic_forward_token1] = ACTIONS(1963), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1963), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1963), + [aux_sym_escape_char_token1] = ACTIONS(1963), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1963), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1963), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1963), + [aux_sym_forward_agent_token1] = ACTIONS(1963), + [aux_sym_forward_x11_token1] = ACTIONS(1965), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1963), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1963), + [aux_sym_gateway_ports_token1] = ACTIONS(1963), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1963), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1963), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1963), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1963), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1963), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1963), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1963), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1963), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1963), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1963), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1963), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1963), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1963), + [aux_sym_host_key_alias_token1] = ACTIONS(1963), + [aux_sym_hostname_token1] = ACTIONS(1963), + [aux_sym_identities_only_token1] = ACTIONS(1963), + [aux_sym_identity_agent_token1] = ACTIONS(1963), + [aux_sym_identity_file_token1] = ACTIONS(1963), + [aux_sym_ignore_unknown_token1] = ACTIONS(1963), + [aux_sym_include_token1] = ACTIONS(1963), + [aux_sym_ip_qos_token1] = ACTIONS(1963), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1963), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1963), + [aux_sym_kex_algorithms_token1] = ACTIONS(1963), + [aux_sym_known_hosts_command_token1] = ACTIONS(1963), + [aux_sym_local_command_token1] = ACTIONS(1963), + [aux_sym_local_forward_token1] = ACTIONS(1963), + [aux_sym_log_level_token1] = ACTIONS(1963), + [aux_sym_log_verbose_token1] = ACTIONS(1963), + [aux_sym_macs_token1] = ACTIONS(1963), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1963), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1963), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1963), + [aux_sym_password_authentication_token1] = ACTIONS(1963), + [aux_sym_permit_local_command_token1] = ACTIONS(1963), + [aux_sym_permit_remote_open_token1] = ACTIONS(1963), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1963), + [aux_sym_port_token1] = ACTIONS(1963), + [aux_sym_preferred_authentications_token1] = ACTIONS(1963), + [aux_sym_protocol_token1] = ACTIONS(1963), + [aux_sym_proxy_command_token1] = ACTIONS(1963), + [aux_sym_proxy_jump_token1] = ACTIONS(1963), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1963), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1963), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1963), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1963), + [aux_sym_rekey_limit_token1] = ACTIONS(1963), + [aux_sym_remote_command_token1] = ACTIONS(1963), + [aux_sym_remote_forward_token1] = ACTIONS(1963), + [aux_sym_request_tty_token1] = ACTIONS(1963), + [aux_sym_required_rsa_size_token1] = ACTIONS(1963), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1963), + [aux_sym_security_key_provider_token1] = ACTIONS(1963), + [aux_sym_send_env_token1] = ACTIONS(1963), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1963), + [aux_sym_server_alive_interval_token1] = ACTIONS(1963), + [aux_sym_session_type_token1] = ACTIONS(1963), + [aux_sym_set_env_token1] = ACTIONS(1963), + [aux_sym_stdin_null_token1] = ACTIONS(1963), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1963), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1963), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1963), + [aux_sym_syslog_facility_token1] = ACTIONS(1963), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1963), + [aux_sym_keep_alive_token1] = ACTIONS(1963), + [aux_sym_tag_token1] = ACTIONS(1963), + [aux_sym_tunnel_token1] = ACTIONS(1965), + [aux_sym_tunnel_device_token1] = ACTIONS(1963), + [aux_sym_update_host_keys_token1] = ACTIONS(1963), + [aux_sym_use_keychain_token1] = ACTIONS(1963), + [aux_sym_use_roaming_token1] = ACTIONS(1963), + [aux_sym_user_token1] = ACTIONS(1965), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1963), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1963), + [aux_sym_visual_host_key_token1] = ACTIONS(1963), + [aux_sym_xauth_location_token1] = ACTIONS(1963), }, [235] = { - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1964), - [anon_sym_DQUOTE] = ACTIONS(1966), - [aux_sym_match_token1] = ACTIONS(1962), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1962), - [aux_sym_address_family_token1] = ACTIONS(1962), - [aux_sym_batch_mode_token1] = ACTIONS(1962), - [aux_sym_bind_address_token1] = ACTIONS(1962), - [aux_sym_bind_interface_token1] = ACTIONS(1962), - [aux_sym_canonical_domains_token1] = ACTIONS(1962), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1962), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1962), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1962), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1962), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1962), - [aux_sym_certificate_file_token1] = ACTIONS(1962), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1962), - [aux_sym_channel_timeout_token1] = ACTIONS(1962), - [aux_sym_check_host_ip_token1] = ACTIONS(1962), - [aux_sym_ciphers_token1] = ACTIONS(1962), - [aux_sym_cipher_token1] = ACTIONS(1964), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1962), - [aux_sym_compression_token1] = ACTIONS(1962), - [aux_sym_connection_attempts_token1] = ACTIONS(1962), - [aux_sym_connect_timeout_token1] = ACTIONS(1962), - [aux_sym_control_master_token1] = ACTIONS(1962), - [aux_sym_control_path_token1] = ACTIONS(1962), - [aux_sym_control_persist_token1] = ACTIONS(1962), - [aux_sym_dynamic_forward_token1] = ACTIONS(1962), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1962), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1962), - [aux_sym_escape_char_token1] = ACTIONS(1962), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1962), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1962), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1962), - [aux_sym_forward_agent_token1] = ACTIONS(1962), - [aux_sym_forward_x11_token1] = ACTIONS(1964), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1962), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1962), - [aux_sym_gateway_ports_token1] = ACTIONS(1962), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1962), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1962), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1962), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1962), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1962), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1962), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1962), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1962), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1962), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1962), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1962), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1962), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1962), - [aux_sym_host_key_alias_token1] = ACTIONS(1962), - [aux_sym_hostname_token1] = ACTIONS(1962), - [aux_sym_identities_only_token1] = ACTIONS(1962), - [aux_sym_identity_agent_token1] = ACTIONS(1962), - [aux_sym_identity_file_token1] = ACTIONS(1962), - [aux_sym_ignore_unknown_token1] = ACTIONS(1962), - [aux_sym_include_token1] = ACTIONS(1962), - [aux_sym_ip_qos_token1] = ACTIONS(1962), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1962), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1962), - [aux_sym_kex_algorithms_token1] = ACTIONS(1962), - [aux_sym_known_hosts_command_token1] = ACTIONS(1962), - [aux_sym_local_command_token1] = ACTIONS(1962), - [aux_sym_local_forward_token1] = ACTIONS(1962), - [aux_sym_log_level_token1] = ACTIONS(1962), - [aux_sym_log_verbose_token1] = ACTIONS(1962), - [aux_sym_macs_token1] = ACTIONS(1962), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1962), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1962), - [aux_sym_password_authentication_token1] = ACTIONS(1962), - [aux_sym_permit_local_command_token1] = ACTIONS(1962), - [aux_sym_permit_remote_open_token1] = ACTIONS(1962), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1962), - [aux_sym_port_token1] = ACTIONS(1962), - [aux_sym_preferred_authentications_token1] = ACTIONS(1962), - [aux_sym_protocol_token1] = ACTIONS(1962), - [aux_sym_proxy_command_token1] = ACTIONS(1962), - [aux_sym_proxy_jump_token1] = ACTIONS(1962), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1962), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1962), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1962), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1962), - [aux_sym_rekey_limit_token1] = ACTIONS(1962), - [aux_sym_remote_command_token1] = ACTIONS(1962), - [aux_sym_remote_forward_token1] = ACTIONS(1962), - [aux_sym_request_tty_token1] = ACTIONS(1962), - [aux_sym_required_rsa_size_token1] = ACTIONS(1962), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1962), - [aux_sym_security_key_provider_token1] = ACTIONS(1962), - [aux_sym_send_env_token1] = ACTIONS(1962), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1962), - [aux_sym_server_alive_interval_token1] = ACTIONS(1962), - [aux_sym_session_type_token1] = ACTIONS(1962), - [aux_sym_set_env_token1] = ACTIONS(1962), - [aux_sym_stdin_null_token1] = ACTIONS(1962), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1962), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1962), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1962), - [aux_sym_syslog_facility_token1] = ACTIONS(1962), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1962), - [aux_sym_keep_alive_token1] = ACTIONS(1962), - [aux_sym_tag_token1] = ACTIONS(1962), - [aux_sym_tunnel_token1] = ACTIONS(1964), - [aux_sym_tunnel_device_token1] = ACTIONS(1962), - [aux_sym_update_host_keys_token1] = ACTIONS(1962), - [aux_sym_use_keychain_token1] = ACTIONS(1962), - [aux_sym_use_roaming_token1] = ACTIONS(1962), - [aux_sym_user_token1] = ACTIONS(1964), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1962), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1962), - [aux_sym_visual_host_key_token1] = ACTIONS(1962), - [aux_sym_xauth_location_token1] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1969), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(1973), + [aux_sym_match_token1] = ACTIONS(1969), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1969), + [aux_sym_address_family_token1] = ACTIONS(1969), + [aux_sym_batch_mode_token1] = ACTIONS(1969), + [aux_sym_bind_address_token1] = ACTIONS(1969), + [aux_sym_bind_interface_token1] = ACTIONS(1969), + [aux_sym_canonical_domains_token1] = ACTIONS(1969), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1969), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1969), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1969), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1969), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1969), + [aux_sym_certificate_file_token1] = ACTIONS(1969), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1969), + [aux_sym_channel_timeout_token1] = ACTIONS(1969), + [aux_sym_check_host_ip_token1] = ACTIONS(1969), + [aux_sym_ciphers_token1] = ACTIONS(1969), + [aux_sym_cipher_token1] = ACTIONS(1971), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1969), + [aux_sym_compression_token1] = ACTIONS(1969), + [aux_sym_connection_attempts_token1] = ACTIONS(1969), + [aux_sym_connect_timeout_token1] = ACTIONS(1969), + [aux_sym_control_master_token1] = ACTIONS(1969), + [aux_sym_control_path_token1] = ACTIONS(1969), + [aux_sym_control_persist_token1] = ACTIONS(1969), + [aux_sym_dynamic_forward_token1] = ACTIONS(1969), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1969), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1969), + [aux_sym_escape_char_token1] = ACTIONS(1969), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1969), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1969), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1969), + [aux_sym_forward_agent_token1] = ACTIONS(1969), + [aux_sym_forward_x11_token1] = ACTIONS(1971), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1969), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1969), + [aux_sym_gateway_ports_token1] = ACTIONS(1969), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1969), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1969), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1969), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1969), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1969), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1969), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1969), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1969), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1969), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1969), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1969), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1969), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1969), + [aux_sym_host_key_alias_token1] = ACTIONS(1969), + [aux_sym_hostname_token1] = ACTIONS(1969), + [aux_sym_identities_only_token1] = ACTIONS(1969), + [aux_sym_identity_agent_token1] = ACTIONS(1969), + [aux_sym_identity_file_token1] = ACTIONS(1969), + [aux_sym_ignore_unknown_token1] = ACTIONS(1969), + [aux_sym_include_token1] = ACTIONS(1969), + [aux_sym_ip_qos_token1] = ACTIONS(1969), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1969), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1969), + [aux_sym_kex_algorithms_token1] = ACTIONS(1969), + [aux_sym_known_hosts_command_token1] = ACTIONS(1969), + [aux_sym_local_command_token1] = ACTIONS(1969), + [aux_sym_local_forward_token1] = ACTIONS(1969), + [aux_sym_log_level_token1] = ACTIONS(1969), + [aux_sym_log_verbose_token1] = ACTIONS(1969), + [aux_sym_macs_token1] = ACTIONS(1969), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1969), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1969), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1969), + [aux_sym_password_authentication_token1] = ACTIONS(1969), + [aux_sym_permit_local_command_token1] = ACTIONS(1969), + [aux_sym_permit_remote_open_token1] = ACTIONS(1969), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1969), + [aux_sym_port_token1] = ACTIONS(1969), + [aux_sym_preferred_authentications_token1] = ACTIONS(1969), + [aux_sym_protocol_token1] = ACTIONS(1969), + [aux_sym_proxy_command_token1] = ACTIONS(1969), + [aux_sym_proxy_jump_token1] = ACTIONS(1969), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1969), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1969), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1969), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1969), + [aux_sym_rekey_limit_token1] = ACTIONS(1969), + [aux_sym_remote_command_token1] = ACTIONS(1969), + [aux_sym_remote_forward_token1] = ACTIONS(1969), + [aux_sym_request_tty_token1] = ACTIONS(1969), + [aux_sym_required_rsa_size_token1] = ACTIONS(1969), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1969), + [aux_sym_security_key_provider_token1] = ACTIONS(1969), + [aux_sym_send_env_token1] = ACTIONS(1969), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1969), + [aux_sym_server_alive_interval_token1] = ACTIONS(1969), + [aux_sym_session_type_token1] = ACTIONS(1969), + [aux_sym_set_env_token1] = ACTIONS(1969), + [aux_sym_stdin_null_token1] = ACTIONS(1969), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1969), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1969), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1969), + [aux_sym_syslog_facility_token1] = ACTIONS(1969), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1969), + [aux_sym_keep_alive_token1] = ACTIONS(1969), + [aux_sym_tag_token1] = ACTIONS(1969), + [aux_sym_tunnel_token1] = ACTIONS(1971), + [aux_sym_tunnel_device_token1] = ACTIONS(1969), + [aux_sym_update_host_keys_token1] = ACTIONS(1969), + [aux_sym_use_keychain_token1] = ACTIONS(1969), + [aux_sym_use_roaming_token1] = ACTIONS(1969), + [aux_sym_user_token1] = ACTIONS(1971), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1969), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1969), + [aux_sym_visual_host_key_token1] = ACTIONS(1969), + [aux_sym_xauth_location_token1] = ACTIONS(1969), }, [236] = { - [ts_builtin_sym_end] = ACTIONS(1968), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1972), - [aux_sym_match_token1] = ACTIONS(1968), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1968), - [aux_sym_address_family_token1] = ACTIONS(1968), - [aux_sym_batch_mode_token1] = ACTIONS(1968), - [aux_sym_bind_address_token1] = ACTIONS(1968), - [aux_sym_bind_interface_token1] = ACTIONS(1968), - [aux_sym_canonical_domains_token1] = ACTIONS(1968), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1968), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1968), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1968), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1968), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1968), - [aux_sym_certificate_file_token1] = ACTIONS(1968), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1968), - [aux_sym_channel_timeout_token1] = ACTIONS(1968), - [aux_sym_check_host_ip_token1] = ACTIONS(1968), - [aux_sym_ciphers_token1] = ACTIONS(1968), - [aux_sym_cipher_token1] = ACTIONS(1970), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1968), - [aux_sym_compression_token1] = ACTIONS(1968), - [aux_sym_connection_attempts_token1] = ACTIONS(1968), - [aux_sym_connect_timeout_token1] = ACTIONS(1968), - [aux_sym_control_master_token1] = ACTIONS(1968), - [aux_sym_control_path_token1] = ACTIONS(1968), - [aux_sym_control_persist_token1] = ACTIONS(1968), - [aux_sym_dynamic_forward_token1] = ACTIONS(1968), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1968), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1968), - [aux_sym_escape_char_token1] = ACTIONS(1968), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1968), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1968), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1968), - [aux_sym_forward_agent_token1] = ACTIONS(1968), - [aux_sym_forward_x11_token1] = ACTIONS(1970), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1968), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1968), - [aux_sym_gateway_ports_token1] = ACTIONS(1968), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1968), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1968), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1968), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1968), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1968), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1968), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1968), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1968), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1968), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1968), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1968), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1968), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1968), - [aux_sym_host_key_alias_token1] = ACTIONS(1968), - [aux_sym_hostname_token1] = ACTIONS(1968), - [aux_sym_identities_only_token1] = ACTIONS(1968), - [aux_sym_identity_agent_token1] = ACTIONS(1968), - [aux_sym_identity_file_token1] = ACTIONS(1968), - [aux_sym_ignore_unknown_token1] = ACTIONS(1968), - [aux_sym_include_token1] = ACTIONS(1968), - [aux_sym_ip_qos_token1] = ACTIONS(1968), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1968), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1968), - [aux_sym_kex_algorithms_token1] = ACTIONS(1968), - [aux_sym_known_hosts_command_token1] = ACTIONS(1968), - [aux_sym_local_command_token1] = ACTIONS(1968), - [aux_sym_local_forward_token1] = ACTIONS(1968), - [aux_sym_log_level_token1] = ACTIONS(1968), - [aux_sym_log_verbose_token1] = ACTIONS(1968), - [aux_sym_macs_token1] = ACTIONS(1968), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1968), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1968), - [aux_sym_password_authentication_token1] = ACTIONS(1968), - [aux_sym_permit_local_command_token1] = ACTIONS(1968), - [aux_sym_permit_remote_open_token1] = ACTIONS(1968), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1968), - [aux_sym_port_token1] = ACTIONS(1968), - [aux_sym_preferred_authentications_token1] = ACTIONS(1968), - [aux_sym_protocol_token1] = ACTIONS(1968), - [aux_sym_proxy_command_token1] = ACTIONS(1968), - [aux_sym_proxy_jump_token1] = ACTIONS(1968), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1968), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1968), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1968), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1968), - [aux_sym_rekey_limit_token1] = ACTIONS(1968), - [aux_sym_remote_command_token1] = ACTIONS(1968), - [aux_sym_remote_forward_token1] = ACTIONS(1968), - [aux_sym_request_tty_token1] = ACTIONS(1968), - [aux_sym_required_rsa_size_token1] = ACTIONS(1968), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1968), - [aux_sym_security_key_provider_token1] = ACTIONS(1968), - [aux_sym_send_env_token1] = ACTIONS(1968), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1968), - [aux_sym_server_alive_interval_token1] = ACTIONS(1968), - [aux_sym_session_type_token1] = ACTIONS(1968), - [aux_sym_set_env_token1] = ACTIONS(1968), - [aux_sym_stdin_null_token1] = ACTIONS(1968), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1968), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1968), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1968), - [aux_sym_syslog_facility_token1] = ACTIONS(1968), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1968), - [aux_sym_keep_alive_token1] = ACTIONS(1968), - [aux_sym_tag_token1] = ACTIONS(1968), - [aux_sym_tunnel_token1] = ACTIONS(1970), - [aux_sym_tunnel_device_token1] = ACTIONS(1968), - [aux_sym_update_host_keys_token1] = ACTIONS(1968), - [aux_sym_use_keychain_token1] = ACTIONS(1968), - [aux_sym_use_roaming_token1] = ACTIONS(1968), - [aux_sym_user_token1] = ACTIONS(1970), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1968), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1968), - [aux_sym_visual_host_key_token1] = ACTIONS(1968), - [aux_sym_xauth_location_token1] = ACTIONS(1968), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(1979), + [aux_sym_match_token1] = ACTIONS(1975), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1975), + [aux_sym_address_family_token1] = ACTIONS(1975), + [aux_sym_batch_mode_token1] = ACTIONS(1975), + [aux_sym_bind_address_token1] = ACTIONS(1975), + [aux_sym_bind_interface_token1] = ACTIONS(1975), + [aux_sym_canonical_domains_token1] = ACTIONS(1975), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1975), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1975), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1975), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1975), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1975), + [aux_sym_certificate_file_token1] = ACTIONS(1975), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1975), + [aux_sym_channel_timeout_token1] = ACTIONS(1975), + [aux_sym_check_host_ip_token1] = ACTIONS(1975), + [aux_sym_ciphers_token1] = ACTIONS(1975), + [aux_sym_cipher_token1] = ACTIONS(1977), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1975), + [aux_sym_compression_token1] = ACTIONS(1975), + [aux_sym_connection_attempts_token1] = ACTIONS(1975), + [aux_sym_connect_timeout_token1] = ACTIONS(1975), + [aux_sym_control_master_token1] = ACTIONS(1975), + [aux_sym_control_path_token1] = ACTIONS(1975), + [aux_sym_control_persist_token1] = ACTIONS(1975), + [aux_sym_dynamic_forward_token1] = ACTIONS(1975), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1975), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1975), + [aux_sym_escape_char_token1] = ACTIONS(1975), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1975), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1975), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1975), + [aux_sym_forward_agent_token1] = ACTIONS(1975), + [aux_sym_forward_x11_token1] = ACTIONS(1977), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1975), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1975), + [aux_sym_gateway_ports_token1] = ACTIONS(1975), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1975), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1975), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1975), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1975), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1975), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1975), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1975), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1975), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1975), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1975), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1975), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1975), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1975), + [aux_sym_host_key_alias_token1] = ACTIONS(1975), + [aux_sym_hostname_token1] = ACTIONS(1975), + [aux_sym_identities_only_token1] = ACTIONS(1975), + [aux_sym_identity_agent_token1] = ACTIONS(1975), + [aux_sym_identity_file_token1] = ACTIONS(1975), + [aux_sym_ignore_unknown_token1] = ACTIONS(1975), + [aux_sym_include_token1] = ACTIONS(1975), + [aux_sym_ip_qos_token1] = ACTIONS(1975), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1975), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1975), + [aux_sym_kex_algorithms_token1] = ACTIONS(1975), + [aux_sym_known_hosts_command_token1] = ACTIONS(1975), + [aux_sym_local_command_token1] = ACTIONS(1975), + [aux_sym_local_forward_token1] = ACTIONS(1975), + [aux_sym_log_level_token1] = ACTIONS(1975), + [aux_sym_log_verbose_token1] = ACTIONS(1975), + [aux_sym_macs_token1] = ACTIONS(1975), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1975), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1975), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1975), + [aux_sym_password_authentication_token1] = ACTIONS(1975), + [aux_sym_permit_local_command_token1] = ACTIONS(1975), + [aux_sym_permit_remote_open_token1] = ACTIONS(1975), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1975), + [aux_sym_port_token1] = ACTIONS(1975), + [aux_sym_preferred_authentications_token1] = ACTIONS(1975), + [aux_sym_protocol_token1] = ACTIONS(1975), + [aux_sym_proxy_command_token1] = ACTIONS(1975), + [aux_sym_proxy_jump_token1] = ACTIONS(1975), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1975), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1975), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1975), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1975), + [aux_sym_rekey_limit_token1] = ACTIONS(1975), + [aux_sym_remote_command_token1] = ACTIONS(1975), + [aux_sym_remote_forward_token1] = ACTIONS(1975), + [aux_sym_request_tty_token1] = ACTIONS(1975), + [aux_sym_required_rsa_size_token1] = ACTIONS(1975), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1975), + [aux_sym_security_key_provider_token1] = ACTIONS(1975), + [aux_sym_send_env_token1] = ACTIONS(1975), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1975), + [aux_sym_server_alive_interval_token1] = ACTIONS(1975), + [aux_sym_session_type_token1] = ACTIONS(1975), + [aux_sym_set_env_token1] = ACTIONS(1975), + [aux_sym_stdin_null_token1] = ACTIONS(1975), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1975), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1975), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1975), + [aux_sym_syslog_facility_token1] = ACTIONS(1975), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1975), + [aux_sym_keep_alive_token1] = ACTIONS(1975), + [aux_sym_tag_token1] = ACTIONS(1975), + [aux_sym_tunnel_token1] = ACTIONS(1977), + [aux_sym_tunnel_device_token1] = ACTIONS(1975), + [aux_sym_update_host_keys_token1] = ACTIONS(1975), + [aux_sym_use_keychain_token1] = ACTIONS(1975), + [aux_sym_use_roaming_token1] = ACTIONS(1975), + [aux_sym_user_token1] = ACTIONS(1977), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1975), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1975), + [aux_sym_visual_host_key_token1] = ACTIONS(1975), + [aux_sym_xauth_location_token1] = ACTIONS(1975), }, [237] = { - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1974), - [aux_sym_match_token1] = ACTIONS(1974), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1974), - [aux_sym_address_family_token1] = ACTIONS(1974), - [aux_sym_batch_mode_token1] = ACTIONS(1974), - [aux_sym_bind_address_token1] = ACTIONS(1974), - [aux_sym_bind_interface_token1] = ACTIONS(1974), - [aux_sym_canonical_domains_token1] = ACTIONS(1974), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1974), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1974), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1974), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1974), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1974), - [aux_sym_certificate_file_token1] = ACTIONS(1974), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1974), - [aux_sym_channel_timeout_token1] = ACTIONS(1974), - [aux_sym_check_host_ip_token1] = ACTIONS(1974), - [aux_sym_ciphers_token1] = ACTIONS(1974), - [aux_sym_cipher_token1] = ACTIONS(1976), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1974), - [aux_sym_compression_token1] = ACTIONS(1974), - [aux_sym_connection_attempts_token1] = ACTIONS(1974), - [aux_sym_connect_timeout_token1] = ACTIONS(1974), - [aux_sym_control_master_token1] = ACTIONS(1974), - [aux_sym_control_path_token1] = ACTIONS(1974), - [aux_sym_control_persist_token1] = ACTIONS(1974), - [aux_sym_dynamic_forward_token1] = ACTIONS(1974), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1974), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1974), - [aux_sym_escape_char_token1] = ACTIONS(1974), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1974), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1974), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1974), - [aux_sym_forward_agent_token1] = ACTIONS(1974), - [aux_sym_forward_x11_token1] = ACTIONS(1976), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1974), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1974), - [aux_sym_gateway_ports_token1] = ACTIONS(1974), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1974), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1974), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1974), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1974), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1974), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1974), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1974), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1974), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1974), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1974), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1974), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1974), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1974), - [aux_sym_host_key_alias_token1] = ACTIONS(1974), - [aux_sym_hostname_token1] = ACTIONS(1974), - [aux_sym_identities_only_token1] = ACTIONS(1974), - [aux_sym_identity_agent_token1] = ACTIONS(1974), - [aux_sym_identity_file_token1] = ACTIONS(1974), - [aux_sym_ignore_unknown_token1] = ACTIONS(1974), - [aux_sym_include_token1] = ACTIONS(1974), - [aux_sym_ip_qos_token1] = ACTIONS(1974), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1974), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1974), - [aux_sym_kex_algorithms_token1] = ACTIONS(1974), - [aux_sym_known_hosts_command_token1] = ACTIONS(1974), - [aux_sym_local_command_token1] = ACTIONS(1974), - [aux_sym_local_forward_token1] = ACTIONS(1974), - [aux_sym_log_level_token1] = ACTIONS(1974), - [aux_sym_log_verbose_token1] = ACTIONS(1974), - [aux_sym_macs_token1] = ACTIONS(1974), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1974), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1974), - [aux_sym_password_authentication_token1] = ACTIONS(1974), - [aux_sym_permit_local_command_token1] = ACTIONS(1974), - [aux_sym_permit_remote_open_token1] = ACTIONS(1974), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1974), - [aux_sym_port_token1] = ACTIONS(1974), - [aux_sym_preferred_authentications_token1] = ACTIONS(1974), - [aux_sym_protocol_token1] = ACTIONS(1974), - [aux_sym_proxy_command_token1] = ACTIONS(1974), - [aux_sym_proxy_jump_token1] = ACTIONS(1974), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1974), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1974), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1974), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1974), - [aux_sym_rekey_limit_token1] = ACTIONS(1974), - [aux_sym_remote_command_token1] = ACTIONS(1974), - [aux_sym_remote_forward_token1] = ACTIONS(1974), - [aux_sym_request_tty_token1] = ACTIONS(1974), - [aux_sym_required_rsa_size_token1] = ACTIONS(1974), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1974), - [aux_sym_security_key_provider_token1] = ACTIONS(1974), - [aux_sym_send_env_token1] = ACTIONS(1974), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1974), - [aux_sym_server_alive_interval_token1] = ACTIONS(1974), - [aux_sym_session_type_token1] = ACTIONS(1974), - [aux_sym_set_env_token1] = ACTIONS(1974), - [aux_sym_stdin_null_token1] = ACTIONS(1974), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1974), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1974), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1974), - [aux_sym_syslog_facility_token1] = ACTIONS(1974), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1974), - [aux_sym_keep_alive_token1] = ACTIONS(1974), - [aux_sym_tag_token1] = ACTIONS(1974), - [aux_sym_tunnel_token1] = ACTIONS(1976), - [aux_sym_tunnel_device_token1] = ACTIONS(1974), - [aux_sym_update_host_keys_token1] = ACTIONS(1974), - [aux_sym_use_keychain_token1] = ACTIONS(1974), - [aux_sym_use_roaming_token1] = ACTIONS(1974), - [aux_sym_user_token1] = ACTIONS(1976), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1974), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1974), - [aux_sym_visual_host_key_token1] = ACTIONS(1974), - [aux_sym_xauth_location_token1] = ACTIONS(1974), + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(1985), + [aux_sym_match_token1] = ACTIONS(1981), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1981), + [aux_sym_address_family_token1] = ACTIONS(1981), + [aux_sym_batch_mode_token1] = ACTIONS(1981), + [aux_sym_bind_address_token1] = ACTIONS(1981), + [aux_sym_bind_interface_token1] = ACTIONS(1981), + [aux_sym_canonical_domains_token1] = ACTIONS(1981), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1981), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1981), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1981), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1981), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1981), + [aux_sym_certificate_file_token1] = ACTIONS(1981), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1981), + [aux_sym_channel_timeout_token1] = ACTIONS(1981), + [aux_sym_check_host_ip_token1] = ACTIONS(1981), + [aux_sym_ciphers_token1] = ACTIONS(1981), + [aux_sym_cipher_token1] = ACTIONS(1983), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1981), + [aux_sym_compression_token1] = ACTIONS(1981), + [aux_sym_connection_attempts_token1] = ACTIONS(1981), + [aux_sym_connect_timeout_token1] = ACTIONS(1981), + [aux_sym_control_master_token1] = ACTIONS(1981), + [aux_sym_control_path_token1] = ACTIONS(1981), + [aux_sym_control_persist_token1] = ACTIONS(1981), + [aux_sym_dynamic_forward_token1] = ACTIONS(1981), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1981), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1981), + [aux_sym_escape_char_token1] = ACTIONS(1981), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1981), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1981), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1981), + [aux_sym_forward_agent_token1] = ACTIONS(1981), + [aux_sym_forward_x11_token1] = ACTIONS(1983), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1981), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1981), + [aux_sym_gateway_ports_token1] = ACTIONS(1981), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1981), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1981), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1981), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1981), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1981), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1981), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1981), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1981), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1981), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1981), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1981), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1981), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1981), + [aux_sym_host_key_alias_token1] = ACTIONS(1981), + [aux_sym_hostname_token1] = ACTIONS(1981), + [aux_sym_identities_only_token1] = ACTIONS(1981), + [aux_sym_identity_agent_token1] = ACTIONS(1981), + [aux_sym_identity_file_token1] = ACTIONS(1981), + [aux_sym_ignore_unknown_token1] = ACTIONS(1981), + [aux_sym_include_token1] = ACTIONS(1981), + [aux_sym_ip_qos_token1] = ACTIONS(1981), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1981), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1981), + [aux_sym_kex_algorithms_token1] = ACTIONS(1981), + [aux_sym_known_hosts_command_token1] = ACTIONS(1981), + [aux_sym_local_command_token1] = ACTIONS(1981), + [aux_sym_local_forward_token1] = ACTIONS(1981), + [aux_sym_log_level_token1] = ACTIONS(1981), + [aux_sym_log_verbose_token1] = ACTIONS(1981), + [aux_sym_macs_token1] = ACTIONS(1981), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1981), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1981), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1981), + [aux_sym_password_authentication_token1] = ACTIONS(1981), + [aux_sym_permit_local_command_token1] = ACTIONS(1981), + [aux_sym_permit_remote_open_token1] = ACTIONS(1981), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1981), + [aux_sym_port_token1] = ACTIONS(1981), + [aux_sym_preferred_authentications_token1] = ACTIONS(1981), + [aux_sym_protocol_token1] = ACTIONS(1981), + [aux_sym_proxy_command_token1] = ACTIONS(1981), + [aux_sym_proxy_jump_token1] = ACTIONS(1981), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1981), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1981), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1981), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1981), + [aux_sym_rekey_limit_token1] = ACTIONS(1981), + [aux_sym_remote_command_token1] = ACTIONS(1981), + [aux_sym_remote_forward_token1] = ACTIONS(1981), + [aux_sym_request_tty_token1] = ACTIONS(1981), + [aux_sym_required_rsa_size_token1] = ACTIONS(1981), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1981), + [aux_sym_security_key_provider_token1] = ACTIONS(1981), + [aux_sym_send_env_token1] = ACTIONS(1981), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1981), + [aux_sym_server_alive_interval_token1] = ACTIONS(1981), + [aux_sym_session_type_token1] = ACTIONS(1981), + [aux_sym_set_env_token1] = ACTIONS(1981), + [aux_sym_stdin_null_token1] = ACTIONS(1981), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1981), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1981), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1981), + [aux_sym_syslog_facility_token1] = ACTIONS(1981), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1981), + [aux_sym_keep_alive_token1] = ACTIONS(1981), + [aux_sym_tag_token1] = ACTIONS(1981), + [aux_sym_tunnel_token1] = ACTIONS(1983), + [aux_sym_tunnel_device_token1] = ACTIONS(1981), + [aux_sym_update_host_keys_token1] = ACTIONS(1981), + [aux_sym_use_keychain_token1] = ACTIONS(1981), + [aux_sym_use_roaming_token1] = ACTIONS(1981), + [aux_sym_user_token1] = ACTIONS(1983), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1981), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1981), + [aux_sym_visual_host_key_token1] = ACTIONS(1981), + [aux_sym_xauth_location_token1] = ACTIONS(1981), }, [238] = { - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1980), - [anon_sym_DQUOTE] = ACTIONS(1978), - [aux_sym_match_token1] = ACTIONS(1978), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1978), - [aux_sym_address_family_token1] = ACTIONS(1978), - [aux_sym_batch_mode_token1] = ACTIONS(1978), - [aux_sym_bind_address_token1] = ACTIONS(1978), - [aux_sym_bind_interface_token1] = ACTIONS(1978), - [aux_sym_canonical_domains_token1] = ACTIONS(1978), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1978), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1978), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1978), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1978), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1978), - [aux_sym_certificate_file_token1] = ACTIONS(1978), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1978), - [aux_sym_channel_timeout_token1] = ACTIONS(1978), - [aux_sym_check_host_ip_token1] = ACTIONS(1978), - [aux_sym_ciphers_token1] = ACTIONS(1978), - [aux_sym_cipher_token1] = ACTIONS(1980), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1978), - [aux_sym_compression_token1] = ACTIONS(1978), - [aux_sym_connection_attempts_token1] = ACTIONS(1978), - [aux_sym_connect_timeout_token1] = ACTIONS(1978), - [aux_sym_control_master_token1] = ACTIONS(1978), - [aux_sym_control_path_token1] = ACTIONS(1978), - [aux_sym_control_persist_token1] = ACTIONS(1978), - [aux_sym_dynamic_forward_token1] = ACTIONS(1978), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1978), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1978), - [aux_sym_escape_char_token1] = ACTIONS(1978), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1978), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1978), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1978), - [aux_sym_forward_agent_token1] = ACTIONS(1978), - [aux_sym_forward_x11_token1] = ACTIONS(1980), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1978), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1978), - [aux_sym_gateway_ports_token1] = ACTIONS(1978), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1978), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1978), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1978), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1978), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1978), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1978), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1978), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1978), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1978), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1978), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1978), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1978), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1978), - [aux_sym_host_key_alias_token1] = ACTIONS(1978), - [aux_sym_hostname_token1] = ACTIONS(1978), - [aux_sym_identities_only_token1] = ACTIONS(1978), - [aux_sym_identity_agent_token1] = ACTIONS(1978), - [aux_sym_identity_file_token1] = ACTIONS(1978), - [aux_sym_ignore_unknown_token1] = ACTIONS(1978), - [aux_sym_include_token1] = ACTIONS(1978), - [aux_sym_ip_qos_token1] = ACTIONS(1978), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1978), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1978), - [aux_sym_kex_algorithms_token1] = ACTIONS(1978), - [aux_sym_known_hosts_command_token1] = ACTIONS(1978), - [aux_sym_local_command_token1] = ACTIONS(1978), - [aux_sym_local_forward_token1] = ACTIONS(1978), - [aux_sym_log_level_token1] = ACTIONS(1978), - [aux_sym_log_verbose_token1] = ACTIONS(1978), - [aux_sym_macs_token1] = ACTIONS(1978), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1978), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1978), - [aux_sym_password_authentication_token1] = ACTIONS(1978), - [aux_sym_permit_local_command_token1] = ACTIONS(1978), - [aux_sym_permit_remote_open_token1] = ACTIONS(1978), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1978), - [aux_sym_port_token1] = ACTIONS(1978), - [aux_sym_preferred_authentications_token1] = ACTIONS(1978), - [aux_sym_protocol_token1] = ACTIONS(1978), - [aux_sym_proxy_command_token1] = ACTIONS(1978), - [aux_sym_proxy_jump_token1] = ACTIONS(1978), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1978), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1978), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1978), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1978), - [aux_sym_rekey_limit_token1] = ACTIONS(1978), - [aux_sym_remote_command_token1] = ACTIONS(1978), - [aux_sym_remote_forward_token1] = ACTIONS(1978), - [aux_sym_request_tty_token1] = ACTIONS(1978), - [aux_sym_required_rsa_size_token1] = ACTIONS(1978), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1978), - [aux_sym_security_key_provider_token1] = ACTIONS(1978), - [aux_sym_send_env_token1] = ACTIONS(1978), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1978), - [aux_sym_server_alive_interval_token1] = ACTIONS(1978), - [aux_sym_session_type_token1] = ACTIONS(1978), - [aux_sym_set_env_token1] = ACTIONS(1978), - [aux_sym_stdin_null_token1] = ACTIONS(1978), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1978), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1978), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1978), - [aux_sym_syslog_facility_token1] = ACTIONS(1978), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1978), - [aux_sym_keep_alive_token1] = ACTIONS(1978), - [aux_sym_tag_token1] = ACTIONS(1978), - [aux_sym_tunnel_token1] = ACTIONS(1980), - [aux_sym_tunnel_device_token1] = ACTIONS(1978), - [aux_sym_update_host_keys_token1] = ACTIONS(1978), - [aux_sym_use_keychain_token1] = ACTIONS(1978), - [aux_sym_use_roaming_token1] = ACTIONS(1978), - [aux_sym_user_token1] = ACTIONS(1980), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1978), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1978), - [aux_sym_visual_host_key_token1] = ACTIONS(1978), - [aux_sym_xauth_location_token1] = ACTIONS(1978), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [aux_sym_match_token1] = ACTIONS(1987), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1987), + [aux_sym_address_family_token1] = ACTIONS(1987), + [aux_sym_batch_mode_token1] = ACTIONS(1987), + [aux_sym_bind_address_token1] = ACTIONS(1987), + [aux_sym_bind_interface_token1] = ACTIONS(1987), + [aux_sym_canonical_domains_token1] = ACTIONS(1987), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1987), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1987), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1987), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1987), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1987), + [aux_sym_certificate_file_token1] = ACTIONS(1987), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1987), + [aux_sym_channel_timeout_token1] = ACTIONS(1987), + [aux_sym_check_host_ip_token1] = ACTIONS(1987), + [aux_sym_ciphers_token1] = ACTIONS(1987), + [aux_sym_cipher_token1] = ACTIONS(1989), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1987), + [aux_sym_compression_token1] = ACTIONS(1987), + [aux_sym_connection_attempts_token1] = ACTIONS(1987), + [aux_sym_connect_timeout_token1] = ACTIONS(1987), + [aux_sym_control_master_token1] = ACTIONS(1987), + [aux_sym_control_path_token1] = ACTIONS(1987), + [aux_sym_control_persist_token1] = ACTIONS(1987), + [aux_sym_dynamic_forward_token1] = ACTIONS(1987), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1987), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1987), + [aux_sym_escape_char_token1] = ACTIONS(1987), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1987), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1987), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1987), + [aux_sym_forward_agent_token1] = ACTIONS(1987), + [aux_sym_forward_x11_token1] = ACTIONS(1989), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1987), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1987), + [aux_sym_gateway_ports_token1] = ACTIONS(1987), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1987), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1987), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1987), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1987), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1987), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1987), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1987), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1987), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1987), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1987), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1987), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1987), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1987), + [aux_sym_host_key_alias_token1] = ACTIONS(1987), + [aux_sym_hostname_token1] = ACTIONS(1987), + [aux_sym_identities_only_token1] = ACTIONS(1987), + [aux_sym_identity_agent_token1] = ACTIONS(1987), + [aux_sym_identity_file_token1] = ACTIONS(1987), + [aux_sym_ignore_unknown_token1] = ACTIONS(1987), + [aux_sym_include_token1] = ACTIONS(1987), + [aux_sym_ip_qos_token1] = ACTIONS(1987), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1987), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1987), + [aux_sym_kex_algorithms_token1] = ACTIONS(1987), + [aux_sym_known_hosts_command_token1] = ACTIONS(1987), + [aux_sym_local_command_token1] = ACTIONS(1987), + [aux_sym_local_forward_token1] = ACTIONS(1987), + [aux_sym_log_level_token1] = ACTIONS(1987), + [aux_sym_log_verbose_token1] = ACTIONS(1987), + [aux_sym_macs_token1] = ACTIONS(1987), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1987), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1987), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1987), + [aux_sym_password_authentication_token1] = ACTIONS(1987), + [aux_sym_permit_local_command_token1] = ACTIONS(1987), + [aux_sym_permit_remote_open_token1] = ACTIONS(1987), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1987), + [aux_sym_port_token1] = ACTIONS(1987), + [aux_sym_preferred_authentications_token1] = ACTIONS(1987), + [aux_sym_protocol_token1] = ACTIONS(1987), + [aux_sym_proxy_command_token1] = ACTIONS(1987), + [aux_sym_proxy_jump_token1] = ACTIONS(1987), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1987), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1987), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1987), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1987), + [aux_sym_rekey_limit_token1] = ACTIONS(1987), + [aux_sym_remote_command_token1] = ACTIONS(1987), + [aux_sym_remote_forward_token1] = ACTIONS(1987), + [aux_sym_request_tty_token1] = ACTIONS(1987), + [aux_sym_required_rsa_size_token1] = ACTIONS(1987), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1987), + [aux_sym_security_key_provider_token1] = ACTIONS(1987), + [aux_sym_send_env_token1] = ACTIONS(1987), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1987), + [aux_sym_server_alive_interval_token1] = ACTIONS(1987), + [aux_sym_session_type_token1] = ACTIONS(1987), + [aux_sym_set_env_token1] = ACTIONS(1987), + [aux_sym_stdin_null_token1] = ACTIONS(1987), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1987), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1987), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1987), + [aux_sym_syslog_facility_token1] = ACTIONS(1987), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1987), + [aux_sym_keep_alive_token1] = ACTIONS(1987), + [aux_sym_tag_token1] = ACTIONS(1987), + [aux_sym_tunnel_token1] = ACTIONS(1989), + [aux_sym_tunnel_device_token1] = ACTIONS(1987), + [aux_sym_update_host_keys_token1] = ACTIONS(1987), + [aux_sym_use_keychain_token1] = ACTIONS(1987), + [aux_sym_use_roaming_token1] = ACTIONS(1987), + [aux_sym_user_token1] = ACTIONS(1989), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1987), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1987), + [aux_sym_visual_host_key_token1] = ACTIONS(1987), + [aux_sym_xauth_location_token1] = ACTIONS(1987), }, [239] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1986), - [aux_sym_match_token1] = ACTIONS(1982), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1982), - [aux_sym_address_family_token1] = ACTIONS(1982), - [aux_sym_batch_mode_token1] = ACTIONS(1982), - [aux_sym_bind_address_token1] = ACTIONS(1982), - [aux_sym_bind_interface_token1] = ACTIONS(1982), - [aux_sym_canonical_domains_token1] = ACTIONS(1982), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1982), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1982), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1982), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1982), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1982), - [aux_sym_certificate_file_token1] = ACTIONS(1982), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1982), - [aux_sym_channel_timeout_token1] = ACTIONS(1982), - [aux_sym_check_host_ip_token1] = ACTIONS(1982), - [aux_sym_ciphers_token1] = ACTIONS(1982), - [aux_sym_cipher_token1] = ACTIONS(1984), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1982), - [aux_sym_compression_token1] = ACTIONS(1982), - [aux_sym_connection_attempts_token1] = ACTIONS(1982), - [aux_sym_connect_timeout_token1] = ACTIONS(1982), - [aux_sym_control_master_token1] = ACTIONS(1982), - [aux_sym_control_path_token1] = ACTIONS(1982), - [aux_sym_control_persist_token1] = ACTIONS(1982), - [aux_sym_dynamic_forward_token1] = ACTIONS(1982), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1982), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1982), - [aux_sym_escape_char_token1] = ACTIONS(1982), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1982), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1982), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1982), - [aux_sym_forward_agent_token1] = ACTIONS(1982), - [aux_sym_forward_x11_token1] = ACTIONS(1984), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1982), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1982), - [aux_sym_gateway_ports_token1] = ACTIONS(1982), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1982), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1982), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1982), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1982), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1982), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1982), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1982), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1982), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1982), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1982), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1982), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1982), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1982), - [aux_sym_host_key_alias_token1] = ACTIONS(1982), - [aux_sym_hostname_token1] = ACTIONS(1982), - [aux_sym_identities_only_token1] = ACTIONS(1982), - [aux_sym_identity_agent_token1] = ACTIONS(1982), - [aux_sym_identity_file_token1] = ACTIONS(1982), - [aux_sym_ignore_unknown_token1] = ACTIONS(1982), - [aux_sym_include_token1] = ACTIONS(1982), - [aux_sym_ip_qos_token1] = ACTIONS(1982), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1982), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1982), - [aux_sym_kex_algorithms_token1] = ACTIONS(1982), - [aux_sym_known_hosts_command_token1] = ACTIONS(1982), - [aux_sym_local_command_token1] = ACTIONS(1982), - [aux_sym_local_forward_token1] = ACTIONS(1982), - [aux_sym_log_level_token1] = ACTIONS(1982), - [aux_sym_log_verbose_token1] = ACTIONS(1982), - [aux_sym_macs_token1] = ACTIONS(1982), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1982), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1982), - [aux_sym_password_authentication_token1] = ACTIONS(1982), - [aux_sym_permit_local_command_token1] = ACTIONS(1982), - [aux_sym_permit_remote_open_token1] = ACTIONS(1982), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1982), - [aux_sym_port_token1] = ACTIONS(1982), - [aux_sym_preferred_authentications_token1] = ACTIONS(1982), - [aux_sym_protocol_token1] = ACTIONS(1982), - [aux_sym_proxy_command_token1] = ACTIONS(1982), - [aux_sym_proxy_jump_token1] = ACTIONS(1982), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1982), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1982), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1982), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1982), - [aux_sym_rekey_limit_token1] = ACTIONS(1982), - [aux_sym_remote_command_token1] = ACTIONS(1982), - [aux_sym_remote_forward_token1] = ACTIONS(1982), - [aux_sym_request_tty_token1] = ACTIONS(1982), - [aux_sym_required_rsa_size_token1] = ACTIONS(1982), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1982), - [aux_sym_security_key_provider_token1] = ACTIONS(1982), - [aux_sym_send_env_token1] = ACTIONS(1982), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1982), - [aux_sym_server_alive_interval_token1] = ACTIONS(1982), - [aux_sym_session_type_token1] = ACTIONS(1982), - [aux_sym_set_env_token1] = ACTIONS(1982), - [aux_sym_stdin_null_token1] = ACTIONS(1982), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1982), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1982), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1982), - [aux_sym_syslog_facility_token1] = ACTIONS(1982), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1982), - [aux_sym_keep_alive_token1] = ACTIONS(1982), - [aux_sym_tag_token1] = ACTIONS(1982), - [aux_sym_tunnel_token1] = ACTIONS(1984), - [aux_sym_tunnel_device_token1] = ACTIONS(1982), - [aux_sym_update_host_keys_token1] = ACTIONS(1982), - [aux_sym_use_keychain_token1] = ACTIONS(1982), - [aux_sym_use_roaming_token1] = ACTIONS(1982), - [aux_sym_user_token1] = ACTIONS(1984), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1982), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1982), - [aux_sym_visual_host_key_token1] = ACTIONS(1982), - [aux_sym_xauth_location_token1] = ACTIONS(1982), + [ts_builtin_sym_end] = ACTIONS(1993), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(1993), + [aux_sym_match_token1] = ACTIONS(1993), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1993), + [aux_sym_address_family_token1] = ACTIONS(1993), + [aux_sym_batch_mode_token1] = ACTIONS(1993), + [aux_sym_bind_address_token1] = ACTIONS(1993), + [aux_sym_bind_interface_token1] = ACTIONS(1993), + [aux_sym_canonical_domains_token1] = ACTIONS(1993), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1993), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1993), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1993), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1993), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1993), + [aux_sym_certificate_file_token1] = ACTIONS(1993), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1993), + [aux_sym_channel_timeout_token1] = ACTIONS(1993), + [aux_sym_check_host_ip_token1] = ACTIONS(1993), + [aux_sym_ciphers_token1] = ACTIONS(1993), + [aux_sym_cipher_token1] = ACTIONS(1995), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1993), + [aux_sym_compression_token1] = ACTIONS(1993), + [aux_sym_connection_attempts_token1] = ACTIONS(1993), + [aux_sym_connect_timeout_token1] = ACTIONS(1993), + [aux_sym_control_master_token1] = ACTIONS(1993), + [aux_sym_control_path_token1] = ACTIONS(1993), + [aux_sym_control_persist_token1] = ACTIONS(1993), + [aux_sym_dynamic_forward_token1] = ACTIONS(1993), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1993), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1993), + [aux_sym_escape_char_token1] = ACTIONS(1993), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1993), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1993), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1993), + [aux_sym_forward_agent_token1] = ACTIONS(1993), + [aux_sym_forward_x11_token1] = ACTIONS(1995), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1993), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1993), + [aux_sym_gateway_ports_token1] = ACTIONS(1993), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1993), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1993), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1993), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1993), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1993), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1993), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1993), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1993), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1993), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1993), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1993), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1993), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1993), + [aux_sym_host_key_alias_token1] = ACTIONS(1993), + [aux_sym_hostname_token1] = ACTIONS(1993), + [aux_sym_identities_only_token1] = ACTIONS(1993), + [aux_sym_identity_agent_token1] = ACTIONS(1993), + [aux_sym_identity_file_token1] = ACTIONS(1993), + [aux_sym_ignore_unknown_token1] = ACTIONS(1993), + [aux_sym_include_token1] = ACTIONS(1993), + [aux_sym_ip_qos_token1] = ACTIONS(1993), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1993), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1993), + [aux_sym_kex_algorithms_token1] = ACTIONS(1993), + [aux_sym_known_hosts_command_token1] = ACTIONS(1993), + [aux_sym_local_command_token1] = ACTIONS(1993), + [aux_sym_local_forward_token1] = ACTIONS(1993), + [aux_sym_log_level_token1] = ACTIONS(1993), + [aux_sym_log_verbose_token1] = ACTIONS(1993), + [aux_sym_macs_token1] = ACTIONS(1993), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1993), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1993), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1993), + [aux_sym_password_authentication_token1] = ACTIONS(1993), + [aux_sym_permit_local_command_token1] = ACTIONS(1993), + [aux_sym_permit_remote_open_token1] = ACTIONS(1993), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1993), + [aux_sym_port_token1] = ACTIONS(1993), + [aux_sym_preferred_authentications_token1] = ACTIONS(1993), + [aux_sym_protocol_token1] = ACTIONS(1993), + [aux_sym_proxy_command_token1] = ACTIONS(1993), + [aux_sym_proxy_jump_token1] = ACTIONS(1993), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1993), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1993), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1993), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1993), + [aux_sym_rekey_limit_token1] = ACTIONS(1993), + [aux_sym_remote_command_token1] = ACTIONS(1993), + [aux_sym_remote_forward_token1] = ACTIONS(1993), + [aux_sym_request_tty_token1] = ACTIONS(1993), + [aux_sym_required_rsa_size_token1] = ACTIONS(1993), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1993), + [aux_sym_security_key_provider_token1] = ACTIONS(1993), + [aux_sym_send_env_token1] = ACTIONS(1993), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1993), + [aux_sym_server_alive_interval_token1] = ACTIONS(1993), + [aux_sym_session_type_token1] = ACTIONS(1993), + [aux_sym_set_env_token1] = ACTIONS(1993), + [aux_sym_stdin_null_token1] = ACTIONS(1993), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1993), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1993), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1993), + [aux_sym_syslog_facility_token1] = ACTIONS(1993), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1993), + [aux_sym_keep_alive_token1] = ACTIONS(1993), + [aux_sym_tag_token1] = ACTIONS(1993), + [aux_sym_tunnel_token1] = ACTIONS(1995), + [aux_sym_tunnel_device_token1] = ACTIONS(1993), + [aux_sym_update_host_keys_token1] = ACTIONS(1993), + [aux_sym_use_keychain_token1] = ACTIONS(1993), + [aux_sym_use_roaming_token1] = ACTIONS(1993), + [aux_sym_user_token1] = ACTIONS(1995), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1993), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1993), + [aux_sym_visual_host_key_token1] = ACTIONS(1993), + [aux_sym_xauth_location_token1] = ACTIONS(1993), }, [240] = { - [ts_builtin_sym_end] = ACTIONS(1988), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1990), - [anon_sym_DQUOTE] = ACTIONS(1988), - [aux_sym_match_token1] = ACTIONS(1988), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1988), - [aux_sym_address_family_token1] = ACTIONS(1988), - [aux_sym_batch_mode_token1] = ACTIONS(1988), - [aux_sym_bind_address_token1] = ACTIONS(1988), - [aux_sym_bind_interface_token1] = ACTIONS(1988), - [aux_sym_canonical_domains_token1] = ACTIONS(1988), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1988), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1988), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1988), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1988), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1988), - [aux_sym_certificate_file_token1] = ACTIONS(1988), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1988), - [aux_sym_channel_timeout_token1] = ACTIONS(1988), - [aux_sym_check_host_ip_token1] = ACTIONS(1988), - [aux_sym_ciphers_token1] = ACTIONS(1988), - [aux_sym_cipher_token1] = ACTIONS(1990), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1988), - [aux_sym_compression_token1] = ACTIONS(1988), - [aux_sym_connection_attempts_token1] = ACTIONS(1988), - [aux_sym_connect_timeout_token1] = ACTIONS(1988), - [aux_sym_control_master_token1] = ACTIONS(1988), - [aux_sym_control_path_token1] = ACTIONS(1988), - [aux_sym_control_persist_token1] = ACTIONS(1988), - [aux_sym_dynamic_forward_token1] = ACTIONS(1988), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1988), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1988), - [aux_sym_escape_char_token1] = ACTIONS(1988), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1988), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1988), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1988), - [aux_sym_forward_agent_token1] = ACTIONS(1988), - [aux_sym_forward_x11_token1] = ACTIONS(1990), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1988), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1988), - [aux_sym_gateway_ports_token1] = ACTIONS(1988), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1988), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1988), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1988), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1988), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1988), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1988), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1988), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1988), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1988), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1988), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1988), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1988), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1988), - [aux_sym_host_key_alias_token1] = ACTIONS(1988), - [aux_sym_hostname_token1] = ACTIONS(1988), - [aux_sym_identities_only_token1] = ACTIONS(1988), - [aux_sym_identity_agent_token1] = ACTIONS(1988), - [aux_sym_identity_file_token1] = ACTIONS(1988), - [aux_sym_ignore_unknown_token1] = ACTIONS(1988), - [aux_sym_include_token1] = ACTIONS(1988), - [aux_sym_ip_qos_token1] = ACTIONS(1988), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1988), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1988), - [aux_sym_kex_algorithms_token1] = ACTIONS(1988), - [aux_sym_known_hosts_command_token1] = ACTIONS(1988), - [aux_sym_local_command_token1] = ACTIONS(1988), - [aux_sym_local_forward_token1] = ACTIONS(1988), - [aux_sym_log_level_token1] = ACTIONS(1988), - [aux_sym_log_verbose_token1] = ACTIONS(1988), - [aux_sym_macs_token1] = ACTIONS(1988), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1988), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1988), - [aux_sym_password_authentication_token1] = ACTIONS(1988), - [aux_sym_permit_local_command_token1] = ACTIONS(1988), - [aux_sym_permit_remote_open_token1] = ACTIONS(1988), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1988), - [aux_sym_port_token1] = ACTIONS(1988), - [aux_sym_preferred_authentications_token1] = ACTIONS(1988), - [aux_sym_protocol_token1] = ACTIONS(1988), - [aux_sym_proxy_command_token1] = ACTIONS(1988), - [aux_sym_proxy_jump_token1] = ACTIONS(1988), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1988), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1988), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1988), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1988), - [aux_sym_rekey_limit_token1] = ACTIONS(1988), - [aux_sym_remote_command_token1] = ACTIONS(1988), - [aux_sym_remote_forward_token1] = ACTIONS(1988), - [aux_sym_request_tty_token1] = ACTIONS(1988), - [aux_sym_required_rsa_size_token1] = ACTIONS(1988), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1988), - [aux_sym_security_key_provider_token1] = ACTIONS(1988), - [aux_sym_send_env_token1] = ACTIONS(1988), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1988), - [aux_sym_server_alive_interval_token1] = ACTIONS(1988), - [aux_sym_session_type_token1] = ACTIONS(1988), - [aux_sym_set_env_token1] = ACTIONS(1988), - [aux_sym_stdin_null_token1] = ACTIONS(1988), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1988), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1988), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1988), - [aux_sym_syslog_facility_token1] = ACTIONS(1988), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1988), - [aux_sym_keep_alive_token1] = ACTIONS(1988), - [aux_sym_tag_token1] = ACTIONS(1988), - [aux_sym_tunnel_token1] = ACTIONS(1990), - [aux_sym_tunnel_device_token1] = ACTIONS(1988), - [aux_sym_update_host_keys_token1] = ACTIONS(1988), - [aux_sym_use_keychain_token1] = ACTIONS(1988), - [aux_sym_use_roaming_token1] = ACTIONS(1988), - [aux_sym_user_token1] = ACTIONS(1990), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1988), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1988), - [aux_sym_visual_host_key_token1] = ACTIONS(1988), - [aux_sym_xauth_location_token1] = ACTIONS(1988), + [ts_builtin_sym_end] = ACTIONS(1997), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1997), + [aux_sym_match_token1] = ACTIONS(1997), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1997), + [aux_sym_address_family_token1] = ACTIONS(1997), + [aux_sym_batch_mode_token1] = ACTIONS(1997), + [aux_sym_bind_address_token1] = ACTIONS(1997), + [aux_sym_bind_interface_token1] = ACTIONS(1997), + [aux_sym_canonical_domains_token1] = ACTIONS(1997), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1997), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1997), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1997), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1997), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1997), + [aux_sym_certificate_file_token1] = ACTIONS(1997), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1997), + [aux_sym_channel_timeout_token1] = ACTIONS(1997), + [aux_sym_check_host_ip_token1] = ACTIONS(1997), + [aux_sym_ciphers_token1] = ACTIONS(1997), + [aux_sym_cipher_token1] = ACTIONS(1999), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1997), + [aux_sym_compression_token1] = ACTIONS(1997), + [aux_sym_connection_attempts_token1] = ACTIONS(1997), + [aux_sym_connect_timeout_token1] = ACTIONS(1997), + [aux_sym_control_master_token1] = ACTIONS(1997), + [aux_sym_control_path_token1] = ACTIONS(1997), + [aux_sym_control_persist_token1] = ACTIONS(1997), + [aux_sym_dynamic_forward_token1] = ACTIONS(1997), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1997), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1997), + [aux_sym_escape_char_token1] = ACTIONS(1997), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1997), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1997), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1997), + [aux_sym_forward_agent_token1] = ACTIONS(1997), + [aux_sym_forward_x11_token1] = ACTIONS(1999), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1997), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1997), + [aux_sym_gateway_ports_token1] = ACTIONS(1997), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1997), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1997), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1997), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1997), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1997), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1997), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1997), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1997), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1997), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1997), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1997), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1997), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1997), + [aux_sym_host_key_alias_token1] = ACTIONS(1997), + [aux_sym_hostname_token1] = ACTIONS(1997), + [aux_sym_identities_only_token1] = ACTIONS(1997), + [aux_sym_identity_agent_token1] = ACTIONS(1997), + [aux_sym_identity_file_token1] = ACTIONS(1997), + [aux_sym_ignore_unknown_token1] = ACTIONS(1997), + [aux_sym_include_token1] = ACTIONS(1997), + [aux_sym_ip_qos_token1] = ACTIONS(1997), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1997), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1997), + [aux_sym_kex_algorithms_token1] = ACTIONS(1997), + [aux_sym_known_hosts_command_token1] = ACTIONS(1997), + [aux_sym_local_command_token1] = ACTIONS(1997), + [aux_sym_local_forward_token1] = ACTIONS(1997), + [aux_sym_log_level_token1] = ACTIONS(1997), + [aux_sym_log_verbose_token1] = ACTIONS(1997), + [aux_sym_macs_token1] = ACTIONS(1997), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1997), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1997), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1997), + [aux_sym_password_authentication_token1] = ACTIONS(1997), + [aux_sym_permit_local_command_token1] = ACTIONS(1997), + [aux_sym_permit_remote_open_token1] = ACTIONS(1997), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1997), + [aux_sym_port_token1] = ACTIONS(1997), + [aux_sym_preferred_authentications_token1] = ACTIONS(1997), + [aux_sym_protocol_token1] = ACTIONS(1997), + [aux_sym_proxy_command_token1] = ACTIONS(1997), + [aux_sym_proxy_jump_token1] = ACTIONS(1997), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1997), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1997), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1997), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1997), + [aux_sym_rekey_limit_token1] = ACTIONS(1997), + [aux_sym_remote_command_token1] = ACTIONS(1997), + [aux_sym_remote_forward_token1] = ACTIONS(1997), + [aux_sym_request_tty_token1] = ACTIONS(1997), + [aux_sym_required_rsa_size_token1] = ACTIONS(1997), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1997), + [aux_sym_security_key_provider_token1] = ACTIONS(1997), + [aux_sym_send_env_token1] = ACTIONS(1997), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1997), + [aux_sym_server_alive_interval_token1] = ACTIONS(1997), + [aux_sym_session_type_token1] = ACTIONS(1997), + [aux_sym_set_env_token1] = ACTIONS(1997), + [aux_sym_stdin_null_token1] = ACTIONS(1997), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1997), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1997), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1997), + [aux_sym_syslog_facility_token1] = ACTIONS(1997), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1997), + [aux_sym_keep_alive_token1] = ACTIONS(1997), + [aux_sym_tag_token1] = ACTIONS(1997), + [aux_sym_tunnel_token1] = ACTIONS(1999), + [aux_sym_tunnel_device_token1] = ACTIONS(1997), + [aux_sym_update_host_keys_token1] = ACTIONS(1997), + [aux_sym_use_keychain_token1] = ACTIONS(1997), + [aux_sym_use_roaming_token1] = ACTIONS(1997), + [aux_sym_user_token1] = ACTIONS(1999), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1997), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1997), + [aux_sym_visual_host_key_token1] = ACTIONS(1997), + [aux_sym_xauth_location_token1] = ACTIONS(1997), }, [241] = { - [ts_builtin_sym_end] = ACTIONS(1992), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1994), - [anon_sym_DQUOTE] = ACTIONS(1996), - [aux_sym_match_token1] = ACTIONS(1992), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1992), - [aux_sym_address_family_token1] = ACTIONS(1992), - [aux_sym_batch_mode_token1] = ACTIONS(1992), - [aux_sym_bind_address_token1] = ACTIONS(1992), - [aux_sym_bind_interface_token1] = ACTIONS(1992), - [aux_sym_canonical_domains_token1] = ACTIONS(1992), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1992), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1992), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1992), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1992), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1992), - [aux_sym_certificate_file_token1] = ACTIONS(1992), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1992), - [aux_sym_channel_timeout_token1] = ACTIONS(1992), - [aux_sym_check_host_ip_token1] = ACTIONS(1992), - [aux_sym_ciphers_token1] = ACTIONS(1992), - [aux_sym_cipher_token1] = ACTIONS(1994), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1992), - [aux_sym_compression_token1] = ACTIONS(1992), - [aux_sym_connection_attempts_token1] = ACTIONS(1992), - [aux_sym_connect_timeout_token1] = ACTIONS(1992), - [aux_sym_control_master_token1] = ACTIONS(1992), - [aux_sym_control_path_token1] = ACTIONS(1992), - [aux_sym_control_persist_token1] = ACTIONS(1992), - [aux_sym_dynamic_forward_token1] = ACTIONS(1992), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1992), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1992), - [aux_sym_escape_char_token1] = ACTIONS(1992), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1992), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1992), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1992), - [aux_sym_forward_agent_token1] = ACTIONS(1992), - [aux_sym_forward_x11_token1] = ACTIONS(1994), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1992), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1992), - [aux_sym_gateway_ports_token1] = ACTIONS(1992), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1992), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1992), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1992), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1992), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1992), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1992), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1992), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1992), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1992), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1992), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1992), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1992), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1992), - [aux_sym_host_key_alias_token1] = ACTIONS(1992), - [aux_sym_hostname_token1] = ACTIONS(1992), - [aux_sym_identities_only_token1] = ACTIONS(1992), - [aux_sym_identity_agent_token1] = ACTIONS(1992), - [aux_sym_identity_file_token1] = ACTIONS(1992), - [aux_sym_ignore_unknown_token1] = ACTIONS(1992), - [aux_sym_include_token1] = ACTIONS(1992), - [aux_sym_ip_qos_token1] = ACTIONS(1992), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1992), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1992), - [aux_sym_kex_algorithms_token1] = ACTIONS(1992), - [aux_sym_known_hosts_command_token1] = ACTIONS(1992), - [aux_sym_local_command_token1] = ACTIONS(1992), - [aux_sym_local_forward_token1] = ACTIONS(1992), - [aux_sym_log_level_token1] = ACTIONS(1992), - [aux_sym_log_verbose_token1] = ACTIONS(1992), - [aux_sym_macs_token1] = ACTIONS(1992), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1992), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1992), - [aux_sym_password_authentication_token1] = ACTIONS(1992), - [aux_sym_permit_local_command_token1] = ACTIONS(1992), - [aux_sym_permit_remote_open_token1] = ACTIONS(1992), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1992), - [aux_sym_port_token1] = ACTIONS(1992), - [aux_sym_preferred_authentications_token1] = ACTIONS(1992), - [aux_sym_protocol_token1] = ACTIONS(1992), - [aux_sym_proxy_command_token1] = ACTIONS(1992), - [aux_sym_proxy_jump_token1] = ACTIONS(1992), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1992), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1992), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1992), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1992), - [aux_sym_rekey_limit_token1] = ACTIONS(1992), - [aux_sym_remote_command_token1] = ACTIONS(1992), - [aux_sym_remote_forward_token1] = ACTIONS(1992), - [aux_sym_request_tty_token1] = ACTIONS(1992), - [aux_sym_required_rsa_size_token1] = ACTIONS(1992), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1992), - [aux_sym_security_key_provider_token1] = ACTIONS(1992), - [aux_sym_send_env_token1] = ACTIONS(1992), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1992), - [aux_sym_server_alive_interval_token1] = ACTIONS(1992), - [aux_sym_session_type_token1] = ACTIONS(1992), - [aux_sym_set_env_token1] = ACTIONS(1992), - [aux_sym_stdin_null_token1] = ACTIONS(1992), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1992), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1992), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1992), - [aux_sym_syslog_facility_token1] = ACTIONS(1992), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1992), - [aux_sym_keep_alive_token1] = ACTIONS(1992), - [aux_sym_tag_token1] = ACTIONS(1992), - [aux_sym_tunnel_token1] = ACTIONS(1994), - [aux_sym_tunnel_device_token1] = ACTIONS(1992), - [aux_sym_update_host_keys_token1] = ACTIONS(1992), - [aux_sym_use_keychain_token1] = ACTIONS(1992), - [aux_sym_use_roaming_token1] = ACTIONS(1992), - [aux_sym_user_token1] = ACTIONS(1994), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1992), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1992), - [aux_sym_visual_host_key_token1] = ACTIONS(1992), - [aux_sym_xauth_location_token1] = ACTIONS(1992), + [ts_builtin_sym_end] = ACTIONS(2001), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(2005), + [aux_sym_match_token1] = ACTIONS(2001), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2001), + [aux_sym_address_family_token1] = ACTIONS(2001), + [aux_sym_batch_mode_token1] = ACTIONS(2001), + [aux_sym_bind_address_token1] = ACTIONS(2001), + [aux_sym_bind_interface_token1] = ACTIONS(2001), + [aux_sym_canonical_domains_token1] = ACTIONS(2001), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2001), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2001), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2001), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2001), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2001), + [aux_sym_certificate_file_token1] = ACTIONS(2001), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2001), + [aux_sym_channel_timeout_token1] = ACTIONS(2001), + [aux_sym_check_host_ip_token1] = ACTIONS(2001), + [aux_sym_ciphers_token1] = ACTIONS(2001), + [aux_sym_cipher_token1] = ACTIONS(2003), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2001), + [aux_sym_compression_token1] = ACTIONS(2001), + [aux_sym_connection_attempts_token1] = ACTIONS(2001), + [aux_sym_connect_timeout_token1] = ACTIONS(2001), + [aux_sym_control_master_token1] = ACTIONS(2001), + [aux_sym_control_path_token1] = ACTIONS(2001), + [aux_sym_control_persist_token1] = ACTIONS(2001), + [aux_sym_dynamic_forward_token1] = ACTIONS(2001), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2001), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2001), + [aux_sym_escape_char_token1] = ACTIONS(2001), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2001), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2001), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2001), + [aux_sym_forward_agent_token1] = ACTIONS(2001), + [aux_sym_forward_x11_token1] = ACTIONS(2003), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2001), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2001), + [aux_sym_gateway_ports_token1] = ACTIONS(2001), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2001), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2001), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2001), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2001), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2001), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2001), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2001), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2001), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2001), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2001), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2001), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2001), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2001), + [aux_sym_host_key_alias_token1] = ACTIONS(2001), + [aux_sym_hostname_token1] = ACTIONS(2001), + [aux_sym_identities_only_token1] = ACTIONS(2001), + [aux_sym_identity_agent_token1] = ACTIONS(2001), + [aux_sym_identity_file_token1] = ACTIONS(2001), + [aux_sym_ignore_unknown_token1] = ACTIONS(2001), + [aux_sym_include_token1] = ACTIONS(2001), + [aux_sym_ip_qos_token1] = ACTIONS(2001), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2001), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2001), + [aux_sym_kex_algorithms_token1] = ACTIONS(2001), + [aux_sym_known_hosts_command_token1] = ACTIONS(2001), + [aux_sym_local_command_token1] = ACTIONS(2001), + [aux_sym_local_forward_token1] = ACTIONS(2001), + [aux_sym_log_level_token1] = ACTIONS(2001), + [aux_sym_log_verbose_token1] = ACTIONS(2001), + [aux_sym_macs_token1] = ACTIONS(2001), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2001), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2001), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2001), + [aux_sym_password_authentication_token1] = ACTIONS(2001), + [aux_sym_permit_local_command_token1] = ACTIONS(2001), + [aux_sym_permit_remote_open_token1] = ACTIONS(2001), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2001), + [aux_sym_port_token1] = ACTIONS(2001), + [aux_sym_preferred_authentications_token1] = ACTIONS(2001), + [aux_sym_protocol_token1] = ACTIONS(2001), + [aux_sym_proxy_command_token1] = ACTIONS(2001), + [aux_sym_proxy_jump_token1] = ACTIONS(2001), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2001), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2001), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2001), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2001), + [aux_sym_rekey_limit_token1] = ACTIONS(2001), + [aux_sym_remote_command_token1] = ACTIONS(2001), + [aux_sym_remote_forward_token1] = ACTIONS(2001), + [aux_sym_request_tty_token1] = ACTIONS(2001), + [aux_sym_required_rsa_size_token1] = ACTIONS(2001), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2001), + [aux_sym_security_key_provider_token1] = ACTIONS(2001), + [aux_sym_send_env_token1] = ACTIONS(2001), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2001), + [aux_sym_server_alive_interval_token1] = ACTIONS(2001), + [aux_sym_session_type_token1] = ACTIONS(2001), + [aux_sym_set_env_token1] = ACTIONS(2001), + [aux_sym_stdin_null_token1] = ACTIONS(2001), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2001), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2001), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2001), + [aux_sym_syslog_facility_token1] = ACTIONS(2001), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2001), + [aux_sym_keep_alive_token1] = ACTIONS(2001), + [aux_sym_tag_token1] = ACTIONS(2001), + [aux_sym_tunnel_token1] = ACTIONS(2003), + [aux_sym_tunnel_device_token1] = ACTIONS(2001), + [aux_sym_update_host_keys_token1] = ACTIONS(2001), + [aux_sym_use_keychain_token1] = ACTIONS(2001), + [aux_sym_use_roaming_token1] = ACTIONS(2001), + [aux_sym_user_token1] = ACTIONS(2003), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2001), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2001), + [aux_sym_visual_host_key_token1] = ACTIONS(2001), + [aux_sym_xauth_location_token1] = ACTIONS(2001), }, [242] = { - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2000), - [anon_sym_DQUOTE] = ACTIONS(1998), - [aux_sym_match_token1] = ACTIONS(1998), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1998), - [aux_sym_address_family_token1] = ACTIONS(1998), - [aux_sym_batch_mode_token1] = ACTIONS(1998), - [aux_sym_bind_address_token1] = ACTIONS(1998), - [aux_sym_bind_interface_token1] = ACTIONS(1998), - [aux_sym_canonical_domains_token1] = ACTIONS(1998), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1998), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1998), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1998), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1998), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1998), - [aux_sym_certificate_file_token1] = ACTIONS(1998), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1998), - [aux_sym_channel_timeout_token1] = ACTIONS(1998), - [aux_sym_check_host_ip_token1] = ACTIONS(1998), - [aux_sym_ciphers_token1] = ACTIONS(1998), - [aux_sym_cipher_token1] = ACTIONS(2000), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1998), - [aux_sym_compression_token1] = ACTIONS(1998), - [aux_sym_connection_attempts_token1] = ACTIONS(1998), - [aux_sym_connect_timeout_token1] = ACTIONS(1998), - [aux_sym_control_master_token1] = ACTIONS(1998), - [aux_sym_control_path_token1] = ACTIONS(1998), - [aux_sym_control_persist_token1] = ACTIONS(1998), - [aux_sym_dynamic_forward_token1] = ACTIONS(1998), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1998), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1998), - [aux_sym_escape_char_token1] = ACTIONS(1998), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1998), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1998), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1998), - [aux_sym_forward_agent_token1] = ACTIONS(1998), - [aux_sym_forward_x11_token1] = ACTIONS(2000), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1998), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1998), - [aux_sym_gateway_ports_token1] = ACTIONS(1998), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1998), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1998), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1998), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1998), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1998), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1998), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1998), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1998), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1998), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1998), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1998), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1998), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1998), - [aux_sym_host_key_alias_token1] = ACTIONS(1998), - [aux_sym_hostname_token1] = ACTIONS(1998), - [aux_sym_identities_only_token1] = ACTIONS(1998), - [aux_sym_identity_agent_token1] = ACTIONS(1998), - [aux_sym_identity_file_token1] = ACTIONS(1998), - [aux_sym_ignore_unknown_token1] = ACTIONS(1998), - [aux_sym_include_token1] = ACTIONS(1998), - [aux_sym_ip_qos_token1] = ACTIONS(1998), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1998), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1998), - [aux_sym_kex_algorithms_token1] = ACTIONS(1998), - [aux_sym_known_hosts_command_token1] = ACTIONS(1998), - [aux_sym_local_command_token1] = ACTIONS(1998), - [aux_sym_local_forward_token1] = ACTIONS(1998), - [aux_sym_log_level_token1] = ACTIONS(1998), - [aux_sym_log_verbose_token1] = ACTIONS(1998), - [aux_sym_macs_token1] = ACTIONS(1998), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1998), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1998), - [aux_sym_password_authentication_token1] = ACTIONS(1998), - [aux_sym_permit_local_command_token1] = ACTIONS(1998), - [aux_sym_permit_remote_open_token1] = ACTIONS(1998), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1998), - [aux_sym_port_token1] = ACTIONS(1998), - [aux_sym_preferred_authentications_token1] = ACTIONS(1998), - [aux_sym_protocol_token1] = ACTIONS(1998), - [aux_sym_proxy_command_token1] = ACTIONS(1998), - [aux_sym_proxy_jump_token1] = ACTIONS(1998), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1998), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1998), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1998), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1998), - [aux_sym_rekey_limit_token1] = ACTIONS(1998), - [aux_sym_remote_command_token1] = ACTIONS(1998), - [aux_sym_remote_forward_token1] = ACTIONS(1998), - [aux_sym_request_tty_token1] = ACTIONS(1998), - [aux_sym_required_rsa_size_token1] = ACTIONS(1998), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1998), - [aux_sym_security_key_provider_token1] = ACTIONS(1998), - [aux_sym_send_env_token1] = ACTIONS(1998), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1998), - [aux_sym_server_alive_interval_token1] = ACTIONS(1998), - [aux_sym_session_type_token1] = ACTIONS(1998), - [aux_sym_set_env_token1] = ACTIONS(1998), - [aux_sym_stdin_null_token1] = ACTIONS(1998), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1998), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1998), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1998), - [aux_sym_syslog_facility_token1] = ACTIONS(1998), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1998), - [aux_sym_keep_alive_token1] = ACTIONS(1998), - [aux_sym_tag_token1] = ACTIONS(1998), - [aux_sym_tunnel_token1] = ACTIONS(2000), - [aux_sym_tunnel_device_token1] = ACTIONS(1998), - [aux_sym_update_host_keys_token1] = ACTIONS(1998), - [aux_sym_use_keychain_token1] = ACTIONS(1998), - [aux_sym_use_roaming_token1] = ACTIONS(1998), - [aux_sym_user_token1] = ACTIONS(2000), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1998), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1998), - [aux_sym_visual_host_key_token1] = ACTIONS(1998), - [aux_sym_xauth_location_token1] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(2007), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2009), + [anon_sym_DQUOTE] = ACTIONS(2007), + [aux_sym_match_token1] = ACTIONS(2007), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2007), + [aux_sym_address_family_token1] = ACTIONS(2007), + [aux_sym_batch_mode_token1] = ACTIONS(2007), + [aux_sym_bind_address_token1] = ACTIONS(2007), + [aux_sym_bind_interface_token1] = ACTIONS(2007), + [aux_sym_canonical_domains_token1] = ACTIONS(2007), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2007), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2007), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2007), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2007), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2007), + [aux_sym_certificate_file_token1] = ACTIONS(2007), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2007), + [aux_sym_channel_timeout_token1] = ACTIONS(2007), + [aux_sym_check_host_ip_token1] = ACTIONS(2007), + [aux_sym_ciphers_token1] = ACTIONS(2007), + [aux_sym_cipher_token1] = ACTIONS(2009), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2007), + [aux_sym_compression_token1] = ACTIONS(2007), + [aux_sym_connection_attempts_token1] = ACTIONS(2007), + [aux_sym_connect_timeout_token1] = ACTIONS(2007), + [aux_sym_control_master_token1] = ACTIONS(2007), + [aux_sym_control_path_token1] = ACTIONS(2007), + [aux_sym_control_persist_token1] = ACTIONS(2007), + [aux_sym_dynamic_forward_token1] = ACTIONS(2007), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2007), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2007), + [aux_sym_escape_char_token1] = ACTIONS(2007), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2007), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2007), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2007), + [aux_sym_forward_agent_token1] = ACTIONS(2007), + [aux_sym_forward_x11_token1] = ACTIONS(2009), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2007), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2007), + [aux_sym_gateway_ports_token1] = ACTIONS(2007), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2007), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2007), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2007), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2007), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2007), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2007), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2007), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2007), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2007), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2007), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2007), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2007), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2007), + [aux_sym_host_key_alias_token1] = ACTIONS(2007), + [aux_sym_hostname_token1] = ACTIONS(2007), + [aux_sym_identities_only_token1] = ACTIONS(2007), + [aux_sym_identity_agent_token1] = ACTIONS(2007), + [aux_sym_identity_file_token1] = ACTIONS(2007), + [aux_sym_ignore_unknown_token1] = ACTIONS(2007), + [aux_sym_include_token1] = ACTIONS(2007), + [aux_sym_ip_qos_token1] = ACTIONS(2007), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2007), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2007), + [aux_sym_kex_algorithms_token1] = ACTIONS(2007), + [aux_sym_known_hosts_command_token1] = ACTIONS(2007), + [aux_sym_local_command_token1] = ACTIONS(2007), + [aux_sym_local_forward_token1] = ACTIONS(2007), + [aux_sym_log_level_token1] = ACTIONS(2007), + [aux_sym_log_verbose_token1] = ACTIONS(2007), + [aux_sym_macs_token1] = ACTIONS(2007), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2007), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2007), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2007), + [aux_sym_password_authentication_token1] = ACTIONS(2007), + [aux_sym_permit_local_command_token1] = ACTIONS(2007), + [aux_sym_permit_remote_open_token1] = ACTIONS(2007), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2007), + [aux_sym_port_token1] = ACTIONS(2007), + [aux_sym_preferred_authentications_token1] = ACTIONS(2007), + [aux_sym_protocol_token1] = ACTIONS(2007), + [aux_sym_proxy_command_token1] = ACTIONS(2007), + [aux_sym_proxy_jump_token1] = ACTIONS(2007), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2007), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2007), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2007), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2007), + [aux_sym_rekey_limit_token1] = ACTIONS(2007), + [aux_sym_remote_command_token1] = ACTIONS(2007), + [aux_sym_remote_forward_token1] = ACTIONS(2007), + [aux_sym_request_tty_token1] = ACTIONS(2007), + [aux_sym_required_rsa_size_token1] = ACTIONS(2007), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2007), + [aux_sym_security_key_provider_token1] = ACTIONS(2007), + [aux_sym_send_env_token1] = ACTIONS(2007), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2007), + [aux_sym_server_alive_interval_token1] = ACTIONS(2007), + [aux_sym_session_type_token1] = ACTIONS(2007), + [aux_sym_set_env_token1] = ACTIONS(2007), + [aux_sym_stdin_null_token1] = ACTIONS(2007), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2007), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2007), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2007), + [aux_sym_syslog_facility_token1] = ACTIONS(2007), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2007), + [aux_sym_keep_alive_token1] = ACTIONS(2007), + [aux_sym_tag_token1] = ACTIONS(2007), + [aux_sym_tunnel_token1] = ACTIONS(2009), + [aux_sym_tunnel_device_token1] = ACTIONS(2007), + [aux_sym_update_host_keys_token1] = ACTIONS(2007), + [aux_sym_use_keychain_token1] = ACTIONS(2007), + [aux_sym_use_roaming_token1] = ACTIONS(2007), + [aux_sym_user_token1] = ACTIONS(2009), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2007), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2007), + [aux_sym_visual_host_key_token1] = ACTIONS(2007), + [aux_sym_xauth_location_token1] = ACTIONS(2007), }, [243] = { - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2004), - [anon_sym_DQUOTE] = ACTIONS(2002), - [aux_sym_match_token1] = ACTIONS(2002), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2002), - [aux_sym_address_family_token1] = ACTIONS(2002), - [aux_sym_batch_mode_token1] = ACTIONS(2002), - [aux_sym_bind_address_token1] = ACTIONS(2002), - [aux_sym_bind_interface_token1] = ACTIONS(2002), - [aux_sym_canonical_domains_token1] = ACTIONS(2002), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2002), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2002), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2002), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2002), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2002), - [aux_sym_certificate_file_token1] = ACTIONS(2002), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2002), - [aux_sym_channel_timeout_token1] = ACTIONS(2002), - [aux_sym_check_host_ip_token1] = ACTIONS(2002), - [aux_sym_ciphers_token1] = ACTIONS(2002), - [aux_sym_cipher_token1] = ACTIONS(2004), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2002), - [aux_sym_compression_token1] = ACTIONS(2002), - [aux_sym_connection_attempts_token1] = ACTIONS(2002), - [aux_sym_connect_timeout_token1] = ACTIONS(2002), - [aux_sym_control_master_token1] = ACTIONS(2002), - [aux_sym_control_path_token1] = ACTIONS(2002), - [aux_sym_control_persist_token1] = ACTIONS(2002), - [aux_sym_dynamic_forward_token1] = ACTIONS(2002), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2002), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2002), - [aux_sym_escape_char_token1] = ACTIONS(2002), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2002), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2002), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2002), - [aux_sym_forward_agent_token1] = ACTIONS(2002), - [aux_sym_forward_x11_token1] = ACTIONS(2004), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2002), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2002), - [aux_sym_gateway_ports_token1] = ACTIONS(2002), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2002), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2002), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2002), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2002), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2002), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2002), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2002), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2002), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2002), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2002), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2002), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2002), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2002), - [aux_sym_host_key_alias_token1] = ACTIONS(2002), - [aux_sym_hostname_token1] = ACTIONS(2002), - [aux_sym_identities_only_token1] = ACTIONS(2002), - [aux_sym_identity_agent_token1] = ACTIONS(2002), - [aux_sym_identity_file_token1] = ACTIONS(2002), - [aux_sym_ignore_unknown_token1] = ACTIONS(2002), - [aux_sym_include_token1] = ACTIONS(2002), - [aux_sym_ip_qos_token1] = ACTIONS(2002), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2002), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2002), - [aux_sym_kex_algorithms_token1] = ACTIONS(2002), - [aux_sym_known_hosts_command_token1] = ACTIONS(2002), - [aux_sym_local_command_token1] = ACTIONS(2002), - [aux_sym_local_forward_token1] = ACTIONS(2002), - [aux_sym_log_level_token1] = ACTIONS(2002), - [aux_sym_log_verbose_token1] = ACTIONS(2002), - [aux_sym_macs_token1] = ACTIONS(2002), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2002), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2002), - [aux_sym_password_authentication_token1] = ACTIONS(2002), - [aux_sym_permit_local_command_token1] = ACTIONS(2002), - [aux_sym_permit_remote_open_token1] = ACTIONS(2002), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2002), - [aux_sym_port_token1] = ACTIONS(2002), - [aux_sym_preferred_authentications_token1] = ACTIONS(2002), - [aux_sym_protocol_token1] = ACTIONS(2002), - [aux_sym_proxy_command_token1] = ACTIONS(2002), - [aux_sym_proxy_jump_token1] = ACTIONS(2002), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2002), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2002), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2002), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2002), - [aux_sym_rekey_limit_token1] = ACTIONS(2002), - [aux_sym_remote_command_token1] = ACTIONS(2002), - [aux_sym_remote_forward_token1] = ACTIONS(2002), - [aux_sym_request_tty_token1] = ACTIONS(2002), - [aux_sym_required_rsa_size_token1] = ACTIONS(2002), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2002), - [aux_sym_security_key_provider_token1] = ACTIONS(2002), - [aux_sym_send_env_token1] = ACTIONS(2002), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2002), - [aux_sym_server_alive_interval_token1] = ACTIONS(2002), - [aux_sym_session_type_token1] = ACTIONS(2002), - [aux_sym_set_env_token1] = ACTIONS(2002), - [aux_sym_stdin_null_token1] = ACTIONS(2002), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2002), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2002), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2002), - [aux_sym_syslog_facility_token1] = ACTIONS(2002), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2002), - [aux_sym_keep_alive_token1] = ACTIONS(2002), - [aux_sym_tag_token1] = ACTIONS(2002), - [aux_sym_tunnel_token1] = ACTIONS(2004), - [aux_sym_tunnel_device_token1] = ACTIONS(2002), - [aux_sym_update_host_keys_token1] = ACTIONS(2002), - [aux_sym_use_keychain_token1] = ACTIONS(2002), - [aux_sym_use_roaming_token1] = ACTIONS(2002), - [aux_sym_user_token1] = ACTIONS(2004), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2002), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2002), - [aux_sym_visual_host_key_token1] = ACTIONS(2002), - [aux_sym_xauth_location_token1] = ACTIONS(2002), + [ts_builtin_sym_end] = ACTIONS(2011), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(2015), + [aux_sym_match_token1] = ACTIONS(2011), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2011), + [aux_sym_address_family_token1] = ACTIONS(2011), + [aux_sym_batch_mode_token1] = ACTIONS(2011), + [aux_sym_bind_address_token1] = ACTIONS(2011), + [aux_sym_bind_interface_token1] = ACTIONS(2011), + [aux_sym_canonical_domains_token1] = ACTIONS(2011), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2011), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2011), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2011), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2011), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2011), + [aux_sym_certificate_file_token1] = ACTIONS(2011), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2011), + [aux_sym_channel_timeout_token1] = ACTIONS(2011), + [aux_sym_check_host_ip_token1] = ACTIONS(2011), + [aux_sym_ciphers_token1] = ACTIONS(2011), + [aux_sym_cipher_token1] = ACTIONS(2013), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2011), + [aux_sym_compression_token1] = ACTIONS(2011), + [aux_sym_connection_attempts_token1] = ACTIONS(2011), + [aux_sym_connect_timeout_token1] = ACTIONS(2011), + [aux_sym_control_master_token1] = ACTIONS(2011), + [aux_sym_control_path_token1] = ACTIONS(2011), + [aux_sym_control_persist_token1] = ACTIONS(2011), + [aux_sym_dynamic_forward_token1] = ACTIONS(2011), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2011), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2011), + [aux_sym_escape_char_token1] = ACTIONS(2011), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2011), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2011), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2011), + [aux_sym_forward_agent_token1] = ACTIONS(2011), + [aux_sym_forward_x11_token1] = ACTIONS(2013), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2011), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2011), + [aux_sym_gateway_ports_token1] = ACTIONS(2011), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2011), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2011), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2011), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2011), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2011), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2011), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2011), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2011), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2011), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2011), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2011), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2011), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2011), + [aux_sym_host_key_alias_token1] = ACTIONS(2011), + [aux_sym_hostname_token1] = ACTIONS(2011), + [aux_sym_identities_only_token1] = ACTIONS(2011), + [aux_sym_identity_agent_token1] = ACTIONS(2011), + [aux_sym_identity_file_token1] = ACTIONS(2011), + [aux_sym_ignore_unknown_token1] = ACTIONS(2011), + [aux_sym_include_token1] = ACTIONS(2011), + [aux_sym_ip_qos_token1] = ACTIONS(2011), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2011), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2011), + [aux_sym_kex_algorithms_token1] = ACTIONS(2011), + [aux_sym_known_hosts_command_token1] = ACTIONS(2011), + [aux_sym_local_command_token1] = ACTIONS(2011), + [aux_sym_local_forward_token1] = ACTIONS(2011), + [aux_sym_log_level_token1] = ACTIONS(2011), + [aux_sym_log_verbose_token1] = ACTIONS(2011), + [aux_sym_macs_token1] = ACTIONS(2011), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2011), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2011), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2011), + [aux_sym_password_authentication_token1] = ACTIONS(2011), + [aux_sym_permit_local_command_token1] = ACTIONS(2011), + [aux_sym_permit_remote_open_token1] = ACTIONS(2011), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2011), + [aux_sym_port_token1] = ACTIONS(2011), + [aux_sym_preferred_authentications_token1] = ACTIONS(2011), + [aux_sym_protocol_token1] = ACTIONS(2011), + [aux_sym_proxy_command_token1] = ACTIONS(2011), + [aux_sym_proxy_jump_token1] = ACTIONS(2011), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2011), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2011), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2011), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2011), + [aux_sym_rekey_limit_token1] = ACTIONS(2011), + [aux_sym_remote_command_token1] = ACTIONS(2011), + [aux_sym_remote_forward_token1] = ACTIONS(2011), + [aux_sym_request_tty_token1] = ACTIONS(2011), + [aux_sym_required_rsa_size_token1] = ACTIONS(2011), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2011), + [aux_sym_security_key_provider_token1] = ACTIONS(2011), + [aux_sym_send_env_token1] = ACTIONS(2011), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2011), + [aux_sym_server_alive_interval_token1] = ACTIONS(2011), + [aux_sym_session_type_token1] = ACTIONS(2011), + [aux_sym_set_env_token1] = ACTIONS(2011), + [aux_sym_stdin_null_token1] = ACTIONS(2011), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2011), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2011), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2011), + [aux_sym_syslog_facility_token1] = ACTIONS(2011), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2011), + [aux_sym_keep_alive_token1] = ACTIONS(2011), + [aux_sym_tag_token1] = ACTIONS(2011), + [aux_sym_tunnel_token1] = ACTIONS(2013), + [aux_sym_tunnel_device_token1] = ACTIONS(2011), + [aux_sym_update_host_keys_token1] = ACTIONS(2011), + [aux_sym_use_keychain_token1] = ACTIONS(2011), + [aux_sym_use_roaming_token1] = ACTIONS(2011), + [aux_sym_user_token1] = ACTIONS(2013), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2011), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2011), + [aux_sym_visual_host_key_token1] = ACTIONS(2011), + [aux_sym_xauth_location_token1] = ACTIONS(2011), }, [244] = { - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2008), - [anon_sym_DQUOTE] = ACTIONS(2010), - [aux_sym_match_token1] = ACTIONS(2006), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2006), - [aux_sym_address_family_token1] = ACTIONS(2006), - [aux_sym_batch_mode_token1] = ACTIONS(2006), - [aux_sym_bind_address_token1] = ACTIONS(2006), - [aux_sym_bind_interface_token1] = ACTIONS(2006), - [aux_sym_canonical_domains_token1] = ACTIONS(2006), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2006), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2006), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2006), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2006), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2006), - [aux_sym_certificate_file_token1] = ACTIONS(2006), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2006), - [aux_sym_channel_timeout_token1] = ACTIONS(2006), - [aux_sym_check_host_ip_token1] = ACTIONS(2006), - [aux_sym_ciphers_token1] = ACTIONS(2006), - [aux_sym_cipher_token1] = ACTIONS(2008), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2006), - [aux_sym_compression_token1] = ACTIONS(2006), - [aux_sym_connection_attempts_token1] = ACTIONS(2006), - [aux_sym_connect_timeout_token1] = ACTIONS(2006), - [aux_sym_control_master_token1] = ACTIONS(2006), - [aux_sym_control_path_token1] = ACTIONS(2006), - [aux_sym_control_persist_token1] = ACTIONS(2006), - [aux_sym_dynamic_forward_token1] = ACTIONS(2006), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2006), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2006), - [aux_sym_escape_char_token1] = ACTIONS(2006), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2006), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2006), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2006), - [aux_sym_forward_agent_token1] = ACTIONS(2006), - [aux_sym_forward_x11_token1] = ACTIONS(2008), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2006), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2006), - [aux_sym_gateway_ports_token1] = ACTIONS(2006), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2006), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2006), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2006), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2006), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2006), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2006), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2006), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2006), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2006), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2006), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2006), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2006), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2006), - [aux_sym_host_key_alias_token1] = ACTIONS(2006), - [aux_sym_hostname_token1] = ACTIONS(2006), - [aux_sym_identities_only_token1] = ACTIONS(2006), - [aux_sym_identity_agent_token1] = ACTIONS(2006), - [aux_sym_identity_file_token1] = ACTIONS(2006), - [aux_sym_ignore_unknown_token1] = ACTIONS(2006), - [aux_sym_include_token1] = ACTIONS(2006), - [aux_sym_ip_qos_token1] = ACTIONS(2006), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2006), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2006), - [aux_sym_kex_algorithms_token1] = ACTIONS(2006), - [aux_sym_known_hosts_command_token1] = ACTIONS(2006), - [aux_sym_local_command_token1] = ACTIONS(2006), - [aux_sym_local_forward_token1] = ACTIONS(2006), - [aux_sym_log_level_token1] = ACTIONS(2006), - [aux_sym_log_verbose_token1] = ACTIONS(2006), - [aux_sym_macs_token1] = ACTIONS(2006), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2006), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2006), - [aux_sym_password_authentication_token1] = ACTIONS(2006), - [aux_sym_permit_local_command_token1] = ACTIONS(2006), - [aux_sym_permit_remote_open_token1] = ACTIONS(2006), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2006), - [aux_sym_port_token1] = ACTIONS(2006), - [aux_sym_preferred_authentications_token1] = ACTIONS(2006), - [aux_sym_protocol_token1] = ACTIONS(2006), - [aux_sym_proxy_command_token1] = ACTIONS(2006), - [aux_sym_proxy_jump_token1] = ACTIONS(2006), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2006), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2006), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2006), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2006), - [aux_sym_rekey_limit_token1] = ACTIONS(2006), - [aux_sym_remote_command_token1] = ACTIONS(2006), - [aux_sym_remote_forward_token1] = ACTIONS(2006), - [aux_sym_request_tty_token1] = ACTIONS(2006), - [aux_sym_required_rsa_size_token1] = ACTIONS(2006), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2006), - [aux_sym_security_key_provider_token1] = ACTIONS(2006), - [aux_sym_send_env_token1] = ACTIONS(2006), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2006), - [aux_sym_server_alive_interval_token1] = ACTIONS(2006), - [aux_sym_session_type_token1] = ACTIONS(2006), - [aux_sym_set_env_token1] = ACTIONS(2006), - [aux_sym_stdin_null_token1] = ACTIONS(2006), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2006), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2006), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2006), - [aux_sym_syslog_facility_token1] = ACTIONS(2006), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2006), - [aux_sym_keep_alive_token1] = ACTIONS(2006), - [aux_sym_tag_token1] = ACTIONS(2006), - [aux_sym_tunnel_token1] = ACTIONS(2008), - [aux_sym_tunnel_device_token1] = ACTIONS(2006), - [aux_sym_update_host_keys_token1] = ACTIONS(2006), - [aux_sym_use_keychain_token1] = ACTIONS(2006), - [aux_sym_use_roaming_token1] = ACTIONS(2006), - [aux_sym_user_token1] = ACTIONS(2008), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2006), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2006), - [aux_sym_visual_host_key_token1] = ACTIONS(2006), - [aux_sym_xauth_location_token1] = ACTIONS(2006), + [ts_builtin_sym_end] = ACTIONS(2017), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(2017), + [aux_sym_match_token1] = ACTIONS(2017), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2017), + [aux_sym_address_family_token1] = ACTIONS(2017), + [aux_sym_batch_mode_token1] = ACTIONS(2017), + [aux_sym_bind_address_token1] = ACTIONS(2017), + [aux_sym_bind_interface_token1] = ACTIONS(2017), + [aux_sym_canonical_domains_token1] = ACTIONS(2017), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2017), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2017), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2017), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2017), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2017), + [aux_sym_certificate_file_token1] = ACTIONS(2017), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2017), + [aux_sym_channel_timeout_token1] = ACTIONS(2017), + [aux_sym_check_host_ip_token1] = ACTIONS(2017), + [aux_sym_ciphers_token1] = ACTIONS(2017), + [aux_sym_cipher_token1] = ACTIONS(2019), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2017), + [aux_sym_compression_token1] = ACTIONS(2017), + [aux_sym_connection_attempts_token1] = ACTIONS(2017), + [aux_sym_connect_timeout_token1] = ACTIONS(2017), + [aux_sym_control_master_token1] = ACTIONS(2017), + [aux_sym_control_path_token1] = ACTIONS(2017), + [aux_sym_control_persist_token1] = ACTIONS(2017), + [aux_sym_dynamic_forward_token1] = ACTIONS(2017), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2017), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2017), + [aux_sym_escape_char_token1] = ACTIONS(2017), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2017), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2017), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2017), + [aux_sym_forward_agent_token1] = ACTIONS(2017), + [aux_sym_forward_x11_token1] = ACTIONS(2019), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2017), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2017), + [aux_sym_gateway_ports_token1] = ACTIONS(2017), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2017), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2017), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2017), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2017), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2017), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2017), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2017), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2017), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2017), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2017), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2017), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2017), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2017), + [aux_sym_host_key_alias_token1] = ACTIONS(2017), + [aux_sym_hostname_token1] = ACTIONS(2017), + [aux_sym_identities_only_token1] = ACTIONS(2017), + [aux_sym_identity_agent_token1] = ACTIONS(2017), + [aux_sym_identity_file_token1] = ACTIONS(2017), + [aux_sym_ignore_unknown_token1] = ACTIONS(2017), + [aux_sym_include_token1] = ACTIONS(2017), + [aux_sym_ip_qos_token1] = ACTIONS(2017), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2017), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2017), + [aux_sym_kex_algorithms_token1] = ACTIONS(2017), + [aux_sym_known_hosts_command_token1] = ACTIONS(2017), + [aux_sym_local_command_token1] = ACTIONS(2017), + [aux_sym_local_forward_token1] = ACTIONS(2017), + [aux_sym_log_level_token1] = ACTIONS(2017), + [aux_sym_log_verbose_token1] = ACTIONS(2017), + [aux_sym_macs_token1] = ACTIONS(2017), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2017), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2017), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2017), + [aux_sym_password_authentication_token1] = ACTIONS(2017), + [aux_sym_permit_local_command_token1] = ACTIONS(2017), + [aux_sym_permit_remote_open_token1] = ACTIONS(2017), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2017), + [aux_sym_port_token1] = ACTIONS(2017), + [aux_sym_preferred_authentications_token1] = ACTIONS(2017), + [aux_sym_protocol_token1] = ACTIONS(2017), + [aux_sym_proxy_command_token1] = ACTIONS(2017), + [aux_sym_proxy_jump_token1] = ACTIONS(2017), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2017), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2017), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2017), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2017), + [aux_sym_rekey_limit_token1] = ACTIONS(2017), + [aux_sym_remote_command_token1] = ACTIONS(2017), + [aux_sym_remote_forward_token1] = ACTIONS(2017), + [aux_sym_request_tty_token1] = ACTIONS(2017), + [aux_sym_required_rsa_size_token1] = ACTIONS(2017), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2017), + [aux_sym_security_key_provider_token1] = ACTIONS(2017), + [aux_sym_send_env_token1] = ACTIONS(2017), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2017), + [aux_sym_server_alive_interval_token1] = ACTIONS(2017), + [aux_sym_session_type_token1] = ACTIONS(2017), + [aux_sym_set_env_token1] = ACTIONS(2017), + [aux_sym_stdin_null_token1] = ACTIONS(2017), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2017), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2017), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2017), + [aux_sym_syslog_facility_token1] = ACTIONS(2017), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2017), + [aux_sym_keep_alive_token1] = ACTIONS(2017), + [aux_sym_tag_token1] = ACTIONS(2017), + [aux_sym_tunnel_token1] = ACTIONS(2019), + [aux_sym_tunnel_device_token1] = ACTIONS(2017), + [aux_sym_update_host_keys_token1] = ACTIONS(2017), + [aux_sym_use_keychain_token1] = ACTIONS(2017), + [aux_sym_use_roaming_token1] = ACTIONS(2017), + [aux_sym_user_token1] = ACTIONS(2019), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2017), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2017), + [aux_sym_visual_host_key_token1] = ACTIONS(2017), + [aux_sym_xauth_location_token1] = ACTIONS(2017), }, [245] = { - [ts_builtin_sym_end] = ACTIONS(2012), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2014), - [anon_sym_DQUOTE] = ACTIONS(2016), - [aux_sym_match_token1] = ACTIONS(2012), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2012), - [aux_sym_address_family_token1] = ACTIONS(2012), - [aux_sym_batch_mode_token1] = ACTIONS(2012), - [aux_sym_bind_address_token1] = ACTIONS(2012), - [aux_sym_bind_interface_token1] = ACTIONS(2012), - [aux_sym_canonical_domains_token1] = ACTIONS(2012), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2012), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2012), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2012), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2012), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2012), - [aux_sym_certificate_file_token1] = ACTIONS(2012), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2012), - [aux_sym_channel_timeout_token1] = ACTIONS(2012), - [aux_sym_check_host_ip_token1] = ACTIONS(2012), - [aux_sym_ciphers_token1] = ACTIONS(2012), - [aux_sym_cipher_token1] = ACTIONS(2014), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2012), - [aux_sym_compression_token1] = ACTIONS(2012), - [aux_sym_connection_attempts_token1] = ACTIONS(2012), - [aux_sym_connect_timeout_token1] = ACTIONS(2012), - [aux_sym_control_master_token1] = ACTIONS(2012), - [aux_sym_control_path_token1] = ACTIONS(2012), - [aux_sym_control_persist_token1] = ACTIONS(2012), - [aux_sym_dynamic_forward_token1] = ACTIONS(2012), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2012), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2012), - [aux_sym_escape_char_token1] = ACTIONS(2012), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2012), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2012), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2012), - [aux_sym_forward_agent_token1] = ACTIONS(2012), - [aux_sym_forward_x11_token1] = ACTIONS(2014), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2012), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2012), - [aux_sym_gateway_ports_token1] = ACTIONS(2012), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2012), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2012), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2012), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2012), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2012), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2012), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2012), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2012), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2012), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2012), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2012), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2012), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2012), - [aux_sym_host_key_alias_token1] = ACTIONS(2012), - [aux_sym_hostname_token1] = ACTIONS(2012), - [aux_sym_identities_only_token1] = ACTIONS(2012), - [aux_sym_identity_agent_token1] = ACTIONS(2012), - [aux_sym_identity_file_token1] = ACTIONS(2012), - [aux_sym_ignore_unknown_token1] = ACTIONS(2012), - [aux_sym_include_token1] = ACTIONS(2012), - [aux_sym_ip_qos_token1] = ACTIONS(2012), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2012), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2012), - [aux_sym_kex_algorithms_token1] = ACTIONS(2012), - [aux_sym_known_hosts_command_token1] = ACTIONS(2012), - [aux_sym_local_command_token1] = ACTIONS(2012), - [aux_sym_local_forward_token1] = ACTIONS(2012), - [aux_sym_log_level_token1] = ACTIONS(2012), - [aux_sym_log_verbose_token1] = ACTIONS(2012), - [aux_sym_macs_token1] = ACTIONS(2012), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2012), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2012), - [aux_sym_password_authentication_token1] = ACTIONS(2012), - [aux_sym_permit_local_command_token1] = ACTIONS(2012), - [aux_sym_permit_remote_open_token1] = ACTIONS(2012), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2012), - [aux_sym_port_token1] = ACTIONS(2012), - [aux_sym_preferred_authentications_token1] = ACTIONS(2012), - [aux_sym_protocol_token1] = ACTIONS(2012), - [aux_sym_proxy_command_token1] = ACTIONS(2012), - [aux_sym_proxy_jump_token1] = ACTIONS(2012), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2012), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2012), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2012), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2012), - [aux_sym_rekey_limit_token1] = ACTIONS(2012), - [aux_sym_remote_command_token1] = ACTIONS(2012), - [aux_sym_remote_forward_token1] = ACTIONS(2012), - [aux_sym_request_tty_token1] = ACTIONS(2012), - [aux_sym_required_rsa_size_token1] = ACTIONS(2012), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2012), - [aux_sym_security_key_provider_token1] = ACTIONS(2012), - [aux_sym_send_env_token1] = ACTIONS(2012), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2012), - [aux_sym_server_alive_interval_token1] = ACTIONS(2012), - [aux_sym_session_type_token1] = ACTIONS(2012), - [aux_sym_set_env_token1] = ACTIONS(2012), - [aux_sym_stdin_null_token1] = ACTIONS(2012), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2012), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2012), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2012), - [aux_sym_syslog_facility_token1] = ACTIONS(2012), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2012), - [aux_sym_keep_alive_token1] = ACTIONS(2012), - [aux_sym_tag_token1] = ACTIONS(2012), - [aux_sym_tunnel_token1] = ACTIONS(2014), - [aux_sym_tunnel_device_token1] = ACTIONS(2012), - [aux_sym_update_host_keys_token1] = ACTIONS(2012), - [aux_sym_use_keychain_token1] = ACTIONS(2012), - [aux_sym_use_roaming_token1] = ACTIONS(2012), - [aux_sym_user_token1] = ACTIONS(2014), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2012), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2012), - [aux_sym_visual_host_key_token1] = ACTIONS(2012), - [aux_sym_xauth_location_token1] = ACTIONS(2012), + [ts_builtin_sym_end] = ACTIONS(2021), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(2021), + [aux_sym_match_token1] = ACTIONS(2021), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2021), + [aux_sym_address_family_token1] = ACTIONS(2021), + [aux_sym_batch_mode_token1] = ACTIONS(2021), + [aux_sym_bind_address_token1] = ACTIONS(2021), + [aux_sym_bind_interface_token1] = ACTIONS(2021), + [aux_sym_canonical_domains_token1] = ACTIONS(2021), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2021), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2021), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2021), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2021), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2021), + [aux_sym_certificate_file_token1] = ACTIONS(2021), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2021), + [aux_sym_channel_timeout_token1] = ACTIONS(2021), + [aux_sym_check_host_ip_token1] = ACTIONS(2021), + [aux_sym_ciphers_token1] = ACTIONS(2021), + [aux_sym_cipher_token1] = ACTIONS(2023), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2021), + [aux_sym_compression_token1] = ACTIONS(2021), + [aux_sym_connection_attempts_token1] = ACTIONS(2021), + [aux_sym_connect_timeout_token1] = ACTIONS(2021), + [aux_sym_control_master_token1] = ACTIONS(2021), + [aux_sym_control_path_token1] = ACTIONS(2021), + [aux_sym_control_persist_token1] = ACTIONS(2021), + [aux_sym_dynamic_forward_token1] = ACTIONS(2021), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2021), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2021), + [aux_sym_escape_char_token1] = ACTIONS(2021), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2021), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2021), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2021), + [aux_sym_forward_agent_token1] = ACTIONS(2021), + [aux_sym_forward_x11_token1] = ACTIONS(2023), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2021), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2021), + [aux_sym_gateway_ports_token1] = ACTIONS(2021), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2021), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2021), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2021), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2021), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2021), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2021), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2021), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2021), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2021), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2021), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2021), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2021), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2021), + [aux_sym_host_key_alias_token1] = ACTIONS(2021), + [aux_sym_hostname_token1] = ACTIONS(2021), + [aux_sym_identities_only_token1] = ACTIONS(2021), + [aux_sym_identity_agent_token1] = ACTIONS(2021), + [aux_sym_identity_file_token1] = ACTIONS(2021), + [aux_sym_ignore_unknown_token1] = ACTIONS(2021), + [aux_sym_include_token1] = ACTIONS(2021), + [aux_sym_ip_qos_token1] = ACTIONS(2021), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2021), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2021), + [aux_sym_kex_algorithms_token1] = ACTIONS(2021), + [aux_sym_known_hosts_command_token1] = ACTIONS(2021), + [aux_sym_local_command_token1] = ACTIONS(2021), + [aux_sym_local_forward_token1] = ACTIONS(2021), + [aux_sym_log_level_token1] = ACTIONS(2021), + [aux_sym_log_verbose_token1] = ACTIONS(2021), + [aux_sym_macs_token1] = ACTIONS(2021), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2021), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2021), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2021), + [aux_sym_password_authentication_token1] = ACTIONS(2021), + [aux_sym_permit_local_command_token1] = ACTIONS(2021), + [aux_sym_permit_remote_open_token1] = ACTIONS(2021), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2021), + [aux_sym_port_token1] = ACTIONS(2021), + [aux_sym_preferred_authentications_token1] = ACTIONS(2021), + [aux_sym_protocol_token1] = ACTIONS(2021), + [aux_sym_proxy_command_token1] = ACTIONS(2021), + [aux_sym_proxy_jump_token1] = ACTIONS(2021), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2021), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2021), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2021), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2021), + [aux_sym_rekey_limit_token1] = ACTIONS(2021), + [aux_sym_remote_command_token1] = ACTIONS(2021), + [aux_sym_remote_forward_token1] = ACTIONS(2021), + [aux_sym_request_tty_token1] = ACTIONS(2021), + [aux_sym_required_rsa_size_token1] = ACTIONS(2021), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2021), + [aux_sym_security_key_provider_token1] = ACTIONS(2021), + [aux_sym_send_env_token1] = ACTIONS(2021), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2021), + [aux_sym_server_alive_interval_token1] = ACTIONS(2021), + [aux_sym_session_type_token1] = ACTIONS(2021), + [aux_sym_set_env_token1] = ACTIONS(2021), + [aux_sym_stdin_null_token1] = ACTIONS(2021), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2021), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2021), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2021), + [aux_sym_syslog_facility_token1] = ACTIONS(2021), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2021), + [aux_sym_keep_alive_token1] = ACTIONS(2021), + [aux_sym_tag_token1] = ACTIONS(2021), + [aux_sym_tunnel_token1] = ACTIONS(2023), + [aux_sym_tunnel_device_token1] = ACTIONS(2021), + [aux_sym_update_host_keys_token1] = ACTIONS(2021), + [aux_sym_use_keychain_token1] = ACTIONS(2021), + [aux_sym_use_roaming_token1] = ACTIONS(2021), + [aux_sym_user_token1] = ACTIONS(2023), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2021), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2021), + [aux_sym_visual_host_key_token1] = ACTIONS(2021), + [aux_sym_xauth_location_token1] = ACTIONS(2021), }, [246] = { - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2020), - [anon_sym_DQUOTE] = ACTIONS(2018), - [aux_sym_match_token1] = ACTIONS(2018), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2018), - [aux_sym_address_family_token1] = ACTIONS(2018), - [aux_sym_batch_mode_token1] = ACTIONS(2018), - [aux_sym_bind_address_token1] = ACTIONS(2018), - [aux_sym_bind_interface_token1] = ACTIONS(2018), - [aux_sym_canonical_domains_token1] = ACTIONS(2018), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2018), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2018), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2018), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2018), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2018), - [aux_sym_certificate_file_token1] = ACTIONS(2018), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2018), - [aux_sym_channel_timeout_token1] = ACTIONS(2018), - [aux_sym_check_host_ip_token1] = ACTIONS(2018), - [aux_sym_ciphers_token1] = ACTIONS(2018), - [aux_sym_cipher_token1] = ACTIONS(2020), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2018), - [aux_sym_compression_token1] = ACTIONS(2018), - [aux_sym_connection_attempts_token1] = ACTIONS(2018), - [aux_sym_connect_timeout_token1] = ACTIONS(2018), - [aux_sym_control_master_token1] = ACTIONS(2018), - [aux_sym_control_path_token1] = ACTIONS(2018), - [aux_sym_control_persist_token1] = ACTIONS(2018), - [aux_sym_dynamic_forward_token1] = ACTIONS(2018), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2018), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2018), - [aux_sym_escape_char_token1] = ACTIONS(2018), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2018), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2018), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2018), - [aux_sym_forward_agent_token1] = ACTIONS(2018), - [aux_sym_forward_x11_token1] = ACTIONS(2020), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2018), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2018), - [aux_sym_gateway_ports_token1] = ACTIONS(2018), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2018), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2018), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2018), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2018), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2018), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2018), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2018), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2018), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2018), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2018), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2018), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2018), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2018), - [aux_sym_host_key_alias_token1] = ACTIONS(2018), - [aux_sym_hostname_token1] = ACTIONS(2018), - [aux_sym_identities_only_token1] = ACTIONS(2018), - [aux_sym_identity_agent_token1] = ACTIONS(2018), - [aux_sym_identity_file_token1] = ACTIONS(2018), - [aux_sym_ignore_unknown_token1] = ACTIONS(2018), - [aux_sym_include_token1] = ACTIONS(2018), - [aux_sym_ip_qos_token1] = ACTIONS(2018), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2018), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2018), - [aux_sym_kex_algorithms_token1] = ACTIONS(2018), - [aux_sym_known_hosts_command_token1] = ACTIONS(2018), - [aux_sym_local_command_token1] = ACTIONS(2018), - [aux_sym_local_forward_token1] = ACTIONS(2018), - [aux_sym_log_level_token1] = ACTIONS(2018), - [aux_sym_log_verbose_token1] = ACTIONS(2018), - [aux_sym_macs_token1] = ACTIONS(2018), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2018), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2018), - [aux_sym_password_authentication_token1] = ACTIONS(2018), - [aux_sym_permit_local_command_token1] = ACTIONS(2018), - [aux_sym_permit_remote_open_token1] = ACTIONS(2018), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2018), - [aux_sym_port_token1] = ACTIONS(2018), - [aux_sym_preferred_authentications_token1] = ACTIONS(2018), - [aux_sym_protocol_token1] = ACTIONS(2018), - [aux_sym_proxy_command_token1] = ACTIONS(2018), - [aux_sym_proxy_jump_token1] = ACTIONS(2018), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2018), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2018), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2018), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2018), - [aux_sym_rekey_limit_token1] = ACTIONS(2018), - [aux_sym_remote_command_token1] = ACTIONS(2018), - [aux_sym_remote_forward_token1] = ACTIONS(2018), - [aux_sym_request_tty_token1] = ACTIONS(2018), - [aux_sym_required_rsa_size_token1] = ACTIONS(2018), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2018), - [aux_sym_security_key_provider_token1] = ACTIONS(2018), - [aux_sym_send_env_token1] = ACTIONS(2018), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2018), - [aux_sym_server_alive_interval_token1] = ACTIONS(2018), - [aux_sym_session_type_token1] = ACTIONS(2018), - [aux_sym_set_env_token1] = ACTIONS(2018), - [aux_sym_stdin_null_token1] = ACTIONS(2018), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2018), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2018), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2018), - [aux_sym_syslog_facility_token1] = ACTIONS(2018), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2018), - [aux_sym_keep_alive_token1] = ACTIONS(2018), - [aux_sym_tag_token1] = ACTIONS(2018), - [aux_sym_tunnel_token1] = ACTIONS(2020), - [aux_sym_tunnel_device_token1] = ACTIONS(2018), - [aux_sym_update_host_keys_token1] = ACTIONS(2018), - [aux_sym_use_keychain_token1] = ACTIONS(2018), - [aux_sym_use_roaming_token1] = ACTIONS(2018), - [aux_sym_user_token1] = ACTIONS(2020), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2018), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2018), - [aux_sym_visual_host_key_token1] = ACTIONS(2018), - [aux_sym_xauth_location_token1] = ACTIONS(2018), + [ts_builtin_sym_end] = ACTIONS(2025), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(2029), + [aux_sym_match_token1] = ACTIONS(2025), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2025), + [aux_sym_address_family_token1] = ACTIONS(2025), + [aux_sym_batch_mode_token1] = ACTIONS(2025), + [aux_sym_bind_address_token1] = ACTIONS(2025), + [aux_sym_bind_interface_token1] = ACTIONS(2025), + [aux_sym_canonical_domains_token1] = ACTIONS(2025), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2025), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2025), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2025), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2025), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2025), + [aux_sym_certificate_file_token1] = ACTIONS(2025), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2025), + [aux_sym_channel_timeout_token1] = ACTIONS(2025), + [aux_sym_check_host_ip_token1] = ACTIONS(2025), + [aux_sym_ciphers_token1] = ACTIONS(2025), + [aux_sym_cipher_token1] = ACTIONS(2027), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2025), + [aux_sym_compression_token1] = ACTIONS(2025), + [aux_sym_connection_attempts_token1] = ACTIONS(2025), + [aux_sym_connect_timeout_token1] = ACTIONS(2025), + [aux_sym_control_master_token1] = ACTIONS(2025), + [aux_sym_control_path_token1] = ACTIONS(2025), + [aux_sym_control_persist_token1] = ACTIONS(2025), + [aux_sym_dynamic_forward_token1] = ACTIONS(2025), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2025), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2025), + [aux_sym_escape_char_token1] = ACTIONS(2025), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2025), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2025), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2025), + [aux_sym_forward_agent_token1] = ACTIONS(2025), + [aux_sym_forward_x11_token1] = ACTIONS(2027), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2025), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2025), + [aux_sym_gateway_ports_token1] = ACTIONS(2025), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2025), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2025), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2025), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2025), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2025), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2025), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2025), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2025), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2025), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2025), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2025), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2025), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2025), + [aux_sym_host_key_alias_token1] = ACTIONS(2025), + [aux_sym_hostname_token1] = ACTIONS(2025), + [aux_sym_identities_only_token1] = ACTIONS(2025), + [aux_sym_identity_agent_token1] = ACTIONS(2025), + [aux_sym_identity_file_token1] = ACTIONS(2025), + [aux_sym_ignore_unknown_token1] = ACTIONS(2025), + [aux_sym_include_token1] = ACTIONS(2025), + [aux_sym_ip_qos_token1] = ACTIONS(2025), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2025), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2025), + [aux_sym_kex_algorithms_token1] = ACTIONS(2025), + [aux_sym_known_hosts_command_token1] = ACTIONS(2025), + [aux_sym_local_command_token1] = ACTIONS(2025), + [aux_sym_local_forward_token1] = ACTIONS(2025), + [aux_sym_log_level_token1] = ACTIONS(2025), + [aux_sym_log_verbose_token1] = ACTIONS(2025), + [aux_sym_macs_token1] = ACTIONS(2025), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2025), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2025), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2025), + [aux_sym_password_authentication_token1] = ACTIONS(2025), + [aux_sym_permit_local_command_token1] = ACTIONS(2025), + [aux_sym_permit_remote_open_token1] = ACTIONS(2025), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2025), + [aux_sym_port_token1] = ACTIONS(2025), + [aux_sym_preferred_authentications_token1] = ACTIONS(2025), + [aux_sym_protocol_token1] = ACTIONS(2025), + [aux_sym_proxy_command_token1] = ACTIONS(2025), + [aux_sym_proxy_jump_token1] = ACTIONS(2025), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2025), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2025), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2025), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2025), + [aux_sym_rekey_limit_token1] = ACTIONS(2025), + [aux_sym_remote_command_token1] = ACTIONS(2025), + [aux_sym_remote_forward_token1] = ACTIONS(2025), + [aux_sym_request_tty_token1] = ACTIONS(2025), + [aux_sym_required_rsa_size_token1] = ACTIONS(2025), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2025), + [aux_sym_security_key_provider_token1] = ACTIONS(2025), + [aux_sym_send_env_token1] = ACTIONS(2025), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2025), + [aux_sym_server_alive_interval_token1] = ACTIONS(2025), + [aux_sym_session_type_token1] = ACTIONS(2025), + [aux_sym_set_env_token1] = ACTIONS(2025), + [aux_sym_stdin_null_token1] = ACTIONS(2025), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2025), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2025), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2025), + [aux_sym_syslog_facility_token1] = ACTIONS(2025), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2025), + [aux_sym_keep_alive_token1] = ACTIONS(2025), + [aux_sym_tag_token1] = ACTIONS(2025), + [aux_sym_tunnel_token1] = ACTIONS(2027), + [aux_sym_tunnel_device_token1] = ACTIONS(2025), + [aux_sym_update_host_keys_token1] = ACTIONS(2025), + [aux_sym_use_keychain_token1] = ACTIONS(2025), + [aux_sym_use_roaming_token1] = ACTIONS(2025), + [aux_sym_user_token1] = ACTIONS(2027), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2025), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2025), + [aux_sym_visual_host_key_token1] = ACTIONS(2025), + [aux_sym_xauth_location_token1] = ACTIONS(2025), }, [247] = { - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2022), - [aux_sym_match_token1] = ACTIONS(2022), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2022), - [aux_sym_address_family_token1] = ACTIONS(2022), - [aux_sym_batch_mode_token1] = ACTIONS(2022), - [aux_sym_bind_address_token1] = ACTIONS(2022), - [aux_sym_bind_interface_token1] = ACTIONS(2022), - [aux_sym_canonical_domains_token1] = ACTIONS(2022), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2022), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2022), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2022), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2022), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2022), - [aux_sym_certificate_file_token1] = ACTIONS(2022), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2022), - [aux_sym_channel_timeout_token1] = ACTIONS(2022), - [aux_sym_check_host_ip_token1] = ACTIONS(2022), - [aux_sym_ciphers_token1] = ACTIONS(2022), - [aux_sym_cipher_token1] = ACTIONS(2024), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2022), - [aux_sym_compression_token1] = ACTIONS(2022), - [aux_sym_connection_attempts_token1] = ACTIONS(2022), - [aux_sym_connect_timeout_token1] = ACTIONS(2022), - [aux_sym_control_master_token1] = ACTIONS(2022), - [aux_sym_control_path_token1] = ACTIONS(2022), - [aux_sym_control_persist_token1] = ACTIONS(2022), - [aux_sym_dynamic_forward_token1] = ACTIONS(2022), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2022), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2022), - [aux_sym_escape_char_token1] = ACTIONS(2022), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2022), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2022), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2022), - [aux_sym_forward_agent_token1] = ACTIONS(2022), - [aux_sym_forward_x11_token1] = ACTIONS(2024), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2022), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2022), - [aux_sym_gateway_ports_token1] = ACTIONS(2022), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2022), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2022), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2022), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2022), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2022), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2022), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2022), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2022), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2022), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2022), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2022), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2022), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2022), - [aux_sym_host_key_alias_token1] = ACTIONS(2022), - [aux_sym_hostname_token1] = ACTIONS(2022), - [aux_sym_identities_only_token1] = ACTIONS(2022), - [aux_sym_identity_agent_token1] = ACTIONS(2022), - [aux_sym_identity_file_token1] = ACTIONS(2022), - [aux_sym_ignore_unknown_token1] = ACTIONS(2022), - [aux_sym_include_token1] = ACTIONS(2022), - [aux_sym_ip_qos_token1] = ACTIONS(2022), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2022), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2022), - [aux_sym_kex_algorithms_token1] = ACTIONS(2022), - [aux_sym_known_hosts_command_token1] = ACTIONS(2022), - [aux_sym_local_command_token1] = ACTIONS(2022), - [aux_sym_local_forward_token1] = ACTIONS(2022), - [aux_sym_log_level_token1] = ACTIONS(2022), - [aux_sym_log_verbose_token1] = ACTIONS(2022), - [aux_sym_macs_token1] = ACTIONS(2022), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2022), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2022), - [aux_sym_password_authentication_token1] = ACTIONS(2022), - [aux_sym_permit_local_command_token1] = ACTIONS(2022), - [aux_sym_permit_remote_open_token1] = ACTIONS(2022), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2022), - [aux_sym_port_token1] = ACTIONS(2022), - [aux_sym_preferred_authentications_token1] = ACTIONS(2022), - [aux_sym_protocol_token1] = ACTIONS(2022), - [aux_sym_proxy_command_token1] = ACTIONS(2022), - [aux_sym_proxy_jump_token1] = ACTIONS(2022), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2022), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2022), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2022), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2022), - [aux_sym_rekey_limit_token1] = ACTIONS(2022), - [aux_sym_remote_command_token1] = ACTIONS(2022), - [aux_sym_remote_forward_token1] = ACTIONS(2022), - [aux_sym_request_tty_token1] = ACTIONS(2022), - [aux_sym_required_rsa_size_token1] = ACTIONS(2022), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2022), - [aux_sym_security_key_provider_token1] = ACTIONS(2022), - [aux_sym_send_env_token1] = ACTIONS(2022), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2022), - [aux_sym_server_alive_interval_token1] = ACTIONS(2022), - [aux_sym_session_type_token1] = ACTIONS(2022), - [aux_sym_set_env_token1] = ACTIONS(2022), - [aux_sym_stdin_null_token1] = ACTIONS(2022), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2022), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2022), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2022), - [aux_sym_syslog_facility_token1] = ACTIONS(2022), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2022), - [aux_sym_keep_alive_token1] = ACTIONS(2022), - [aux_sym_tag_token1] = ACTIONS(2022), - [aux_sym_tunnel_token1] = ACTIONS(2024), - [aux_sym_tunnel_device_token1] = ACTIONS(2022), - [aux_sym_update_host_keys_token1] = ACTIONS(2022), - [aux_sym_use_keychain_token1] = ACTIONS(2022), - [aux_sym_use_roaming_token1] = ACTIONS(2022), - [aux_sym_user_token1] = ACTIONS(2024), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2022), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2022), - [aux_sym_visual_host_key_token1] = ACTIONS(2022), - [aux_sym_xauth_location_token1] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(2031), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(2035), + [aux_sym_match_token1] = ACTIONS(2031), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2031), + [aux_sym_address_family_token1] = ACTIONS(2031), + [aux_sym_batch_mode_token1] = ACTIONS(2031), + [aux_sym_bind_address_token1] = ACTIONS(2031), + [aux_sym_bind_interface_token1] = ACTIONS(2031), + [aux_sym_canonical_domains_token1] = ACTIONS(2031), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2031), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2031), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2031), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2031), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2031), + [aux_sym_certificate_file_token1] = ACTIONS(2031), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2031), + [aux_sym_channel_timeout_token1] = ACTIONS(2031), + [aux_sym_check_host_ip_token1] = ACTIONS(2031), + [aux_sym_ciphers_token1] = ACTIONS(2031), + [aux_sym_cipher_token1] = ACTIONS(2033), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2031), + [aux_sym_compression_token1] = ACTIONS(2031), + [aux_sym_connection_attempts_token1] = ACTIONS(2031), + [aux_sym_connect_timeout_token1] = ACTIONS(2031), + [aux_sym_control_master_token1] = ACTIONS(2031), + [aux_sym_control_path_token1] = ACTIONS(2031), + [aux_sym_control_persist_token1] = ACTIONS(2031), + [aux_sym_dynamic_forward_token1] = ACTIONS(2031), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2031), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2031), + [aux_sym_escape_char_token1] = ACTIONS(2031), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2031), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2031), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2031), + [aux_sym_forward_agent_token1] = ACTIONS(2031), + [aux_sym_forward_x11_token1] = ACTIONS(2033), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2031), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2031), + [aux_sym_gateway_ports_token1] = ACTIONS(2031), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2031), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2031), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2031), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2031), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2031), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2031), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2031), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2031), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2031), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2031), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2031), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2031), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2031), + [aux_sym_host_key_alias_token1] = ACTIONS(2031), + [aux_sym_hostname_token1] = ACTIONS(2031), + [aux_sym_identities_only_token1] = ACTIONS(2031), + [aux_sym_identity_agent_token1] = ACTIONS(2031), + [aux_sym_identity_file_token1] = ACTIONS(2031), + [aux_sym_ignore_unknown_token1] = ACTIONS(2031), + [aux_sym_include_token1] = ACTIONS(2031), + [aux_sym_ip_qos_token1] = ACTIONS(2031), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2031), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2031), + [aux_sym_kex_algorithms_token1] = ACTIONS(2031), + [aux_sym_known_hosts_command_token1] = ACTIONS(2031), + [aux_sym_local_command_token1] = ACTIONS(2031), + [aux_sym_local_forward_token1] = ACTIONS(2031), + [aux_sym_log_level_token1] = ACTIONS(2031), + [aux_sym_log_verbose_token1] = ACTIONS(2031), + [aux_sym_macs_token1] = ACTIONS(2031), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2031), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2031), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2031), + [aux_sym_password_authentication_token1] = ACTIONS(2031), + [aux_sym_permit_local_command_token1] = ACTIONS(2031), + [aux_sym_permit_remote_open_token1] = ACTIONS(2031), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2031), + [aux_sym_port_token1] = ACTIONS(2031), + [aux_sym_preferred_authentications_token1] = ACTIONS(2031), + [aux_sym_protocol_token1] = ACTIONS(2031), + [aux_sym_proxy_command_token1] = ACTIONS(2031), + [aux_sym_proxy_jump_token1] = ACTIONS(2031), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2031), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2031), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2031), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2031), + [aux_sym_rekey_limit_token1] = ACTIONS(2031), + [aux_sym_remote_command_token1] = ACTIONS(2031), + [aux_sym_remote_forward_token1] = ACTIONS(2031), + [aux_sym_request_tty_token1] = ACTIONS(2031), + [aux_sym_required_rsa_size_token1] = ACTIONS(2031), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2031), + [aux_sym_security_key_provider_token1] = ACTIONS(2031), + [aux_sym_send_env_token1] = ACTIONS(2031), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2031), + [aux_sym_server_alive_interval_token1] = ACTIONS(2031), + [aux_sym_session_type_token1] = ACTIONS(2031), + [aux_sym_set_env_token1] = ACTIONS(2031), + [aux_sym_stdin_null_token1] = ACTIONS(2031), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2031), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2031), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2031), + [aux_sym_syslog_facility_token1] = ACTIONS(2031), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2031), + [aux_sym_keep_alive_token1] = ACTIONS(2031), + [aux_sym_tag_token1] = ACTIONS(2031), + [aux_sym_tunnel_token1] = ACTIONS(2033), + [aux_sym_tunnel_device_token1] = ACTIONS(2031), + [aux_sym_update_host_keys_token1] = ACTIONS(2031), + [aux_sym_use_keychain_token1] = ACTIONS(2031), + [aux_sym_use_roaming_token1] = ACTIONS(2031), + [aux_sym_user_token1] = ACTIONS(2033), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2031), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2031), + [aux_sym_visual_host_key_token1] = ACTIONS(2031), + [aux_sym_xauth_location_token1] = ACTIONS(2031), }, [248] = { - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2028), - [anon_sym_DQUOTE] = ACTIONS(2030), - [aux_sym_match_token1] = ACTIONS(2026), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2026), - [aux_sym_address_family_token1] = ACTIONS(2026), - [aux_sym_batch_mode_token1] = ACTIONS(2026), - [aux_sym_bind_address_token1] = ACTIONS(2026), - [aux_sym_bind_interface_token1] = ACTIONS(2026), - [aux_sym_canonical_domains_token1] = ACTIONS(2026), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2026), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2026), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2026), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2026), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2026), - [aux_sym_certificate_file_token1] = ACTIONS(2026), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2026), - [aux_sym_channel_timeout_token1] = ACTIONS(2026), - [aux_sym_check_host_ip_token1] = ACTIONS(2026), - [aux_sym_ciphers_token1] = ACTIONS(2026), - [aux_sym_cipher_token1] = ACTIONS(2028), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2026), - [aux_sym_compression_token1] = ACTIONS(2026), - [aux_sym_connection_attempts_token1] = ACTIONS(2026), - [aux_sym_connect_timeout_token1] = ACTIONS(2026), - [aux_sym_control_master_token1] = ACTIONS(2026), - [aux_sym_control_path_token1] = ACTIONS(2026), - [aux_sym_control_persist_token1] = ACTIONS(2026), - [aux_sym_dynamic_forward_token1] = ACTIONS(2026), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2026), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2026), - [aux_sym_escape_char_token1] = ACTIONS(2026), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2026), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2026), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2026), - [aux_sym_forward_agent_token1] = ACTIONS(2026), - [aux_sym_forward_x11_token1] = ACTIONS(2028), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2026), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2026), - [aux_sym_gateway_ports_token1] = ACTIONS(2026), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2026), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2026), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2026), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2026), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2026), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2026), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2026), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2026), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2026), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2026), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2026), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2026), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2026), - [aux_sym_host_key_alias_token1] = ACTIONS(2026), - [aux_sym_hostname_token1] = ACTIONS(2026), - [aux_sym_identities_only_token1] = ACTIONS(2026), - [aux_sym_identity_agent_token1] = ACTIONS(2026), - [aux_sym_identity_file_token1] = ACTIONS(2026), - [aux_sym_ignore_unknown_token1] = ACTIONS(2026), - [aux_sym_include_token1] = ACTIONS(2026), - [aux_sym_ip_qos_token1] = ACTIONS(2026), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2026), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2026), - [aux_sym_kex_algorithms_token1] = ACTIONS(2026), - [aux_sym_known_hosts_command_token1] = ACTIONS(2026), - [aux_sym_local_command_token1] = ACTIONS(2026), - [aux_sym_local_forward_token1] = ACTIONS(2026), - [aux_sym_log_level_token1] = ACTIONS(2026), - [aux_sym_log_verbose_token1] = ACTIONS(2026), - [aux_sym_macs_token1] = ACTIONS(2026), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2026), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2026), - [aux_sym_password_authentication_token1] = ACTIONS(2026), - [aux_sym_permit_local_command_token1] = ACTIONS(2026), - [aux_sym_permit_remote_open_token1] = ACTIONS(2026), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2026), - [aux_sym_port_token1] = ACTIONS(2026), - [aux_sym_preferred_authentications_token1] = ACTIONS(2026), - [aux_sym_protocol_token1] = ACTIONS(2026), - [aux_sym_proxy_command_token1] = ACTIONS(2026), - [aux_sym_proxy_jump_token1] = ACTIONS(2026), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2026), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2026), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2026), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2026), - [aux_sym_rekey_limit_token1] = ACTIONS(2026), - [aux_sym_remote_command_token1] = ACTIONS(2026), - [aux_sym_remote_forward_token1] = ACTIONS(2026), - [aux_sym_request_tty_token1] = ACTIONS(2026), - [aux_sym_required_rsa_size_token1] = ACTIONS(2026), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2026), - [aux_sym_security_key_provider_token1] = ACTIONS(2026), - [aux_sym_send_env_token1] = ACTIONS(2026), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2026), - [aux_sym_server_alive_interval_token1] = ACTIONS(2026), - [aux_sym_session_type_token1] = ACTIONS(2026), - [aux_sym_set_env_token1] = ACTIONS(2026), - [aux_sym_stdin_null_token1] = ACTIONS(2026), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2026), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2026), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2026), - [aux_sym_syslog_facility_token1] = ACTIONS(2026), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2026), - [aux_sym_keep_alive_token1] = ACTIONS(2026), - [aux_sym_tag_token1] = ACTIONS(2026), - [aux_sym_tunnel_token1] = ACTIONS(2028), - [aux_sym_tunnel_device_token1] = ACTIONS(2026), - [aux_sym_update_host_keys_token1] = ACTIONS(2026), - [aux_sym_use_keychain_token1] = ACTIONS(2026), - [aux_sym_use_roaming_token1] = ACTIONS(2026), - [aux_sym_user_token1] = ACTIONS(2028), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2026), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2026), - [aux_sym_visual_host_key_token1] = ACTIONS(2026), - [aux_sym_xauth_location_token1] = ACTIONS(2026), + [ts_builtin_sym_end] = ACTIONS(2037), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(2037), + [aux_sym_match_token1] = ACTIONS(2037), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2037), + [aux_sym_address_family_token1] = ACTIONS(2037), + [aux_sym_batch_mode_token1] = ACTIONS(2037), + [aux_sym_bind_address_token1] = ACTIONS(2037), + [aux_sym_bind_interface_token1] = ACTIONS(2037), + [aux_sym_canonical_domains_token1] = ACTIONS(2037), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2037), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2037), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2037), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2037), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2037), + [aux_sym_certificate_file_token1] = ACTIONS(2037), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2037), + [aux_sym_channel_timeout_token1] = ACTIONS(2037), + [aux_sym_check_host_ip_token1] = ACTIONS(2037), + [aux_sym_ciphers_token1] = ACTIONS(2037), + [aux_sym_cipher_token1] = ACTIONS(2039), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2037), + [aux_sym_compression_token1] = ACTIONS(2037), + [aux_sym_connection_attempts_token1] = ACTIONS(2037), + [aux_sym_connect_timeout_token1] = ACTIONS(2037), + [aux_sym_control_master_token1] = ACTIONS(2037), + [aux_sym_control_path_token1] = ACTIONS(2037), + [aux_sym_control_persist_token1] = ACTIONS(2037), + [aux_sym_dynamic_forward_token1] = ACTIONS(2037), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2037), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2037), + [aux_sym_escape_char_token1] = ACTIONS(2037), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2037), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2037), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2037), + [aux_sym_forward_agent_token1] = ACTIONS(2037), + [aux_sym_forward_x11_token1] = ACTIONS(2039), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2037), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2037), + [aux_sym_gateway_ports_token1] = ACTIONS(2037), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2037), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2037), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2037), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2037), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2037), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2037), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2037), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2037), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2037), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2037), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2037), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2037), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2037), + [aux_sym_host_key_alias_token1] = ACTIONS(2037), + [aux_sym_hostname_token1] = ACTIONS(2037), + [aux_sym_identities_only_token1] = ACTIONS(2037), + [aux_sym_identity_agent_token1] = ACTIONS(2037), + [aux_sym_identity_file_token1] = ACTIONS(2037), + [aux_sym_ignore_unknown_token1] = ACTIONS(2037), + [aux_sym_include_token1] = ACTIONS(2037), + [aux_sym_ip_qos_token1] = ACTIONS(2037), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2037), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2037), + [aux_sym_kex_algorithms_token1] = ACTIONS(2037), + [aux_sym_known_hosts_command_token1] = ACTIONS(2037), + [aux_sym_local_command_token1] = ACTIONS(2037), + [aux_sym_local_forward_token1] = ACTIONS(2037), + [aux_sym_log_level_token1] = ACTIONS(2037), + [aux_sym_log_verbose_token1] = ACTIONS(2037), + [aux_sym_macs_token1] = ACTIONS(2037), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2037), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2037), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2037), + [aux_sym_password_authentication_token1] = ACTIONS(2037), + [aux_sym_permit_local_command_token1] = ACTIONS(2037), + [aux_sym_permit_remote_open_token1] = ACTIONS(2037), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2037), + [aux_sym_port_token1] = ACTIONS(2037), + [aux_sym_preferred_authentications_token1] = ACTIONS(2037), + [aux_sym_protocol_token1] = ACTIONS(2037), + [aux_sym_proxy_command_token1] = ACTIONS(2037), + [aux_sym_proxy_jump_token1] = ACTIONS(2037), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2037), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2037), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2037), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2037), + [aux_sym_rekey_limit_token1] = ACTIONS(2037), + [aux_sym_remote_command_token1] = ACTIONS(2037), + [aux_sym_remote_forward_token1] = ACTIONS(2037), + [aux_sym_request_tty_token1] = ACTIONS(2037), + [aux_sym_required_rsa_size_token1] = ACTIONS(2037), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2037), + [aux_sym_security_key_provider_token1] = ACTIONS(2037), + [aux_sym_send_env_token1] = ACTIONS(2037), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2037), + [aux_sym_server_alive_interval_token1] = ACTIONS(2037), + [aux_sym_session_type_token1] = ACTIONS(2037), + [aux_sym_set_env_token1] = ACTIONS(2037), + [aux_sym_stdin_null_token1] = ACTIONS(2037), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2037), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2037), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2037), + [aux_sym_syslog_facility_token1] = ACTIONS(2037), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2037), + [aux_sym_keep_alive_token1] = ACTIONS(2037), + [aux_sym_tag_token1] = ACTIONS(2037), + [aux_sym_tunnel_token1] = ACTIONS(2039), + [aux_sym_tunnel_device_token1] = ACTIONS(2037), + [aux_sym_update_host_keys_token1] = ACTIONS(2037), + [aux_sym_use_keychain_token1] = ACTIONS(2037), + [aux_sym_use_roaming_token1] = ACTIONS(2037), + [aux_sym_user_token1] = ACTIONS(2039), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2037), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2037), + [aux_sym_visual_host_key_token1] = ACTIONS(2037), + [aux_sym_xauth_location_token1] = ACTIONS(2037), }, [249] = { - [ts_builtin_sym_end] = ACTIONS(2032), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2034), - [anon_sym_DQUOTE] = ACTIONS(2036), - [aux_sym_match_token1] = ACTIONS(2032), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2032), - [aux_sym_address_family_token1] = ACTIONS(2032), - [aux_sym_batch_mode_token1] = ACTIONS(2032), - [aux_sym_bind_address_token1] = ACTIONS(2032), - [aux_sym_bind_interface_token1] = ACTIONS(2032), - [aux_sym_canonical_domains_token1] = ACTIONS(2032), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2032), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2032), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2032), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2032), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2032), - [aux_sym_certificate_file_token1] = ACTIONS(2032), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2032), - [aux_sym_channel_timeout_token1] = ACTIONS(2032), - [aux_sym_check_host_ip_token1] = ACTIONS(2032), - [aux_sym_ciphers_token1] = ACTIONS(2032), - [aux_sym_cipher_token1] = ACTIONS(2034), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2032), - [aux_sym_compression_token1] = ACTIONS(2032), - [aux_sym_connection_attempts_token1] = ACTIONS(2032), - [aux_sym_connect_timeout_token1] = ACTIONS(2032), - [aux_sym_control_master_token1] = ACTIONS(2032), - [aux_sym_control_path_token1] = ACTIONS(2032), - [aux_sym_control_persist_token1] = ACTIONS(2032), - [aux_sym_dynamic_forward_token1] = ACTIONS(2032), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2032), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2032), - [aux_sym_escape_char_token1] = ACTIONS(2032), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2032), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2032), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2032), - [aux_sym_forward_agent_token1] = ACTIONS(2032), - [aux_sym_forward_x11_token1] = ACTIONS(2034), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2032), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2032), - [aux_sym_gateway_ports_token1] = ACTIONS(2032), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2032), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2032), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2032), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2032), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2032), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2032), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2032), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2032), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2032), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2032), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2032), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2032), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2032), - [aux_sym_host_key_alias_token1] = ACTIONS(2032), - [aux_sym_hostname_token1] = ACTIONS(2032), - [aux_sym_identities_only_token1] = ACTIONS(2032), - [aux_sym_identity_agent_token1] = ACTIONS(2032), - [aux_sym_identity_file_token1] = ACTIONS(2032), - [aux_sym_ignore_unknown_token1] = ACTIONS(2032), - [aux_sym_include_token1] = ACTIONS(2032), - [aux_sym_ip_qos_token1] = ACTIONS(2032), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2032), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2032), - [aux_sym_kex_algorithms_token1] = ACTIONS(2032), - [aux_sym_known_hosts_command_token1] = ACTIONS(2032), - [aux_sym_local_command_token1] = ACTIONS(2032), - [aux_sym_local_forward_token1] = ACTIONS(2032), - [aux_sym_log_level_token1] = ACTIONS(2032), - [aux_sym_log_verbose_token1] = ACTIONS(2032), - [aux_sym_macs_token1] = ACTIONS(2032), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2032), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2032), - [aux_sym_password_authentication_token1] = ACTIONS(2032), - [aux_sym_permit_local_command_token1] = ACTIONS(2032), - [aux_sym_permit_remote_open_token1] = ACTIONS(2032), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2032), - [aux_sym_port_token1] = ACTIONS(2032), - [aux_sym_preferred_authentications_token1] = ACTIONS(2032), - [aux_sym_protocol_token1] = ACTIONS(2032), - [aux_sym_proxy_command_token1] = ACTIONS(2032), - [aux_sym_proxy_jump_token1] = ACTIONS(2032), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2032), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2032), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2032), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2032), - [aux_sym_rekey_limit_token1] = ACTIONS(2032), - [aux_sym_remote_command_token1] = ACTIONS(2032), - [aux_sym_remote_forward_token1] = ACTIONS(2032), - [aux_sym_request_tty_token1] = ACTIONS(2032), - [aux_sym_required_rsa_size_token1] = ACTIONS(2032), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2032), - [aux_sym_security_key_provider_token1] = ACTIONS(2032), - [aux_sym_send_env_token1] = ACTIONS(2032), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2032), - [aux_sym_server_alive_interval_token1] = ACTIONS(2032), - [aux_sym_session_type_token1] = ACTIONS(2032), - [aux_sym_set_env_token1] = ACTIONS(2032), - [aux_sym_stdin_null_token1] = ACTIONS(2032), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2032), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2032), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2032), - [aux_sym_syslog_facility_token1] = ACTIONS(2032), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2032), - [aux_sym_keep_alive_token1] = ACTIONS(2032), - [aux_sym_tag_token1] = ACTIONS(2032), - [aux_sym_tunnel_token1] = ACTIONS(2034), - [aux_sym_tunnel_device_token1] = ACTIONS(2032), - [aux_sym_update_host_keys_token1] = ACTIONS(2032), - [aux_sym_use_keychain_token1] = ACTIONS(2032), - [aux_sym_use_roaming_token1] = ACTIONS(2032), - [aux_sym_user_token1] = ACTIONS(2034), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2032), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2032), - [aux_sym_visual_host_key_token1] = ACTIONS(2032), - [aux_sym_xauth_location_token1] = ACTIONS(2032), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2041), + [aux_sym_match_token1] = ACTIONS(2041), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2041), + [aux_sym_address_family_token1] = ACTIONS(2041), + [aux_sym_batch_mode_token1] = ACTIONS(2041), + [aux_sym_bind_address_token1] = ACTIONS(2041), + [aux_sym_bind_interface_token1] = ACTIONS(2041), + [aux_sym_canonical_domains_token1] = ACTIONS(2041), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2041), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2041), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2041), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2041), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2041), + [aux_sym_certificate_file_token1] = ACTIONS(2041), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2041), + [aux_sym_channel_timeout_token1] = ACTIONS(2041), + [aux_sym_check_host_ip_token1] = ACTIONS(2041), + [aux_sym_ciphers_token1] = ACTIONS(2041), + [aux_sym_cipher_token1] = ACTIONS(2043), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2041), + [aux_sym_compression_token1] = ACTIONS(2041), + [aux_sym_connection_attempts_token1] = ACTIONS(2041), + [aux_sym_connect_timeout_token1] = ACTIONS(2041), + [aux_sym_control_master_token1] = ACTIONS(2041), + [aux_sym_control_path_token1] = ACTIONS(2041), + [aux_sym_control_persist_token1] = ACTIONS(2041), + [aux_sym_dynamic_forward_token1] = ACTIONS(2041), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2041), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2041), + [aux_sym_escape_char_token1] = ACTIONS(2041), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2041), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2041), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2041), + [aux_sym_forward_agent_token1] = ACTIONS(2041), + [aux_sym_forward_x11_token1] = ACTIONS(2043), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2041), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2041), + [aux_sym_gateway_ports_token1] = ACTIONS(2041), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2041), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2041), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2041), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2041), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2041), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2041), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2041), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2041), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2041), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2041), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2041), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2041), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2041), + [aux_sym_host_key_alias_token1] = ACTIONS(2041), + [aux_sym_hostname_token1] = ACTIONS(2041), + [aux_sym_identities_only_token1] = ACTIONS(2041), + [aux_sym_identity_agent_token1] = ACTIONS(2041), + [aux_sym_identity_file_token1] = ACTIONS(2041), + [aux_sym_ignore_unknown_token1] = ACTIONS(2041), + [aux_sym_include_token1] = ACTIONS(2041), + [aux_sym_ip_qos_token1] = ACTIONS(2041), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2041), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2041), + [aux_sym_kex_algorithms_token1] = ACTIONS(2041), + [aux_sym_known_hosts_command_token1] = ACTIONS(2041), + [aux_sym_local_command_token1] = ACTIONS(2041), + [aux_sym_local_forward_token1] = ACTIONS(2041), + [aux_sym_log_level_token1] = ACTIONS(2041), + [aux_sym_log_verbose_token1] = ACTIONS(2041), + [aux_sym_macs_token1] = ACTIONS(2041), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2041), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2041), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2041), + [aux_sym_password_authentication_token1] = ACTIONS(2041), + [aux_sym_permit_local_command_token1] = ACTIONS(2041), + [aux_sym_permit_remote_open_token1] = ACTIONS(2041), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2041), + [aux_sym_port_token1] = ACTIONS(2041), + [aux_sym_preferred_authentications_token1] = ACTIONS(2041), + [aux_sym_protocol_token1] = ACTIONS(2041), + [aux_sym_proxy_command_token1] = ACTIONS(2041), + [aux_sym_proxy_jump_token1] = ACTIONS(2041), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2041), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2041), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2041), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2041), + [aux_sym_rekey_limit_token1] = ACTIONS(2041), + [aux_sym_remote_command_token1] = ACTIONS(2041), + [aux_sym_remote_forward_token1] = ACTIONS(2041), + [aux_sym_request_tty_token1] = ACTIONS(2041), + [aux_sym_required_rsa_size_token1] = ACTIONS(2041), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2041), + [aux_sym_security_key_provider_token1] = ACTIONS(2041), + [aux_sym_send_env_token1] = ACTIONS(2041), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2041), + [aux_sym_server_alive_interval_token1] = ACTIONS(2041), + [aux_sym_session_type_token1] = ACTIONS(2041), + [aux_sym_set_env_token1] = ACTIONS(2041), + [aux_sym_stdin_null_token1] = ACTIONS(2041), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2041), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2041), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2041), + [aux_sym_syslog_facility_token1] = ACTIONS(2041), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2041), + [aux_sym_keep_alive_token1] = ACTIONS(2041), + [aux_sym_tag_token1] = ACTIONS(2041), + [aux_sym_tunnel_token1] = ACTIONS(2043), + [aux_sym_tunnel_device_token1] = ACTIONS(2041), + [aux_sym_update_host_keys_token1] = ACTIONS(2041), + [aux_sym_use_keychain_token1] = ACTIONS(2041), + [aux_sym_use_roaming_token1] = ACTIONS(2041), + [aux_sym_user_token1] = ACTIONS(2043), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2041), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2041), + [aux_sym_visual_host_key_token1] = ACTIONS(2041), + [aux_sym_xauth_location_token1] = ACTIONS(2041), }, [250] = { - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2038), - [aux_sym_match_token1] = ACTIONS(2038), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2038), - [aux_sym_address_family_token1] = ACTIONS(2038), - [aux_sym_batch_mode_token1] = ACTIONS(2038), - [aux_sym_bind_address_token1] = ACTIONS(2038), - [aux_sym_bind_interface_token1] = ACTIONS(2038), - [aux_sym_canonical_domains_token1] = ACTIONS(2038), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2038), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2038), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2038), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2038), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2038), - [aux_sym_certificate_file_token1] = ACTIONS(2038), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2038), - [aux_sym_channel_timeout_token1] = ACTIONS(2038), - [aux_sym_check_host_ip_token1] = ACTIONS(2038), - [aux_sym_ciphers_token1] = ACTIONS(2038), - [aux_sym_cipher_token1] = ACTIONS(2040), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2038), - [aux_sym_compression_token1] = ACTIONS(2038), - [aux_sym_connection_attempts_token1] = ACTIONS(2038), - [aux_sym_connect_timeout_token1] = ACTIONS(2038), - [aux_sym_control_master_token1] = ACTIONS(2038), - [aux_sym_control_path_token1] = ACTIONS(2038), - [aux_sym_control_persist_token1] = ACTIONS(2038), - [aux_sym_dynamic_forward_token1] = ACTIONS(2038), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2038), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2038), - [aux_sym_escape_char_token1] = ACTIONS(2038), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2038), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2038), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2038), - [aux_sym_forward_agent_token1] = ACTIONS(2038), - [aux_sym_forward_x11_token1] = ACTIONS(2040), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2038), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2038), - [aux_sym_gateway_ports_token1] = ACTIONS(2038), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2038), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2038), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2038), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2038), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2038), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2038), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2038), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2038), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2038), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2038), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2038), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2038), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2038), - [aux_sym_host_key_alias_token1] = ACTIONS(2038), - [aux_sym_hostname_token1] = ACTIONS(2038), - [aux_sym_identities_only_token1] = ACTIONS(2038), - [aux_sym_identity_agent_token1] = ACTIONS(2038), - [aux_sym_identity_file_token1] = ACTIONS(2038), - [aux_sym_ignore_unknown_token1] = ACTIONS(2038), - [aux_sym_include_token1] = ACTIONS(2038), - [aux_sym_ip_qos_token1] = ACTIONS(2038), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2038), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2038), - [aux_sym_kex_algorithms_token1] = ACTIONS(2038), - [aux_sym_known_hosts_command_token1] = ACTIONS(2038), - [aux_sym_local_command_token1] = ACTIONS(2038), - [aux_sym_local_forward_token1] = ACTIONS(2038), - [aux_sym_log_level_token1] = ACTIONS(2038), - [aux_sym_log_verbose_token1] = ACTIONS(2038), - [aux_sym_macs_token1] = ACTIONS(2038), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2038), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2038), - [aux_sym_password_authentication_token1] = ACTIONS(2038), - [aux_sym_permit_local_command_token1] = ACTIONS(2038), - [aux_sym_permit_remote_open_token1] = ACTIONS(2038), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2038), - [aux_sym_port_token1] = ACTIONS(2038), - [aux_sym_preferred_authentications_token1] = ACTIONS(2038), - [aux_sym_protocol_token1] = ACTIONS(2038), - [aux_sym_proxy_command_token1] = ACTIONS(2038), - [aux_sym_proxy_jump_token1] = ACTIONS(2038), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2038), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2038), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2038), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2038), - [aux_sym_rekey_limit_token1] = ACTIONS(2038), - [aux_sym_remote_command_token1] = ACTIONS(2038), - [aux_sym_remote_forward_token1] = ACTIONS(2038), - [aux_sym_request_tty_token1] = ACTIONS(2038), - [aux_sym_required_rsa_size_token1] = ACTIONS(2038), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2038), - [aux_sym_security_key_provider_token1] = ACTIONS(2038), - [aux_sym_send_env_token1] = ACTIONS(2038), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2038), - [aux_sym_server_alive_interval_token1] = ACTIONS(2038), - [aux_sym_session_type_token1] = ACTIONS(2038), - [aux_sym_set_env_token1] = ACTIONS(2038), - [aux_sym_stdin_null_token1] = ACTIONS(2038), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2038), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2038), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2038), - [aux_sym_syslog_facility_token1] = ACTIONS(2038), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2038), - [aux_sym_keep_alive_token1] = ACTIONS(2038), - [aux_sym_tag_token1] = ACTIONS(2038), - [aux_sym_tunnel_token1] = ACTIONS(2040), - [aux_sym_tunnel_device_token1] = ACTIONS(2038), - [aux_sym_update_host_keys_token1] = ACTIONS(2038), - [aux_sym_use_keychain_token1] = ACTIONS(2038), - [aux_sym_use_roaming_token1] = ACTIONS(2038), - [aux_sym_user_token1] = ACTIONS(2040), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2038), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2038), - [aux_sym_visual_host_key_token1] = ACTIONS(2038), - [aux_sym_xauth_location_token1] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2045), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2049), + [aux_sym_match_token1] = ACTIONS(2045), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2045), + [aux_sym_address_family_token1] = ACTIONS(2045), + [aux_sym_batch_mode_token1] = ACTIONS(2045), + [aux_sym_bind_address_token1] = ACTIONS(2045), + [aux_sym_bind_interface_token1] = ACTIONS(2045), + [aux_sym_canonical_domains_token1] = ACTIONS(2045), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2045), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2045), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2045), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2045), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2045), + [aux_sym_certificate_file_token1] = ACTIONS(2045), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2045), + [aux_sym_channel_timeout_token1] = ACTIONS(2045), + [aux_sym_check_host_ip_token1] = ACTIONS(2045), + [aux_sym_ciphers_token1] = ACTIONS(2045), + [aux_sym_cipher_token1] = ACTIONS(2047), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2045), + [aux_sym_compression_token1] = ACTIONS(2045), + [aux_sym_connection_attempts_token1] = ACTIONS(2045), + [aux_sym_connect_timeout_token1] = ACTIONS(2045), + [aux_sym_control_master_token1] = ACTIONS(2045), + [aux_sym_control_path_token1] = ACTIONS(2045), + [aux_sym_control_persist_token1] = ACTIONS(2045), + [aux_sym_dynamic_forward_token1] = ACTIONS(2045), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2045), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2045), + [aux_sym_escape_char_token1] = ACTIONS(2045), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2045), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2045), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2045), + [aux_sym_forward_agent_token1] = ACTIONS(2045), + [aux_sym_forward_x11_token1] = ACTIONS(2047), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2045), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2045), + [aux_sym_gateway_ports_token1] = ACTIONS(2045), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2045), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2045), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2045), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2045), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2045), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2045), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2045), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2045), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2045), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2045), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2045), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2045), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2045), + [aux_sym_host_key_alias_token1] = ACTIONS(2045), + [aux_sym_hostname_token1] = ACTIONS(2045), + [aux_sym_identities_only_token1] = ACTIONS(2045), + [aux_sym_identity_agent_token1] = ACTIONS(2045), + [aux_sym_identity_file_token1] = ACTIONS(2045), + [aux_sym_ignore_unknown_token1] = ACTIONS(2045), + [aux_sym_include_token1] = ACTIONS(2045), + [aux_sym_ip_qos_token1] = ACTIONS(2045), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2045), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2045), + [aux_sym_kex_algorithms_token1] = ACTIONS(2045), + [aux_sym_known_hosts_command_token1] = ACTIONS(2045), + [aux_sym_local_command_token1] = ACTIONS(2045), + [aux_sym_local_forward_token1] = ACTIONS(2045), + [aux_sym_log_level_token1] = ACTIONS(2045), + [aux_sym_log_verbose_token1] = ACTIONS(2045), + [aux_sym_macs_token1] = ACTIONS(2045), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2045), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2045), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2045), + [aux_sym_password_authentication_token1] = ACTIONS(2045), + [aux_sym_permit_local_command_token1] = ACTIONS(2045), + [aux_sym_permit_remote_open_token1] = ACTIONS(2045), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2045), + [aux_sym_port_token1] = ACTIONS(2045), + [aux_sym_preferred_authentications_token1] = ACTIONS(2045), + [aux_sym_protocol_token1] = ACTIONS(2045), + [aux_sym_proxy_command_token1] = ACTIONS(2045), + [aux_sym_proxy_jump_token1] = ACTIONS(2045), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2045), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2045), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2045), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2045), + [aux_sym_rekey_limit_token1] = ACTIONS(2045), + [aux_sym_remote_command_token1] = ACTIONS(2045), + [aux_sym_remote_forward_token1] = ACTIONS(2045), + [aux_sym_request_tty_token1] = ACTIONS(2045), + [aux_sym_required_rsa_size_token1] = ACTIONS(2045), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2045), + [aux_sym_security_key_provider_token1] = ACTIONS(2045), + [aux_sym_send_env_token1] = ACTIONS(2045), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2045), + [aux_sym_server_alive_interval_token1] = ACTIONS(2045), + [aux_sym_session_type_token1] = ACTIONS(2045), + [aux_sym_set_env_token1] = ACTIONS(2045), + [aux_sym_stdin_null_token1] = ACTIONS(2045), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2045), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2045), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2045), + [aux_sym_syslog_facility_token1] = ACTIONS(2045), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2045), + [aux_sym_keep_alive_token1] = ACTIONS(2045), + [aux_sym_tag_token1] = ACTIONS(2045), + [aux_sym_tunnel_token1] = ACTIONS(2047), + [aux_sym_tunnel_device_token1] = ACTIONS(2045), + [aux_sym_update_host_keys_token1] = ACTIONS(2045), + [aux_sym_use_keychain_token1] = ACTIONS(2045), + [aux_sym_use_roaming_token1] = ACTIONS(2045), + [aux_sym_user_token1] = ACTIONS(2047), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2045), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2045), + [aux_sym_visual_host_key_token1] = ACTIONS(2045), + [aux_sym_xauth_location_token1] = ACTIONS(2045), }, [251] = { - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2044), - [anon_sym_DQUOTE] = ACTIONS(2042), - [aux_sym_match_token1] = ACTIONS(2042), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2042), - [aux_sym_address_family_token1] = ACTIONS(2042), - [aux_sym_batch_mode_token1] = ACTIONS(2042), - [aux_sym_bind_address_token1] = ACTIONS(2042), - [aux_sym_bind_interface_token1] = ACTIONS(2042), - [aux_sym_canonical_domains_token1] = ACTIONS(2042), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2042), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2042), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2042), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2042), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2042), - [aux_sym_certificate_file_token1] = ACTIONS(2042), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2042), - [aux_sym_channel_timeout_token1] = ACTIONS(2042), - [aux_sym_check_host_ip_token1] = ACTIONS(2042), - [aux_sym_ciphers_token1] = ACTIONS(2042), - [aux_sym_cipher_token1] = ACTIONS(2044), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2042), - [aux_sym_compression_token1] = ACTIONS(2042), - [aux_sym_connection_attempts_token1] = ACTIONS(2042), - [aux_sym_connect_timeout_token1] = ACTIONS(2042), - [aux_sym_control_master_token1] = ACTIONS(2042), - [aux_sym_control_path_token1] = ACTIONS(2042), - [aux_sym_control_persist_token1] = ACTIONS(2042), - [aux_sym_dynamic_forward_token1] = ACTIONS(2042), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2042), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2042), - [aux_sym_escape_char_token1] = ACTIONS(2042), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2042), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2042), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2042), - [aux_sym_forward_agent_token1] = ACTIONS(2042), - [aux_sym_forward_x11_token1] = ACTIONS(2044), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2042), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2042), - [aux_sym_gateway_ports_token1] = ACTIONS(2042), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2042), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2042), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2042), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2042), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2042), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2042), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2042), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2042), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2042), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2042), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2042), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2042), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2042), - [aux_sym_host_key_alias_token1] = ACTIONS(2042), - [aux_sym_hostname_token1] = ACTIONS(2042), - [aux_sym_identities_only_token1] = ACTIONS(2042), - [aux_sym_identity_agent_token1] = ACTIONS(2042), - [aux_sym_identity_file_token1] = ACTIONS(2042), - [aux_sym_ignore_unknown_token1] = ACTIONS(2042), - [aux_sym_include_token1] = ACTIONS(2042), - [aux_sym_ip_qos_token1] = ACTIONS(2042), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2042), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2042), - [aux_sym_kex_algorithms_token1] = ACTIONS(2042), - [aux_sym_known_hosts_command_token1] = ACTIONS(2042), - [aux_sym_local_command_token1] = ACTIONS(2042), - [aux_sym_local_forward_token1] = ACTIONS(2042), - [aux_sym_log_level_token1] = ACTIONS(2042), - [aux_sym_log_verbose_token1] = ACTIONS(2042), - [aux_sym_macs_token1] = ACTIONS(2042), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2042), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2042), - [aux_sym_password_authentication_token1] = ACTIONS(2042), - [aux_sym_permit_local_command_token1] = ACTIONS(2042), - [aux_sym_permit_remote_open_token1] = ACTIONS(2042), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2042), - [aux_sym_port_token1] = ACTIONS(2042), - [aux_sym_preferred_authentications_token1] = ACTIONS(2042), - [aux_sym_protocol_token1] = ACTIONS(2042), - [aux_sym_proxy_command_token1] = ACTIONS(2042), - [aux_sym_proxy_jump_token1] = ACTIONS(2042), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2042), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2042), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2042), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2042), - [aux_sym_rekey_limit_token1] = ACTIONS(2042), - [aux_sym_remote_command_token1] = ACTIONS(2042), - [aux_sym_remote_forward_token1] = ACTIONS(2042), - [aux_sym_request_tty_token1] = ACTIONS(2042), - [aux_sym_required_rsa_size_token1] = ACTIONS(2042), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2042), - [aux_sym_security_key_provider_token1] = ACTIONS(2042), - [aux_sym_send_env_token1] = ACTIONS(2042), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2042), - [aux_sym_server_alive_interval_token1] = ACTIONS(2042), - [aux_sym_session_type_token1] = ACTIONS(2042), - [aux_sym_set_env_token1] = ACTIONS(2042), - [aux_sym_stdin_null_token1] = ACTIONS(2042), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2042), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2042), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2042), - [aux_sym_syslog_facility_token1] = ACTIONS(2042), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2042), - [aux_sym_keep_alive_token1] = ACTIONS(2042), - [aux_sym_tag_token1] = ACTIONS(2042), - [aux_sym_tunnel_token1] = ACTIONS(2044), - [aux_sym_tunnel_device_token1] = ACTIONS(2042), - [aux_sym_update_host_keys_token1] = ACTIONS(2042), - [aux_sym_use_keychain_token1] = ACTIONS(2042), - [aux_sym_use_roaming_token1] = ACTIONS(2042), - [aux_sym_user_token1] = ACTIONS(2044), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2042), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2042), - [aux_sym_visual_host_key_token1] = ACTIONS(2042), - [aux_sym_xauth_location_token1] = ACTIONS(2042), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2055), + [aux_sym_match_token1] = ACTIONS(2051), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2051), + [aux_sym_address_family_token1] = ACTIONS(2051), + [aux_sym_batch_mode_token1] = ACTIONS(2051), + [aux_sym_bind_address_token1] = ACTIONS(2051), + [aux_sym_bind_interface_token1] = ACTIONS(2051), + [aux_sym_canonical_domains_token1] = ACTIONS(2051), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2051), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2051), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2051), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2051), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2051), + [aux_sym_certificate_file_token1] = ACTIONS(2051), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2051), + [aux_sym_channel_timeout_token1] = ACTIONS(2051), + [aux_sym_check_host_ip_token1] = ACTIONS(2051), + [aux_sym_ciphers_token1] = ACTIONS(2051), + [aux_sym_cipher_token1] = ACTIONS(2053), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2051), + [aux_sym_compression_token1] = ACTIONS(2051), + [aux_sym_connection_attempts_token1] = ACTIONS(2051), + [aux_sym_connect_timeout_token1] = ACTIONS(2051), + [aux_sym_control_master_token1] = ACTIONS(2051), + [aux_sym_control_path_token1] = ACTIONS(2051), + [aux_sym_control_persist_token1] = ACTIONS(2051), + [aux_sym_dynamic_forward_token1] = ACTIONS(2051), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2051), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2051), + [aux_sym_escape_char_token1] = ACTIONS(2051), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2051), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2051), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2051), + [aux_sym_forward_agent_token1] = ACTIONS(2051), + [aux_sym_forward_x11_token1] = ACTIONS(2053), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2051), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2051), + [aux_sym_gateway_ports_token1] = ACTIONS(2051), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2051), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2051), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2051), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2051), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2051), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2051), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2051), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2051), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2051), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2051), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2051), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2051), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2051), + [aux_sym_host_key_alias_token1] = ACTIONS(2051), + [aux_sym_hostname_token1] = ACTIONS(2051), + [aux_sym_identities_only_token1] = ACTIONS(2051), + [aux_sym_identity_agent_token1] = ACTIONS(2051), + [aux_sym_identity_file_token1] = ACTIONS(2051), + [aux_sym_ignore_unknown_token1] = ACTIONS(2051), + [aux_sym_include_token1] = ACTIONS(2051), + [aux_sym_ip_qos_token1] = ACTIONS(2051), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2051), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2051), + [aux_sym_kex_algorithms_token1] = ACTIONS(2051), + [aux_sym_known_hosts_command_token1] = ACTIONS(2051), + [aux_sym_local_command_token1] = ACTIONS(2051), + [aux_sym_local_forward_token1] = ACTIONS(2051), + [aux_sym_log_level_token1] = ACTIONS(2051), + [aux_sym_log_verbose_token1] = ACTIONS(2051), + [aux_sym_macs_token1] = ACTIONS(2051), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2051), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2051), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2051), + [aux_sym_password_authentication_token1] = ACTIONS(2051), + [aux_sym_permit_local_command_token1] = ACTIONS(2051), + [aux_sym_permit_remote_open_token1] = ACTIONS(2051), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2051), + [aux_sym_port_token1] = ACTIONS(2051), + [aux_sym_preferred_authentications_token1] = ACTIONS(2051), + [aux_sym_protocol_token1] = ACTIONS(2051), + [aux_sym_proxy_command_token1] = ACTIONS(2051), + [aux_sym_proxy_jump_token1] = ACTIONS(2051), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2051), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2051), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2051), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2051), + [aux_sym_rekey_limit_token1] = ACTIONS(2051), + [aux_sym_remote_command_token1] = ACTIONS(2051), + [aux_sym_remote_forward_token1] = ACTIONS(2051), + [aux_sym_request_tty_token1] = ACTIONS(2051), + [aux_sym_required_rsa_size_token1] = ACTIONS(2051), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2051), + [aux_sym_security_key_provider_token1] = ACTIONS(2051), + [aux_sym_send_env_token1] = ACTIONS(2051), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2051), + [aux_sym_server_alive_interval_token1] = ACTIONS(2051), + [aux_sym_session_type_token1] = ACTIONS(2051), + [aux_sym_set_env_token1] = ACTIONS(2051), + [aux_sym_stdin_null_token1] = ACTIONS(2051), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2051), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2051), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2051), + [aux_sym_syslog_facility_token1] = ACTIONS(2051), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2051), + [aux_sym_keep_alive_token1] = ACTIONS(2051), + [aux_sym_tag_token1] = ACTIONS(2051), + [aux_sym_tunnel_token1] = ACTIONS(2053), + [aux_sym_tunnel_device_token1] = ACTIONS(2051), + [aux_sym_update_host_keys_token1] = ACTIONS(2051), + [aux_sym_use_keychain_token1] = ACTIONS(2051), + [aux_sym_use_roaming_token1] = ACTIONS(2051), + [aux_sym_user_token1] = ACTIONS(2053), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2051), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2051), + [aux_sym_visual_host_key_token1] = ACTIONS(2051), + [aux_sym_xauth_location_token1] = ACTIONS(2051), }, [252] = { - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2048), - [anon_sym_DQUOTE] = ACTIONS(2050), - [aux_sym_match_token1] = ACTIONS(2046), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2046), - [aux_sym_address_family_token1] = ACTIONS(2046), - [aux_sym_batch_mode_token1] = ACTIONS(2046), - [aux_sym_bind_address_token1] = ACTIONS(2046), - [aux_sym_bind_interface_token1] = ACTIONS(2046), - [aux_sym_canonical_domains_token1] = ACTIONS(2046), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2046), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2046), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2046), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2046), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2046), - [aux_sym_certificate_file_token1] = ACTIONS(2046), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2046), - [aux_sym_channel_timeout_token1] = ACTIONS(2046), - [aux_sym_check_host_ip_token1] = ACTIONS(2046), - [aux_sym_ciphers_token1] = ACTIONS(2046), - [aux_sym_cipher_token1] = ACTIONS(2048), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2046), - [aux_sym_compression_token1] = ACTIONS(2046), - [aux_sym_connection_attempts_token1] = ACTIONS(2046), - [aux_sym_connect_timeout_token1] = ACTIONS(2046), - [aux_sym_control_master_token1] = ACTIONS(2046), - [aux_sym_control_path_token1] = ACTIONS(2046), - [aux_sym_control_persist_token1] = ACTIONS(2046), - [aux_sym_dynamic_forward_token1] = ACTIONS(2046), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2046), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2046), - [aux_sym_escape_char_token1] = ACTIONS(2046), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2046), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2046), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2046), - [aux_sym_forward_agent_token1] = ACTIONS(2046), - [aux_sym_forward_x11_token1] = ACTIONS(2048), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2046), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2046), - [aux_sym_gateway_ports_token1] = ACTIONS(2046), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2046), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2046), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2046), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2046), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2046), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2046), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2046), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2046), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2046), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2046), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2046), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2046), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2046), - [aux_sym_host_key_alias_token1] = ACTIONS(2046), - [aux_sym_hostname_token1] = ACTIONS(2046), - [aux_sym_identities_only_token1] = ACTIONS(2046), - [aux_sym_identity_agent_token1] = ACTIONS(2046), - [aux_sym_identity_file_token1] = ACTIONS(2046), - [aux_sym_ignore_unknown_token1] = ACTIONS(2046), - [aux_sym_include_token1] = ACTIONS(2046), - [aux_sym_ip_qos_token1] = ACTIONS(2046), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2046), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2046), - [aux_sym_kex_algorithms_token1] = ACTIONS(2046), - [aux_sym_known_hosts_command_token1] = ACTIONS(2046), - [aux_sym_local_command_token1] = ACTIONS(2046), - [aux_sym_local_forward_token1] = ACTIONS(2046), - [aux_sym_log_level_token1] = ACTIONS(2046), - [aux_sym_log_verbose_token1] = ACTIONS(2046), - [aux_sym_macs_token1] = ACTIONS(2046), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2046), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2046), - [aux_sym_password_authentication_token1] = ACTIONS(2046), - [aux_sym_permit_local_command_token1] = ACTIONS(2046), - [aux_sym_permit_remote_open_token1] = ACTIONS(2046), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2046), - [aux_sym_port_token1] = ACTIONS(2046), - [aux_sym_preferred_authentications_token1] = ACTIONS(2046), - [aux_sym_protocol_token1] = ACTIONS(2046), - [aux_sym_proxy_command_token1] = ACTIONS(2046), - [aux_sym_proxy_jump_token1] = ACTIONS(2046), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2046), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2046), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2046), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2046), - [aux_sym_rekey_limit_token1] = ACTIONS(2046), - [aux_sym_remote_command_token1] = ACTIONS(2046), - [aux_sym_remote_forward_token1] = ACTIONS(2046), - [aux_sym_request_tty_token1] = ACTIONS(2046), - [aux_sym_required_rsa_size_token1] = ACTIONS(2046), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2046), - [aux_sym_security_key_provider_token1] = ACTIONS(2046), - [aux_sym_send_env_token1] = ACTIONS(2046), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2046), - [aux_sym_server_alive_interval_token1] = ACTIONS(2046), - [aux_sym_session_type_token1] = ACTIONS(2046), - [aux_sym_set_env_token1] = ACTIONS(2046), - [aux_sym_stdin_null_token1] = ACTIONS(2046), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2046), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2046), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2046), - [aux_sym_syslog_facility_token1] = ACTIONS(2046), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2046), - [aux_sym_keep_alive_token1] = ACTIONS(2046), - [aux_sym_tag_token1] = ACTIONS(2046), - [aux_sym_tunnel_token1] = ACTIONS(2048), - [aux_sym_tunnel_device_token1] = ACTIONS(2046), - [aux_sym_update_host_keys_token1] = ACTIONS(2046), - [aux_sym_use_keychain_token1] = ACTIONS(2046), - [aux_sym_use_roaming_token1] = ACTIONS(2046), - [aux_sym_user_token1] = ACTIONS(2048), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2046), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2046), - [aux_sym_visual_host_key_token1] = ACTIONS(2046), - [aux_sym_xauth_location_token1] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(2057), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2057), + [aux_sym_match_token1] = ACTIONS(2057), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2057), + [aux_sym_address_family_token1] = ACTIONS(2057), + [aux_sym_batch_mode_token1] = ACTIONS(2057), + [aux_sym_bind_address_token1] = ACTIONS(2057), + [aux_sym_bind_interface_token1] = ACTIONS(2057), + [aux_sym_canonical_domains_token1] = ACTIONS(2057), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2057), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2057), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2057), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2057), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2057), + [aux_sym_certificate_file_token1] = ACTIONS(2057), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2057), + [aux_sym_channel_timeout_token1] = ACTIONS(2057), + [aux_sym_check_host_ip_token1] = ACTIONS(2057), + [aux_sym_ciphers_token1] = ACTIONS(2057), + [aux_sym_cipher_token1] = ACTIONS(2059), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2057), + [aux_sym_compression_token1] = ACTIONS(2057), + [aux_sym_connection_attempts_token1] = ACTIONS(2057), + [aux_sym_connect_timeout_token1] = ACTIONS(2057), + [aux_sym_control_master_token1] = ACTIONS(2057), + [aux_sym_control_path_token1] = ACTIONS(2057), + [aux_sym_control_persist_token1] = ACTIONS(2057), + [aux_sym_dynamic_forward_token1] = ACTIONS(2057), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2057), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2057), + [aux_sym_escape_char_token1] = ACTIONS(2057), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2057), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2057), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2057), + [aux_sym_forward_agent_token1] = ACTIONS(2057), + [aux_sym_forward_x11_token1] = ACTIONS(2059), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2057), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2057), + [aux_sym_gateway_ports_token1] = ACTIONS(2057), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2057), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2057), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2057), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2057), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2057), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2057), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2057), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2057), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2057), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2057), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2057), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2057), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2057), + [aux_sym_host_key_alias_token1] = ACTIONS(2057), + [aux_sym_hostname_token1] = ACTIONS(2057), + [aux_sym_identities_only_token1] = ACTIONS(2057), + [aux_sym_identity_agent_token1] = ACTIONS(2057), + [aux_sym_identity_file_token1] = ACTIONS(2057), + [aux_sym_ignore_unknown_token1] = ACTIONS(2057), + [aux_sym_include_token1] = ACTIONS(2057), + [aux_sym_ip_qos_token1] = ACTIONS(2057), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2057), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2057), + [aux_sym_kex_algorithms_token1] = ACTIONS(2057), + [aux_sym_known_hosts_command_token1] = ACTIONS(2057), + [aux_sym_local_command_token1] = ACTIONS(2057), + [aux_sym_local_forward_token1] = ACTIONS(2057), + [aux_sym_log_level_token1] = ACTIONS(2057), + [aux_sym_log_verbose_token1] = ACTIONS(2057), + [aux_sym_macs_token1] = ACTIONS(2057), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2057), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2057), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2057), + [aux_sym_password_authentication_token1] = ACTIONS(2057), + [aux_sym_permit_local_command_token1] = ACTIONS(2057), + [aux_sym_permit_remote_open_token1] = ACTIONS(2057), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2057), + [aux_sym_port_token1] = ACTIONS(2057), + [aux_sym_preferred_authentications_token1] = ACTIONS(2057), + [aux_sym_protocol_token1] = ACTIONS(2057), + [aux_sym_proxy_command_token1] = ACTIONS(2057), + [aux_sym_proxy_jump_token1] = ACTIONS(2057), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2057), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2057), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2057), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2057), + [aux_sym_rekey_limit_token1] = ACTIONS(2057), + [aux_sym_remote_command_token1] = ACTIONS(2057), + [aux_sym_remote_forward_token1] = ACTIONS(2057), + [aux_sym_request_tty_token1] = ACTIONS(2057), + [aux_sym_required_rsa_size_token1] = ACTIONS(2057), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2057), + [aux_sym_security_key_provider_token1] = ACTIONS(2057), + [aux_sym_send_env_token1] = ACTIONS(2057), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2057), + [aux_sym_server_alive_interval_token1] = ACTIONS(2057), + [aux_sym_session_type_token1] = ACTIONS(2057), + [aux_sym_set_env_token1] = ACTIONS(2057), + [aux_sym_stdin_null_token1] = ACTIONS(2057), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2057), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2057), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2057), + [aux_sym_syslog_facility_token1] = ACTIONS(2057), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2057), + [aux_sym_keep_alive_token1] = ACTIONS(2057), + [aux_sym_tag_token1] = ACTIONS(2057), + [aux_sym_tunnel_token1] = ACTIONS(2059), + [aux_sym_tunnel_device_token1] = ACTIONS(2057), + [aux_sym_update_host_keys_token1] = ACTIONS(2057), + [aux_sym_use_keychain_token1] = ACTIONS(2057), + [aux_sym_use_roaming_token1] = ACTIONS(2057), + [aux_sym_user_token1] = ACTIONS(2059), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2057), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2057), + [aux_sym_visual_host_key_token1] = ACTIONS(2057), + [aux_sym_xauth_location_token1] = ACTIONS(2057), }, [253] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2054), - [anon_sym_DQUOTE] = ACTIONS(2052), - [aux_sym_match_token1] = ACTIONS(2052), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2052), - [aux_sym_address_family_token1] = ACTIONS(2052), - [aux_sym_batch_mode_token1] = ACTIONS(2052), - [aux_sym_bind_address_token1] = ACTIONS(2052), - [aux_sym_bind_interface_token1] = ACTIONS(2052), - [aux_sym_canonical_domains_token1] = ACTIONS(2052), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2052), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2052), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2052), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2052), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2052), - [aux_sym_certificate_file_token1] = ACTIONS(2052), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2052), - [aux_sym_channel_timeout_token1] = ACTIONS(2052), - [aux_sym_check_host_ip_token1] = ACTIONS(2052), - [aux_sym_ciphers_token1] = ACTIONS(2052), - [aux_sym_cipher_token1] = ACTIONS(2054), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2052), - [aux_sym_compression_token1] = ACTIONS(2052), - [aux_sym_connection_attempts_token1] = ACTIONS(2052), - [aux_sym_connect_timeout_token1] = ACTIONS(2052), - [aux_sym_control_master_token1] = ACTIONS(2052), - [aux_sym_control_path_token1] = ACTIONS(2052), - [aux_sym_control_persist_token1] = ACTIONS(2052), - [aux_sym_dynamic_forward_token1] = ACTIONS(2052), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2052), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2052), - [aux_sym_escape_char_token1] = ACTIONS(2052), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2052), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2052), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2052), - [aux_sym_forward_agent_token1] = ACTIONS(2052), - [aux_sym_forward_x11_token1] = ACTIONS(2054), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2052), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2052), - [aux_sym_gateway_ports_token1] = ACTIONS(2052), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2052), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2052), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2052), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2052), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2052), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2052), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2052), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2052), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2052), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2052), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2052), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2052), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2052), - [aux_sym_host_key_alias_token1] = ACTIONS(2052), - [aux_sym_hostname_token1] = ACTIONS(2052), - [aux_sym_identities_only_token1] = ACTIONS(2052), - [aux_sym_identity_agent_token1] = ACTIONS(2052), - [aux_sym_identity_file_token1] = ACTIONS(2052), - [aux_sym_ignore_unknown_token1] = ACTIONS(2052), - [aux_sym_include_token1] = ACTIONS(2052), - [aux_sym_ip_qos_token1] = ACTIONS(2052), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2052), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2052), - [aux_sym_kex_algorithms_token1] = ACTIONS(2052), - [aux_sym_known_hosts_command_token1] = ACTIONS(2052), - [aux_sym_local_command_token1] = ACTIONS(2052), - [aux_sym_local_forward_token1] = ACTIONS(2052), - [aux_sym_log_level_token1] = ACTIONS(2052), - [aux_sym_log_verbose_token1] = ACTIONS(2052), - [aux_sym_macs_token1] = ACTIONS(2052), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2052), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2052), - [aux_sym_password_authentication_token1] = ACTIONS(2052), - [aux_sym_permit_local_command_token1] = ACTIONS(2052), - [aux_sym_permit_remote_open_token1] = ACTIONS(2052), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2052), - [aux_sym_port_token1] = ACTIONS(2052), - [aux_sym_preferred_authentications_token1] = ACTIONS(2052), - [aux_sym_protocol_token1] = ACTIONS(2052), - [aux_sym_proxy_command_token1] = ACTIONS(2052), - [aux_sym_proxy_jump_token1] = ACTIONS(2052), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2052), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2052), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2052), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2052), - [aux_sym_rekey_limit_token1] = ACTIONS(2052), - [aux_sym_remote_command_token1] = ACTIONS(2052), - [aux_sym_remote_forward_token1] = ACTIONS(2052), - [aux_sym_request_tty_token1] = ACTIONS(2052), - [aux_sym_required_rsa_size_token1] = ACTIONS(2052), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2052), - [aux_sym_security_key_provider_token1] = ACTIONS(2052), - [aux_sym_send_env_token1] = ACTIONS(2052), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2052), - [aux_sym_server_alive_interval_token1] = ACTIONS(2052), - [aux_sym_session_type_token1] = ACTIONS(2052), - [aux_sym_set_env_token1] = ACTIONS(2052), - [aux_sym_stdin_null_token1] = ACTIONS(2052), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2052), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2052), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2052), - [aux_sym_syslog_facility_token1] = ACTIONS(2052), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2052), - [aux_sym_keep_alive_token1] = ACTIONS(2052), - [aux_sym_tag_token1] = ACTIONS(2052), - [aux_sym_tunnel_token1] = ACTIONS(2054), - [aux_sym_tunnel_device_token1] = ACTIONS(2052), - [aux_sym_update_host_keys_token1] = ACTIONS(2052), - [aux_sym_use_keychain_token1] = ACTIONS(2052), - [aux_sym_use_roaming_token1] = ACTIONS(2052), - [aux_sym_user_token1] = ACTIONS(2054), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2052), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2052), - [aux_sym_visual_host_key_token1] = ACTIONS(2052), - [aux_sym_xauth_location_token1] = ACTIONS(2052), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2061), + [aux_sym_match_token1] = ACTIONS(2061), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2061), + [aux_sym_address_family_token1] = ACTIONS(2061), + [aux_sym_batch_mode_token1] = ACTIONS(2061), + [aux_sym_bind_address_token1] = ACTIONS(2061), + [aux_sym_bind_interface_token1] = ACTIONS(2061), + [aux_sym_canonical_domains_token1] = ACTIONS(2061), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2061), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2061), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2061), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2061), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2061), + [aux_sym_certificate_file_token1] = ACTIONS(2061), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2061), + [aux_sym_channel_timeout_token1] = ACTIONS(2061), + [aux_sym_check_host_ip_token1] = ACTIONS(2061), + [aux_sym_ciphers_token1] = ACTIONS(2061), + [aux_sym_cipher_token1] = ACTIONS(2063), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2061), + [aux_sym_compression_token1] = ACTIONS(2061), + [aux_sym_connection_attempts_token1] = ACTIONS(2061), + [aux_sym_connect_timeout_token1] = ACTIONS(2061), + [aux_sym_control_master_token1] = ACTIONS(2061), + [aux_sym_control_path_token1] = ACTIONS(2061), + [aux_sym_control_persist_token1] = ACTIONS(2061), + [aux_sym_dynamic_forward_token1] = ACTIONS(2061), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2061), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2061), + [aux_sym_escape_char_token1] = ACTIONS(2061), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2061), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2061), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2061), + [aux_sym_forward_agent_token1] = ACTIONS(2061), + [aux_sym_forward_x11_token1] = ACTIONS(2063), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2061), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2061), + [aux_sym_gateway_ports_token1] = ACTIONS(2061), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2061), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2061), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2061), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2061), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2061), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2061), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2061), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2061), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2061), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2061), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2061), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2061), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2061), + [aux_sym_host_key_alias_token1] = ACTIONS(2061), + [aux_sym_hostname_token1] = ACTIONS(2061), + [aux_sym_identities_only_token1] = ACTIONS(2061), + [aux_sym_identity_agent_token1] = ACTIONS(2061), + [aux_sym_identity_file_token1] = ACTIONS(2061), + [aux_sym_ignore_unknown_token1] = ACTIONS(2061), + [aux_sym_include_token1] = ACTIONS(2061), + [aux_sym_ip_qos_token1] = ACTIONS(2061), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2061), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2061), + [aux_sym_kex_algorithms_token1] = ACTIONS(2061), + [aux_sym_known_hosts_command_token1] = ACTIONS(2061), + [aux_sym_local_command_token1] = ACTIONS(2061), + [aux_sym_local_forward_token1] = ACTIONS(2061), + [aux_sym_log_level_token1] = ACTIONS(2061), + [aux_sym_log_verbose_token1] = ACTIONS(2061), + [aux_sym_macs_token1] = ACTIONS(2061), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2061), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2061), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2061), + [aux_sym_password_authentication_token1] = ACTIONS(2061), + [aux_sym_permit_local_command_token1] = ACTIONS(2061), + [aux_sym_permit_remote_open_token1] = ACTIONS(2061), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2061), + [aux_sym_port_token1] = ACTIONS(2061), + [aux_sym_preferred_authentications_token1] = ACTIONS(2061), + [aux_sym_protocol_token1] = ACTIONS(2061), + [aux_sym_proxy_command_token1] = ACTIONS(2061), + [aux_sym_proxy_jump_token1] = ACTIONS(2061), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2061), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2061), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2061), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2061), + [aux_sym_rekey_limit_token1] = ACTIONS(2061), + [aux_sym_remote_command_token1] = ACTIONS(2061), + [aux_sym_remote_forward_token1] = ACTIONS(2061), + [aux_sym_request_tty_token1] = ACTIONS(2061), + [aux_sym_required_rsa_size_token1] = ACTIONS(2061), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2061), + [aux_sym_security_key_provider_token1] = ACTIONS(2061), + [aux_sym_send_env_token1] = ACTIONS(2061), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2061), + [aux_sym_server_alive_interval_token1] = ACTIONS(2061), + [aux_sym_session_type_token1] = ACTIONS(2061), + [aux_sym_set_env_token1] = ACTIONS(2061), + [aux_sym_stdin_null_token1] = ACTIONS(2061), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2061), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2061), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2061), + [aux_sym_syslog_facility_token1] = ACTIONS(2061), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2061), + [aux_sym_keep_alive_token1] = ACTIONS(2061), + [aux_sym_tag_token1] = ACTIONS(2061), + [aux_sym_tunnel_token1] = ACTIONS(2063), + [aux_sym_tunnel_device_token1] = ACTIONS(2061), + [aux_sym_update_host_keys_token1] = ACTIONS(2061), + [aux_sym_use_keychain_token1] = ACTIONS(2061), + [aux_sym_use_roaming_token1] = ACTIONS(2061), + [aux_sym_user_token1] = ACTIONS(2063), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2061), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2061), + [aux_sym_visual_host_key_token1] = ACTIONS(2061), + [aux_sym_xauth_location_token1] = ACTIONS(2061), }, [254] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2058), - [anon_sym_DQUOTE] = ACTIONS(2060), - [aux_sym_match_token1] = ACTIONS(2056), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2056), - [aux_sym_address_family_token1] = ACTIONS(2056), - [aux_sym_batch_mode_token1] = ACTIONS(2056), - [aux_sym_bind_address_token1] = ACTIONS(2056), - [aux_sym_bind_interface_token1] = ACTIONS(2056), - [aux_sym_canonical_domains_token1] = ACTIONS(2056), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2056), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2056), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2056), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2056), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2056), - [aux_sym_certificate_file_token1] = ACTIONS(2056), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2056), - [aux_sym_channel_timeout_token1] = ACTIONS(2056), - [aux_sym_check_host_ip_token1] = ACTIONS(2056), - [aux_sym_ciphers_token1] = ACTIONS(2056), - [aux_sym_cipher_token1] = ACTIONS(2058), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2056), - [aux_sym_compression_token1] = ACTIONS(2056), - [aux_sym_connection_attempts_token1] = ACTIONS(2056), - [aux_sym_connect_timeout_token1] = ACTIONS(2056), - [aux_sym_control_master_token1] = ACTIONS(2056), - [aux_sym_control_path_token1] = ACTIONS(2056), - [aux_sym_control_persist_token1] = ACTIONS(2056), - [aux_sym_dynamic_forward_token1] = ACTIONS(2056), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2056), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2056), - [aux_sym_escape_char_token1] = ACTIONS(2056), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2056), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2056), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2056), - [aux_sym_forward_agent_token1] = ACTIONS(2056), - [aux_sym_forward_x11_token1] = ACTIONS(2058), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2056), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2056), - [aux_sym_gateway_ports_token1] = ACTIONS(2056), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2056), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2056), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2056), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2056), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2056), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2056), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2056), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2056), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2056), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2056), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2056), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2056), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2056), - [aux_sym_host_key_alias_token1] = ACTIONS(2056), - [aux_sym_hostname_token1] = ACTIONS(2056), - [aux_sym_identities_only_token1] = ACTIONS(2056), - [aux_sym_identity_agent_token1] = ACTIONS(2056), - [aux_sym_identity_file_token1] = ACTIONS(2056), - [aux_sym_ignore_unknown_token1] = ACTIONS(2056), - [aux_sym_include_token1] = ACTIONS(2056), - [aux_sym_ip_qos_token1] = ACTIONS(2056), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2056), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2056), - [aux_sym_kex_algorithms_token1] = ACTIONS(2056), - [aux_sym_known_hosts_command_token1] = ACTIONS(2056), - [aux_sym_local_command_token1] = ACTIONS(2056), - [aux_sym_local_forward_token1] = ACTIONS(2056), - [aux_sym_log_level_token1] = ACTIONS(2056), - [aux_sym_log_verbose_token1] = ACTIONS(2056), - [aux_sym_macs_token1] = ACTIONS(2056), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2056), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2056), - [aux_sym_password_authentication_token1] = ACTIONS(2056), - [aux_sym_permit_local_command_token1] = ACTIONS(2056), - [aux_sym_permit_remote_open_token1] = ACTIONS(2056), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2056), - [aux_sym_port_token1] = ACTIONS(2056), - [aux_sym_preferred_authentications_token1] = ACTIONS(2056), - [aux_sym_protocol_token1] = ACTIONS(2056), - [aux_sym_proxy_command_token1] = ACTIONS(2056), - [aux_sym_proxy_jump_token1] = ACTIONS(2056), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2056), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2056), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2056), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2056), - [aux_sym_rekey_limit_token1] = ACTIONS(2056), - [aux_sym_remote_command_token1] = ACTIONS(2056), - [aux_sym_remote_forward_token1] = ACTIONS(2056), - [aux_sym_request_tty_token1] = ACTIONS(2056), - [aux_sym_required_rsa_size_token1] = ACTIONS(2056), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2056), - [aux_sym_security_key_provider_token1] = ACTIONS(2056), - [aux_sym_send_env_token1] = ACTIONS(2056), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2056), - [aux_sym_server_alive_interval_token1] = ACTIONS(2056), - [aux_sym_session_type_token1] = ACTIONS(2056), - [aux_sym_set_env_token1] = ACTIONS(2056), - [aux_sym_stdin_null_token1] = ACTIONS(2056), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2056), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2056), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2056), - [aux_sym_syslog_facility_token1] = ACTIONS(2056), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2056), - [aux_sym_keep_alive_token1] = ACTIONS(2056), - [aux_sym_tag_token1] = ACTIONS(2056), - [aux_sym_tunnel_token1] = ACTIONS(2058), - [aux_sym_tunnel_device_token1] = ACTIONS(2056), - [aux_sym_update_host_keys_token1] = ACTIONS(2056), - [aux_sym_use_keychain_token1] = ACTIONS(2056), - [aux_sym_use_roaming_token1] = ACTIONS(2056), - [aux_sym_user_token1] = ACTIONS(2058), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2056), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2056), - [aux_sym_visual_host_key_token1] = ACTIONS(2056), - [aux_sym_xauth_location_token1] = ACTIONS(2056), + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2069), + [aux_sym_match_token1] = ACTIONS(2065), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2065), + [aux_sym_address_family_token1] = ACTIONS(2065), + [aux_sym_batch_mode_token1] = ACTIONS(2065), + [aux_sym_bind_address_token1] = ACTIONS(2065), + [aux_sym_bind_interface_token1] = ACTIONS(2065), + [aux_sym_canonical_domains_token1] = ACTIONS(2065), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2065), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2065), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2065), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2065), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2065), + [aux_sym_certificate_file_token1] = ACTIONS(2065), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2065), + [aux_sym_channel_timeout_token1] = ACTIONS(2065), + [aux_sym_check_host_ip_token1] = ACTIONS(2065), + [aux_sym_ciphers_token1] = ACTIONS(2065), + [aux_sym_cipher_token1] = ACTIONS(2067), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2065), + [aux_sym_compression_token1] = ACTIONS(2065), + [aux_sym_connection_attempts_token1] = ACTIONS(2065), + [aux_sym_connect_timeout_token1] = ACTIONS(2065), + [aux_sym_control_master_token1] = ACTIONS(2065), + [aux_sym_control_path_token1] = ACTIONS(2065), + [aux_sym_control_persist_token1] = ACTIONS(2065), + [aux_sym_dynamic_forward_token1] = ACTIONS(2065), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2065), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2065), + [aux_sym_escape_char_token1] = ACTIONS(2065), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2065), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2065), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2065), + [aux_sym_forward_agent_token1] = ACTIONS(2065), + [aux_sym_forward_x11_token1] = ACTIONS(2067), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2065), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2065), + [aux_sym_gateway_ports_token1] = ACTIONS(2065), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2065), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2065), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2065), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2065), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2065), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2065), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2065), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2065), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2065), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2065), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2065), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2065), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2065), + [aux_sym_host_key_alias_token1] = ACTIONS(2065), + [aux_sym_hostname_token1] = ACTIONS(2065), + [aux_sym_identities_only_token1] = ACTIONS(2065), + [aux_sym_identity_agent_token1] = ACTIONS(2065), + [aux_sym_identity_file_token1] = ACTIONS(2065), + [aux_sym_ignore_unknown_token1] = ACTIONS(2065), + [aux_sym_include_token1] = ACTIONS(2065), + [aux_sym_ip_qos_token1] = ACTIONS(2065), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2065), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2065), + [aux_sym_kex_algorithms_token1] = ACTIONS(2065), + [aux_sym_known_hosts_command_token1] = ACTIONS(2065), + [aux_sym_local_command_token1] = ACTIONS(2065), + [aux_sym_local_forward_token1] = ACTIONS(2065), + [aux_sym_log_level_token1] = ACTIONS(2065), + [aux_sym_log_verbose_token1] = ACTIONS(2065), + [aux_sym_macs_token1] = ACTIONS(2065), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2065), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2065), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2065), + [aux_sym_password_authentication_token1] = ACTIONS(2065), + [aux_sym_permit_local_command_token1] = ACTIONS(2065), + [aux_sym_permit_remote_open_token1] = ACTIONS(2065), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2065), + [aux_sym_port_token1] = ACTIONS(2065), + [aux_sym_preferred_authentications_token1] = ACTIONS(2065), + [aux_sym_protocol_token1] = ACTIONS(2065), + [aux_sym_proxy_command_token1] = ACTIONS(2065), + [aux_sym_proxy_jump_token1] = ACTIONS(2065), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2065), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2065), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2065), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2065), + [aux_sym_rekey_limit_token1] = ACTIONS(2065), + [aux_sym_remote_command_token1] = ACTIONS(2065), + [aux_sym_remote_forward_token1] = ACTIONS(2065), + [aux_sym_request_tty_token1] = ACTIONS(2065), + [aux_sym_required_rsa_size_token1] = ACTIONS(2065), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2065), + [aux_sym_security_key_provider_token1] = ACTIONS(2065), + [aux_sym_send_env_token1] = ACTIONS(2065), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2065), + [aux_sym_server_alive_interval_token1] = ACTIONS(2065), + [aux_sym_session_type_token1] = ACTIONS(2065), + [aux_sym_set_env_token1] = ACTIONS(2065), + [aux_sym_stdin_null_token1] = ACTIONS(2065), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2065), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2065), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2065), + [aux_sym_syslog_facility_token1] = ACTIONS(2065), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2065), + [aux_sym_keep_alive_token1] = ACTIONS(2065), + [aux_sym_tag_token1] = ACTIONS(2065), + [aux_sym_tunnel_token1] = ACTIONS(2067), + [aux_sym_tunnel_device_token1] = ACTIONS(2065), + [aux_sym_update_host_keys_token1] = ACTIONS(2065), + [aux_sym_use_keychain_token1] = ACTIONS(2065), + [aux_sym_use_roaming_token1] = ACTIONS(2065), + [aux_sym_user_token1] = ACTIONS(2067), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2065), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2065), + [aux_sym_visual_host_key_token1] = ACTIONS(2065), + [aux_sym_xauth_location_token1] = ACTIONS(2065), }, [255] = { - [ts_builtin_sym_end] = ACTIONS(2062), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2062), - [aux_sym_match_token1] = ACTIONS(2062), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2062), - [aux_sym_address_family_token1] = ACTIONS(2062), - [aux_sym_batch_mode_token1] = ACTIONS(2062), - [aux_sym_bind_address_token1] = ACTIONS(2062), - [aux_sym_bind_interface_token1] = ACTIONS(2062), - [aux_sym_canonical_domains_token1] = ACTIONS(2062), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2062), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2062), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2062), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2062), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2062), - [aux_sym_certificate_file_token1] = ACTIONS(2062), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2062), - [aux_sym_channel_timeout_token1] = ACTIONS(2062), - [aux_sym_check_host_ip_token1] = ACTIONS(2062), - [aux_sym_ciphers_token1] = ACTIONS(2062), - [aux_sym_cipher_token1] = ACTIONS(2064), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2062), - [aux_sym_compression_token1] = ACTIONS(2062), - [aux_sym_connection_attempts_token1] = ACTIONS(2062), - [aux_sym_connect_timeout_token1] = ACTIONS(2062), - [aux_sym_control_master_token1] = ACTIONS(2062), - [aux_sym_control_path_token1] = ACTIONS(2062), - [aux_sym_control_persist_token1] = ACTIONS(2062), - [aux_sym_dynamic_forward_token1] = ACTIONS(2062), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2062), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2062), - [aux_sym_escape_char_token1] = ACTIONS(2062), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2062), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2062), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2062), - [aux_sym_forward_agent_token1] = ACTIONS(2062), - [aux_sym_forward_x11_token1] = ACTIONS(2064), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2062), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2062), - [aux_sym_gateway_ports_token1] = ACTIONS(2062), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2062), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2062), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2062), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2062), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2062), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2062), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2062), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2062), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2062), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2062), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2062), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2062), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2062), - [aux_sym_host_key_alias_token1] = ACTIONS(2062), - [aux_sym_hostname_token1] = ACTIONS(2062), - [aux_sym_identities_only_token1] = ACTIONS(2062), - [aux_sym_identity_agent_token1] = ACTIONS(2062), - [aux_sym_identity_file_token1] = ACTIONS(2062), - [aux_sym_ignore_unknown_token1] = ACTIONS(2062), - [aux_sym_include_token1] = ACTIONS(2062), - [aux_sym_ip_qos_token1] = ACTIONS(2062), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2062), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2062), - [aux_sym_kex_algorithms_token1] = ACTIONS(2062), - [aux_sym_known_hosts_command_token1] = ACTIONS(2062), - [aux_sym_local_command_token1] = ACTIONS(2062), - [aux_sym_local_forward_token1] = ACTIONS(2062), - [aux_sym_log_level_token1] = ACTIONS(2062), - [aux_sym_log_verbose_token1] = ACTIONS(2062), - [aux_sym_macs_token1] = ACTIONS(2062), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2062), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2062), - [aux_sym_password_authentication_token1] = ACTIONS(2062), - [aux_sym_permit_local_command_token1] = ACTIONS(2062), - [aux_sym_permit_remote_open_token1] = ACTIONS(2062), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2062), - [aux_sym_port_token1] = ACTIONS(2062), - [aux_sym_preferred_authentications_token1] = ACTIONS(2062), - [aux_sym_protocol_token1] = ACTIONS(2062), - [aux_sym_proxy_command_token1] = ACTIONS(2062), - [aux_sym_proxy_jump_token1] = ACTIONS(2062), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2062), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2062), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2062), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2062), - [aux_sym_rekey_limit_token1] = ACTIONS(2062), - [aux_sym_remote_command_token1] = ACTIONS(2062), - [aux_sym_remote_forward_token1] = ACTIONS(2062), - [aux_sym_request_tty_token1] = ACTIONS(2062), - [aux_sym_required_rsa_size_token1] = ACTIONS(2062), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2062), - [aux_sym_security_key_provider_token1] = ACTIONS(2062), - [aux_sym_send_env_token1] = ACTIONS(2062), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2062), - [aux_sym_server_alive_interval_token1] = ACTIONS(2062), - [aux_sym_session_type_token1] = ACTIONS(2062), - [aux_sym_set_env_token1] = ACTIONS(2062), - [aux_sym_stdin_null_token1] = ACTIONS(2062), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2062), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2062), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2062), - [aux_sym_syslog_facility_token1] = ACTIONS(2062), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2062), - [aux_sym_keep_alive_token1] = ACTIONS(2062), - [aux_sym_tag_token1] = ACTIONS(2062), - [aux_sym_tunnel_token1] = ACTIONS(2064), - [aux_sym_tunnel_device_token1] = ACTIONS(2062), - [aux_sym_update_host_keys_token1] = ACTIONS(2062), - [aux_sym_use_keychain_token1] = ACTIONS(2062), - [aux_sym_use_roaming_token1] = ACTIONS(2062), - [aux_sym_user_token1] = ACTIONS(2064), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2062), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2062), - [aux_sym_visual_host_key_token1] = ACTIONS(2062), - [aux_sym_xauth_location_token1] = ACTIONS(2062), + [ts_builtin_sym_end] = ACTIONS(2071), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(2071), + [aux_sym_match_token1] = ACTIONS(2071), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2071), + [aux_sym_address_family_token1] = ACTIONS(2071), + [aux_sym_batch_mode_token1] = ACTIONS(2071), + [aux_sym_bind_address_token1] = ACTIONS(2071), + [aux_sym_bind_interface_token1] = ACTIONS(2071), + [aux_sym_canonical_domains_token1] = ACTIONS(2071), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2071), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2071), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2071), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2071), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2071), + [aux_sym_certificate_file_token1] = ACTIONS(2071), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2071), + [aux_sym_channel_timeout_token1] = ACTIONS(2071), + [aux_sym_check_host_ip_token1] = ACTIONS(2071), + [aux_sym_ciphers_token1] = ACTIONS(2071), + [aux_sym_cipher_token1] = ACTIONS(2073), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2071), + [aux_sym_compression_token1] = ACTIONS(2071), + [aux_sym_connection_attempts_token1] = ACTIONS(2071), + [aux_sym_connect_timeout_token1] = ACTIONS(2071), + [aux_sym_control_master_token1] = ACTIONS(2071), + [aux_sym_control_path_token1] = ACTIONS(2071), + [aux_sym_control_persist_token1] = ACTIONS(2071), + [aux_sym_dynamic_forward_token1] = ACTIONS(2071), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2071), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2071), + [aux_sym_escape_char_token1] = ACTIONS(2071), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2071), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2071), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2071), + [aux_sym_forward_agent_token1] = ACTIONS(2071), + [aux_sym_forward_x11_token1] = ACTIONS(2073), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2071), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2071), + [aux_sym_gateway_ports_token1] = ACTIONS(2071), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2071), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2071), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2071), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2071), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2071), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2071), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2071), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2071), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2071), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2071), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2071), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2071), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2071), + [aux_sym_host_key_alias_token1] = ACTIONS(2071), + [aux_sym_hostname_token1] = ACTIONS(2071), + [aux_sym_identities_only_token1] = ACTIONS(2071), + [aux_sym_identity_agent_token1] = ACTIONS(2071), + [aux_sym_identity_file_token1] = ACTIONS(2071), + [aux_sym_ignore_unknown_token1] = ACTIONS(2071), + [aux_sym_include_token1] = ACTIONS(2071), + [aux_sym_ip_qos_token1] = ACTIONS(2071), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2071), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2071), + [aux_sym_kex_algorithms_token1] = ACTIONS(2071), + [aux_sym_known_hosts_command_token1] = ACTIONS(2071), + [aux_sym_local_command_token1] = ACTIONS(2071), + [aux_sym_local_forward_token1] = ACTIONS(2071), + [aux_sym_log_level_token1] = ACTIONS(2071), + [aux_sym_log_verbose_token1] = ACTIONS(2071), + [aux_sym_macs_token1] = ACTIONS(2071), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2071), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2071), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2071), + [aux_sym_password_authentication_token1] = ACTIONS(2071), + [aux_sym_permit_local_command_token1] = ACTIONS(2071), + [aux_sym_permit_remote_open_token1] = ACTIONS(2071), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2071), + [aux_sym_port_token1] = ACTIONS(2071), + [aux_sym_preferred_authentications_token1] = ACTIONS(2071), + [aux_sym_protocol_token1] = ACTIONS(2071), + [aux_sym_proxy_command_token1] = ACTIONS(2071), + [aux_sym_proxy_jump_token1] = ACTIONS(2071), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2071), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2071), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2071), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2071), + [aux_sym_rekey_limit_token1] = ACTIONS(2071), + [aux_sym_remote_command_token1] = ACTIONS(2071), + [aux_sym_remote_forward_token1] = ACTIONS(2071), + [aux_sym_request_tty_token1] = ACTIONS(2071), + [aux_sym_required_rsa_size_token1] = ACTIONS(2071), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2071), + [aux_sym_security_key_provider_token1] = ACTIONS(2071), + [aux_sym_send_env_token1] = ACTIONS(2071), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2071), + [aux_sym_server_alive_interval_token1] = ACTIONS(2071), + [aux_sym_session_type_token1] = ACTIONS(2071), + [aux_sym_set_env_token1] = ACTIONS(2071), + [aux_sym_stdin_null_token1] = ACTIONS(2071), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2071), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2071), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2071), + [aux_sym_syslog_facility_token1] = ACTIONS(2071), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2071), + [aux_sym_keep_alive_token1] = ACTIONS(2071), + [aux_sym_tag_token1] = ACTIONS(2071), + [aux_sym_tunnel_token1] = ACTIONS(2073), + [aux_sym_tunnel_device_token1] = ACTIONS(2071), + [aux_sym_update_host_keys_token1] = ACTIONS(2071), + [aux_sym_use_keychain_token1] = ACTIONS(2071), + [aux_sym_use_roaming_token1] = ACTIONS(2071), + [aux_sym_user_token1] = ACTIONS(2073), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2071), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2071), + [aux_sym_visual_host_key_token1] = ACTIONS(2071), + [aux_sym_xauth_location_token1] = ACTIONS(2071), }, [256] = { - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2068), - [anon_sym_DQUOTE] = ACTIONS(2070), - [aux_sym_match_token1] = ACTIONS(2066), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2066), - [aux_sym_address_family_token1] = ACTIONS(2066), - [aux_sym_batch_mode_token1] = ACTIONS(2066), - [aux_sym_bind_address_token1] = ACTIONS(2066), - [aux_sym_bind_interface_token1] = ACTIONS(2066), - [aux_sym_canonical_domains_token1] = ACTIONS(2066), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2066), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2066), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2066), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2066), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2066), - [aux_sym_certificate_file_token1] = ACTIONS(2066), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2066), - [aux_sym_channel_timeout_token1] = ACTIONS(2066), - [aux_sym_check_host_ip_token1] = ACTIONS(2066), - [aux_sym_ciphers_token1] = ACTIONS(2066), - [aux_sym_cipher_token1] = ACTIONS(2068), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2066), - [aux_sym_compression_token1] = ACTIONS(2066), - [aux_sym_connection_attempts_token1] = ACTIONS(2066), - [aux_sym_connect_timeout_token1] = ACTIONS(2066), - [aux_sym_control_master_token1] = ACTIONS(2066), - [aux_sym_control_path_token1] = ACTIONS(2066), - [aux_sym_control_persist_token1] = ACTIONS(2066), - [aux_sym_dynamic_forward_token1] = ACTIONS(2066), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2066), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2066), - [aux_sym_escape_char_token1] = ACTIONS(2066), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2066), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2066), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2066), - [aux_sym_forward_agent_token1] = ACTIONS(2066), - [aux_sym_forward_x11_token1] = ACTIONS(2068), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2066), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2066), - [aux_sym_gateway_ports_token1] = ACTIONS(2066), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2066), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2066), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2066), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2066), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2066), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2066), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2066), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2066), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2066), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2066), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2066), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2066), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2066), - [aux_sym_host_key_alias_token1] = ACTIONS(2066), - [aux_sym_hostname_token1] = ACTIONS(2066), - [aux_sym_identities_only_token1] = ACTIONS(2066), - [aux_sym_identity_agent_token1] = ACTIONS(2066), - [aux_sym_identity_file_token1] = ACTIONS(2066), - [aux_sym_ignore_unknown_token1] = ACTIONS(2066), - [aux_sym_include_token1] = ACTIONS(2066), - [aux_sym_ip_qos_token1] = ACTIONS(2066), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2066), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2066), - [aux_sym_kex_algorithms_token1] = ACTIONS(2066), - [aux_sym_known_hosts_command_token1] = ACTIONS(2066), - [aux_sym_local_command_token1] = ACTIONS(2066), - [aux_sym_local_forward_token1] = ACTIONS(2066), - [aux_sym_log_level_token1] = ACTIONS(2066), - [aux_sym_log_verbose_token1] = ACTIONS(2066), - [aux_sym_macs_token1] = ACTIONS(2066), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2066), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2066), - [aux_sym_password_authentication_token1] = ACTIONS(2066), - [aux_sym_permit_local_command_token1] = ACTIONS(2066), - [aux_sym_permit_remote_open_token1] = ACTIONS(2066), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2066), - [aux_sym_port_token1] = ACTIONS(2066), - [aux_sym_preferred_authentications_token1] = ACTIONS(2066), - [aux_sym_protocol_token1] = ACTIONS(2066), - [aux_sym_proxy_command_token1] = ACTIONS(2066), - [aux_sym_proxy_jump_token1] = ACTIONS(2066), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2066), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2066), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2066), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2066), - [aux_sym_rekey_limit_token1] = ACTIONS(2066), - [aux_sym_remote_command_token1] = ACTIONS(2066), - [aux_sym_remote_forward_token1] = ACTIONS(2066), - [aux_sym_request_tty_token1] = ACTIONS(2066), - [aux_sym_required_rsa_size_token1] = ACTIONS(2066), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2066), - [aux_sym_security_key_provider_token1] = ACTIONS(2066), - [aux_sym_send_env_token1] = ACTIONS(2066), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2066), - [aux_sym_server_alive_interval_token1] = ACTIONS(2066), - [aux_sym_session_type_token1] = ACTIONS(2066), - [aux_sym_set_env_token1] = ACTIONS(2066), - [aux_sym_stdin_null_token1] = ACTIONS(2066), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2066), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2066), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2066), - [aux_sym_syslog_facility_token1] = ACTIONS(2066), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2066), - [aux_sym_keep_alive_token1] = ACTIONS(2066), - [aux_sym_tag_token1] = ACTIONS(2066), - [aux_sym_tunnel_token1] = ACTIONS(2068), - [aux_sym_tunnel_device_token1] = ACTIONS(2066), - [aux_sym_update_host_keys_token1] = ACTIONS(2066), - [aux_sym_use_keychain_token1] = ACTIONS(2066), - [aux_sym_use_roaming_token1] = ACTIONS(2066), - [aux_sym_user_token1] = ACTIONS(2068), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2066), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2066), - [aux_sym_visual_host_key_token1] = ACTIONS(2066), - [aux_sym_xauth_location_token1] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(2075), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(2079), + [aux_sym_match_token1] = ACTIONS(2075), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2075), + [aux_sym_address_family_token1] = ACTIONS(2075), + [aux_sym_batch_mode_token1] = ACTIONS(2075), + [aux_sym_bind_address_token1] = ACTIONS(2075), + [aux_sym_bind_interface_token1] = ACTIONS(2075), + [aux_sym_canonical_domains_token1] = ACTIONS(2075), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2075), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2075), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2075), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2075), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2075), + [aux_sym_certificate_file_token1] = ACTIONS(2075), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2075), + [aux_sym_channel_timeout_token1] = ACTIONS(2075), + [aux_sym_check_host_ip_token1] = ACTIONS(2075), + [aux_sym_ciphers_token1] = ACTIONS(2075), + [aux_sym_cipher_token1] = ACTIONS(2077), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2075), + [aux_sym_compression_token1] = ACTIONS(2075), + [aux_sym_connection_attempts_token1] = ACTIONS(2075), + [aux_sym_connect_timeout_token1] = ACTIONS(2075), + [aux_sym_control_master_token1] = ACTIONS(2075), + [aux_sym_control_path_token1] = ACTIONS(2075), + [aux_sym_control_persist_token1] = ACTIONS(2075), + [aux_sym_dynamic_forward_token1] = ACTIONS(2075), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2075), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2075), + [aux_sym_escape_char_token1] = ACTIONS(2075), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2075), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2075), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2075), + [aux_sym_forward_agent_token1] = ACTIONS(2075), + [aux_sym_forward_x11_token1] = ACTIONS(2077), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2075), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2075), + [aux_sym_gateway_ports_token1] = ACTIONS(2075), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2075), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2075), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2075), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2075), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2075), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2075), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2075), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2075), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2075), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2075), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2075), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2075), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2075), + [aux_sym_host_key_alias_token1] = ACTIONS(2075), + [aux_sym_hostname_token1] = ACTIONS(2075), + [aux_sym_identities_only_token1] = ACTIONS(2075), + [aux_sym_identity_agent_token1] = ACTIONS(2075), + [aux_sym_identity_file_token1] = ACTIONS(2075), + [aux_sym_ignore_unknown_token1] = ACTIONS(2075), + [aux_sym_include_token1] = ACTIONS(2075), + [aux_sym_ip_qos_token1] = ACTIONS(2075), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2075), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2075), + [aux_sym_kex_algorithms_token1] = ACTIONS(2075), + [aux_sym_known_hosts_command_token1] = ACTIONS(2075), + [aux_sym_local_command_token1] = ACTIONS(2075), + [aux_sym_local_forward_token1] = ACTIONS(2075), + [aux_sym_log_level_token1] = ACTIONS(2075), + [aux_sym_log_verbose_token1] = ACTIONS(2075), + [aux_sym_macs_token1] = ACTIONS(2075), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2075), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2075), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2075), + [aux_sym_password_authentication_token1] = ACTIONS(2075), + [aux_sym_permit_local_command_token1] = ACTIONS(2075), + [aux_sym_permit_remote_open_token1] = ACTIONS(2075), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2075), + [aux_sym_port_token1] = ACTIONS(2075), + [aux_sym_preferred_authentications_token1] = ACTIONS(2075), + [aux_sym_protocol_token1] = ACTIONS(2075), + [aux_sym_proxy_command_token1] = ACTIONS(2075), + [aux_sym_proxy_jump_token1] = ACTIONS(2075), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2075), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2075), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2075), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2075), + [aux_sym_rekey_limit_token1] = ACTIONS(2075), + [aux_sym_remote_command_token1] = ACTIONS(2075), + [aux_sym_remote_forward_token1] = ACTIONS(2075), + [aux_sym_request_tty_token1] = ACTIONS(2075), + [aux_sym_required_rsa_size_token1] = ACTIONS(2075), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2075), + [aux_sym_security_key_provider_token1] = ACTIONS(2075), + [aux_sym_send_env_token1] = ACTIONS(2075), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2075), + [aux_sym_server_alive_interval_token1] = ACTIONS(2075), + [aux_sym_session_type_token1] = ACTIONS(2075), + [aux_sym_set_env_token1] = ACTIONS(2075), + [aux_sym_stdin_null_token1] = ACTIONS(2075), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2075), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2075), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2075), + [aux_sym_syslog_facility_token1] = ACTIONS(2075), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2075), + [aux_sym_keep_alive_token1] = ACTIONS(2075), + [aux_sym_tag_token1] = ACTIONS(2075), + [aux_sym_tunnel_token1] = ACTIONS(2077), + [aux_sym_tunnel_device_token1] = ACTIONS(2075), + [aux_sym_update_host_keys_token1] = ACTIONS(2075), + [aux_sym_use_keychain_token1] = ACTIONS(2075), + [aux_sym_use_roaming_token1] = ACTIONS(2075), + [aux_sym_user_token1] = ACTIONS(2077), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2075), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2075), + [aux_sym_visual_host_key_token1] = ACTIONS(2075), + [aux_sym_xauth_location_token1] = ACTIONS(2075), }, [257] = { - [ts_builtin_sym_end] = ACTIONS(2072), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2074), - [anon_sym_DQUOTE] = ACTIONS(2072), - [aux_sym_match_token1] = ACTIONS(2072), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2072), - [aux_sym_address_family_token1] = ACTIONS(2072), - [aux_sym_batch_mode_token1] = ACTIONS(2072), - [aux_sym_bind_address_token1] = ACTIONS(2072), - [aux_sym_bind_interface_token1] = ACTIONS(2072), - [aux_sym_canonical_domains_token1] = ACTIONS(2072), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2072), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2072), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2072), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2072), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2072), - [aux_sym_certificate_file_token1] = ACTIONS(2072), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2072), - [aux_sym_channel_timeout_token1] = ACTIONS(2072), - [aux_sym_check_host_ip_token1] = ACTIONS(2072), - [aux_sym_ciphers_token1] = ACTIONS(2072), - [aux_sym_cipher_token1] = ACTIONS(2074), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2072), - [aux_sym_compression_token1] = ACTIONS(2072), - [aux_sym_connection_attempts_token1] = ACTIONS(2072), - [aux_sym_connect_timeout_token1] = ACTIONS(2072), - [aux_sym_control_master_token1] = ACTIONS(2072), - [aux_sym_control_path_token1] = ACTIONS(2072), - [aux_sym_control_persist_token1] = ACTIONS(2072), - [aux_sym_dynamic_forward_token1] = ACTIONS(2072), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2072), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2072), - [aux_sym_escape_char_token1] = ACTIONS(2072), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2072), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2072), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2072), - [aux_sym_forward_agent_token1] = ACTIONS(2072), - [aux_sym_forward_x11_token1] = ACTIONS(2074), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2072), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2072), - [aux_sym_gateway_ports_token1] = ACTIONS(2072), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2072), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2072), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2072), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2072), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2072), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2072), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2072), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2072), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2072), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2072), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2072), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2072), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2072), - [aux_sym_host_key_alias_token1] = ACTIONS(2072), - [aux_sym_hostname_token1] = ACTIONS(2072), - [aux_sym_identities_only_token1] = ACTIONS(2072), - [aux_sym_identity_agent_token1] = ACTIONS(2072), - [aux_sym_identity_file_token1] = ACTIONS(2072), - [aux_sym_ignore_unknown_token1] = ACTIONS(2072), - [aux_sym_include_token1] = ACTIONS(2072), - [aux_sym_ip_qos_token1] = ACTIONS(2072), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2072), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2072), - [aux_sym_kex_algorithms_token1] = ACTIONS(2072), - [aux_sym_known_hosts_command_token1] = ACTIONS(2072), - [aux_sym_local_command_token1] = ACTIONS(2072), - [aux_sym_local_forward_token1] = ACTIONS(2072), - [aux_sym_log_level_token1] = ACTIONS(2072), - [aux_sym_log_verbose_token1] = ACTIONS(2072), - [aux_sym_macs_token1] = ACTIONS(2072), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2072), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2072), - [aux_sym_password_authentication_token1] = ACTIONS(2072), - [aux_sym_permit_local_command_token1] = ACTIONS(2072), - [aux_sym_permit_remote_open_token1] = ACTIONS(2072), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2072), - [aux_sym_port_token1] = ACTIONS(2072), - [aux_sym_preferred_authentications_token1] = ACTIONS(2072), - [aux_sym_protocol_token1] = ACTIONS(2072), - [aux_sym_proxy_command_token1] = ACTIONS(2072), - [aux_sym_proxy_jump_token1] = ACTIONS(2072), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2072), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2072), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2072), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2072), - [aux_sym_rekey_limit_token1] = ACTIONS(2072), - [aux_sym_remote_command_token1] = ACTIONS(2072), - [aux_sym_remote_forward_token1] = ACTIONS(2072), - [aux_sym_request_tty_token1] = ACTIONS(2072), - [aux_sym_required_rsa_size_token1] = ACTIONS(2072), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2072), - [aux_sym_security_key_provider_token1] = ACTIONS(2072), - [aux_sym_send_env_token1] = ACTIONS(2072), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2072), - [aux_sym_server_alive_interval_token1] = ACTIONS(2072), - [aux_sym_session_type_token1] = ACTIONS(2072), - [aux_sym_set_env_token1] = ACTIONS(2072), - [aux_sym_stdin_null_token1] = ACTIONS(2072), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2072), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2072), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2072), - [aux_sym_syslog_facility_token1] = ACTIONS(2072), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2072), - [aux_sym_keep_alive_token1] = ACTIONS(2072), - [aux_sym_tag_token1] = ACTIONS(2072), - [aux_sym_tunnel_token1] = ACTIONS(2074), - [aux_sym_tunnel_device_token1] = ACTIONS(2072), - [aux_sym_update_host_keys_token1] = ACTIONS(2072), - [aux_sym_use_keychain_token1] = ACTIONS(2072), - [aux_sym_use_roaming_token1] = ACTIONS(2072), - [aux_sym_user_token1] = ACTIONS(2074), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2072), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2072), - [aux_sym_visual_host_key_token1] = ACTIONS(2072), - [aux_sym_xauth_location_token1] = ACTIONS(2072), + [ts_builtin_sym_end] = ACTIONS(2081), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2081), + [aux_sym_match_token1] = ACTIONS(2081), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2081), + [aux_sym_address_family_token1] = ACTIONS(2081), + [aux_sym_batch_mode_token1] = ACTIONS(2081), + [aux_sym_bind_address_token1] = ACTIONS(2081), + [aux_sym_bind_interface_token1] = ACTIONS(2081), + [aux_sym_canonical_domains_token1] = ACTIONS(2081), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2081), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2081), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2081), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2081), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2081), + [aux_sym_certificate_file_token1] = ACTIONS(2081), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2081), + [aux_sym_channel_timeout_token1] = ACTIONS(2081), + [aux_sym_check_host_ip_token1] = ACTIONS(2081), + [aux_sym_ciphers_token1] = ACTIONS(2081), + [aux_sym_cipher_token1] = ACTIONS(2083), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2081), + [aux_sym_compression_token1] = ACTIONS(2081), + [aux_sym_connection_attempts_token1] = ACTIONS(2081), + [aux_sym_connect_timeout_token1] = ACTIONS(2081), + [aux_sym_control_master_token1] = ACTIONS(2081), + [aux_sym_control_path_token1] = ACTIONS(2081), + [aux_sym_control_persist_token1] = ACTIONS(2081), + [aux_sym_dynamic_forward_token1] = ACTIONS(2081), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2081), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2081), + [aux_sym_escape_char_token1] = ACTIONS(2081), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2081), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2081), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2081), + [aux_sym_forward_agent_token1] = ACTIONS(2081), + [aux_sym_forward_x11_token1] = ACTIONS(2083), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2081), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2081), + [aux_sym_gateway_ports_token1] = ACTIONS(2081), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2081), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2081), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2081), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2081), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2081), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2081), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2081), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2081), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2081), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2081), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2081), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2081), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2081), + [aux_sym_host_key_alias_token1] = ACTIONS(2081), + [aux_sym_hostname_token1] = ACTIONS(2081), + [aux_sym_identities_only_token1] = ACTIONS(2081), + [aux_sym_identity_agent_token1] = ACTIONS(2081), + [aux_sym_identity_file_token1] = ACTIONS(2081), + [aux_sym_ignore_unknown_token1] = ACTIONS(2081), + [aux_sym_include_token1] = ACTIONS(2081), + [aux_sym_ip_qos_token1] = ACTIONS(2081), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2081), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2081), + [aux_sym_kex_algorithms_token1] = ACTIONS(2081), + [aux_sym_known_hosts_command_token1] = ACTIONS(2081), + [aux_sym_local_command_token1] = ACTIONS(2081), + [aux_sym_local_forward_token1] = ACTIONS(2081), + [aux_sym_log_level_token1] = ACTIONS(2081), + [aux_sym_log_verbose_token1] = ACTIONS(2081), + [aux_sym_macs_token1] = ACTIONS(2081), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2081), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2081), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2081), + [aux_sym_password_authentication_token1] = ACTIONS(2081), + [aux_sym_permit_local_command_token1] = ACTIONS(2081), + [aux_sym_permit_remote_open_token1] = ACTIONS(2081), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2081), + [aux_sym_port_token1] = ACTIONS(2081), + [aux_sym_preferred_authentications_token1] = ACTIONS(2081), + [aux_sym_protocol_token1] = ACTIONS(2081), + [aux_sym_proxy_command_token1] = ACTIONS(2081), + [aux_sym_proxy_jump_token1] = ACTIONS(2081), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2081), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2081), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2081), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2081), + [aux_sym_rekey_limit_token1] = ACTIONS(2081), + [aux_sym_remote_command_token1] = ACTIONS(2081), + [aux_sym_remote_forward_token1] = ACTIONS(2081), + [aux_sym_request_tty_token1] = ACTIONS(2081), + [aux_sym_required_rsa_size_token1] = ACTIONS(2081), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2081), + [aux_sym_security_key_provider_token1] = ACTIONS(2081), + [aux_sym_send_env_token1] = ACTIONS(2081), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2081), + [aux_sym_server_alive_interval_token1] = ACTIONS(2081), + [aux_sym_session_type_token1] = ACTIONS(2081), + [aux_sym_set_env_token1] = ACTIONS(2081), + [aux_sym_stdin_null_token1] = ACTIONS(2081), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2081), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2081), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2081), + [aux_sym_syslog_facility_token1] = ACTIONS(2081), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2081), + [aux_sym_keep_alive_token1] = ACTIONS(2081), + [aux_sym_tag_token1] = ACTIONS(2081), + [aux_sym_tunnel_token1] = ACTIONS(2083), + [aux_sym_tunnel_device_token1] = ACTIONS(2081), + [aux_sym_update_host_keys_token1] = ACTIONS(2081), + [aux_sym_use_keychain_token1] = ACTIONS(2081), + [aux_sym_use_roaming_token1] = ACTIONS(2081), + [aux_sym_user_token1] = ACTIONS(2083), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2081), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2081), + [aux_sym_visual_host_key_token1] = ACTIONS(2081), + [aux_sym_xauth_location_token1] = ACTIONS(2081), }, [258] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2078), - [anon_sym_DQUOTE] = ACTIONS(2080), - [aux_sym_match_token1] = ACTIONS(2076), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2076), - [aux_sym_address_family_token1] = ACTIONS(2076), - [aux_sym_batch_mode_token1] = ACTIONS(2076), - [aux_sym_bind_address_token1] = ACTIONS(2076), - [aux_sym_bind_interface_token1] = ACTIONS(2076), - [aux_sym_canonical_domains_token1] = ACTIONS(2076), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2076), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2076), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2076), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2076), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2076), - [aux_sym_certificate_file_token1] = ACTIONS(2076), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2076), - [aux_sym_channel_timeout_token1] = ACTIONS(2076), - [aux_sym_check_host_ip_token1] = ACTIONS(2076), - [aux_sym_ciphers_token1] = ACTIONS(2076), - [aux_sym_cipher_token1] = ACTIONS(2078), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2076), - [aux_sym_compression_token1] = ACTIONS(2076), - [aux_sym_connection_attempts_token1] = ACTIONS(2076), - [aux_sym_connect_timeout_token1] = ACTIONS(2076), - [aux_sym_control_master_token1] = ACTIONS(2076), - [aux_sym_control_path_token1] = ACTIONS(2076), - [aux_sym_control_persist_token1] = ACTIONS(2076), - [aux_sym_dynamic_forward_token1] = ACTIONS(2076), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2076), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2076), - [aux_sym_escape_char_token1] = ACTIONS(2076), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2076), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2076), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2076), - [aux_sym_forward_agent_token1] = ACTIONS(2076), - [aux_sym_forward_x11_token1] = ACTIONS(2078), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2076), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2076), - [aux_sym_gateway_ports_token1] = ACTIONS(2076), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2076), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2076), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2076), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2076), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2076), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2076), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2076), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2076), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2076), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2076), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2076), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2076), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2076), - [aux_sym_host_key_alias_token1] = ACTIONS(2076), - [aux_sym_hostname_token1] = ACTIONS(2076), - [aux_sym_identities_only_token1] = ACTIONS(2076), - [aux_sym_identity_agent_token1] = ACTIONS(2076), - [aux_sym_identity_file_token1] = ACTIONS(2076), - [aux_sym_ignore_unknown_token1] = ACTIONS(2076), - [aux_sym_include_token1] = ACTIONS(2076), - [aux_sym_ip_qos_token1] = ACTIONS(2076), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2076), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2076), - [aux_sym_kex_algorithms_token1] = ACTIONS(2076), - [aux_sym_known_hosts_command_token1] = ACTIONS(2076), - [aux_sym_local_command_token1] = ACTIONS(2076), - [aux_sym_local_forward_token1] = ACTIONS(2076), - [aux_sym_log_level_token1] = ACTIONS(2076), - [aux_sym_log_verbose_token1] = ACTIONS(2076), - [aux_sym_macs_token1] = ACTIONS(2076), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2076), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2076), - [aux_sym_password_authentication_token1] = ACTIONS(2076), - [aux_sym_permit_local_command_token1] = ACTIONS(2076), - [aux_sym_permit_remote_open_token1] = ACTIONS(2076), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2076), - [aux_sym_port_token1] = ACTIONS(2076), - [aux_sym_preferred_authentications_token1] = ACTIONS(2076), - [aux_sym_protocol_token1] = ACTIONS(2076), - [aux_sym_proxy_command_token1] = ACTIONS(2076), - [aux_sym_proxy_jump_token1] = ACTIONS(2076), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2076), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2076), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2076), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2076), - [aux_sym_rekey_limit_token1] = ACTIONS(2076), - [aux_sym_remote_command_token1] = ACTIONS(2076), - [aux_sym_remote_forward_token1] = ACTIONS(2076), - [aux_sym_request_tty_token1] = ACTIONS(2076), - [aux_sym_required_rsa_size_token1] = ACTIONS(2076), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2076), - [aux_sym_security_key_provider_token1] = ACTIONS(2076), - [aux_sym_send_env_token1] = ACTIONS(2076), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2076), - [aux_sym_server_alive_interval_token1] = ACTIONS(2076), - [aux_sym_session_type_token1] = ACTIONS(2076), - [aux_sym_set_env_token1] = ACTIONS(2076), - [aux_sym_stdin_null_token1] = ACTIONS(2076), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2076), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2076), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2076), - [aux_sym_syslog_facility_token1] = ACTIONS(2076), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2076), - [aux_sym_keep_alive_token1] = ACTIONS(2076), - [aux_sym_tag_token1] = ACTIONS(2076), - [aux_sym_tunnel_token1] = ACTIONS(2078), - [aux_sym_tunnel_device_token1] = ACTIONS(2076), - [aux_sym_update_host_keys_token1] = ACTIONS(2076), - [aux_sym_use_keychain_token1] = ACTIONS(2076), - [aux_sym_use_roaming_token1] = ACTIONS(2076), - [aux_sym_user_token1] = ACTIONS(2078), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2076), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2076), - [aux_sym_visual_host_key_token1] = ACTIONS(2076), - [aux_sym_xauth_location_token1] = ACTIONS(2076), + [ts_builtin_sym_end] = ACTIONS(2085), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(2089), + [aux_sym_match_token1] = ACTIONS(2085), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2085), + [aux_sym_address_family_token1] = ACTIONS(2085), + [aux_sym_batch_mode_token1] = ACTIONS(2085), + [aux_sym_bind_address_token1] = ACTIONS(2085), + [aux_sym_bind_interface_token1] = ACTIONS(2085), + [aux_sym_canonical_domains_token1] = ACTIONS(2085), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2085), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2085), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2085), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2085), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2085), + [aux_sym_certificate_file_token1] = ACTIONS(2085), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2085), + [aux_sym_channel_timeout_token1] = ACTIONS(2085), + [aux_sym_check_host_ip_token1] = ACTIONS(2085), + [aux_sym_ciphers_token1] = ACTIONS(2085), + [aux_sym_cipher_token1] = ACTIONS(2087), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2085), + [aux_sym_compression_token1] = ACTIONS(2085), + [aux_sym_connection_attempts_token1] = ACTIONS(2085), + [aux_sym_connect_timeout_token1] = ACTIONS(2085), + [aux_sym_control_master_token1] = ACTIONS(2085), + [aux_sym_control_path_token1] = ACTIONS(2085), + [aux_sym_control_persist_token1] = ACTIONS(2085), + [aux_sym_dynamic_forward_token1] = ACTIONS(2085), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2085), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2085), + [aux_sym_escape_char_token1] = ACTIONS(2085), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2085), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2085), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2085), + [aux_sym_forward_agent_token1] = ACTIONS(2085), + [aux_sym_forward_x11_token1] = ACTIONS(2087), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2085), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2085), + [aux_sym_gateway_ports_token1] = ACTIONS(2085), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2085), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2085), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2085), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2085), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2085), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2085), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2085), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2085), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2085), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2085), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2085), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2085), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2085), + [aux_sym_host_key_alias_token1] = ACTIONS(2085), + [aux_sym_hostname_token1] = ACTIONS(2085), + [aux_sym_identities_only_token1] = ACTIONS(2085), + [aux_sym_identity_agent_token1] = ACTIONS(2085), + [aux_sym_identity_file_token1] = ACTIONS(2085), + [aux_sym_ignore_unknown_token1] = ACTIONS(2085), + [aux_sym_include_token1] = ACTIONS(2085), + [aux_sym_ip_qos_token1] = ACTIONS(2085), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2085), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2085), + [aux_sym_kex_algorithms_token1] = ACTIONS(2085), + [aux_sym_known_hosts_command_token1] = ACTIONS(2085), + [aux_sym_local_command_token1] = ACTIONS(2085), + [aux_sym_local_forward_token1] = ACTIONS(2085), + [aux_sym_log_level_token1] = ACTIONS(2085), + [aux_sym_log_verbose_token1] = ACTIONS(2085), + [aux_sym_macs_token1] = ACTIONS(2085), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2085), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2085), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2085), + [aux_sym_password_authentication_token1] = ACTIONS(2085), + [aux_sym_permit_local_command_token1] = ACTIONS(2085), + [aux_sym_permit_remote_open_token1] = ACTIONS(2085), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2085), + [aux_sym_port_token1] = ACTIONS(2085), + [aux_sym_preferred_authentications_token1] = ACTIONS(2085), + [aux_sym_protocol_token1] = ACTIONS(2085), + [aux_sym_proxy_command_token1] = ACTIONS(2085), + [aux_sym_proxy_jump_token1] = ACTIONS(2085), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2085), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2085), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2085), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2085), + [aux_sym_rekey_limit_token1] = ACTIONS(2085), + [aux_sym_remote_command_token1] = ACTIONS(2085), + [aux_sym_remote_forward_token1] = ACTIONS(2085), + [aux_sym_request_tty_token1] = ACTIONS(2085), + [aux_sym_required_rsa_size_token1] = ACTIONS(2085), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2085), + [aux_sym_security_key_provider_token1] = ACTIONS(2085), + [aux_sym_send_env_token1] = ACTIONS(2085), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2085), + [aux_sym_server_alive_interval_token1] = ACTIONS(2085), + [aux_sym_session_type_token1] = ACTIONS(2085), + [aux_sym_set_env_token1] = ACTIONS(2085), + [aux_sym_stdin_null_token1] = ACTIONS(2085), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2085), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2085), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2085), + [aux_sym_syslog_facility_token1] = ACTIONS(2085), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2085), + [aux_sym_keep_alive_token1] = ACTIONS(2085), + [aux_sym_tag_token1] = ACTIONS(2085), + [aux_sym_tunnel_token1] = ACTIONS(2087), + [aux_sym_tunnel_device_token1] = ACTIONS(2085), + [aux_sym_update_host_keys_token1] = ACTIONS(2085), + [aux_sym_use_keychain_token1] = ACTIONS(2085), + [aux_sym_use_roaming_token1] = ACTIONS(2085), + [aux_sym_user_token1] = ACTIONS(2087), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2085), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2085), + [aux_sym_visual_host_key_token1] = ACTIONS(2085), + [aux_sym_xauth_location_token1] = ACTIONS(2085), }, [259] = { - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2084), - [anon_sym_DQUOTE] = ACTIONS(2082), - [aux_sym_match_token1] = ACTIONS(2082), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2082), - [aux_sym_address_family_token1] = ACTIONS(2082), - [aux_sym_batch_mode_token1] = ACTIONS(2082), - [aux_sym_bind_address_token1] = ACTIONS(2082), - [aux_sym_bind_interface_token1] = ACTIONS(2082), - [aux_sym_canonical_domains_token1] = ACTIONS(2082), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2082), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2082), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2082), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2082), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2082), - [aux_sym_certificate_file_token1] = ACTIONS(2082), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2082), - [aux_sym_channel_timeout_token1] = ACTIONS(2082), - [aux_sym_check_host_ip_token1] = ACTIONS(2082), - [aux_sym_ciphers_token1] = ACTIONS(2082), - [aux_sym_cipher_token1] = ACTIONS(2084), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2082), - [aux_sym_compression_token1] = ACTIONS(2082), - [aux_sym_connection_attempts_token1] = ACTIONS(2082), - [aux_sym_connect_timeout_token1] = ACTIONS(2082), - [aux_sym_control_master_token1] = ACTIONS(2082), - [aux_sym_control_path_token1] = ACTIONS(2082), - [aux_sym_control_persist_token1] = ACTIONS(2082), - [aux_sym_dynamic_forward_token1] = ACTIONS(2082), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2082), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2082), - [aux_sym_escape_char_token1] = ACTIONS(2082), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2082), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2082), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2082), - [aux_sym_forward_agent_token1] = ACTIONS(2082), - [aux_sym_forward_x11_token1] = ACTIONS(2084), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2082), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2082), - [aux_sym_gateway_ports_token1] = ACTIONS(2082), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2082), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2082), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2082), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2082), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2082), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2082), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2082), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2082), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2082), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2082), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2082), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2082), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2082), - [aux_sym_host_key_alias_token1] = ACTIONS(2082), - [aux_sym_hostname_token1] = ACTIONS(2082), - [aux_sym_identities_only_token1] = ACTIONS(2082), - [aux_sym_identity_agent_token1] = ACTIONS(2082), - [aux_sym_identity_file_token1] = ACTIONS(2082), - [aux_sym_ignore_unknown_token1] = ACTIONS(2082), - [aux_sym_include_token1] = ACTIONS(2082), - [aux_sym_ip_qos_token1] = ACTIONS(2082), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2082), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2082), - [aux_sym_kex_algorithms_token1] = ACTIONS(2082), - [aux_sym_known_hosts_command_token1] = ACTIONS(2082), - [aux_sym_local_command_token1] = ACTIONS(2082), - [aux_sym_local_forward_token1] = ACTIONS(2082), - [aux_sym_log_level_token1] = ACTIONS(2082), - [aux_sym_log_verbose_token1] = ACTIONS(2082), - [aux_sym_macs_token1] = ACTIONS(2082), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2082), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2082), - [aux_sym_password_authentication_token1] = ACTIONS(2082), - [aux_sym_permit_local_command_token1] = ACTIONS(2082), - [aux_sym_permit_remote_open_token1] = ACTIONS(2082), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2082), - [aux_sym_port_token1] = ACTIONS(2082), - [aux_sym_preferred_authentications_token1] = ACTIONS(2082), - [aux_sym_protocol_token1] = ACTIONS(2082), - [aux_sym_proxy_command_token1] = ACTIONS(2082), - [aux_sym_proxy_jump_token1] = ACTIONS(2082), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2082), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2082), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2082), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2082), - [aux_sym_rekey_limit_token1] = ACTIONS(2082), - [aux_sym_remote_command_token1] = ACTIONS(2082), - [aux_sym_remote_forward_token1] = ACTIONS(2082), - [aux_sym_request_tty_token1] = ACTIONS(2082), - [aux_sym_required_rsa_size_token1] = ACTIONS(2082), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2082), - [aux_sym_security_key_provider_token1] = ACTIONS(2082), - [aux_sym_send_env_token1] = ACTIONS(2082), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2082), - [aux_sym_server_alive_interval_token1] = ACTIONS(2082), - [aux_sym_session_type_token1] = ACTIONS(2082), - [aux_sym_set_env_token1] = ACTIONS(2082), - [aux_sym_stdin_null_token1] = ACTIONS(2082), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2082), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2082), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2082), - [aux_sym_syslog_facility_token1] = ACTIONS(2082), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2082), - [aux_sym_keep_alive_token1] = ACTIONS(2082), - [aux_sym_tag_token1] = ACTIONS(2082), - [aux_sym_tunnel_token1] = ACTIONS(2084), - [aux_sym_tunnel_device_token1] = ACTIONS(2082), - [aux_sym_update_host_keys_token1] = ACTIONS(2082), - [aux_sym_use_keychain_token1] = ACTIONS(2082), - [aux_sym_use_roaming_token1] = ACTIONS(2082), - [aux_sym_user_token1] = ACTIONS(2084), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2082), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2082), - [aux_sym_visual_host_key_token1] = ACTIONS(2082), - [aux_sym_xauth_location_token1] = ACTIONS(2082), + [ts_builtin_sym_end] = ACTIONS(2091), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2091), + [aux_sym_match_token1] = ACTIONS(2091), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2091), + [aux_sym_address_family_token1] = ACTIONS(2091), + [aux_sym_batch_mode_token1] = ACTIONS(2091), + [aux_sym_bind_address_token1] = ACTIONS(2091), + [aux_sym_bind_interface_token1] = ACTIONS(2091), + [aux_sym_canonical_domains_token1] = ACTIONS(2091), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2091), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2091), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2091), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2091), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2091), + [aux_sym_certificate_file_token1] = ACTIONS(2091), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2091), + [aux_sym_channel_timeout_token1] = ACTIONS(2091), + [aux_sym_check_host_ip_token1] = ACTIONS(2091), + [aux_sym_ciphers_token1] = ACTIONS(2091), + [aux_sym_cipher_token1] = ACTIONS(2093), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2091), + [aux_sym_compression_token1] = ACTIONS(2091), + [aux_sym_connection_attempts_token1] = ACTIONS(2091), + [aux_sym_connect_timeout_token1] = ACTIONS(2091), + [aux_sym_control_master_token1] = ACTIONS(2091), + [aux_sym_control_path_token1] = ACTIONS(2091), + [aux_sym_control_persist_token1] = ACTIONS(2091), + [aux_sym_dynamic_forward_token1] = ACTIONS(2091), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2091), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2091), + [aux_sym_escape_char_token1] = ACTIONS(2091), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2091), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2091), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2091), + [aux_sym_forward_agent_token1] = ACTIONS(2091), + [aux_sym_forward_x11_token1] = ACTIONS(2093), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2091), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2091), + [aux_sym_gateway_ports_token1] = ACTIONS(2091), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2091), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2091), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2091), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2091), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2091), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2091), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2091), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2091), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2091), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2091), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2091), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2091), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2091), + [aux_sym_host_key_alias_token1] = ACTIONS(2091), + [aux_sym_hostname_token1] = ACTIONS(2091), + [aux_sym_identities_only_token1] = ACTIONS(2091), + [aux_sym_identity_agent_token1] = ACTIONS(2091), + [aux_sym_identity_file_token1] = ACTIONS(2091), + [aux_sym_ignore_unknown_token1] = ACTIONS(2091), + [aux_sym_include_token1] = ACTIONS(2091), + [aux_sym_ip_qos_token1] = ACTIONS(2091), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2091), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2091), + [aux_sym_kex_algorithms_token1] = ACTIONS(2091), + [aux_sym_known_hosts_command_token1] = ACTIONS(2091), + [aux_sym_local_command_token1] = ACTIONS(2091), + [aux_sym_local_forward_token1] = ACTIONS(2091), + [aux_sym_log_level_token1] = ACTIONS(2091), + [aux_sym_log_verbose_token1] = ACTIONS(2091), + [aux_sym_macs_token1] = ACTIONS(2091), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2091), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2091), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2091), + [aux_sym_password_authentication_token1] = ACTIONS(2091), + [aux_sym_permit_local_command_token1] = ACTIONS(2091), + [aux_sym_permit_remote_open_token1] = ACTIONS(2091), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2091), + [aux_sym_port_token1] = ACTIONS(2091), + [aux_sym_preferred_authentications_token1] = ACTIONS(2091), + [aux_sym_protocol_token1] = ACTIONS(2091), + [aux_sym_proxy_command_token1] = ACTIONS(2091), + [aux_sym_proxy_jump_token1] = ACTIONS(2091), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2091), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2091), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2091), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2091), + [aux_sym_rekey_limit_token1] = ACTIONS(2091), + [aux_sym_remote_command_token1] = ACTIONS(2091), + [aux_sym_remote_forward_token1] = ACTIONS(2091), + [aux_sym_request_tty_token1] = ACTIONS(2091), + [aux_sym_required_rsa_size_token1] = ACTIONS(2091), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2091), + [aux_sym_security_key_provider_token1] = ACTIONS(2091), + [aux_sym_send_env_token1] = ACTIONS(2091), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2091), + [aux_sym_server_alive_interval_token1] = ACTIONS(2091), + [aux_sym_session_type_token1] = ACTIONS(2091), + [aux_sym_set_env_token1] = ACTIONS(2091), + [aux_sym_stdin_null_token1] = ACTIONS(2091), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2091), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2091), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2091), + [aux_sym_syslog_facility_token1] = ACTIONS(2091), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2091), + [aux_sym_keep_alive_token1] = ACTIONS(2091), + [aux_sym_tag_token1] = ACTIONS(2091), + [aux_sym_tunnel_token1] = ACTIONS(2093), + [aux_sym_tunnel_device_token1] = ACTIONS(2091), + [aux_sym_update_host_keys_token1] = ACTIONS(2091), + [aux_sym_use_keychain_token1] = ACTIONS(2091), + [aux_sym_use_roaming_token1] = ACTIONS(2091), + [aux_sym_user_token1] = ACTIONS(2093), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2091), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2091), + [aux_sym_visual_host_key_token1] = ACTIONS(2091), + [aux_sym_xauth_location_token1] = ACTIONS(2091), }, [260] = { - [ts_builtin_sym_end] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2090), - [aux_sym_match_token1] = ACTIONS(2086), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2086), - [aux_sym_address_family_token1] = ACTIONS(2086), - [aux_sym_batch_mode_token1] = ACTIONS(2086), - [aux_sym_bind_address_token1] = ACTIONS(2086), - [aux_sym_bind_interface_token1] = ACTIONS(2086), - [aux_sym_canonical_domains_token1] = ACTIONS(2086), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2086), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2086), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2086), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2086), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2086), - [aux_sym_certificate_file_token1] = ACTIONS(2086), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2086), - [aux_sym_channel_timeout_token1] = ACTIONS(2086), - [aux_sym_check_host_ip_token1] = ACTIONS(2086), - [aux_sym_ciphers_token1] = ACTIONS(2086), - [aux_sym_cipher_token1] = ACTIONS(2088), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2086), - [aux_sym_compression_token1] = ACTIONS(2086), - [aux_sym_connection_attempts_token1] = ACTIONS(2086), - [aux_sym_connect_timeout_token1] = ACTIONS(2086), - [aux_sym_control_master_token1] = ACTIONS(2086), - [aux_sym_control_path_token1] = ACTIONS(2086), - [aux_sym_control_persist_token1] = ACTIONS(2086), - [aux_sym_dynamic_forward_token1] = ACTIONS(2086), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2086), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2086), - [aux_sym_escape_char_token1] = ACTIONS(2086), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2086), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2086), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2086), - [aux_sym_forward_agent_token1] = ACTIONS(2086), - [aux_sym_forward_x11_token1] = ACTIONS(2088), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2086), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2086), - [aux_sym_gateway_ports_token1] = ACTIONS(2086), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2086), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2086), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2086), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2086), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2086), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2086), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2086), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2086), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2086), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2086), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2086), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2086), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2086), - [aux_sym_host_key_alias_token1] = ACTIONS(2086), - [aux_sym_hostname_token1] = ACTIONS(2086), - [aux_sym_identities_only_token1] = ACTIONS(2086), - [aux_sym_identity_agent_token1] = ACTIONS(2086), - [aux_sym_identity_file_token1] = ACTIONS(2086), - [aux_sym_ignore_unknown_token1] = ACTIONS(2086), - [aux_sym_include_token1] = ACTIONS(2086), - [aux_sym_ip_qos_token1] = ACTIONS(2086), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2086), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2086), - [aux_sym_kex_algorithms_token1] = ACTIONS(2086), - [aux_sym_known_hosts_command_token1] = ACTIONS(2086), - [aux_sym_local_command_token1] = ACTIONS(2086), - [aux_sym_local_forward_token1] = ACTIONS(2086), - [aux_sym_log_level_token1] = ACTIONS(2086), - [aux_sym_log_verbose_token1] = ACTIONS(2086), - [aux_sym_macs_token1] = ACTIONS(2086), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2086), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2086), - [aux_sym_password_authentication_token1] = ACTIONS(2086), - [aux_sym_permit_local_command_token1] = ACTIONS(2086), - [aux_sym_permit_remote_open_token1] = ACTIONS(2086), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2086), - [aux_sym_port_token1] = ACTIONS(2086), - [aux_sym_preferred_authentications_token1] = ACTIONS(2086), - [aux_sym_protocol_token1] = ACTIONS(2086), - [aux_sym_proxy_command_token1] = ACTIONS(2086), - [aux_sym_proxy_jump_token1] = ACTIONS(2086), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2086), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2086), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2086), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2086), - [aux_sym_rekey_limit_token1] = ACTIONS(2086), - [aux_sym_remote_command_token1] = ACTIONS(2086), - [aux_sym_remote_forward_token1] = ACTIONS(2086), - [aux_sym_request_tty_token1] = ACTIONS(2086), - [aux_sym_required_rsa_size_token1] = ACTIONS(2086), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2086), - [aux_sym_security_key_provider_token1] = ACTIONS(2086), - [aux_sym_send_env_token1] = ACTIONS(2086), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2086), - [aux_sym_server_alive_interval_token1] = ACTIONS(2086), - [aux_sym_session_type_token1] = ACTIONS(2086), - [aux_sym_set_env_token1] = ACTIONS(2086), - [aux_sym_stdin_null_token1] = ACTIONS(2086), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2086), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2086), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2086), - [aux_sym_syslog_facility_token1] = ACTIONS(2086), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2086), - [aux_sym_keep_alive_token1] = ACTIONS(2086), - [aux_sym_tag_token1] = ACTIONS(2086), - [aux_sym_tunnel_token1] = ACTIONS(2088), - [aux_sym_tunnel_device_token1] = ACTIONS(2086), - [aux_sym_update_host_keys_token1] = ACTIONS(2086), - [aux_sym_use_keychain_token1] = ACTIONS(2086), - [aux_sym_use_roaming_token1] = ACTIONS(2086), - [aux_sym_user_token1] = ACTIONS(2088), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2086), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2086), - [aux_sym_visual_host_key_token1] = ACTIONS(2086), - [aux_sym_xauth_location_token1] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(2099), + [aux_sym_match_token1] = ACTIONS(2095), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2095), + [aux_sym_address_family_token1] = ACTIONS(2095), + [aux_sym_batch_mode_token1] = ACTIONS(2095), + [aux_sym_bind_address_token1] = ACTIONS(2095), + [aux_sym_bind_interface_token1] = ACTIONS(2095), + [aux_sym_canonical_domains_token1] = ACTIONS(2095), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2095), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2095), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2095), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2095), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2095), + [aux_sym_certificate_file_token1] = ACTIONS(2095), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2095), + [aux_sym_channel_timeout_token1] = ACTIONS(2095), + [aux_sym_check_host_ip_token1] = ACTIONS(2095), + [aux_sym_ciphers_token1] = ACTIONS(2095), + [aux_sym_cipher_token1] = ACTIONS(2097), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2095), + [aux_sym_compression_token1] = ACTIONS(2095), + [aux_sym_connection_attempts_token1] = ACTIONS(2095), + [aux_sym_connect_timeout_token1] = ACTIONS(2095), + [aux_sym_control_master_token1] = ACTIONS(2095), + [aux_sym_control_path_token1] = ACTIONS(2095), + [aux_sym_control_persist_token1] = ACTIONS(2095), + [aux_sym_dynamic_forward_token1] = ACTIONS(2095), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2095), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2095), + [aux_sym_escape_char_token1] = ACTIONS(2095), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2095), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2095), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2095), + [aux_sym_forward_agent_token1] = ACTIONS(2095), + [aux_sym_forward_x11_token1] = ACTIONS(2097), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2095), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2095), + [aux_sym_gateway_ports_token1] = ACTIONS(2095), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2095), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2095), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2095), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2095), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2095), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2095), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2095), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2095), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2095), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2095), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2095), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2095), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2095), + [aux_sym_host_key_alias_token1] = ACTIONS(2095), + [aux_sym_hostname_token1] = ACTIONS(2095), + [aux_sym_identities_only_token1] = ACTIONS(2095), + [aux_sym_identity_agent_token1] = ACTIONS(2095), + [aux_sym_identity_file_token1] = ACTIONS(2095), + [aux_sym_ignore_unknown_token1] = ACTIONS(2095), + [aux_sym_include_token1] = ACTIONS(2095), + [aux_sym_ip_qos_token1] = ACTIONS(2095), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2095), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2095), + [aux_sym_kex_algorithms_token1] = ACTIONS(2095), + [aux_sym_known_hosts_command_token1] = ACTIONS(2095), + [aux_sym_local_command_token1] = ACTIONS(2095), + [aux_sym_local_forward_token1] = ACTIONS(2095), + [aux_sym_log_level_token1] = ACTIONS(2095), + [aux_sym_log_verbose_token1] = ACTIONS(2095), + [aux_sym_macs_token1] = ACTIONS(2095), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2095), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2095), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2095), + [aux_sym_password_authentication_token1] = ACTIONS(2095), + [aux_sym_permit_local_command_token1] = ACTIONS(2095), + [aux_sym_permit_remote_open_token1] = ACTIONS(2095), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2095), + [aux_sym_port_token1] = ACTIONS(2095), + [aux_sym_preferred_authentications_token1] = ACTIONS(2095), + [aux_sym_protocol_token1] = ACTIONS(2095), + [aux_sym_proxy_command_token1] = ACTIONS(2095), + [aux_sym_proxy_jump_token1] = ACTIONS(2095), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2095), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2095), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2095), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2095), + [aux_sym_rekey_limit_token1] = ACTIONS(2095), + [aux_sym_remote_command_token1] = ACTIONS(2095), + [aux_sym_remote_forward_token1] = ACTIONS(2095), + [aux_sym_request_tty_token1] = ACTIONS(2095), + [aux_sym_required_rsa_size_token1] = ACTIONS(2095), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2095), + [aux_sym_security_key_provider_token1] = ACTIONS(2095), + [aux_sym_send_env_token1] = ACTIONS(2095), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2095), + [aux_sym_server_alive_interval_token1] = ACTIONS(2095), + [aux_sym_session_type_token1] = ACTIONS(2095), + [aux_sym_set_env_token1] = ACTIONS(2095), + [aux_sym_stdin_null_token1] = ACTIONS(2095), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2095), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2095), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2095), + [aux_sym_syslog_facility_token1] = ACTIONS(2095), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2095), + [aux_sym_keep_alive_token1] = ACTIONS(2095), + [aux_sym_tag_token1] = ACTIONS(2095), + [aux_sym_tunnel_token1] = ACTIONS(2097), + [aux_sym_tunnel_device_token1] = ACTIONS(2095), + [aux_sym_update_host_keys_token1] = ACTIONS(2095), + [aux_sym_use_keychain_token1] = ACTIONS(2095), + [aux_sym_use_roaming_token1] = ACTIONS(2095), + [aux_sym_user_token1] = ACTIONS(2097), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2095), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2095), + [aux_sym_visual_host_key_token1] = ACTIONS(2095), + [aux_sym_xauth_location_token1] = ACTIONS(2095), }, [261] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2094), - [anon_sym_DQUOTE] = ACTIONS(2092), - [aux_sym_match_token1] = ACTIONS(2092), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2092), - [aux_sym_address_family_token1] = ACTIONS(2092), - [aux_sym_batch_mode_token1] = ACTIONS(2092), - [aux_sym_bind_address_token1] = ACTIONS(2092), - [aux_sym_bind_interface_token1] = ACTIONS(2092), - [aux_sym_canonical_domains_token1] = ACTIONS(2092), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2092), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2092), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2092), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2092), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2092), - [aux_sym_certificate_file_token1] = ACTIONS(2092), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2092), - [aux_sym_channel_timeout_token1] = ACTIONS(2092), - [aux_sym_check_host_ip_token1] = ACTIONS(2092), - [aux_sym_ciphers_token1] = ACTIONS(2092), - [aux_sym_cipher_token1] = ACTIONS(2094), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2092), - [aux_sym_compression_token1] = ACTIONS(2092), - [aux_sym_connection_attempts_token1] = ACTIONS(2092), - [aux_sym_connect_timeout_token1] = ACTIONS(2092), - [aux_sym_control_master_token1] = ACTIONS(2092), - [aux_sym_control_path_token1] = ACTIONS(2092), - [aux_sym_control_persist_token1] = ACTIONS(2092), - [aux_sym_dynamic_forward_token1] = ACTIONS(2092), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2092), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2092), - [aux_sym_escape_char_token1] = ACTIONS(2092), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2092), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2092), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2092), - [aux_sym_forward_agent_token1] = ACTIONS(2092), - [aux_sym_forward_x11_token1] = ACTIONS(2094), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2092), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2092), - [aux_sym_gateway_ports_token1] = ACTIONS(2092), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2092), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2092), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2092), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2092), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2092), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2092), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2092), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2092), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2092), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2092), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2092), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2092), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2092), - [aux_sym_host_key_alias_token1] = ACTIONS(2092), - [aux_sym_hostname_token1] = ACTIONS(2092), - [aux_sym_identities_only_token1] = ACTIONS(2092), - [aux_sym_identity_agent_token1] = ACTIONS(2092), - [aux_sym_identity_file_token1] = ACTIONS(2092), - [aux_sym_ignore_unknown_token1] = ACTIONS(2092), - [aux_sym_include_token1] = ACTIONS(2092), - [aux_sym_ip_qos_token1] = ACTIONS(2092), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2092), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2092), - [aux_sym_kex_algorithms_token1] = ACTIONS(2092), - [aux_sym_known_hosts_command_token1] = ACTIONS(2092), - [aux_sym_local_command_token1] = ACTIONS(2092), - [aux_sym_local_forward_token1] = ACTIONS(2092), - [aux_sym_log_level_token1] = ACTIONS(2092), - [aux_sym_log_verbose_token1] = ACTIONS(2092), - [aux_sym_macs_token1] = ACTIONS(2092), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2092), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2092), - [aux_sym_password_authentication_token1] = ACTIONS(2092), - [aux_sym_permit_local_command_token1] = ACTIONS(2092), - [aux_sym_permit_remote_open_token1] = ACTIONS(2092), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2092), - [aux_sym_port_token1] = ACTIONS(2092), - [aux_sym_preferred_authentications_token1] = ACTIONS(2092), - [aux_sym_protocol_token1] = ACTIONS(2092), - [aux_sym_proxy_command_token1] = ACTIONS(2092), - [aux_sym_proxy_jump_token1] = ACTIONS(2092), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2092), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2092), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2092), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2092), - [aux_sym_rekey_limit_token1] = ACTIONS(2092), - [aux_sym_remote_command_token1] = ACTIONS(2092), - [aux_sym_remote_forward_token1] = ACTIONS(2092), - [aux_sym_request_tty_token1] = ACTIONS(2092), - [aux_sym_required_rsa_size_token1] = ACTIONS(2092), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2092), - [aux_sym_security_key_provider_token1] = ACTIONS(2092), - [aux_sym_send_env_token1] = ACTIONS(2092), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2092), - [aux_sym_server_alive_interval_token1] = ACTIONS(2092), - [aux_sym_session_type_token1] = ACTIONS(2092), - [aux_sym_set_env_token1] = ACTIONS(2092), - [aux_sym_stdin_null_token1] = ACTIONS(2092), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2092), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2092), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2092), - [aux_sym_syslog_facility_token1] = ACTIONS(2092), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2092), - [aux_sym_keep_alive_token1] = ACTIONS(2092), - [aux_sym_tag_token1] = ACTIONS(2092), - [aux_sym_tunnel_token1] = ACTIONS(2094), - [aux_sym_tunnel_device_token1] = ACTIONS(2092), - [aux_sym_update_host_keys_token1] = ACTIONS(2092), - [aux_sym_use_keychain_token1] = ACTIONS(2092), - [aux_sym_use_roaming_token1] = ACTIONS(2092), - [aux_sym_user_token1] = ACTIONS(2094), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2092), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2092), - [aux_sym_visual_host_key_token1] = ACTIONS(2092), - [aux_sym_xauth_location_token1] = ACTIONS(2092), + [ts_builtin_sym_end] = ACTIONS(2101), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2101), + [aux_sym_match_token1] = ACTIONS(2101), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2101), + [aux_sym_address_family_token1] = ACTIONS(2101), + [aux_sym_batch_mode_token1] = ACTIONS(2101), + [aux_sym_bind_address_token1] = ACTIONS(2101), + [aux_sym_bind_interface_token1] = ACTIONS(2101), + [aux_sym_canonical_domains_token1] = ACTIONS(2101), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2101), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2101), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2101), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2101), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2101), + [aux_sym_certificate_file_token1] = ACTIONS(2101), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2101), + [aux_sym_channel_timeout_token1] = ACTIONS(2101), + [aux_sym_check_host_ip_token1] = ACTIONS(2101), + [aux_sym_ciphers_token1] = ACTIONS(2101), + [aux_sym_cipher_token1] = ACTIONS(2103), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2101), + [aux_sym_compression_token1] = ACTIONS(2101), + [aux_sym_connection_attempts_token1] = ACTIONS(2101), + [aux_sym_connect_timeout_token1] = ACTIONS(2101), + [aux_sym_control_master_token1] = ACTIONS(2101), + [aux_sym_control_path_token1] = ACTIONS(2101), + [aux_sym_control_persist_token1] = ACTIONS(2101), + [aux_sym_dynamic_forward_token1] = ACTIONS(2101), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2101), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2101), + [aux_sym_escape_char_token1] = ACTIONS(2101), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2101), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2101), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2101), + [aux_sym_forward_agent_token1] = ACTIONS(2101), + [aux_sym_forward_x11_token1] = ACTIONS(2103), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2101), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2101), + [aux_sym_gateway_ports_token1] = ACTIONS(2101), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2101), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2101), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2101), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2101), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2101), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2101), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2101), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2101), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2101), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2101), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2101), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2101), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2101), + [aux_sym_host_key_alias_token1] = ACTIONS(2101), + [aux_sym_hostname_token1] = ACTIONS(2101), + [aux_sym_identities_only_token1] = ACTIONS(2101), + [aux_sym_identity_agent_token1] = ACTIONS(2101), + [aux_sym_identity_file_token1] = ACTIONS(2101), + [aux_sym_ignore_unknown_token1] = ACTIONS(2101), + [aux_sym_include_token1] = ACTIONS(2101), + [aux_sym_ip_qos_token1] = ACTIONS(2101), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2101), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2101), + [aux_sym_kex_algorithms_token1] = ACTIONS(2101), + [aux_sym_known_hosts_command_token1] = ACTIONS(2101), + [aux_sym_local_command_token1] = ACTIONS(2101), + [aux_sym_local_forward_token1] = ACTIONS(2101), + [aux_sym_log_level_token1] = ACTIONS(2101), + [aux_sym_log_verbose_token1] = ACTIONS(2101), + [aux_sym_macs_token1] = ACTIONS(2101), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2101), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2101), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2101), + [aux_sym_password_authentication_token1] = ACTIONS(2101), + [aux_sym_permit_local_command_token1] = ACTIONS(2101), + [aux_sym_permit_remote_open_token1] = ACTIONS(2101), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2101), + [aux_sym_port_token1] = ACTIONS(2101), + [aux_sym_preferred_authentications_token1] = ACTIONS(2101), + [aux_sym_protocol_token1] = ACTIONS(2101), + [aux_sym_proxy_command_token1] = ACTIONS(2101), + [aux_sym_proxy_jump_token1] = ACTIONS(2101), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2101), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2101), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2101), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2101), + [aux_sym_rekey_limit_token1] = ACTIONS(2101), + [aux_sym_remote_command_token1] = ACTIONS(2101), + [aux_sym_remote_forward_token1] = ACTIONS(2101), + [aux_sym_request_tty_token1] = ACTIONS(2101), + [aux_sym_required_rsa_size_token1] = ACTIONS(2101), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2101), + [aux_sym_security_key_provider_token1] = ACTIONS(2101), + [aux_sym_send_env_token1] = ACTIONS(2101), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2101), + [aux_sym_server_alive_interval_token1] = ACTIONS(2101), + [aux_sym_session_type_token1] = ACTIONS(2101), + [aux_sym_set_env_token1] = ACTIONS(2101), + [aux_sym_stdin_null_token1] = ACTIONS(2101), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2101), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2101), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2101), + [aux_sym_syslog_facility_token1] = ACTIONS(2101), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2101), + [aux_sym_keep_alive_token1] = ACTIONS(2101), + [aux_sym_tag_token1] = ACTIONS(2101), + [aux_sym_tunnel_token1] = ACTIONS(2103), + [aux_sym_tunnel_device_token1] = ACTIONS(2101), + [aux_sym_update_host_keys_token1] = ACTIONS(2101), + [aux_sym_use_keychain_token1] = ACTIONS(2101), + [aux_sym_use_roaming_token1] = ACTIONS(2101), + [aux_sym_user_token1] = ACTIONS(2103), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2101), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2101), + [aux_sym_visual_host_key_token1] = ACTIONS(2101), + [aux_sym_xauth_location_token1] = ACTIONS(2101), }, [262] = { - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2098), - [anon_sym_DQUOTE] = ACTIONS(2100), - [aux_sym_match_token1] = ACTIONS(2096), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2096), - [aux_sym_address_family_token1] = ACTIONS(2096), - [aux_sym_batch_mode_token1] = ACTIONS(2096), - [aux_sym_bind_address_token1] = ACTIONS(2096), - [aux_sym_bind_interface_token1] = ACTIONS(2096), - [aux_sym_canonical_domains_token1] = ACTIONS(2096), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2096), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2096), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2096), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2096), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2096), - [aux_sym_certificate_file_token1] = ACTIONS(2096), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2096), - [aux_sym_channel_timeout_token1] = ACTIONS(2096), - [aux_sym_check_host_ip_token1] = ACTIONS(2096), - [aux_sym_ciphers_token1] = ACTIONS(2096), - [aux_sym_cipher_token1] = ACTIONS(2098), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2096), - [aux_sym_compression_token1] = ACTIONS(2096), - [aux_sym_connection_attempts_token1] = ACTIONS(2096), - [aux_sym_connect_timeout_token1] = ACTIONS(2096), - [aux_sym_control_master_token1] = ACTIONS(2096), - [aux_sym_control_path_token1] = ACTIONS(2096), - [aux_sym_control_persist_token1] = ACTIONS(2096), - [aux_sym_dynamic_forward_token1] = ACTIONS(2096), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2096), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2096), - [aux_sym_escape_char_token1] = ACTIONS(2096), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2096), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2096), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2096), - [aux_sym_forward_agent_token1] = ACTIONS(2096), - [aux_sym_forward_x11_token1] = ACTIONS(2098), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2096), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2096), - [aux_sym_gateway_ports_token1] = ACTIONS(2096), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2096), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2096), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2096), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2096), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2096), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2096), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2096), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2096), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2096), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2096), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2096), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2096), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2096), - [aux_sym_host_key_alias_token1] = ACTIONS(2096), - [aux_sym_hostname_token1] = ACTIONS(2096), - [aux_sym_identities_only_token1] = ACTIONS(2096), - [aux_sym_identity_agent_token1] = ACTIONS(2096), - [aux_sym_identity_file_token1] = ACTIONS(2096), - [aux_sym_ignore_unknown_token1] = ACTIONS(2096), - [aux_sym_include_token1] = ACTIONS(2096), - [aux_sym_ip_qos_token1] = ACTIONS(2096), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2096), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2096), - [aux_sym_kex_algorithms_token1] = ACTIONS(2096), - [aux_sym_known_hosts_command_token1] = ACTIONS(2096), - [aux_sym_local_command_token1] = ACTIONS(2096), - [aux_sym_local_forward_token1] = ACTIONS(2096), - [aux_sym_log_level_token1] = ACTIONS(2096), - [aux_sym_log_verbose_token1] = ACTIONS(2096), - [aux_sym_macs_token1] = ACTIONS(2096), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2096), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2096), - [aux_sym_password_authentication_token1] = ACTIONS(2096), - [aux_sym_permit_local_command_token1] = ACTIONS(2096), - [aux_sym_permit_remote_open_token1] = ACTIONS(2096), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2096), - [aux_sym_port_token1] = ACTIONS(2096), - [aux_sym_preferred_authentications_token1] = ACTIONS(2096), - [aux_sym_protocol_token1] = ACTIONS(2096), - [aux_sym_proxy_command_token1] = ACTIONS(2096), - [aux_sym_proxy_jump_token1] = ACTIONS(2096), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2096), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2096), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2096), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2096), - [aux_sym_rekey_limit_token1] = ACTIONS(2096), - [aux_sym_remote_command_token1] = ACTIONS(2096), - [aux_sym_remote_forward_token1] = ACTIONS(2096), - [aux_sym_request_tty_token1] = ACTIONS(2096), - [aux_sym_required_rsa_size_token1] = ACTIONS(2096), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2096), - [aux_sym_security_key_provider_token1] = ACTIONS(2096), - [aux_sym_send_env_token1] = ACTIONS(2096), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2096), - [aux_sym_server_alive_interval_token1] = ACTIONS(2096), - [aux_sym_session_type_token1] = ACTIONS(2096), - [aux_sym_set_env_token1] = ACTIONS(2096), - [aux_sym_stdin_null_token1] = ACTIONS(2096), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2096), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2096), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2096), - [aux_sym_syslog_facility_token1] = ACTIONS(2096), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2096), - [aux_sym_keep_alive_token1] = ACTIONS(2096), - [aux_sym_tag_token1] = ACTIONS(2096), - [aux_sym_tunnel_token1] = ACTIONS(2098), - [aux_sym_tunnel_device_token1] = ACTIONS(2096), - [aux_sym_update_host_keys_token1] = ACTIONS(2096), - [aux_sym_use_keychain_token1] = ACTIONS(2096), - [aux_sym_use_roaming_token1] = ACTIONS(2096), - [aux_sym_user_token1] = ACTIONS(2098), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2096), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2096), - [aux_sym_visual_host_key_token1] = ACTIONS(2096), - [aux_sym_xauth_location_token1] = ACTIONS(2096), + [ts_builtin_sym_end] = ACTIONS(2105), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(2109), + [aux_sym_match_token1] = ACTIONS(2105), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2105), + [aux_sym_address_family_token1] = ACTIONS(2105), + [aux_sym_batch_mode_token1] = ACTIONS(2105), + [aux_sym_bind_address_token1] = ACTIONS(2105), + [aux_sym_bind_interface_token1] = ACTIONS(2105), + [aux_sym_canonical_domains_token1] = ACTIONS(2105), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2105), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2105), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2105), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2105), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2105), + [aux_sym_certificate_file_token1] = ACTIONS(2105), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2105), + [aux_sym_channel_timeout_token1] = ACTIONS(2105), + [aux_sym_check_host_ip_token1] = ACTIONS(2105), + [aux_sym_ciphers_token1] = ACTIONS(2105), + [aux_sym_cipher_token1] = ACTIONS(2107), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2105), + [aux_sym_compression_token1] = ACTIONS(2105), + [aux_sym_connection_attempts_token1] = ACTIONS(2105), + [aux_sym_connect_timeout_token1] = ACTIONS(2105), + [aux_sym_control_master_token1] = ACTIONS(2105), + [aux_sym_control_path_token1] = ACTIONS(2105), + [aux_sym_control_persist_token1] = ACTIONS(2105), + [aux_sym_dynamic_forward_token1] = ACTIONS(2105), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2105), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2105), + [aux_sym_escape_char_token1] = ACTIONS(2105), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2105), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2105), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2105), + [aux_sym_forward_agent_token1] = ACTIONS(2105), + [aux_sym_forward_x11_token1] = ACTIONS(2107), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2105), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2105), + [aux_sym_gateway_ports_token1] = ACTIONS(2105), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2105), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2105), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2105), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2105), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2105), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2105), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2105), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2105), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2105), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2105), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2105), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2105), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2105), + [aux_sym_host_key_alias_token1] = ACTIONS(2105), + [aux_sym_hostname_token1] = ACTIONS(2105), + [aux_sym_identities_only_token1] = ACTIONS(2105), + [aux_sym_identity_agent_token1] = ACTIONS(2105), + [aux_sym_identity_file_token1] = ACTIONS(2105), + [aux_sym_ignore_unknown_token1] = ACTIONS(2105), + [aux_sym_include_token1] = ACTIONS(2105), + [aux_sym_ip_qos_token1] = ACTIONS(2105), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2105), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2105), + [aux_sym_kex_algorithms_token1] = ACTIONS(2105), + [aux_sym_known_hosts_command_token1] = ACTIONS(2105), + [aux_sym_local_command_token1] = ACTIONS(2105), + [aux_sym_local_forward_token1] = ACTIONS(2105), + [aux_sym_log_level_token1] = ACTIONS(2105), + [aux_sym_log_verbose_token1] = ACTIONS(2105), + [aux_sym_macs_token1] = ACTIONS(2105), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2105), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2105), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2105), + [aux_sym_password_authentication_token1] = ACTIONS(2105), + [aux_sym_permit_local_command_token1] = ACTIONS(2105), + [aux_sym_permit_remote_open_token1] = ACTIONS(2105), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2105), + [aux_sym_port_token1] = ACTIONS(2105), + [aux_sym_preferred_authentications_token1] = ACTIONS(2105), + [aux_sym_protocol_token1] = ACTIONS(2105), + [aux_sym_proxy_command_token1] = ACTIONS(2105), + [aux_sym_proxy_jump_token1] = ACTIONS(2105), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2105), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2105), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2105), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2105), + [aux_sym_rekey_limit_token1] = ACTIONS(2105), + [aux_sym_remote_command_token1] = ACTIONS(2105), + [aux_sym_remote_forward_token1] = ACTIONS(2105), + [aux_sym_request_tty_token1] = ACTIONS(2105), + [aux_sym_required_rsa_size_token1] = ACTIONS(2105), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2105), + [aux_sym_security_key_provider_token1] = ACTIONS(2105), + [aux_sym_send_env_token1] = ACTIONS(2105), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2105), + [aux_sym_server_alive_interval_token1] = ACTIONS(2105), + [aux_sym_session_type_token1] = ACTIONS(2105), + [aux_sym_set_env_token1] = ACTIONS(2105), + [aux_sym_stdin_null_token1] = ACTIONS(2105), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2105), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2105), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2105), + [aux_sym_syslog_facility_token1] = ACTIONS(2105), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2105), + [aux_sym_keep_alive_token1] = ACTIONS(2105), + [aux_sym_tag_token1] = ACTIONS(2105), + [aux_sym_tunnel_token1] = ACTIONS(2107), + [aux_sym_tunnel_device_token1] = ACTIONS(2105), + [aux_sym_update_host_keys_token1] = ACTIONS(2105), + [aux_sym_use_keychain_token1] = ACTIONS(2105), + [aux_sym_use_roaming_token1] = ACTIONS(2105), + [aux_sym_user_token1] = ACTIONS(2107), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2105), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2105), + [aux_sym_visual_host_key_token1] = ACTIONS(2105), + [aux_sym_xauth_location_token1] = ACTIONS(2105), }, [263] = { - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2102), - [aux_sym_match_token1] = ACTIONS(2102), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2102), - [aux_sym_address_family_token1] = ACTIONS(2102), - [aux_sym_batch_mode_token1] = ACTIONS(2102), - [aux_sym_bind_address_token1] = ACTIONS(2102), - [aux_sym_bind_interface_token1] = ACTIONS(2102), - [aux_sym_canonical_domains_token1] = ACTIONS(2102), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2102), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2102), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2102), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2102), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2102), - [aux_sym_certificate_file_token1] = ACTIONS(2102), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2102), - [aux_sym_channel_timeout_token1] = ACTIONS(2102), - [aux_sym_check_host_ip_token1] = ACTIONS(2102), - [aux_sym_ciphers_token1] = ACTIONS(2102), - [aux_sym_cipher_token1] = ACTIONS(2104), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2102), - [aux_sym_compression_token1] = ACTIONS(2102), - [aux_sym_connection_attempts_token1] = ACTIONS(2102), - [aux_sym_connect_timeout_token1] = ACTIONS(2102), - [aux_sym_control_master_token1] = ACTIONS(2102), - [aux_sym_control_path_token1] = ACTIONS(2102), - [aux_sym_control_persist_token1] = ACTIONS(2102), - [aux_sym_dynamic_forward_token1] = ACTIONS(2102), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2102), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2102), - [aux_sym_escape_char_token1] = ACTIONS(2102), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2102), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2102), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2102), - [aux_sym_forward_agent_token1] = ACTIONS(2102), - [aux_sym_forward_x11_token1] = ACTIONS(2104), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2102), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2102), - [aux_sym_gateway_ports_token1] = ACTIONS(2102), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2102), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2102), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2102), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2102), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2102), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2102), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2102), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2102), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2102), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2102), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2102), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2102), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2102), - [aux_sym_host_key_alias_token1] = ACTIONS(2102), - [aux_sym_hostname_token1] = ACTIONS(2102), - [aux_sym_identities_only_token1] = ACTIONS(2102), - [aux_sym_identity_agent_token1] = ACTIONS(2102), - [aux_sym_identity_file_token1] = ACTIONS(2102), - [aux_sym_ignore_unknown_token1] = ACTIONS(2102), - [aux_sym_include_token1] = ACTIONS(2102), - [aux_sym_ip_qos_token1] = ACTIONS(2102), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2102), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2102), - [aux_sym_kex_algorithms_token1] = ACTIONS(2102), - [aux_sym_known_hosts_command_token1] = ACTIONS(2102), - [aux_sym_local_command_token1] = ACTIONS(2102), - [aux_sym_local_forward_token1] = ACTIONS(2102), - [aux_sym_log_level_token1] = ACTIONS(2102), - [aux_sym_log_verbose_token1] = ACTIONS(2102), - [aux_sym_macs_token1] = ACTIONS(2102), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2102), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2102), - [aux_sym_password_authentication_token1] = ACTIONS(2102), - [aux_sym_permit_local_command_token1] = ACTIONS(2102), - [aux_sym_permit_remote_open_token1] = ACTIONS(2102), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2102), - [aux_sym_port_token1] = ACTIONS(2102), - [aux_sym_preferred_authentications_token1] = ACTIONS(2102), - [aux_sym_protocol_token1] = ACTIONS(2102), - [aux_sym_proxy_command_token1] = ACTIONS(2102), - [aux_sym_proxy_jump_token1] = ACTIONS(2102), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2102), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2102), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2102), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2102), - [aux_sym_rekey_limit_token1] = ACTIONS(2102), - [aux_sym_remote_command_token1] = ACTIONS(2102), - [aux_sym_remote_forward_token1] = ACTIONS(2102), - [aux_sym_request_tty_token1] = ACTIONS(2102), - [aux_sym_required_rsa_size_token1] = ACTIONS(2102), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2102), - [aux_sym_security_key_provider_token1] = ACTIONS(2102), - [aux_sym_send_env_token1] = ACTIONS(2102), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2102), - [aux_sym_server_alive_interval_token1] = ACTIONS(2102), - [aux_sym_session_type_token1] = ACTIONS(2102), - [aux_sym_set_env_token1] = ACTIONS(2102), - [aux_sym_stdin_null_token1] = ACTIONS(2102), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2102), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2102), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2102), - [aux_sym_syslog_facility_token1] = ACTIONS(2102), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2102), - [aux_sym_keep_alive_token1] = ACTIONS(2102), - [aux_sym_tag_token1] = ACTIONS(2102), - [aux_sym_tunnel_token1] = ACTIONS(2104), - [aux_sym_tunnel_device_token1] = ACTIONS(2102), - [aux_sym_update_host_keys_token1] = ACTIONS(2102), - [aux_sym_use_keychain_token1] = ACTIONS(2102), - [aux_sym_use_roaming_token1] = ACTIONS(2102), - [aux_sym_user_token1] = ACTIONS(2104), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2102), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2102), - [aux_sym_visual_host_key_token1] = ACTIONS(2102), - [aux_sym_xauth_location_token1] = ACTIONS(2102), + [ts_builtin_sym_end] = ACTIONS(2111), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(2111), + [aux_sym_match_token1] = ACTIONS(2111), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2111), + [aux_sym_address_family_token1] = ACTIONS(2111), + [aux_sym_batch_mode_token1] = ACTIONS(2111), + [aux_sym_bind_address_token1] = ACTIONS(2111), + [aux_sym_bind_interface_token1] = ACTIONS(2111), + [aux_sym_canonical_domains_token1] = ACTIONS(2111), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2111), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2111), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2111), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2111), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2111), + [aux_sym_certificate_file_token1] = ACTIONS(2111), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2111), + [aux_sym_channel_timeout_token1] = ACTIONS(2111), + [aux_sym_check_host_ip_token1] = ACTIONS(2111), + [aux_sym_ciphers_token1] = ACTIONS(2111), + [aux_sym_cipher_token1] = ACTIONS(2113), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2111), + [aux_sym_compression_token1] = ACTIONS(2111), + [aux_sym_connection_attempts_token1] = ACTIONS(2111), + [aux_sym_connect_timeout_token1] = ACTIONS(2111), + [aux_sym_control_master_token1] = ACTIONS(2111), + [aux_sym_control_path_token1] = ACTIONS(2111), + [aux_sym_control_persist_token1] = ACTIONS(2111), + [aux_sym_dynamic_forward_token1] = ACTIONS(2111), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2111), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2111), + [aux_sym_escape_char_token1] = ACTIONS(2111), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2111), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2111), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2111), + [aux_sym_forward_agent_token1] = ACTIONS(2111), + [aux_sym_forward_x11_token1] = ACTIONS(2113), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2111), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2111), + [aux_sym_gateway_ports_token1] = ACTIONS(2111), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2111), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2111), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2111), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2111), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2111), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2111), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2111), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2111), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2111), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2111), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2111), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2111), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2111), + [aux_sym_host_key_alias_token1] = ACTIONS(2111), + [aux_sym_hostname_token1] = ACTIONS(2111), + [aux_sym_identities_only_token1] = ACTIONS(2111), + [aux_sym_identity_agent_token1] = ACTIONS(2111), + [aux_sym_identity_file_token1] = ACTIONS(2111), + [aux_sym_ignore_unknown_token1] = ACTIONS(2111), + [aux_sym_include_token1] = ACTIONS(2111), + [aux_sym_ip_qos_token1] = ACTIONS(2111), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2111), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2111), + [aux_sym_kex_algorithms_token1] = ACTIONS(2111), + [aux_sym_known_hosts_command_token1] = ACTIONS(2111), + [aux_sym_local_command_token1] = ACTIONS(2111), + [aux_sym_local_forward_token1] = ACTIONS(2111), + [aux_sym_log_level_token1] = ACTIONS(2111), + [aux_sym_log_verbose_token1] = ACTIONS(2111), + [aux_sym_macs_token1] = ACTIONS(2111), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2111), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2111), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2111), + [aux_sym_password_authentication_token1] = ACTIONS(2111), + [aux_sym_permit_local_command_token1] = ACTIONS(2111), + [aux_sym_permit_remote_open_token1] = ACTIONS(2111), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2111), + [aux_sym_port_token1] = ACTIONS(2111), + [aux_sym_preferred_authentications_token1] = ACTIONS(2111), + [aux_sym_protocol_token1] = ACTIONS(2111), + [aux_sym_proxy_command_token1] = ACTIONS(2111), + [aux_sym_proxy_jump_token1] = ACTIONS(2111), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2111), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2111), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2111), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2111), + [aux_sym_rekey_limit_token1] = ACTIONS(2111), + [aux_sym_remote_command_token1] = ACTIONS(2111), + [aux_sym_remote_forward_token1] = ACTIONS(2111), + [aux_sym_request_tty_token1] = ACTIONS(2111), + [aux_sym_required_rsa_size_token1] = ACTIONS(2111), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2111), + [aux_sym_security_key_provider_token1] = ACTIONS(2111), + [aux_sym_send_env_token1] = ACTIONS(2111), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2111), + [aux_sym_server_alive_interval_token1] = ACTIONS(2111), + [aux_sym_session_type_token1] = ACTIONS(2111), + [aux_sym_set_env_token1] = ACTIONS(2111), + [aux_sym_stdin_null_token1] = ACTIONS(2111), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2111), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2111), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2111), + [aux_sym_syslog_facility_token1] = ACTIONS(2111), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2111), + [aux_sym_keep_alive_token1] = ACTIONS(2111), + [aux_sym_tag_token1] = ACTIONS(2111), + [aux_sym_tunnel_token1] = ACTIONS(2113), + [aux_sym_tunnel_device_token1] = ACTIONS(2111), + [aux_sym_update_host_keys_token1] = ACTIONS(2111), + [aux_sym_use_keychain_token1] = ACTIONS(2111), + [aux_sym_use_roaming_token1] = ACTIONS(2111), + [aux_sym_user_token1] = ACTIONS(2113), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2111), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2111), + [aux_sym_visual_host_key_token1] = ACTIONS(2111), + [aux_sym_xauth_location_token1] = ACTIONS(2111), }, [264] = { - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2108), - [anon_sym_DQUOTE] = ACTIONS(2110), - [aux_sym_match_token1] = ACTIONS(2106), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2106), - [aux_sym_address_family_token1] = ACTIONS(2106), - [aux_sym_batch_mode_token1] = ACTIONS(2106), - [aux_sym_bind_address_token1] = ACTIONS(2106), - [aux_sym_bind_interface_token1] = ACTIONS(2106), - [aux_sym_canonical_domains_token1] = ACTIONS(2106), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2106), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2106), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2106), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2106), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2106), - [aux_sym_certificate_file_token1] = ACTIONS(2106), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2106), - [aux_sym_channel_timeout_token1] = ACTIONS(2106), - [aux_sym_check_host_ip_token1] = ACTIONS(2106), - [aux_sym_ciphers_token1] = ACTIONS(2106), - [aux_sym_cipher_token1] = ACTIONS(2108), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2106), - [aux_sym_compression_token1] = ACTIONS(2106), - [aux_sym_connection_attempts_token1] = ACTIONS(2106), - [aux_sym_connect_timeout_token1] = ACTIONS(2106), - [aux_sym_control_master_token1] = ACTIONS(2106), - [aux_sym_control_path_token1] = ACTIONS(2106), - [aux_sym_control_persist_token1] = ACTIONS(2106), - [aux_sym_dynamic_forward_token1] = ACTIONS(2106), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2106), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2106), - [aux_sym_escape_char_token1] = ACTIONS(2106), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2106), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2106), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2106), - [aux_sym_forward_agent_token1] = ACTIONS(2106), - [aux_sym_forward_x11_token1] = ACTIONS(2108), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2106), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2106), - [aux_sym_gateway_ports_token1] = ACTIONS(2106), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2106), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2106), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2106), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2106), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2106), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2106), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2106), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2106), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2106), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2106), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2106), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2106), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2106), - [aux_sym_host_key_alias_token1] = ACTIONS(2106), - [aux_sym_hostname_token1] = ACTIONS(2106), - [aux_sym_identities_only_token1] = ACTIONS(2106), - [aux_sym_identity_agent_token1] = ACTIONS(2106), - [aux_sym_identity_file_token1] = ACTIONS(2106), - [aux_sym_ignore_unknown_token1] = ACTIONS(2106), - [aux_sym_include_token1] = ACTIONS(2106), - [aux_sym_ip_qos_token1] = ACTIONS(2106), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2106), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2106), - [aux_sym_kex_algorithms_token1] = ACTIONS(2106), - [aux_sym_known_hosts_command_token1] = ACTIONS(2106), - [aux_sym_local_command_token1] = ACTIONS(2106), - [aux_sym_local_forward_token1] = ACTIONS(2106), - [aux_sym_log_level_token1] = ACTIONS(2106), - [aux_sym_log_verbose_token1] = ACTIONS(2106), - [aux_sym_macs_token1] = ACTIONS(2106), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2106), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2106), - [aux_sym_password_authentication_token1] = ACTIONS(2106), - [aux_sym_permit_local_command_token1] = ACTIONS(2106), - [aux_sym_permit_remote_open_token1] = ACTIONS(2106), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2106), - [aux_sym_port_token1] = ACTIONS(2106), - [aux_sym_preferred_authentications_token1] = ACTIONS(2106), - [aux_sym_protocol_token1] = ACTIONS(2106), - [aux_sym_proxy_command_token1] = ACTIONS(2106), - [aux_sym_proxy_jump_token1] = ACTIONS(2106), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2106), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2106), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2106), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2106), - [aux_sym_rekey_limit_token1] = ACTIONS(2106), - [aux_sym_remote_command_token1] = ACTIONS(2106), - [aux_sym_remote_forward_token1] = ACTIONS(2106), - [aux_sym_request_tty_token1] = ACTIONS(2106), - [aux_sym_required_rsa_size_token1] = ACTIONS(2106), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2106), - [aux_sym_security_key_provider_token1] = ACTIONS(2106), - [aux_sym_send_env_token1] = ACTIONS(2106), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2106), - [aux_sym_server_alive_interval_token1] = ACTIONS(2106), - [aux_sym_session_type_token1] = ACTIONS(2106), - [aux_sym_set_env_token1] = ACTIONS(2106), - [aux_sym_stdin_null_token1] = ACTIONS(2106), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2106), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2106), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2106), - [aux_sym_syslog_facility_token1] = ACTIONS(2106), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2106), - [aux_sym_keep_alive_token1] = ACTIONS(2106), - [aux_sym_tag_token1] = ACTIONS(2106), - [aux_sym_tunnel_token1] = ACTIONS(2108), - [aux_sym_tunnel_device_token1] = ACTIONS(2106), - [aux_sym_update_host_keys_token1] = ACTIONS(2106), - [aux_sym_use_keychain_token1] = ACTIONS(2106), - [aux_sym_use_roaming_token1] = ACTIONS(2106), - [aux_sym_user_token1] = ACTIONS(2108), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2106), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2106), - [aux_sym_visual_host_key_token1] = ACTIONS(2106), - [aux_sym_xauth_location_token1] = ACTIONS(2106), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(2119), + [aux_sym_match_token1] = ACTIONS(2115), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2115), + [aux_sym_address_family_token1] = ACTIONS(2115), + [aux_sym_batch_mode_token1] = ACTIONS(2115), + [aux_sym_bind_address_token1] = ACTIONS(2115), + [aux_sym_bind_interface_token1] = ACTIONS(2115), + [aux_sym_canonical_domains_token1] = ACTIONS(2115), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2115), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2115), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2115), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2115), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2115), + [aux_sym_certificate_file_token1] = ACTIONS(2115), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2115), + [aux_sym_channel_timeout_token1] = ACTIONS(2115), + [aux_sym_check_host_ip_token1] = ACTIONS(2115), + [aux_sym_ciphers_token1] = ACTIONS(2115), + [aux_sym_cipher_token1] = ACTIONS(2117), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2115), + [aux_sym_compression_token1] = ACTIONS(2115), + [aux_sym_connection_attempts_token1] = ACTIONS(2115), + [aux_sym_connect_timeout_token1] = ACTIONS(2115), + [aux_sym_control_master_token1] = ACTIONS(2115), + [aux_sym_control_path_token1] = ACTIONS(2115), + [aux_sym_control_persist_token1] = ACTIONS(2115), + [aux_sym_dynamic_forward_token1] = ACTIONS(2115), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2115), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2115), + [aux_sym_escape_char_token1] = ACTIONS(2115), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2115), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2115), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2115), + [aux_sym_forward_agent_token1] = ACTIONS(2115), + [aux_sym_forward_x11_token1] = ACTIONS(2117), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2115), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2115), + [aux_sym_gateway_ports_token1] = ACTIONS(2115), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2115), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2115), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2115), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2115), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2115), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2115), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2115), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2115), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2115), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2115), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2115), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2115), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2115), + [aux_sym_host_key_alias_token1] = ACTIONS(2115), + [aux_sym_hostname_token1] = ACTIONS(2115), + [aux_sym_identities_only_token1] = ACTIONS(2115), + [aux_sym_identity_agent_token1] = ACTIONS(2115), + [aux_sym_identity_file_token1] = ACTIONS(2115), + [aux_sym_ignore_unknown_token1] = ACTIONS(2115), + [aux_sym_include_token1] = ACTIONS(2115), + [aux_sym_ip_qos_token1] = ACTIONS(2115), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2115), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2115), + [aux_sym_kex_algorithms_token1] = ACTIONS(2115), + [aux_sym_known_hosts_command_token1] = ACTIONS(2115), + [aux_sym_local_command_token1] = ACTIONS(2115), + [aux_sym_local_forward_token1] = ACTIONS(2115), + [aux_sym_log_level_token1] = ACTIONS(2115), + [aux_sym_log_verbose_token1] = ACTIONS(2115), + [aux_sym_macs_token1] = ACTIONS(2115), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2115), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2115), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2115), + [aux_sym_password_authentication_token1] = ACTIONS(2115), + [aux_sym_permit_local_command_token1] = ACTIONS(2115), + [aux_sym_permit_remote_open_token1] = ACTIONS(2115), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2115), + [aux_sym_port_token1] = ACTIONS(2115), + [aux_sym_preferred_authentications_token1] = ACTIONS(2115), + [aux_sym_protocol_token1] = ACTIONS(2115), + [aux_sym_proxy_command_token1] = ACTIONS(2115), + [aux_sym_proxy_jump_token1] = ACTIONS(2115), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2115), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2115), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2115), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2115), + [aux_sym_rekey_limit_token1] = ACTIONS(2115), + [aux_sym_remote_command_token1] = ACTIONS(2115), + [aux_sym_remote_forward_token1] = ACTIONS(2115), + [aux_sym_request_tty_token1] = ACTIONS(2115), + [aux_sym_required_rsa_size_token1] = ACTIONS(2115), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2115), + [aux_sym_security_key_provider_token1] = ACTIONS(2115), + [aux_sym_send_env_token1] = ACTIONS(2115), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2115), + [aux_sym_server_alive_interval_token1] = ACTIONS(2115), + [aux_sym_session_type_token1] = ACTIONS(2115), + [aux_sym_set_env_token1] = ACTIONS(2115), + [aux_sym_stdin_null_token1] = ACTIONS(2115), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2115), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2115), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2115), + [aux_sym_syslog_facility_token1] = ACTIONS(2115), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2115), + [aux_sym_keep_alive_token1] = ACTIONS(2115), + [aux_sym_tag_token1] = ACTIONS(2115), + [aux_sym_tunnel_token1] = ACTIONS(2117), + [aux_sym_tunnel_device_token1] = ACTIONS(2115), + [aux_sym_update_host_keys_token1] = ACTIONS(2115), + [aux_sym_use_keychain_token1] = ACTIONS(2115), + [aux_sym_use_roaming_token1] = ACTIONS(2115), + [aux_sym_user_token1] = ACTIONS(2117), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2115), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2115), + [aux_sym_visual_host_key_token1] = ACTIONS(2115), + [aux_sym_xauth_location_token1] = ACTIONS(2115), }, [265] = { - [ts_builtin_sym_end] = ACTIONS(2112), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2114), - [anon_sym_DQUOTE] = ACTIONS(2116), - [aux_sym_match_token1] = ACTIONS(2112), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2112), - [aux_sym_address_family_token1] = ACTIONS(2112), - [aux_sym_batch_mode_token1] = ACTIONS(2112), - [aux_sym_bind_address_token1] = ACTIONS(2112), - [aux_sym_bind_interface_token1] = ACTIONS(2112), - [aux_sym_canonical_domains_token1] = ACTIONS(2112), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2112), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2112), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2112), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2112), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2112), - [aux_sym_certificate_file_token1] = ACTIONS(2112), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2112), - [aux_sym_channel_timeout_token1] = ACTIONS(2112), - [aux_sym_check_host_ip_token1] = ACTIONS(2112), - [aux_sym_ciphers_token1] = ACTIONS(2112), - [aux_sym_cipher_token1] = ACTIONS(2114), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2112), - [aux_sym_compression_token1] = ACTIONS(2112), - [aux_sym_connection_attempts_token1] = ACTIONS(2112), - [aux_sym_connect_timeout_token1] = ACTIONS(2112), - [aux_sym_control_master_token1] = ACTIONS(2112), - [aux_sym_control_path_token1] = ACTIONS(2112), - [aux_sym_control_persist_token1] = ACTIONS(2112), - [aux_sym_dynamic_forward_token1] = ACTIONS(2112), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2112), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2112), - [aux_sym_escape_char_token1] = ACTIONS(2112), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2112), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2112), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2112), - [aux_sym_forward_agent_token1] = ACTIONS(2112), - [aux_sym_forward_x11_token1] = ACTIONS(2114), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2112), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2112), - [aux_sym_gateway_ports_token1] = ACTIONS(2112), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2112), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2112), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2112), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2112), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2112), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2112), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2112), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2112), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2112), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2112), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2112), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2112), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2112), - [aux_sym_host_key_alias_token1] = ACTIONS(2112), - [aux_sym_hostname_token1] = ACTIONS(2112), - [aux_sym_identities_only_token1] = ACTIONS(2112), - [aux_sym_identity_agent_token1] = ACTIONS(2112), - [aux_sym_identity_file_token1] = ACTIONS(2112), - [aux_sym_ignore_unknown_token1] = ACTIONS(2112), - [aux_sym_include_token1] = ACTIONS(2112), - [aux_sym_ip_qos_token1] = ACTIONS(2112), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2112), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2112), - [aux_sym_kex_algorithms_token1] = ACTIONS(2112), - [aux_sym_known_hosts_command_token1] = ACTIONS(2112), - [aux_sym_local_command_token1] = ACTIONS(2112), - [aux_sym_local_forward_token1] = ACTIONS(2112), - [aux_sym_log_level_token1] = ACTIONS(2112), - [aux_sym_log_verbose_token1] = ACTIONS(2112), - [aux_sym_macs_token1] = ACTIONS(2112), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2112), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2112), - [aux_sym_password_authentication_token1] = ACTIONS(2112), - [aux_sym_permit_local_command_token1] = ACTIONS(2112), - [aux_sym_permit_remote_open_token1] = ACTIONS(2112), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2112), - [aux_sym_port_token1] = ACTIONS(2112), - [aux_sym_preferred_authentications_token1] = ACTIONS(2112), - [aux_sym_protocol_token1] = ACTIONS(2112), - [aux_sym_proxy_command_token1] = ACTIONS(2112), - [aux_sym_proxy_jump_token1] = ACTIONS(2112), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2112), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2112), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2112), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2112), - [aux_sym_rekey_limit_token1] = ACTIONS(2112), - [aux_sym_remote_command_token1] = ACTIONS(2112), - [aux_sym_remote_forward_token1] = ACTIONS(2112), - [aux_sym_request_tty_token1] = ACTIONS(2112), - [aux_sym_required_rsa_size_token1] = ACTIONS(2112), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2112), - [aux_sym_security_key_provider_token1] = ACTIONS(2112), - [aux_sym_send_env_token1] = ACTIONS(2112), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2112), - [aux_sym_server_alive_interval_token1] = ACTIONS(2112), - [aux_sym_session_type_token1] = ACTIONS(2112), - [aux_sym_set_env_token1] = ACTIONS(2112), - [aux_sym_stdin_null_token1] = ACTIONS(2112), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2112), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2112), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2112), - [aux_sym_syslog_facility_token1] = ACTIONS(2112), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2112), - [aux_sym_keep_alive_token1] = ACTIONS(2112), - [aux_sym_tag_token1] = ACTIONS(2112), - [aux_sym_tunnel_token1] = ACTIONS(2114), - [aux_sym_tunnel_device_token1] = ACTIONS(2112), - [aux_sym_update_host_keys_token1] = ACTIONS(2112), - [aux_sym_use_keychain_token1] = ACTIONS(2112), - [aux_sym_use_roaming_token1] = ACTIONS(2112), - [aux_sym_user_token1] = ACTIONS(2114), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2112), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2112), - [aux_sym_visual_host_key_token1] = ACTIONS(2112), - [aux_sym_xauth_location_token1] = ACTIONS(2112), + [ts_builtin_sym_end] = ACTIONS(2121), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2121), + [aux_sym_match_token1] = ACTIONS(2121), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2121), + [aux_sym_address_family_token1] = ACTIONS(2121), + [aux_sym_batch_mode_token1] = ACTIONS(2121), + [aux_sym_bind_address_token1] = ACTIONS(2121), + [aux_sym_bind_interface_token1] = ACTIONS(2121), + [aux_sym_canonical_domains_token1] = ACTIONS(2121), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2121), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2121), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2121), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2121), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2121), + [aux_sym_certificate_file_token1] = ACTIONS(2121), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2121), + [aux_sym_channel_timeout_token1] = ACTIONS(2121), + [aux_sym_check_host_ip_token1] = ACTIONS(2121), + [aux_sym_ciphers_token1] = ACTIONS(2121), + [aux_sym_cipher_token1] = ACTIONS(2123), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2121), + [aux_sym_compression_token1] = ACTIONS(2121), + [aux_sym_connection_attempts_token1] = ACTIONS(2121), + [aux_sym_connect_timeout_token1] = ACTIONS(2121), + [aux_sym_control_master_token1] = ACTIONS(2121), + [aux_sym_control_path_token1] = ACTIONS(2121), + [aux_sym_control_persist_token1] = ACTIONS(2121), + [aux_sym_dynamic_forward_token1] = ACTIONS(2121), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2121), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2121), + [aux_sym_escape_char_token1] = ACTIONS(2121), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2121), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2121), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2121), + [aux_sym_forward_agent_token1] = ACTIONS(2121), + [aux_sym_forward_x11_token1] = ACTIONS(2123), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2121), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2121), + [aux_sym_gateway_ports_token1] = ACTIONS(2121), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2121), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2121), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2121), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2121), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2121), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2121), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2121), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2121), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2121), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2121), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2121), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2121), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2121), + [aux_sym_host_key_alias_token1] = ACTIONS(2121), + [aux_sym_hostname_token1] = ACTIONS(2121), + [aux_sym_identities_only_token1] = ACTIONS(2121), + [aux_sym_identity_agent_token1] = ACTIONS(2121), + [aux_sym_identity_file_token1] = ACTIONS(2121), + [aux_sym_ignore_unknown_token1] = ACTIONS(2121), + [aux_sym_include_token1] = ACTIONS(2121), + [aux_sym_ip_qos_token1] = ACTIONS(2121), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2121), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2121), + [aux_sym_kex_algorithms_token1] = ACTIONS(2121), + [aux_sym_known_hosts_command_token1] = ACTIONS(2121), + [aux_sym_local_command_token1] = ACTIONS(2121), + [aux_sym_local_forward_token1] = ACTIONS(2121), + [aux_sym_log_level_token1] = ACTIONS(2121), + [aux_sym_log_verbose_token1] = ACTIONS(2121), + [aux_sym_macs_token1] = ACTIONS(2121), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2121), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2121), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2121), + [aux_sym_password_authentication_token1] = ACTIONS(2121), + [aux_sym_permit_local_command_token1] = ACTIONS(2121), + [aux_sym_permit_remote_open_token1] = ACTIONS(2121), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2121), + [aux_sym_port_token1] = ACTIONS(2121), + [aux_sym_preferred_authentications_token1] = ACTIONS(2121), + [aux_sym_protocol_token1] = ACTIONS(2121), + [aux_sym_proxy_command_token1] = ACTIONS(2121), + [aux_sym_proxy_jump_token1] = ACTIONS(2121), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2121), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2121), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2121), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2121), + [aux_sym_rekey_limit_token1] = ACTIONS(2121), + [aux_sym_remote_command_token1] = ACTIONS(2121), + [aux_sym_remote_forward_token1] = ACTIONS(2121), + [aux_sym_request_tty_token1] = ACTIONS(2121), + [aux_sym_required_rsa_size_token1] = ACTIONS(2121), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2121), + [aux_sym_security_key_provider_token1] = ACTIONS(2121), + [aux_sym_send_env_token1] = ACTIONS(2121), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2121), + [aux_sym_server_alive_interval_token1] = ACTIONS(2121), + [aux_sym_session_type_token1] = ACTIONS(2121), + [aux_sym_set_env_token1] = ACTIONS(2121), + [aux_sym_stdin_null_token1] = ACTIONS(2121), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2121), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2121), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2121), + [aux_sym_syslog_facility_token1] = ACTIONS(2121), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2121), + [aux_sym_keep_alive_token1] = ACTIONS(2121), + [aux_sym_tag_token1] = ACTIONS(2121), + [aux_sym_tunnel_token1] = ACTIONS(2123), + [aux_sym_tunnel_device_token1] = ACTIONS(2121), + [aux_sym_update_host_keys_token1] = ACTIONS(2121), + [aux_sym_use_keychain_token1] = ACTIONS(2121), + [aux_sym_use_roaming_token1] = ACTIONS(2121), + [aux_sym_user_token1] = ACTIONS(2123), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2121), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2121), + [aux_sym_visual_host_key_token1] = ACTIONS(2121), + [aux_sym_xauth_location_token1] = ACTIONS(2121), }, [266] = { - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2118), - [aux_sym_match_token1] = ACTIONS(2118), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2118), - [aux_sym_address_family_token1] = ACTIONS(2118), - [aux_sym_batch_mode_token1] = ACTIONS(2118), - [aux_sym_bind_address_token1] = ACTIONS(2118), - [aux_sym_bind_interface_token1] = ACTIONS(2118), - [aux_sym_canonical_domains_token1] = ACTIONS(2118), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2118), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2118), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2118), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2118), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2118), - [aux_sym_certificate_file_token1] = ACTIONS(2118), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2118), - [aux_sym_channel_timeout_token1] = ACTIONS(2118), - [aux_sym_check_host_ip_token1] = ACTIONS(2118), - [aux_sym_ciphers_token1] = ACTIONS(2118), - [aux_sym_cipher_token1] = ACTIONS(2120), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2118), - [aux_sym_compression_token1] = ACTIONS(2118), - [aux_sym_connection_attempts_token1] = ACTIONS(2118), - [aux_sym_connect_timeout_token1] = ACTIONS(2118), - [aux_sym_control_master_token1] = ACTIONS(2118), - [aux_sym_control_path_token1] = ACTIONS(2118), - [aux_sym_control_persist_token1] = ACTIONS(2118), - [aux_sym_dynamic_forward_token1] = ACTIONS(2118), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2118), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2118), - [aux_sym_escape_char_token1] = ACTIONS(2118), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2118), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2118), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2118), - [aux_sym_forward_agent_token1] = ACTIONS(2118), - [aux_sym_forward_x11_token1] = ACTIONS(2120), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2118), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2118), - [aux_sym_gateway_ports_token1] = ACTIONS(2118), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2118), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2118), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2118), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2118), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2118), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2118), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2118), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2118), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2118), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2118), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2118), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2118), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2118), - [aux_sym_host_key_alias_token1] = ACTIONS(2118), - [aux_sym_hostname_token1] = ACTIONS(2118), - [aux_sym_identities_only_token1] = ACTIONS(2118), - [aux_sym_identity_agent_token1] = ACTIONS(2118), - [aux_sym_identity_file_token1] = ACTIONS(2118), - [aux_sym_ignore_unknown_token1] = ACTIONS(2118), - [aux_sym_include_token1] = ACTIONS(2118), - [aux_sym_ip_qos_token1] = ACTIONS(2118), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2118), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2118), - [aux_sym_kex_algorithms_token1] = ACTIONS(2118), - [aux_sym_known_hosts_command_token1] = ACTIONS(2118), - [aux_sym_local_command_token1] = ACTIONS(2118), - [aux_sym_local_forward_token1] = ACTIONS(2118), - [aux_sym_log_level_token1] = ACTIONS(2118), - [aux_sym_log_verbose_token1] = ACTIONS(2118), - [aux_sym_macs_token1] = ACTIONS(2118), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2118), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2118), - [aux_sym_password_authentication_token1] = ACTIONS(2118), - [aux_sym_permit_local_command_token1] = ACTIONS(2118), - [aux_sym_permit_remote_open_token1] = ACTIONS(2118), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2118), - [aux_sym_port_token1] = ACTIONS(2118), - [aux_sym_preferred_authentications_token1] = ACTIONS(2118), - [aux_sym_protocol_token1] = ACTIONS(2118), - [aux_sym_proxy_command_token1] = ACTIONS(2118), - [aux_sym_proxy_jump_token1] = ACTIONS(2118), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2118), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2118), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2118), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2118), - [aux_sym_rekey_limit_token1] = ACTIONS(2118), - [aux_sym_remote_command_token1] = ACTIONS(2118), - [aux_sym_remote_forward_token1] = ACTIONS(2118), - [aux_sym_request_tty_token1] = ACTIONS(2118), - [aux_sym_required_rsa_size_token1] = ACTIONS(2118), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2118), - [aux_sym_security_key_provider_token1] = ACTIONS(2118), - [aux_sym_send_env_token1] = ACTIONS(2118), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2118), - [aux_sym_server_alive_interval_token1] = ACTIONS(2118), - [aux_sym_session_type_token1] = ACTIONS(2118), - [aux_sym_set_env_token1] = ACTIONS(2118), - [aux_sym_stdin_null_token1] = ACTIONS(2118), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2118), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2118), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2118), - [aux_sym_syslog_facility_token1] = ACTIONS(2118), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2118), - [aux_sym_keep_alive_token1] = ACTIONS(2118), - [aux_sym_tag_token1] = ACTIONS(2118), - [aux_sym_tunnel_token1] = ACTIONS(2120), - [aux_sym_tunnel_device_token1] = ACTIONS(2118), - [aux_sym_update_host_keys_token1] = ACTIONS(2118), - [aux_sym_use_keychain_token1] = ACTIONS(2118), - [aux_sym_use_roaming_token1] = ACTIONS(2118), - [aux_sym_user_token1] = ACTIONS(2120), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2118), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2118), - [aux_sym_visual_host_key_token1] = ACTIONS(2118), - [aux_sym_xauth_location_token1] = ACTIONS(2118), + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(2129), + [aux_sym_match_token1] = ACTIONS(2125), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2125), + [aux_sym_address_family_token1] = ACTIONS(2125), + [aux_sym_batch_mode_token1] = ACTIONS(2125), + [aux_sym_bind_address_token1] = ACTIONS(2125), + [aux_sym_bind_interface_token1] = ACTIONS(2125), + [aux_sym_canonical_domains_token1] = ACTIONS(2125), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2125), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2125), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2125), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2125), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2125), + [aux_sym_certificate_file_token1] = ACTIONS(2125), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2125), + [aux_sym_channel_timeout_token1] = ACTIONS(2125), + [aux_sym_check_host_ip_token1] = ACTIONS(2125), + [aux_sym_ciphers_token1] = ACTIONS(2125), + [aux_sym_cipher_token1] = ACTIONS(2127), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2125), + [aux_sym_compression_token1] = ACTIONS(2125), + [aux_sym_connection_attempts_token1] = ACTIONS(2125), + [aux_sym_connect_timeout_token1] = ACTIONS(2125), + [aux_sym_control_master_token1] = ACTIONS(2125), + [aux_sym_control_path_token1] = ACTIONS(2125), + [aux_sym_control_persist_token1] = ACTIONS(2125), + [aux_sym_dynamic_forward_token1] = ACTIONS(2125), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2125), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2125), + [aux_sym_escape_char_token1] = ACTIONS(2125), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2125), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2125), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2125), + [aux_sym_forward_agent_token1] = ACTIONS(2125), + [aux_sym_forward_x11_token1] = ACTIONS(2127), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2125), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2125), + [aux_sym_gateway_ports_token1] = ACTIONS(2125), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2125), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2125), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2125), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2125), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2125), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2125), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2125), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2125), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2125), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2125), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2125), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2125), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2125), + [aux_sym_host_key_alias_token1] = ACTIONS(2125), + [aux_sym_hostname_token1] = ACTIONS(2125), + [aux_sym_identities_only_token1] = ACTIONS(2125), + [aux_sym_identity_agent_token1] = ACTIONS(2125), + [aux_sym_identity_file_token1] = ACTIONS(2125), + [aux_sym_ignore_unknown_token1] = ACTIONS(2125), + [aux_sym_include_token1] = ACTIONS(2125), + [aux_sym_ip_qos_token1] = ACTIONS(2125), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2125), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2125), + [aux_sym_kex_algorithms_token1] = ACTIONS(2125), + [aux_sym_known_hosts_command_token1] = ACTIONS(2125), + [aux_sym_local_command_token1] = ACTIONS(2125), + [aux_sym_local_forward_token1] = ACTIONS(2125), + [aux_sym_log_level_token1] = ACTIONS(2125), + [aux_sym_log_verbose_token1] = ACTIONS(2125), + [aux_sym_macs_token1] = ACTIONS(2125), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2125), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2125), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2125), + [aux_sym_password_authentication_token1] = ACTIONS(2125), + [aux_sym_permit_local_command_token1] = ACTIONS(2125), + [aux_sym_permit_remote_open_token1] = ACTIONS(2125), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2125), + [aux_sym_port_token1] = ACTIONS(2125), + [aux_sym_preferred_authentications_token1] = ACTIONS(2125), + [aux_sym_protocol_token1] = ACTIONS(2125), + [aux_sym_proxy_command_token1] = ACTIONS(2125), + [aux_sym_proxy_jump_token1] = ACTIONS(2125), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2125), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2125), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2125), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2125), + [aux_sym_rekey_limit_token1] = ACTIONS(2125), + [aux_sym_remote_command_token1] = ACTIONS(2125), + [aux_sym_remote_forward_token1] = ACTIONS(2125), + [aux_sym_request_tty_token1] = ACTIONS(2125), + [aux_sym_required_rsa_size_token1] = ACTIONS(2125), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2125), + [aux_sym_security_key_provider_token1] = ACTIONS(2125), + [aux_sym_send_env_token1] = ACTIONS(2125), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2125), + [aux_sym_server_alive_interval_token1] = ACTIONS(2125), + [aux_sym_session_type_token1] = ACTIONS(2125), + [aux_sym_set_env_token1] = ACTIONS(2125), + [aux_sym_stdin_null_token1] = ACTIONS(2125), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2125), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2125), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2125), + [aux_sym_syslog_facility_token1] = ACTIONS(2125), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2125), + [aux_sym_keep_alive_token1] = ACTIONS(2125), + [aux_sym_tag_token1] = ACTIONS(2125), + [aux_sym_tunnel_token1] = ACTIONS(2127), + [aux_sym_tunnel_device_token1] = ACTIONS(2125), + [aux_sym_update_host_keys_token1] = ACTIONS(2125), + [aux_sym_use_keychain_token1] = ACTIONS(2125), + [aux_sym_use_roaming_token1] = ACTIONS(2125), + [aux_sym_user_token1] = ACTIONS(2127), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2125), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2125), + [aux_sym_visual_host_key_token1] = ACTIONS(2125), + [aux_sym_xauth_location_token1] = ACTIONS(2125), }, [267] = { - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2122), - [aux_sym_match_token1] = ACTIONS(2122), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2122), - [aux_sym_address_family_token1] = ACTIONS(2122), - [aux_sym_batch_mode_token1] = ACTIONS(2122), - [aux_sym_bind_address_token1] = ACTIONS(2122), - [aux_sym_bind_interface_token1] = ACTIONS(2122), - [aux_sym_canonical_domains_token1] = ACTIONS(2122), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2122), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2122), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2122), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2122), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2122), - [aux_sym_certificate_file_token1] = ACTIONS(2122), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2122), - [aux_sym_channel_timeout_token1] = ACTIONS(2122), - [aux_sym_check_host_ip_token1] = ACTIONS(2122), - [aux_sym_ciphers_token1] = ACTIONS(2122), - [aux_sym_cipher_token1] = ACTIONS(2124), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2122), - [aux_sym_compression_token1] = ACTIONS(2122), - [aux_sym_connection_attempts_token1] = ACTIONS(2122), - [aux_sym_connect_timeout_token1] = ACTIONS(2122), - [aux_sym_control_master_token1] = ACTIONS(2122), - [aux_sym_control_path_token1] = ACTIONS(2122), - [aux_sym_control_persist_token1] = ACTIONS(2122), - [aux_sym_dynamic_forward_token1] = ACTIONS(2122), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2122), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2122), - [aux_sym_escape_char_token1] = ACTIONS(2122), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2122), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2122), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2122), - [aux_sym_forward_agent_token1] = ACTIONS(2122), - [aux_sym_forward_x11_token1] = ACTIONS(2124), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2122), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2122), - [aux_sym_gateway_ports_token1] = ACTIONS(2122), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2122), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2122), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2122), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2122), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2122), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2122), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2122), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2122), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2122), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2122), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2122), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2122), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2122), - [aux_sym_host_key_alias_token1] = ACTIONS(2122), - [aux_sym_hostname_token1] = ACTIONS(2122), - [aux_sym_identities_only_token1] = ACTIONS(2122), - [aux_sym_identity_agent_token1] = ACTIONS(2122), - [aux_sym_identity_file_token1] = ACTIONS(2122), - [aux_sym_ignore_unknown_token1] = ACTIONS(2122), - [aux_sym_include_token1] = ACTIONS(2122), - [aux_sym_ip_qos_token1] = ACTIONS(2122), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2122), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2122), - [aux_sym_kex_algorithms_token1] = ACTIONS(2122), - [aux_sym_known_hosts_command_token1] = ACTIONS(2122), - [aux_sym_local_command_token1] = ACTIONS(2122), - [aux_sym_local_forward_token1] = ACTIONS(2122), - [aux_sym_log_level_token1] = ACTIONS(2122), - [aux_sym_log_verbose_token1] = ACTIONS(2122), - [aux_sym_macs_token1] = ACTIONS(2122), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2122), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2122), - [aux_sym_password_authentication_token1] = ACTIONS(2122), - [aux_sym_permit_local_command_token1] = ACTIONS(2122), - [aux_sym_permit_remote_open_token1] = ACTIONS(2122), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2122), - [aux_sym_port_token1] = ACTIONS(2122), - [aux_sym_preferred_authentications_token1] = ACTIONS(2122), - [aux_sym_protocol_token1] = ACTIONS(2122), - [aux_sym_proxy_command_token1] = ACTIONS(2122), - [aux_sym_proxy_jump_token1] = ACTIONS(2122), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2122), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2122), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2122), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2122), - [aux_sym_rekey_limit_token1] = ACTIONS(2122), - [aux_sym_remote_command_token1] = ACTIONS(2122), - [aux_sym_remote_forward_token1] = ACTIONS(2122), - [aux_sym_request_tty_token1] = ACTIONS(2122), - [aux_sym_required_rsa_size_token1] = ACTIONS(2122), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2122), - [aux_sym_security_key_provider_token1] = ACTIONS(2122), - [aux_sym_send_env_token1] = ACTIONS(2122), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2122), - [aux_sym_server_alive_interval_token1] = ACTIONS(2122), - [aux_sym_session_type_token1] = ACTIONS(2122), - [aux_sym_set_env_token1] = ACTIONS(2122), - [aux_sym_stdin_null_token1] = ACTIONS(2122), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2122), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2122), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2122), - [aux_sym_syslog_facility_token1] = ACTIONS(2122), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2122), - [aux_sym_keep_alive_token1] = ACTIONS(2122), - [aux_sym_tag_token1] = ACTIONS(2122), - [aux_sym_tunnel_token1] = ACTIONS(2124), - [aux_sym_tunnel_device_token1] = ACTIONS(2122), - [aux_sym_update_host_keys_token1] = ACTIONS(2122), - [aux_sym_use_keychain_token1] = ACTIONS(2122), - [aux_sym_use_roaming_token1] = ACTIONS(2122), - [aux_sym_user_token1] = ACTIONS(2124), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2122), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2122), - [aux_sym_visual_host_key_token1] = ACTIONS(2122), - [aux_sym_xauth_location_token1] = ACTIONS(2122), + [ts_builtin_sym_end] = ACTIONS(2131), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(2135), + [aux_sym_match_token1] = ACTIONS(2131), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2131), + [aux_sym_address_family_token1] = ACTIONS(2131), + [aux_sym_batch_mode_token1] = ACTIONS(2131), + [aux_sym_bind_address_token1] = ACTIONS(2131), + [aux_sym_bind_interface_token1] = ACTIONS(2131), + [aux_sym_canonical_domains_token1] = ACTIONS(2131), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2131), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2131), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2131), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2131), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2131), + [aux_sym_certificate_file_token1] = ACTIONS(2131), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2131), + [aux_sym_channel_timeout_token1] = ACTIONS(2131), + [aux_sym_check_host_ip_token1] = ACTIONS(2131), + [aux_sym_ciphers_token1] = ACTIONS(2131), + [aux_sym_cipher_token1] = ACTIONS(2133), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2131), + [aux_sym_compression_token1] = ACTIONS(2131), + [aux_sym_connection_attempts_token1] = ACTIONS(2131), + [aux_sym_connect_timeout_token1] = ACTIONS(2131), + [aux_sym_control_master_token1] = ACTIONS(2131), + [aux_sym_control_path_token1] = ACTIONS(2131), + [aux_sym_control_persist_token1] = ACTIONS(2131), + [aux_sym_dynamic_forward_token1] = ACTIONS(2131), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2131), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2131), + [aux_sym_escape_char_token1] = ACTIONS(2131), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2131), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2131), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2131), + [aux_sym_forward_agent_token1] = ACTIONS(2131), + [aux_sym_forward_x11_token1] = ACTIONS(2133), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2131), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2131), + [aux_sym_gateway_ports_token1] = ACTIONS(2131), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2131), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2131), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2131), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2131), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2131), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2131), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2131), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2131), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2131), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2131), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2131), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2131), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2131), + [aux_sym_host_key_alias_token1] = ACTIONS(2131), + [aux_sym_hostname_token1] = ACTIONS(2131), + [aux_sym_identities_only_token1] = ACTIONS(2131), + [aux_sym_identity_agent_token1] = ACTIONS(2131), + [aux_sym_identity_file_token1] = ACTIONS(2131), + [aux_sym_ignore_unknown_token1] = ACTIONS(2131), + [aux_sym_include_token1] = ACTIONS(2131), + [aux_sym_ip_qos_token1] = ACTIONS(2131), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2131), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2131), + [aux_sym_kex_algorithms_token1] = ACTIONS(2131), + [aux_sym_known_hosts_command_token1] = ACTIONS(2131), + [aux_sym_local_command_token1] = ACTIONS(2131), + [aux_sym_local_forward_token1] = ACTIONS(2131), + [aux_sym_log_level_token1] = ACTIONS(2131), + [aux_sym_log_verbose_token1] = ACTIONS(2131), + [aux_sym_macs_token1] = ACTIONS(2131), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2131), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2131), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2131), + [aux_sym_password_authentication_token1] = ACTIONS(2131), + [aux_sym_permit_local_command_token1] = ACTIONS(2131), + [aux_sym_permit_remote_open_token1] = ACTIONS(2131), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2131), + [aux_sym_port_token1] = ACTIONS(2131), + [aux_sym_preferred_authentications_token1] = ACTIONS(2131), + [aux_sym_protocol_token1] = ACTIONS(2131), + [aux_sym_proxy_command_token1] = ACTIONS(2131), + [aux_sym_proxy_jump_token1] = ACTIONS(2131), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2131), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2131), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2131), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2131), + [aux_sym_rekey_limit_token1] = ACTIONS(2131), + [aux_sym_remote_command_token1] = ACTIONS(2131), + [aux_sym_remote_forward_token1] = ACTIONS(2131), + [aux_sym_request_tty_token1] = ACTIONS(2131), + [aux_sym_required_rsa_size_token1] = ACTIONS(2131), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2131), + [aux_sym_security_key_provider_token1] = ACTIONS(2131), + [aux_sym_send_env_token1] = ACTIONS(2131), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2131), + [aux_sym_server_alive_interval_token1] = ACTIONS(2131), + [aux_sym_session_type_token1] = ACTIONS(2131), + [aux_sym_set_env_token1] = ACTIONS(2131), + [aux_sym_stdin_null_token1] = ACTIONS(2131), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2131), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2131), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2131), + [aux_sym_syslog_facility_token1] = ACTIONS(2131), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2131), + [aux_sym_keep_alive_token1] = ACTIONS(2131), + [aux_sym_tag_token1] = ACTIONS(2131), + [aux_sym_tunnel_token1] = ACTIONS(2133), + [aux_sym_tunnel_device_token1] = ACTIONS(2131), + [aux_sym_update_host_keys_token1] = ACTIONS(2131), + [aux_sym_use_keychain_token1] = ACTIONS(2131), + [aux_sym_use_roaming_token1] = ACTIONS(2131), + [aux_sym_user_token1] = ACTIONS(2133), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2131), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2131), + [aux_sym_visual_host_key_token1] = ACTIONS(2131), + [aux_sym_xauth_location_token1] = ACTIONS(2131), }, [268] = { - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2128), - [anon_sym_DQUOTE] = ACTIONS(2130), - [aux_sym_match_token1] = ACTIONS(2126), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2126), - [aux_sym_address_family_token1] = ACTIONS(2126), - [aux_sym_batch_mode_token1] = ACTIONS(2126), - [aux_sym_bind_address_token1] = ACTIONS(2126), - [aux_sym_bind_interface_token1] = ACTIONS(2126), - [aux_sym_canonical_domains_token1] = ACTIONS(2126), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2126), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2126), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2126), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2126), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2126), - [aux_sym_certificate_file_token1] = ACTIONS(2126), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2126), - [aux_sym_channel_timeout_token1] = ACTIONS(2126), - [aux_sym_check_host_ip_token1] = ACTIONS(2126), - [aux_sym_ciphers_token1] = ACTIONS(2126), - [aux_sym_cipher_token1] = ACTIONS(2128), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2126), - [aux_sym_compression_token1] = ACTIONS(2126), - [aux_sym_connection_attempts_token1] = ACTIONS(2126), - [aux_sym_connect_timeout_token1] = ACTIONS(2126), - [aux_sym_control_master_token1] = ACTIONS(2126), - [aux_sym_control_path_token1] = ACTIONS(2126), - [aux_sym_control_persist_token1] = ACTIONS(2126), - [aux_sym_dynamic_forward_token1] = ACTIONS(2126), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2126), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2126), - [aux_sym_escape_char_token1] = ACTIONS(2126), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2126), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2126), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2126), - [aux_sym_forward_agent_token1] = ACTIONS(2126), - [aux_sym_forward_x11_token1] = ACTIONS(2128), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2126), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2126), - [aux_sym_gateway_ports_token1] = ACTIONS(2126), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2126), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2126), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2126), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2126), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2126), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2126), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2126), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2126), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2126), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2126), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2126), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2126), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2126), - [aux_sym_host_key_alias_token1] = ACTIONS(2126), - [aux_sym_hostname_token1] = ACTIONS(2126), - [aux_sym_identities_only_token1] = ACTIONS(2126), - [aux_sym_identity_agent_token1] = ACTIONS(2126), - [aux_sym_identity_file_token1] = ACTIONS(2126), - [aux_sym_ignore_unknown_token1] = ACTIONS(2126), - [aux_sym_include_token1] = ACTIONS(2126), - [aux_sym_ip_qos_token1] = ACTIONS(2126), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2126), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2126), - [aux_sym_kex_algorithms_token1] = ACTIONS(2126), - [aux_sym_known_hosts_command_token1] = ACTIONS(2126), - [aux_sym_local_command_token1] = ACTIONS(2126), - [aux_sym_local_forward_token1] = ACTIONS(2126), - [aux_sym_log_level_token1] = ACTIONS(2126), - [aux_sym_log_verbose_token1] = ACTIONS(2126), - [aux_sym_macs_token1] = ACTIONS(2126), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2126), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2126), - [aux_sym_password_authentication_token1] = ACTIONS(2126), - [aux_sym_permit_local_command_token1] = ACTIONS(2126), - [aux_sym_permit_remote_open_token1] = ACTIONS(2126), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2126), - [aux_sym_port_token1] = ACTIONS(2126), - [aux_sym_preferred_authentications_token1] = ACTIONS(2126), - [aux_sym_protocol_token1] = ACTIONS(2126), - [aux_sym_proxy_command_token1] = ACTIONS(2126), - [aux_sym_proxy_jump_token1] = ACTIONS(2126), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2126), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2126), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2126), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2126), - [aux_sym_rekey_limit_token1] = ACTIONS(2126), - [aux_sym_remote_command_token1] = ACTIONS(2126), - [aux_sym_remote_forward_token1] = ACTIONS(2126), - [aux_sym_request_tty_token1] = ACTIONS(2126), - [aux_sym_required_rsa_size_token1] = ACTIONS(2126), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2126), - [aux_sym_security_key_provider_token1] = ACTIONS(2126), - [aux_sym_send_env_token1] = ACTIONS(2126), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2126), - [aux_sym_server_alive_interval_token1] = ACTIONS(2126), - [aux_sym_session_type_token1] = ACTIONS(2126), - [aux_sym_set_env_token1] = ACTIONS(2126), - [aux_sym_stdin_null_token1] = ACTIONS(2126), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2126), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2126), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2126), - [aux_sym_syslog_facility_token1] = ACTIONS(2126), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2126), - [aux_sym_keep_alive_token1] = ACTIONS(2126), - [aux_sym_tag_token1] = ACTIONS(2126), - [aux_sym_tunnel_token1] = ACTIONS(2128), - [aux_sym_tunnel_device_token1] = ACTIONS(2126), - [aux_sym_update_host_keys_token1] = ACTIONS(2126), - [aux_sym_use_keychain_token1] = ACTIONS(2126), - [aux_sym_use_roaming_token1] = ACTIONS(2126), - [aux_sym_user_token1] = ACTIONS(2128), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2126), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2126), - [aux_sym_visual_host_key_token1] = ACTIONS(2126), - [aux_sym_xauth_location_token1] = ACTIONS(2126), + [ts_builtin_sym_end] = ACTIONS(2137), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2137), + [aux_sym_match_token1] = ACTIONS(2137), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2137), + [aux_sym_address_family_token1] = ACTIONS(2137), + [aux_sym_batch_mode_token1] = ACTIONS(2137), + [aux_sym_bind_address_token1] = ACTIONS(2137), + [aux_sym_bind_interface_token1] = ACTIONS(2137), + [aux_sym_canonical_domains_token1] = ACTIONS(2137), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2137), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2137), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2137), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2137), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2137), + [aux_sym_certificate_file_token1] = ACTIONS(2137), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2137), + [aux_sym_channel_timeout_token1] = ACTIONS(2137), + [aux_sym_check_host_ip_token1] = ACTIONS(2137), + [aux_sym_ciphers_token1] = ACTIONS(2137), + [aux_sym_cipher_token1] = ACTIONS(2139), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2137), + [aux_sym_compression_token1] = ACTIONS(2137), + [aux_sym_connection_attempts_token1] = ACTIONS(2137), + [aux_sym_connect_timeout_token1] = ACTIONS(2137), + [aux_sym_control_master_token1] = ACTIONS(2137), + [aux_sym_control_path_token1] = ACTIONS(2137), + [aux_sym_control_persist_token1] = ACTIONS(2137), + [aux_sym_dynamic_forward_token1] = ACTIONS(2137), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2137), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2137), + [aux_sym_escape_char_token1] = ACTIONS(2137), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2137), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2137), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2137), + [aux_sym_forward_agent_token1] = ACTIONS(2137), + [aux_sym_forward_x11_token1] = ACTIONS(2139), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2137), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2137), + [aux_sym_gateway_ports_token1] = ACTIONS(2137), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2137), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2137), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2137), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2137), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2137), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2137), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2137), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2137), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2137), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2137), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2137), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2137), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2137), + [aux_sym_host_key_alias_token1] = ACTIONS(2137), + [aux_sym_hostname_token1] = ACTIONS(2137), + [aux_sym_identities_only_token1] = ACTIONS(2137), + [aux_sym_identity_agent_token1] = ACTIONS(2137), + [aux_sym_identity_file_token1] = ACTIONS(2137), + [aux_sym_ignore_unknown_token1] = ACTIONS(2137), + [aux_sym_include_token1] = ACTIONS(2137), + [aux_sym_ip_qos_token1] = ACTIONS(2137), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2137), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2137), + [aux_sym_kex_algorithms_token1] = ACTIONS(2137), + [aux_sym_known_hosts_command_token1] = ACTIONS(2137), + [aux_sym_local_command_token1] = ACTIONS(2137), + [aux_sym_local_forward_token1] = ACTIONS(2137), + [aux_sym_log_level_token1] = ACTIONS(2137), + [aux_sym_log_verbose_token1] = ACTIONS(2137), + [aux_sym_macs_token1] = ACTIONS(2137), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2137), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2137), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2137), + [aux_sym_password_authentication_token1] = ACTIONS(2137), + [aux_sym_permit_local_command_token1] = ACTIONS(2137), + [aux_sym_permit_remote_open_token1] = ACTIONS(2137), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2137), + [aux_sym_port_token1] = ACTIONS(2137), + [aux_sym_preferred_authentications_token1] = ACTIONS(2137), + [aux_sym_protocol_token1] = ACTIONS(2137), + [aux_sym_proxy_command_token1] = ACTIONS(2137), + [aux_sym_proxy_jump_token1] = ACTIONS(2137), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2137), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2137), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2137), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2137), + [aux_sym_rekey_limit_token1] = ACTIONS(2137), + [aux_sym_remote_command_token1] = ACTIONS(2137), + [aux_sym_remote_forward_token1] = ACTIONS(2137), + [aux_sym_request_tty_token1] = ACTIONS(2137), + [aux_sym_required_rsa_size_token1] = ACTIONS(2137), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2137), + [aux_sym_security_key_provider_token1] = ACTIONS(2137), + [aux_sym_send_env_token1] = ACTIONS(2137), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2137), + [aux_sym_server_alive_interval_token1] = ACTIONS(2137), + [aux_sym_session_type_token1] = ACTIONS(2137), + [aux_sym_set_env_token1] = ACTIONS(2137), + [aux_sym_stdin_null_token1] = ACTIONS(2137), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2137), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2137), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2137), + [aux_sym_syslog_facility_token1] = ACTIONS(2137), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2137), + [aux_sym_keep_alive_token1] = ACTIONS(2137), + [aux_sym_tag_token1] = ACTIONS(2137), + [aux_sym_tunnel_token1] = ACTIONS(2139), + [aux_sym_tunnel_device_token1] = ACTIONS(2137), + [aux_sym_update_host_keys_token1] = ACTIONS(2137), + [aux_sym_use_keychain_token1] = ACTIONS(2137), + [aux_sym_use_roaming_token1] = ACTIONS(2137), + [aux_sym_user_token1] = ACTIONS(2139), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2137), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2137), + [aux_sym_visual_host_key_token1] = ACTIONS(2137), + [aux_sym_xauth_location_token1] = ACTIONS(2137), }, [269] = { - [ts_builtin_sym_end] = ACTIONS(2132), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2132), - [aux_sym_match_token1] = ACTIONS(2132), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2132), - [aux_sym_address_family_token1] = ACTIONS(2132), - [aux_sym_batch_mode_token1] = ACTIONS(2132), - [aux_sym_bind_address_token1] = ACTIONS(2132), - [aux_sym_bind_interface_token1] = ACTIONS(2132), - [aux_sym_canonical_domains_token1] = ACTIONS(2132), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2132), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2132), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2132), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2132), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2132), - [aux_sym_certificate_file_token1] = ACTIONS(2132), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2132), - [aux_sym_channel_timeout_token1] = ACTIONS(2132), - [aux_sym_check_host_ip_token1] = ACTIONS(2132), - [aux_sym_ciphers_token1] = ACTIONS(2132), - [aux_sym_cipher_token1] = ACTIONS(2134), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2132), - [aux_sym_compression_token1] = ACTIONS(2132), - [aux_sym_connection_attempts_token1] = ACTIONS(2132), - [aux_sym_connect_timeout_token1] = ACTIONS(2132), - [aux_sym_control_master_token1] = ACTIONS(2132), - [aux_sym_control_path_token1] = ACTIONS(2132), - [aux_sym_control_persist_token1] = ACTIONS(2132), - [aux_sym_dynamic_forward_token1] = ACTIONS(2132), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2132), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2132), - [aux_sym_escape_char_token1] = ACTIONS(2132), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2132), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2132), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2132), - [aux_sym_forward_agent_token1] = ACTIONS(2132), - [aux_sym_forward_x11_token1] = ACTIONS(2134), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2132), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2132), - [aux_sym_gateway_ports_token1] = ACTIONS(2132), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2132), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2132), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2132), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2132), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2132), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2132), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2132), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2132), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2132), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2132), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2132), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2132), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2132), - [aux_sym_host_key_alias_token1] = ACTIONS(2132), - [aux_sym_hostname_token1] = ACTIONS(2132), - [aux_sym_identities_only_token1] = ACTIONS(2132), - [aux_sym_identity_agent_token1] = ACTIONS(2132), - [aux_sym_identity_file_token1] = ACTIONS(2132), - [aux_sym_ignore_unknown_token1] = ACTIONS(2132), - [aux_sym_include_token1] = ACTIONS(2132), - [aux_sym_ip_qos_token1] = ACTIONS(2132), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2132), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2132), - [aux_sym_kex_algorithms_token1] = ACTIONS(2132), - [aux_sym_known_hosts_command_token1] = ACTIONS(2132), - [aux_sym_local_command_token1] = ACTIONS(2132), - [aux_sym_local_forward_token1] = ACTIONS(2132), - [aux_sym_log_level_token1] = ACTIONS(2132), - [aux_sym_log_verbose_token1] = ACTIONS(2132), - [aux_sym_macs_token1] = ACTIONS(2132), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2132), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2132), - [aux_sym_password_authentication_token1] = ACTIONS(2132), - [aux_sym_permit_local_command_token1] = ACTIONS(2132), - [aux_sym_permit_remote_open_token1] = ACTIONS(2132), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2132), - [aux_sym_port_token1] = ACTIONS(2132), - [aux_sym_preferred_authentications_token1] = ACTIONS(2132), - [aux_sym_protocol_token1] = ACTIONS(2132), - [aux_sym_proxy_command_token1] = ACTIONS(2132), - [aux_sym_proxy_jump_token1] = ACTIONS(2132), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2132), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2132), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2132), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2132), - [aux_sym_rekey_limit_token1] = ACTIONS(2132), - [aux_sym_remote_command_token1] = ACTIONS(2132), - [aux_sym_remote_forward_token1] = ACTIONS(2132), - [aux_sym_request_tty_token1] = ACTIONS(2132), - [aux_sym_required_rsa_size_token1] = ACTIONS(2132), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2132), - [aux_sym_security_key_provider_token1] = ACTIONS(2132), - [aux_sym_send_env_token1] = ACTIONS(2132), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2132), - [aux_sym_server_alive_interval_token1] = ACTIONS(2132), - [aux_sym_session_type_token1] = ACTIONS(2132), - [aux_sym_set_env_token1] = ACTIONS(2132), - [aux_sym_stdin_null_token1] = ACTIONS(2132), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2132), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2132), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2132), - [aux_sym_syslog_facility_token1] = ACTIONS(2132), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2132), - [aux_sym_keep_alive_token1] = ACTIONS(2132), - [aux_sym_tag_token1] = ACTIONS(2132), - [aux_sym_tunnel_token1] = ACTIONS(2134), - [aux_sym_tunnel_device_token1] = ACTIONS(2132), - [aux_sym_update_host_keys_token1] = ACTIONS(2132), - [aux_sym_use_keychain_token1] = ACTIONS(2132), - [aux_sym_use_roaming_token1] = ACTIONS(2132), - [aux_sym_user_token1] = ACTIONS(2134), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2132), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2132), - [aux_sym_visual_host_key_token1] = ACTIONS(2132), - [aux_sym_xauth_location_token1] = ACTIONS(2132), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(2141), + [aux_sym_match_token1] = ACTIONS(2141), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2141), + [aux_sym_address_family_token1] = ACTIONS(2141), + [aux_sym_batch_mode_token1] = ACTIONS(2141), + [aux_sym_bind_address_token1] = ACTIONS(2141), + [aux_sym_bind_interface_token1] = ACTIONS(2141), + [aux_sym_canonical_domains_token1] = ACTIONS(2141), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2141), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2141), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2141), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2141), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2141), + [aux_sym_certificate_file_token1] = ACTIONS(2141), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2141), + [aux_sym_channel_timeout_token1] = ACTIONS(2141), + [aux_sym_check_host_ip_token1] = ACTIONS(2141), + [aux_sym_ciphers_token1] = ACTIONS(2141), + [aux_sym_cipher_token1] = ACTIONS(2143), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2141), + [aux_sym_compression_token1] = ACTIONS(2141), + [aux_sym_connection_attempts_token1] = ACTIONS(2141), + [aux_sym_connect_timeout_token1] = ACTIONS(2141), + [aux_sym_control_master_token1] = ACTIONS(2141), + [aux_sym_control_path_token1] = ACTIONS(2141), + [aux_sym_control_persist_token1] = ACTIONS(2141), + [aux_sym_dynamic_forward_token1] = ACTIONS(2141), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2141), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2141), + [aux_sym_escape_char_token1] = ACTIONS(2141), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2141), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2141), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2141), + [aux_sym_forward_agent_token1] = ACTIONS(2141), + [aux_sym_forward_x11_token1] = ACTIONS(2143), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2141), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2141), + [aux_sym_gateway_ports_token1] = ACTIONS(2141), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2141), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2141), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2141), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2141), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2141), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2141), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2141), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2141), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2141), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2141), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2141), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2141), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2141), + [aux_sym_host_key_alias_token1] = ACTIONS(2141), + [aux_sym_hostname_token1] = ACTIONS(2141), + [aux_sym_identities_only_token1] = ACTIONS(2141), + [aux_sym_identity_agent_token1] = ACTIONS(2141), + [aux_sym_identity_file_token1] = ACTIONS(2141), + [aux_sym_ignore_unknown_token1] = ACTIONS(2141), + [aux_sym_include_token1] = ACTIONS(2141), + [aux_sym_ip_qos_token1] = ACTIONS(2141), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2141), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2141), + [aux_sym_kex_algorithms_token1] = ACTIONS(2141), + [aux_sym_known_hosts_command_token1] = ACTIONS(2141), + [aux_sym_local_command_token1] = ACTIONS(2141), + [aux_sym_local_forward_token1] = ACTIONS(2141), + [aux_sym_log_level_token1] = ACTIONS(2141), + [aux_sym_log_verbose_token1] = ACTIONS(2141), + [aux_sym_macs_token1] = ACTIONS(2141), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2141), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2141), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2141), + [aux_sym_password_authentication_token1] = ACTIONS(2141), + [aux_sym_permit_local_command_token1] = ACTIONS(2141), + [aux_sym_permit_remote_open_token1] = ACTIONS(2141), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2141), + [aux_sym_port_token1] = ACTIONS(2141), + [aux_sym_preferred_authentications_token1] = ACTIONS(2141), + [aux_sym_protocol_token1] = ACTIONS(2141), + [aux_sym_proxy_command_token1] = ACTIONS(2141), + [aux_sym_proxy_jump_token1] = ACTIONS(2141), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2141), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2141), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2141), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2141), + [aux_sym_rekey_limit_token1] = ACTIONS(2141), + [aux_sym_remote_command_token1] = ACTIONS(2141), + [aux_sym_remote_forward_token1] = ACTIONS(2141), + [aux_sym_request_tty_token1] = ACTIONS(2141), + [aux_sym_required_rsa_size_token1] = ACTIONS(2141), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2141), + [aux_sym_security_key_provider_token1] = ACTIONS(2141), + [aux_sym_send_env_token1] = ACTIONS(2141), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2141), + [aux_sym_server_alive_interval_token1] = ACTIONS(2141), + [aux_sym_session_type_token1] = ACTIONS(2141), + [aux_sym_set_env_token1] = ACTIONS(2141), + [aux_sym_stdin_null_token1] = ACTIONS(2141), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2141), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2141), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2141), + [aux_sym_syslog_facility_token1] = ACTIONS(2141), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2141), + [aux_sym_keep_alive_token1] = ACTIONS(2141), + [aux_sym_tag_token1] = ACTIONS(2141), + [aux_sym_tunnel_token1] = ACTIONS(2143), + [aux_sym_tunnel_device_token1] = ACTIONS(2141), + [aux_sym_update_host_keys_token1] = ACTIONS(2141), + [aux_sym_use_keychain_token1] = ACTIONS(2141), + [aux_sym_use_roaming_token1] = ACTIONS(2141), + [aux_sym_user_token1] = ACTIONS(2143), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2141), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2141), + [aux_sym_visual_host_key_token1] = ACTIONS(2141), + [aux_sym_xauth_location_token1] = ACTIONS(2141), }, [270] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2140), - [aux_sym_match_token1] = ACTIONS(2136), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2136), - [aux_sym_address_family_token1] = ACTIONS(2136), - [aux_sym_batch_mode_token1] = ACTIONS(2136), - [aux_sym_bind_address_token1] = ACTIONS(2136), - [aux_sym_bind_interface_token1] = ACTIONS(2136), - [aux_sym_canonical_domains_token1] = ACTIONS(2136), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2136), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2136), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2136), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2136), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2136), - [aux_sym_certificate_file_token1] = ACTIONS(2136), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2136), - [aux_sym_channel_timeout_token1] = ACTIONS(2136), - [aux_sym_check_host_ip_token1] = ACTIONS(2136), - [aux_sym_ciphers_token1] = ACTIONS(2136), - [aux_sym_cipher_token1] = ACTIONS(2138), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2136), - [aux_sym_compression_token1] = ACTIONS(2136), - [aux_sym_connection_attempts_token1] = ACTIONS(2136), - [aux_sym_connect_timeout_token1] = ACTIONS(2136), - [aux_sym_control_master_token1] = ACTIONS(2136), - [aux_sym_control_path_token1] = ACTIONS(2136), - [aux_sym_control_persist_token1] = ACTIONS(2136), - [aux_sym_dynamic_forward_token1] = ACTIONS(2136), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2136), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2136), - [aux_sym_escape_char_token1] = ACTIONS(2136), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2136), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2136), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2136), - [aux_sym_forward_agent_token1] = ACTIONS(2136), - [aux_sym_forward_x11_token1] = ACTIONS(2138), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2136), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2136), - [aux_sym_gateway_ports_token1] = ACTIONS(2136), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2136), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2136), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2136), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2136), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2136), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2136), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2136), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2136), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2136), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2136), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2136), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2136), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2136), - [aux_sym_host_key_alias_token1] = ACTIONS(2136), - [aux_sym_hostname_token1] = ACTIONS(2136), - [aux_sym_identities_only_token1] = ACTIONS(2136), - [aux_sym_identity_agent_token1] = ACTIONS(2136), - [aux_sym_identity_file_token1] = ACTIONS(2136), - [aux_sym_ignore_unknown_token1] = ACTIONS(2136), - [aux_sym_include_token1] = ACTIONS(2136), - [aux_sym_ip_qos_token1] = ACTIONS(2136), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2136), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2136), - [aux_sym_kex_algorithms_token1] = ACTIONS(2136), - [aux_sym_known_hosts_command_token1] = ACTIONS(2136), - [aux_sym_local_command_token1] = ACTIONS(2136), - [aux_sym_local_forward_token1] = ACTIONS(2136), - [aux_sym_log_level_token1] = ACTIONS(2136), - [aux_sym_log_verbose_token1] = ACTIONS(2136), - [aux_sym_macs_token1] = ACTIONS(2136), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2136), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2136), - [aux_sym_password_authentication_token1] = ACTIONS(2136), - [aux_sym_permit_local_command_token1] = ACTIONS(2136), - [aux_sym_permit_remote_open_token1] = ACTIONS(2136), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2136), - [aux_sym_port_token1] = ACTIONS(2136), - [aux_sym_preferred_authentications_token1] = ACTIONS(2136), - [aux_sym_protocol_token1] = ACTIONS(2136), - [aux_sym_proxy_command_token1] = ACTIONS(2136), - [aux_sym_proxy_jump_token1] = ACTIONS(2136), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2136), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2136), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2136), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2136), - [aux_sym_rekey_limit_token1] = ACTIONS(2136), - [aux_sym_remote_command_token1] = ACTIONS(2136), - [aux_sym_remote_forward_token1] = ACTIONS(2136), - [aux_sym_request_tty_token1] = ACTIONS(2136), - [aux_sym_required_rsa_size_token1] = ACTIONS(2136), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2136), - [aux_sym_security_key_provider_token1] = ACTIONS(2136), - [aux_sym_send_env_token1] = ACTIONS(2136), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2136), - [aux_sym_server_alive_interval_token1] = ACTIONS(2136), - [aux_sym_session_type_token1] = ACTIONS(2136), - [aux_sym_set_env_token1] = ACTIONS(2136), - [aux_sym_stdin_null_token1] = ACTIONS(2136), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2136), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2136), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2136), - [aux_sym_syslog_facility_token1] = ACTIONS(2136), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2136), - [aux_sym_keep_alive_token1] = ACTIONS(2136), - [aux_sym_tag_token1] = ACTIONS(2136), - [aux_sym_tunnel_token1] = ACTIONS(2138), - [aux_sym_tunnel_device_token1] = ACTIONS(2136), - [aux_sym_update_host_keys_token1] = ACTIONS(2136), - [aux_sym_use_keychain_token1] = ACTIONS(2136), - [aux_sym_use_roaming_token1] = ACTIONS(2136), - [aux_sym_user_token1] = ACTIONS(2138), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2136), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2136), - [aux_sym_visual_host_key_token1] = ACTIONS(2136), - [aux_sym_xauth_location_token1] = ACTIONS(2136), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(2149), + [aux_sym_match_token1] = ACTIONS(2145), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2145), + [aux_sym_address_family_token1] = ACTIONS(2145), + [aux_sym_batch_mode_token1] = ACTIONS(2145), + [aux_sym_bind_address_token1] = ACTIONS(2145), + [aux_sym_bind_interface_token1] = ACTIONS(2145), + [aux_sym_canonical_domains_token1] = ACTIONS(2145), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2145), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2145), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2145), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2145), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2145), + [aux_sym_certificate_file_token1] = ACTIONS(2145), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2145), + [aux_sym_channel_timeout_token1] = ACTIONS(2145), + [aux_sym_check_host_ip_token1] = ACTIONS(2145), + [aux_sym_ciphers_token1] = ACTIONS(2145), + [aux_sym_cipher_token1] = ACTIONS(2147), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2145), + [aux_sym_compression_token1] = ACTIONS(2145), + [aux_sym_connection_attempts_token1] = ACTIONS(2145), + [aux_sym_connect_timeout_token1] = ACTIONS(2145), + [aux_sym_control_master_token1] = ACTIONS(2145), + [aux_sym_control_path_token1] = ACTIONS(2145), + [aux_sym_control_persist_token1] = ACTIONS(2145), + [aux_sym_dynamic_forward_token1] = ACTIONS(2145), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2145), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2145), + [aux_sym_escape_char_token1] = ACTIONS(2145), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2145), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2145), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2145), + [aux_sym_forward_agent_token1] = ACTIONS(2145), + [aux_sym_forward_x11_token1] = ACTIONS(2147), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2145), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2145), + [aux_sym_gateway_ports_token1] = ACTIONS(2145), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2145), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2145), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2145), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2145), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2145), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2145), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2145), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2145), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2145), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2145), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2145), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2145), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2145), + [aux_sym_host_key_alias_token1] = ACTIONS(2145), + [aux_sym_hostname_token1] = ACTIONS(2145), + [aux_sym_identities_only_token1] = ACTIONS(2145), + [aux_sym_identity_agent_token1] = ACTIONS(2145), + [aux_sym_identity_file_token1] = ACTIONS(2145), + [aux_sym_ignore_unknown_token1] = ACTIONS(2145), + [aux_sym_include_token1] = ACTIONS(2145), + [aux_sym_ip_qos_token1] = ACTIONS(2145), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2145), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2145), + [aux_sym_kex_algorithms_token1] = ACTIONS(2145), + [aux_sym_known_hosts_command_token1] = ACTIONS(2145), + [aux_sym_local_command_token1] = ACTIONS(2145), + [aux_sym_local_forward_token1] = ACTIONS(2145), + [aux_sym_log_level_token1] = ACTIONS(2145), + [aux_sym_log_verbose_token1] = ACTIONS(2145), + [aux_sym_macs_token1] = ACTIONS(2145), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2145), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2145), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2145), + [aux_sym_password_authentication_token1] = ACTIONS(2145), + [aux_sym_permit_local_command_token1] = ACTIONS(2145), + [aux_sym_permit_remote_open_token1] = ACTIONS(2145), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2145), + [aux_sym_port_token1] = ACTIONS(2145), + [aux_sym_preferred_authentications_token1] = ACTIONS(2145), + [aux_sym_protocol_token1] = ACTIONS(2145), + [aux_sym_proxy_command_token1] = ACTIONS(2145), + [aux_sym_proxy_jump_token1] = ACTIONS(2145), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2145), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2145), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2145), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2145), + [aux_sym_rekey_limit_token1] = ACTIONS(2145), + [aux_sym_remote_command_token1] = ACTIONS(2145), + [aux_sym_remote_forward_token1] = ACTIONS(2145), + [aux_sym_request_tty_token1] = ACTIONS(2145), + [aux_sym_required_rsa_size_token1] = ACTIONS(2145), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2145), + [aux_sym_security_key_provider_token1] = ACTIONS(2145), + [aux_sym_send_env_token1] = ACTIONS(2145), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2145), + [aux_sym_server_alive_interval_token1] = ACTIONS(2145), + [aux_sym_session_type_token1] = ACTIONS(2145), + [aux_sym_set_env_token1] = ACTIONS(2145), + [aux_sym_stdin_null_token1] = ACTIONS(2145), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2145), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2145), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2145), + [aux_sym_syslog_facility_token1] = ACTIONS(2145), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2145), + [aux_sym_keep_alive_token1] = ACTIONS(2145), + [aux_sym_tag_token1] = ACTIONS(2145), + [aux_sym_tunnel_token1] = ACTIONS(2147), + [aux_sym_tunnel_device_token1] = ACTIONS(2145), + [aux_sym_update_host_keys_token1] = ACTIONS(2145), + [aux_sym_use_keychain_token1] = ACTIONS(2145), + [aux_sym_use_roaming_token1] = ACTIONS(2145), + [aux_sym_user_token1] = ACTIONS(2147), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2145), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2145), + [aux_sym_visual_host_key_token1] = ACTIONS(2145), + [aux_sym_xauth_location_token1] = ACTIONS(2145), }, [271] = { - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2142), - [aux_sym_match_token1] = ACTIONS(2142), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2142), - [aux_sym_address_family_token1] = ACTIONS(2142), - [aux_sym_batch_mode_token1] = ACTIONS(2142), - [aux_sym_bind_address_token1] = ACTIONS(2142), - [aux_sym_bind_interface_token1] = ACTIONS(2142), - [aux_sym_canonical_domains_token1] = ACTIONS(2142), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2142), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2142), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2142), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2142), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2142), - [aux_sym_certificate_file_token1] = ACTIONS(2142), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2142), - [aux_sym_channel_timeout_token1] = ACTIONS(2142), - [aux_sym_check_host_ip_token1] = ACTIONS(2142), - [aux_sym_ciphers_token1] = ACTIONS(2142), - [aux_sym_cipher_token1] = ACTIONS(2144), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2142), - [aux_sym_compression_token1] = ACTIONS(2142), - [aux_sym_connection_attempts_token1] = ACTIONS(2142), - [aux_sym_connect_timeout_token1] = ACTIONS(2142), - [aux_sym_control_master_token1] = ACTIONS(2142), - [aux_sym_control_path_token1] = ACTIONS(2142), - [aux_sym_control_persist_token1] = ACTIONS(2142), - [aux_sym_dynamic_forward_token1] = ACTIONS(2142), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2142), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2142), - [aux_sym_escape_char_token1] = ACTIONS(2142), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2142), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2142), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2142), - [aux_sym_forward_agent_token1] = ACTIONS(2142), - [aux_sym_forward_x11_token1] = ACTIONS(2144), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2142), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2142), - [aux_sym_gateway_ports_token1] = ACTIONS(2142), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2142), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2142), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2142), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2142), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2142), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2142), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2142), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2142), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2142), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2142), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2142), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2142), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2142), - [aux_sym_host_key_alias_token1] = ACTIONS(2142), - [aux_sym_hostname_token1] = ACTIONS(2142), - [aux_sym_identities_only_token1] = ACTIONS(2142), - [aux_sym_identity_agent_token1] = ACTIONS(2142), - [aux_sym_identity_file_token1] = ACTIONS(2142), - [aux_sym_ignore_unknown_token1] = ACTIONS(2142), - [aux_sym_include_token1] = ACTIONS(2142), - [aux_sym_ip_qos_token1] = ACTIONS(2142), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2142), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2142), - [aux_sym_kex_algorithms_token1] = ACTIONS(2142), - [aux_sym_known_hosts_command_token1] = ACTIONS(2142), - [aux_sym_local_command_token1] = ACTIONS(2142), - [aux_sym_local_forward_token1] = ACTIONS(2142), - [aux_sym_log_level_token1] = ACTIONS(2142), - [aux_sym_log_verbose_token1] = ACTIONS(2142), - [aux_sym_macs_token1] = ACTIONS(2142), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2142), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2142), - [aux_sym_password_authentication_token1] = ACTIONS(2142), - [aux_sym_permit_local_command_token1] = ACTIONS(2142), - [aux_sym_permit_remote_open_token1] = ACTIONS(2142), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2142), - [aux_sym_port_token1] = ACTIONS(2142), - [aux_sym_preferred_authentications_token1] = ACTIONS(2142), - [aux_sym_protocol_token1] = ACTIONS(2142), - [aux_sym_proxy_command_token1] = ACTIONS(2142), - [aux_sym_proxy_jump_token1] = ACTIONS(2142), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2142), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2142), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2142), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2142), - [aux_sym_rekey_limit_token1] = ACTIONS(2142), - [aux_sym_remote_command_token1] = ACTIONS(2142), - [aux_sym_remote_forward_token1] = ACTIONS(2142), - [aux_sym_request_tty_token1] = ACTIONS(2142), - [aux_sym_required_rsa_size_token1] = ACTIONS(2142), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2142), - [aux_sym_security_key_provider_token1] = ACTIONS(2142), - [aux_sym_send_env_token1] = ACTIONS(2142), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2142), - [aux_sym_server_alive_interval_token1] = ACTIONS(2142), - [aux_sym_session_type_token1] = ACTIONS(2142), - [aux_sym_set_env_token1] = ACTIONS(2142), - [aux_sym_stdin_null_token1] = ACTIONS(2142), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2142), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2142), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2142), - [aux_sym_syslog_facility_token1] = ACTIONS(2142), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2142), - [aux_sym_keep_alive_token1] = ACTIONS(2142), - [aux_sym_tag_token1] = ACTIONS(2142), - [aux_sym_tunnel_token1] = ACTIONS(2144), - [aux_sym_tunnel_device_token1] = ACTIONS(2142), - [aux_sym_update_host_keys_token1] = ACTIONS(2142), - [aux_sym_use_keychain_token1] = ACTIONS(2142), - [aux_sym_use_roaming_token1] = ACTIONS(2142), - [aux_sym_user_token1] = ACTIONS(2144), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2142), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2142), - [aux_sym_visual_host_key_token1] = ACTIONS(2142), - [aux_sym_xauth_location_token1] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(2151), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(2151), + [aux_sym_match_token1] = ACTIONS(2151), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2151), + [aux_sym_address_family_token1] = ACTIONS(2151), + [aux_sym_batch_mode_token1] = ACTIONS(2151), + [aux_sym_bind_address_token1] = ACTIONS(2151), + [aux_sym_bind_interface_token1] = ACTIONS(2151), + [aux_sym_canonical_domains_token1] = ACTIONS(2151), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2151), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2151), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2151), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2151), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2151), + [aux_sym_certificate_file_token1] = ACTIONS(2151), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2151), + [aux_sym_channel_timeout_token1] = ACTIONS(2151), + [aux_sym_check_host_ip_token1] = ACTIONS(2151), + [aux_sym_ciphers_token1] = ACTIONS(2151), + [aux_sym_cipher_token1] = ACTIONS(2153), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2151), + [aux_sym_compression_token1] = ACTIONS(2151), + [aux_sym_connection_attempts_token1] = ACTIONS(2151), + [aux_sym_connect_timeout_token1] = ACTIONS(2151), + [aux_sym_control_master_token1] = ACTIONS(2151), + [aux_sym_control_path_token1] = ACTIONS(2151), + [aux_sym_control_persist_token1] = ACTIONS(2151), + [aux_sym_dynamic_forward_token1] = ACTIONS(2151), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2151), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2151), + [aux_sym_escape_char_token1] = ACTIONS(2151), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2151), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2151), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2151), + [aux_sym_forward_agent_token1] = ACTIONS(2151), + [aux_sym_forward_x11_token1] = ACTIONS(2153), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2151), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2151), + [aux_sym_gateway_ports_token1] = ACTIONS(2151), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2151), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2151), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2151), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2151), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2151), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2151), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2151), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2151), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2151), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2151), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2151), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2151), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2151), + [aux_sym_host_key_alias_token1] = ACTIONS(2151), + [aux_sym_hostname_token1] = ACTIONS(2151), + [aux_sym_identities_only_token1] = ACTIONS(2151), + [aux_sym_identity_agent_token1] = ACTIONS(2151), + [aux_sym_identity_file_token1] = ACTIONS(2151), + [aux_sym_ignore_unknown_token1] = ACTIONS(2151), + [aux_sym_include_token1] = ACTIONS(2151), + [aux_sym_ip_qos_token1] = ACTIONS(2151), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2151), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2151), + [aux_sym_kex_algorithms_token1] = ACTIONS(2151), + [aux_sym_known_hosts_command_token1] = ACTIONS(2151), + [aux_sym_local_command_token1] = ACTIONS(2151), + [aux_sym_local_forward_token1] = ACTIONS(2151), + [aux_sym_log_level_token1] = ACTIONS(2151), + [aux_sym_log_verbose_token1] = ACTIONS(2151), + [aux_sym_macs_token1] = ACTIONS(2151), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2151), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2151), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2151), + [aux_sym_password_authentication_token1] = ACTIONS(2151), + [aux_sym_permit_local_command_token1] = ACTIONS(2151), + [aux_sym_permit_remote_open_token1] = ACTIONS(2151), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2151), + [aux_sym_port_token1] = ACTIONS(2151), + [aux_sym_preferred_authentications_token1] = ACTIONS(2151), + [aux_sym_protocol_token1] = ACTIONS(2151), + [aux_sym_proxy_command_token1] = ACTIONS(2151), + [aux_sym_proxy_jump_token1] = ACTIONS(2151), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2151), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2151), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2151), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2151), + [aux_sym_rekey_limit_token1] = ACTIONS(2151), + [aux_sym_remote_command_token1] = ACTIONS(2151), + [aux_sym_remote_forward_token1] = ACTIONS(2151), + [aux_sym_request_tty_token1] = ACTIONS(2151), + [aux_sym_required_rsa_size_token1] = ACTIONS(2151), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2151), + [aux_sym_security_key_provider_token1] = ACTIONS(2151), + [aux_sym_send_env_token1] = ACTIONS(2151), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2151), + [aux_sym_server_alive_interval_token1] = ACTIONS(2151), + [aux_sym_session_type_token1] = ACTIONS(2151), + [aux_sym_set_env_token1] = ACTIONS(2151), + [aux_sym_stdin_null_token1] = ACTIONS(2151), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2151), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2151), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2151), + [aux_sym_syslog_facility_token1] = ACTIONS(2151), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2151), + [aux_sym_keep_alive_token1] = ACTIONS(2151), + [aux_sym_tag_token1] = ACTIONS(2151), + [aux_sym_tunnel_token1] = ACTIONS(2153), + [aux_sym_tunnel_device_token1] = ACTIONS(2151), + [aux_sym_update_host_keys_token1] = ACTIONS(2151), + [aux_sym_use_keychain_token1] = ACTIONS(2151), + [aux_sym_use_roaming_token1] = ACTIONS(2151), + [aux_sym_user_token1] = ACTIONS(2153), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2151), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2151), + [aux_sym_visual_host_key_token1] = ACTIONS(2151), + [aux_sym_xauth_location_token1] = ACTIONS(2151), }, [272] = { - [ts_builtin_sym_end] = ACTIONS(2146), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [aux_sym_match_token1] = ACTIONS(2146), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2146), - [aux_sym_address_family_token1] = ACTIONS(2146), - [aux_sym_batch_mode_token1] = ACTIONS(2146), - [aux_sym_bind_address_token1] = ACTIONS(2146), - [aux_sym_bind_interface_token1] = ACTIONS(2146), - [aux_sym_canonical_domains_token1] = ACTIONS(2146), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2146), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2146), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2146), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2146), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2146), - [aux_sym_certificate_file_token1] = ACTIONS(2146), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2146), - [aux_sym_channel_timeout_token1] = ACTIONS(2146), - [aux_sym_check_host_ip_token1] = ACTIONS(2146), - [aux_sym_ciphers_token1] = ACTIONS(2146), - [aux_sym_cipher_token1] = ACTIONS(2148), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2146), - [aux_sym_compression_token1] = ACTIONS(2146), - [aux_sym_connection_attempts_token1] = ACTIONS(2146), - [aux_sym_connect_timeout_token1] = ACTIONS(2146), - [aux_sym_control_master_token1] = ACTIONS(2146), - [aux_sym_control_path_token1] = ACTIONS(2146), - [aux_sym_control_persist_token1] = ACTIONS(2146), - [aux_sym_dynamic_forward_token1] = ACTIONS(2146), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2146), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2146), - [aux_sym_escape_char_token1] = ACTIONS(2146), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2146), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2146), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2146), - [aux_sym_forward_agent_token1] = ACTIONS(2146), - [aux_sym_forward_x11_token1] = ACTIONS(2148), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2146), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2146), - [aux_sym_gateway_ports_token1] = ACTIONS(2146), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2146), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2146), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2146), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2146), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2146), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2146), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2146), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2146), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2146), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2146), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2146), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2146), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2146), - [aux_sym_host_key_alias_token1] = ACTIONS(2146), - [aux_sym_hostname_token1] = ACTIONS(2146), - [aux_sym_identities_only_token1] = ACTIONS(2146), - [aux_sym_identity_agent_token1] = ACTIONS(2146), - [aux_sym_identity_file_token1] = ACTIONS(2146), - [aux_sym_ignore_unknown_token1] = ACTIONS(2146), - [aux_sym_include_token1] = ACTIONS(2146), - [aux_sym_ip_qos_token1] = ACTIONS(2146), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2146), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2146), - [aux_sym_kex_algorithms_token1] = ACTIONS(2146), - [aux_sym_known_hosts_command_token1] = ACTIONS(2146), - [aux_sym_local_command_token1] = ACTIONS(2146), - [aux_sym_local_forward_token1] = ACTIONS(2146), - [aux_sym_log_level_token1] = ACTIONS(2146), - [aux_sym_log_verbose_token1] = ACTIONS(2146), - [aux_sym_macs_token1] = ACTIONS(2146), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2146), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2146), - [aux_sym_password_authentication_token1] = ACTIONS(2146), - [aux_sym_permit_local_command_token1] = ACTIONS(2146), - [aux_sym_permit_remote_open_token1] = ACTIONS(2146), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2146), - [aux_sym_port_token1] = ACTIONS(2146), - [aux_sym_preferred_authentications_token1] = ACTIONS(2146), - [aux_sym_protocol_token1] = ACTIONS(2146), - [aux_sym_proxy_command_token1] = ACTIONS(2146), - [aux_sym_proxy_jump_token1] = ACTIONS(2146), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2146), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2146), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2146), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2146), - [aux_sym_rekey_limit_token1] = ACTIONS(2146), - [aux_sym_remote_command_token1] = ACTIONS(2146), - [aux_sym_remote_forward_token1] = ACTIONS(2146), - [aux_sym_request_tty_token1] = ACTIONS(2146), - [aux_sym_required_rsa_size_token1] = ACTIONS(2146), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2146), - [aux_sym_security_key_provider_token1] = ACTIONS(2146), - [aux_sym_send_env_token1] = ACTIONS(2146), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2146), - [aux_sym_server_alive_interval_token1] = ACTIONS(2146), - [aux_sym_session_type_token1] = ACTIONS(2146), - [aux_sym_set_env_token1] = ACTIONS(2146), - [aux_sym_stdin_null_token1] = ACTIONS(2146), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2146), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2146), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2146), - [aux_sym_syslog_facility_token1] = ACTIONS(2146), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2146), - [aux_sym_keep_alive_token1] = ACTIONS(2146), - [aux_sym_tag_token1] = ACTIONS(2146), - [aux_sym_tunnel_token1] = ACTIONS(2148), - [aux_sym_tunnel_device_token1] = ACTIONS(2146), - [aux_sym_update_host_keys_token1] = ACTIONS(2146), - [aux_sym_use_keychain_token1] = ACTIONS(2146), - [aux_sym_use_roaming_token1] = ACTIONS(2146), - [aux_sym_user_token1] = ACTIONS(2148), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2146), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2146), - [aux_sym_visual_host_key_token1] = ACTIONS(2146), - [aux_sym_xauth_location_token1] = ACTIONS(2146), + [ts_builtin_sym_end] = ACTIONS(2155), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(2159), + [aux_sym_match_token1] = ACTIONS(2155), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2155), + [aux_sym_address_family_token1] = ACTIONS(2155), + [aux_sym_batch_mode_token1] = ACTIONS(2155), + [aux_sym_bind_address_token1] = ACTIONS(2155), + [aux_sym_bind_interface_token1] = ACTIONS(2155), + [aux_sym_canonical_domains_token1] = ACTIONS(2155), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2155), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2155), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2155), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2155), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2155), + [aux_sym_certificate_file_token1] = ACTIONS(2155), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2155), + [aux_sym_channel_timeout_token1] = ACTIONS(2155), + [aux_sym_check_host_ip_token1] = ACTIONS(2155), + [aux_sym_ciphers_token1] = ACTIONS(2155), + [aux_sym_cipher_token1] = ACTIONS(2157), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2155), + [aux_sym_compression_token1] = ACTIONS(2155), + [aux_sym_connection_attempts_token1] = ACTIONS(2155), + [aux_sym_connect_timeout_token1] = ACTIONS(2155), + [aux_sym_control_master_token1] = ACTIONS(2155), + [aux_sym_control_path_token1] = ACTIONS(2155), + [aux_sym_control_persist_token1] = ACTIONS(2155), + [aux_sym_dynamic_forward_token1] = ACTIONS(2155), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2155), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2155), + [aux_sym_escape_char_token1] = ACTIONS(2155), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2155), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2155), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2155), + [aux_sym_forward_agent_token1] = ACTIONS(2155), + [aux_sym_forward_x11_token1] = ACTIONS(2157), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2155), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2155), + [aux_sym_gateway_ports_token1] = ACTIONS(2155), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2155), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2155), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2155), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2155), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2155), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2155), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2155), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2155), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2155), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2155), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2155), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2155), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2155), + [aux_sym_host_key_alias_token1] = ACTIONS(2155), + [aux_sym_hostname_token1] = ACTIONS(2155), + [aux_sym_identities_only_token1] = ACTIONS(2155), + [aux_sym_identity_agent_token1] = ACTIONS(2155), + [aux_sym_identity_file_token1] = ACTIONS(2155), + [aux_sym_ignore_unknown_token1] = ACTIONS(2155), + [aux_sym_include_token1] = ACTIONS(2155), + [aux_sym_ip_qos_token1] = ACTIONS(2155), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2155), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2155), + [aux_sym_kex_algorithms_token1] = ACTIONS(2155), + [aux_sym_known_hosts_command_token1] = ACTIONS(2155), + [aux_sym_local_command_token1] = ACTIONS(2155), + [aux_sym_local_forward_token1] = ACTIONS(2155), + [aux_sym_log_level_token1] = ACTIONS(2155), + [aux_sym_log_verbose_token1] = ACTIONS(2155), + [aux_sym_macs_token1] = ACTIONS(2155), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2155), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2155), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2155), + [aux_sym_password_authentication_token1] = ACTIONS(2155), + [aux_sym_permit_local_command_token1] = ACTIONS(2155), + [aux_sym_permit_remote_open_token1] = ACTIONS(2155), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2155), + [aux_sym_port_token1] = ACTIONS(2155), + [aux_sym_preferred_authentications_token1] = ACTIONS(2155), + [aux_sym_protocol_token1] = ACTIONS(2155), + [aux_sym_proxy_command_token1] = ACTIONS(2155), + [aux_sym_proxy_jump_token1] = ACTIONS(2155), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2155), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2155), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2155), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2155), + [aux_sym_rekey_limit_token1] = ACTIONS(2155), + [aux_sym_remote_command_token1] = ACTIONS(2155), + [aux_sym_remote_forward_token1] = ACTIONS(2155), + [aux_sym_request_tty_token1] = ACTIONS(2155), + [aux_sym_required_rsa_size_token1] = ACTIONS(2155), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2155), + [aux_sym_security_key_provider_token1] = ACTIONS(2155), + [aux_sym_send_env_token1] = ACTIONS(2155), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2155), + [aux_sym_server_alive_interval_token1] = ACTIONS(2155), + [aux_sym_session_type_token1] = ACTIONS(2155), + [aux_sym_set_env_token1] = ACTIONS(2155), + [aux_sym_stdin_null_token1] = ACTIONS(2155), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2155), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2155), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2155), + [aux_sym_syslog_facility_token1] = ACTIONS(2155), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2155), + [aux_sym_keep_alive_token1] = ACTIONS(2155), + [aux_sym_tag_token1] = ACTIONS(2155), + [aux_sym_tunnel_token1] = ACTIONS(2157), + [aux_sym_tunnel_device_token1] = ACTIONS(2155), + [aux_sym_update_host_keys_token1] = ACTIONS(2155), + [aux_sym_use_keychain_token1] = ACTIONS(2155), + [aux_sym_use_roaming_token1] = ACTIONS(2155), + [aux_sym_user_token1] = ACTIONS(2157), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2155), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2155), + [aux_sym_visual_host_key_token1] = ACTIONS(2155), + [aux_sym_xauth_location_token1] = ACTIONS(2155), }, [273] = { - [ts_builtin_sym_end] = ACTIONS(2152), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2152), - [aux_sym_match_token1] = ACTIONS(2152), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2152), - [aux_sym_address_family_token1] = ACTIONS(2152), - [aux_sym_batch_mode_token1] = ACTIONS(2152), - [aux_sym_bind_address_token1] = ACTIONS(2152), - [aux_sym_bind_interface_token1] = ACTIONS(2152), - [aux_sym_canonical_domains_token1] = ACTIONS(2152), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2152), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2152), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2152), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2152), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2152), - [aux_sym_certificate_file_token1] = ACTIONS(2152), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2152), - [aux_sym_channel_timeout_token1] = ACTIONS(2152), - [aux_sym_check_host_ip_token1] = ACTIONS(2152), - [aux_sym_ciphers_token1] = ACTIONS(2152), - [aux_sym_cipher_token1] = ACTIONS(2154), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2152), - [aux_sym_compression_token1] = ACTIONS(2152), - [aux_sym_connection_attempts_token1] = ACTIONS(2152), - [aux_sym_connect_timeout_token1] = ACTIONS(2152), - [aux_sym_control_master_token1] = ACTIONS(2152), - [aux_sym_control_path_token1] = ACTIONS(2152), - [aux_sym_control_persist_token1] = ACTIONS(2152), - [aux_sym_dynamic_forward_token1] = ACTIONS(2152), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2152), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2152), - [aux_sym_escape_char_token1] = ACTIONS(2152), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2152), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2152), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2152), - [aux_sym_forward_agent_token1] = ACTIONS(2152), - [aux_sym_forward_x11_token1] = ACTIONS(2154), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2152), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2152), - [aux_sym_gateway_ports_token1] = ACTIONS(2152), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2152), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2152), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2152), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2152), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2152), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2152), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2152), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2152), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2152), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2152), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2152), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2152), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2152), - [aux_sym_host_key_alias_token1] = ACTIONS(2152), - [aux_sym_hostname_token1] = ACTIONS(2152), - [aux_sym_identities_only_token1] = ACTIONS(2152), - [aux_sym_identity_agent_token1] = ACTIONS(2152), - [aux_sym_identity_file_token1] = ACTIONS(2152), - [aux_sym_ignore_unknown_token1] = ACTIONS(2152), - [aux_sym_include_token1] = ACTIONS(2152), - [aux_sym_ip_qos_token1] = ACTIONS(2152), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2152), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2152), - [aux_sym_kex_algorithms_token1] = ACTIONS(2152), - [aux_sym_known_hosts_command_token1] = ACTIONS(2152), - [aux_sym_local_command_token1] = ACTIONS(2152), - [aux_sym_local_forward_token1] = ACTIONS(2152), - [aux_sym_log_level_token1] = ACTIONS(2152), - [aux_sym_log_verbose_token1] = ACTIONS(2152), - [aux_sym_macs_token1] = ACTIONS(2152), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2152), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2152), - [aux_sym_password_authentication_token1] = ACTIONS(2152), - [aux_sym_permit_local_command_token1] = ACTIONS(2152), - [aux_sym_permit_remote_open_token1] = ACTIONS(2152), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2152), - [aux_sym_port_token1] = ACTIONS(2152), - [aux_sym_preferred_authentications_token1] = ACTIONS(2152), - [aux_sym_protocol_token1] = ACTIONS(2152), - [aux_sym_proxy_command_token1] = ACTIONS(2152), - [aux_sym_proxy_jump_token1] = ACTIONS(2152), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2152), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2152), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2152), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2152), - [aux_sym_rekey_limit_token1] = ACTIONS(2152), - [aux_sym_remote_command_token1] = ACTIONS(2152), - [aux_sym_remote_forward_token1] = ACTIONS(2152), - [aux_sym_request_tty_token1] = ACTIONS(2152), - [aux_sym_required_rsa_size_token1] = ACTIONS(2152), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2152), - [aux_sym_security_key_provider_token1] = ACTIONS(2152), - [aux_sym_send_env_token1] = ACTIONS(2152), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2152), - [aux_sym_server_alive_interval_token1] = ACTIONS(2152), - [aux_sym_session_type_token1] = ACTIONS(2152), - [aux_sym_set_env_token1] = ACTIONS(2152), - [aux_sym_stdin_null_token1] = ACTIONS(2152), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2152), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2152), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2152), - [aux_sym_syslog_facility_token1] = ACTIONS(2152), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2152), - [aux_sym_keep_alive_token1] = ACTIONS(2152), - [aux_sym_tag_token1] = ACTIONS(2152), - [aux_sym_tunnel_token1] = ACTIONS(2154), - [aux_sym_tunnel_device_token1] = ACTIONS(2152), - [aux_sym_update_host_keys_token1] = ACTIONS(2152), - [aux_sym_use_keychain_token1] = ACTIONS(2152), - [aux_sym_use_roaming_token1] = ACTIONS(2152), - [aux_sym_user_token1] = ACTIONS(2154), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2152), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2152), - [aux_sym_visual_host_key_token1] = ACTIONS(2152), - [aux_sym_xauth_location_token1] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2161), + [aux_sym_match_token1] = ACTIONS(2161), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2161), + [aux_sym_address_family_token1] = ACTIONS(2161), + [aux_sym_batch_mode_token1] = ACTIONS(2161), + [aux_sym_bind_address_token1] = ACTIONS(2161), + [aux_sym_bind_interface_token1] = ACTIONS(2161), + [aux_sym_canonical_domains_token1] = ACTIONS(2161), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2161), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2161), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2161), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2161), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2161), + [aux_sym_certificate_file_token1] = ACTIONS(2161), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2161), + [aux_sym_channel_timeout_token1] = ACTIONS(2161), + [aux_sym_check_host_ip_token1] = ACTIONS(2161), + [aux_sym_ciphers_token1] = ACTIONS(2161), + [aux_sym_cipher_token1] = ACTIONS(2163), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2161), + [aux_sym_compression_token1] = ACTIONS(2161), + [aux_sym_connection_attempts_token1] = ACTIONS(2161), + [aux_sym_connect_timeout_token1] = ACTIONS(2161), + [aux_sym_control_master_token1] = ACTIONS(2161), + [aux_sym_control_path_token1] = ACTIONS(2161), + [aux_sym_control_persist_token1] = ACTIONS(2161), + [aux_sym_dynamic_forward_token1] = ACTIONS(2161), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2161), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2161), + [aux_sym_escape_char_token1] = ACTIONS(2161), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2161), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2161), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2161), + [aux_sym_forward_agent_token1] = ACTIONS(2161), + [aux_sym_forward_x11_token1] = ACTIONS(2163), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2161), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2161), + [aux_sym_gateway_ports_token1] = ACTIONS(2161), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2161), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2161), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2161), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2161), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2161), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2161), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2161), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2161), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2161), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2161), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2161), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2161), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2161), + [aux_sym_host_key_alias_token1] = ACTIONS(2161), + [aux_sym_hostname_token1] = ACTIONS(2161), + [aux_sym_identities_only_token1] = ACTIONS(2161), + [aux_sym_identity_agent_token1] = ACTIONS(2161), + [aux_sym_identity_file_token1] = ACTIONS(2161), + [aux_sym_ignore_unknown_token1] = ACTIONS(2161), + [aux_sym_include_token1] = ACTIONS(2161), + [aux_sym_ip_qos_token1] = ACTIONS(2161), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2161), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2161), + [aux_sym_kex_algorithms_token1] = ACTIONS(2161), + [aux_sym_known_hosts_command_token1] = ACTIONS(2161), + [aux_sym_local_command_token1] = ACTIONS(2161), + [aux_sym_local_forward_token1] = ACTIONS(2161), + [aux_sym_log_level_token1] = ACTIONS(2161), + [aux_sym_log_verbose_token1] = ACTIONS(2161), + [aux_sym_macs_token1] = ACTIONS(2161), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2161), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2161), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2161), + [aux_sym_password_authentication_token1] = ACTIONS(2161), + [aux_sym_permit_local_command_token1] = ACTIONS(2161), + [aux_sym_permit_remote_open_token1] = ACTIONS(2161), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2161), + [aux_sym_port_token1] = ACTIONS(2161), + [aux_sym_preferred_authentications_token1] = ACTIONS(2161), + [aux_sym_protocol_token1] = ACTIONS(2161), + [aux_sym_proxy_command_token1] = ACTIONS(2161), + [aux_sym_proxy_jump_token1] = ACTIONS(2161), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2161), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2161), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2161), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2161), + [aux_sym_rekey_limit_token1] = ACTIONS(2161), + [aux_sym_remote_command_token1] = ACTIONS(2161), + [aux_sym_remote_forward_token1] = ACTIONS(2161), + [aux_sym_request_tty_token1] = ACTIONS(2161), + [aux_sym_required_rsa_size_token1] = ACTIONS(2161), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2161), + [aux_sym_security_key_provider_token1] = ACTIONS(2161), + [aux_sym_send_env_token1] = ACTIONS(2161), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2161), + [aux_sym_server_alive_interval_token1] = ACTIONS(2161), + [aux_sym_session_type_token1] = ACTIONS(2161), + [aux_sym_set_env_token1] = ACTIONS(2161), + [aux_sym_stdin_null_token1] = ACTIONS(2161), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2161), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2161), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2161), + [aux_sym_syslog_facility_token1] = ACTIONS(2161), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2161), + [aux_sym_keep_alive_token1] = ACTIONS(2161), + [aux_sym_tag_token1] = ACTIONS(2161), + [aux_sym_tunnel_token1] = ACTIONS(2163), + [aux_sym_tunnel_device_token1] = ACTIONS(2161), + [aux_sym_update_host_keys_token1] = ACTIONS(2161), + [aux_sym_use_keychain_token1] = ACTIONS(2161), + [aux_sym_use_roaming_token1] = ACTIONS(2161), + [aux_sym_user_token1] = ACTIONS(2163), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2161), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2161), + [aux_sym_visual_host_key_token1] = ACTIONS(2161), + [aux_sym_xauth_location_token1] = ACTIONS(2161), }, [274] = { - [ts_builtin_sym_end] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2160), - [aux_sym_match_token1] = ACTIONS(2156), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2156), - [aux_sym_address_family_token1] = ACTIONS(2156), - [aux_sym_batch_mode_token1] = ACTIONS(2156), - [aux_sym_bind_address_token1] = ACTIONS(2156), - [aux_sym_bind_interface_token1] = ACTIONS(2156), - [aux_sym_canonical_domains_token1] = ACTIONS(2156), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2156), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2156), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2156), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2156), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2156), - [aux_sym_certificate_file_token1] = ACTIONS(2156), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2156), - [aux_sym_channel_timeout_token1] = ACTIONS(2156), - [aux_sym_check_host_ip_token1] = ACTIONS(2156), - [aux_sym_ciphers_token1] = ACTIONS(2156), - [aux_sym_cipher_token1] = ACTIONS(2158), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2156), - [aux_sym_compression_token1] = ACTIONS(2156), - [aux_sym_connection_attempts_token1] = ACTIONS(2156), - [aux_sym_connect_timeout_token1] = ACTIONS(2156), - [aux_sym_control_master_token1] = ACTIONS(2156), - [aux_sym_control_path_token1] = ACTIONS(2156), - [aux_sym_control_persist_token1] = ACTIONS(2156), - [aux_sym_dynamic_forward_token1] = ACTIONS(2156), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2156), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2156), - [aux_sym_escape_char_token1] = ACTIONS(2156), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2156), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2156), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2156), - [aux_sym_forward_agent_token1] = ACTIONS(2156), - [aux_sym_forward_x11_token1] = ACTIONS(2158), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2156), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2156), - [aux_sym_gateway_ports_token1] = ACTIONS(2156), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2156), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2156), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2156), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2156), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2156), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2156), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2156), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2156), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2156), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2156), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2156), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2156), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2156), - [aux_sym_host_key_alias_token1] = ACTIONS(2156), - [aux_sym_hostname_token1] = ACTIONS(2156), - [aux_sym_identities_only_token1] = ACTIONS(2156), - [aux_sym_identity_agent_token1] = ACTIONS(2156), - [aux_sym_identity_file_token1] = ACTIONS(2156), - [aux_sym_ignore_unknown_token1] = ACTIONS(2156), - [aux_sym_include_token1] = ACTIONS(2156), - [aux_sym_ip_qos_token1] = ACTIONS(2156), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2156), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2156), - [aux_sym_kex_algorithms_token1] = ACTIONS(2156), - [aux_sym_known_hosts_command_token1] = ACTIONS(2156), - [aux_sym_local_command_token1] = ACTIONS(2156), - [aux_sym_local_forward_token1] = ACTIONS(2156), - [aux_sym_log_level_token1] = ACTIONS(2156), - [aux_sym_log_verbose_token1] = ACTIONS(2156), - [aux_sym_macs_token1] = ACTIONS(2156), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2156), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2156), - [aux_sym_password_authentication_token1] = ACTIONS(2156), - [aux_sym_permit_local_command_token1] = ACTIONS(2156), - [aux_sym_permit_remote_open_token1] = ACTIONS(2156), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2156), - [aux_sym_port_token1] = ACTIONS(2156), - [aux_sym_preferred_authentications_token1] = ACTIONS(2156), - [aux_sym_protocol_token1] = ACTIONS(2156), - [aux_sym_proxy_command_token1] = ACTIONS(2156), - [aux_sym_proxy_jump_token1] = ACTIONS(2156), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2156), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2156), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2156), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2156), - [aux_sym_rekey_limit_token1] = ACTIONS(2156), - [aux_sym_remote_command_token1] = ACTIONS(2156), - [aux_sym_remote_forward_token1] = ACTIONS(2156), - [aux_sym_request_tty_token1] = ACTIONS(2156), - [aux_sym_required_rsa_size_token1] = ACTIONS(2156), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2156), - [aux_sym_security_key_provider_token1] = ACTIONS(2156), - [aux_sym_send_env_token1] = ACTIONS(2156), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2156), - [aux_sym_server_alive_interval_token1] = ACTIONS(2156), - [aux_sym_session_type_token1] = ACTIONS(2156), - [aux_sym_set_env_token1] = ACTIONS(2156), - [aux_sym_stdin_null_token1] = ACTIONS(2156), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2156), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2156), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2156), - [aux_sym_syslog_facility_token1] = ACTIONS(2156), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2156), - [aux_sym_keep_alive_token1] = ACTIONS(2156), - [aux_sym_tag_token1] = ACTIONS(2156), - [aux_sym_tunnel_token1] = ACTIONS(2158), - [aux_sym_tunnel_device_token1] = ACTIONS(2156), - [aux_sym_update_host_keys_token1] = ACTIONS(2156), - [aux_sym_use_keychain_token1] = ACTIONS(2156), - [aux_sym_use_roaming_token1] = ACTIONS(2156), - [aux_sym_user_token1] = ACTIONS(2158), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2156), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2156), - [aux_sym_visual_host_key_token1] = ACTIONS(2156), - [aux_sym_xauth_location_token1] = ACTIONS(2156), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2169), + [aux_sym_match_token1] = ACTIONS(2165), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2165), + [aux_sym_address_family_token1] = ACTIONS(2165), + [aux_sym_batch_mode_token1] = ACTIONS(2165), + [aux_sym_bind_address_token1] = ACTIONS(2165), + [aux_sym_bind_interface_token1] = ACTIONS(2165), + [aux_sym_canonical_domains_token1] = ACTIONS(2165), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2165), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2165), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2165), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2165), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2165), + [aux_sym_certificate_file_token1] = ACTIONS(2165), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2165), + [aux_sym_channel_timeout_token1] = ACTIONS(2165), + [aux_sym_check_host_ip_token1] = ACTIONS(2165), + [aux_sym_ciphers_token1] = ACTIONS(2165), + [aux_sym_cipher_token1] = ACTIONS(2167), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2165), + [aux_sym_compression_token1] = ACTIONS(2165), + [aux_sym_connection_attempts_token1] = ACTIONS(2165), + [aux_sym_connect_timeout_token1] = ACTIONS(2165), + [aux_sym_control_master_token1] = ACTIONS(2165), + [aux_sym_control_path_token1] = ACTIONS(2165), + [aux_sym_control_persist_token1] = ACTIONS(2165), + [aux_sym_dynamic_forward_token1] = ACTIONS(2165), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2165), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2165), + [aux_sym_escape_char_token1] = ACTIONS(2165), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2165), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2165), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2165), + [aux_sym_forward_agent_token1] = ACTIONS(2165), + [aux_sym_forward_x11_token1] = ACTIONS(2167), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2165), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2165), + [aux_sym_gateway_ports_token1] = ACTIONS(2165), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2165), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2165), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2165), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2165), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2165), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2165), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2165), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2165), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2165), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2165), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2165), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2165), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2165), + [aux_sym_host_key_alias_token1] = ACTIONS(2165), + [aux_sym_hostname_token1] = ACTIONS(2165), + [aux_sym_identities_only_token1] = ACTIONS(2165), + [aux_sym_identity_agent_token1] = ACTIONS(2165), + [aux_sym_identity_file_token1] = ACTIONS(2165), + [aux_sym_ignore_unknown_token1] = ACTIONS(2165), + [aux_sym_include_token1] = ACTIONS(2165), + [aux_sym_ip_qos_token1] = ACTIONS(2165), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2165), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2165), + [aux_sym_kex_algorithms_token1] = ACTIONS(2165), + [aux_sym_known_hosts_command_token1] = ACTIONS(2165), + [aux_sym_local_command_token1] = ACTIONS(2165), + [aux_sym_local_forward_token1] = ACTIONS(2165), + [aux_sym_log_level_token1] = ACTIONS(2165), + [aux_sym_log_verbose_token1] = ACTIONS(2165), + [aux_sym_macs_token1] = ACTIONS(2165), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2165), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2165), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2165), + [aux_sym_password_authentication_token1] = ACTIONS(2165), + [aux_sym_permit_local_command_token1] = ACTIONS(2165), + [aux_sym_permit_remote_open_token1] = ACTIONS(2165), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2165), + [aux_sym_port_token1] = ACTIONS(2165), + [aux_sym_preferred_authentications_token1] = ACTIONS(2165), + [aux_sym_protocol_token1] = ACTIONS(2165), + [aux_sym_proxy_command_token1] = ACTIONS(2165), + [aux_sym_proxy_jump_token1] = ACTIONS(2165), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2165), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2165), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2165), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2165), + [aux_sym_rekey_limit_token1] = ACTIONS(2165), + [aux_sym_remote_command_token1] = ACTIONS(2165), + [aux_sym_remote_forward_token1] = ACTIONS(2165), + [aux_sym_request_tty_token1] = ACTIONS(2165), + [aux_sym_required_rsa_size_token1] = ACTIONS(2165), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2165), + [aux_sym_security_key_provider_token1] = ACTIONS(2165), + [aux_sym_send_env_token1] = ACTIONS(2165), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2165), + [aux_sym_server_alive_interval_token1] = ACTIONS(2165), + [aux_sym_session_type_token1] = ACTIONS(2165), + [aux_sym_set_env_token1] = ACTIONS(2165), + [aux_sym_stdin_null_token1] = ACTIONS(2165), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2165), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2165), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2165), + [aux_sym_syslog_facility_token1] = ACTIONS(2165), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2165), + [aux_sym_keep_alive_token1] = ACTIONS(2165), + [aux_sym_tag_token1] = ACTIONS(2165), + [aux_sym_tunnel_token1] = ACTIONS(2167), + [aux_sym_tunnel_device_token1] = ACTIONS(2165), + [aux_sym_update_host_keys_token1] = ACTIONS(2165), + [aux_sym_use_keychain_token1] = ACTIONS(2165), + [aux_sym_use_roaming_token1] = ACTIONS(2165), + [aux_sym_user_token1] = ACTIONS(2167), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2165), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2165), + [aux_sym_visual_host_key_token1] = ACTIONS(2165), + [aux_sym_xauth_location_token1] = ACTIONS(2165), }, [275] = { - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2164), - [anon_sym_DQUOTE] = ACTIONS(2162), - [aux_sym_match_token1] = ACTIONS(2162), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2162), - [aux_sym_address_family_token1] = ACTIONS(2162), - [aux_sym_batch_mode_token1] = ACTIONS(2162), - [aux_sym_bind_address_token1] = ACTIONS(2162), - [aux_sym_bind_interface_token1] = ACTIONS(2162), - [aux_sym_canonical_domains_token1] = ACTIONS(2162), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2162), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2162), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2162), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2162), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2162), - [aux_sym_certificate_file_token1] = ACTIONS(2162), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2162), - [aux_sym_channel_timeout_token1] = ACTIONS(2162), - [aux_sym_check_host_ip_token1] = ACTIONS(2162), - [aux_sym_ciphers_token1] = ACTIONS(2162), - [aux_sym_cipher_token1] = ACTIONS(2164), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2162), - [aux_sym_compression_token1] = ACTIONS(2162), - [aux_sym_connection_attempts_token1] = ACTIONS(2162), - [aux_sym_connect_timeout_token1] = ACTIONS(2162), - [aux_sym_control_master_token1] = ACTIONS(2162), - [aux_sym_control_path_token1] = ACTIONS(2162), - [aux_sym_control_persist_token1] = ACTIONS(2162), - [aux_sym_dynamic_forward_token1] = ACTIONS(2162), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2162), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2162), - [aux_sym_escape_char_token1] = ACTIONS(2162), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2162), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2162), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2162), - [aux_sym_forward_agent_token1] = ACTIONS(2162), - [aux_sym_forward_x11_token1] = ACTIONS(2164), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2162), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2162), - [aux_sym_gateway_ports_token1] = ACTIONS(2162), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2162), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2162), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2162), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2162), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2162), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2162), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2162), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2162), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2162), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2162), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2162), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2162), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2162), - [aux_sym_host_key_alias_token1] = ACTIONS(2162), - [aux_sym_hostname_token1] = ACTIONS(2162), - [aux_sym_identities_only_token1] = ACTIONS(2162), - [aux_sym_identity_agent_token1] = ACTIONS(2162), - [aux_sym_identity_file_token1] = ACTIONS(2162), - [aux_sym_ignore_unknown_token1] = ACTIONS(2162), - [aux_sym_include_token1] = ACTIONS(2162), - [aux_sym_ip_qos_token1] = ACTIONS(2162), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2162), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2162), - [aux_sym_kex_algorithms_token1] = ACTIONS(2162), - [aux_sym_known_hosts_command_token1] = ACTIONS(2162), - [aux_sym_local_command_token1] = ACTIONS(2162), - [aux_sym_local_forward_token1] = ACTIONS(2162), - [aux_sym_log_level_token1] = ACTIONS(2162), - [aux_sym_log_verbose_token1] = ACTIONS(2162), - [aux_sym_macs_token1] = ACTIONS(2162), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2162), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2162), - [aux_sym_password_authentication_token1] = ACTIONS(2162), - [aux_sym_permit_local_command_token1] = ACTIONS(2162), - [aux_sym_permit_remote_open_token1] = ACTIONS(2162), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2162), - [aux_sym_port_token1] = ACTIONS(2162), - [aux_sym_preferred_authentications_token1] = ACTIONS(2162), - [aux_sym_protocol_token1] = ACTIONS(2162), - [aux_sym_proxy_command_token1] = ACTIONS(2162), - [aux_sym_proxy_jump_token1] = ACTIONS(2162), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2162), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2162), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2162), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2162), - [aux_sym_rekey_limit_token1] = ACTIONS(2162), - [aux_sym_remote_command_token1] = ACTIONS(2162), - [aux_sym_remote_forward_token1] = ACTIONS(2162), - [aux_sym_request_tty_token1] = ACTIONS(2162), - [aux_sym_required_rsa_size_token1] = ACTIONS(2162), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2162), - [aux_sym_security_key_provider_token1] = ACTIONS(2162), - [aux_sym_send_env_token1] = ACTIONS(2162), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2162), - [aux_sym_server_alive_interval_token1] = ACTIONS(2162), - [aux_sym_session_type_token1] = ACTIONS(2162), - [aux_sym_set_env_token1] = ACTIONS(2162), - [aux_sym_stdin_null_token1] = ACTIONS(2162), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2162), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2162), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2162), - [aux_sym_syslog_facility_token1] = ACTIONS(2162), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2162), - [aux_sym_keep_alive_token1] = ACTIONS(2162), - [aux_sym_tag_token1] = ACTIONS(2162), - [aux_sym_tunnel_token1] = ACTIONS(2164), - [aux_sym_tunnel_device_token1] = ACTIONS(2162), - [aux_sym_update_host_keys_token1] = ACTIONS(2162), - [aux_sym_use_keychain_token1] = ACTIONS(2162), - [aux_sym_use_roaming_token1] = ACTIONS(2162), - [aux_sym_user_token1] = ACTIONS(2164), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2162), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2162), - [aux_sym_visual_host_key_token1] = ACTIONS(2162), - [aux_sym_xauth_location_token1] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(2171), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2171), + [aux_sym_match_token1] = ACTIONS(2171), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2171), + [aux_sym_address_family_token1] = ACTIONS(2171), + [aux_sym_batch_mode_token1] = ACTIONS(2171), + [aux_sym_bind_address_token1] = ACTIONS(2171), + [aux_sym_bind_interface_token1] = ACTIONS(2171), + [aux_sym_canonical_domains_token1] = ACTIONS(2171), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2171), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2171), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2171), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2171), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2171), + [aux_sym_certificate_file_token1] = ACTIONS(2171), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2171), + [aux_sym_channel_timeout_token1] = ACTIONS(2171), + [aux_sym_check_host_ip_token1] = ACTIONS(2171), + [aux_sym_ciphers_token1] = ACTIONS(2171), + [aux_sym_cipher_token1] = ACTIONS(2173), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2171), + [aux_sym_compression_token1] = ACTIONS(2171), + [aux_sym_connection_attempts_token1] = ACTIONS(2171), + [aux_sym_connect_timeout_token1] = ACTIONS(2171), + [aux_sym_control_master_token1] = ACTIONS(2171), + [aux_sym_control_path_token1] = ACTIONS(2171), + [aux_sym_control_persist_token1] = ACTIONS(2171), + [aux_sym_dynamic_forward_token1] = ACTIONS(2171), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2171), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2171), + [aux_sym_escape_char_token1] = ACTIONS(2171), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2171), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2171), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2171), + [aux_sym_forward_agent_token1] = ACTIONS(2171), + [aux_sym_forward_x11_token1] = ACTIONS(2173), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2171), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2171), + [aux_sym_gateway_ports_token1] = ACTIONS(2171), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2171), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2171), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2171), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2171), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2171), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2171), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2171), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2171), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2171), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2171), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2171), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2171), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2171), + [aux_sym_host_key_alias_token1] = ACTIONS(2171), + [aux_sym_hostname_token1] = ACTIONS(2171), + [aux_sym_identities_only_token1] = ACTIONS(2171), + [aux_sym_identity_agent_token1] = ACTIONS(2171), + [aux_sym_identity_file_token1] = ACTIONS(2171), + [aux_sym_ignore_unknown_token1] = ACTIONS(2171), + [aux_sym_include_token1] = ACTIONS(2171), + [aux_sym_ip_qos_token1] = ACTIONS(2171), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2171), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2171), + [aux_sym_kex_algorithms_token1] = ACTIONS(2171), + [aux_sym_known_hosts_command_token1] = ACTIONS(2171), + [aux_sym_local_command_token1] = ACTIONS(2171), + [aux_sym_local_forward_token1] = ACTIONS(2171), + [aux_sym_log_level_token1] = ACTIONS(2171), + [aux_sym_log_verbose_token1] = ACTIONS(2171), + [aux_sym_macs_token1] = ACTIONS(2171), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2171), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2171), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2171), + [aux_sym_password_authentication_token1] = ACTIONS(2171), + [aux_sym_permit_local_command_token1] = ACTIONS(2171), + [aux_sym_permit_remote_open_token1] = ACTIONS(2171), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2171), + [aux_sym_port_token1] = ACTIONS(2171), + [aux_sym_preferred_authentications_token1] = ACTIONS(2171), + [aux_sym_protocol_token1] = ACTIONS(2171), + [aux_sym_proxy_command_token1] = ACTIONS(2171), + [aux_sym_proxy_jump_token1] = ACTIONS(2171), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2171), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2171), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2171), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2171), + [aux_sym_rekey_limit_token1] = ACTIONS(2171), + [aux_sym_remote_command_token1] = ACTIONS(2171), + [aux_sym_remote_forward_token1] = ACTIONS(2171), + [aux_sym_request_tty_token1] = ACTIONS(2171), + [aux_sym_required_rsa_size_token1] = ACTIONS(2171), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2171), + [aux_sym_security_key_provider_token1] = ACTIONS(2171), + [aux_sym_send_env_token1] = ACTIONS(2171), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2171), + [aux_sym_server_alive_interval_token1] = ACTIONS(2171), + [aux_sym_session_type_token1] = ACTIONS(2171), + [aux_sym_set_env_token1] = ACTIONS(2171), + [aux_sym_stdin_null_token1] = ACTIONS(2171), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2171), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2171), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2171), + [aux_sym_syslog_facility_token1] = ACTIONS(2171), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2171), + [aux_sym_keep_alive_token1] = ACTIONS(2171), + [aux_sym_tag_token1] = ACTIONS(2171), + [aux_sym_tunnel_token1] = ACTIONS(2173), + [aux_sym_tunnel_device_token1] = ACTIONS(2171), + [aux_sym_update_host_keys_token1] = ACTIONS(2171), + [aux_sym_use_keychain_token1] = ACTIONS(2171), + [aux_sym_use_roaming_token1] = ACTIONS(2171), + [aux_sym_user_token1] = ACTIONS(2173), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2171), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2171), + [aux_sym_visual_host_key_token1] = ACTIONS(2171), + [aux_sym_xauth_location_token1] = ACTIONS(2171), }, [276] = { - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2170), - [aux_sym_match_token1] = ACTIONS(2166), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2166), - [aux_sym_address_family_token1] = ACTIONS(2166), - [aux_sym_batch_mode_token1] = ACTIONS(2166), - [aux_sym_bind_address_token1] = ACTIONS(2166), - [aux_sym_bind_interface_token1] = ACTIONS(2166), - [aux_sym_canonical_domains_token1] = ACTIONS(2166), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2166), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2166), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2166), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2166), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2166), - [aux_sym_certificate_file_token1] = ACTIONS(2166), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2166), - [aux_sym_channel_timeout_token1] = ACTIONS(2166), - [aux_sym_check_host_ip_token1] = ACTIONS(2166), - [aux_sym_ciphers_token1] = ACTIONS(2166), - [aux_sym_cipher_token1] = ACTIONS(2168), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2166), - [aux_sym_compression_token1] = ACTIONS(2166), - [aux_sym_connection_attempts_token1] = ACTIONS(2166), - [aux_sym_connect_timeout_token1] = ACTIONS(2166), - [aux_sym_control_master_token1] = ACTIONS(2166), - [aux_sym_control_path_token1] = ACTIONS(2166), - [aux_sym_control_persist_token1] = ACTIONS(2166), - [aux_sym_dynamic_forward_token1] = ACTIONS(2166), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2166), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2166), - [aux_sym_escape_char_token1] = ACTIONS(2166), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2166), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2166), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2166), - [aux_sym_forward_agent_token1] = ACTIONS(2166), - [aux_sym_forward_x11_token1] = ACTIONS(2168), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2166), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2166), - [aux_sym_gateway_ports_token1] = ACTIONS(2166), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2166), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2166), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2166), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2166), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2166), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2166), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2166), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2166), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2166), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2166), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2166), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2166), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2166), - [aux_sym_host_key_alias_token1] = ACTIONS(2166), - [aux_sym_hostname_token1] = ACTIONS(2166), - [aux_sym_identities_only_token1] = ACTIONS(2166), - [aux_sym_identity_agent_token1] = ACTIONS(2166), - [aux_sym_identity_file_token1] = ACTIONS(2166), - [aux_sym_ignore_unknown_token1] = ACTIONS(2166), - [aux_sym_include_token1] = ACTIONS(2166), - [aux_sym_ip_qos_token1] = ACTIONS(2166), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2166), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2166), - [aux_sym_kex_algorithms_token1] = ACTIONS(2166), - [aux_sym_known_hosts_command_token1] = ACTIONS(2166), - [aux_sym_local_command_token1] = ACTIONS(2166), - [aux_sym_local_forward_token1] = ACTIONS(2166), - [aux_sym_log_level_token1] = ACTIONS(2166), - [aux_sym_log_verbose_token1] = ACTIONS(2166), - [aux_sym_macs_token1] = ACTIONS(2166), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2166), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2166), - [aux_sym_password_authentication_token1] = ACTIONS(2166), - [aux_sym_permit_local_command_token1] = ACTIONS(2166), - [aux_sym_permit_remote_open_token1] = ACTIONS(2166), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2166), - [aux_sym_port_token1] = ACTIONS(2166), - [aux_sym_preferred_authentications_token1] = ACTIONS(2166), - [aux_sym_protocol_token1] = ACTIONS(2166), - [aux_sym_proxy_command_token1] = ACTIONS(2166), - [aux_sym_proxy_jump_token1] = ACTIONS(2166), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2166), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2166), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2166), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2166), - [aux_sym_rekey_limit_token1] = ACTIONS(2166), - [aux_sym_remote_command_token1] = ACTIONS(2166), - [aux_sym_remote_forward_token1] = ACTIONS(2166), - [aux_sym_request_tty_token1] = ACTIONS(2166), - [aux_sym_required_rsa_size_token1] = ACTIONS(2166), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2166), - [aux_sym_security_key_provider_token1] = ACTIONS(2166), - [aux_sym_send_env_token1] = ACTIONS(2166), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2166), - [aux_sym_server_alive_interval_token1] = ACTIONS(2166), - [aux_sym_session_type_token1] = ACTIONS(2166), - [aux_sym_set_env_token1] = ACTIONS(2166), - [aux_sym_stdin_null_token1] = ACTIONS(2166), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2166), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2166), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2166), - [aux_sym_syslog_facility_token1] = ACTIONS(2166), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2166), - [aux_sym_keep_alive_token1] = ACTIONS(2166), - [aux_sym_tag_token1] = ACTIONS(2166), - [aux_sym_tunnel_token1] = ACTIONS(2168), - [aux_sym_tunnel_device_token1] = ACTIONS(2166), - [aux_sym_update_host_keys_token1] = ACTIONS(2166), - [aux_sym_use_keychain_token1] = ACTIONS(2166), - [aux_sym_use_roaming_token1] = ACTIONS(2166), - [aux_sym_user_token1] = ACTIONS(2168), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2166), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2166), - [aux_sym_visual_host_key_token1] = ACTIONS(2166), - [aux_sym_xauth_location_token1] = ACTIONS(2166), + [ts_builtin_sym_end] = ACTIONS(2175), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(2179), + [aux_sym_match_token1] = ACTIONS(2175), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2175), + [aux_sym_address_family_token1] = ACTIONS(2175), + [aux_sym_batch_mode_token1] = ACTIONS(2175), + [aux_sym_bind_address_token1] = ACTIONS(2175), + [aux_sym_bind_interface_token1] = ACTIONS(2175), + [aux_sym_canonical_domains_token1] = ACTIONS(2175), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2175), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2175), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2175), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2175), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2175), + [aux_sym_certificate_file_token1] = ACTIONS(2175), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2175), + [aux_sym_channel_timeout_token1] = ACTIONS(2175), + [aux_sym_check_host_ip_token1] = ACTIONS(2175), + [aux_sym_ciphers_token1] = ACTIONS(2175), + [aux_sym_cipher_token1] = ACTIONS(2177), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2175), + [aux_sym_compression_token1] = ACTIONS(2175), + [aux_sym_connection_attempts_token1] = ACTIONS(2175), + [aux_sym_connect_timeout_token1] = ACTIONS(2175), + [aux_sym_control_master_token1] = ACTIONS(2175), + [aux_sym_control_path_token1] = ACTIONS(2175), + [aux_sym_control_persist_token1] = ACTIONS(2175), + [aux_sym_dynamic_forward_token1] = ACTIONS(2175), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2175), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2175), + [aux_sym_escape_char_token1] = ACTIONS(2175), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2175), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2175), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2175), + [aux_sym_forward_agent_token1] = ACTIONS(2175), + [aux_sym_forward_x11_token1] = ACTIONS(2177), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2175), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2175), + [aux_sym_gateway_ports_token1] = ACTIONS(2175), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2175), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2175), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2175), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2175), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2175), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2175), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2175), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2175), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2175), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2175), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2175), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2175), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2175), + [aux_sym_host_key_alias_token1] = ACTIONS(2175), + [aux_sym_hostname_token1] = ACTIONS(2175), + [aux_sym_identities_only_token1] = ACTIONS(2175), + [aux_sym_identity_agent_token1] = ACTIONS(2175), + [aux_sym_identity_file_token1] = ACTIONS(2175), + [aux_sym_ignore_unknown_token1] = ACTIONS(2175), + [aux_sym_include_token1] = ACTIONS(2175), + [aux_sym_ip_qos_token1] = ACTIONS(2175), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2175), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2175), + [aux_sym_kex_algorithms_token1] = ACTIONS(2175), + [aux_sym_known_hosts_command_token1] = ACTIONS(2175), + [aux_sym_local_command_token1] = ACTIONS(2175), + [aux_sym_local_forward_token1] = ACTIONS(2175), + [aux_sym_log_level_token1] = ACTIONS(2175), + [aux_sym_log_verbose_token1] = ACTIONS(2175), + [aux_sym_macs_token1] = ACTIONS(2175), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2175), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2175), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2175), + [aux_sym_password_authentication_token1] = ACTIONS(2175), + [aux_sym_permit_local_command_token1] = ACTIONS(2175), + [aux_sym_permit_remote_open_token1] = ACTIONS(2175), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2175), + [aux_sym_port_token1] = ACTIONS(2175), + [aux_sym_preferred_authentications_token1] = ACTIONS(2175), + [aux_sym_protocol_token1] = ACTIONS(2175), + [aux_sym_proxy_command_token1] = ACTIONS(2175), + [aux_sym_proxy_jump_token1] = ACTIONS(2175), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2175), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2175), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2175), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2175), + [aux_sym_rekey_limit_token1] = ACTIONS(2175), + [aux_sym_remote_command_token1] = ACTIONS(2175), + [aux_sym_remote_forward_token1] = ACTIONS(2175), + [aux_sym_request_tty_token1] = ACTIONS(2175), + [aux_sym_required_rsa_size_token1] = ACTIONS(2175), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2175), + [aux_sym_security_key_provider_token1] = ACTIONS(2175), + [aux_sym_send_env_token1] = ACTIONS(2175), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2175), + [aux_sym_server_alive_interval_token1] = ACTIONS(2175), + [aux_sym_session_type_token1] = ACTIONS(2175), + [aux_sym_set_env_token1] = ACTIONS(2175), + [aux_sym_stdin_null_token1] = ACTIONS(2175), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2175), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2175), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2175), + [aux_sym_syslog_facility_token1] = ACTIONS(2175), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2175), + [aux_sym_keep_alive_token1] = ACTIONS(2175), + [aux_sym_tag_token1] = ACTIONS(2175), + [aux_sym_tunnel_token1] = ACTIONS(2177), + [aux_sym_tunnel_device_token1] = ACTIONS(2175), + [aux_sym_update_host_keys_token1] = ACTIONS(2175), + [aux_sym_use_keychain_token1] = ACTIONS(2175), + [aux_sym_use_roaming_token1] = ACTIONS(2175), + [aux_sym_user_token1] = ACTIONS(2177), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2175), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2175), + [aux_sym_visual_host_key_token1] = ACTIONS(2175), + [aux_sym_xauth_location_token1] = ACTIONS(2175), }, [277] = { - [ts_builtin_sym_end] = ACTIONS(2172), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2174), - [anon_sym_DQUOTE] = ACTIONS(2172), - [aux_sym_match_token1] = ACTIONS(2172), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2172), - [aux_sym_address_family_token1] = ACTIONS(2172), - [aux_sym_batch_mode_token1] = ACTIONS(2172), - [aux_sym_bind_address_token1] = ACTIONS(2172), - [aux_sym_bind_interface_token1] = ACTIONS(2172), - [aux_sym_canonical_domains_token1] = ACTIONS(2172), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2172), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2172), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2172), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2172), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2172), - [aux_sym_certificate_file_token1] = ACTIONS(2172), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2172), - [aux_sym_channel_timeout_token1] = ACTIONS(2172), - [aux_sym_check_host_ip_token1] = ACTIONS(2172), - [aux_sym_ciphers_token1] = ACTIONS(2172), - [aux_sym_cipher_token1] = ACTIONS(2174), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2172), - [aux_sym_compression_token1] = ACTIONS(2172), - [aux_sym_connection_attempts_token1] = ACTIONS(2172), - [aux_sym_connect_timeout_token1] = ACTIONS(2172), - [aux_sym_control_master_token1] = ACTIONS(2172), - [aux_sym_control_path_token1] = ACTIONS(2172), - [aux_sym_control_persist_token1] = ACTIONS(2172), - [aux_sym_dynamic_forward_token1] = ACTIONS(2172), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2172), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2172), - [aux_sym_escape_char_token1] = ACTIONS(2172), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2172), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2172), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2172), - [aux_sym_forward_agent_token1] = ACTIONS(2172), - [aux_sym_forward_x11_token1] = ACTIONS(2174), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2172), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2172), - [aux_sym_gateway_ports_token1] = ACTIONS(2172), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2172), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2172), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2172), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2172), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2172), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2172), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2172), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2172), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2172), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2172), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2172), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2172), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2172), - [aux_sym_host_key_alias_token1] = ACTIONS(2172), - [aux_sym_hostname_token1] = ACTIONS(2172), - [aux_sym_identities_only_token1] = ACTIONS(2172), - [aux_sym_identity_agent_token1] = ACTIONS(2172), - [aux_sym_identity_file_token1] = ACTIONS(2172), - [aux_sym_ignore_unknown_token1] = ACTIONS(2172), - [aux_sym_include_token1] = ACTIONS(2172), - [aux_sym_ip_qos_token1] = ACTIONS(2172), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2172), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2172), - [aux_sym_kex_algorithms_token1] = ACTIONS(2172), - [aux_sym_known_hosts_command_token1] = ACTIONS(2172), - [aux_sym_local_command_token1] = ACTIONS(2172), - [aux_sym_local_forward_token1] = ACTIONS(2172), - [aux_sym_log_level_token1] = ACTIONS(2172), - [aux_sym_log_verbose_token1] = ACTIONS(2172), - [aux_sym_macs_token1] = ACTIONS(2172), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2172), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2172), - [aux_sym_password_authentication_token1] = ACTIONS(2172), - [aux_sym_permit_local_command_token1] = ACTIONS(2172), - [aux_sym_permit_remote_open_token1] = ACTIONS(2172), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2172), - [aux_sym_port_token1] = ACTIONS(2172), - [aux_sym_preferred_authentications_token1] = ACTIONS(2172), - [aux_sym_protocol_token1] = ACTIONS(2172), - [aux_sym_proxy_command_token1] = ACTIONS(2172), - [aux_sym_proxy_jump_token1] = ACTIONS(2172), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2172), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2172), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2172), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2172), - [aux_sym_rekey_limit_token1] = ACTIONS(2172), - [aux_sym_remote_command_token1] = ACTIONS(2172), - [aux_sym_remote_forward_token1] = ACTIONS(2172), - [aux_sym_request_tty_token1] = ACTIONS(2172), - [aux_sym_required_rsa_size_token1] = ACTIONS(2172), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2172), - [aux_sym_security_key_provider_token1] = ACTIONS(2172), - [aux_sym_send_env_token1] = ACTIONS(2172), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2172), - [aux_sym_server_alive_interval_token1] = ACTIONS(2172), - [aux_sym_session_type_token1] = ACTIONS(2172), - [aux_sym_set_env_token1] = ACTIONS(2172), - [aux_sym_stdin_null_token1] = ACTIONS(2172), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2172), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2172), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2172), - [aux_sym_syslog_facility_token1] = ACTIONS(2172), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2172), - [aux_sym_keep_alive_token1] = ACTIONS(2172), - [aux_sym_tag_token1] = ACTIONS(2172), - [aux_sym_tunnel_token1] = ACTIONS(2174), - [aux_sym_tunnel_device_token1] = ACTIONS(2172), - [aux_sym_update_host_keys_token1] = ACTIONS(2172), - [aux_sym_use_keychain_token1] = ACTIONS(2172), - [aux_sym_use_roaming_token1] = ACTIONS(2172), - [aux_sym_user_token1] = ACTIONS(2174), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2172), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2172), - [aux_sym_visual_host_key_token1] = ACTIONS(2172), - [aux_sym_xauth_location_token1] = ACTIONS(2172), + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2181), + [aux_sym_match_token1] = ACTIONS(2181), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2181), + [aux_sym_address_family_token1] = ACTIONS(2181), + [aux_sym_batch_mode_token1] = ACTIONS(2181), + [aux_sym_bind_address_token1] = ACTIONS(2181), + [aux_sym_bind_interface_token1] = ACTIONS(2181), + [aux_sym_canonical_domains_token1] = ACTIONS(2181), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2181), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2181), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2181), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2181), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2181), + [aux_sym_certificate_file_token1] = ACTIONS(2181), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2181), + [aux_sym_channel_timeout_token1] = ACTIONS(2181), + [aux_sym_check_host_ip_token1] = ACTIONS(2181), + [aux_sym_ciphers_token1] = ACTIONS(2181), + [aux_sym_cipher_token1] = ACTIONS(2183), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2181), + [aux_sym_compression_token1] = ACTIONS(2181), + [aux_sym_connection_attempts_token1] = ACTIONS(2181), + [aux_sym_connect_timeout_token1] = ACTIONS(2181), + [aux_sym_control_master_token1] = ACTIONS(2181), + [aux_sym_control_path_token1] = ACTIONS(2181), + [aux_sym_control_persist_token1] = ACTIONS(2181), + [aux_sym_dynamic_forward_token1] = ACTIONS(2181), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2181), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2181), + [aux_sym_escape_char_token1] = ACTIONS(2181), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2181), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2181), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2181), + [aux_sym_forward_agent_token1] = ACTIONS(2181), + [aux_sym_forward_x11_token1] = ACTIONS(2183), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2181), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2181), + [aux_sym_gateway_ports_token1] = ACTIONS(2181), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2181), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2181), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2181), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2181), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2181), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2181), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2181), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2181), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2181), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2181), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2181), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2181), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2181), + [aux_sym_host_key_alias_token1] = ACTIONS(2181), + [aux_sym_hostname_token1] = ACTIONS(2181), + [aux_sym_identities_only_token1] = ACTIONS(2181), + [aux_sym_identity_agent_token1] = ACTIONS(2181), + [aux_sym_identity_file_token1] = ACTIONS(2181), + [aux_sym_ignore_unknown_token1] = ACTIONS(2181), + [aux_sym_include_token1] = ACTIONS(2181), + [aux_sym_ip_qos_token1] = ACTIONS(2181), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2181), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2181), + [aux_sym_kex_algorithms_token1] = ACTIONS(2181), + [aux_sym_known_hosts_command_token1] = ACTIONS(2181), + [aux_sym_local_command_token1] = ACTIONS(2181), + [aux_sym_local_forward_token1] = ACTIONS(2181), + [aux_sym_log_level_token1] = ACTIONS(2181), + [aux_sym_log_verbose_token1] = ACTIONS(2181), + [aux_sym_macs_token1] = ACTIONS(2181), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2181), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2181), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2181), + [aux_sym_password_authentication_token1] = ACTIONS(2181), + [aux_sym_permit_local_command_token1] = ACTIONS(2181), + [aux_sym_permit_remote_open_token1] = ACTIONS(2181), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2181), + [aux_sym_port_token1] = ACTIONS(2181), + [aux_sym_preferred_authentications_token1] = ACTIONS(2181), + [aux_sym_protocol_token1] = ACTIONS(2181), + [aux_sym_proxy_command_token1] = ACTIONS(2181), + [aux_sym_proxy_jump_token1] = ACTIONS(2181), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2181), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2181), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2181), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2181), + [aux_sym_rekey_limit_token1] = ACTIONS(2181), + [aux_sym_remote_command_token1] = ACTIONS(2181), + [aux_sym_remote_forward_token1] = ACTIONS(2181), + [aux_sym_request_tty_token1] = ACTIONS(2181), + [aux_sym_required_rsa_size_token1] = ACTIONS(2181), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2181), + [aux_sym_security_key_provider_token1] = ACTIONS(2181), + [aux_sym_send_env_token1] = ACTIONS(2181), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2181), + [aux_sym_server_alive_interval_token1] = ACTIONS(2181), + [aux_sym_session_type_token1] = ACTIONS(2181), + [aux_sym_set_env_token1] = ACTIONS(2181), + [aux_sym_stdin_null_token1] = ACTIONS(2181), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2181), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2181), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2181), + [aux_sym_syslog_facility_token1] = ACTIONS(2181), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2181), + [aux_sym_keep_alive_token1] = ACTIONS(2181), + [aux_sym_tag_token1] = ACTIONS(2181), + [aux_sym_tunnel_token1] = ACTIONS(2183), + [aux_sym_tunnel_device_token1] = ACTIONS(2181), + [aux_sym_update_host_keys_token1] = ACTIONS(2181), + [aux_sym_use_keychain_token1] = ACTIONS(2181), + [aux_sym_use_roaming_token1] = ACTIONS(2181), + [aux_sym_user_token1] = ACTIONS(2183), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2181), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2181), + [aux_sym_visual_host_key_token1] = ACTIONS(2181), + [aux_sym_xauth_location_token1] = ACTIONS(2181), }, [278] = { - [ts_builtin_sym_end] = ACTIONS(2176), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2180), - [aux_sym_match_token1] = ACTIONS(2176), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2176), - [aux_sym_address_family_token1] = ACTIONS(2176), - [aux_sym_batch_mode_token1] = ACTIONS(2176), - [aux_sym_bind_address_token1] = ACTIONS(2176), - [aux_sym_bind_interface_token1] = ACTIONS(2176), - [aux_sym_canonical_domains_token1] = ACTIONS(2176), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2176), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2176), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2176), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2176), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2176), - [aux_sym_certificate_file_token1] = ACTIONS(2176), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2176), - [aux_sym_channel_timeout_token1] = ACTIONS(2176), - [aux_sym_check_host_ip_token1] = ACTIONS(2176), - [aux_sym_ciphers_token1] = ACTIONS(2176), - [aux_sym_cipher_token1] = ACTIONS(2178), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2176), - [aux_sym_compression_token1] = ACTIONS(2176), - [aux_sym_connection_attempts_token1] = ACTIONS(2176), - [aux_sym_connect_timeout_token1] = ACTIONS(2176), - [aux_sym_control_master_token1] = ACTIONS(2176), - [aux_sym_control_path_token1] = ACTIONS(2176), - [aux_sym_control_persist_token1] = ACTIONS(2176), - [aux_sym_dynamic_forward_token1] = ACTIONS(2176), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2176), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2176), - [aux_sym_escape_char_token1] = ACTIONS(2176), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2176), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2176), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2176), - [aux_sym_forward_agent_token1] = ACTIONS(2176), - [aux_sym_forward_x11_token1] = ACTIONS(2178), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2176), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2176), - [aux_sym_gateway_ports_token1] = ACTIONS(2176), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2176), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2176), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2176), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2176), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2176), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2176), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2176), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2176), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2176), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2176), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2176), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2176), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2176), - [aux_sym_host_key_alias_token1] = ACTIONS(2176), - [aux_sym_hostname_token1] = ACTIONS(2176), - [aux_sym_identities_only_token1] = ACTIONS(2176), - [aux_sym_identity_agent_token1] = ACTIONS(2176), - [aux_sym_identity_file_token1] = ACTIONS(2176), - [aux_sym_ignore_unknown_token1] = ACTIONS(2176), - [aux_sym_include_token1] = ACTIONS(2176), - [aux_sym_ip_qos_token1] = ACTIONS(2176), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2176), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2176), - [aux_sym_kex_algorithms_token1] = ACTIONS(2176), - [aux_sym_known_hosts_command_token1] = ACTIONS(2176), - [aux_sym_local_command_token1] = ACTIONS(2176), - [aux_sym_local_forward_token1] = ACTIONS(2176), - [aux_sym_log_level_token1] = ACTIONS(2176), - [aux_sym_log_verbose_token1] = ACTIONS(2176), - [aux_sym_macs_token1] = ACTIONS(2176), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2176), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2176), - [aux_sym_password_authentication_token1] = ACTIONS(2176), - [aux_sym_permit_local_command_token1] = ACTIONS(2176), - [aux_sym_permit_remote_open_token1] = ACTIONS(2176), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2176), - [aux_sym_port_token1] = ACTIONS(2176), - [aux_sym_preferred_authentications_token1] = ACTIONS(2176), - [aux_sym_protocol_token1] = ACTIONS(2176), - [aux_sym_proxy_command_token1] = ACTIONS(2176), - [aux_sym_proxy_jump_token1] = ACTIONS(2176), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2176), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2176), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2176), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2176), - [aux_sym_rekey_limit_token1] = ACTIONS(2176), - [aux_sym_remote_command_token1] = ACTIONS(2176), - [aux_sym_remote_forward_token1] = ACTIONS(2176), - [aux_sym_request_tty_token1] = ACTIONS(2176), - [aux_sym_required_rsa_size_token1] = ACTIONS(2176), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2176), - [aux_sym_security_key_provider_token1] = ACTIONS(2176), - [aux_sym_send_env_token1] = ACTIONS(2176), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2176), - [aux_sym_server_alive_interval_token1] = ACTIONS(2176), - [aux_sym_session_type_token1] = ACTIONS(2176), - [aux_sym_set_env_token1] = ACTIONS(2176), - [aux_sym_stdin_null_token1] = ACTIONS(2176), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2176), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2176), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2176), - [aux_sym_syslog_facility_token1] = ACTIONS(2176), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2176), - [aux_sym_keep_alive_token1] = ACTIONS(2176), - [aux_sym_tag_token1] = ACTIONS(2176), - [aux_sym_tunnel_token1] = ACTIONS(2178), - [aux_sym_tunnel_device_token1] = ACTIONS(2176), - [aux_sym_update_host_keys_token1] = ACTIONS(2176), - [aux_sym_use_keychain_token1] = ACTIONS(2176), - [aux_sym_use_roaming_token1] = ACTIONS(2176), - [aux_sym_user_token1] = ACTIONS(2178), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2176), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2176), - [aux_sym_visual_host_key_token1] = ACTIONS(2176), - [aux_sym_xauth_location_token1] = ACTIONS(2176), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(2189), + [aux_sym_match_token1] = ACTIONS(2185), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2185), + [aux_sym_address_family_token1] = ACTIONS(2185), + [aux_sym_batch_mode_token1] = ACTIONS(2185), + [aux_sym_bind_address_token1] = ACTIONS(2185), + [aux_sym_bind_interface_token1] = ACTIONS(2185), + [aux_sym_canonical_domains_token1] = ACTIONS(2185), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2185), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2185), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2185), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2185), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2185), + [aux_sym_certificate_file_token1] = ACTIONS(2185), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2185), + [aux_sym_channel_timeout_token1] = ACTIONS(2185), + [aux_sym_check_host_ip_token1] = ACTIONS(2185), + [aux_sym_ciphers_token1] = ACTIONS(2185), + [aux_sym_cipher_token1] = ACTIONS(2187), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2185), + [aux_sym_compression_token1] = ACTIONS(2185), + [aux_sym_connection_attempts_token1] = ACTIONS(2185), + [aux_sym_connect_timeout_token1] = ACTIONS(2185), + [aux_sym_control_master_token1] = ACTIONS(2185), + [aux_sym_control_path_token1] = ACTIONS(2185), + [aux_sym_control_persist_token1] = ACTIONS(2185), + [aux_sym_dynamic_forward_token1] = ACTIONS(2185), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2185), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2185), + [aux_sym_escape_char_token1] = ACTIONS(2185), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2185), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2185), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2185), + [aux_sym_forward_agent_token1] = ACTIONS(2185), + [aux_sym_forward_x11_token1] = ACTIONS(2187), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2185), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2185), + [aux_sym_gateway_ports_token1] = ACTIONS(2185), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2185), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2185), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2185), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2185), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2185), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2185), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2185), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2185), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2185), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2185), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2185), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2185), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2185), + [aux_sym_host_key_alias_token1] = ACTIONS(2185), + [aux_sym_hostname_token1] = ACTIONS(2185), + [aux_sym_identities_only_token1] = ACTIONS(2185), + [aux_sym_identity_agent_token1] = ACTIONS(2185), + [aux_sym_identity_file_token1] = ACTIONS(2185), + [aux_sym_ignore_unknown_token1] = ACTIONS(2185), + [aux_sym_include_token1] = ACTIONS(2185), + [aux_sym_ip_qos_token1] = ACTIONS(2185), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2185), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2185), + [aux_sym_kex_algorithms_token1] = ACTIONS(2185), + [aux_sym_known_hosts_command_token1] = ACTIONS(2185), + [aux_sym_local_command_token1] = ACTIONS(2185), + [aux_sym_local_forward_token1] = ACTIONS(2185), + [aux_sym_log_level_token1] = ACTIONS(2185), + [aux_sym_log_verbose_token1] = ACTIONS(2185), + [aux_sym_macs_token1] = ACTIONS(2185), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2185), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2185), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2185), + [aux_sym_password_authentication_token1] = ACTIONS(2185), + [aux_sym_permit_local_command_token1] = ACTIONS(2185), + [aux_sym_permit_remote_open_token1] = ACTIONS(2185), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2185), + [aux_sym_port_token1] = ACTIONS(2185), + [aux_sym_preferred_authentications_token1] = ACTIONS(2185), + [aux_sym_protocol_token1] = ACTIONS(2185), + [aux_sym_proxy_command_token1] = ACTIONS(2185), + [aux_sym_proxy_jump_token1] = ACTIONS(2185), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2185), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2185), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2185), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2185), + [aux_sym_rekey_limit_token1] = ACTIONS(2185), + [aux_sym_remote_command_token1] = ACTIONS(2185), + [aux_sym_remote_forward_token1] = ACTIONS(2185), + [aux_sym_request_tty_token1] = ACTIONS(2185), + [aux_sym_required_rsa_size_token1] = ACTIONS(2185), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2185), + [aux_sym_security_key_provider_token1] = ACTIONS(2185), + [aux_sym_send_env_token1] = ACTIONS(2185), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2185), + [aux_sym_server_alive_interval_token1] = ACTIONS(2185), + [aux_sym_session_type_token1] = ACTIONS(2185), + [aux_sym_set_env_token1] = ACTIONS(2185), + [aux_sym_stdin_null_token1] = ACTIONS(2185), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2185), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2185), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2185), + [aux_sym_syslog_facility_token1] = ACTIONS(2185), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2185), + [aux_sym_keep_alive_token1] = ACTIONS(2185), + [aux_sym_tag_token1] = ACTIONS(2185), + [aux_sym_tunnel_token1] = ACTIONS(2187), + [aux_sym_tunnel_device_token1] = ACTIONS(2185), + [aux_sym_update_host_keys_token1] = ACTIONS(2185), + [aux_sym_use_keychain_token1] = ACTIONS(2185), + [aux_sym_use_roaming_token1] = ACTIONS(2185), + [aux_sym_user_token1] = ACTIONS(2187), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2185), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2185), + [aux_sym_visual_host_key_token1] = ACTIONS(2185), + [aux_sym_xauth_location_token1] = ACTIONS(2185), }, [279] = { - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2182), - [aux_sym_match_token1] = ACTIONS(2182), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2182), - [aux_sym_address_family_token1] = ACTIONS(2182), - [aux_sym_batch_mode_token1] = ACTIONS(2182), - [aux_sym_bind_address_token1] = ACTIONS(2182), - [aux_sym_bind_interface_token1] = ACTIONS(2182), - [aux_sym_canonical_domains_token1] = ACTIONS(2182), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2182), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2182), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2182), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2182), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2182), - [aux_sym_certificate_file_token1] = ACTIONS(2182), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2182), - [aux_sym_channel_timeout_token1] = ACTIONS(2182), - [aux_sym_check_host_ip_token1] = ACTIONS(2182), - [aux_sym_ciphers_token1] = ACTIONS(2182), - [aux_sym_cipher_token1] = ACTIONS(2184), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2182), - [aux_sym_compression_token1] = ACTIONS(2182), - [aux_sym_connection_attempts_token1] = ACTIONS(2182), - [aux_sym_connect_timeout_token1] = ACTIONS(2182), - [aux_sym_control_master_token1] = ACTIONS(2182), - [aux_sym_control_path_token1] = ACTIONS(2182), - [aux_sym_control_persist_token1] = ACTIONS(2182), - [aux_sym_dynamic_forward_token1] = ACTIONS(2182), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2182), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2182), - [aux_sym_escape_char_token1] = ACTIONS(2182), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2182), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2182), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2182), - [aux_sym_forward_agent_token1] = ACTIONS(2182), - [aux_sym_forward_x11_token1] = ACTIONS(2184), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2182), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2182), - [aux_sym_gateway_ports_token1] = ACTIONS(2182), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2182), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2182), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2182), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2182), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2182), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2182), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2182), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2182), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2182), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2182), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2182), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2182), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2182), - [aux_sym_host_key_alias_token1] = ACTIONS(2182), - [aux_sym_hostname_token1] = ACTIONS(2182), - [aux_sym_identities_only_token1] = ACTIONS(2182), - [aux_sym_identity_agent_token1] = ACTIONS(2182), - [aux_sym_identity_file_token1] = ACTIONS(2182), - [aux_sym_ignore_unknown_token1] = ACTIONS(2182), - [aux_sym_include_token1] = ACTIONS(2182), - [aux_sym_ip_qos_token1] = ACTIONS(2182), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2182), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2182), - [aux_sym_kex_algorithms_token1] = ACTIONS(2182), - [aux_sym_known_hosts_command_token1] = ACTIONS(2182), - [aux_sym_local_command_token1] = ACTIONS(2182), - [aux_sym_local_forward_token1] = ACTIONS(2182), - [aux_sym_log_level_token1] = ACTIONS(2182), - [aux_sym_log_verbose_token1] = ACTIONS(2182), - [aux_sym_macs_token1] = ACTIONS(2182), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2182), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2182), - [aux_sym_password_authentication_token1] = ACTIONS(2182), - [aux_sym_permit_local_command_token1] = ACTIONS(2182), - [aux_sym_permit_remote_open_token1] = ACTIONS(2182), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2182), - [aux_sym_port_token1] = ACTIONS(2182), - [aux_sym_preferred_authentications_token1] = ACTIONS(2182), - [aux_sym_protocol_token1] = ACTIONS(2182), - [aux_sym_proxy_command_token1] = ACTIONS(2182), - [aux_sym_proxy_jump_token1] = ACTIONS(2182), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2182), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2182), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2182), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2182), - [aux_sym_rekey_limit_token1] = ACTIONS(2182), - [aux_sym_remote_command_token1] = ACTIONS(2182), - [aux_sym_remote_forward_token1] = ACTIONS(2182), - [aux_sym_request_tty_token1] = ACTIONS(2182), - [aux_sym_required_rsa_size_token1] = ACTIONS(2182), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2182), - [aux_sym_security_key_provider_token1] = ACTIONS(2182), - [aux_sym_send_env_token1] = ACTIONS(2182), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2182), - [aux_sym_server_alive_interval_token1] = ACTIONS(2182), - [aux_sym_session_type_token1] = ACTIONS(2182), - [aux_sym_set_env_token1] = ACTIONS(2182), - [aux_sym_stdin_null_token1] = ACTIONS(2182), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2182), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2182), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2182), - [aux_sym_syslog_facility_token1] = ACTIONS(2182), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2182), - [aux_sym_keep_alive_token1] = ACTIONS(2182), - [aux_sym_tag_token1] = ACTIONS(2182), - [aux_sym_tunnel_token1] = ACTIONS(2184), - [aux_sym_tunnel_device_token1] = ACTIONS(2182), - [aux_sym_update_host_keys_token1] = ACTIONS(2182), - [aux_sym_use_keychain_token1] = ACTIONS(2182), - [aux_sym_use_roaming_token1] = ACTIONS(2182), - [aux_sym_user_token1] = ACTIONS(2184), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2182), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2182), - [aux_sym_visual_host_key_token1] = ACTIONS(2182), - [aux_sym_xauth_location_token1] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(2191), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(2191), + [aux_sym_match_token1] = ACTIONS(2191), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2191), + [aux_sym_address_family_token1] = ACTIONS(2191), + [aux_sym_batch_mode_token1] = ACTIONS(2191), + [aux_sym_bind_address_token1] = ACTIONS(2191), + [aux_sym_bind_interface_token1] = ACTIONS(2191), + [aux_sym_canonical_domains_token1] = ACTIONS(2191), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2191), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2191), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2191), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2191), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2191), + [aux_sym_certificate_file_token1] = ACTIONS(2191), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2191), + [aux_sym_channel_timeout_token1] = ACTIONS(2191), + [aux_sym_check_host_ip_token1] = ACTIONS(2191), + [aux_sym_ciphers_token1] = ACTIONS(2191), + [aux_sym_cipher_token1] = ACTIONS(2193), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2191), + [aux_sym_compression_token1] = ACTIONS(2191), + [aux_sym_connection_attempts_token1] = ACTIONS(2191), + [aux_sym_connect_timeout_token1] = ACTIONS(2191), + [aux_sym_control_master_token1] = ACTIONS(2191), + [aux_sym_control_path_token1] = ACTIONS(2191), + [aux_sym_control_persist_token1] = ACTIONS(2191), + [aux_sym_dynamic_forward_token1] = ACTIONS(2191), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2191), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2191), + [aux_sym_escape_char_token1] = ACTIONS(2191), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2191), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2191), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2191), + [aux_sym_forward_agent_token1] = ACTIONS(2191), + [aux_sym_forward_x11_token1] = ACTIONS(2193), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2191), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2191), + [aux_sym_gateway_ports_token1] = ACTIONS(2191), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2191), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2191), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2191), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2191), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2191), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2191), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2191), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2191), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2191), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2191), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2191), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2191), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2191), + [aux_sym_host_key_alias_token1] = ACTIONS(2191), + [aux_sym_hostname_token1] = ACTIONS(2191), + [aux_sym_identities_only_token1] = ACTIONS(2191), + [aux_sym_identity_agent_token1] = ACTIONS(2191), + [aux_sym_identity_file_token1] = ACTIONS(2191), + [aux_sym_ignore_unknown_token1] = ACTIONS(2191), + [aux_sym_include_token1] = ACTIONS(2191), + [aux_sym_ip_qos_token1] = ACTIONS(2191), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2191), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2191), + [aux_sym_kex_algorithms_token1] = ACTIONS(2191), + [aux_sym_known_hosts_command_token1] = ACTIONS(2191), + [aux_sym_local_command_token1] = ACTIONS(2191), + [aux_sym_local_forward_token1] = ACTIONS(2191), + [aux_sym_log_level_token1] = ACTIONS(2191), + [aux_sym_log_verbose_token1] = ACTIONS(2191), + [aux_sym_macs_token1] = ACTIONS(2191), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2191), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2191), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2191), + [aux_sym_password_authentication_token1] = ACTIONS(2191), + [aux_sym_permit_local_command_token1] = ACTIONS(2191), + [aux_sym_permit_remote_open_token1] = ACTIONS(2191), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2191), + [aux_sym_port_token1] = ACTIONS(2191), + [aux_sym_preferred_authentications_token1] = ACTIONS(2191), + [aux_sym_protocol_token1] = ACTIONS(2191), + [aux_sym_proxy_command_token1] = ACTIONS(2191), + [aux_sym_proxy_jump_token1] = ACTIONS(2191), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2191), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2191), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2191), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2191), + [aux_sym_rekey_limit_token1] = ACTIONS(2191), + [aux_sym_remote_command_token1] = ACTIONS(2191), + [aux_sym_remote_forward_token1] = ACTIONS(2191), + [aux_sym_request_tty_token1] = ACTIONS(2191), + [aux_sym_required_rsa_size_token1] = ACTIONS(2191), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2191), + [aux_sym_security_key_provider_token1] = ACTIONS(2191), + [aux_sym_send_env_token1] = ACTIONS(2191), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2191), + [aux_sym_server_alive_interval_token1] = ACTIONS(2191), + [aux_sym_session_type_token1] = ACTIONS(2191), + [aux_sym_set_env_token1] = ACTIONS(2191), + [aux_sym_stdin_null_token1] = ACTIONS(2191), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2191), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2191), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2191), + [aux_sym_syslog_facility_token1] = ACTIONS(2191), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2191), + [aux_sym_keep_alive_token1] = ACTIONS(2191), + [aux_sym_tag_token1] = ACTIONS(2191), + [aux_sym_tunnel_token1] = ACTIONS(2193), + [aux_sym_tunnel_device_token1] = ACTIONS(2191), + [aux_sym_update_host_keys_token1] = ACTIONS(2191), + [aux_sym_use_keychain_token1] = ACTIONS(2191), + [aux_sym_use_roaming_token1] = ACTIONS(2191), + [aux_sym_user_token1] = ACTIONS(2193), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2191), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2191), + [aux_sym_visual_host_key_token1] = ACTIONS(2191), + [aux_sym_xauth_location_token1] = ACTIONS(2191), }, [280] = { - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2190), - [aux_sym_match_token1] = ACTIONS(2186), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2186), - [aux_sym_address_family_token1] = ACTIONS(2186), - [aux_sym_batch_mode_token1] = ACTIONS(2186), - [aux_sym_bind_address_token1] = ACTIONS(2186), - [aux_sym_bind_interface_token1] = ACTIONS(2186), - [aux_sym_canonical_domains_token1] = ACTIONS(2186), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2186), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2186), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2186), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2186), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2186), - [aux_sym_certificate_file_token1] = ACTIONS(2186), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2186), - [aux_sym_channel_timeout_token1] = ACTIONS(2186), - [aux_sym_check_host_ip_token1] = ACTIONS(2186), - [aux_sym_ciphers_token1] = ACTIONS(2186), - [aux_sym_cipher_token1] = ACTIONS(2188), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2186), - [aux_sym_compression_token1] = ACTIONS(2186), - [aux_sym_connection_attempts_token1] = ACTIONS(2186), - [aux_sym_connect_timeout_token1] = ACTIONS(2186), - [aux_sym_control_master_token1] = ACTIONS(2186), - [aux_sym_control_path_token1] = ACTIONS(2186), - [aux_sym_control_persist_token1] = ACTIONS(2186), - [aux_sym_dynamic_forward_token1] = ACTIONS(2186), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2186), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2186), - [aux_sym_escape_char_token1] = ACTIONS(2186), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2186), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2186), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2186), - [aux_sym_forward_agent_token1] = ACTIONS(2186), - [aux_sym_forward_x11_token1] = ACTIONS(2188), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2186), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2186), - [aux_sym_gateway_ports_token1] = ACTIONS(2186), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2186), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2186), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2186), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2186), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2186), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2186), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2186), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2186), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2186), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2186), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2186), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2186), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2186), - [aux_sym_host_key_alias_token1] = ACTIONS(2186), - [aux_sym_hostname_token1] = ACTIONS(2186), - [aux_sym_identities_only_token1] = ACTIONS(2186), - [aux_sym_identity_agent_token1] = ACTIONS(2186), - [aux_sym_identity_file_token1] = ACTIONS(2186), - [aux_sym_ignore_unknown_token1] = ACTIONS(2186), - [aux_sym_include_token1] = ACTIONS(2186), - [aux_sym_ip_qos_token1] = ACTIONS(2186), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2186), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2186), - [aux_sym_kex_algorithms_token1] = ACTIONS(2186), - [aux_sym_known_hosts_command_token1] = ACTIONS(2186), - [aux_sym_local_command_token1] = ACTIONS(2186), - [aux_sym_local_forward_token1] = ACTIONS(2186), - [aux_sym_log_level_token1] = ACTIONS(2186), - [aux_sym_log_verbose_token1] = ACTIONS(2186), - [aux_sym_macs_token1] = ACTIONS(2186), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2186), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2186), - [aux_sym_password_authentication_token1] = ACTIONS(2186), - [aux_sym_permit_local_command_token1] = ACTIONS(2186), - [aux_sym_permit_remote_open_token1] = ACTIONS(2186), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2186), - [aux_sym_port_token1] = ACTIONS(2186), - [aux_sym_preferred_authentications_token1] = ACTIONS(2186), - [aux_sym_protocol_token1] = ACTIONS(2186), - [aux_sym_proxy_command_token1] = ACTIONS(2186), - [aux_sym_proxy_jump_token1] = ACTIONS(2186), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2186), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2186), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2186), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2186), - [aux_sym_rekey_limit_token1] = ACTIONS(2186), - [aux_sym_remote_command_token1] = ACTIONS(2186), - [aux_sym_remote_forward_token1] = ACTIONS(2186), - [aux_sym_request_tty_token1] = ACTIONS(2186), - [aux_sym_required_rsa_size_token1] = ACTIONS(2186), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2186), - [aux_sym_security_key_provider_token1] = ACTIONS(2186), - [aux_sym_send_env_token1] = ACTIONS(2186), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2186), - [aux_sym_server_alive_interval_token1] = ACTIONS(2186), - [aux_sym_session_type_token1] = ACTIONS(2186), - [aux_sym_set_env_token1] = ACTIONS(2186), - [aux_sym_stdin_null_token1] = ACTIONS(2186), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2186), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2186), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2186), - [aux_sym_syslog_facility_token1] = ACTIONS(2186), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2186), - [aux_sym_keep_alive_token1] = ACTIONS(2186), - [aux_sym_tag_token1] = ACTIONS(2186), - [aux_sym_tunnel_token1] = ACTIONS(2188), - [aux_sym_tunnel_device_token1] = ACTIONS(2186), - [aux_sym_update_host_keys_token1] = ACTIONS(2186), - [aux_sym_use_keychain_token1] = ACTIONS(2186), - [aux_sym_use_roaming_token1] = ACTIONS(2186), - [aux_sym_user_token1] = ACTIONS(2188), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2186), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2186), - [aux_sym_visual_host_key_token1] = ACTIONS(2186), - [aux_sym_xauth_location_token1] = ACTIONS(2186), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2199), + [aux_sym_match_token1] = ACTIONS(2195), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2195), + [aux_sym_address_family_token1] = ACTIONS(2195), + [aux_sym_batch_mode_token1] = ACTIONS(2195), + [aux_sym_bind_address_token1] = ACTIONS(2195), + [aux_sym_bind_interface_token1] = ACTIONS(2195), + [aux_sym_canonical_domains_token1] = ACTIONS(2195), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2195), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2195), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2195), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2195), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2195), + [aux_sym_certificate_file_token1] = ACTIONS(2195), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2195), + [aux_sym_channel_timeout_token1] = ACTIONS(2195), + [aux_sym_check_host_ip_token1] = ACTIONS(2195), + [aux_sym_ciphers_token1] = ACTIONS(2195), + [aux_sym_cipher_token1] = ACTIONS(2197), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2195), + [aux_sym_compression_token1] = ACTIONS(2195), + [aux_sym_connection_attempts_token1] = ACTIONS(2195), + [aux_sym_connect_timeout_token1] = ACTIONS(2195), + [aux_sym_control_master_token1] = ACTIONS(2195), + [aux_sym_control_path_token1] = ACTIONS(2195), + [aux_sym_control_persist_token1] = ACTIONS(2195), + [aux_sym_dynamic_forward_token1] = ACTIONS(2195), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2195), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2195), + [aux_sym_escape_char_token1] = ACTIONS(2195), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2195), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2195), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2195), + [aux_sym_forward_agent_token1] = ACTIONS(2195), + [aux_sym_forward_x11_token1] = ACTIONS(2197), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2195), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2195), + [aux_sym_gateway_ports_token1] = ACTIONS(2195), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2195), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2195), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2195), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2195), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2195), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2195), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2195), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2195), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2195), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2195), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2195), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2195), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2195), + [aux_sym_host_key_alias_token1] = ACTIONS(2195), + [aux_sym_hostname_token1] = ACTIONS(2195), + [aux_sym_identities_only_token1] = ACTIONS(2195), + [aux_sym_identity_agent_token1] = ACTIONS(2195), + [aux_sym_identity_file_token1] = ACTIONS(2195), + [aux_sym_ignore_unknown_token1] = ACTIONS(2195), + [aux_sym_include_token1] = ACTIONS(2195), + [aux_sym_ip_qos_token1] = ACTIONS(2195), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2195), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2195), + [aux_sym_kex_algorithms_token1] = ACTIONS(2195), + [aux_sym_known_hosts_command_token1] = ACTIONS(2195), + [aux_sym_local_command_token1] = ACTIONS(2195), + [aux_sym_local_forward_token1] = ACTIONS(2195), + [aux_sym_log_level_token1] = ACTIONS(2195), + [aux_sym_log_verbose_token1] = ACTIONS(2195), + [aux_sym_macs_token1] = ACTIONS(2195), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2195), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2195), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2195), + [aux_sym_password_authentication_token1] = ACTIONS(2195), + [aux_sym_permit_local_command_token1] = ACTIONS(2195), + [aux_sym_permit_remote_open_token1] = ACTIONS(2195), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2195), + [aux_sym_port_token1] = ACTIONS(2195), + [aux_sym_preferred_authentications_token1] = ACTIONS(2195), + [aux_sym_protocol_token1] = ACTIONS(2195), + [aux_sym_proxy_command_token1] = ACTIONS(2195), + [aux_sym_proxy_jump_token1] = ACTIONS(2195), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2195), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2195), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2195), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2195), + [aux_sym_rekey_limit_token1] = ACTIONS(2195), + [aux_sym_remote_command_token1] = ACTIONS(2195), + [aux_sym_remote_forward_token1] = ACTIONS(2195), + [aux_sym_request_tty_token1] = ACTIONS(2195), + [aux_sym_required_rsa_size_token1] = ACTIONS(2195), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2195), + [aux_sym_security_key_provider_token1] = ACTIONS(2195), + [aux_sym_send_env_token1] = ACTIONS(2195), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2195), + [aux_sym_server_alive_interval_token1] = ACTIONS(2195), + [aux_sym_session_type_token1] = ACTIONS(2195), + [aux_sym_set_env_token1] = ACTIONS(2195), + [aux_sym_stdin_null_token1] = ACTIONS(2195), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2195), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2195), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2195), + [aux_sym_syslog_facility_token1] = ACTIONS(2195), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2195), + [aux_sym_keep_alive_token1] = ACTIONS(2195), + [aux_sym_tag_token1] = ACTIONS(2195), + [aux_sym_tunnel_token1] = ACTIONS(2197), + [aux_sym_tunnel_device_token1] = ACTIONS(2195), + [aux_sym_update_host_keys_token1] = ACTIONS(2195), + [aux_sym_use_keychain_token1] = ACTIONS(2195), + [aux_sym_use_roaming_token1] = ACTIONS(2195), + [aux_sym_user_token1] = ACTIONS(2197), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2195), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2195), + [aux_sym_visual_host_key_token1] = ACTIONS(2195), + [aux_sym_xauth_location_token1] = ACTIONS(2195), }, [281] = { - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2192), - [aux_sym_match_token1] = ACTIONS(2192), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2192), - [aux_sym_address_family_token1] = ACTIONS(2192), - [aux_sym_batch_mode_token1] = ACTIONS(2192), - [aux_sym_bind_address_token1] = ACTIONS(2192), - [aux_sym_bind_interface_token1] = ACTIONS(2192), - [aux_sym_canonical_domains_token1] = ACTIONS(2192), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2192), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2192), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2192), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2192), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2192), - [aux_sym_certificate_file_token1] = ACTIONS(2192), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2192), - [aux_sym_channel_timeout_token1] = ACTIONS(2192), - [aux_sym_check_host_ip_token1] = ACTIONS(2192), - [aux_sym_ciphers_token1] = ACTIONS(2192), - [aux_sym_cipher_token1] = ACTIONS(2194), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2192), - [aux_sym_compression_token1] = ACTIONS(2192), - [aux_sym_connection_attempts_token1] = ACTIONS(2192), - [aux_sym_connect_timeout_token1] = ACTIONS(2192), - [aux_sym_control_master_token1] = ACTIONS(2192), - [aux_sym_control_path_token1] = ACTIONS(2192), - [aux_sym_control_persist_token1] = ACTIONS(2192), - [aux_sym_dynamic_forward_token1] = ACTIONS(2192), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2192), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2192), - [aux_sym_escape_char_token1] = ACTIONS(2192), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2192), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2192), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2192), - [aux_sym_forward_agent_token1] = ACTIONS(2192), - [aux_sym_forward_x11_token1] = ACTIONS(2194), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2192), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2192), - [aux_sym_gateway_ports_token1] = ACTIONS(2192), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2192), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2192), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2192), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2192), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2192), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2192), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2192), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2192), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2192), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2192), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2192), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2192), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2192), - [aux_sym_host_key_alias_token1] = ACTIONS(2192), - [aux_sym_hostname_token1] = ACTIONS(2192), - [aux_sym_identities_only_token1] = ACTIONS(2192), - [aux_sym_identity_agent_token1] = ACTIONS(2192), - [aux_sym_identity_file_token1] = ACTIONS(2192), - [aux_sym_ignore_unknown_token1] = ACTIONS(2192), - [aux_sym_include_token1] = ACTIONS(2192), - [aux_sym_ip_qos_token1] = ACTIONS(2192), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2192), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2192), - [aux_sym_kex_algorithms_token1] = ACTIONS(2192), - [aux_sym_known_hosts_command_token1] = ACTIONS(2192), - [aux_sym_local_command_token1] = ACTIONS(2192), - [aux_sym_local_forward_token1] = ACTIONS(2192), - [aux_sym_log_level_token1] = ACTIONS(2192), - [aux_sym_log_verbose_token1] = ACTIONS(2192), - [aux_sym_macs_token1] = ACTIONS(2192), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2192), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2192), - [aux_sym_password_authentication_token1] = ACTIONS(2192), - [aux_sym_permit_local_command_token1] = ACTIONS(2192), - [aux_sym_permit_remote_open_token1] = ACTIONS(2192), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2192), - [aux_sym_port_token1] = ACTIONS(2192), - [aux_sym_preferred_authentications_token1] = ACTIONS(2192), - [aux_sym_protocol_token1] = ACTIONS(2192), - [aux_sym_proxy_command_token1] = ACTIONS(2192), - [aux_sym_proxy_jump_token1] = ACTIONS(2192), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2192), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2192), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2192), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2192), - [aux_sym_rekey_limit_token1] = ACTIONS(2192), - [aux_sym_remote_command_token1] = ACTIONS(2192), - [aux_sym_remote_forward_token1] = ACTIONS(2192), - [aux_sym_request_tty_token1] = ACTIONS(2192), - [aux_sym_required_rsa_size_token1] = ACTIONS(2192), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2192), - [aux_sym_security_key_provider_token1] = ACTIONS(2192), - [aux_sym_send_env_token1] = ACTIONS(2192), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2192), - [aux_sym_server_alive_interval_token1] = ACTIONS(2192), - [aux_sym_session_type_token1] = ACTIONS(2192), - [aux_sym_set_env_token1] = ACTIONS(2192), - [aux_sym_stdin_null_token1] = ACTIONS(2192), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2192), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2192), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2192), - [aux_sym_syslog_facility_token1] = ACTIONS(2192), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2192), - [aux_sym_keep_alive_token1] = ACTIONS(2192), - [aux_sym_tag_token1] = ACTIONS(2192), - [aux_sym_tunnel_token1] = ACTIONS(2194), - [aux_sym_tunnel_device_token1] = ACTIONS(2192), - [aux_sym_update_host_keys_token1] = ACTIONS(2192), - [aux_sym_use_keychain_token1] = ACTIONS(2192), - [aux_sym_use_roaming_token1] = ACTIONS(2192), - [aux_sym_user_token1] = ACTIONS(2194), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2192), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2192), - [aux_sym_visual_host_key_token1] = ACTIONS(2192), - [aux_sym_xauth_location_token1] = ACTIONS(2192), + [ts_builtin_sym_end] = ACTIONS(2201), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(2201), + [aux_sym_match_token1] = ACTIONS(2201), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2201), + [aux_sym_address_family_token1] = ACTIONS(2201), + [aux_sym_batch_mode_token1] = ACTIONS(2201), + [aux_sym_bind_address_token1] = ACTIONS(2201), + [aux_sym_bind_interface_token1] = ACTIONS(2201), + [aux_sym_canonical_domains_token1] = ACTIONS(2201), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2201), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2201), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2201), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2201), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2201), + [aux_sym_certificate_file_token1] = ACTIONS(2201), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2201), + [aux_sym_channel_timeout_token1] = ACTIONS(2201), + [aux_sym_check_host_ip_token1] = ACTIONS(2201), + [aux_sym_ciphers_token1] = ACTIONS(2201), + [aux_sym_cipher_token1] = ACTIONS(2203), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2201), + [aux_sym_compression_token1] = ACTIONS(2201), + [aux_sym_connection_attempts_token1] = ACTIONS(2201), + [aux_sym_connect_timeout_token1] = ACTIONS(2201), + [aux_sym_control_master_token1] = ACTIONS(2201), + [aux_sym_control_path_token1] = ACTIONS(2201), + [aux_sym_control_persist_token1] = ACTIONS(2201), + [aux_sym_dynamic_forward_token1] = ACTIONS(2201), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2201), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2201), + [aux_sym_escape_char_token1] = ACTIONS(2201), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2201), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2201), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2201), + [aux_sym_forward_agent_token1] = ACTIONS(2201), + [aux_sym_forward_x11_token1] = ACTIONS(2203), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2201), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2201), + [aux_sym_gateway_ports_token1] = ACTIONS(2201), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2201), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2201), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2201), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2201), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2201), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2201), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2201), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2201), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2201), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2201), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2201), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2201), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2201), + [aux_sym_host_key_alias_token1] = ACTIONS(2201), + [aux_sym_hostname_token1] = ACTIONS(2201), + [aux_sym_identities_only_token1] = ACTIONS(2201), + [aux_sym_identity_agent_token1] = ACTIONS(2201), + [aux_sym_identity_file_token1] = ACTIONS(2201), + [aux_sym_ignore_unknown_token1] = ACTIONS(2201), + [aux_sym_include_token1] = ACTIONS(2201), + [aux_sym_ip_qos_token1] = ACTIONS(2201), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2201), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2201), + [aux_sym_kex_algorithms_token1] = ACTIONS(2201), + [aux_sym_known_hosts_command_token1] = ACTIONS(2201), + [aux_sym_local_command_token1] = ACTIONS(2201), + [aux_sym_local_forward_token1] = ACTIONS(2201), + [aux_sym_log_level_token1] = ACTIONS(2201), + [aux_sym_log_verbose_token1] = ACTIONS(2201), + [aux_sym_macs_token1] = ACTIONS(2201), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2201), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2201), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2201), + [aux_sym_password_authentication_token1] = ACTIONS(2201), + [aux_sym_permit_local_command_token1] = ACTIONS(2201), + [aux_sym_permit_remote_open_token1] = ACTIONS(2201), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2201), + [aux_sym_port_token1] = ACTIONS(2201), + [aux_sym_preferred_authentications_token1] = ACTIONS(2201), + [aux_sym_protocol_token1] = ACTIONS(2201), + [aux_sym_proxy_command_token1] = ACTIONS(2201), + [aux_sym_proxy_jump_token1] = ACTIONS(2201), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2201), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2201), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2201), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2201), + [aux_sym_rekey_limit_token1] = ACTIONS(2201), + [aux_sym_remote_command_token1] = ACTIONS(2201), + [aux_sym_remote_forward_token1] = ACTIONS(2201), + [aux_sym_request_tty_token1] = ACTIONS(2201), + [aux_sym_required_rsa_size_token1] = ACTIONS(2201), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2201), + [aux_sym_security_key_provider_token1] = ACTIONS(2201), + [aux_sym_send_env_token1] = ACTIONS(2201), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2201), + [aux_sym_server_alive_interval_token1] = ACTIONS(2201), + [aux_sym_session_type_token1] = ACTIONS(2201), + [aux_sym_set_env_token1] = ACTIONS(2201), + [aux_sym_stdin_null_token1] = ACTIONS(2201), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2201), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2201), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2201), + [aux_sym_syslog_facility_token1] = ACTIONS(2201), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2201), + [aux_sym_keep_alive_token1] = ACTIONS(2201), + [aux_sym_tag_token1] = ACTIONS(2201), + [aux_sym_tunnel_token1] = ACTIONS(2203), + [aux_sym_tunnel_device_token1] = ACTIONS(2201), + [aux_sym_update_host_keys_token1] = ACTIONS(2201), + [aux_sym_use_keychain_token1] = ACTIONS(2201), + [aux_sym_use_roaming_token1] = ACTIONS(2201), + [aux_sym_user_token1] = ACTIONS(2203), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2201), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2201), + [aux_sym_visual_host_key_token1] = ACTIONS(2201), + [aux_sym_xauth_location_token1] = ACTIONS(2201), }, [282] = { - [ts_builtin_sym_end] = ACTIONS(2196), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2200), - [aux_sym_match_token1] = ACTIONS(2196), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2196), - [aux_sym_address_family_token1] = ACTIONS(2196), - [aux_sym_batch_mode_token1] = ACTIONS(2196), - [aux_sym_bind_address_token1] = ACTIONS(2196), - [aux_sym_bind_interface_token1] = ACTIONS(2196), - [aux_sym_canonical_domains_token1] = ACTIONS(2196), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2196), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2196), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2196), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2196), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2196), - [aux_sym_certificate_file_token1] = ACTIONS(2196), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2196), - [aux_sym_channel_timeout_token1] = ACTIONS(2196), - [aux_sym_check_host_ip_token1] = ACTIONS(2196), - [aux_sym_ciphers_token1] = ACTIONS(2196), - [aux_sym_cipher_token1] = ACTIONS(2198), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2196), - [aux_sym_compression_token1] = ACTIONS(2196), - [aux_sym_connection_attempts_token1] = ACTIONS(2196), - [aux_sym_connect_timeout_token1] = ACTIONS(2196), - [aux_sym_control_master_token1] = ACTIONS(2196), - [aux_sym_control_path_token1] = ACTIONS(2196), - [aux_sym_control_persist_token1] = ACTIONS(2196), - [aux_sym_dynamic_forward_token1] = ACTIONS(2196), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2196), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2196), - [aux_sym_escape_char_token1] = ACTIONS(2196), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2196), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2196), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2196), - [aux_sym_forward_agent_token1] = ACTIONS(2196), - [aux_sym_forward_x11_token1] = ACTIONS(2198), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2196), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2196), - [aux_sym_gateway_ports_token1] = ACTIONS(2196), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2196), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2196), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2196), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2196), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2196), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2196), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2196), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2196), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2196), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2196), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2196), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2196), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2196), - [aux_sym_host_key_alias_token1] = ACTIONS(2196), - [aux_sym_hostname_token1] = ACTIONS(2196), - [aux_sym_identities_only_token1] = ACTIONS(2196), - [aux_sym_identity_agent_token1] = ACTIONS(2196), - [aux_sym_identity_file_token1] = ACTIONS(2196), - [aux_sym_ignore_unknown_token1] = ACTIONS(2196), - [aux_sym_include_token1] = ACTIONS(2196), - [aux_sym_ip_qos_token1] = ACTIONS(2196), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2196), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2196), - [aux_sym_kex_algorithms_token1] = ACTIONS(2196), - [aux_sym_known_hosts_command_token1] = ACTIONS(2196), - [aux_sym_local_command_token1] = ACTIONS(2196), - [aux_sym_local_forward_token1] = ACTIONS(2196), - [aux_sym_log_level_token1] = ACTIONS(2196), - [aux_sym_log_verbose_token1] = ACTIONS(2196), - [aux_sym_macs_token1] = ACTIONS(2196), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2196), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2196), - [aux_sym_password_authentication_token1] = ACTIONS(2196), - [aux_sym_permit_local_command_token1] = ACTIONS(2196), - [aux_sym_permit_remote_open_token1] = ACTIONS(2196), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2196), - [aux_sym_port_token1] = ACTIONS(2196), - [aux_sym_preferred_authentications_token1] = ACTIONS(2196), - [aux_sym_protocol_token1] = ACTIONS(2196), - [aux_sym_proxy_command_token1] = ACTIONS(2196), - [aux_sym_proxy_jump_token1] = ACTIONS(2196), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2196), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2196), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2196), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2196), - [aux_sym_rekey_limit_token1] = ACTIONS(2196), - [aux_sym_remote_command_token1] = ACTIONS(2196), - [aux_sym_remote_forward_token1] = ACTIONS(2196), - [aux_sym_request_tty_token1] = ACTIONS(2196), - [aux_sym_required_rsa_size_token1] = ACTIONS(2196), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2196), - [aux_sym_security_key_provider_token1] = ACTIONS(2196), - [aux_sym_send_env_token1] = ACTIONS(2196), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2196), - [aux_sym_server_alive_interval_token1] = ACTIONS(2196), - [aux_sym_session_type_token1] = ACTIONS(2196), - [aux_sym_set_env_token1] = ACTIONS(2196), - [aux_sym_stdin_null_token1] = ACTIONS(2196), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2196), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2196), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2196), - [aux_sym_syslog_facility_token1] = ACTIONS(2196), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2196), - [aux_sym_keep_alive_token1] = ACTIONS(2196), - [aux_sym_tag_token1] = ACTIONS(2196), - [aux_sym_tunnel_token1] = ACTIONS(2198), - [aux_sym_tunnel_device_token1] = ACTIONS(2196), - [aux_sym_update_host_keys_token1] = ACTIONS(2196), - [aux_sym_use_keychain_token1] = ACTIONS(2196), - [aux_sym_use_roaming_token1] = ACTIONS(2196), - [aux_sym_user_token1] = ACTIONS(2198), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2196), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2196), - [aux_sym_visual_host_key_token1] = ACTIONS(2196), - [aux_sym_xauth_location_token1] = ACTIONS(2196), + [ts_builtin_sym_end] = ACTIONS(2205), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2209), + [aux_sym_match_token1] = ACTIONS(2205), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2205), + [aux_sym_address_family_token1] = ACTIONS(2205), + [aux_sym_batch_mode_token1] = ACTIONS(2205), + [aux_sym_bind_address_token1] = ACTIONS(2205), + [aux_sym_bind_interface_token1] = ACTIONS(2205), + [aux_sym_canonical_domains_token1] = ACTIONS(2205), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2205), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2205), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2205), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2205), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2205), + [aux_sym_certificate_file_token1] = ACTIONS(2205), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2205), + [aux_sym_channel_timeout_token1] = ACTIONS(2205), + [aux_sym_check_host_ip_token1] = ACTIONS(2205), + [aux_sym_ciphers_token1] = ACTIONS(2205), + [aux_sym_cipher_token1] = ACTIONS(2207), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2205), + [aux_sym_compression_token1] = ACTIONS(2205), + [aux_sym_connection_attempts_token1] = ACTIONS(2205), + [aux_sym_connect_timeout_token1] = ACTIONS(2205), + [aux_sym_control_master_token1] = ACTIONS(2205), + [aux_sym_control_path_token1] = ACTIONS(2205), + [aux_sym_control_persist_token1] = ACTIONS(2205), + [aux_sym_dynamic_forward_token1] = ACTIONS(2205), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2205), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2205), + [aux_sym_escape_char_token1] = ACTIONS(2205), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2205), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2205), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2205), + [aux_sym_forward_agent_token1] = ACTIONS(2205), + [aux_sym_forward_x11_token1] = ACTIONS(2207), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2205), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2205), + [aux_sym_gateway_ports_token1] = ACTIONS(2205), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2205), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2205), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2205), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2205), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2205), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2205), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2205), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2205), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2205), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2205), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2205), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2205), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2205), + [aux_sym_host_key_alias_token1] = ACTIONS(2205), + [aux_sym_hostname_token1] = ACTIONS(2205), + [aux_sym_identities_only_token1] = ACTIONS(2205), + [aux_sym_identity_agent_token1] = ACTIONS(2205), + [aux_sym_identity_file_token1] = ACTIONS(2205), + [aux_sym_ignore_unknown_token1] = ACTIONS(2205), + [aux_sym_include_token1] = ACTIONS(2205), + [aux_sym_ip_qos_token1] = ACTIONS(2205), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2205), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2205), + [aux_sym_kex_algorithms_token1] = ACTIONS(2205), + [aux_sym_known_hosts_command_token1] = ACTIONS(2205), + [aux_sym_local_command_token1] = ACTIONS(2205), + [aux_sym_local_forward_token1] = ACTIONS(2205), + [aux_sym_log_level_token1] = ACTIONS(2205), + [aux_sym_log_verbose_token1] = ACTIONS(2205), + [aux_sym_macs_token1] = ACTIONS(2205), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2205), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2205), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2205), + [aux_sym_password_authentication_token1] = ACTIONS(2205), + [aux_sym_permit_local_command_token1] = ACTIONS(2205), + [aux_sym_permit_remote_open_token1] = ACTIONS(2205), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2205), + [aux_sym_port_token1] = ACTIONS(2205), + [aux_sym_preferred_authentications_token1] = ACTIONS(2205), + [aux_sym_protocol_token1] = ACTIONS(2205), + [aux_sym_proxy_command_token1] = ACTIONS(2205), + [aux_sym_proxy_jump_token1] = ACTIONS(2205), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2205), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2205), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2205), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2205), + [aux_sym_rekey_limit_token1] = ACTIONS(2205), + [aux_sym_remote_command_token1] = ACTIONS(2205), + [aux_sym_remote_forward_token1] = ACTIONS(2205), + [aux_sym_request_tty_token1] = ACTIONS(2205), + [aux_sym_required_rsa_size_token1] = ACTIONS(2205), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2205), + [aux_sym_security_key_provider_token1] = ACTIONS(2205), + [aux_sym_send_env_token1] = ACTIONS(2205), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2205), + [aux_sym_server_alive_interval_token1] = ACTIONS(2205), + [aux_sym_session_type_token1] = ACTIONS(2205), + [aux_sym_set_env_token1] = ACTIONS(2205), + [aux_sym_stdin_null_token1] = ACTIONS(2205), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2205), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2205), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2205), + [aux_sym_syslog_facility_token1] = ACTIONS(2205), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2205), + [aux_sym_keep_alive_token1] = ACTIONS(2205), + [aux_sym_tag_token1] = ACTIONS(2205), + [aux_sym_tunnel_token1] = ACTIONS(2207), + [aux_sym_tunnel_device_token1] = ACTIONS(2205), + [aux_sym_update_host_keys_token1] = ACTIONS(2205), + [aux_sym_use_keychain_token1] = ACTIONS(2205), + [aux_sym_use_roaming_token1] = ACTIONS(2205), + [aux_sym_user_token1] = ACTIONS(2207), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2205), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2205), + [aux_sym_visual_host_key_token1] = ACTIONS(2205), + [aux_sym_xauth_location_token1] = ACTIONS(2205), }, [283] = { - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2202), - [aux_sym_match_token1] = ACTIONS(2202), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2202), - [aux_sym_address_family_token1] = ACTIONS(2202), - [aux_sym_batch_mode_token1] = ACTIONS(2202), - [aux_sym_bind_address_token1] = ACTIONS(2202), - [aux_sym_bind_interface_token1] = ACTIONS(2202), - [aux_sym_canonical_domains_token1] = ACTIONS(2202), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2202), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2202), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2202), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2202), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2202), - [aux_sym_certificate_file_token1] = ACTIONS(2202), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2202), - [aux_sym_channel_timeout_token1] = ACTIONS(2202), - [aux_sym_check_host_ip_token1] = ACTIONS(2202), - [aux_sym_ciphers_token1] = ACTIONS(2202), - [aux_sym_cipher_token1] = ACTIONS(2204), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2202), - [aux_sym_compression_token1] = ACTIONS(2202), - [aux_sym_connection_attempts_token1] = ACTIONS(2202), - [aux_sym_connect_timeout_token1] = ACTIONS(2202), - [aux_sym_control_master_token1] = ACTIONS(2202), - [aux_sym_control_path_token1] = ACTIONS(2202), - [aux_sym_control_persist_token1] = ACTIONS(2202), - [aux_sym_dynamic_forward_token1] = ACTIONS(2202), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2202), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2202), - [aux_sym_escape_char_token1] = ACTIONS(2202), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2202), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2202), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2202), - [aux_sym_forward_agent_token1] = ACTIONS(2202), - [aux_sym_forward_x11_token1] = ACTIONS(2204), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2202), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2202), - [aux_sym_gateway_ports_token1] = ACTIONS(2202), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2202), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2202), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2202), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2202), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2202), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2202), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2202), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2202), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2202), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2202), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2202), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2202), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2202), - [aux_sym_host_key_alias_token1] = ACTIONS(2202), - [aux_sym_hostname_token1] = ACTIONS(2202), - [aux_sym_identities_only_token1] = ACTIONS(2202), - [aux_sym_identity_agent_token1] = ACTIONS(2202), - [aux_sym_identity_file_token1] = ACTIONS(2202), - [aux_sym_ignore_unknown_token1] = ACTIONS(2202), - [aux_sym_include_token1] = ACTIONS(2202), - [aux_sym_ip_qos_token1] = ACTIONS(2202), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2202), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2202), - [aux_sym_kex_algorithms_token1] = ACTIONS(2202), - [aux_sym_known_hosts_command_token1] = ACTIONS(2202), - [aux_sym_local_command_token1] = ACTIONS(2202), - [aux_sym_local_forward_token1] = ACTIONS(2202), - [aux_sym_log_level_token1] = ACTIONS(2202), - [aux_sym_log_verbose_token1] = ACTIONS(2202), - [aux_sym_macs_token1] = ACTIONS(2202), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2202), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2202), - [aux_sym_password_authentication_token1] = ACTIONS(2202), - [aux_sym_permit_local_command_token1] = ACTIONS(2202), - [aux_sym_permit_remote_open_token1] = ACTIONS(2202), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2202), - [aux_sym_port_token1] = ACTIONS(2202), - [aux_sym_preferred_authentications_token1] = ACTIONS(2202), - [aux_sym_protocol_token1] = ACTIONS(2202), - [aux_sym_proxy_command_token1] = ACTIONS(2202), - [aux_sym_proxy_jump_token1] = ACTIONS(2202), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2202), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2202), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2202), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2202), - [aux_sym_rekey_limit_token1] = ACTIONS(2202), - [aux_sym_remote_command_token1] = ACTIONS(2202), - [aux_sym_remote_forward_token1] = ACTIONS(2202), - [aux_sym_request_tty_token1] = ACTIONS(2202), - [aux_sym_required_rsa_size_token1] = ACTIONS(2202), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2202), - [aux_sym_security_key_provider_token1] = ACTIONS(2202), - [aux_sym_send_env_token1] = ACTIONS(2202), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2202), - [aux_sym_server_alive_interval_token1] = ACTIONS(2202), - [aux_sym_session_type_token1] = ACTIONS(2202), - [aux_sym_set_env_token1] = ACTIONS(2202), - [aux_sym_stdin_null_token1] = ACTIONS(2202), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2202), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2202), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2202), - [aux_sym_syslog_facility_token1] = ACTIONS(2202), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2202), - [aux_sym_keep_alive_token1] = ACTIONS(2202), - [aux_sym_tag_token1] = ACTIONS(2202), - [aux_sym_tunnel_token1] = ACTIONS(2204), - [aux_sym_tunnel_device_token1] = ACTIONS(2202), - [aux_sym_update_host_keys_token1] = ACTIONS(2202), - [aux_sym_use_keychain_token1] = ACTIONS(2202), - [aux_sym_use_roaming_token1] = ACTIONS(2202), - [aux_sym_user_token1] = ACTIONS(2204), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2202), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2202), - [aux_sym_visual_host_key_token1] = ACTIONS(2202), - [aux_sym_xauth_location_token1] = ACTIONS(2202), + [ts_builtin_sym_end] = ACTIONS(2211), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2211), + [aux_sym_match_token1] = ACTIONS(2211), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2211), + [aux_sym_address_family_token1] = ACTIONS(2211), + [aux_sym_batch_mode_token1] = ACTIONS(2211), + [aux_sym_bind_address_token1] = ACTIONS(2211), + [aux_sym_bind_interface_token1] = ACTIONS(2211), + [aux_sym_canonical_domains_token1] = ACTIONS(2211), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2211), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2211), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2211), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2211), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2211), + [aux_sym_certificate_file_token1] = ACTIONS(2211), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2211), + [aux_sym_channel_timeout_token1] = ACTIONS(2211), + [aux_sym_check_host_ip_token1] = ACTIONS(2211), + [aux_sym_ciphers_token1] = ACTIONS(2211), + [aux_sym_cipher_token1] = ACTIONS(2213), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2211), + [aux_sym_compression_token1] = ACTIONS(2211), + [aux_sym_connection_attempts_token1] = ACTIONS(2211), + [aux_sym_connect_timeout_token1] = ACTIONS(2211), + [aux_sym_control_master_token1] = ACTIONS(2211), + [aux_sym_control_path_token1] = ACTIONS(2211), + [aux_sym_control_persist_token1] = ACTIONS(2211), + [aux_sym_dynamic_forward_token1] = ACTIONS(2211), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2211), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2211), + [aux_sym_escape_char_token1] = ACTIONS(2211), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2211), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2211), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2211), + [aux_sym_forward_agent_token1] = ACTIONS(2211), + [aux_sym_forward_x11_token1] = ACTIONS(2213), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2211), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2211), + [aux_sym_gateway_ports_token1] = ACTIONS(2211), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2211), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2211), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2211), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2211), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2211), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2211), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2211), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2211), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2211), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2211), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2211), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2211), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2211), + [aux_sym_host_key_alias_token1] = ACTIONS(2211), + [aux_sym_hostname_token1] = ACTIONS(2211), + [aux_sym_identities_only_token1] = ACTIONS(2211), + [aux_sym_identity_agent_token1] = ACTIONS(2211), + [aux_sym_identity_file_token1] = ACTIONS(2211), + [aux_sym_ignore_unknown_token1] = ACTIONS(2211), + [aux_sym_include_token1] = ACTIONS(2211), + [aux_sym_ip_qos_token1] = ACTIONS(2211), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2211), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2211), + [aux_sym_kex_algorithms_token1] = ACTIONS(2211), + [aux_sym_known_hosts_command_token1] = ACTIONS(2211), + [aux_sym_local_command_token1] = ACTIONS(2211), + [aux_sym_local_forward_token1] = ACTIONS(2211), + [aux_sym_log_level_token1] = ACTIONS(2211), + [aux_sym_log_verbose_token1] = ACTIONS(2211), + [aux_sym_macs_token1] = ACTIONS(2211), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2211), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2211), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2211), + [aux_sym_password_authentication_token1] = ACTIONS(2211), + [aux_sym_permit_local_command_token1] = ACTIONS(2211), + [aux_sym_permit_remote_open_token1] = ACTIONS(2211), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2211), + [aux_sym_port_token1] = ACTIONS(2211), + [aux_sym_preferred_authentications_token1] = ACTIONS(2211), + [aux_sym_protocol_token1] = ACTIONS(2211), + [aux_sym_proxy_command_token1] = ACTIONS(2211), + [aux_sym_proxy_jump_token1] = ACTIONS(2211), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2211), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2211), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2211), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2211), + [aux_sym_rekey_limit_token1] = ACTIONS(2211), + [aux_sym_remote_command_token1] = ACTIONS(2211), + [aux_sym_remote_forward_token1] = ACTIONS(2211), + [aux_sym_request_tty_token1] = ACTIONS(2211), + [aux_sym_required_rsa_size_token1] = ACTIONS(2211), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2211), + [aux_sym_security_key_provider_token1] = ACTIONS(2211), + [aux_sym_send_env_token1] = ACTIONS(2211), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2211), + [aux_sym_server_alive_interval_token1] = ACTIONS(2211), + [aux_sym_session_type_token1] = ACTIONS(2211), + [aux_sym_set_env_token1] = ACTIONS(2211), + [aux_sym_stdin_null_token1] = ACTIONS(2211), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2211), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2211), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2211), + [aux_sym_syslog_facility_token1] = ACTIONS(2211), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2211), + [aux_sym_keep_alive_token1] = ACTIONS(2211), + [aux_sym_tag_token1] = ACTIONS(2211), + [aux_sym_tunnel_token1] = ACTIONS(2213), + [aux_sym_tunnel_device_token1] = ACTIONS(2211), + [aux_sym_update_host_keys_token1] = ACTIONS(2211), + [aux_sym_use_keychain_token1] = ACTIONS(2211), + [aux_sym_use_roaming_token1] = ACTIONS(2211), + [aux_sym_user_token1] = ACTIONS(2213), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2211), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2211), + [aux_sym_visual_host_key_token1] = ACTIONS(2211), + [aux_sym_xauth_location_token1] = ACTIONS(2211), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2210), - [aux_sym_match_token1] = ACTIONS(2206), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2206), - [aux_sym_address_family_token1] = ACTIONS(2206), - [aux_sym_batch_mode_token1] = ACTIONS(2206), - [aux_sym_bind_address_token1] = ACTIONS(2206), - [aux_sym_bind_interface_token1] = ACTIONS(2206), - [aux_sym_canonical_domains_token1] = ACTIONS(2206), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2206), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2206), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2206), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2206), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2206), - [aux_sym_certificate_file_token1] = ACTIONS(2206), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2206), - [aux_sym_channel_timeout_token1] = ACTIONS(2206), - [aux_sym_check_host_ip_token1] = ACTIONS(2206), - [aux_sym_ciphers_token1] = ACTIONS(2206), - [aux_sym_cipher_token1] = ACTIONS(2208), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2206), - [aux_sym_compression_token1] = ACTIONS(2206), - [aux_sym_connection_attempts_token1] = ACTIONS(2206), - [aux_sym_connect_timeout_token1] = ACTIONS(2206), - [aux_sym_control_master_token1] = ACTIONS(2206), - [aux_sym_control_path_token1] = ACTIONS(2206), - [aux_sym_control_persist_token1] = ACTIONS(2206), - [aux_sym_dynamic_forward_token1] = ACTIONS(2206), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2206), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2206), - [aux_sym_escape_char_token1] = ACTIONS(2206), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2206), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2206), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2206), - [aux_sym_forward_agent_token1] = ACTIONS(2206), - [aux_sym_forward_x11_token1] = ACTIONS(2208), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2206), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2206), - [aux_sym_gateway_ports_token1] = ACTIONS(2206), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2206), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2206), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2206), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2206), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2206), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2206), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2206), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2206), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2206), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2206), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2206), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2206), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2206), - [aux_sym_host_key_alias_token1] = ACTIONS(2206), - [aux_sym_hostname_token1] = ACTIONS(2206), - [aux_sym_identities_only_token1] = ACTIONS(2206), - [aux_sym_identity_agent_token1] = ACTIONS(2206), - [aux_sym_identity_file_token1] = ACTIONS(2206), - [aux_sym_ignore_unknown_token1] = ACTIONS(2206), - [aux_sym_include_token1] = ACTIONS(2206), - [aux_sym_ip_qos_token1] = ACTIONS(2206), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2206), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2206), - [aux_sym_kex_algorithms_token1] = ACTIONS(2206), - [aux_sym_known_hosts_command_token1] = ACTIONS(2206), - [aux_sym_local_command_token1] = ACTIONS(2206), - [aux_sym_local_forward_token1] = ACTIONS(2206), - [aux_sym_log_level_token1] = ACTIONS(2206), - [aux_sym_log_verbose_token1] = ACTIONS(2206), - [aux_sym_macs_token1] = ACTIONS(2206), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2206), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2206), - [aux_sym_password_authentication_token1] = ACTIONS(2206), - [aux_sym_permit_local_command_token1] = ACTIONS(2206), - [aux_sym_permit_remote_open_token1] = ACTIONS(2206), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2206), - [aux_sym_port_token1] = ACTIONS(2206), - [aux_sym_preferred_authentications_token1] = ACTIONS(2206), - [aux_sym_protocol_token1] = ACTIONS(2206), - [aux_sym_proxy_command_token1] = ACTIONS(2206), - [aux_sym_proxy_jump_token1] = ACTIONS(2206), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2206), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2206), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2206), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2206), - [aux_sym_rekey_limit_token1] = ACTIONS(2206), - [aux_sym_remote_command_token1] = ACTIONS(2206), - [aux_sym_remote_forward_token1] = ACTIONS(2206), - [aux_sym_request_tty_token1] = ACTIONS(2206), - [aux_sym_required_rsa_size_token1] = ACTIONS(2206), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2206), - [aux_sym_security_key_provider_token1] = ACTIONS(2206), - [aux_sym_send_env_token1] = ACTIONS(2206), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2206), - [aux_sym_server_alive_interval_token1] = ACTIONS(2206), - [aux_sym_session_type_token1] = ACTIONS(2206), - [aux_sym_set_env_token1] = ACTIONS(2206), - [aux_sym_stdin_null_token1] = ACTIONS(2206), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2206), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2206), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2206), - [aux_sym_syslog_facility_token1] = ACTIONS(2206), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2206), - [aux_sym_keep_alive_token1] = ACTIONS(2206), - [aux_sym_tag_token1] = ACTIONS(2206), - [aux_sym_tunnel_token1] = ACTIONS(2208), - [aux_sym_tunnel_device_token1] = ACTIONS(2206), - [aux_sym_update_host_keys_token1] = ACTIONS(2206), - [aux_sym_use_keychain_token1] = ACTIONS(2206), - [aux_sym_use_roaming_token1] = ACTIONS(2206), - [aux_sym_user_token1] = ACTIONS(2208), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2206), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2206), - [aux_sym_visual_host_key_token1] = ACTIONS(2206), - [aux_sym_xauth_location_token1] = ACTIONS(2206), + [ts_builtin_sym_end] = ACTIONS(2215), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(2219), + [aux_sym_match_token1] = ACTIONS(2215), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2215), + [aux_sym_address_family_token1] = ACTIONS(2215), + [aux_sym_batch_mode_token1] = ACTIONS(2215), + [aux_sym_bind_address_token1] = ACTIONS(2215), + [aux_sym_bind_interface_token1] = ACTIONS(2215), + [aux_sym_canonical_domains_token1] = ACTIONS(2215), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2215), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2215), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2215), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2215), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2215), + [aux_sym_certificate_file_token1] = ACTIONS(2215), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2215), + [aux_sym_channel_timeout_token1] = ACTIONS(2215), + [aux_sym_check_host_ip_token1] = ACTIONS(2215), + [aux_sym_ciphers_token1] = ACTIONS(2215), + [aux_sym_cipher_token1] = ACTIONS(2217), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2215), + [aux_sym_compression_token1] = ACTIONS(2215), + [aux_sym_connection_attempts_token1] = ACTIONS(2215), + [aux_sym_connect_timeout_token1] = ACTIONS(2215), + [aux_sym_control_master_token1] = ACTIONS(2215), + [aux_sym_control_path_token1] = ACTIONS(2215), + [aux_sym_control_persist_token1] = ACTIONS(2215), + [aux_sym_dynamic_forward_token1] = ACTIONS(2215), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2215), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2215), + [aux_sym_escape_char_token1] = ACTIONS(2215), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2215), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2215), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2215), + [aux_sym_forward_agent_token1] = ACTIONS(2215), + [aux_sym_forward_x11_token1] = ACTIONS(2217), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2215), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2215), + [aux_sym_gateway_ports_token1] = ACTIONS(2215), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2215), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2215), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2215), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2215), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2215), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2215), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2215), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2215), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2215), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2215), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2215), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2215), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2215), + [aux_sym_host_key_alias_token1] = ACTIONS(2215), + [aux_sym_hostname_token1] = ACTIONS(2215), + [aux_sym_identities_only_token1] = ACTIONS(2215), + [aux_sym_identity_agent_token1] = ACTIONS(2215), + [aux_sym_identity_file_token1] = ACTIONS(2215), + [aux_sym_ignore_unknown_token1] = ACTIONS(2215), + [aux_sym_include_token1] = ACTIONS(2215), + [aux_sym_ip_qos_token1] = ACTIONS(2215), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2215), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2215), + [aux_sym_kex_algorithms_token1] = ACTIONS(2215), + [aux_sym_known_hosts_command_token1] = ACTIONS(2215), + [aux_sym_local_command_token1] = ACTIONS(2215), + [aux_sym_local_forward_token1] = ACTIONS(2215), + [aux_sym_log_level_token1] = ACTIONS(2215), + [aux_sym_log_verbose_token1] = ACTIONS(2215), + [aux_sym_macs_token1] = ACTIONS(2215), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2215), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2215), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2215), + [aux_sym_password_authentication_token1] = ACTIONS(2215), + [aux_sym_permit_local_command_token1] = ACTIONS(2215), + [aux_sym_permit_remote_open_token1] = ACTIONS(2215), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2215), + [aux_sym_port_token1] = ACTIONS(2215), + [aux_sym_preferred_authentications_token1] = ACTIONS(2215), + [aux_sym_protocol_token1] = ACTIONS(2215), + [aux_sym_proxy_command_token1] = ACTIONS(2215), + [aux_sym_proxy_jump_token1] = ACTIONS(2215), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2215), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2215), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2215), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2215), + [aux_sym_rekey_limit_token1] = ACTIONS(2215), + [aux_sym_remote_command_token1] = ACTIONS(2215), + [aux_sym_remote_forward_token1] = ACTIONS(2215), + [aux_sym_request_tty_token1] = ACTIONS(2215), + [aux_sym_required_rsa_size_token1] = ACTIONS(2215), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2215), + [aux_sym_security_key_provider_token1] = ACTIONS(2215), + [aux_sym_send_env_token1] = ACTIONS(2215), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2215), + [aux_sym_server_alive_interval_token1] = ACTIONS(2215), + [aux_sym_session_type_token1] = ACTIONS(2215), + [aux_sym_set_env_token1] = ACTIONS(2215), + [aux_sym_stdin_null_token1] = ACTIONS(2215), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2215), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2215), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2215), + [aux_sym_syslog_facility_token1] = ACTIONS(2215), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2215), + [aux_sym_keep_alive_token1] = ACTIONS(2215), + [aux_sym_tag_token1] = ACTIONS(2215), + [aux_sym_tunnel_token1] = ACTIONS(2217), + [aux_sym_tunnel_device_token1] = ACTIONS(2215), + [aux_sym_update_host_keys_token1] = ACTIONS(2215), + [aux_sym_use_keychain_token1] = ACTIONS(2215), + [aux_sym_use_roaming_token1] = ACTIONS(2215), + [aux_sym_user_token1] = ACTIONS(2217), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2215), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2215), + [aux_sym_visual_host_key_token1] = ACTIONS(2215), + [aux_sym_xauth_location_token1] = ACTIONS(2215), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(2212), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2214), - [anon_sym_DQUOTE] = ACTIONS(2212), - [aux_sym_match_token1] = ACTIONS(2212), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2212), - [aux_sym_address_family_token1] = ACTIONS(2212), - [aux_sym_batch_mode_token1] = ACTIONS(2212), - [aux_sym_bind_address_token1] = ACTIONS(2212), - [aux_sym_bind_interface_token1] = ACTIONS(2212), - [aux_sym_canonical_domains_token1] = ACTIONS(2212), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2212), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2212), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2212), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2212), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2212), - [aux_sym_certificate_file_token1] = ACTIONS(2212), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2212), - [aux_sym_channel_timeout_token1] = ACTIONS(2212), - [aux_sym_check_host_ip_token1] = ACTIONS(2212), - [aux_sym_ciphers_token1] = ACTIONS(2212), - [aux_sym_cipher_token1] = ACTIONS(2214), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2212), - [aux_sym_compression_token1] = ACTIONS(2212), - [aux_sym_connection_attempts_token1] = ACTIONS(2212), - [aux_sym_connect_timeout_token1] = ACTIONS(2212), - [aux_sym_control_master_token1] = ACTIONS(2212), - [aux_sym_control_path_token1] = ACTIONS(2212), - [aux_sym_control_persist_token1] = ACTIONS(2212), - [aux_sym_dynamic_forward_token1] = ACTIONS(2212), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2212), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2212), - [aux_sym_escape_char_token1] = ACTIONS(2212), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2212), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2212), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2212), - [aux_sym_forward_agent_token1] = ACTIONS(2212), - [aux_sym_forward_x11_token1] = ACTIONS(2214), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2212), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2212), - [aux_sym_gateway_ports_token1] = ACTIONS(2212), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2212), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2212), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2212), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2212), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2212), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2212), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2212), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2212), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2212), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2212), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2212), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2212), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2212), - [aux_sym_host_key_alias_token1] = ACTIONS(2212), - [aux_sym_hostname_token1] = ACTIONS(2212), - [aux_sym_identities_only_token1] = ACTIONS(2212), - [aux_sym_identity_agent_token1] = ACTIONS(2212), - [aux_sym_identity_file_token1] = ACTIONS(2212), - [aux_sym_ignore_unknown_token1] = ACTIONS(2212), - [aux_sym_include_token1] = ACTIONS(2212), - [aux_sym_ip_qos_token1] = ACTIONS(2212), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2212), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2212), - [aux_sym_kex_algorithms_token1] = ACTIONS(2212), - [aux_sym_known_hosts_command_token1] = ACTIONS(2212), - [aux_sym_local_command_token1] = ACTIONS(2212), - [aux_sym_local_forward_token1] = ACTIONS(2212), - [aux_sym_log_level_token1] = ACTIONS(2212), - [aux_sym_log_verbose_token1] = ACTIONS(2212), - [aux_sym_macs_token1] = ACTIONS(2212), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2212), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2212), - [aux_sym_password_authentication_token1] = ACTIONS(2212), - [aux_sym_permit_local_command_token1] = ACTIONS(2212), - [aux_sym_permit_remote_open_token1] = ACTIONS(2212), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2212), - [aux_sym_port_token1] = ACTIONS(2212), - [aux_sym_preferred_authentications_token1] = ACTIONS(2212), - [aux_sym_protocol_token1] = ACTIONS(2212), - [aux_sym_proxy_command_token1] = ACTIONS(2212), - [aux_sym_proxy_jump_token1] = ACTIONS(2212), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2212), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2212), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2212), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2212), - [aux_sym_rekey_limit_token1] = ACTIONS(2212), - [aux_sym_remote_command_token1] = ACTIONS(2212), - [aux_sym_remote_forward_token1] = ACTIONS(2212), - [aux_sym_request_tty_token1] = ACTIONS(2212), - [aux_sym_required_rsa_size_token1] = ACTIONS(2212), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2212), - [aux_sym_security_key_provider_token1] = ACTIONS(2212), - [aux_sym_send_env_token1] = ACTIONS(2212), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2212), - [aux_sym_server_alive_interval_token1] = ACTIONS(2212), - [aux_sym_session_type_token1] = ACTIONS(2212), - [aux_sym_set_env_token1] = ACTIONS(2212), - [aux_sym_stdin_null_token1] = ACTIONS(2212), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2212), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2212), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2212), - [aux_sym_syslog_facility_token1] = ACTIONS(2212), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2212), - [aux_sym_keep_alive_token1] = ACTIONS(2212), - [aux_sym_tag_token1] = ACTIONS(2212), - [aux_sym_tunnel_token1] = ACTIONS(2214), - [aux_sym_tunnel_device_token1] = ACTIONS(2212), - [aux_sym_update_host_keys_token1] = ACTIONS(2212), - [aux_sym_use_keychain_token1] = ACTIONS(2212), - [aux_sym_use_roaming_token1] = ACTIONS(2212), - [aux_sym_user_token1] = ACTIONS(2214), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2212), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2212), - [aux_sym_visual_host_key_token1] = ACTIONS(2212), - [aux_sym_xauth_location_token1] = ACTIONS(2212), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(2221), + [aux_sym_match_token1] = ACTIONS(2221), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2221), + [aux_sym_address_family_token1] = ACTIONS(2221), + [aux_sym_batch_mode_token1] = ACTIONS(2221), + [aux_sym_bind_address_token1] = ACTIONS(2221), + [aux_sym_bind_interface_token1] = ACTIONS(2221), + [aux_sym_canonical_domains_token1] = ACTIONS(2221), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2221), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2221), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2221), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2221), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2221), + [aux_sym_certificate_file_token1] = ACTIONS(2221), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2221), + [aux_sym_channel_timeout_token1] = ACTIONS(2221), + [aux_sym_check_host_ip_token1] = ACTIONS(2221), + [aux_sym_ciphers_token1] = ACTIONS(2221), + [aux_sym_cipher_token1] = ACTIONS(2223), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2221), + [aux_sym_compression_token1] = ACTIONS(2221), + [aux_sym_connection_attempts_token1] = ACTIONS(2221), + [aux_sym_connect_timeout_token1] = ACTIONS(2221), + [aux_sym_control_master_token1] = ACTIONS(2221), + [aux_sym_control_path_token1] = ACTIONS(2221), + [aux_sym_control_persist_token1] = ACTIONS(2221), + [aux_sym_dynamic_forward_token1] = ACTIONS(2221), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2221), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2221), + [aux_sym_escape_char_token1] = ACTIONS(2221), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2221), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2221), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2221), + [aux_sym_forward_agent_token1] = ACTIONS(2221), + [aux_sym_forward_x11_token1] = ACTIONS(2223), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2221), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2221), + [aux_sym_gateway_ports_token1] = ACTIONS(2221), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2221), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2221), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2221), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2221), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2221), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2221), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2221), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2221), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2221), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2221), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2221), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2221), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2221), + [aux_sym_host_key_alias_token1] = ACTIONS(2221), + [aux_sym_hostname_token1] = ACTIONS(2221), + [aux_sym_identities_only_token1] = ACTIONS(2221), + [aux_sym_identity_agent_token1] = ACTIONS(2221), + [aux_sym_identity_file_token1] = ACTIONS(2221), + [aux_sym_ignore_unknown_token1] = ACTIONS(2221), + [aux_sym_include_token1] = ACTIONS(2221), + [aux_sym_ip_qos_token1] = ACTIONS(2221), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2221), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2221), + [aux_sym_kex_algorithms_token1] = ACTIONS(2221), + [aux_sym_known_hosts_command_token1] = ACTIONS(2221), + [aux_sym_local_command_token1] = ACTIONS(2221), + [aux_sym_local_forward_token1] = ACTIONS(2221), + [aux_sym_log_level_token1] = ACTIONS(2221), + [aux_sym_log_verbose_token1] = ACTIONS(2221), + [aux_sym_macs_token1] = ACTIONS(2221), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2221), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2221), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2221), + [aux_sym_password_authentication_token1] = ACTIONS(2221), + [aux_sym_permit_local_command_token1] = ACTIONS(2221), + [aux_sym_permit_remote_open_token1] = ACTIONS(2221), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2221), + [aux_sym_port_token1] = ACTIONS(2221), + [aux_sym_preferred_authentications_token1] = ACTIONS(2221), + [aux_sym_protocol_token1] = ACTIONS(2221), + [aux_sym_proxy_command_token1] = ACTIONS(2221), + [aux_sym_proxy_jump_token1] = ACTIONS(2221), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2221), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2221), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2221), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2221), + [aux_sym_rekey_limit_token1] = ACTIONS(2221), + [aux_sym_remote_command_token1] = ACTIONS(2221), + [aux_sym_remote_forward_token1] = ACTIONS(2221), + [aux_sym_request_tty_token1] = ACTIONS(2221), + [aux_sym_required_rsa_size_token1] = ACTIONS(2221), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2221), + [aux_sym_security_key_provider_token1] = ACTIONS(2221), + [aux_sym_send_env_token1] = ACTIONS(2221), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2221), + [aux_sym_server_alive_interval_token1] = ACTIONS(2221), + [aux_sym_session_type_token1] = ACTIONS(2221), + [aux_sym_set_env_token1] = ACTIONS(2221), + [aux_sym_stdin_null_token1] = ACTIONS(2221), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2221), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2221), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2221), + [aux_sym_syslog_facility_token1] = ACTIONS(2221), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2221), + [aux_sym_keep_alive_token1] = ACTIONS(2221), + [aux_sym_tag_token1] = ACTIONS(2221), + [aux_sym_tunnel_token1] = ACTIONS(2223), + [aux_sym_tunnel_device_token1] = ACTIONS(2221), + [aux_sym_update_host_keys_token1] = ACTIONS(2221), + [aux_sym_use_keychain_token1] = ACTIONS(2221), + [aux_sym_use_roaming_token1] = ACTIONS(2221), + [aux_sym_user_token1] = ACTIONS(2223), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2221), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2221), + [aux_sym_visual_host_key_token1] = ACTIONS(2221), + [aux_sym_xauth_location_token1] = ACTIONS(2221), }, [286] = { - [ts_builtin_sym_end] = ACTIONS(2216), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2218), - [anon_sym_DQUOTE] = ACTIONS(2220), - [aux_sym_match_token1] = ACTIONS(2216), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2216), - [aux_sym_address_family_token1] = ACTIONS(2216), - [aux_sym_batch_mode_token1] = ACTIONS(2216), - [aux_sym_bind_address_token1] = ACTIONS(2216), - [aux_sym_bind_interface_token1] = ACTIONS(2216), - [aux_sym_canonical_domains_token1] = ACTIONS(2216), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2216), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2216), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2216), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2216), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2216), - [aux_sym_certificate_file_token1] = ACTIONS(2216), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2216), - [aux_sym_channel_timeout_token1] = ACTIONS(2216), - [aux_sym_check_host_ip_token1] = ACTIONS(2216), - [aux_sym_ciphers_token1] = ACTIONS(2216), - [aux_sym_cipher_token1] = ACTIONS(2218), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2216), - [aux_sym_compression_token1] = ACTIONS(2216), - [aux_sym_connection_attempts_token1] = ACTIONS(2216), - [aux_sym_connect_timeout_token1] = ACTIONS(2216), - [aux_sym_control_master_token1] = ACTIONS(2216), - [aux_sym_control_path_token1] = ACTIONS(2216), - [aux_sym_control_persist_token1] = ACTIONS(2216), - [aux_sym_dynamic_forward_token1] = ACTIONS(2216), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2216), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2216), - [aux_sym_escape_char_token1] = ACTIONS(2216), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2216), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2216), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2216), - [aux_sym_forward_agent_token1] = ACTIONS(2216), - [aux_sym_forward_x11_token1] = ACTIONS(2218), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2216), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2216), - [aux_sym_gateway_ports_token1] = ACTIONS(2216), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2216), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2216), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2216), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2216), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2216), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2216), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2216), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2216), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2216), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2216), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2216), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2216), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2216), - [aux_sym_host_key_alias_token1] = ACTIONS(2216), - [aux_sym_hostname_token1] = ACTIONS(2216), - [aux_sym_identities_only_token1] = ACTIONS(2216), - [aux_sym_identity_agent_token1] = ACTIONS(2216), - [aux_sym_identity_file_token1] = ACTIONS(2216), - [aux_sym_ignore_unknown_token1] = ACTIONS(2216), - [aux_sym_include_token1] = ACTIONS(2216), - [aux_sym_ip_qos_token1] = ACTIONS(2216), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2216), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2216), - [aux_sym_kex_algorithms_token1] = ACTIONS(2216), - [aux_sym_known_hosts_command_token1] = ACTIONS(2216), - [aux_sym_local_command_token1] = ACTIONS(2216), - [aux_sym_local_forward_token1] = ACTIONS(2216), - [aux_sym_log_level_token1] = ACTIONS(2216), - [aux_sym_log_verbose_token1] = ACTIONS(2216), - [aux_sym_macs_token1] = ACTIONS(2216), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2216), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2216), - [aux_sym_password_authentication_token1] = ACTIONS(2216), - [aux_sym_permit_local_command_token1] = ACTIONS(2216), - [aux_sym_permit_remote_open_token1] = ACTIONS(2216), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2216), - [aux_sym_port_token1] = ACTIONS(2216), - [aux_sym_preferred_authentications_token1] = ACTIONS(2216), - [aux_sym_protocol_token1] = ACTIONS(2216), - [aux_sym_proxy_command_token1] = ACTIONS(2216), - [aux_sym_proxy_jump_token1] = ACTIONS(2216), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2216), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2216), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2216), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2216), - [aux_sym_rekey_limit_token1] = ACTIONS(2216), - [aux_sym_remote_command_token1] = ACTIONS(2216), - [aux_sym_remote_forward_token1] = ACTIONS(2216), - [aux_sym_request_tty_token1] = ACTIONS(2216), - [aux_sym_required_rsa_size_token1] = ACTIONS(2216), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2216), - [aux_sym_security_key_provider_token1] = ACTIONS(2216), - [aux_sym_send_env_token1] = ACTIONS(2216), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2216), - [aux_sym_server_alive_interval_token1] = ACTIONS(2216), - [aux_sym_session_type_token1] = ACTIONS(2216), - [aux_sym_set_env_token1] = ACTIONS(2216), - [aux_sym_stdin_null_token1] = ACTIONS(2216), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2216), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2216), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2216), - [aux_sym_syslog_facility_token1] = ACTIONS(2216), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2216), - [aux_sym_keep_alive_token1] = ACTIONS(2216), - [aux_sym_tag_token1] = ACTIONS(2216), - [aux_sym_tunnel_token1] = ACTIONS(2218), - [aux_sym_tunnel_device_token1] = ACTIONS(2216), - [aux_sym_update_host_keys_token1] = ACTIONS(2216), - [aux_sym_use_keychain_token1] = ACTIONS(2216), - [aux_sym_use_roaming_token1] = ACTIONS(2216), - [aux_sym_user_token1] = ACTIONS(2218), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2216), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2216), - [aux_sym_visual_host_key_token1] = ACTIONS(2216), - [aux_sym_xauth_location_token1] = ACTIONS(2216), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2229), + [aux_sym_match_token1] = ACTIONS(2225), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2225), + [aux_sym_address_family_token1] = ACTIONS(2225), + [aux_sym_batch_mode_token1] = ACTIONS(2225), + [aux_sym_bind_address_token1] = ACTIONS(2225), + [aux_sym_bind_interface_token1] = ACTIONS(2225), + [aux_sym_canonical_domains_token1] = ACTIONS(2225), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2225), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2225), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2225), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2225), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2225), + [aux_sym_certificate_file_token1] = ACTIONS(2225), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2225), + [aux_sym_channel_timeout_token1] = ACTIONS(2225), + [aux_sym_check_host_ip_token1] = ACTIONS(2225), + [aux_sym_ciphers_token1] = ACTIONS(2225), + [aux_sym_cipher_token1] = ACTIONS(2227), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2225), + [aux_sym_compression_token1] = ACTIONS(2225), + [aux_sym_connection_attempts_token1] = ACTIONS(2225), + [aux_sym_connect_timeout_token1] = ACTIONS(2225), + [aux_sym_control_master_token1] = ACTIONS(2225), + [aux_sym_control_path_token1] = ACTIONS(2225), + [aux_sym_control_persist_token1] = ACTIONS(2225), + [aux_sym_dynamic_forward_token1] = ACTIONS(2225), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2225), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2225), + [aux_sym_escape_char_token1] = ACTIONS(2225), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2225), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2225), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2225), + [aux_sym_forward_agent_token1] = ACTIONS(2225), + [aux_sym_forward_x11_token1] = ACTIONS(2227), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2225), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2225), + [aux_sym_gateway_ports_token1] = ACTIONS(2225), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2225), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2225), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2225), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2225), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2225), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2225), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2225), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2225), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2225), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2225), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2225), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2225), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2225), + [aux_sym_host_key_alias_token1] = ACTIONS(2225), + [aux_sym_hostname_token1] = ACTIONS(2225), + [aux_sym_identities_only_token1] = ACTIONS(2225), + [aux_sym_identity_agent_token1] = ACTIONS(2225), + [aux_sym_identity_file_token1] = ACTIONS(2225), + [aux_sym_ignore_unknown_token1] = ACTIONS(2225), + [aux_sym_include_token1] = ACTIONS(2225), + [aux_sym_ip_qos_token1] = ACTIONS(2225), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2225), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2225), + [aux_sym_kex_algorithms_token1] = ACTIONS(2225), + [aux_sym_known_hosts_command_token1] = ACTIONS(2225), + [aux_sym_local_command_token1] = ACTIONS(2225), + [aux_sym_local_forward_token1] = ACTIONS(2225), + [aux_sym_log_level_token1] = ACTIONS(2225), + [aux_sym_log_verbose_token1] = ACTIONS(2225), + [aux_sym_macs_token1] = ACTIONS(2225), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2225), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2225), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2225), + [aux_sym_password_authentication_token1] = ACTIONS(2225), + [aux_sym_permit_local_command_token1] = ACTIONS(2225), + [aux_sym_permit_remote_open_token1] = ACTIONS(2225), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2225), + [aux_sym_port_token1] = ACTIONS(2225), + [aux_sym_preferred_authentications_token1] = ACTIONS(2225), + [aux_sym_protocol_token1] = ACTIONS(2225), + [aux_sym_proxy_command_token1] = ACTIONS(2225), + [aux_sym_proxy_jump_token1] = ACTIONS(2225), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2225), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2225), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2225), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2225), + [aux_sym_rekey_limit_token1] = ACTIONS(2225), + [aux_sym_remote_command_token1] = ACTIONS(2225), + [aux_sym_remote_forward_token1] = ACTIONS(2225), + [aux_sym_request_tty_token1] = ACTIONS(2225), + [aux_sym_required_rsa_size_token1] = ACTIONS(2225), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2225), + [aux_sym_security_key_provider_token1] = ACTIONS(2225), + [aux_sym_send_env_token1] = ACTIONS(2225), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2225), + [aux_sym_server_alive_interval_token1] = ACTIONS(2225), + [aux_sym_session_type_token1] = ACTIONS(2225), + [aux_sym_set_env_token1] = ACTIONS(2225), + [aux_sym_stdin_null_token1] = ACTIONS(2225), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2225), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2225), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2225), + [aux_sym_syslog_facility_token1] = ACTIONS(2225), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2225), + [aux_sym_keep_alive_token1] = ACTIONS(2225), + [aux_sym_tag_token1] = ACTIONS(2225), + [aux_sym_tunnel_token1] = ACTIONS(2227), + [aux_sym_tunnel_device_token1] = ACTIONS(2225), + [aux_sym_update_host_keys_token1] = ACTIONS(2225), + [aux_sym_use_keychain_token1] = ACTIONS(2225), + [aux_sym_use_roaming_token1] = ACTIONS(2225), + [aux_sym_user_token1] = ACTIONS(2227), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2225), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2225), + [aux_sym_visual_host_key_token1] = ACTIONS(2225), + [aux_sym_xauth_location_token1] = ACTIONS(2225), }, [287] = { - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2224), - [anon_sym_DQUOTE] = ACTIONS(2222), - [aux_sym_match_token1] = ACTIONS(2222), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2222), - [aux_sym_address_family_token1] = ACTIONS(2222), - [aux_sym_batch_mode_token1] = ACTIONS(2222), - [aux_sym_bind_address_token1] = ACTIONS(2222), - [aux_sym_bind_interface_token1] = ACTIONS(2222), - [aux_sym_canonical_domains_token1] = ACTIONS(2222), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2222), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2222), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2222), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2222), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2222), - [aux_sym_certificate_file_token1] = ACTIONS(2222), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2222), - [aux_sym_channel_timeout_token1] = ACTIONS(2222), - [aux_sym_check_host_ip_token1] = ACTIONS(2222), - [aux_sym_ciphers_token1] = ACTIONS(2222), - [aux_sym_cipher_token1] = ACTIONS(2224), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2222), - [aux_sym_compression_token1] = ACTIONS(2222), - [aux_sym_connection_attempts_token1] = ACTIONS(2222), - [aux_sym_connect_timeout_token1] = ACTIONS(2222), - [aux_sym_control_master_token1] = ACTIONS(2222), - [aux_sym_control_path_token1] = ACTIONS(2222), - [aux_sym_control_persist_token1] = ACTIONS(2222), - [aux_sym_dynamic_forward_token1] = ACTIONS(2222), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2222), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2222), - [aux_sym_escape_char_token1] = ACTIONS(2222), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2222), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2222), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2222), - [aux_sym_forward_agent_token1] = ACTIONS(2222), - [aux_sym_forward_x11_token1] = ACTIONS(2224), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2222), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2222), - [aux_sym_gateway_ports_token1] = ACTIONS(2222), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2222), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2222), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2222), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2222), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2222), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2222), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2222), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2222), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2222), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2222), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2222), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2222), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2222), - [aux_sym_host_key_alias_token1] = ACTIONS(2222), - [aux_sym_hostname_token1] = ACTIONS(2222), - [aux_sym_identities_only_token1] = ACTIONS(2222), - [aux_sym_identity_agent_token1] = ACTIONS(2222), - [aux_sym_identity_file_token1] = ACTIONS(2222), - [aux_sym_ignore_unknown_token1] = ACTIONS(2222), - [aux_sym_include_token1] = ACTIONS(2222), - [aux_sym_ip_qos_token1] = ACTIONS(2222), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2222), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2222), - [aux_sym_kex_algorithms_token1] = ACTIONS(2222), - [aux_sym_known_hosts_command_token1] = ACTIONS(2222), - [aux_sym_local_command_token1] = ACTIONS(2222), - [aux_sym_local_forward_token1] = ACTIONS(2222), - [aux_sym_log_level_token1] = ACTIONS(2222), - [aux_sym_log_verbose_token1] = ACTIONS(2222), - [aux_sym_macs_token1] = ACTIONS(2222), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2222), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2222), - [aux_sym_password_authentication_token1] = ACTIONS(2222), - [aux_sym_permit_local_command_token1] = ACTIONS(2222), - [aux_sym_permit_remote_open_token1] = ACTIONS(2222), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2222), - [aux_sym_port_token1] = ACTIONS(2222), - [aux_sym_preferred_authentications_token1] = ACTIONS(2222), - [aux_sym_protocol_token1] = ACTIONS(2222), - [aux_sym_proxy_command_token1] = ACTIONS(2222), - [aux_sym_proxy_jump_token1] = ACTIONS(2222), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2222), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2222), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2222), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2222), - [aux_sym_rekey_limit_token1] = ACTIONS(2222), - [aux_sym_remote_command_token1] = ACTIONS(2222), - [aux_sym_remote_forward_token1] = ACTIONS(2222), - [aux_sym_request_tty_token1] = ACTIONS(2222), - [aux_sym_required_rsa_size_token1] = ACTIONS(2222), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2222), - [aux_sym_security_key_provider_token1] = ACTIONS(2222), - [aux_sym_send_env_token1] = ACTIONS(2222), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2222), - [aux_sym_server_alive_interval_token1] = ACTIONS(2222), - [aux_sym_session_type_token1] = ACTIONS(2222), - [aux_sym_set_env_token1] = ACTIONS(2222), - [aux_sym_stdin_null_token1] = ACTIONS(2222), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2222), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2222), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2222), - [aux_sym_syslog_facility_token1] = ACTIONS(2222), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2222), - [aux_sym_keep_alive_token1] = ACTIONS(2222), - [aux_sym_tag_token1] = ACTIONS(2222), - [aux_sym_tunnel_token1] = ACTIONS(2224), - [aux_sym_tunnel_device_token1] = ACTIONS(2222), - [aux_sym_update_host_keys_token1] = ACTIONS(2222), - [aux_sym_use_keychain_token1] = ACTIONS(2222), - [aux_sym_use_roaming_token1] = ACTIONS(2222), - [aux_sym_user_token1] = ACTIONS(2224), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2222), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2222), - [aux_sym_visual_host_key_token1] = ACTIONS(2222), - [aux_sym_xauth_location_token1] = ACTIONS(2222), + [ts_builtin_sym_end] = ACTIONS(2231), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2231), + [aux_sym_match_token1] = ACTIONS(2231), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2231), + [aux_sym_address_family_token1] = ACTIONS(2231), + [aux_sym_batch_mode_token1] = ACTIONS(2231), + [aux_sym_bind_address_token1] = ACTIONS(2231), + [aux_sym_bind_interface_token1] = ACTIONS(2231), + [aux_sym_canonical_domains_token1] = ACTIONS(2231), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2231), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2231), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2231), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2231), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2231), + [aux_sym_certificate_file_token1] = ACTIONS(2231), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2231), + [aux_sym_channel_timeout_token1] = ACTIONS(2231), + [aux_sym_check_host_ip_token1] = ACTIONS(2231), + [aux_sym_ciphers_token1] = ACTIONS(2231), + [aux_sym_cipher_token1] = ACTIONS(2233), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2231), + [aux_sym_compression_token1] = ACTIONS(2231), + [aux_sym_connection_attempts_token1] = ACTIONS(2231), + [aux_sym_connect_timeout_token1] = ACTIONS(2231), + [aux_sym_control_master_token1] = ACTIONS(2231), + [aux_sym_control_path_token1] = ACTIONS(2231), + [aux_sym_control_persist_token1] = ACTIONS(2231), + [aux_sym_dynamic_forward_token1] = ACTIONS(2231), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2231), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2231), + [aux_sym_escape_char_token1] = ACTIONS(2231), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2231), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2231), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2231), + [aux_sym_forward_agent_token1] = ACTIONS(2231), + [aux_sym_forward_x11_token1] = ACTIONS(2233), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2231), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2231), + [aux_sym_gateway_ports_token1] = ACTIONS(2231), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2231), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2231), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2231), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2231), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2231), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2231), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2231), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2231), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2231), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2231), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2231), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2231), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2231), + [aux_sym_host_key_alias_token1] = ACTIONS(2231), + [aux_sym_hostname_token1] = ACTIONS(2231), + [aux_sym_identities_only_token1] = ACTIONS(2231), + [aux_sym_identity_agent_token1] = ACTIONS(2231), + [aux_sym_identity_file_token1] = ACTIONS(2231), + [aux_sym_ignore_unknown_token1] = ACTIONS(2231), + [aux_sym_include_token1] = ACTIONS(2231), + [aux_sym_ip_qos_token1] = ACTIONS(2231), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2231), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2231), + [aux_sym_kex_algorithms_token1] = ACTIONS(2231), + [aux_sym_known_hosts_command_token1] = ACTIONS(2231), + [aux_sym_local_command_token1] = ACTIONS(2231), + [aux_sym_local_forward_token1] = ACTIONS(2231), + [aux_sym_log_level_token1] = ACTIONS(2231), + [aux_sym_log_verbose_token1] = ACTIONS(2231), + [aux_sym_macs_token1] = ACTIONS(2231), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2231), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2231), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2231), + [aux_sym_password_authentication_token1] = ACTIONS(2231), + [aux_sym_permit_local_command_token1] = ACTIONS(2231), + [aux_sym_permit_remote_open_token1] = ACTIONS(2231), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2231), + [aux_sym_port_token1] = ACTIONS(2231), + [aux_sym_preferred_authentications_token1] = ACTIONS(2231), + [aux_sym_protocol_token1] = ACTIONS(2231), + [aux_sym_proxy_command_token1] = ACTIONS(2231), + [aux_sym_proxy_jump_token1] = ACTIONS(2231), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2231), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2231), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2231), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2231), + [aux_sym_rekey_limit_token1] = ACTIONS(2231), + [aux_sym_remote_command_token1] = ACTIONS(2231), + [aux_sym_remote_forward_token1] = ACTIONS(2231), + [aux_sym_request_tty_token1] = ACTIONS(2231), + [aux_sym_required_rsa_size_token1] = ACTIONS(2231), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2231), + [aux_sym_security_key_provider_token1] = ACTIONS(2231), + [aux_sym_send_env_token1] = ACTIONS(2231), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2231), + [aux_sym_server_alive_interval_token1] = ACTIONS(2231), + [aux_sym_session_type_token1] = ACTIONS(2231), + [aux_sym_set_env_token1] = ACTIONS(2231), + [aux_sym_stdin_null_token1] = ACTIONS(2231), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2231), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2231), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2231), + [aux_sym_syslog_facility_token1] = ACTIONS(2231), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2231), + [aux_sym_keep_alive_token1] = ACTIONS(2231), + [aux_sym_tag_token1] = ACTIONS(2231), + [aux_sym_tunnel_token1] = ACTIONS(2233), + [aux_sym_tunnel_device_token1] = ACTIONS(2231), + [aux_sym_update_host_keys_token1] = ACTIONS(2231), + [aux_sym_use_keychain_token1] = ACTIONS(2231), + [aux_sym_use_roaming_token1] = ACTIONS(2231), + [aux_sym_user_token1] = ACTIONS(2233), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2231), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2231), + [aux_sym_visual_host_key_token1] = ACTIONS(2231), + [aux_sym_xauth_location_token1] = ACTIONS(2231), }, [288] = { - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2230), - [aux_sym_match_token1] = ACTIONS(2226), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2226), - [aux_sym_address_family_token1] = ACTIONS(2226), - [aux_sym_batch_mode_token1] = ACTIONS(2226), - [aux_sym_bind_address_token1] = ACTIONS(2226), - [aux_sym_bind_interface_token1] = ACTIONS(2226), - [aux_sym_canonical_domains_token1] = ACTIONS(2226), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2226), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2226), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2226), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2226), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2226), - [aux_sym_certificate_file_token1] = ACTIONS(2226), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2226), - [aux_sym_channel_timeout_token1] = ACTIONS(2226), - [aux_sym_check_host_ip_token1] = ACTIONS(2226), - [aux_sym_ciphers_token1] = ACTIONS(2226), - [aux_sym_cipher_token1] = ACTIONS(2228), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2226), - [aux_sym_compression_token1] = ACTIONS(2226), - [aux_sym_connection_attempts_token1] = ACTIONS(2226), - [aux_sym_connect_timeout_token1] = ACTIONS(2226), - [aux_sym_control_master_token1] = ACTIONS(2226), - [aux_sym_control_path_token1] = ACTIONS(2226), - [aux_sym_control_persist_token1] = ACTIONS(2226), - [aux_sym_dynamic_forward_token1] = ACTIONS(2226), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2226), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2226), - [aux_sym_escape_char_token1] = ACTIONS(2226), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2226), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2226), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2226), - [aux_sym_forward_agent_token1] = ACTIONS(2226), - [aux_sym_forward_x11_token1] = ACTIONS(2228), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2226), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2226), - [aux_sym_gateway_ports_token1] = ACTIONS(2226), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2226), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2226), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2226), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2226), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2226), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2226), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2226), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2226), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2226), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2226), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2226), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2226), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2226), - [aux_sym_host_key_alias_token1] = ACTIONS(2226), - [aux_sym_hostname_token1] = ACTIONS(2226), - [aux_sym_identities_only_token1] = ACTIONS(2226), - [aux_sym_identity_agent_token1] = ACTIONS(2226), - [aux_sym_identity_file_token1] = ACTIONS(2226), - [aux_sym_ignore_unknown_token1] = ACTIONS(2226), - [aux_sym_include_token1] = ACTIONS(2226), - [aux_sym_ip_qos_token1] = ACTIONS(2226), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2226), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2226), - [aux_sym_kex_algorithms_token1] = ACTIONS(2226), - [aux_sym_known_hosts_command_token1] = ACTIONS(2226), - [aux_sym_local_command_token1] = ACTIONS(2226), - [aux_sym_local_forward_token1] = ACTIONS(2226), - [aux_sym_log_level_token1] = ACTIONS(2226), - [aux_sym_log_verbose_token1] = ACTIONS(2226), - [aux_sym_macs_token1] = ACTIONS(2226), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2226), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2226), - [aux_sym_password_authentication_token1] = ACTIONS(2226), - [aux_sym_permit_local_command_token1] = ACTIONS(2226), - [aux_sym_permit_remote_open_token1] = ACTIONS(2226), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2226), - [aux_sym_port_token1] = ACTIONS(2226), - [aux_sym_preferred_authentications_token1] = ACTIONS(2226), - [aux_sym_protocol_token1] = ACTIONS(2226), - [aux_sym_proxy_command_token1] = ACTIONS(2226), - [aux_sym_proxy_jump_token1] = ACTIONS(2226), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2226), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2226), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2226), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2226), - [aux_sym_rekey_limit_token1] = ACTIONS(2226), - [aux_sym_remote_command_token1] = ACTIONS(2226), - [aux_sym_remote_forward_token1] = ACTIONS(2226), - [aux_sym_request_tty_token1] = ACTIONS(2226), - [aux_sym_required_rsa_size_token1] = ACTIONS(2226), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2226), - [aux_sym_security_key_provider_token1] = ACTIONS(2226), - [aux_sym_send_env_token1] = ACTIONS(2226), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2226), - [aux_sym_server_alive_interval_token1] = ACTIONS(2226), - [aux_sym_session_type_token1] = ACTIONS(2226), - [aux_sym_set_env_token1] = ACTIONS(2226), - [aux_sym_stdin_null_token1] = ACTIONS(2226), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2226), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2226), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2226), - [aux_sym_syslog_facility_token1] = ACTIONS(2226), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2226), - [aux_sym_keep_alive_token1] = ACTIONS(2226), - [aux_sym_tag_token1] = ACTIONS(2226), - [aux_sym_tunnel_token1] = ACTIONS(2228), - [aux_sym_tunnel_device_token1] = ACTIONS(2226), - [aux_sym_update_host_keys_token1] = ACTIONS(2226), - [aux_sym_use_keychain_token1] = ACTIONS(2226), - [aux_sym_use_roaming_token1] = ACTIONS(2226), - [aux_sym_user_token1] = ACTIONS(2228), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2226), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2226), - [aux_sym_visual_host_key_token1] = ACTIONS(2226), - [aux_sym_xauth_location_token1] = ACTIONS(2226), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2239), + [aux_sym_match_token1] = ACTIONS(2235), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2235), + [aux_sym_address_family_token1] = ACTIONS(2235), + [aux_sym_batch_mode_token1] = ACTIONS(2235), + [aux_sym_bind_address_token1] = ACTIONS(2235), + [aux_sym_bind_interface_token1] = ACTIONS(2235), + [aux_sym_canonical_domains_token1] = ACTIONS(2235), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2235), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2235), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2235), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2235), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2235), + [aux_sym_certificate_file_token1] = ACTIONS(2235), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2235), + [aux_sym_channel_timeout_token1] = ACTIONS(2235), + [aux_sym_check_host_ip_token1] = ACTIONS(2235), + [aux_sym_ciphers_token1] = ACTIONS(2235), + [aux_sym_cipher_token1] = ACTIONS(2237), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2235), + [aux_sym_compression_token1] = ACTIONS(2235), + [aux_sym_connection_attempts_token1] = ACTIONS(2235), + [aux_sym_connect_timeout_token1] = ACTIONS(2235), + [aux_sym_control_master_token1] = ACTIONS(2235), + [aux_sym_control_path_token1] = ACTIONS(2235), + [aux_sym_control_persist_token1] = ACTIONS(2235), + [aux_sym_dynamic_forward_token1] = ACTIONS(2235), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2235), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2235), + [aux_sym_escape_char_token1] = ACTIONS(2235), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2235), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2235), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2235), + [aux_sym_forward_agent_token1] = ACTIONS(2235), + [aux_sym_forward_x11_token1] = ACTIONS(2237), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2235), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2235), + [aux_sym_gateway_ports_token1] = ACTIONS(2235), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2235), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2235), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2235), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2235), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2235), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2235), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2235), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2235), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2235), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2235), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2235), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2235), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2235), + [aux_sym_host_key_alias_token1] = ACTIONS(2235), + [aux_sym_hostname_token1] = ACTIONS(2235), + [aux_sym_identities_only_token1] = ACTIONS(2235), + [aux_sym_identity_agent_token1] = ACTIONS(2235), + [aux_sym_identity_file_token1] = ACTIONS(2235), + [aux_sym_ignore_unknown_token1] = ACTIONS(2235), + [aux_sym_include_token1] = ACTIONS(2235), + [aux_sym_ip_qos_token1] = ACTIONS(2235), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2235), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2235), + [aux_sym_kex_algorithms_token1] = ACTIONS(2235), + [aux_sym_known_hosts_command_token1] = ACTIONS(2235), + [aux_sym_local_command_token1] = ACTIONS(2235), + [aux_sym_local_forward_token1] = ACTIONS(2235), + [aux_sym_log_level_token1] = ACTIONS(2235), + [aux_sym_log_verbose_token1] = ACTIONS(2235), + [aux_sym_macs_token1] = ACTIONS(2235), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2235), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2235), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2235), + [aux_sym_password_authentication_token1] = ACTIONS(2235), + [aux_sym_permit_local_command_token1] = ACTIONS(2235), + [aux_sym_permit_remote_open_token1] = ACTIONS(2235), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2235), + [aux_sym_port_token1] = ACTIONS(2235), + [aux_sym_preferred_authentications_token1] = ACTIONS(2235), + [aux_sym_protocol_token1] = ACTIONS(2235), + [aux_sym_proxy_command_token1] = ACTIONS(2235), + [aux_sym_proxy_jump_token1] = ACTIONS(2235), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2235), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2235), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2235), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2235), + [aux_sym_rekey_limit_token1] = ACTIONS(2235), + [aux_sym_remote_command_token1] = ACTIONS(2235), + [aux_sym_remote_forward_token1] = ACTIONS(2235), + [aux_sym_request_tty_token1] = ACTIONS(2235), + [aux_sym_required_rsa_size_token1] = ACTIONS(2235), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2235), + [aux_sym_security_key_provider_token1] = ACTIONS(2235), + [aux_sym_send_env_token1] = ACTIONS(2235), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2235), + [aux_sym_server_alive_interval_token1] = ACTIONS(2235), + [aux_sym_session_type_token1] = ACTIONS(2235), + [aux_sym_set_env_token1] = ACTIONS(2235), + [aux_sym_stdin_null_token1] = ACTIONS(2235), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2235), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2235), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2235), + [aux_sym_syslog_facility_token1] = ACTIONS(2235), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2235), + [aux_sym_keep_alive_token1] = ACTIONS(2235), + [aux_sym_tag_token1] = ACTIONS(2235), + [aux_sym_tunnel_token1] = ACTIONS(2237), + [aux_sym_tunnel_device_token1] = ACTIONS(2235), + [aux_sym_update_host_keys_token1] = ACTIONS(2235), + [aux_sym_use_keychain_token1] = ACTIONS(2235), + [aux_sym_use_roaming_token1] = ACTIONS(2235), + [aux_sym_user_token1] = ACTIONS(2237), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2235), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2235), + [aux_sym_visual_host_key_token1] = ACTIONS(2235), + [aux_sym_xauth_location_token1] = ACTIONS(2235), }, [289] = { - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2234), - [anon_sym_DQUOTE] = ACTIONS(2236), - [aux_sym_match_token1] = ACTIONS(2232), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2232), - [aux_sym_address_family_token1] = ACTIONS(2232), - [aux_sym_batch_mode_token1] = ACTIONS(2232), - [aux_sym_bind_address_token1] = ACTIONS(2232), - [aux_sym_bind_interface_token1] = ACTIONS(2232), - [aux_sym_canonical_domains_token1] = ACTIONS(2232), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2232), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2232), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2232), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2232), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2232), - [aux_sym_certificate_file_token1] = ACTIONS(2232), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2232), - [aux_sym_channel_timeout_token1] = ACTIONS(2232), - [aux_sym_check_host_ip_token1] = ACTIONS(2232), - [aux_sym_ciphers_token1] = ACTIONS(2232), - [aux_sym_cipher_token1] = ACTIONS(2234), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2232), - [aux_sym_compression_token1] = ACTIONS(2232), - [aux_sym_connection_attempts_token1] = ACTIONS(2232), - [aux_sym_connect_timeout_token1] = ACTIONS(2232), - [aux_sym_control_master_token1] = ACTIONS(2232), - [aux_sym_control_path_token1] = ACTIONS(2232), - [aux_sym_control_persist_token1] = ACTIONS(2232), - [aux_sym_dynamic_forward_token1] = ACTIONS(2232), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2232), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2232), - [aux_sym_escape_char_token1] = ACTIONS(2232), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2232), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2232), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2232), - [aux_sym_forward_agent_token1] = ACTIONS(2232), - [aux_sym_forward_x11_token1] = ACTIONS(2234), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2232), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2232), - [aux_sym_gateway_ports_token1] = ACTIONS(2232), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2232), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2232), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2232), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2232), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2232), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2232), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2232), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2232), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2232), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2232), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2232), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2232), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2232), - [aux_sym_host_key_alias_token1] = ACTIONS(2232), - [aux_sym_hostname_token1] = ACTIONS(2232), - [aux_sym_identities_only_token1] = ACTIONS(2232), - [aux_sym_identity_agent_token1] = ACTIONS(2232), - [aux_sym_identity_file_token1] = ACTIONS(2232), - [aux_sym_ignore_unknown_token1] = ACTIONS(2232), - [aux_sym_include_token1] = ACTIONS(2232), - [aux_sym_ip_qos_token1] = ACTIONS(2232), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2232), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2232), - [aux_sym_kex_algorithms_token1] = ACTIONS(2232), - [aux_sym_known_hosts_command_token1] = ACTIONS(2232), - [aux_sym_local_command_token1] = ACTIONS(2232), - [aux_sym_local_forward_token1] = ACTIONS(2232), - [aux_sym_log_level_token1] = ACTIONS(2232), - [aux_sym_log_verbose_token1] = ACTIONS(2232), - [aux_sym_macs_token1] = ACTIONS(2232), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2232), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2232), - [aux_sym_password_authentication_token1] = ACTIONS(2232), - [aux_sym_permit_local_command_token1] = ACTIONS(2232), - [aux_sym_permit_remote_open_token1] = ACTIONS(2232), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2232), - [aux_sym_port_token1] = ACTIONS(2232), - [aux_sym_preferred_authentications_token1] = ACTIONS(2232), - [aux_sym_protocol_token1] = ACTIONS(2232), - [aux_sym_proxy_command_token1] = ACTIONS(2232), - [aux_sym_proxy_jump_token1] = ACTIONS(2232), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2232), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2232), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2232), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2232), - [aux_sym_rekey_limit_token1] = ACTIONS(2232), - [aux_sym_remote_command_token1] = ACTIONS(2232), - [aux_sym_remote_forward_token1] = ACTIONS(2232), - [aux_sym_request_tty_token1] = ACTIONS(2232), - [aux_sym_required_rsa_size_token1] = ACTIONS(2232), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2232), - [aux_sym_security_key_provider_token1] = ACTIONS(2232), - [aux_sym_send_env_token1] = ACTIONS(2232), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2232), - [aux_sym_server_alive_interval_token1] = ACTIONS(2232), - [aux_sym_session_type_token1] = ACTIONS(2232), - [aux_sym_set_env_token1] = ACTIONS(2232), - [aux_sym_stdin_null_token1] = ACTIONS(2232), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2232), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2232), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2232), - [aux_sym_syslog_facility_token1] = ACTIONS(2232), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2232), - [aux_sym_keep_alive_token1] = ACTIONS(2232), - [aux_sym_tag_token1] = ACTIONS(2232), - [aux_sym_tunnel_token1] = ACTIONS(2234), - [aux_sym_tunnel_device_token1] = ACTIONS(2232), - [aux_sym_update_host_keys_token1] = ACTIONS(2232), - [aux_sym_use_keychain_token1] = ACTIONS(2232), - [aux_sym_use_roaming_token1] = ACTIONS(2232), - [aux_sym_user_token1] = ACTIONS(2234), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2232), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2232), - [aux_sym_visual_host_key_token1] = ACTIONS(2232), - [aux_sym_xauth_location_token1] = ACTIONS(2232), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2241), + [aux_sym_match_token1] = ACTIONS(2241), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2241), + [aux_sym_address_family_token1] = ACTIONS(2241), + [aux_sym_batch_mode_token1] = ACTIONS(2241), + [aux_sym_bind_address_token1] = ACTIONS(2241), + [aux_sym_bind_interface_token1] = ACTIONS(2241), + [aux_sym_canonical_domains_token1] = ACTIONS(2241), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2241), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2241), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2241), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2241), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2241), + [aux_sym_certificate_file_token1] = ACTIONS(2241), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2241), + [aux_sym_channel_timeout_token1] = ACTIONS(2241), + [aux_sym_check_host_ip_token1] = ACTIONS(2241), + [aux_sym_ciphers_token1] = ACTIONS(2241), + [aux_sym_cipher_token1] = ACTIONS(2243), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2241), + [aux_sym_compression_token1] = ACTIONS(2241), + [aux_sym_connection_attempts_token1] = ACTIONS(2241), + [aux_sym_connect_timeout_token1] = ACTIONS(2241), + [aux_sym_control_master_token1] = ACTIONS(2241), + [aux_sym_control_path_token1] = ACTIONS(2241), + [aux_sym_control_persist_token1] = ACTIONS(2241), + [aux_sym_dynamic_forward_token1] = ACTIONS(2241), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2241), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2241), + [aux_sym_escape_char_token1] = ACTIONS(2241), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2241), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2241), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2241), + [aux_sym_forward_agent_token1] = ACTIONS(2241), + [aux_sym_forward_x11_token1] = ACTIONS(2243), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2241), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2241), + [aux_sym_gateway_ports_token1] = ACTIONS(2241), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2241), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2241), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2241), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2241), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2241), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2241), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2241), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2241), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2241), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2241), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2241), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2241), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2241), + [aux_sym_host_key_alias_token1] = ACTIONS(2241), + [aux_sym_hostname_token1] = ACTIONS(2241), + [aux_sym_identities_only_token1] = ACTIONS(2241), + [aux_sym_identity_agent_token1] = ACTIONS(2241), + [aux_sym_identity_file_token1] = ACTIONS(2241), + [aux_sym_ignore_unknown_token1] = ACTIONS(2241), + [aux_sym_include_token1] = ACTIONS(2241), + [aux_sym_ip_qos_token1] = ACTIONS(2241), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2241), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2241), + [aux_sym_kex_algorithms_token1] = ACTIONS(2241), + [aux_sym_known_hosts_command_token1] = ACTIONS(2241), + [aux_sym_local_command_token1] = ACTIONS(2241), + [aux_sym_local_forward_token1] = ACTIONS(2241), + [aux_sym_log_level_token1] = ACTIONS(2241), + [aux_sym_log_verbose_token1] = ACTIONS(2241), + [aux_sym_macs_token1] = ACTIONS(2241), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2241), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2241), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2241), + [aux_sym_password_authentication_token1] = ACTIONS(2241), + [aux_sym_permit_local_command_token1] = ACTIONS(2241), + [aux_sym_permit_remote_open_token1] = ACTIONS(2241), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2241), + [aux_sym_port_token1] = ACTIONS(2241), + [aux_sym_preferred_authentications_token1] = ACTIONS(2241), + [aux_sym_protocol_token1] = ACTIONS(2241), + [aux_sym_proxy_command_token1] = ACTIONS(2241), + [aux_sym_proxy_jump_token1] = ACTIONS(2241), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2241), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2241), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2241), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2241), + [aux_sym_rekey_limit_token1] = ACTIONS(2241), + [aux_sym_remote_command_token1] = ACTIONS(2241), + [aux_sym_remote_forward_token1] = ACTIONS(2241), + [aux_sym_request_tty_token1] = ACTIONS(2241), + [aux_sym_required_rsa_size_token1] = ACTIONS(2241), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2241), + [aux_sym_security_key_provider_token1] = ACTIONS(2241), + [aux_sym_send_env_token1] = ACTIONS(2241), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2241), + [aux_sym_server_alive_interval_token1] = ACTIONS(2241), + [aux_sym_session_type_token1] = ACTIONS(2241), + [aux_sym_set_env_token1] = ACTIONS(2241), + [aux_sym_stdin_null_token1] = ACTIONS(2241), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2241), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2241), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2241), + [aux_sym_syslog_facility_token1] = ACTIONS(2241), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2241), + [aux_sym_keep_alive_token1] = ACTIONS(2241), + [aux_sym_tag_token1] = ACTIONS(2241), + [aux_sym_tunnel_token1] = ACTIONS(2243), + [aux_sym_tunnel_device_token1] = ACTIONS(2241), + [aux_sym_update_host_keys_token1] = ACTIONS(2241), + [aux_sym_use_keychain_token1] = ACTIONS(2241), + [aux_sym_use_roaming_token1] = ACTIONS(2241), + [aux_sym_user_token1] = ACTIONS(2243), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2241), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2241), + [aux_sym_visual_host_key_token1] = ACTIONS(2241), + [aux_sym_xauth_location_token1] = ACTIONS(2241), }, [290] = { - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [aux_sym_match_token1] = ACTIONS(2238), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2238), - [aux_sym_address_family_token1] = ACTIONS(2238), - [aux_sym_batch_mode_token1] = ACTIONS(2238), - [aux_sym_bind_address_token1] = ACTIONS(2238), - [aux_sym_bind_interface_token1] = ACTIONS(2238), - [aux_sym_canonical_domains_token1] = ACTIONS(2238), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2238), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2238), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2238), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2238), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2238), - [aux_sym_certificate_file_token1] = ACTIONS(2238), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2238), - [aux_sym_channel_timeout_token1] = ACTIONS(2238), - [aux_sym_check_host_ip_token1] = ACTIONS(2238), - [aux_sym_ciphers_token1] = ACTIONS(2238), - [aux_sym_cipher_token1] = ACTIONS(2240), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2238), - [aux_sym_compression_token1] = ACTIONS(2238), - [aux_sym_connection_attempts_token1] = ACTIONS(2238), - [aux_sym_connect_timeout_token1] = ACTIONS(2238), - [aux_sym_control_master_token1] = ACTIONS(2238), - [aux_sym_control_path_token1] = ACTIONS(2238), - [aux_sym_control_persist_token1] = ACTIONS(2238), - [aux_sym_dynamic_forward_token1] = ACTIONS(2238), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2238), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2238), - [aux_sym_escape_char_token1] = ACTIONS(2238), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2238), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2238), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2238), - [aux_sym_forward_agent_token1] = ACTIONS(2238), - [aux_sym_forward_x11_token1] = ACTIONS(2240), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2238), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2238), - [aux_sym_gateway_ports_token1] = ACTIONS(2238), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2238), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2238), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2238), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2238), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2238), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2238), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2238), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2238), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2238), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2238), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2238), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2238), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2238), - [aux_sym_host_key_alias_token1] = ACTIONS(2238), - [aux_sym_hostname_token1] = ACTIONS(2238), - [aux_sym_identities_only_token1] = ACTIONS(2238), - [aux_sym_identity_agent_token1] = ACTIONS(2238), - [aux_sym_identity_file_token1] = ACTIONS(2238), - [aux_sym_ignore_unknown_token1] = ACTIONS(2238), - [aux_sym_include_token1] = ACTIONS(2238), - [aux_sym_ip_qos_token1] = ACTIONS(2238), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2238), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2238), - [aux_sym_kex_algorithms_token1] = ACTIONS(2238), - [aux_sym_known_hosts_command_token1] = ACTIONS(2238), - [aux_sym_local_command_token1] = ACTIONS(2238), - [aux_sym_local_forward_token1] = ACTIONS(2238), - [aux_sym_log_level_token1] = ACTIONS(2238), - [aux_sym_log_verbose_token1] = ACTIONS(2238), - [aux_sym_macs_token1] = ACTIONS(2238), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2238), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2238), - [aux_sym_password_authentication_token1] = ACTIONS(2238), - [aux_sym_permit_local_command_token1] = ACTIONS(2238), - [aux_sym_permit_remote_open_token1] = ACTIONS(2238), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2238), - [aux_sym_port_token1] = ACTIONS(2238), - [aux_sym_preferred_authentications_token1] = ACTIONS(2238), - [aux_sym_protocol_token1] = ACTIONS(2238), - [aux_sym_proxy_command_token1] = ACTIONS(2238), - [aux_sym_proxy_jump_token1] = ACTIONS(2238), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2238), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2238), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2238), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2238), - [aux_sym_rekey_limit_token1] = ACTIONS(2238), - [aux_sym_remote_command_token1] = ACTIONS(2238), - [aux_sym_remote_forward_token1] = ACTIONS(2238), - [aux_sym_request_tty_token1] = ACTIONS(2238), - [aux_sym_required_rsa_size_token1] = ACTIONS(2238), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2238), - [aux_sym_security_key_provider_token1] = ACTIONS(2238), - [aux_sym_send_env_token1] = ACTIONS(2238), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2238), - [aux_sym_server_alive_interval_token1] = ACTIONS(2238), - [aux_sym_session_type_token1] = ACTIONS(2238), - [aux_sym_set_env_token1] = ACTIONS(2238), - [aux_sym_stdin_null_token1] = ACTIONS(2238), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2238), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2238), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2238), - [aux_sym_syslog_facility_token1] = ACTIONS(2238), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2238), - [aux_sym_keep_alive_token1] = ACTIONS(2238), - [aux_sym_tag_token1] = ACTIONS(2238), - [aux_sym_tunnel_token1] = ACTIONS(2240), - [aux_sym_tunnel_device_token1] = ACTIONS(2238), - [aux_sym_update_host_keys_token1] = ACTIONS(2238), - [aux_sym_use_keychain_token1] = ACTIONS(2238), - [aux_sym_use_roaming_token1] = ACTIONS(2238), - [aux_sym_user_token1] = ACTIONS(2240), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2238), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2238), - [aux_sym_visual_host_key_token1] = ACTIONS(2238), - [aux_sym_xauth_location_token1] = ACTIONS(2238), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(2249), + [aux_sym_match_token1] = ACTIONS(2245), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2245), + [aux_sym_address_family_token1] = ACTIONS(2245), + [aux_sym_batch_mode_token1] = ACTIONS(2245), + [aux_sym_bind_address_token1] = ACTIONS(2245), + [aux_sym_bind_interface_token1] = ACTIONS(2245), + [aux_sym_canonical_domains_token1] = ACTIONS(2245), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2245), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2245), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2245), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2245), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2245), + [aux_sym_certificate_file_token1] = ACTIONS(2245), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2245), + [aux_sym_channel_timeout_token1] = ACTIONS(2245), + [aux_sym_check_host_ip_token1] = ACTIONS(2245), + [aux_sym_ciphers_token1] = ACTIONS(2245), + [aux_sym_cipher_token1] = ACTIONS(2247), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2245), + [aux_sym_compression_token1] = ACTIONS(2245), + [aux_sym_connection_attempts_token1] = ACTIONS(2245), + [aux_sym_connect_timeout_token1] = ACTIONS(2245), + [aux_sym_control_master_token1] = ACTIONS(2245), + [aux_sym_control_path_token1] = ACTIONS(2245), + [aux_sym_control_persist_token1] = ACTIONS(2245), + [aux_sym_dynamic_forward_token1] = ACTIONS(2245), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2245), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2245), + [aux_sym_escape_char_token1] = ACTIONS(2245), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2245), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2245), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2245), + [aux_sym_forward_agent_token1] = ACTIONS(2245), + [aux_sym_forward_x11_token1] = ACTIONS(2247), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2245), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2245), + [aux_sym_gateway_ports_token1] = ACTIONS(2245), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2245), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2245), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2245), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2245), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2245), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2245), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2245), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2245), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2245), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2245), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2245), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2245), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2245), + [aux_sym_host_key_alias_token1] = ACTIONS(2245), + [aux_sym_hostname_token1] = ACTIONS(2245), + [aux_sym_identities_only_token1] = ACTIONS(2245), + [aux_sym_identity_agent_token1] = ACTIONS(2245), + [aux_sym_identity_file_token1] = ACTIONS(2245), + [aux_sym_ignore_unknown_token1] = ACTIONS(2245), + [aux_sym_include_token1] = ACTIONS(2245), + [aux_sym_ip_qos_token1] = ACTIONS(2245), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2245), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2245), + [aux_sym_kex_algorithms_token1] = ACTIONS(2245), + [aux_sym_known_hosts_command_token1] = ACTIONS(2245), + [aux_sym_local_command_token1] = ACTIONS(2245), + [aux_sym_local_forward_token1] = ACTIONS(2245), + [aux_sym_log_level_token1] = ACTIONS(2245), + [aux_sym_log_verbose_token1] = ACTIONS(2245), + [aux_sym_macs_token1] = ACTIONS(2245), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2245), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2245), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2245), + [aux_sym_password_authentication_token1] = ACTIONS(2245), + [aux_sym_permit_local_command_token1] = ACTIONS(2245), + [aux_sym_permit_remote_open_token1] = ACTIONS(2245), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2245), + [aux_sym_port_token1] = ACTIONS(2245), + [aux_sym_preferred_authentications_token1] = ACTIONS(2245), + [aux_sym_protocol_token1] = ACTIONS(2245), + [aux_sym_proxy_command_token1] = ACTIONS(2245), + [aux_sym_proxy_jump_token1] = ACTIONS(2245), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2245), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2245), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2245), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2245), + [aux_sym_rekey_limit_token1] = ACTIONS(2245), + [aux_sym_remote_command_token1] = ACTIONS(2245), + [aux_sym_remote_forward_token1] = ACTIONS(2245), + [aux_sym_request_tty_token1] = ACTIONS(2245), + [aux_sym_required_rsa_size_token1] = ACTIONS(2245), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2245), + [aux_sym_security_key_provider_token1] = ACTIONS(2245), + [aux_sym_send_env_token1] = ACTIONS(2245), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2245), + [aux_sym_server_alive_interval_token1] = ACTIONS(2245), + [aux_sym_session_type_token1] = ACTIONS(2245), + [aux_sym_set_env_token1] = ACTIONS(2245), + [aux_sym_stdin_null_token1] = ACTIONS(2245), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2245), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2245), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2245), + [aux_sym_syslog_facility_token1] = ACTIONS(2245), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2245), + [aux_sym_keep_alive_token1] = ACTIONS(2245), + [aux_sym_tag_token1] = ACTIONS(2245), + [aux_sym_tunnel_token1] = ACTIONS(2247), + [aux_sym_tunnel_device_token1] = ACTIONS(2245), + [aux_sym_update_host_keys_token1] = ACTIONS(2245), + [aux_sym_use_keychain_token1] = ACTIONS(2245), + [aux_sym_use_roaming_token1] = ACTIONS(2245), + [aux_sym_user_token1] = ACTIONS(2247), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2245), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2245), + [aux_sym_visual_host_key_token1] = ACTIONS(2245), + [aux_sym_xauth_location_token1] = ACTIONS(2245), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2242), - [aux_sym_match_token1] = ACTIONS(2242), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2242), - [aux_sym_address_family_token1] = ACTIONS(2242), - [aux_sym_batch_mode_token1] = ACTIONS(2242), - [aux_sym_bind_address_token1] = ACTIONS(2242), - [aux_sym_bind_interface_token1] = ACTIONS(2242), - [aux_sym_canonical_domains_token1] = ACTIONS(2242), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2242), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2242), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2242), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2242), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2242), - [aux_sym_certificate_file_token1] = ACTIONS(2242), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2242), - [aux_sym_channel_timeout_token1] = ACTIONS(2242), - [aux_sym_check_host_ip_token1] = ACTIONS(2242), - [aux_sym_ciphers_token1] = ACTIONS(2242), - [aux_sym_cipher_token1] = ACTIONS(2244), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2242), - [aux_sym_compression_token1] = ACTIONS(2242), - [aux_sym_connection_attempts_token1] = ACTIONS(2242), - [aux_sym_connect_timeout_token1] = ACTIONS(2242), - [aux_sym_control_master_token1] = ACTIONS(2242), - [aux_sym_control_path_token1] = ACTIONS(2242), - [aux_sym_control_persist_token1] = ACTIONS(2242), - [aux_sym_dynamic_forward_token1] = ACTIONS(2242), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2242), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2242), - [aux_sym_escape_char_token1] = ACTIONS(2242), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2242), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2242), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2242), - [aux_sym_forward_agent_token1] = ACTIONS(2242), - [aux_sym_forward_x11_token1] = ACTIONS(2244), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2242), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2242), - [aux_sym_gateway_ports_token1] = ACTIONS(2242), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2242), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2242), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2242), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2242), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2242), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2242), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2242), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2242), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2242), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2242), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2242), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2242), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2242), - [aux_sym_host_key_alias_token1] = ACTIONS(2242), - [aux_sym_hostname_token1] = ACTIONS(2242), - [aux_sym_identities_only_token1] = ACTIONS(2242), - [aux_sym_identity_agent_token1] = ACTIONS(2242), - [aux_sym_identity_file_token1] = ACTIONS(2242), - [aux_sym_ignore_unknown_token1] = ACTIONS(2242), - [aux_sym_include_token1] = ACTIONS(2242), - [aux_sym_ip_qos_token1] = ACTIONS(2242), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2242), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2242), - [aux_sym_kex_algorithms_token1] = ACTIONS(2242), - [aux_sym_known_hosts_command_token1] = ACTIONS(2242), - [aux_sym_local_command_token1] = ACTIONS(2242), - [aux_sym_local_forward_token1] = ACTIONS(2242), - [aux_sym_log_level_token1] = ACTIONS(2242), - [aux_sym_log_verbose_token1] = ACTIONS(2242), - [aux_sym_macs_token1] = ACTIONS(2242), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2242), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2242), - [aux_sym_password_authentication_token1] = ACTIONS(2242), - [aux_sym_permit_local_command_token1] = ACTIONS(2242), - [aux_sym_permit_remote_open_token1] = ACTIONS(2242), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2242), - [aux_sym_port_token1] = ACTIONS(2242), - [aux_sym_preferred_authentications_token1] = ACTIONS(2242), - [aux_sym_protocol_token1] = ACTIONS(2242), - [aux_sym_proxy_command_token1] = ACTIONS(2242), - [aux_sym_proxy_jump_token1] = ACTIONS(2242), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2242), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2242), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2242), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2242), - [aux_sym_rekey_limit_token1] = ACTIONS(2242), - [aux_sym_remote_command_token1] = ACTIONS(2242), - [aux_sym_remote_forward_token1] = ACTIONS(2242), - [aux_sym_request_tty_token1] = ACTIONS(2242), - [aux_sym_required_rsa_size_token1] = ACTIONS(2242), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2242), - [aux_sym_security_key_provider_token1] = ACTIONS(2242), - [aux_sym_send_env_token1] = ACTIONS(2242), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2242), - [aux_sym_server_alive_interval_token1] = ACTIONS(2242), - [aux_sym_session_type_token1] = ACTIONS(2242), - [aux_sym_set_env_token1] = ACTIONS(2242), - [aux_sym_stdin_null_token1] = ACTIONS(2242), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2242), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2242), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2242), - [aux_sym_syslog_facility_token1] = ACTIONS(2242), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2242), - [aux_sym_keep_alive_token1] = ACTIONS(2242), - [aux_sym_tag_token1] = ACTIONS(2242), - [aux_sym_tunnel_token1] = ACTIONS(2244), - [aux_sym_tunnel_device_token1] = ACTIONS(2242), - [aux_sym_update_host_keys_token1] = ACTIONS(2242), - [aux_sym_use_keychain_token1] = ACTIONS(2242), - [aux_sym_use_roaming_token1] = ACTIONS(2242), - [aux_sym_user_token1] = ACTIONS(2244), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2242), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2242), - [aux_sym_visual_host_key_token1] = ACTIONS(2242), - [aux_sym_xauth_location_token1] = ACTIONS(2242), + [ts_builtin_sym_end] = ACTIONS(2251), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(2255), + [aux_sym_match_token1] = ACTIONS(2251), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2251), + [aux_sym_address_family_token1] = ACTIONS(2251), + [aux_sym_batch_mode_token1] = ACTIONS(2251), + [aux_sym_bind_address_token1] = ACTIONS(2251), + [aux_sym_bind_interface_token1] = ACTIONS(2251), + [aux_sym_canonical_domains_token1] = ACTIONS(2251), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2251), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2251), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2251), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2251), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2251), + [aux_sym_certificate_file_token1] = ACTIONS(2251), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2251), + [aux_sym_channel_timeout_token1] = ACTIONS(2251), + [aux_sym_check_host_ip_token1] = ACTIONS(2251), + [aux_sym_ciphers_token1] = ACTIONS(2251), + [aux_sym_cipher_token1] = ACTIONS(2253), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2251), + [aux_sym_compression_token1] = ACTIONS(2251), + [aux_sym_connection_attempts_token1] = ACTIONS(2251), + [aux_sym_connect_timeout_token1] = ACTIONS(2251), + [aux_sym_control_master_token1] = ACTIONS(2251), + [aux_sym_control_path_token1] = ACTIONS(2251), + [aux_sym_control_persist_token1] = ACTIONS(2251), + [aux_sym_dynamic_forward_token1] = ACTIONS(2251), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2251), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2251), + [aux_sym_escape_char_token1] = ACTIONS(2251), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2251), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2251), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2251), + [aux_sym_forward_agent_token1] = ACTIONS(2251), + [aux_sym_forward_x11_token1] = ACTIONS(2253), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2251), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2251), + [aux_sym_gateway_ports_token1] = ACTIONS(2251), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2251), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2251), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2251), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2251), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2251), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2251), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2251), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2251), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2251), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2251), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2251), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2251), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2251), + [aux_sym_host_key_alias_token1] = ACTIONS(2251), + [aux_sym_hostname_token1] = ACTIONS(2251), + [aux_sym_identities_only_token1] = ACTIONS(2251), + [aux_sym_identity_agent_token1] = ACTIONS(2251), + [aux_sym_identity_file_token1] = ACTIONS(2251), + [aux_sym_ignore_unknown_token1] = ACTIONS(2251), + [aux_sym_include_token1] = ACTIONS(2251), + [aux_sym_ip_qos_token1] = ACTIONS(2251), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2251), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2251), + [aux_sym_kex_algorithms_token1] = ACTIONS(2251), + [aux_sym_known_hosts_command_token1] = ACTIONS(2251), + [aux_sym_local_command_token1] = ACTIONS(2251), + [aux_sym_local_forward_token1] = ACTIONS(2251), + [aux_sym_log_level_token1] = ACTIONS(2251), + [aux_sym_log_verbose_token1] = ACTIONS(2251), + [aux_sym_macs_token1] = ACTIONS(2251), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2251), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2251), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2251), + [aux_sym_password_authentication_token1] = ACTIONS(2251), + [aux_sym_permit_local_command_token1] = ACTIONS(2251), + [aux_sym_permit_remote_open_token1] = ACTIONS(2251), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2251), + [aux_sym_port_token1] = ACTIONS(2251), + [aux_sym_preferred_authentications_token1] = ACTIONS(2251), + [aux_sym_protocol_token1] = ACTIONS(2251), + [aux_sym_proxy_command_token1] = ACTIONS(2251), + [aux_sym_proxy_jump_token1] = ACTIONS(2251), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2251), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2251), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2251), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2251), + [aux_sym_rekey_limit_token1] = ACTIONS(2251), + [aux_sym_remote_command_token1] = ACTIONS(2251), + [aux_sym_remote_forward_token1] = ACTIONS(2251), + [aux_sym_request_tty_token1] = ACTIONS(2251), + [aux_sym_required_rsa_size_token1] = ACTIONS(2251), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2251), + [aux_sym_security_key_provider_token1] = ACTIONS(2251), + [aux_sym_send_env_token1] = ACTIONS(2251), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2251), + [aux_sym_server_alive_interval_token1] = ACTIONS(2251), + [aux_sym_session_type_token1] = ACTIONS(2251), + [aux_sym_set_env_token1] = ACTIONS(2251), + [aux_sym_stdin_null_token1] = ACTIONS(2251), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2251), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2251), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2251), + [aux_sym_syslog_facility_token1] = ACTIONS(2251), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2251), + [aux_sym_keep_alive_token1] = ACTIONS(2251), + [aux_sym_tag_token1] = ACTIONS(2251), + [aux_sym_tunnel_token1] = ACTIONS(2253), + [aux_sym_tunnel_device_token1] = ACTIONS(2251), + [aux_sym_update_host_keys_token1] = ACTIONS(2251), + [aux_sym_use_keychain_token1] = ACTIONS(2251), + [aux_sym_use_roaming_token1] = ACTIONS(2251), + [aux_sym_user_token1] = ACTIONS(2253), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2251), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2251), + [aux_sym_visual_host_key_token1] = ACTIONS(2251), + [aux_sym_xauth_location_token1] = ACTIONS(2251), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(2246), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2248), - [anon_sym_DQUOTE] = ACTIONS(2250), - [aux_sym_match_token1] = ACTIONS(2246), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2246), - [aux_sym_address_family_token1] = ACTIONS(2246), - [aux_sym_batch_mode_token1] = ACTIONS(2246), - [aux_sym_bind_address_token1] = ACTIONS(2246), - [aux_sym_bind_interface_token1] = ACTIONS(2246), - [aux_sym_canonical_domains_token1] = ACTIONS(2246), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2246), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2246), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2246), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2246), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2246), - [aux_sym_certificate_file_token1] = ACTIONS(2246), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2246), - [aux_sym_channel_timeout_token1] = ACTIONS(2246), - [aux_sym_check_host_ip_token1] = ACTIONS(2246), - [aux_sym_ciphers_token1] = ACTIONS(2246), - [aux_sym_cipher_token1] = ACTIONS(2248), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2246), - [aux_sym_compression_token1] = ACTIONS(2246), - [aux_sym_connection_attempts_token1] = ACTIONS(2246), - [aux_sym_connect_timeout_token1] = ACTIONS(2246), - [aux_sym_control_master_token1] = ACTIONS(2246), - [aux_sym_control_path_token1] = ACTIONS(2246), - [aux_sym_control_persist_token1] = ACTIONS(2246), - [aux_sym_dynamic_forward_token1] = ACTIONS(2246), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2246), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2246), - [aux_sym_escape_char_token1] = ACTIONS(2246), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2246), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2246), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2246), - [aux_sym_forward_agent_token1] = ACTIONS(2246), - [aux_sym_forward_x11_token1] = ACTIONS(2248), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2246), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2246), - [aux_sym_gateway_ports_token1] = ACTIONS(2246), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2246), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2246), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2246), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2246), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2246), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2246), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2246), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2246), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2246), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2246), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2246), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2246), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2246), - [aux_sym_host_key_alias_token1] = ACTIONS(2246), - [aux_sym_hostname_token1] = ACTIONS(2246), - [aux_sym_identities_only_token1] = ACTIONS(2246), - [aux_sym_identity_agent_token1] = ACTIONS(2246), - [aux_sym_identity_file_token1] = ACTIONS(2246), - [aux_sym_ignore_unknown_token1] = ACTIONS(2246), - [aux_sym_include_token1] = ACTIONS(2246), - [aux_sym_ip_qos_token1] = ACTIONS(2246), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2246), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2246), - [aux_sym_kex_algorithms_token1] = ACTIONS(2246), - [aux_sym_known_hosts_command_token1] = ACTIONS(2246), - [aux_sym_local_command_token1] = ACTIONS(2246), - [aux_sym_local_forward_token1] = ACTIONS(2246), - [aux_sym_log_level_token1] = ACTIONS(2246), - [aux_sym_log_verbose_token1] = ACTIONS(2246), - [aux_sym_macs_token1] = ACTIONS(2246), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2246), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2246), - [aux_sym_password_authentication_token1] = ACTIONS(2246), - [aux_sym_permit_local_command_token1] = ACTIONS(2246), - [aux_sym_permit_remote_open_token1] = ACTIONS(2246), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2246), - [aux_sym_port_token1] = ACTIONS(2246), - [aux_sym_preferred_authentications_token1] = ACTIONS(2246), - [aux_sym_protocol_token1] = ACTIONS(2246), - [aux_sym_proxy_command_token1] = ACTIONS(2246), - [aux_sym_proxy_jump_token1] = ACTIONS(2246), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2246), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2246), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2246), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2246), - [aux_sym_rekey_limit_token1] = ACTIONS(2246), - [aux_sym_remote_command_token1] = ACTIONS(2246), - [aux_sym_remote_forward_token1] = ACTIONS(2246), - [aux_sym_request_tty_token1] = ACTIONS(2246), - [aux_sym_required_rsa_size_token1] = ACTIONS(2246), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2246), - [aux_sym_security_key_provider_token1] = ACTIONS(2246), - [aux_sym_send_env_token1] = ACTIONS(2246), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2246), - [aux_sym_server_alive_interval_token1] = ACTIONS(2246), - [aux_sym_session_type_token1] = ACTIONS(2246), - [aux_sym_set_env_token1] = ACTIONS(2246), - [aux_sym_stdin_null_token1] = ACTIONS(2246), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2246), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2246), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2246), - [aux_sym_syslog_facility_token1] = ACTIONS(2246), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2246), - [aux_sym_keep_alive_token1] = ACTIONS(2246), - [aux_sym_tag_token1] = ACTIONS(2246), - [aux_sym_tunnel_token1] = ACTIONS(2248), - [aux_sym_tunnel_device_token1] = ACTIONS(2246), - [aux_sym_update_host_keys_token1] = ACTIONS(2246), - [aux_sym_use_keychain_token1] = ACTIONS(2246), - [aux_sym_use_roaming_token1] = ACTIONS(2246), - [aux_sym_user_token1] = ACTIONS(2248), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2246), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2246), - [aux_sym_visual_host_key_token1] = ACTIONS(2246), - [aux_sym_xauth_location_token1] = ACTIONS(2246), + [ts_builtin_sym_end] = ACTIONS(2257), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(2257), + [aux_sym_match_token1] = ACTIONS(2257), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2257), + [aux_sym_address_family_token1] = ACTIONS(2257), + [aux_sym_batch_mode_token1] = ACTIONS(2257), + [aux_sym_bind_address_token1] = ACTIONS(2257), + [aux_sym_bind_interface_token1] = ACTIONS(2257), + [aux_sym_canonical_domains_token1] = ACTIONS(2257), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2257), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2257), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2257), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2257), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2257), + [aux_sym_certificate_file_token1] = ACTIONS(2257), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2257), + [aux_sym_channel_timeout_token1] = ACTIONS(2257), + [aux_sym_check_host_ip_token1] = ACTIONS(2257), + [aux_sym_ciphers_token1] = ACTIONS(2257), + [aux_sym_cipher_token1] = ACTIONS(2259), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2257), + [aux_sym_compression_token1] = ACTIONS(2257), + [aux_sym_connection_attempts_token1] = ACTIONS(2257), + [aux_sym_connect_timeout_token1] = ACTIONS(2257), + [aux_sym_control_master_token1] = ACTIONS(2257), + [aux_sym_control_path_token1] = ACTIONS(2257), + [aux_sym_control_persist_token1] = ACTIONS(2257), + [aux_sym_dynamic_forward_token1] = ACTIONS(2257), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2257), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2257), + [aux_sym_escape_char_token1] = ACTIONS(2257), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2257), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2257), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2257), + [aux_sym_forward_agent_token1] = ACTIONS(2257), + [aux_sym_forward_x11_token1] = ACTIONS(2259), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2257), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2257), + [aux_sym_gateway_ports_token1] = ACTIONS(2257), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2257), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2257), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2257), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2257), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2257), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2257), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2257), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2257), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2257), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2257), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2257), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2257), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2257), + [aux_sym_host_key_alias_token1] = ACTIONS(2257), + [aux_sym_hostname_token1] = ACTIONS(2257), + [aux_sym_identities_only_token1] = ACTIONS(2257), + [aux_sym_identity_agent_token1] = ACTIONS(2257), + [aux_sym_identity_file_token1] = ACTIONS(2257), + [aux_sym_ignore_unknown_token1] = ACTIONS(2257), + [aux_sym_include_token1] = ACTIONS(2257), + [aux_sym_ip_qos_token1] = ACTIONS(2257), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2257), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2257), + [aux_sym_kex_algorithms_token1] = ACTIONS(2257), + [aux_sym_known_hosts_command_token1] = ACTIONS(2257), + [aux_sym_local_command_token1] = ACTIONS(2257), + [aux_sym_local_forward_token1] = ACTIONS(2257), + [aux_sym_log_level_token1] = ACTIONS(2257), + [aux_sym_log_verbose_token1] = ACTIONS(2257), + [aux_sym_macs_token1] = ACTIONS(2257), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2257), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2257), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2257), + [aux_sym_password_authentication_token1] = ACTIONS(2257), + [aux_sym_permit_local_command_token1] = ACTIONS(2257), + [aux_sym_permit_remote_open_token1] = ACTIONS(2257), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2257), + [aux_sym_port_token1] = ACTIONS(2257), + [aux_sym_preferred_authentications_token1] = ACTIONS(2257), + [aux_sym_protocol_token1] = ACTIONS(2257), + [aux_sym_proxy_command_token1] = ACTIONS(2257), + [aux_sym_proxy_jump_token1] = ACTIONS(2257), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2257), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2257), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2257), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2257), + [aux_sym_rekey_limit_token1] = ACTIONS(2257), + [aux_sym_remote_command_token1] = ACTIONS(2257), + [aux_sym_remote_forward_token1] = ACTIONS(2257), + [aux_sym_request_tty_token1] = ACTIONS(2257), + [aux_sym_required_rsa_size_token1] = ACTIONS(2257), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2257), + [aux_sym_security_key_provider_token1] = ACTIONS(2257), + [aux_sym_send_env_token1] = ACTIONS(2257), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2257), + [aux_sym_server_alive_interval_token1] = ACTIONS(2257), + [aux_sym_session_type_token1] = ACTIONS(2257), + [aux_sym_set_env_token1] = ACTIONS(2257), + [aux_sym_stdin_null_token1] = ACTIONS(2257), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2257), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2257), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2257), + [aux_sym_syslog_facility_token1] = ACTIONS(2257), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2257), + [aux_sym_keep_alive_token1] = ACTIONS(2257), + [aux_sym_tag_token1] = ACTIONS(2257), + [aux_sym_tunnel_token1] = ACTIONS(2259), + [aux_sym_tunnel_device_token1] = ACTIONS(2257), + [aux_sym_update_host_keys_token1] = ACTIONS(2257), + [aux_sym_use_keychain_token1] = ACTIONS(2257), + [aux_sym_use_roaming_token1] = ACTIONS(2257), + [aux_sym_user_token1] = ACTIONS(2259), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2257), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2257), + [aux_sym_visual_host_key_token1] = ACTIONS(2257), + [aux_sym_xauth_location_token1] = ACTIONS(2257), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2254), - [anon_sym_DQUOTE] = ACTIONS(2256), - [aux_sym_match_token1] = ACTIONS(2252), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2252), - [aux_sym_address_family_token1] = ACTIONS(2252), - [aux_sym_batch_mode_token1] = ACTIONS(2252), - [aux_sym_bind_address_token1] = ACTIONS(2252), - [aux_sym_bind_interface_token1] = ACTIONS(2252), - [aux_sym_canonical_domains_token1] = ACTIONS(2252), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2252), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2252), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2252), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2252), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2252), - [aux_sym_certificate_file_token1] = ACTIONS(2252), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2252), - [aux_sym_channel_timeout_token1] = ACTIONS(2252), - [aux_sym_check_host_ip_token1] = ACTIONS(2252), - [aux_sym_ciphers_token1] = ACTIONS(2252), - [aux_sym_cipher_token1] = ACTIONS(2254), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2252), - [aux_sym_compression_token1] = ACTIONS(2252), - [aux_sym_connection_attempts_token1] = ACTIONS(2252), - [aux_sym_connect_timeout_token1] = ACTIONS(2252), - [aux_sym_control_master_token1] = ACTIONS(2252), - [aux_sym_control_path_token1] = ACTIONS(2252), - [aux_sym_control_persist_token1] = ACTIONS(2252), - [aux_sym_dynamic_forward_token1] = ACTIONS(2252), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2252), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2252), - [aux_sym_escape_char_token1] = ACTIONS(2252), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2252), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2252), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2252), - [aux_sym_forward_agent_token1] = ACTIONS(2252), - [aux_sym_forward_x11_token1] = ACTIONS(2254), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2252), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2252), - [aux_sym_gateway_ports_token1] = ACTIONS(2252), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2252), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2252), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2252), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2252), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2252), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2252), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2252), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2252), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2252), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2252), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2252), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2252), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2252), - [aux_sym_host_key_alias_token1] = ACTIONS(2252), - [aux_sym_hostname_token1] = ACTIONS(2252), - [aux_sym_identities_only_token1] = ACTIONS(2252), - [aux_sym_identity_agent_token1] = ACTIONS(2252), - [aux_sym_identity_file_token1] = ACTIONS(2252), - [aux_sym_ignore_unknown_token1] = ACTIONS(2252), - [aux_sym_include_token1] = ACTIONS(2252), - [aux_sym_ip_qos_token1] = ACTIONS(2252), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2252), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2252), - [aux_sym_kex_algorithms_token1] = ACTIONS(2252), - [aux_sym_known_hosts_command_token1] = ACTIONS(2252), - [aux_sym_local_command_token1] = ACTIONS(2252), - [aux_sym_local_forward_token1] = ACTIONS(2252), - [aux_sym_log_level_token1] = ACTIONS(2252), - [aux_sym_log_verbose_token1] = ACTIONS(2252), - [aux_sym_macs_token1] = ACTIONS(2252), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2252), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2252), - [aux_sym_password_authentication_token1] = ACTIONS(2252), - [aux_sym_permit_local_command_token1] = ACTIONS(2252), - [aux_sym_permit_remote_open_token1] = ACTIONS(2252), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2252), - [aux_sym_port_token1] = ACTIONS(2252), - [aux_sym_preferred_authentications_token1] = ACTIONS(2252), - [aux_sym_protocol_token1] = ACTIONS(2252), - [aux_sym_proxy_command_token1] = ACTIONS(2252), - [aux_sym_proxy_jump_token1] = ACTIONS(2252), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2252), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2252), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2252), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2252), - [aux_sym_rekey_limit_token1] = ACTIONS(2252), - [aux_sym_remote_command_token1] = ACTIONS(2252), - [aux_sym_remote_forward_token1] = ACTIONS(2252), - [aux_sym_request_tty_token1] = ACTIONS(2252), - [aux_sym_required_rsa_size_token1] = ACTIONS(2252), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2252), - [aux_sym_security_key_provider_token1] = ACTIONS(2252), - [aux_sym_send_env_token1] = ACTIONS(2252), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2252), - [aux_sym_server_alive_interval_token1] = ACTIONS(2252), - [aux_sym_session_type_token1] = ACTIONS(2252), - [aux_sym_set_env_token1] = ACTIONS(2252), - [aux_sym_stdin_null_token1] = ACTIONS(2252), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2252), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2252), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2252), - [aux_sym_syslog_facility_token1] = ACTIONS(2252), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2252), - [aux_sym_keep_alive_token1] = ACTIONS(2252), - [aux_sym_tag_token1] = ACTIONS(2252), - [aux_sym_tunnel_token1] = ACTIONS(2254), - [aux_sym_tunnel_device_token1] = ACTIONS(2252), - [aux_sym_update_host_keys_token1] = ACTIONS(2252), - [aux_sym_use_keychain_token1] = ACTIONS(2252), - [aux_sym_use_roaming_token1] = ACTIONS(2252), - [aux_sym_user_token1] = ACTIONS(2254), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2252), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2252), - [aux_sym_visual_host_key_token1] = ACTIONS(2252), - [aux_sym_xauth_location_token1] = ACTIONS(2252), + [ts_builtin_sym_end] = ACTIONS(2261), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(2261), + [aux_sym_match_token1] = ACTIONS(2261), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2261), + [aux_sym_address_family_token1] = ACTIONS(2261), + [aux_sym_batch_mode_token1] = ACTIONS(2261), + [aux_sym_bind_address_token1] = ACTIONS(2261), + [aux_sym_bind_interface_token1] = ACTIONS(2261), + [aux_sym_canonical_domains_token1] = ACTIONS(2261), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2261), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2261), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2261), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2261), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2261), + [aux_sym_certificate_file_token1] = ACTIONS(2261), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2261), + [aux_sym_channel_timeout_token1] = ACTIONS(2261), + [aux_sym_check_host_ip_token1] = ACTIONS(2261), + [aux_sym_ciphers_token1] = ACTIONS(2261), + [aux_sym_cipher_token1] = ACTIONS(2263), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2261), + [aux_sym_compression_token1] = ACTIONS(2261), + [aux_sym_connection_attempts_token1] = ACTIONS(2261), + [aux_sym_connect_timeout_token1] = ACTIONS(2261), + [aux_sym_control_master_token1] = ACTIONS(2261), + [aux_sym_control_path_token1] = ACTIONS(2261), + [aux_sym_control_persist_token1] = ACTIONS(2261), + [aux_sym_dynamic_forward_token1] = ACTIONS(2261), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2261), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2261), + [aux_sym_escape_char_token1] = ACTIONS(2261), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2261), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2261), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2261), + [aux_sym_forward_agent_token1] = ACTIONS(2261), + [aux_sym_forward_x11_token1] = ACTIONS(2263), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2261), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2261), + [aux_sym_gateway_ports_token1] = ACTIONS(2261), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2261), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2261), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2261), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2261), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2261), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2261), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2261), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2261), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2261), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2261), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2261), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2261), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2261), + [aux_sym_host_key_alias_token1] = ACTIONS(2261), + [aux_sym_hostname_token1] = ACTIONS(2261), + [aux_sym_identities_only_token1] = ACTIONS(2261), + [aux_sym_identity_agent_token1] = ACTIONS(2261), + [aux_sym_identity_file_token1] = ACTIONS(2261), + [aux_sym_ignore_unknown_token1] = ACTIONS(2261), + [aux_sym_include_token1] = ACTIONS(2261), + [aux_sym_ip_qos_token1] = ACTIONS(2261), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2261), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2261), + [aux_sym_kex_algorithms_token1] = ACTIONS(2261), + [aux_sym_known_hosts_command_token1] = ACTIONS(2261), + [aux_sym_local_command_token1] = ACTIONS(2261), + [aux_sym_local_forward_token1] = ACTIONS(2261), + [aux_sym_log_level_token1] = ACTIONS(2261), + [aux_sym_log_verbose_token1] = ACTIONS(2261), + [aux_sym_macs_token1] = ACTIONS(2261), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2261), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2261), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2261), + [aux_sym_password_authentication_token1] = ACTIONS(2261), + [aux_sym_permit_local_command_token1] = ACTIONS(2261), + [aux_sym_permit_remote_open_token1] = ACTIONS(2261), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2261), + [aux_sym_port_token1] = ACTIONS(2261), + [aux_sym_preferred_authentications_token1] = ACTIONS(2261), + [aux_sym_protocol_token1] = ACTIONS(2261), + [aux_sym_proxy_command_token1] = ACTIONS(2261), + [aux_sym_proxy_jump_token1] = ACTIONS(2261), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2261), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2261), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2261), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2261), + [aux_sym_rekey_limit_token1] = ACTIONS(2261), + [aux_sym_remote_command_token1] = ACTIONS(2261), + [aux_sym_remote_forward_token1] = ACTIONS(2261), + [aux_sym_request_tty_token1] = ACTIONS(2261), + [aux_sym_required_rsa_size_token1] = ACTIONS(2261), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2261), + [aux_sym_security_key_provider_token1] = ACTIONS(2261), + [aux_sym_send_env_token1] = ACTIONS(2261), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2261), + [aux_sym_server_alive_interval_token1] = ACTIONS(2261), + [aux_sym_session_type_token1] = ACTIONS(2261), + [aux_sym_set_env_token1] = ACTIONS(2261), + [aux_sym_stdin_null_token1] = ACTIONS(2261), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2261), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2261), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2261), + [aux_sym_syslog_facility_token1] = ACTIONS(2261), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2261), + [aux_sym_keep_alive_token1] = ACTIONS(2261), + [aux_sym_tag_token1] = ACTIONS(2261), + [aux_sym_tunnel_token1] = ACTIONS(2263), + [aux_sym_tunnel_device_token1] = ACTIONS(2261), + [aux_sym_update_host_keys_token1] = ACTIONS(2261), + [aux_sym_use_keychain_token1] = ACTIONS(2261), + [aux_sym_use_roaming_token1] = ACTIONS(2261), + [aux_sym_user_token1] = ACTIONS(2263), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2261), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2261), + [aux_sym_visual_host_key_token1] = ACTIONS(2261), + [aux_sym_xauth_location_token1] = ACTIONS(2261), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2260), - [anon_sym_DQUOTE] = ACTIONS(2258), - [aux_sym_match_token1] = ACTIONS(2258), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2258), - [aux_sym_address_family_token1] = ACTIONS(2258), - [aux_sym_batch_mode_token1] = ACTIONS(2258), - [aux_sym_bind_address_token1] = ACTIONS(2258), - [aux_sym_bind_interface_token1] = ACTIONS(2258), - [aux_sym_canonical_domains_token1] = ACTIONS(2258), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2258), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2258), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2258), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2258), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2258), - [aux_sym_certificate_file_token1] = ACTIONS(2258), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2258), - [aux_sym_channel_timeout_token1] = ACTIONS(2258), - [aux_sym_check_host_ip_token1] = ACTIONS(2258), - [aux_sym_ciphers_token1] = ACTIONS(2258), - [aux_sym_cipher_token1] = ACTIONS(2260), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2258), - [aux_sym_compression_token1] = ACTIONS(2258), - [aux_sym_connection_attempts_token1] = ACTIONS(2258), - [aux_sym_connect_timeout_token1] = ACTIONS(2258), - [aux_sym_control_master_token1] = ACTIONS(2258), - [aux_sym_control_path_token1] = ACTIONS(2258), - [aux_sym_control_persist_token1] = ACTIONS(2258), - [aux_sym_dynamic_forward_token1] = ACTIONS(2258), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2258), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2258), - [aux_sym_escape_char_token1] = ACTIONS(2258), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2258), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2258), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2258), - [aux_sym_forward_agent_token1] = ACTIONS(2258), - [aux_sym_forward_x11_token1] = ACTIONS(2260), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2258), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2258), - [aux_sym_gateway_ports_token1] = ACTIONS(2258), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2258), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2258), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2258), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2258), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2258), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2258), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2258), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2258), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2258), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2258), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2258), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2258), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2258), - [aux_sym_host_key_alias_token1] = ACTIONS(2258), - [aux_sym_hostname_token1] = ACTIONS(2258), - [aux_sym_identities_only_token1] = ACTIONS(2258), - [aux_sym_identity_agent_token1] = ACTIONS(2258), - [aux_sym_identity_file_token1] = ACTIONS(2258), - [aux_sym_ignore_unknown_token1] = ACTIONS(2258), - [aux_sym_include_token1] = ACTIONS(2258), - [aux_sym_ip_qos_token1] = ACTIONS(2258), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2258), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2258), - [aux_sym_kex_algorithms_token1] = ACTIONS(2258), - [aux_sym_known_hosts_command_token1] = ACTIONS(2258), - [aux_sym_local_command_token1] = ACTIONS(2258), - [aux_sym_local_forward_token1] = ACTIONS(2258), - [aux_sym_log_level_token1] = ACTIONS(2258), - [aux_sym_log_verbose_token1] = ACTIONS(2258), - [aux_sym_macs_token1] = ACTIONS(2258), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2258), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2258), - [aux_sym_password_authentication_token1] = ACTIONS(2258), - [aux_sym_permit_local_command_token1] = ACTIONS(2258), - [aux_sym_permit_remote_open_token1] = ACTIONS(2258), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2258), - [aux_sym_port_token1] = ACTIONS(2258), - [aux_sym_preferred_authentications_token1] = ACTIONS(2258), - [aux_sym_protocol_token1] = ACTIONS(2258), - [aux_sym_proxy_command_token1] = ACTIONS(2258), - [aux_sym_proxy_jump_token1] = ACTIONS(2258), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2258), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2258), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2258), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2258), - [aux_sym_rekey_limit_token1] = ACTIONS(2258), - [aux_sym_remote_command_token1] = ACTIONS(2258), - [aux_sym_remote_forward_token1] = ACTIONS(2258), - [aux_sym_request_tty_token1] = ACTIONS(2258), - [aux_sym_required_rsa_size_token1] = ACTIONS(2258), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2258), - [aux_sym_security_key_provider_token1] = ACTIONS(2258), - [aux_sym_send_env_token1] = ACTIONS(2258), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2258), - [aux_sym_server_alive_interval_token1] = ACTIONS(2258), - [aux_sym_session_type_token1] = ACTIONS(2258), - [aux_sym_set_env_token1] = ACTIONS(2258), - [aux_sym_stdin_null_token1] = ACTIONS(2258), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2258), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2258), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2258), - [aux_sym_syslog_facility_token1] = ACTIONS(2258), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2258), - [aux_sym_keep_alive_token1] = ACTIONS(2258), - [aux_sym_tag_token1] = ACTIONS(2258), - [aux_sym_tunnel_token1] = ACTIONS(2260), - [aux_sym_tunnel_device_token1] = ACTIONS(2258), - [aux_sym_update_host_keys_token1] = ACTIONS(2258), - [aux_sym_use_keychain_token1] = ACTIONS(2258), - [aux_sym_use_roaming_token1] = ACTIONS(2258), - [aux_sym_user_token1] = ACTIONS(2260), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2258), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2258), - [aux_sym_visual_host_key_token1] = ACTIONS(2258), - [aux_sym_xauth_location_token1] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(2265), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(2269), + [aux_sym_match_token1] = ACTIONS(2265), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2265), + [aux_sym_address_family_token1] = ACTIONS(2265), + [aux_sym_batch_mode_token1] = ACTIONS(2265), + [aux_sym_bind_address_token1] = ACTIONS(2265), + [aux_sym_bind_interface_token1] = ACTIONS(2265), + [aux_sym_canonical_domains_token1] = ACTIONS(2265), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2265), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2265), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2265), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2265), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2265), + [aux_sym_certificate_file_token1] = ACTIONS(2265), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2265), + [aux_sym_channel_timeout_token1] = ACTIONS(2265), + [aux_sym_check_host_ip_token1] = ACTIONS(2265), + [aux_sym_ciphers_token1] = ACTIONS(2265), + [aux_sym_cipher_token1] = ACTIONS(2267), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2265), + [aux_sym_compression_token1] = ACTIONS(2265), + [aux_sym_connection_attempts_token1] = ACTIONS(2265), + [aux_sym_connect_timeout_token1] = ACTIONS(2265), + [aux_sym_control_master_token1] = ACTIONS(2265), + [aux_sym_control_path_token1] = ACTIONS(2265), + [aux_sym_control_persist_token1] = ACTIONS(2265), + [aux_sym_dynamic_forward_token1] = ACTIONS(2265), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2265), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2265), + [aux_sym_escape_char_token1] = ACTIONS(2265), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2265), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2265), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2265), + [aux_sym_forward_agent_token1] = ACTIONS(2265), + [aux_sym_forward_x11_token1] = ACTIONS(2267), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2265), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2265), + [aux_sym_gateway_ports_token1] = ACTIONS(2265), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2265), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2265), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2265), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2265), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2265), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2265), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2265), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2265), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2265), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2265), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2265), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2265), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2265), + [aux_sym_host_key_alias_token1] = ACTIONS(2265), + [aux_sym_hostname_token1] = ACTIONS(2265), + [aux_sym_identities_only_token1] = ACTIONS(2265), + [aux_sym_identity_agent_token1] = ACTIONS(2265), + [aux_sym_identity_file_token1] = ACTIONS(2265), + [aux_sym_ignore_unknown_token1] = ACTIONS(2265), + [aux_sym_include_token1] = ACTIONS(2265), + [aux_sym_ip_qos_token1] = ACTIONS(2265), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2265), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2265), + [aux_sym_kex_algorithms_token1] = ACTIONS(2265), + [aux_sym_known_hosts_command_token1] = ACTIONS(2265), + [aux_sym_local_command_token1] = ACTIONS(2265), + [aux_sym_local_forward_token1] = ACTIONS(2265), + [aux_sym_log_level_token1] = ACTIONS(2265), + [aux_sym_log_verbose_token1] = ACTIONS(2265), + [aux_sym_macs_token1] = ACTIONS(2265), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2265), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2265), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2265), + [aux_sym_password_authentication_token1] = ACTIONS(2265), + [aux_sym_permit_local_command_token1] = ACTIONS(2265), + [aux_sym_permit_remote_open_token1] = ACTIONS(2265), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2265), + [aux_sym_port_token1] = ACTIONS(2265), + [aux_sym_preferred_authentications_token1] = ACTIONS(2265), + [aux_sym_protocol_token1] = ACTIONS(2265), + [aux_sym_proxy_command_token1] = ACTIONS(2265), + [aux_sym_proxy_jump_token1] = ACTIONS(2265), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2265), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2265), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2265), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2265), + [aux_sym_rekey_limit_token1] = ACTIONS(2265), + [aux_sym_remote_command_token1] = ACTIONS(2265), + [aux_sym_remote_forward_token1] = ACTIONS(2265), + [aux_sym_request_tty_token1] = ACTIONS(2265), + [aux_sym_required_rsa_size_token1] = ACTIONS(2265), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2265), + [aux_sym_security_key_provider_token1] = ACTIONS(2265), + [aux_sym_send_env_token1] = ACTIONS(2265), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2265), + [aux_sym_server_alive_interval_token1] = ACTIONS(2265), + [aux_sym_session_type_token1] = ACTIONS(2265), + [aux_sym_set_env_token1] = ACTIONS(2265), + [aux_sym_stdin_null_token1] = ACTIONS(2265), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2265), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2265), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2265), + [aux_sym_syslog_facility_token1] = ACTIONS(2265), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2265), + [aux_sym_keep_alive_token1] = ACTIONS(2265), + [aux_sym_tag_token1] = ACTIONS(2265), + [aux_sym_tunnel_token1] = ACTIONS(2267), + [aux_sym_tunnel_device_token1] = ACTIONS(2265), + [aux_sym_update_host_keys_token1] = ACTIONS(2265), + [aux_sym_use_keychain_token1] = ACTIONS(2265), + [aux_sym_use_roaming_token1] = ACTIONS(2265), + [aux_sym_user_token1] = ACTIONS(2267), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2265), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2265), + [aux_sym_visual_host_key_token1] = ACTIONS(2265), + [aux_sym_xauth_location_token1] = ACTIONS(2265), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2264), - [anon_sym_DQUOTE] = ACTIONS(2266), - [aux_sym_match_token1] = ACTIONS(2262), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2262), - [aux_sym_address_family_token1] = ACTIONS(2262), - [aux_sym_batch_mode_token1] = ACTIONS(2262), - [aux_sym_bind_address_token1] = ACTIONS(2262), - [aux_sym_bind_interface_token1] = ACTIONS(2262), - [aux_sym_canonical_domains_token1] = ACTIONS(2262), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2262), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2262), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2262), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2262), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2262), - [aux_sym_certificate_file_token1] = ACTIONS(2262), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2262), - [aux_sym_channel_timeout_token1] = ACTIONS(2262), - [aux_sym_check_host_ip_token1] = ACTIONS(2262), - [aux_sym_ciphers_token1] = ACTIONS(2262), - [aux_sym_cipher_token1] = ACTIONS(2264), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2262), - [aux_sym_compression_token1] = ACTIONS(2262), - [aux_sym_connection_attempts_token1] = ACTIONS(2262), - [aux_sym_connect_timeout_token1] = ACTIONS(2262), - [aux_sym_control_master_token1] = ACTIONS(2262), - [aux_sym_control_path_token1] = ACTIONS(2262), - [aux_sym_control_persist_token1] = ACTIONS(2262), - [aux_sym_dynamic_forward_token1] = ACTIONS(2262), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2262), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2262), - [aux_sym_escape_char_token1] = ACTIONS(2262), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2262), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2262), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2262), - [aux_sym_forward_agent_token1] = ACTIONS(2262), - [aux_sym_forward_x11_token1] = ACTIONS(2264), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2262), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2262), - [aux_sym_gateway_ports_token1] = ACTIONS(2262), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2262), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2262), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2262), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2262), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2262), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2262), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2262), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2262), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2262), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2262), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2262), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2262), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2262), - [aux_sym_host_key_alias_token1] = ACTIONS(2262), - [aux_sym_hostname_token1] = ACTIONS(2262), - [aux_sym_identities_only_token1] = ACTIONS(2262), - [aux_sym_identity_agent_token1] = ACTIONS(2262), - [aux_sym_identity_file_token1] = ACTIONS(2262), - [aux_sym_ignore_unknown_token1] = ACTIONS(2262), - [aux_sym_include_token1] = ACTIONS(2262), - [aux_sym_ip_qos_token1] = ACTIONS(2262), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2262), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2262), - [aux_sym_kex_algorithms_token1] = ACTIONS(2262), - [aux_sym_known_hosts_command_token1] = ACTIONS(2262), - [aux_sym_local_command_token1] = ACTIONS(2262), - [aux_sym_local_forward_token1] = ACTIONS(2262), - [aux_sym_log_level_token1] = ACTIONS(2262), - [aux_sym_log_verbose_token1] = ACTIONS(2262), - [aux_sym_macs_token1] = ACTIONS(2262), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2262), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2262), - [aux_sym_password_authentication_token1] = ACTIONS(2262), - [aux_sym_permit_local_command_token1] = ACTIONS(2262), - [aux_sym_permit_remote_open_token1] = ACTIONS(2262), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2262), - [aux_sym_port_token1] = ACTIONS(2262), - [aux_sym_preferred_authentications_token1] = ACTIONS(2262), - [aux_sym_protocol_token1] = ACTIONS(2262), - [aux_sym_proxy_command_token1] = ACTIONS(2262), - [aux_sym_proxy_jump_token1] = ACTIONS(2262), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2262), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2262), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2262), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2262), - [aux_sym_rekey_limit_token1] = ACTIONS(2262), - [aux_sym_remote_command_token1] = ACTIONS(2262), - [aux_sym_remote_forward_token1] = ACTIONS(2262), - [aux_sym_request_tty_token1] = ACTIONS(2262), - [aux_sym_required_rsa_size_token1] = ACTIONS(2262), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2262), - [aux_sym_security_key_provider_token1] = ACTIONS(2262), - [aux_sym_send_env_token1] = ACTIONS(2262), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2262), - [aux_sym_server_alive_interval_token1] = ACTIONS(2262), - [aux_sym_session_type_token1] = ACTIONS(2262), - [aux_sym_set_env_token1] = ACTIONS(2262), - [aux_sym_stdin_null_token1] = ACTIONS(2262), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2262), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2262), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2262), - [aux_sym_syslog_facility_token1] = ACTIONS(2262), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2262), - [aux_sym_keep_alive_token1] = ACTIONS(2262), - [aux_sym_tag_token1] = ACTIONS(2262), - [aux_sym_tunnel_token1] = ACTIONS(2264), - [aux_sym_tunnel_device_token1] = ACTIONS(2262), - [aux_sym_update_host_keys_token1] = ACTIONS(2262), - [aux_sym_use_keychain_token1] = ACTIONS(2262), - [aux_sym_use_roaming_token1] = ACTIONS(2262), - [aux_sym_user_token1] = ACTIONS(2264), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2262), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2262), - [aux_sym_visual_host_key_token1] = ACTIONS(2262), - [aux_sym_xauth_location_token1] = ACTIONS(2262), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(2275), + [aux_sym_match_token1] = ACTIONS(2271), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2271), + [aux_sym_address_family_token1] = ACTIONS(2271), + [aux_sym_batch_mode_token1] = ACTIONS(2271), + [aux_sym_bind_address_token1] = ACTIONS(2271), + [aux_sym_bind_interface_token1] = ACTIONS(2271), + [aux_sym_canonical_domains_token1] = ACTIONS(2271), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2271), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2271), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2271), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2271), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2271), + [aux_sym_certificate_file_token1] = ACTIONS(2271), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2271), + [aux_sym_channel_timeout_token1] = ACTIONS(2271), + [aux_sym_check_host_ip_token1] = ACTIONS(2271), + [aux_sym_ciphers_token1] = ACTIONS(2271), + [aux_sym_cipher_token1] = ACTIONS(2273), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2271), + [aux_sym_compression_token1] = ACTIONS(2271), + [aux_sym_connection_attempts_token1] = ACTIONS(2271), + [aux_sym_connect_timeout_token1] = ACTIONS(2271), + [aux_sym_control_master_token1] = ACTIONS(2271), + [aux_sym_control_path_token1] = ACTIONS(2271), + [aux_sym_control_persist_token1] = ACTIONS(2271), + [aux_sym_dynamic_forward_token1] = ACTIONS(2271), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2271), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2271), + [aux_sym_escape_char_token1] = ACTIONS(2271), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2271), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2271), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2271), + [aux_sym_forward_agent_token1] = ACTIONS(2271), + [aux_sym_forward_x11_token1] = ACTIONS(2273), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2271), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2271), + [aux_sym_gateway_ports_token1] = ACTIONS(2271), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2271), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2271), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2271), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2271), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2271), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2271), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2271), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2271), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2271), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2271), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2271), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2271), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2271), + [aux_sym_host_key_alias_token1] = ACTIONS(2271), + [aux_sym_hostname_token1] = ACTIONS(2271), + [aux_sym_identities_only_token1] = ACTIONS(2271), + [aux_sym_identity_agent_token1] = ACTIONS(2271), + [aux_sym_identity_file_token1] = ACTIONS(2271), + [aux_sym_ignore_unknown_token1] = ACTIONS(2271), + [aux_sym_include_token1] = ACTIONS(2271), + [aux_sym_ip_qos_token1] = ACTIONS(2271), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2271), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2271), + [aux_sym_kex_algorithms_token1] = ACTIONS(2271), + [aux_sym_known_hosts_command_token1] = ACTIONS(2271), + [aux_sym_local_command_token1] = ACTIONS(2271), + [aux_sym_local_forward_token1] = ACTIONS(2271), + [aux_sym_log_level_token1] = ACTIONS(2271), + [aux_sym_log_verbose_token1] = ACTIONS(2271), + [aux_sym_macs_token1] = ACTIONS(2271), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2271), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2271), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2271), + [aux_sym_password_authentication_token1] = ACTIONS(2271), + [aux_sym_permit_local_command_token1] = ACTIONS(2271), + [aux_sym_permit_remote_open_token1] = ACTIONS(2271), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2271), + [aux_sym_port_token1] = ACTIONS(2271), + [aux_sym_preferred_authentications_token1] = ACTIONS(2271), + [aux_sym_protocol_token1] = ACTIONS(2271), + [aux_sym_proxy_command_token1] = ACTIONS(2271), + [aux_sym_proxy_jump_token1] = ACTIONS(2271), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2271), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2271), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2271), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2271), + [aux_sym_rekey_limit_token1] = ACTIONS(2271), + [aux_sym_remote_command_token1] = ACTIONS(2271), + [aux_sym_remote_forward_token1] = ACTIONS(2271), + [aux_sym_request_tty_token1] = ACTIONS(2271), + [aux_sym_required_rsa_size_token1] = ACTIONS(2271), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2271), + [aux_sym_security_key_provider_token1] = ACTIONS(2271), + [aux_sym_send_env_token1] = ACTIONS(2271), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2271), + [aux_sym_server_alive_interval_token1] = ACTIONS(2271), + [aux_sym_session_type_token1] = ACTIONS(2271), + [aux_sym_set_env_token1] = ACTIONS(2271), + [aux_sym_stdin_null_token1] = ACTIONS(2271), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2271), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2271), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2271), + [aux_sym_syslog_facility_token1] = ACTIONS(2271), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2271), + [aux_sym_keep_alive_token1] = ACTIONS(2271), + [aux_sym_tag_token1] = ACTIONS(2271), + [aux_sym_tunnel_token1] = ACTIONS(2273), + [aux_sym_tunnel_device_token1] = ACTIONS(2271), + [aux_sym_update_host_keys_token1] = ACTIONS(2271), + [aux_sym_use_keychain_token1] = ACTIONS(2271), + [aux_sym_use_roaming_token1] = ACTIONS(2271), + [aux_sym_user_token1] = ACTIONS(2273), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2271), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2271), + [aux_sym_visual_host_key_token1] = ACTIONS(2271), + [aux_sym_xauth_location_token1] = ACTIONS(2271), }, [296] = { - [ts_builtin_sym_end] = ACTIONS(2268), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2270), - [anon_sym_DQUOTE] = ACTIONS(2268), - [aux_sym_match_token1] = ACTIONS(2268), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2268), - [aux_sym_address_family_token1] = ACTIONS(2268), - [aux_sym_batch_mode_token1] = ACTIONS(2268), - [aux_sym_bind_address_token1] = ACTIONS(2268), - [aux_sym_bind_interface_token1] = ACTIONS(2268), - [aux_sym_canonical_domains_token1] = ACTIONS(2268), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2268), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2268), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2268), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2268), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2268), - [aux_sym_certificate_file_token1] = ACTIONS(2268), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2268), - [aux_sym_channel_timeout_token1] = ACTIONS(2268), - [aux_sym_check_host_ip_token1] = ACTIONS(2268), - [aux_sym_ciphers_token1] = ACTIONS(2268), - [aux_sym_cipher_token1] = ACTIONS(2270), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2268), - [aux_sym_compression_token1] = ACTIONS(2268), - [aux_sym_connection_attempts_token1] = ACTIONS(2268), - [aux_sym_connect_timeout_token1] = ACTIONS(2268), - [aux_sym_control_master_token1] = ACTIONS(2268), - [aux_sym_control_path_token1] = ACTIONS(2268), - [aux_sym_control_persist_token1] = ACTIONS(2268), - [aux_sym_dynamic_forward_token1] = ACTIONS(2268), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2268), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2268), - [aux_sym_escape_char_token1] = ACTIONS(2268), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2268), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2268), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2268), - [aux_sym_forward_agent_token1] = ACTIONS(2268), - [aux_sym_forward_x11_token1] = ACTIONS(2270), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2268), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2268), - [aux_sym_gateway_ports_token1] = ACTIONS(2268), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2268), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2268), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2268), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2268), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2268), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2268), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2268), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2268), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2268), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2268), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2268), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2268), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2268), - [aux_sym_host_key_alias_token1] = ACTIONS(2268), - [aux_sym_hostname_token1] = ACTIONS(2268), - [aux_sym_identities_only_token1] = ACTIONS(2268), - [aux_sym_identity_agent_token1] = ACTIONS(2268), - [aux_sym_identity_file_token1] = ACTIONS(2268), - [aux_sym_ignore_unknown_token1] = ACTIONS(2268), - [aux_sym_include_token1] = ACTIONS(2268), - [aux_sym_ip_qos_token1] = ACTIONS(2268), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2268), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2268), - [aux_sym_kex_algorithms_token1] = ACTIONS(2268), - [aux_sym_known_hosts_command_token1] = ACTIONS(2268), - [aux_sym_local_command_token1] = ACTIONS(2268), - [aux_sym_local_forward_token1] = ACTIONS(2268), - [aux_sym_log_level_token1] = ACTIONS(2268), - [aux_sym_log_verbose_token1] = ACTIONS(2268), - [aux_sym_macs_token1] = ACTIONS(2268), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2268), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2268), - [aux_sym_password_authentication_token1] = ACTIONS(2268), - [aux_sym_permit_local_command_token1] = ACTIONS(2268), - [aux_sym_permit_remote_open_token1] = ACTIONS(2268), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2268), - [aux_sym_port_token1] = ACTIONS(2268), - [aux_sym_preferred_authentications_token1] = ACTIONS(2268), - [aux_sym_protocol_token1] = ACTIONS(2268), - [aux_sym_proxy_command_token1] = ACTIONS(2268), - [aux_sym_proxy_jump_token1] = ACTIONS(2268), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2268), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2268), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2268), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2268), - [aux_sym_rekey_limit_token1] = ACTIONS(2268), - [aux_sym_remote_command_token1] = ACTIONS(2268), - [aux_sym_remote_forward_token1] = ACTIONS(2268), - [aux_sym_request_tty_token1] = ACTIONS(2268), - [aux_sym_required_rsa_size_token1] = ACTIONS(2268), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2268), - [aux_sym_security_key_provider_token1] = ACTIONS(2268), - [aux_sym_send_env_token1] = ACTIONS(2268), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2268), - [aux_sym_server_alive_interval_token1] = ACTIONS(2268), - [aux_sym_session_type_token1] = ACTIONS(2268), - [aux_sym_set_env_token1] = ACTIONS(2268), - [aux_sym_stdin_null_token1] = ACTIONS(2268), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2268), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2268), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2268), - [aux_sym_syslog_facility_token1] = ACTIONS(2268), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2268), - [aux_sym_keep_alive_token1] = ACTIONS(2268), - [aux_sym_tag_token1] = ACTIONS(2268), - [aux_sym_tunnel_token1] = ACTIONS(2270), - [aux_sym_tunnel_device_token1] = ACTIONS(2268), - [aux_sym_update_host_keys_token1] = ACTIONS(2268), - [aux_sym_use_keychain_token1] = ACTIONS(2268), - [aux_sym_use_roaming_token1] = ACTIONS(2268), - [aux_sym_user_token1] = ACTIONS(2270), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2268), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2268), - [aux_sym_visual_host_key_token1] = ACTIONS(2268), - [aux_sym_xauth_location_token1] = ACTIONS(2268), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(2277), + [aux_sym_match_token1] = ACTIONS(2277), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2277), + [aux_sym_address_family_token1] = ACTIONS(2277), + [aux_sym_batch_mode_token1] = ACTIONS(2277), + [aux_sym_bind_address_token1] = ACTIONS(2277), + [aux_sym_bind_interface_token1] = ACTIONS(2277), + [aux_sym_canonical_domains_token1] = ACTIONS(2277), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2277), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2277), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2277), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2277), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2277), + [aux_sym_certificate_file_token1] = ACTIONS(2277), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2277), + [aux_sym_channel_timeout_token1] = ACTIONS(2277), + [aux_sym_check_host_ip_token1] = ACTIONS(2277), + [aux_sym_ciphers_token1] = ACTIONS(2277), + [aux_sym_cipher_token1] = ACTIONS(2279), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2277), + [aux_sym_compression_token1] = ACTIONS(2277), + [aux_sym_connection_attempts_token1] = ACTIONS(2277), + [aux_sym_connect_timeout_token1] = ACTIONS(2277), + [aux_sym_control_master_token1] = ACTIONS(2277), + [aux_sym_control_path_token1] = ACTIONS(2277), + [aux_sym_control_persist_token1] = ACTIONS(2277), + [aux_sym_dynamic_forward_token1] = ACTIONS(2277), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2277), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2277), + [aux_sym_escape_char_token1] = ACTIONS(2277), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2277), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2277), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2277), + [aux_sym_forward_agent_token1] = ACTIONS(2277), + [aux_sym_forward_x11_token1] = ACTIONS(2279), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2277), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2277), + [aux_sym_gateway_ports_token1] = ACTIONS(2277), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2277), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2277), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2277), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2277), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2277), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2277), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2277), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2277), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2277), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2277), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2277), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2277), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2277), + [aux_sym_host_key_alias_token1] = ACTIONS(2277), + [aux_sym_hostname_token1] = ACTIONS(2277), + [aux_sym_identities_only_token1] = ACTIONS(2277), + [aux_sym_identity_agent_token1] = ACTIONS(2277), + [aux_sym_identity_file_token1] = ACTIONS(2277), + [aux_sym_ignore_unknown_token1] = ACTIONS(2277), + [aux_sym_include_token1] = ACTIONS(2277), + [aux_sym_ip_qos_token1] = ACTIONS(2277), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2277), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2277), + [aux_sym_kex_algorithms_token1] = ACTIONS(2277), + [aux_sym_known_hosts_command_token1] = ACTIONS(2277), + [aux_sym_local_command_token1] = ACTIONS(2277), + [aux_sym_local_forward_token1] = ACTIONS(2277), + [aux_sym_log_level_token1] = ACTIONS(2277), + [aux_sym_log_verbose_token1] = ACTIONS(2277), + [aux_sym_macs_token1] = ACTIONS(2277), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2277), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2277), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2277), + [aux_sym_password_authentication_token1] = ACTIONS(2277), + [aux_sym_permit_local_command_token1] = ACTIONS(2277), + [aux_sym_permit_remote_open_token1] = ACTIONS(2277), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2277), + [aux_sym_port_token1] = ACTIONS(2277), + [aux_sym_preferred_authentications_token1] = ACTIONS(2277), + [aux_sym_protocol_token1] = ACTIONS(2277), + [aux_sym_proxy_command_token1] = ACTIONS(2277), + [aux_sym_proxy_jump_token1] = ACTIONS(2277), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2277), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2277), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2277), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2277), + [aux_sym_rekey_limit_token1] = ACTIONS(2277), + [aux_sym_remote_command_token1] = ACTIONS(2277), + [aux_sym_remote_forward_token1] = ACTIONS(2277), + [aux_sym_request_tty_token1] = ACTIONS(2277), + [aux_sym_required_rsa_size_token1] = ACTIONS(2277), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2277), + [aux_sym_security_key_provider_token1] = ACTIONS(2277), + [aux_sym_send_env_token1] = ACTIONS(2277), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2277), + [aux_sym_server_alive_interval_token1] = ACTIONS(2277), + [aux_sym_session_type_token1] = ACTIONS(2277), + [aux_sym_set_env_token1] = ACTIONS(2277), + [aux_sym_stdin_null_token1] = ACTIONS(2277), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2277), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2277), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2277), + [aux_sym_syslog_facility_token1] = ACTIONS(2277), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2277), + [aux_sym_keep_alive_token1] = ACTIONS(2277), + [aux_sym_tag_token1] = ACTIONS(2277), + [aux_sym_tunnel_token1] = ACTIONS(2279), + [aux_sym_tunnel_device_token1] = ACTIONS(2277), + [aux_sym_update_host_keys_token1] = ACTIONS(2277), + [aux_sym_use_keychain_token1] = ACTIONS(2277), + [aux_sym_use_roaming_token1] = ACTIONS(2277), + [aux_sym_user_token1] = ACTIONS(2279), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2277), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2277), + [aux_sym_visual_host_key_token1] = ACTIONS(2277), + [aux_sym_xauth_location_token1] = ACTIONS(2277), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2276), - [aux_sym_match_token1] = ACTIONS(2272), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2272), - [aux_sym_address_family_token1] = ACTIONS(2272), - [aux_sym_batch_mode_token1] = ACTIONS(2272), - [aux_sym_bind_address_token1] = ACTIONS(2272), - [aux_sym_bind_interface_token1] = ACTIONS(2272), - [aux_sym_canonical_domains_token1] = ACTIONS(2272), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2272), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2272), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2272), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2272), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2272), - [aux_sym_certificate_file_token1] = ACTIONS(2272), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2272), - [aux_sym_channel_timeout_token1] = ACTIONS(2272), - [aux_sym_check_host_ip_token1] = ACTIONS(2272), - [aux_sym_ciphers_token1] = ACTIONS(2272), - [aux_sym_cipher_token1] = ACTIONS(2274), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2272), - [aux_sym_compression_token1] = ACTIONS(2272), - [aux_sym_connection_attempts_token1] = ACTIONS(2272), - [aux_sym_connect_timeout_token1] = ACTIONS(2272), - [aux_sym_control_master_token1] = ACTIONS(2272), - [aux_sym_control_path_token1] = ACTIONS(2272), - [aux_sym_control_persist_token1] = ACTIONS(2272), - [aux_sym_dynamic_forward_token1] = ACTIONS(2272), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2272), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2272), - [aux_sym_escape_char_token1] = ACTIONS(2272), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2272), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2272), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2272), - [aux_sym_forward_agent_token1] = ACTIONS(2272), - [aux_sym_forward_x11_token1] = ACTIONS(2274), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2272), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2272), - [aux_sym_gateway_ports_token1] = ACTIONS(2272), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2272), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2272), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2272), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2272), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2272), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2272), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2272), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2272), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2272), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2272), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2272), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2272), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2272), - [aux_sym_host_key_alias_token1] = ACTIONS(2272), - [aux_sym_hostname_token1] = ACTIONS(2272), - [aux_sym_identities_only_token1] = ACTIONS(2272), - [aux_sym_identity_agent_token1] = ACTIONS(2272), - [aux_sym_identity_file_token1] = ACTIONS(2272), - [aux_sym_ignore_unknown_token1] = ACTIONS(2272), - [aux_sym_include_token1] = ACTIONS(2272), - [aux_sym_ip_qos_token1] = ACTIONS(2272), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2272), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2272), - [aux_sym_kex_algorithms_token1] = ACTIONS(2272), - [aux_sym_known_hosts_command_token1] = ACTIONS(2272), - [aux_sym_local_command_token1] = ACTIONS(2272), - [aux_sym_local_forward_token1] = ACTIONS(2272), - [aux_sym_log_level_token1] = ACTIONS(2272), - [aux_sym_log_verbose_token1] = ACTIONS(2272), - [aux_sym_macs_token1] = ACTIONS(2272), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2272), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2272), - [aux_sym_password_authentication_token1] = ACTIONS(2272), - [aux_sym_permit_local_command_token1] = ACTIONS(2272), - [aux_sym_permit_remote_open_token1] = ACTIONS(2272), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2272), - [aux_sym_port_token1] = ACTIONS(2272), - [aux_sym_preferred_authentications_token1] = ACTIONS(2272), - [aux_sym_protocol_token1] = ACTIONS(2272), - [aux_sym_proxy_command_token1] = ACTIONS(2272), - [aux_sym_proxy_jump_token1] = ACTIONS(2272), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2272), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2272), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2272), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2272), - [aux_sym_rekey_limit_token1] = ACTIONS(2272), - [aux_sym_remote_command_token1] = ACTIONS(2272), - [aux_sym_remote_forward_token1] = ACTIONS(2272), - [aux_sym_request_tty_token1] = ACTIONS(2272), - [aux_sym_required_rsa_size_token1] = ACTIONS(2272), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2272), - [aux_sym_security_key_provider_token1] = ACTIONS(2272), - [aux_sym_send_env_token1] = ACTIONS(2272), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2272), - [aux_sym_server_alive_interval_token1] = ACTIONS(2272), - [aux_sym_session_type_token1] = ACTIONS(2272), - [aux_sym_set_env_token1] = ACTIONS(2272), - [aux_sym_stdin_null_token1] = ACTIONS(2272), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2272), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2272), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2272), - [aux_sym_syslog_facility_token1] = ACTIONS(2272), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2272), - [aux_sym_keep_alive_token1] = ACTIONS(2272), - [aux_sym_tag_token1] = ACTIONS(2272), - [aux_sym_tunnel_token1] = ACTIONS(2274), - [aux_sym_tunnel_device_token1] = ACTIONS(2272), - [aux_sym_update_host_keys_token1] = ACTIONS(2272), - [aux_sym_use_keychain_token1] = ACTIONS(2272), - [aux_sym_use_roaming_token1] = ACTIONS(2272), - [aux_sym_user_token1] = ACTIONS(2274), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2272), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2272), - [aux_sym_visual_host_key_token1] = ACTIONS(2272), - [aux_sym_xauth_location_token1] = ACTIONS(2272), + [ts_builtin_sym_end] = ACTIONS(2281), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(2285), + [aux_sym_match_token1] = ACTIONS(2281), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2281), + [aux_sym_address_family_token1] = ACTIONS(2281), + [aux_sym_batch_mode_token1] = ACTIONS(2281), + [aux_sym_bind_address_token1] = ACTIONS(2281), + [aux_sym_bind_interface_token1] = ACTIONS(2281), + [aux_sym_canonical_domains_token1] = ACTIONS(2281), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2281), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2281), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2281), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2281), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2281), + [aux_sym_certificate_file_token1] = ACTIONS(2281), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2281), + [aux_sym_channel_timeout_token1] = ACTIONS(2281), + [aux_sym_check_host_ip_token1] = ACTIONS(2281), + [aux_sym_ciphers_token1] = ACTIONS(2281), + [aux_sym_cipher_token1] = ACTIONS(2283), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2281), + [aux_sym_compression_token1] = ACTIONS(2281), + [aux_sym_connection_attempts_token1] = ACTIONS(2281), + [aux_sym_connect_timeout_token1] = ACTIONS(2281), + [aux_sym_control_master_token1] = ACTIONS(2281), + [aux_sym_control_path_token1] = ACTIONS(2281), + [aux_sym_control_persist_token1] = ACTIONS(2281), + [aux_sym_dynamic_forward_token1] = ACTIONS(2281), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2281), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2281), + [aux_sym_escape_char_token1] = ACTIONS(2281), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2281), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2281), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2281), + [aux_sym_forward_agent_token1] = ACTIONS(2281), + [aux_sym_forward_x11_token1] = ACTIONS(2283), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2281), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2281), + [aux_sym_gateway_ports_token1] = ACTIONS(2281), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2281), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2281), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2281), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2281), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2281), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2281), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2281), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2281), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2281), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2281), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2281), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2281), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2281), + [aux_sym_host_key_alias_token1] = ACTIONS(2281), + [aux_sym_hostname_token1] = ACTIONS(2281), + [aux_sym_identities_only_token1] = ACTIONS(2281), + [aux_sym_identity_agent_token1] = ACTIONS(2281), + [aux_sym_identity_file_token1] = ACTIONS(2281), + [aux_sym_ignore_unknown_token1] = ACTIONS(2281), + [aux_sym_include_token1] = ACTIONS(2281), + [aux_sym_ip_qos_token1] = ACTIONS(2281), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2281), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2281), + [aux_sym_kex_algorithms_token1] = ACTIONS(2281), + [aux_sym_known_hosts_command_token1] = ACTIONS(2281), + [aux_sym_local_command_token1] = ACTIONS(2281), + [aux_sym_local_forward_token1] = ACTIONS(2281), + [aux_sym_log_level_token1] = ACTIONS(2281), + [aux_sym_log_verbose_token1] = ACTIONS(2281), + [aux_sym_macs_token1] = ACTIONS(2281), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2281), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2281), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2281), + [aux_sym_password_authentication_token1] = ACTIONS(2281), + [aux_sym_permit_local_command_token1] = ACTIONS(2281), + [aux_sym_permit_remote_open_token1] = ACTIONS(2281), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2281), + [aux_sym_port_token1] = ACTIONS(2281), + [aux_sym_preferred_authentications_token1] = ACTIONS(2281), + [aux_sym_protocol_token1] = ACTIONS(2281), + [aux_sym_proxy_command_token1] = ACTIONS(2281), + [aux_sym_proxy_jump_token1] = ACTIONS(2281), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2281), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2281), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2281), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2281), + [aux_sym_rekey_limit_token1] = ACTIONS(2281), + [aux_sym_remote_command_token1] = ACTIONS(2281), + [aux_sym_remote_forward_token1] = ACTIONS(2281), + [aux_sym_request_tty_token1] = ACTIONS(2281), + [aux_sym_required_rsa_size_token1] = ACTIONS(2281), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2281), + [aux_sym_security_key_provider_token1] = ACTIONS(2281), + [aux_sym_send_env_token1] = ACTIONS(2281), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2281), + [aux_sym_server_alive_interval_token1] = ACTIONS(2281), + [aux_sym_session_type_token1] = ACTIONS(2281), + [aux_sym_set_env_token1] = ACTIONS(2281), + [aux_sym_stdin_null_token1] = ACTIONS(2281), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2281), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2281), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2281), + [aux_sym_syslog_facility_token1] = ACTIONS(2281), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2281), + [aux_sym_keep_alive_token1] = ACTIONS(2281), + [aux_sym_tag_token1] = ACTIONS(2281), + [aux_sym_tunnel_token1] = ACTIONS(2283), + [aux_sym_tunnel_device_token1] = ACTIONS(2281), + [aux_sym_update_host_keys_token1] = ACTIONS(2281), + [aux_sym_use_keychain_token1] = ACTIONS(2281), + [aux_sym_use_roaming_token1] = ACTIONS(2281), + [aux_sym_user_token1] = ACTIONS(2283), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2281), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2281), + [aux_sym_visual_host_key_token1] = ACTIONS(2281), + [aux_sym_xauth_location_token1] = ACTIONS(2281), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2282), - [aux_sym_match_token1] = ACTIONS(2278), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2278), - [aux_sym_address_family_token1] = ACTIONS(2278), - [aux_sym_batch_mode_token1] = ACTIONS(2278), - [aux_sym_bind_address_token1] = ACTIONS(2278), - [aux_sym_bind_interface_token1] = ACTIONS(2278), - [aux_sym_canonical_domains_token1] = ACTIONS(2278), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2278), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2278), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2278), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2278), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2278), - [aux_sym_certificate_file_token1] = ACTIONS(2278), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2278), - [aux_sym_channel_timeout_token1] = ACTIONS(2278), - [aux_sym_check_host_ip_token1] = ACTIONS(2278), - [aux_sym_ciphers_token1] = ACTIONS(2278), - [aux_sym_cipher_token1] = ACTIONS(2280), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2278), - [aux_sym_compression_token1] = ACTIONS(2278), - [aux_sym_connection_attempts_token1] = ACTIONS(2278), - [aux_sym_connect_timeout_token1] = ACTIONS(2278), - [aux_sym_control_master_token1] = ACTIONS(2278), - [aux_sym_control_path_token1] = ACTIONS(2278), - [aux_sym_control_persist_token1] = ACTIONS(2278), - [aux_sym_dynamic_forward_token1] = ACTIONS(2278), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2278), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2278), - [aux_sym_escape_char_token1] = ACTIONS(2278), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2278), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2278), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2278), - [aux_sym_forward_agent_token1] = ACTIONS(2278), - [aux_sym_forward_x11_token1] = ACTIONS(2280), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2278), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2278), - [aux_sym_gateway_ports_token1] = ACTIONS(2278), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2278), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2278), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2278), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2278), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2278), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2278), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2278), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2278), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2278), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2278), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2278), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2278), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2278), - [aux_sym_host_key_alias_token1] = ACTIONS(2278), - [aux_sym_hostname_token1] = ACTIONS(2278), - [aux_sym_identities_only_token1] = ACTIONS(2278), - [aux_sym_identity_agent_token1] = ACTIONS(2278), - [aux_sym_identity_file_token1] = ACTIONS(2278), - [aux_sym_ignore_unknown_token1] = ACTIONS(2278), - [aux_sym_include_token1] = ACTIONS(2278), - [aux_sym_ip_qos_token1] = ACTIONS(2278), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2278), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2278), - [aux_sym_kex_algorithms_token1] = ACTIONS(2278), - [aux_sym_known_hosts_command_token1] = ACTIONS(2278), - [aux_sym_local_command_token1] = ACTIONS(2278), - [aux_sym_local_forward_token1] = ACTIONS(2278), - [aux_sym_log_level_token1] = ACTIONS(2278), - [aux_sym_log_verbose_token1] = ACTIONS(2278), - [aux_sym_macs_token1] = ACTIONS(2278), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2278), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2278), - [aux_sym_password_authentication_token1] = ACTIONS(2278), - [aux_sym_permit_local_command_token1] = ACTIONS(2278), - [aux_sym_permit_remote_open_token1] = ACTIONS(2278), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2278), - [aux_sym_port_token1] = ACTIONS(2278), - [aux_sym_preferred_authentications_token1] = ACTIONS(2278), - [aux_sym_protocol_token1] = ACTIONS(2278), - [aux_sym_proxy_command_token1] = ACTIONS(2278), - [aux_sym_proxy_jump_token1] = ACTIONS(2278), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2278), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2278), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2278), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2278), - [aux_sym_rekey_limit_token1] = ACTIONS(2278), - [aux_sym_remote_command_token1] = ACTIONS(2278), - [aux_sym_remote_forward_token1] = ACTIONS(2278), - [aux_sym_request_tty_token1] = ACTIONS(2278), - [aux_sym_required_rsa_size_token1] = ACTIONS(2278), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2278), - [aux_sym_security_key_provider_token1] = ACTIONS(2278), - [aux_sym_send_env_token1] = ACTIONS(2278), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2278), - [aux_sym_server_alive_interval_token1] = ACTIONS(2278), - [aux_sym_session_type_token1] = ACTIONS(2278), - [aux_sym_set_env_token1] = ACTIONS(2278), - [aux_sym_stdin_null_token1] = ACTIONS(2278), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2278), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2278), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2278), - [aux_sym_syslog_facility_token1] = ACTIONS(2278), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2278), - [aux_sym_keep_alive_token1] = ACTIONS(2278), - [aux_sym_tag_token1] = ACTIONS(2278), - [aux_sym_tunnel_token1] = ACTIONS(2280), - [aux_sym_tunnel_device_token1] = ACTIONS(2278), - [aux_sym_update_host_keys_token1] = ACTIONS(2278), - [aux_sym_use_keychain_token1] = ACTIONS(2278), - [aux_sym_use_roaming_token1] = ACTIONS(2278), - [aux_sym_user_token1] = ACTIONS(2280), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2278), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2278), - [aux_sym_visual_host_key_token1] = ACTIONS(2278), - [aux_sym_xauth_location_token1] = ACTIONS(2278), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(2287), + [aux_sym_match_token1] = ACTIONS(2287), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2287), + [aux_sym_address_family_token1] = ACTIONS(2287), + [aux_sym_batch_mode_token1] = ACTIONS(2287), + [aux_sym_bind_address_token1] = ACTIONS(2287), + [aux_sym_bind_interface_token1] = ACTIONS(2287), + [aux_sym_canonical_domains_token1] = ACTIONS(2287), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2287), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2287), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2287), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2287), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2287), + [aux_sym_certificate_file_token1] = ACTIONS(2287), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2287), + [aux_sym_channel_timeout_token1] = ACTIONS(2287), + [aux_sym_check_host_ip_token1] = ACTIONS(2287), + [aux_sym_ciphers_token1] = ACTIONS(2287), + [aux_sym_cipher_token1] = ACTIONS(2289), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2287), + [aux_sym_compression_token1] = ACTIONS(2287), + [aux_sym_connection_attempts_token1] = ACTIONS(2287), + [aux_sym_connect_timeout_token1] = ACTIONS(2287), + [aux_sym_control_master_token1] = ACTIONS(2287), + [aux_sym_control_path_token1] = ACTIONS(2287), + [aux_sym_control_persist_token1] = ACTIONS(2287), + [aux_sym_dynamic_forward_token1] = ACTIONS(2287), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2287), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2287), + [aux_sym_escape_char_token1] = ACTIONS(2287), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2287), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2287), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2287), + [aux_sym_forward_agent_token1] = ACTIONS(2287), + [aux_sym_forward_x11_token1] = ACTIONS(2289), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2287), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2287), + [aux_sym_gateway_ports_token1] = ACTIONS(2287), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2287), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2287), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2287), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2287), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2287), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2287), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2287), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2287), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2287), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2287), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2287), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2287), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2287), + [aux_sym_host_key_alias_token1] = ACTIONS(2287), + [aux_sym_hostname_token1] = ACTIONS(2287), + [aux_sym_identities_only_token1] = ACTIONS(2287), + [aux_sym_identity_agent_token1] = ACTIONS(2287), + [aux_sym_identity_file_token1] = ACTIONS(2287), + [aux_sym_ignore_unknown_token1] = ACTIONS(2287), + [aux_sym_include_token1] = ACTIONS(2287), + [aux_sym_ip_qos_token1] = ACTIONS(2287), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2287), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2287), + [aux_sym_kex_algorithms_token1] = ACTIONS(2287), + [aux_sym_known_hosts_command_token1] = ACTIONS(2287), + [aux_sym_local_command_token1] = ACTIONS(2287), + [aux_sym_local_forward_token1] = ACTIONS(2287), + [aux_sym_log_level_token1] = ACTIONS(2287), + [aux_sym_log_verbose_token1] = ACTIONS(2287), + [aux_sym_macs_token1] = ACTIONS(2287), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2287), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2287), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2287), + [aux_sym_password_authentication_token1] = ACTIONS(2287), + [aux_sym_permit_local_command_token1] = ACTIONS(2287), + [aux_sym_permit_remote_open_token1] = ACTIONS(2287), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2287), + [aux_sym_port_token1] = ACTIONS(2287), + [aux_sym_preferred_authentications_token1] = ACTIONS(2287), + [aux_sym_protocol_token1] = ACTIONS(2287), + [aux_sym_proxy_command_token1] = ACTIONS(2287), + [aux_sym_proxy_jump_token1] = ACTIONS(2287), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2287), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2287), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2287), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2287), + [aux_sym_rekey_limit_token1] = ACTIONS(2287), + [aux_sym_remote_command_token1] = ACTIONS(2287), + [aux_sym_remote_forward_token1] = ACTIONS(2287), + [aux_sym_request_tty_token1] = ACTIONS(2287), + [aux_sym_required_rsa_size_token1] = ACTIONS(2287), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2287), + [aux_sym_security_key_provider_token1] = ACTIONS(2287), + [aux_sym_send_env_token1] = ACTIONS(2287), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2287), + [aux_sym_server_alive_interval_token1] = ACTIONS(2287), + [aux_sym_session_type_token1] = ACTIONS(2287), + [aux_sym_set_env_token1] = ACTIONS(2287), + [aux_sym_stdin_null_token1] = ACTIONS(2287), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2287), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2287), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2287), + [aux_sym_syslog_facility_token1] = ACTIONS(2287), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2287), + [aux_sym_keep_alive_token1] = ACTIONS(2287), + [aux_sym_tag_token1] = ACTIONS(2287), + [aux_sym_tunnel_token1] = ACTIONS(2289), + [aux_sym_tunnel_device_token1] = ACTIONS(2287), + [aux_sym_update_host_keys_token1] = ACTIONS(2287), + [aux_sym_use_keychain_token1] = ACTIONS(2287), + [aux_sym_use_roaming_token1] = ACTIONS(2287), + [aux_sym_user_token1] = ACTIONS(2289), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2287), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2287), + [aux_sym_visual_host_key_token1] = ACTIONS(2287), + [aux_sym_xauth_location_token1] = ACTIONS(2287), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(2284), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2286), - [anon_sym_DQUOTE] = ACTIONS(2284), - [aux_sym_match_token1] = ACTIONS(2284), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2284), - [aux_sym_address_family_token1] = ACTIONS(2284), - [aux_sym_batch_mode_token1] = ACTIONS(2284), - [aux_sym_bind_address_token1] = ACTIONS(2284), - [aux_sym_bind_interface_token1] = ACTIONS(2284), - [aux_sym_canonical_domains_token1] = ACTIONS(2284), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2284), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2284), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2284), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2284), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2284), - [aux_sym_certificate_file_token1] = ACTIONS(2284), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2284), - [aux_sym_channel_timeout_token1] = ACTIONS(2284), - [aux_sym_check_host_ip_token1] = ACTIONS(2284), - [aux_sym_ciphers_token1] = ACTIONS(2284), - [aux_sym_cipher_token1] = ACTIONS(2286), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2284), - [aux_sym_compression_token1] = ACTIONS(2284), - [aux_sym_connection_attempts_token1] = ACTIONS(2284), - [aux_sym_connect_timeout_token1] = ACTIONS(2284), - [aux_sym_control_master_token1] = ACTIONS(2284), - [aux_sym_control_path_token1] = ACTIONS(2284), - [aux_sym_control_persist_token1] = ACTIONS(2284), - [aux_sym_dynamic_forward_token1] = ACTIONS(2284), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2284), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2284), - [aux_sym_escape_char_token1] = ACTIONS(2284), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2284), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2284), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2284), - [aux_sym_forward_agent_token1] = ACTIONS(2284), - [aux_sym_forward_x11_token1] = ACTIONS(2286), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2284), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2284), - [aux_sym_gateway_ports_token1] = ACTIONS(2284), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2284), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2284), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2284), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2284), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2284), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2284), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2284), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2284), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2284), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2284), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2284), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2284), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2284), - [aux_sym_host_key_alias_token1] = ACTIONS(2284), - [aux_sym_hostname_token1] = ACTIONS(2284), - [aux_sym_identities_only_token1] = ACTIONS(2284), - [aux_sym_identity_agent_token1] = ACTIONS(2284), - [aux_sym_identity_file_token1] = ACTIONS(2284), - [aux_sym_ignore_unknown_token1] = ACTIONS(2284), - [aux_sym_include_token1] = ACTIONS(2284), - [aux_sym_ip_qos_token1] = ACTIONS(2284), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2284), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2284), - [aux_sym_kex_algorithms_token1] = ACTIONS(2284), - [aux_sym_known_hosts_command_token1] = ACTIONS(2284), - [aux_sym_local_command_token1] = ACTIONS(2284), - [aux_sym_local_forward_token1] = ACTIONS(2284), - [aux_sym_log_level_token1] = ACTIONS(2284), - [aux_sym_log_verbose_token1] = ACTIONS(2284), - [aux_sym_macs_token1] = ACTIONS(2284), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2284), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2284), - [aux_sym_password_authentication_token1] = ACTIONS(2284), - [aux_sym_permit_local_command_token1] = ACTIONS(2284), - [aux_sym_permit_remote_open_token1] = ACTIONS(2284), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2284), - [aux_sym_port_token1] = ACTIONS(2284), - [aux_sym_preferred_authentications_token1] = ACTIONS(2284), - [aux_sym_protocol_token1] = ACTIONS(2284), - [aux_sym_proxy_command_token1] = ACTIONS(2284), - [aux_sym_proxy_jump_token1] = ACTIONS(2284), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2284), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2284), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2284), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2284), - [aux_sym_rekey_limit_token1] = ACTIONS(2284), - [aux_sym_remote_command_token1] = ACTIONS(2284), - [aux_sym_remote_forward_token1] = ACTIONS(2284), - [aux_sym_request_tty_token1] = ACTIONS(2284), - [aux_sym_required_rsa_size_token1] = ACTIONS(2284), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2284), - [aux_sym_security_key_provider_token1] = ACTIONS(2284), - [aux_sym_send_env_token1] = ACTIONS(2284), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2284), - [aux_sym_server_alive_interval_token1] = ACTIONS(2284), - [aux_sym_session_type_token1] = ACTIONS(2284), - [aux_sym_set_env_token1] = ACTIONS(2284), - [aux_sym_stdin_null_token1] = ACTIONS(2284), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2284), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2284), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2284), - [aux_sym_syslog_facility_token1] = ACTIONS(2284), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2284), - [aux_sym_keep_alive_token1] = ACTIONS(2284), - [aux_sym_tag_token1] = ACTIONS(2284), - [aux_sym_tunnel_token1] = ACTIONS(2286), - [aux_sym_tunnel_device_token1] = ACTIONS(2284), - [aux_sym_update_host_keys_token1] = ACTIONS(2284), - [aux_sym_use_keychain_token1] = ACTIONS(2284), - [aux_sym_use_roaming_token1] = ACTIONS(2284), - [aux_sym_user_token1] = ACTIONS(2286), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2284), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2284), - [aux_sym_visual_host_key_token1] = ACTIONS(2284), - [aux_sym_xauth_location_token1] = ACTIONS(2284), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(2295), + [aux_sym_match_token1] = ACTIONS(2291), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2291), + [aux_sym_address_family_token1] = ACTIONS(2291), + [aux_sym_batch_mode_token1] = ACTIONS(2291), + [aux_sym_bind_address_token1] = ACTIONS(2291), + [aux_sym_bind_interface_token1] = ACTIONS(2291), + [aux_sym_canonical_domains_token1] = ACTIONS(2291), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2291), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2291), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2291), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2291), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2291), + [aux_sym_certificate_file_token1] = ACTIONS(2291), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2291), + [aux_sym_channel_timeout_token1] = ACTIONS(2291), + [aux_sym_check_host_ip_token1] = ACTIONS(2291), + [aux_sym_ciphers_token1] = ACTIONS(2291), + [aux_sym_cipher_token1] = ACTIONS(2293), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2291), + [aux_sym_compression_token1] = ACTIONS(2291), + [aux_sym_connection_attempts_token1] = ACTIONS(2291), + [aux_sym_connect_timeout_token1] = ACTIONS(2291), + [aux_sym_control_master_token1] = ACTIONS(2291), + [aux_sym_control_path_token1] = ACTIONS(2291), + [aux_sym_control_persist_token1] = ACTIONS(2291), + [aux_sym_dynamic_forward_token1] = ACTIONS(2291), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2291), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2291), + [aux_sym_escape_char_token1] = ACTIONS(2291), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2291), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2291), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2291), + [aux_sym_forward_agent_token1] = ACTIONS(2291), + [aux_sym_forward_x11_token1] = ACTIONS(2293), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2291), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2291), + [aux_sym_gateway_ports_token1] = ACTIONS(2291), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2291), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2291), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2291), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2291), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2291), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2291), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2291), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2291), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2291), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2291), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2291), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2291), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2291), + [aux_sym_host_key_alias_token1] = ACTIONS(2291), + [aux_sym_hostname_token1] = ACTIONS(2291), + [aux_sym_identities_only_token1] = ACTIONS(2291), + [aux_sym_identity_agent_token1] = ACTIONS(2291), + [aux_sym_identity_file_token1] = ACTIONS(2291), + [aux_sym_ignore_unknown_token1] = ACTIONS(2291), + [aux_sym_include_token1] = ACTIONS(2291), + [aux_sym_ip_qos_token1] = ACTIONS(2291), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2291), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2291), + [aux_sym_kex_algorithms_token1] = ACTIONS(2291), + [aux_sym_known_hosts_command_token1] = ACTIONS(2291), + [aux_sym_local_command_token1] = ACTIONS(2291), + [aux_sym_local_forward_token1] = ACTIONS(2291), + [aux_sym_log_level_token1] = ACTIONS(2291), + [aux_sym_log_verbose_token1] = ACTIONS(2291), + [aux_sym_macs_token1] = ACTIONS(2291), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2291), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2291), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2291), + [aux_sym_password_authentication_token1] = ACTIONS(2291), + [aux_sym_permit_local_command_token1] = ACTIONS(2291), + [aux_sym_permit_remote_open_token1] = ACTIONS(2291), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2291), + [aux_sym_port_token1] = ACTIONS(2291), + [aux_sym_preferred_authentications_token1] = ACTIONS(2291), + [aux_sym_protocol_token1] = ACTIONS(2291), + [aux_sym_proxy_command_token1] = ACTIONS(2291), + [aux_sym_proxy_jump_token1] = ACTIONS(2291), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2291), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2291), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2291), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2291), + [aux_sym_rekey_limit_token1] = ACTIONS(2291), + [aux_sym_remote_command_token1] = ACTIONS(2291), + [aux_sym_remote_forward_token1] = ACTIONS(2291), + [aux_sym_request_tty_token1] = ACTIONS(2291), + [aux_sym_required_rsa_size_token1] = ACTIONS(2291), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2291), + [aux_sym_security_key_provider_token1] = ACTIONS(2291), + [aux_sym_send_env_token1] = ACTIONS(2291), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2291), + [aux_sym_server_alive_interval_token1] = ACTIONS(2291), + [aux_sym_session_type_token1] = ACTIONS(2291), + [aux_sym_set_env_token1] = ACTIONS(2291), + [aux_sym_stdin_null_token1] = ACTIONS(2291), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2291), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2291), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2291), + [aux_sym_syslog_facility_token1] = ACTIONS(2291), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2291), + [aux_sym_keep_alive_token1] = ACTIONS(2291), + [aux_sym_tag_token1] = ACTIONS(2291), + [aux_sym_tunnel_token1] = ACTIONS(2293), + [aux_sym_tunnel_device_token1] = ACTIONS(2291), + [aux_sym_update_host_keys_token1] = ACTIONS(2291), + [aux_sym_use_keychain_token1] = ACTIONS(2291), + [aux_sym_use_roaming_token1] = ACTIONS(2291), + [aux_sym_user_token1] = ACTIONS(2293), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2291), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2291), + [aux_sym_visual_host_key_token1] = ACTIONS(2291), + [aux_sym_xauth_location_token1] = ACTIONS(2291), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(2288), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2288), - [aux_sym_match_token1] = ACTIONS(2288), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2288), - [aux_sym_address_family_token1] = ACTIONS(2288), - [aux_sym_batch_mode_token1] = ACTIONS(2288), - [aux_sym_bind_address_token1] = ACTIONS(2288), - [aux_sym_bind_interface_token1] = ACTIONS(2288), - [aux_sym_canonical_domains_token1] = ACTIONS(2288), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2288), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2288), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2288), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2288), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2288), - [aux_sym_certificate_file_token1] = ACTIONS(2288), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2288), - [aux_sym_channel_timeout_token1] = ACTIONS(2288), - [aux_sym_check_host_ip_token1] = ACTIONS(2288), - [aux_sym_ciphers_token1] = ACTIONS(2288), - [aux_sym_cipher_token1] = ACTIONS(2290), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2288), - [aux_sym_compression_token1] = ACTIONS(2288), - [aux_sym_connection_attempts_token1] = ACTIONS(2288), - [aux_sym_connect_timeout_token1] = ACTIONS(2288), - [aux_sym_control_master_token1] = ACTIONS(2288), - [aux_sym_control_path_token1] = ACTIONS(2288), - [aux_sym_control_persist_token1] = ACTIONS(2288), - [aux_sym_dynamic_forward_token1] = ACTIONS(2288), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2288), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2288), - [aux_sym_escape_char_token1] = ACTIONS(2288), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2288), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2288), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2288), - [aux_sym_forward_agent_token1] = ACTIONS(2288), - [aux_sym_forward_x11_token1] = ACTIONS(2290), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2288), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2288), - [aux_sym_gateway_ports_token1] = ACTIONS(2288), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2288), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2288), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2288), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2288), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2288), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2288), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2288), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2288), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2288), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2288), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2288), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2288), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2288), - [aux_sym_host_key_alias_token1] = ACTIONS(2288), - [aux_sym_hostname_token1] = ACTIONS(2288), - [aux_sym_identities_only_token1] = ACTIONS(2288), - [aux_sym_identity_agent_token1] = ACTIONS(2288), - [aux_sym_identity_file_token1] = ACTIONS(2288), - [aux_sym_ignore_unknown_token1] = ACTIONS(2288), - [aux_sym_include_token1] = ACTIONS(2288), - [aux_sym_ip_qos_token1] = ACTIONS(2288), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2288), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2288), - [aux_sym_kex_algorithms_token1] = ACTIONS(2288), - [aux_sym_known_hosts_command_token1] = ACTIONS(2288), - [aux_sym_local_command_token1] = ACTIONS(2288), - [aux_sym_local_forward_token1] = ACTIONS(2288), - [aux_sym_log_level_token1] = ACTIONS(2288), - [aux_sym_log_verbose_token1] = ACTIONS(2288), - [aux_sym_macs_token1] = ACTIONS(2288), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2288), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2288), - [aux_sym_password_authentication_token1] = ACTIONS(2288), - [aux_sym_permit_local_command_token1] = ACTIONS(2288), - [aux_sym_permit_remote_open_token1] = ACTIONS(2288), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2288), - [aux_sym_port_token1] = ACTIONS(2288), - [aux_sym_preferred_authentications_token1] = ACTIONS(2288), - [aux_sym_protocol_token1] = ACTIONS(2288), - [aux_sym_proxy_command_token1] = ACTIONS(2288), - [aux_sym_proxy_jump_token1] = ACTIONS(2288), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2288), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2288), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2288), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2288), - [aux_sym_rekey_limit_token1] = ACTIONS(2288), - [aux_sym_remote_command_token1] = ACTIONS(2288), - [aux_sym_remote_forward_token1] = ACTIONS(2288), - [aux_sym_request_tty_token1] = ACTIONS(2288), - [aux_sym_required_rsa_size_token1] = ACTIONS(2288), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2288), - [aux_sym_security_key_provider_token1] = ACTIONS(2288), - [aux_sym_send_env_token1] = ACTIONS(2288), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2288), - [aux_sym_server_alive_interval_token1] = ACTIONS(2288), - [aux_sym_session_type_token1] = ACTIONS(2288), - [aux_sym_set_env_token1] = ACTIONS(2288), - [aux_sym_stdin_null_token1] = ACTIONS(2288), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2288), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2288), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2288), - [aux_sym_syslog_facility_token1] = ACTIONS(2288), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2288), - [aux_sym_keep_alive_token1] = ACTIONS(2288), - [aux_sym_tag_token1] = ACTIONS(2288), - [aux_sym_tunnel_token1] = ACTIONS(2290), - [aux_sym_tunnel_device_token1] = ACTIONS(2288), - [aux_sym_update_host_keys_token1] = ACTIONS(2288), - [aux_sym_use_keychain_token1] = ACTIONS(2288), - [aux_sym_use_roaming_token1] = ACTIONS(2288), - [aux_sym_user_token1] = ACTIONS(2290), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2288), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2288), - [aux_sym_visual_host_key_token1] = ACTIONS(2288), - [aux_sym_xauth_location_token1] = ACTIONS(2288), + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(2301), + [aux_sym_match_token1] = ACTIONS(2297), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2297), + [aux_sym_address_family_token1] = ACTIONS(2297), + [aux_sym_batch_mode_token1] = ACTIONS(2297), + [aux_sym_bind_address_token1] = ACTIONS(2297), + [aux_sym_bind_interface_token1] = ACTIONS(2297), + [aux_sym_canonical_domains_token1] = ACTIONS(2297), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2297), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2297), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2297), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2297), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2297), + [aux_sym_certificate_file_token1] = ACTIONS(2297), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2297), + [aux_sym_channel_timeout_token1] = ACTIONS(2297), + [aux_sym_check_host_ip_token1] = ACTIONS(2297), + [aux_sym_ciphers_token1] = ACTIONS(2297), + [aux_sym_cipher_token1] = ACTIONS(2299), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2297), + [aux_sym_compression_token1] = ACTIONS(2297), + [aux_sym_connection_attempts_token1] = ACTIONS(2297), + [aux_sym_connect_timeout_token1] = ACTIONS(2297), + [aux_sym_control_master_token1] = ACTIONS(2297), + [aux_sym_control_path_token1] = ACTIONS(2297), + [aux_sym_control_persist_token1] = ACTIONS(2297), + [aux_sym_dynamic_forward_token1] = ACTIONS(2297), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2297), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2297), + [aux_sym_escape_char_token1] = ACTIONS(2297), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2297), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2297), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2297), + [aux_sym_forward_agent_token1] = ACTIONS(2297), + [aux_sym_forward_x11_token1] = ACTIONS(2299), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2297), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2297), + [aux_sym_gateway_ports_token1] = ACTIONS(2297), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2297), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2297), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2297), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2297), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2297), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2297), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2297), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2297), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2297), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2297), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2297), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2297), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2297), + [aux_sym_host_key_alias_token1] = ACTIONS(2297), + [aux_sym_hostname_token1] = ACTIONS(2297), + [aux_sym_identities_only_token1] = ACTIONS(2297), + [aux_sym_identity_agent_token1] = ACTIONS(2297), + [aux_sym_identity_file_token1] = ACTIONS(2297), + [aux_sym_ignore_unknown_token1] = ACTIONS(2297), + [aux_sym_include_token1] = ACTIONS(2297), + [aux_sym_ip_qos_token1] = ACTIONS(2297), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2297), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2297), + [aux_sym_kex_algorithms_token1] = ACTIONS(2297), + [aux_sym_known_hosts_command_token1] = ACTIONS(2297), + [aux_sym_local_command_token1] = ACTIONS(2297), + [aux_sym_local_forward_token1] = ACTIONS(2297), + [aux_sym_log_level_token1] = ACTIONS(2297), + [aux_sym_log_verbose_token1] = ACTIONS(2297), + [aux_sym_macs_token1] = ACTIONS(2297), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2297), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2297), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2297), + [aux_sym_password_authentication_token1] = ACTIONS(2297), + [aux_sym_permit_local_command_token1] = ACTIONS(2297), + [aux_sym_permit_remote_open_token1] = ACTIONS(2297), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2297), + [aux_sym_port_token1] = ACTIONS(2297), + [aux_sym_preferred_authentications_token1] = ACTIONS(2297), + [aux_sym_protocol_token1] = ACTIONS(2297), + [aux_sym_proxy_command_token1] = ACTIONS(2297), + [aux_sym_proxy_jump_token1] = ACTIONS(2297), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2297), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2297), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2297), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2297), + [aux_sym_rekey_limit_token1] = ACTIONS(2297), + [aux_sym_remote_command_token1] = ACTIONS(2297), + [aux_sym_remote_forward_token1] = ACTIONS(2297), + [aux_sym_request_tty_token1] = ACTIONS(2297), + [aux_sym_required_rsa_size_token1] = ACTIONS(2297), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2297), + [aux_sym_security_key_provider_token1] = ACTIONS(2297), + [aux_sym_send_env_token1] = ACTIONS(2297), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2297), + [aux_sym_server_alive_interval_token1] = ACTIONS(2297), + [aux_sym_session_type_token1] = ACTIONS(2297), + [aux_sym_set_env_token1] = ACTIONS(2297), + [aux_sym_stdin_null_token1] = ACTIONS(2297), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2297), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2297), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2297), + [aux_sym_syslog_facility_token1] = ACTIONS(2297), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2297), + [aux_sym_keep_alive_token1] = ACTIONS(2297), + [aux_sym_tag_token1] = ACTIONS(2297), + [aux_sym_tunnel_token1] = ACTIONS(2299), + [aux_sym_tunnel_device_token1] = ACTIONS(2297), + [aux_sym_update_host_keys_token1] = ACTIONS(2297), + [aux_sym_use_keychain_token1] = ACTIONS(2297), + [aux_sym_use_roaming_token1] = ACTIONS(2297), + [aux_sym_user_token1] = ACTIONS(2299), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2297), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2297), + [aux_sym_visual_host_key_token1] = ACTIONS(2297), + [aux_sym_xauth_location_token1] = ACTIONS(2297), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(2292), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2296), - [aux_sym_match_token1] = ACTIONS(2292), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2292), - [aux_sym_address_family_token1] = ACTIONS(2292), - [aux_sym_batch_mode_token1] = ACTIONS(2292), - [aux_sym_bind_address_token1] = ACTIONS(2292), - [aux_sym_bind_interface_token1] = ACTIONS(2292), - [aux_sym_canonical_domains_token1] = ACTIONS(2292), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2292), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2292), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2292), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2292), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2292), - [aux_sym_certificate_file_token1] = ACTIONS(2292), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2292), - [aux_sym_channel_timeout_token1] = ACTIONS(2292), - [aux_sym_check_host_ip_token1] = ACTIONS(2292), - [aux_sym_ciphers_token1] = ACTIONS(2292), - [aux_sym_cipher_token1] = ACTIONS(2294), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2292), - [aux_sym_compression_token1] = ACTIONS(2292), - [aux_sym_connection_attempts_token1] = ACTIONS(2292), - [aux_sym_connect_timeout_token1] = ACTIONS(2292), - [aux_sym_control_master_token1] = ACTIONS(2292), - [aux_sym_control_path_token1] = ACTIONS(2292), - [aux_sym_control_persist_token1] = ACTIONS(2292), - [aux_sym_dynamic_forward_token1] = ACTIONS(2292), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2292), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2292), - [aux_sym_escape_char_token1] = ACTIONS(2292), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2292), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2292), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2292), - [aux_sym_forward_agent_token1] = ACTIONS(2292), - [aux_sym_forward_x11_token1] = ACTIONS(2294), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2292), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2292), - [aux_sym_gateway_ports_token1] = ACTIONS(2292), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2292), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2292), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2292), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2292), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2292), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2292), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2292), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2292), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2292), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2292), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2292), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2292), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2292), - [aux_sym_host_key_alias_token1] = ACTIONS(2292), - [aux_sym_hostname_token1] = ACTIONS(2292), - [aux_sym_identities_only_token1] = ACTIONS(2292), - [aux_sym_identity_agent_token1] = ACTIONS(2292), - [aux_sym_identity_file_token1] = ACTIONS(2292), - [aux_sym_ignore_unknown_token1] = ACTIONS(2292), - [aux_sym_include_token1] = ACTIONS(2292), - [aux_sym_ip_qos_token1] = ACTIONS(2292), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2292), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2292), - [aux_sym_kex_algorithms_token1] = ACTIONS(2292), - [aux_sym_known_hosts_command_token1] = ACTIONS(2292), - [aux_sym_local_command_token1] = ACTIONS(2292), - [aux_sym_local_forward_token1] = ACTIONS(2292), - [aux_sym_log_level_token1] = ACTIONS(2292), - [aux_sym_log_verbose_token1] = ACTIONS(2292), - [aux_sym_macs_token1] = ACTIONS(2292), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2292), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2292), - [aux_sym_password_authentication_token1] = ACTIONS(2292), - [aux_sym_permit_local_command_token1] = ACTIONS(2292), - [aux_sym_permit_remote_open_token1] = ACTIONS(2292), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2292), - [aux_sym_port_token1] = ACTIONS(2292), - [aux_sym_preferred_authentications_token1] = ACTIONS(2292), - [aux_sym_protocol_token1] = ACTIONS(2292), - [aux_sym_proxy_command_token1] = ACTIONS(2292), - [aux_sym_proxy_jump_token1] = ACTIONS(2292), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2292), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2292), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2292), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2292), - [aux_sym_rekey_limit_token1] = ACTIONS(2292), - [aux_sym_remote_command_token1] = ACTIONS(2292), - [aux_sym_remote_forward_token1] = ACTIONS(2292), - [aux_sym_request_tty_token1] = ACTIONS(2292), - [aux_sym_required_rsa_size_token1] = ACTIONS(2292), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2292), - [aux_sym_security_key_provider_token1] = ACTIONS(2292), - [aux_sym_send_env_token1] = ACTIONS(2292), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2292), - [aux_sym_server_alive_interval_token1] = ACTIONS(2292), - [aux_sym_session_type_token1] = ACTIONS(2292), - [aux_sym_set_env_token1] = ACTIONS(2292), - [aux_sym_stdin_null_token1] = ACTIONS(2292), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2292), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2292), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2292), - [aux_sym_syslog_facility_token1] = ACTIONS(2292), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2292), - [aux_sym_keep_alive_token1] = ACTIONS(2292), - [aux_sym_tag_token1] = ACTIONS(2292), - [aux_sym_tunnel_token1] = ACTIONS(2294), - [aux_sym_tunnel_device_token1] = ACTIONS(2292), - [aux_sym_update_host_keys_token1] = ACTIONS(2292), - [aux_sym_use_keychain_token1] = ACTIONS(2292), - [aux_sym_use_roaming_token1] = ACTIONS(2292), - [aux_sym_user_token1] = ACTIONS(2294), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2292), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2292), - [aux_sym_visual_host_key_token1] = ACTIONS(2292), - [aux_sym_xauth_location_token1] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2303), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(2303), + [aux_sym_match_token1] = ACTIONS(2303), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2303), + [aux_sym_address_family_token1] = ACTIONS(2303), + [aux_sym_batch_mode_token1] = ACTIONS(2303), + [aux_sym_bind_address_token1] = ACTIONS(2303), + [aux_sym_bind_interface_token1] = ACTIONS(2303), + [aux_sym_canonical_domains_token1] = ACTIONS(2303), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2303), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2303), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2303), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2303), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2303), + [aux_sym_certificate_file_token1] = ACTIONS(2303), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2303), + [aux_sym_channel_timeout_token1] = ACTIONS(2303), + [aux_sym_check_host_ip_token1] = ACTIONS(2303), + [aux_sym_ciphers_token1] = ACTIONS(2303), + [aux_sym_cipher_token1] = ACTIONS(2305), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2303), + [aux_sym_compression_token1] = ACTIONS(2303), + [aux_sym_connection_attempts_token1] = ACTIONS(2303), + [aux_sym_connect_timeout_token1] = ACTIONS(2303), + [aux_sym_control_master_token1] = ACTIONS(2303), + [aux_sym_control_path_token1] = ACTIONS(2303), + [aux_sym_control_persist_token1] = ACTIONS(2303), + [aux_sym_dynamic_forward_token1] = ACTIONS(2303), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2303), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2303), + [aux_sym_escape_char_token1] = ACTIONS(2303), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2303), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2303), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2303), + [aux_sym_forward_agent_token1] = ACTIONS(2303), + [aux_sym_forward_x11_token1] = ACTIONS(2305), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2303), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2303), + [aux_sym_gateway_ports_token1] = ACTIONS(2303), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2303), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2303), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2303), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2303), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2303), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2303), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2303), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2303), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2303), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2303), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2303), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2303), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2303), + [aux_sym_host_key_alias_token1] = ACTIONS(2303), + [aux_sym_hostname_token1] = ACTIONS(2303), + [aux_sym_identities_only_token1] = ACTIONS(2303), + [aux_sym_identity_agent_token1] = ACTIONS(2303), + [aux_sym_identity_file_token1] = ACTIONS(2303), + [aux_sym_ignore_unknown_token1] = ACTIONS(2303), + [aux_sym_include_token1] = ACTIONS(2303), + [aux_sym_ip_qos_token1] = ACTIONS(2303), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2303), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2303), + [aux_sym_kex_algorithms_token1] = ACTIONS(2303), + [aux_sym_known_hosts_command_token1] = ACTIONS(2303), + [aux_sym_local_command_token1] = ACTIONS(2303), + [aux_sym_local_forward_token1] = ACTIONS(2303), + [aux_sym_log_level_token1] = ACTIONS(2303), + [aux_sym_log_verbose_token1] = ACTIONS(2303), + [aux_sym_macs_token1] = ACTIONS(2303), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2303), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2303), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2303), + [aux_sym_password_authentication_token1] = ACTIONS(2303), + [aux_sym_permit_local_command_token1] = ACTIONS(2303), + [aux_sym_permit_remote_open_token1] = ACTIONS(2303), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2303), + [aux_sym_port_token1] = ACTIONS(2303), + [aux_sym_preferred_authentications_token1] = ACTIONS(2303), + [aux_sym_protocol_token1] = ACTIONS(2303), + [aux_sym_proxy_command_token1] = ACTIONS(2303), + [aux_sym_proxy_jump_token1] = ACTIONS(2303), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2303), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2303), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2303), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2303), + [aux_sym_rekey_limit_token1] = ACTIONS(2303), + [aux_sym_remote_command_token1] = ACTIONS(2303), + [aux_sym_remote_forward_token1] = ACTIONS(2303), + [aux_sym_request_tty_token1] = ACTIONS(2303), + [aux_sym_required_rsa_size_token1] = ACTIONS(2303), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2303), + [aux_sym_security_key_provider_token1] = ACTIONS(2303), + [aux_sym_send_env_token1] = ACTIONS(2303), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2303), + [aux_sym_server_alive_interval_token1] = ACTIONS(2303), + [aux_sym_session_type_token1] = ACTIONS(2303), + [aux_sym_set_env_token1] = ACTIONS(2303), + [aux_sym_stdin_null_token1] = ACTIONS(2303), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2303), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2303), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2303), + [aux_sym_syslog_facility_token1] = ACTIONS(2303), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2303), + [aux_sym_keep_alive_token1] = ACTIONS(2303), + [aux_sym_tag_token1] = ACTIONS(2303), + [aux_sym_tunnel_token1] = ACTIONS(2305), + [aux_sym_tunnel_device_token1] = ACTIONS(2303), + [aux_sym_update_host_keys_token1] = ACTIONS(2303), + [aux_sym_use_keychain_token1] = ACTIONS(2303), + [aux_sym_use_roaming_token1] = ACTIONS(2303), + [aux_sym_user_token1] = ACTIONS(2305), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2303), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2303), + [aux_sym_visual_host_key_token1] = ACTIONS(2303), + [aux_sym_xauth_location_token1] = ACTIONS(2303), }, [302] = { - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2300), - [anon_sym_DQUOTE] = ACTIONS(2298), - [aux_sym_match_token1] = ACTIONS(2298), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2298), - [aux_sym_address_family_token1] = ACTIONS(2298), - [aux_sym_batch_mode_token1] = ACTIONS(2298), - [aux_sym_bind_address_token1] = ACTIONS(2298), - [aux_sym_bind_interface_token1] = ACTIONS(2298), - [aux_sym_canonical_domains_token1] = ACTIONS(2298), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2298), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2298), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2298), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2298), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2298), - [aux_sym_certificate_file_token1] = ACTIONS(2298), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2298), - [aux_sym_channel_timeout_token1] = ACTIONS(2298), - [aux_sym_check_host_ip_token1] = ACTIONS(2298), - [aux_sym_ciphers_token1] = ACTIONS(2298), - [aux_sym_cipher_token1] = ACTIONS(2300), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2298), - [aux_sym_compression_token1] = ACTIONS(2298), - [aux_sym_connection_attempts_token1] = ACTIONS(2298), - [aux_sym_connect_timeout_token1] = ACTIONS(2298), - [aux_sym_control_master_token1] = ACTIONS(2298), - [aux_sym_control_path_token1] = ACTIONS(2298), - [aux_sym_control_persist_token1] = ACTIONS(2298), - [aux_sym_dynamic_forward_token1] = ACTIONS(2298), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2298), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2298), - [aux_sym_escape_char_token1] = ACTIONS(2298), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2298), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2298), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2298), - [aux_sym_forward_agent_token1] = ACTIONS(2298), - [aux_sym_forward_x11_token1] = ACTIONS(2300), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2298), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2298), - [aux_sym_gateway_ports_token1] = ACTIONS(2298), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2298), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2298), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2298), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2298), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2298), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2298), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2298), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2298), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2298), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2298), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2298), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2298), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2298), - [aux_sym_host_key_alias_token1] = ACTIONS(2298), - [aux_sym_hostname_token1] = ACTIONS(2298), - [aux_sym_identities_only_token1] = ACTIONS(2298), - [aux_sym_identity_agent_token1] = ACTIONS(2298), - [aux_sym_identity_file_token1] = ACTIONS(2298), - [aux_sym_ignore_unknown_token1] = ACTIONS(2298), - [aux_sym_include_token1] = ACTIONS(2298), - [aux_sym_ip_qos_token1] = ACTIONS(2298), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2298), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2298), - [aux_sym_kex_algorithms_token1] = ACTIONS(2298), - [aux_sym_known_hosts_command_token1] = ACTIONS(2298), - [aux_sym_local_command_token1] = ACTIONS(2298), - [aux_sym_local_forward_token1] = ACTIONS(2298), - [aux_sym_log_level_token1] = ACTIONS(2298), - [aux_sym_log_verbose_token1] = ACTIONS(2298), - [aux_sym_macs_token1] = ACTIONS(2298), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2298), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2298), - [aux_sym_password_authentication_token1] = ACTIONS(2298), - [aux_sym_permit_local_command_token1] = ACTIONS(2298), - [aux_sym_permit_remote_open_token1] = ACTIONS(2298), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2298), - [aux_sym_port_token1] = ACTIONS(2298), - [aux_sym_preferred_authentications_token1] = ACTIONS(2298), - [aux_sym_protocol_token1] = ACTIONS(2298), - [aux_sym_proxy_command_token1] = ACTIONS(2298), - [aux_sym_proxy_jump_token1] = ACTIONS(2298), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2298), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2298), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2298), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2298), - [aux_sym_rekey_limit_token1] = ACTIONS(2298), - [aux_sym_remote_command_token1] = ACTIONS(2298), - [aux_sym_remote_forward_token1] = ACTIONS(2298), - [aux_sym_request_tty_token1] = ACTIONS(2298), - [aux_sym_required_rsa_size_token1] = ACTIONS(2298), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2298), - [aux_sym_security_key_provider_token1] = ACTIONS(2298), - [aux_sym_send_env_token1] = ACTIONS(2298), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2298), - [aux_sym_server_alive_interval_token1] = ACTIONS(2298), - [aux_sym_session_type_token1] = ACTIONS(2298), - [aux_sym_set_env_token1] = ACTIONS(2298), - [aux_sym_stdin_null_token1] = ACTIONS(2298), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2298), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2298), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2298), - [aux_sym_syslog_facility_token1] = ACTIONS(2298), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2298), - [aux_sym_keep_alive_token1] = ACTIONS(2298), - [aux_sym_tag_token1] = ACTIONS(2298), - [aux_sym_tunnel_token1] = ACTIONS(2300), - [aux_sym_tunnel_device_token1] = ACTIONS(2298), - [aux_sym_update_host_keys_token1] = ACTIONS(2298), - [aux_sym_use_keychain_token1] = ACTIONS(2298), - [aux_sym_use_roaming_token1] = ACTIONS(2298), - [aux_sym_user_token1] = ACTIONS(2300), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2298), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2298), - [aux_sym_visual_host_key_token1] = ACTIONS(2298), - [aux_sym_xauth_location_token1] = ACTIONS(2298), + [ts_builtin_sym_end] = ACTIONS(2307), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2307), + [aux_sym_match_token1] = ACTIONS(2307), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2307), + [aux_sym_address_family_token1] = ACTIONS(2307), + [aux_sym_batch_mode_token1] = ACTIONS(2307), + [aux_sym_bind_address_token1] = ACTIONS(2307), + [aux_sym_bind_interface_token1] = ACTIONS(2307), + [aux_sym_canonical_domains_token1] = ACTIONS(2307), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2307), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2307), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2307), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2307), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2307), + [aux_sym_certificate_file_token1] = ACTIONS(2307), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2307), + [aux_sym_channel_timeout_token1] = ACTIONS(2307), + [aux_sym_check_host_ip_token1] = ACTIONS(2307), + [aux_sym_ciphers_token1] = ACTIONS(2307), + [aux_sym_cipher_token1] = ACTIONS(2309), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2307), + [aux_sym_compression_token1] = ACTIONS(2307), + [aux_sym_connection_attempts_token1] = ACTIONS(2307), + [aux_sym_connect_timeout_token1] = ACTIONS(2307), + [aux_sym_control_master_token1] = ACTIONS(2307), + [aux_sym_control_path_token1] = ACTIONS(2307), + [aux_sym_control_persist_token1] = ACTIONS(2307), + [aux_sym_dynamic_forward_token1] = ACTIONS(2307), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2307), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2307), + [aux_sym_escape_char_token1] = ACTIONS(2307), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2307), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2307), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2307), + [aux_sym_forward_agent_token1] = ACTIONS(2307), + [aux_sym_forward_x11_token1] = ACTIONS(2309), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2307), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2307), + [aux_sym_gateway_ports_token1] = ACTIONS(2307), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2307), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2307), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2307), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2307), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2307), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2307), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2307), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2307), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2307), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2307), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2307), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2307), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2307), + [aux_sym_host_key_alias_token1] = ACTIONS(2307), + [aux_sym_hostname_token1] = ACTIONS(2307), + [aux_sym_identities_only_token1] = ACTIONS(2307), + [aux_sym_identity_agent_token1] = ACTIONS(2307), + [aux_sym_identity_file_token1] = ACTIONS(2307), + [aux_sym_ignore_unknown_token1] = ACTIONS(2307), + [aux_sym_include_token1] = ACTIONS(2307), + [aux_sym_ip_qos_token1] = ACTIONS(2307), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2307), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2307), + [aux_sym_kex_algorithms_token1] = ACTIONS(2307), + [aux_sym_known_hosts_command_token1] = ACTIONS(2307), + [aux_sym_local_command_token1] = ACTIONS(2307), + [aux_sym_local_forward_token1] = ACTIONS(2307), + [aux_sym_log_level_token1] = ACTIONS(2307), + [aux_sym_log_verbose_token1] = ACTIONS(2307), + [aux_sym_macs_token1] = ACTIONS(2307), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2307), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2307), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2307), + [aux_sym_password_authentication_token1] = ACTIONS(2307), + [aux_sym_permit_local_command_token1] = ACTIONS(2307), + [aux_sym_permit_remote_open_token1] = ACTIONS(2307), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2307), + [aux_sym_port_token1] = ACTIONS(2307), + [aux_sym_preferred_authentications_token1] = ACTIONS(2307), + [aux_sym_protocol_token1] = ACTIONS(2307), + [aux_sym_proxy_command_token1] = ACTIONS(2307), + [aux_sym_proxy_jump_token1] = ACTIONS(2307), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2307), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2307), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2307), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2307), + [aux_sym_rekey_limit_token1] = ACTIONS(2307), + [aux_sym_remote_command_token1] = ACTIONS(2307), + [aux_sym_remote_forward_token1] = ACTIONS(2307), + [aux_sym_request_tty_token1] = ACTIONS(2307), + [aux_sym_required_rsa_size_token1] = ACTIONS(2307), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2307), + [aux_sym_security_key_provider_token1] = ACTIONS(2307), + [aux_sym_send_env_token1] = ACTIONS(2307), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2307), + [aux_sym_server_alive_interval_token1] = ACTIONS(2307), + [aux_sym_session_type_token1] = ACTIONS(2307), + [aux_sym_set_env_token1] = ACTIONS(2307), + [aux_sym_stdin_null_token1] = ACTIONS(2307), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2307), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2307), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2307), + [aux_sym_syslog_facility_token1] = ACTIONS(2307), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2307), + [aux_sym_keep_alive_token1] = ACTIONS(2307), + [aux_sym_tag_token1] = ACTIONS(2307), + [aux_sym_tunnel_token1] = ACTIONS(2309), + [aux_sym_tunnel_device_token1] = ACTIONS(2307), + [aux_sym_update_host_keys_token1] = ACTIONS(2307), + [aux_sym_use_keychain_token1] = ACTIONS(2307), + [aux_sym_use_roaming_token1] = ACTIONS(2307), + [aux_sym_user_token1] = ACTIONS(2309), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2307), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2307), + [aux_sym_visual_host_key_token1] = ACTIONS(2307), + [aux_sym_xauth_location_token1] = ACTIONS(2307), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2306), - [aux_sym_match_token1] = ACTIONS(2302), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2302), - [aux_sym_address_family_token1] = ACTIONS(2302), - [aux_sym_batch_mode_token1] = ACTIONS(2302), - [aux_sym_bind_address_token1] = ACTIONS(2302), - [aux_sym_bind_interface_token1] = ACTIONS(2302), - [aux_sym_canonical_domains_token1] = ACTIONS(2302), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2302), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2302), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2302), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2302), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2302), - [aux_sym_certificate_file_token1] = ACTIONS(2302), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2302), - [aux_sym_channel_timeout_token1] = ACTIONS(2302), - [aux_sym_check_host_ip_token1] = ACTIONS(2302), - [aux_sym_ciphers_token1] = ACTIONS(2302), - [aux_sym_cipher_token1] = ACTIONS(2304), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2302), - [aux_sym_compression_token1] = ACTIONS(2302), - [aux_sym_connection_attempts_token1] = ACTIONS(2302), - [aux_sym_connect_timeout_token1] = ACTIONS(2302), - [aux_sym_control_master_token1] = ACTIONS(2302), - [aux_sym_control_path_token1] = ACTIONS(2302), - [aux_sym_control_persist_token1] = ACTIONS(2302), - [aux_sym_dynamic_forward_token1] = ACTIONS(2302), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2302), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2302), - [aux_sym_escape_char_token1] = ACTIONS(2302), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2302), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2302), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2302), - [aux_sym_forward_agent_token1] = ACTIONS(2302), - [aux_sym_forward_x11_token1] = ACTIONS(2304), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2302), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2302), - [aux_sym_gateway_ports_token1] = ACTIONS(2302), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2302), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2302), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2302), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2302), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2302), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2302), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2302), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2302), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2302), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2302), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2302), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2302), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2302), - [aux_sym_host_key_alias_token1] = ACTIONS(2302), - [aux_sym_hostname_token1] = ACTIONS(2302), - [aux_sym_identities_only_token1] = ACTIONS(2302), - [aux_sym_identity_agent_token1] = ACTIONS(2302), - [aux_sym_identity_file_token1] = ACTIONS(2302), - [aux_sym_ignore_unknown_token1] = ACTIONS(2302), - [aux_sym_include_token1] = ACTIONS(2302), - [aux_sym_ip_qos_token1] = ACTIONS(2302), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2302), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2302), - [aux_sym_kex_algorithms_token1] = ACTIONS(2302), - [aux_sym_known_hosts_command_token1] = ACTIONS(2302), - [aux_sym_local_command_token1] = ACTIONS(2302), - [aux_sym_local_forward_token1] = ACTIONS(2302), - [aux_sym_log_level_token1] = ACTIONS(2302), - [aux_sym_log_verbose_token1] = ACTIONS(2302), - [aux_sym_macs_token1] = ACTIONS(2302), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2302), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2302), - [aux_sym_password_authentication_token1] = ACTIONS(2302), - [aux_sym_permit_local_command_token1] = ACTIONS(2302), - [aux_sym_permit_remote_open_token1] = ACTIONS(2302), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2302), - [aux_sym_port_token1] = ACTIONS(2302), - [aux_sym_preferred_authentications_token1] = ACTIONS(2302), - [aux_sym_protocol_token1] = ACTIONS(2302), - [aux_sym_proxy_command_token1] = ACTIONS(2302), - [aux_sym_proxy_jump_token1] = ACTIONS(2302), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2302), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2302), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2302), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2302), - [aux_sym_rekey_limit_token1] = ACTIONS(2302), - [aux_sym_remote_command_token1] = ACTIONS(2302), - [aux_sym_remote_forward_token1] = ACTIONS(2302), - [aux_sym_request_tty_token1] = ACTIONS(2302), - [aux_sym_required_rsa_size_token1] = ACTIONS(2302), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2302), - [aux_sym_security_key_provider_token1] = ACTIONS(2302), - [aux_sym_send_env_token1] = ACTIONS(2302), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2302), - [aux_sym_server_alive_interval_token1] = ACTIONS(2302), - [aux_sym_session_type_token1] = ACTIONS(2302), - [aux_sym_set_env_token1] = ACTIONS(2302), - [aux_sym_stdin_null_token1] = ACTIONS(2302), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2302), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2302), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2302), - [aux_sym_syslog_facility_token1] = ACTIONS(2302), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2302), - [aux_sym_keep_alive_token1] = ACTIONS(2302), - [aux_sym_tag_token1] = ACTIONS(2302), - [aux_sym_tunnel_token1] = ACTIONS(2304), - [aux_sym_tunnel_device_token1] = ACTIONS(2302), - [aux_sym_update_host_keys_token1] = ACTIONS(2302), - [aux_sym_use_keychain_token1] = ACTIONS(2302), - [aux_sym_use_roaming_token1] = ACTIONS(2302), - [aux_sym_user_token1] = ACTIONS(2304), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2302), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2302), - [aux_sym_visual_host_key_token1] = ACTIONS(2302), - [aux_sym_xauth_location_token1] = ACTIONS(2302), + [ts_builtin_sym_end] = ACTIONS(2311), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(2315), + [aux_sym_match_token1] = ACTIONS(2311), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2311), + [aux_sym_address_family_token1] = ACTIONS(2311), + [aux_sym_batch_mode_token1] = ACTIONS(2311), + [aux_sym_bind_address_token1] = ACTIONS(2311), + [aux_sym_bind_interface_token1] = ACTIONS(2311), + [aux_sym_canonical_domains_token1] = ACTIONS(2311), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2311), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2311), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2311), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2311), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2311), + [aux_sym_certificate_file_token1] = ACTIONS(2311), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2311), + [aux_sym_channel_timeout_token1] = ACTIONS(2311), + [aux_sym_check_host_ip_token1] = ACTIONS(2311), + [aux_sym_ciphers_token1] = ACTIONS(2311), + [aux_sym_cipher_token1] = ACTIONS(2313), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2311), + [aux_sym_compression_token1] = ACTIONS(2311), + [aux_sym_connection_attempts_token1] = ACTIONS(2311), + [aux_sym_connect_timeout_token1] = ACTIONS(2311), + [aux_sym_control_master_token1] = ACTIONS(2311), + [aux_sym_control_path_token1] = ACTIONS(2311), + [aux_sym_control_persist_token1] = ACTIONS(2311), + [aux_sym_dynamic_forward_token1] = ACTIONS(2311), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2311), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2311), + [aux_sym_escape_char_token1] = ACTIONS(2311), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2311), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2311), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2311), + [aux_sym_forward_agent_token1] = ACTIONS(2311), + [aux_sym_forward_x11_token1] = ACTIONS(2313), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2311), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2311), + [aux_sym_gateway_ports_token1] = ACTIONS(2311), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2311), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2311), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2311), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2311), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2311), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2311), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2311), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2311), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2311), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2311), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2311), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2311), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2311), + [aux_sym_host_key_alias_token1] = ACTIONS(2311), + [aux_sym_hostname_token1] = ACTIONS(2311), + [aux_sym_identities_only_token1] = ACTIONS(2311), + [aux_sym_identity_agent_token1] = ACTIONS(2311), + [aux_sym_identity_file_token1] = ACTIONS(2311), + [aux_sym_ignore_unknown_token1] = ACTIONS(2311), + [aux_sym_include_token1] = ACTIONS(2311), + [aux_sym_ip_qos_token1] = ACTIONS(2311), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2311), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2311), + [aux_sym_kex_algorithms_token1] = ACTIONS(2311), + [aux_sym_known_hosts_command_token1] = ACTIONS(2311), + [aux_sym_local_command_token1] = ACTIONS(2311), + [aux_sym_local_forward_token1] = ACTIONS(2311), + [aux_sym_log_level_token1] = ACTIONS(2311), + [aux_sym_log_verbose_token1] = ACTIONS(2311), + [aux_sym_macs_token1] = ACTIONS(2311), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2311), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2311), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2311), + [aux_sym_password_authentication_token1] = ACTIONS(2311), + [aux_sym_permit_local_command_token1] = ACTIONS(2311), + [aux_sym_permit_remote_open_token1] = ACTIONS(2311), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2311), + [aux_sym_port_token1] = ACTIONS(2311), + [aux_sym_preferred_authentications_token1] = ACTIONS(2311), + [aux_sym_protocol_token1] = ACTIONS(2311), + [aux_sym_proxy_command_token1] = ACTIONS(2311), + [aux_sym_proxy_jump_token1] = ACTIONS(2311), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2311), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2311), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2311), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2311), + [aux_sym_rekey_limit_token1] = ACTIONS(2311), + [aux_sym_remote_command_token1] = ACTIONS(2311), + [aux_sym_remote_forward_token1] = ACTIONS(2311), + [aux_sym_request_tty_token1] = ACTIONS(2311), + [aux_sym_required_rsa_size_token1] = ACTIONS(2311), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2311), + [aux_sym_security_key_provider_token1] = ACTIONS(2311), + [aux_sym_send_env_token1] = ACTIONS(2311), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2311), + [aux_sym_server_alive_interval_token1] = ACTIONS(2311), + [aux_sym_session_type_token1] = ACTIONS(2311), + [aux_sym_set_env_token1] = ACTIONS(2311), + [aux_sym_stdin_null_token1] = ACTIONS(2311), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2311), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2311), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2311), + [aux_sym_syslog_facility_token1] = ACTIONS(2311), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2311), + [aux_sym_keep_alive_token1] = ACTIONS(2311), + [aux_sym_tag_token1] = ACTIONS(2311), + [aux_sym_tunnel_token1] = ACTIONS(2313), + [aux_sym_tunnel_device_token1] = ACTIONS(2311), + [aux_sym_update_host_keys_token1] = ACTIONS(2311), + [aux_sym_use_keychain_token1] = ACTIONS(2311), + [aux_sym_use_roaming_token1] = ACTIONS(2311), + [aux_sym_user_token1] = ACTIONS(2313), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2311), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2311), + [aux_sym_visual_host_key_token1] = ACTIONS(2311), + [aux_sym_xauth_location_token1] = ACTIONS(2311), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(2308), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2308), - [aux_sym_match_token1] = ACTIONS(2308), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2308), - [aux_sym_address_family_token1] = ACTIONS(2308), - [aux_sym_batch_mode_token1] = ACTIONS(2308), - [aux_sym_bind_address_token1] = ACTIONS(2308), - [aux_sym_bind_interface_token1] = ACTIONS(2308), - [aux_sym_canonical_domains_token1] = ACTIONS(2308), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2308), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2308), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2308), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2308), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2308), - [aux_sym_certificate_file_token1] = ACTIONS(2308), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2308), - [aux_sym_channel_timeout_token1] = ACTIONS(2308), - [aux_sym_check_host_ip_token1] = ACTIONS(2308), - [aux_sym_ciphers_token1] = ACTIONS(2308), - [aux_sym_cipher_token1] = ACTIONS(2310), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2308), - [aux_sym_compression_token1] = ACTIONS(2308), - [aux_sym_connection_attempts_token1] = ACTIONS(2308), - [aux_sym_connect_timeout_token1] = ACTIONS(2308), - [aux_sym_control_master_token1] = ACTIONS(2308), - [aux_sym_control_path_token1] = ACTIONS(2308), - [aux_sym_control_persist_token1] = ACTIONS(2308), - [aux_sym_dynamic_forward_token1] = ACTIONS(2308), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2308), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2308), - [aux_sym_escape_char_token1] = ACTIONS(2308), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2308), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2308), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2308), - [aux_sym_forward_agent_token1] = ACTIONS(2308), - [aux_sym_forward_x11_token1] = ACTIONS(2310), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2308), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2308), - [aux_sym_gateway_ports_token1] = ACTIONS(2308), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2308), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2308), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2308), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2308), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2308), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2308), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2308), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2308), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2308), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2308), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2308), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2308), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2308), - [aux_sym_host_key_alias_token1] = ACTIONS(2308), - [aux_sym_hostname_token1] = ACTIONS(2308), - [aux_sym_identities_only_token1] = ACTIONS(2308), - [aux_sym_identity_agent_token1] = ACTIONS(2308), - [aux_sym_identity_file_token1] = ACTIONS(2308), - [aux_sym_ignore_unknown_token1] = ACTIONS(2308), - [aux_sym_include_token1] = ACTIONS(2308), - [aux_sym_ip_qos_token1] = ACTIONS(2308), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2308), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2308), - [aux_sym_kex_algorithms_token1] = ACTIONS(2308), - [aux_sym_known_hosts_command_token1] = ACTIONS(2308), - [aux_sym_local_command_token1] = ACTIONS(2308), - [aux_sym_local_forward_token1] = ACTIONS(2308), - [aux_sym_log_level_token1] = ACTIONS(2308), - [aux_sym_log_verbose_token1] = ACTIONS(2308), - [aux_sym_macs_token1] = ACTIONS(2308), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2308), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2308), - [aux_sym_password_authentication_token1] = ACTIONS(2308), - [aux_sym_permit_local_command_token1] = ACTIONS(2308), - [aux_sym_permit_remote_open_token1] = ACTIONS(2308), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2308), - [aux_sym_port_token1] = ACTIONS(2308), - [aux_sym_preferred_authentications_token1] = ACTIONS(2308), - [aux_sym_protocol_token1] = ACTIONS(2308), - [aux_sym_proxy_command_token1] = ACTIONS(2308), - [aux_sym_proxy_jump_token1] = ACTIONS(2308), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2308), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2308), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2308), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2308), - [aux_sym_rekey_limit_token1] = ACTIONS(2308), - [aux_sym_remote_command_token1] = ACTIONS(2308), - [aux_sym_remote_forward_token1] = ACTIONS(2308), - [aux_sym_request_tty_token1] = ACTIONS(2308), - [aux_sym_required_rsa_size_token1] = ACTIONS(2308), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2308), - [aux_sym_security_key_provider_token1] = ACTIONS(2308), - [aux_sym_send_env_token1] = ACTIONS(2308), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2308), - [aux_sym_server_alive_interval_token1] = ACTIONS(2308), - [aux_sym_session_type_token1] = ACTIONS(2308), - [aux_sym_set_env_token1] = ACTIONS(2308), - [aux_sym_stdin_null_token1] = ACTIONS(2308), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2308), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2308), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2308), - [aux_sym_syslog_facility_token1] = ACTIONS(2308), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2308), - [aux_sym_keep_alive_token1] = ACTIONS(2308), - [aux_sym_tag_token1] = ACTIONS(2308), - [aux_sym_tunnel_token1] = ACTIONS(2310), - [aux_sym_tunnel_device_token1] = ACTIONS(2308), - [aux_sym_update_host_keys_token1] = ACTIONS(2308), - [aux_sym_use_keychain_token1] = ACTIONS(2308), - [aux_sym_use_roaming_token1] = ACTIONS(2308), - [aux_sym_user_token1] = ACTIONS(2310), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2308), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2308), - [aux_sym_visual_host_key_token1] = ACTIONS(2308), - [aux_sym_xauth_location_token1] = ACTIONS(2308), + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(2317), + [aux_sym_match_token1] = ACTIONS(2317), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2317), + [aux_sym_address_family_token1] = ACTIONS(2317), + [aux_sym_batch_mode_token1] = ACTIONS(2317), + [aux_sym_bind_address_token1] = ACTIONS(2317), + [aux_sym_bind_interface_token1] = ACTIONS(2317), + [aux_sym_canonical_domains_token1] = ACTIONS(2317), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2317), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2317), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2317), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2317), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2317), + [aux_sym_certificate_file_token1] = ACTIONS(2317), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2317), + [aux_sym_channel_timeout_token1] = ACTIONS(2317), + [aux_sym_check_host_ip_token1] = ACTIONS(2317), + [aux_sym_ciphers_token1] = ACTIONS(2317), + [aux_sym_cipher_token1] = ACTIONS(2319), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2317), + [aux_sym_compression_token1] = ACTIONS(2317), + [aux_sym_connection_attempts_token1] = ACTIONS(2317), + [aux_sym_connect_timeout_token1] = ACTIONS(2317), + [aux_sym_control_master_token1] = ACTIONS(2317), + [aux_sym_control_path_token1] = ACTIONS(2317), + [aux_sym_control_persist_token1] = ACTIONS(2317), + [aux_sym_dynamic_forward_token1] = ACTIONS(2317), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2317), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2317), + [aux_sym_escape_char_token1] = ACTIONS(2317), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2317), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2317), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2317), + [aux_sym_forward_agent_token1] = ACTIONS(2317), + [aux_sym_forward_x11_token1] = ACTIONS(2319), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2317), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2317), + [aux_sym_gateway_ports_token1] = ACTIONS(2317), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2317), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2317), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2317), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2317), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2317), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2317), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2317), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2317), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2317), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2317), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2317), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2317), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2317), + [aux_sym_host_key_alias_token1] = ACTIONS(2317), + [aux_sym_hostname_token1] = ACTIONS(2317), + [aux_sym_identities_only_token1] = ACTIONS(2317), + [aux_sym_identity_agent_token1] = ACTIONS(2317), + [aux_sym_identity_file_token1] = ACTIONS(2317), + [aux_sym_ignore_unknown_token1] = ACTIONS(2317), + [aux_sym_include_token1] = ACTIONS(2317), + [aux_sym_ip_qos_token1] = ACTIONS(2317), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2317), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2317), + [aux_sym_kex_algorithms_token1] = ACTIONS(2317), + [aux_sym_known_hosts_command_token1] = ACTIONS(2317), + [aux_sym_local_command_token1] = ACTIONS(2317), + [aux_sym_local_forward_token1] = ACTIONS(2317), + [aux_sym_log_level_token1] = ACTIONS(2317), + [aux_sym_log_verbose_token1] = ACTIONS(2317), + [aux_sym_macs_token1] = ACTIONS(2317), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2317), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2317), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2317), + [aux_sym_password_authentication_token1] = ACTIONS(2317), + [aux_sym_permit_local_command_token1] = ACTIONS(2317), + [aux_sym_permit_remote_open_token1] = ACTIONS(2317), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2317), + [aux_sym_port_token1] = ACTIONS(2317), + [aux_sym_preferred_authentications_token1] = ACTIONS(2317), + [aux_sym_protocol_token1] = ACTIONS(2317), + [aux_sym_proxy_command_token1] = ACTIONS(2317), + [aux_sym_proxy_jump_token1] = ACTIONS(2317), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2317), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2317), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2317), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2317), + [aux_sym_rekey_limit_token1] = ACTIONS(2317), + [aux_sym_remote_command_token1] = ACTIONS(2317), + [aux_sym_remote_forward_token1] = ACTIONS(2317), + [aux_sym_request_tty_token1] = ACTIONS(2317), + [aux_sym_required_rsa_size_token1] = ACTIONS(2317), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2317), + [aux_sym_security_key_provider_token1] = ACTIONS(2317), + [aux_sym_send_env_token1] = ACTIONS(2317), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2317), + [aux_sym_server_alive_interval_token1] = ACTIONS(2317), + [aux_sym_session_type_token1] = ACTIONS(2317), + [aux_sym_set_env_token1] = ACTIONS(2317), + [aux_sym_stdin_null_token1] = ACTIONS(2317), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2317), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2317), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2317), + [aux_sym_syslog_facility_token1] = ACTIONS(2317), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2317), + [aux_sym_keep_alive_token1] = ACTIONS(2317), + [aux_sym_tag_token1] = ACTIONS(2317), + [aux_sym_tunnel_token1] = ACTIONS(2319), + [aux_sym_tunnel_device_token1] = ACTIONS(2317), + [aux_sym_update_host_keys_token1] = ACTIONS(2317), + [aux_sym_use_keychain_token1] = ACTIONS(2317), + [aux_sym_use_roaming_token1] = ACTIONS(2317), + [aux_sym_user_token1] = ACTIONS(2319), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2317), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2317), + [aux_sym_visual_host_key_token1] = ACTIONS(2317), + [aux_sym_xauth_location_token1] = ACTIONS(2317), }, [305] = { - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2314), - [anon_sym_DQUOTE] = ACTIONS(2316), - [aux_sym_match_token1] = ACTIONS(2312), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2312), - [aux_sym_address_family_token1] = ACTIONS(2312), - [aux_sym_batch_mode_token1] = ACTIONS(2312), - [aux_sym_bind_address_token1] = ACTIONS(2312), - [aux_sym_bind_interface_token1] = ACTIONS(2312), - [aux_sym_canonical_domains_token1] = ACTIONS(2312), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2312), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2312), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2312), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2312), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2312), - [aux_sym_certificate_file_token1] = ACTIONS(2312), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2312), - [aux_sym_channel_timeout_token1] = ACTIONS(2312), - [aux_sym_check_host_ip_token1] = ACTIONS(2312), - [aux_sym_ciphers_token1] = ACTIONS(2312), - [aux_sym_cipher_token1] = ACTIONS(2314), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2312), - [aux_sym_compression_token1] = ACTIONS(2312), - [aux_sym_connection_attempts_token1] = ACTIONS(2312), - [aux_sym_connect_timeout_token1] = ACTIONS(2312), - [aux_sym_control_master_token1] = ACTIONS(2312), - [aux_sym_control_path_token1] = ACTIONS(2312), - [aux_sym_control_persist_token1] = ACTIONS(2312), - [aux_sym_dynamic_forward_token1] = ACTIONS(2312), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2312), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2312), - [aux_sym_escape_char_token1] = ACTIONS(2312), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2312), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2312), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2312), - [aux_sym_forward_agent_token1] = ACTIONS(2312), - [aux_sym_forward_x11_token1] = ACTIONS(2314), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2312), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2312), - [aux_sym_gateway_ports_token1] = ACTIONS(2312), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2312), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2312), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2312), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2312), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2312), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2312), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2312), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2312), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2312), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2312), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2312), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2312), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2312), - [aux_sym_host_key_alias_token1] = ACTIONS(2312), - [aux_sym_hostname_token1] = ACTIONS(2312), - [aux_sym_identities_only_token1] = ACTIONS(2312), - [aux_sym_identity_agent_token1] = ACTIONS(2312), - [aux_sym_identity_file_token1] = ACTIONS(2312), - [aux_sym_ignore_unknown_token1] = ACTIONS(2312), - [aux_sym_include_token1] = ACTIONS(2312), - [aux_sym_ip_qos_token1] = ACTIONS(2312), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2312), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2312), - [aux_sym_kex_algorithms_token1] = ACTIONS(2312), - [aux_sym_known_hosts_command_token1] = ACTIONS(2312), - [aux_sym_local_command_token1] = ACTIONS(2312), - [aux_sym_local_forward_token1] = ACTIONS(2312), - [aux_sym_log_level_token1] = ACTIONS(2312), - [aux_sym_log_verbose_token1] = ACTIONS(2312), - [aux_sym_macs_token1] = ACTIONS(2312), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2312), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2312), - [aux_sym_password_authentication_token1] = ACTIONS(2312), - [aux_sym_permit_local_command_token1] = ACTIONS(2312), - [aux_sym_permit_remote_open_token1] = ACTIONS(2312), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2312), - [aux_sym_port_token1] = ACTIONS(2312), - [aux_sym_preferred_authentications_token1] = ACTIONS(2312), - [aux_sym_protocol_token1] = ACTIONS(2312), - [aux_sym_proxy_command_token1] = ACTIONS(2312), - [aux_sym_proxy_jump_token1] = ACTIONS(2312), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2312), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2312), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2312), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2312), - [aux_sym_rekey_limit_token1] = ACTIONS(2312), - [aux_sym_remote_command_token1] = ACTIONS(2312), - [aux_sym_remote_forward_token1] = ACTIONS(2312), - [aux_sym_request_tty_token1] = ACTIONS(2312), - [aux_sym_required_rsa_size_token1] = ACTIONS(2312), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2312), - [aux_sym_security_key_provider_token1] = ACTIONS(2312), - [aux_sym_send_env_token1] = ACTIONS(2312), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2312), - [aux_sym_server_alive_interval_token1] = ACTIONS(2312), - [aux_sym_session_type_token1] = ACTIONS(2312), - [aux_sym_set_env_token1] = ACTIONS(2312), - [aux_sym_stdin_null_token1] = ACTIONS(2312), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2312), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2312), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2312), - [aux_sym_syslog_facility_token1] = ACTIONS(2312), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2312), - [aux_sym_keep_alive_token1] = ACTIONS(2312), - [aux_sym_tag_token1] = ACTIONS(2312), - [aux_sym_tunnel_token1] = ACTIONS(2314), - [aux_sym_tunnel_device_token1] = ACTIONS(2312), - [aux_sym_update_host_keys_token1] = ACTIONS(2312), - [aux_sym_use_keychain_token1] = ACTIONS(2312), - [aux_sym_use_roaming_token1] = ACTIONS(2312), - [aux_sym_user_token1] = ACTIONS(2314), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2312), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2312), - [aux_sym_visual_host_key_token1] = ACTIONS(2312), - [aux_sym_xauth_location_token1] = ACTIONS(2312), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(2325), + [aux_sym_match_token1] = ACTIONS(2321), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2321), + [aux_sym_address_family_token1] = ACTIONS(2321), + [aux_sym_batch_mode_token1] = ACTIONS(2321), + [aux_sym_bind_address_token1] = ACTIONS(2321), + [aux_sym_bind_interface_token1] = ACTIONS(2321), + [aux_sym_canonical_domains_token1] = ACTIONS(2321), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2321), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2321), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2321), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2321), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2321), + [aux_sym_certificate_file_token1] = ACTIONS(2321), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2321), + [aux_sym_channel_timeout_token1] = ACTIONS(2321), + [aux_sym_check_host_ip_token1] = ACTIONS(2321), + [aux_sym_ciphers_token1] = ACTIONS(2321), + [aux_sym_cipher_token1] = ACTIONS(2323), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2321), + [aux_sym_compression_token1] = ACTIONS(2321), + [aux_sym_connection_attempts_token1] = ACTIONS(2321), + [aux_sym_connect_timeout_token1] = ACTIONS(2321), + [aux_sym_control_master_token1] = ACTIONS(2321), + [aux_sym_control_path_token1] = ACTIONS(2321), + [aux_sym_control_persist_token1] = ACTIONS(2321), + [aux_sym_dynamic_forward_token1] = ACTIONS(2321), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2321), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2321), + [aux_sym_escape_char_token1] = ACTIONS(2321), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2321), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2321), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2321), + [aux_sym_forward_agent_token1] = ACTIONS(2321), + [aux_sym_forward_x11_token1] = ACTIONS(2323), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2321), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2321), + [aux_sym_gateway_ports_token1] = ACTIONS(2321), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2321), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2321), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2321), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2321), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2321), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2321), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2321), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2321), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2321), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2321), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2321), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2321), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2321), + [aux_sym_host_key_alias_token1] = ACTIONS(2321), + [aux_sym_hostname_token1] = ACTIONS(2321), + [aux_sym_identities_only_token1] = ACTIONS(2321), + [aux_sym_identity_agent_token1] = ACTIONS(2321), + [aux_sym_identity_file_token1] = ACTIONS(2321), + [aux_sym_ignore_unknown_token1] = ACTIONS(2321), + [aux_sym_include_token1] = ACTIONS(2321), + [aux_sym_ip_qos_token1] = ACTIONS(2321), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2321), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2321), + [aux_sym_kex_algorithms_token1] = ACTIONS(2321), + [aux_sym_known_hosts_command_token1] = ACTIONS(2321), + [aux_sym_local_command_token1] = ACTIONS(2321), + [aux_sym_local_forward_token1] = ACTIONS(2321), + [aux_sym_log_level_token1] = ACTIONS(2321), + [aux_sym_log_verbose_token1] = ACTIONS(2321), + [aux_sym_macs_token1] = ACTIONS(2321), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2321), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2321), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2321), + [aux_sym_password_authentication_token1] = ACTIONS(2321), + [aux_sym_permit_local_command_token1] = ACTIONS(2321), + [aux_sym_permit_remote_open_token1] = ACTIONS(2321), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2321), + [aux_sym_port_token1] = ACTIONS(2321), + [aux_sym_preferred_authentications_token1] = ACTIONS(2321), + [aux_sym_protocol_token1] = ACTIONS(2321), + [aux_sym_proxy_command_token1] = ACTIONS(2321), + [aux_sym_proxy_jump_token1] = ACTIONS(2321), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2321), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2321), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2321), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2321), + [aux_sym_rekey_limit_token1] = ACTIONS(2321), + [aux_sym_remote_command_token1] = ACTIONS(2321), + [aux_sym_remote_forward_token1] = ACTIONS(2321), + [aux_sym_request_tty_token1] = ACTIONS(2321), + [aux_sym_required_rsa_size_token1] = ACTIONS(2321), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2321), + [aux_sym_security_key_provider_token1] = ACTIONS(2321), + [aux_sym_send_env_token1] = ACTIONS(2321), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2321), + [aux_sym_server_alive_interval_token1] = ACTIONS(2321), + [aux_sym_session_type_token1] = ACTIONS(2321), + [aux_sym_set_env_token1] = ACTIONS(2321), + [aux_sym_stdin_null_token1] = ACTIONS(2321), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2321), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2321), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2321), + [aux_sym_syslog_facility_token1] = ACTIONS(2321), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2321), + [aux_sym_keep_alive_token1] = ACTIONS(2321), + [aux_sym_tag_token1] = ACTIONS(2321), + [aux_sym_tunnel_token1] = ACTIONS(2323), + [aux_sym_tunnel_device_token1] = ACTIONS(2321), + [aux_sym_update_host_keys_token1] = ACTIONS(2321), + [aux_sym_use_keychain_token1] = ACTIONS(2321), + [aux_sym_use_roaming_token1] = ACTIONS(2321), + [aux_sym_user_token1] = ACTIONS(2323), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2321), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2321), + [aux_sym_visual_host_key_token1] = ACTIONS(2321), + [aux_sym_xauth_location_token1] = ACTIONS(2321), }, [306] = { - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2318), - [aux_sym_match_token1] = ACTIONS(2318), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2318), - [aux_sym_address_family_token1] = ACTIONS(2318), - [aux_sym_batch_mode_token1] = ACTIONS(2318), - [aux_sym_bind_address_token1] = ACTIONS(2318), - [aux_sym_bind_interface_token1] = ACTIONS(2318), - [aux_sym_canonical_domains_token1] = ACTIONS(2318), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2318), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2318), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2318), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2318), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2318), - [aux_sym_certificate_file_token1] = ACTIONS(2318), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2318), - [aux_sym_channel_timeout_token1] = ACTIONS(2318), - [aux_sym_check_host_ip_token1] = ACTIONS(2318), - [aux_sym_ciphers_token1] = ACTIONS(2318), - [aux_sym_cipher_token1] = ACTIONS(2320), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2318), - [aux_sym_compression_token1] = ACTIONS(2318), - [aux_sym_connection_attempts_token1] = ACTIONS(2318), - [aux_sym_connect_timeout_token1] = ACTIONS(2318), - [aux_sym_control_master_token1] = ACTIONS(2318), - [aux_sym_control_path_token1] = ACTIONS(2318), - [aux_sym_control_persist_token1] = ACTIONS(2318), - [aux_sym_dynamic_forward_token1] = ACTIONS(2318), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2318), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2318), - [aux_sym_escape_char_token1] = ACTIONS(2318), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2318), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2318), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2318), - [aux_sym_forward_agent_token1] = ACTIONS(2318), - [aux_sym_forward_x11_token1] = ACTIONS(2320), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2318), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2318), - [aux_sym_gateway_ports_token1] = ACTIONS(2318), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2318), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2318), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2318), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2318), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2318), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2318), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2318), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2318), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2318), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2318), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2318), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2318), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2318), - [aux_sym_host_key_alias_token1] = ACTIONS(2318), - [aux_sym_hostname_token1] = ACTIONS(2318), - [aux_sym_identities_only_token1] = ACTIONS(2318), - [aux_sym_identity_agent_token1] = ACTIONS(2318), - [aux_sym_identity_file_token1] = ACTIONS(2318), - [aux_sym_ignore_unknown_token1] = ACTIONS(2318), - [aux_sym_include_token1] = ACTIONS(2318), - [aux_sym_ip_qos_token1] = ACTIONS(2318), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2318), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2318), - [aux_sym_kex_algorithms_token1] = ACTIONS(2318), - [aux_sym_known_hosts_command_token1] = ACTIONS(2318), - [aux_sym_local_command_token1] = ACTIONS(2318), - [aux_sym_local_forward_token1] = ACTIONS(2318), - [aux_sym_log_level_token1] = ACTIONS(2318), - [aux_sym_log_verbose_token1] = ACTIONS(2318), - [aux_sym_macs_token1] = ACTIONS(2318), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2318), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2318), - [aux_sym_password_authentication_token1] = ACTIONS(2318), - [aux_sym_permit_local_command_token1] = ACTIONS(2318), - [aux_sym_permit_remote_open_token1] = ACTIONS(2318), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2318), - [aux_sym_port_token1] = ACTIONS(2318), - [aux_sym_preferred_authentications_token1] = ACTIONS(2318), - [aux_sym_protocol_token1] = ACTIONS(2318), - [aux_sym_proxy_command_token1] = ACTIONS(2318), - [aux_sym_proxy_jump_token1] = ACTIONS(2318), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2318), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2318), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2318), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2318), - [aux_sym_rekey_limit_token1] = ACTIONS(2318), - [aux_sym_remote_command_token1] = ACTIONS(2318), - [aux_sym_remote_forward_token1] = ACTIONS(2318), - [aux_sym_request_tty_token1] = ACTIONS(2318), - [aux_sym_required_rsa_size_token1] = ACTIONS(2318), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2318), - [aux_sym_security_key_provider_token1] = ACTIONS(2318), - [aux_sym_send_env_token1] = ACTIONS(2318), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2318), - [aux_sym_server_alive_interval_token1] = ACTIONS(2318), - [aux_sym_session_type_token1] = ACTIONS(2318), - [aux_sym_set_env_token1] = ACTIONS(2318), - [aux_sym_stdin_null_token1] = ACTIONS(2318), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2318), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2318), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2318), - [aux_sym_syslog_facility_token1] = ACTIONS(2318), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2318), - [aux_sym_keep_alive_token1] = ACTIONS(2318), - [aux_sym_tag_token1] = ACTIONS(2318), - [aux_sym_tunnel_token1] = ACTIONS(2320), - [aux_sym_tunnel_device_token1] = ACTIONS(2318), - [aux_sym_update_host_keys_token1] = ACTIONS(2318), - [aux_sym_use_keychain_token1] = ACTIONS(2318), - [aux_sym_use_roaming_token1] = ACTIONS(2318), - [aux_sym_user_token1] = ACTIONS(2320), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2318), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2318), - [aux_sym_visual_host_key_token1] = ACTIONS(2318), - [aux_sym_xauth_location_token1] = ACTIONS(2318), + [ts_builtin_sym_end] = ACTIONS(2327), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(2327), + [aux_sym_match_token1] = ACTIONS(2327), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2327), + [aux_sym_address_family_token1] = ACTIONS(2327), + [aux_sym_batch_mode_token1] = ACTIONS(2327), + [aux_sym_bind_address_token1] = ACTIONS(2327), + [aux_sym_bind_interface_token1] = ACTIONS(2327), + [aux_sym_canonical_domains_token1] = ACTIONS(2327), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2327), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2327), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2327), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2327), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2327), + [aux_sym_certificate_file_token1] = ACTIONS(2327), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2327), + [aux_sym_channel_timeout_token1] = ACTIONS(2327), + [aux_sym_check_host_ip_token1] = ACTIONS(2327), + [aux_sym_ciphers_token1] = ACTIONS(2327), + [aux_sym_cipher_token1] = ACTIONS(2329), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2327), + [aux_sym_compression_token1] = ACTIONS(2327), + [aux_sym_connection_attempts_token1] = ACTIONS(2327), + [aux_sym_connect_timeout_token1] = ACTIONS(2327), + [aux_sym_control_master_token1] = ACTIONS(2327), + [aux_sym_control_path_token1] = ACTIONS(2327), + [aux_sym_control_persist_token1] = ACTIONS(2327), + [aux_sym_dynamic_forward_token1] = ACTIONS(2327), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2327), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2327), + [aux_sym_escape_char_token1] = ACTIONS(2327), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2327), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2327), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2327), + [aux_sym_forward_agent_token1] = ACTIONS(2327), + [aux_sym_forward_x11_token1] = ACTIONS(2329), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2327), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2327), + [aux_sym_gateway_ports_token1] = ACTIONS(2327), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2327), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2327), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2327), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2327), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2327), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2327), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2327), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2327), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2327), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2327), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2327), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2327), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2327), + [aux_sym_host_key_alias_token1] = ACTIONS(2327), + [aux_sym_hostname_token1] = ACTIONS(2327), + [aux_sym_identities_only_token1] = ACTIONS(2327), + [aux_sym_identity_agent_token1] = ACTIONS(2327), + [aux_sym_identity_file_token1] = ACTIONS(2327), + [aux_sym_ignore_unknown_token1] = ACTIONS(2327), + [aux_sym_include_token1] = ACTIONS(2327), + [aux_sym_ip_qos_token1] = ACTIONS(2327), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2327), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2327), + [aux_sym_kex_algorithms_token1] = ACTIONS(2327), + [aux_sym_known_hosts_command_token1] = ACTIONS(2327), + [aux_sym_local_command_token1] = ACTIONS(2327), + [aux_sym_local_forward_token1] = ACTIONS(2327), + [aux_sym_log_level_token1] = ACTIONS(2327), + [aux_sym_log_verbose_token1] = ACTIONS(2327), + [aux_sym_macs_token1] = ACTIONS(2327), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2327), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2327), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2327), + [aux_sym_password_authentication_token1] = ACTIONS(2327), + [aux_sym_permit_local_command_token1] = ACTIONS(2327), + [aux_sym_permit_remote_open_token1] = ACTIONS(2327), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2327), + [aux_sym_port_token1] = ACTIONS(2327), + [aux_sym_preferred_authentications_token1] = ACTIONS(2327), + [aux_sym_protocol_token1] = ACTIONS(2327), + [aux_sym_proxy_command_token1] = ACTIONS(2327), + [aux_sym_proxy_jump_token1] = ACTIONS(2327), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2327), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2327), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2327), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2327), + [aux_sym_rekey_limit_token1] = ACTIONS(2327), + [aux_sym_remote_command_token1] = ACTIONS(2327), + [aux_sym_remote_forward_token1] = ACTIONS(2327), + [aux_sym_request_tty_token1] = ACTIONS(2327), + [aux_sym_required_rsa_size_token1] = ACTIONS(2327), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2327), + [aux_sym_security_key_provider_token1] = ACTIONS(2327), + [aux_sym_send_env_token1] = ACTIONS(2327), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2327), + [aux_sym_server_alive_interval_token1] = ACTIONS(2327), + [aux_sym_session_type_token1] = ACTIONS(2327), + [aux_sym_set_env_token1] = ACTIONS(2327), + [aux_sym_stdin_null_token1] = ACTIONS(2327), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2327), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2327), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2327), + [aux_sym_syslog_facility_token1] = ACTIONS(2327), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2327), + [aux_sym_keep_alive_token1] = ACTIONS(2327), + [aux_sym_tag_token1] = ACTIONS(2327), + [aux_sym_tunnel_token1] = ACTIONS(2329), + [aux_sym_tunnel_device_token1] = ACTIONS(2327), + [aux_sym_update_host_keys_token1] = ACTIONS(2327), + [aux_sym_use_keychain_token1] = ACTIONS(2327), + [aux_sym_use_roaming_token1] = ACTIONS(2327), + [aux_sym_user_token1] = ACTIONS(2329), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2327), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2327), + [aux_sym_visual_host_key_token1] = ACTIONS(2327), + [aux_sym_xauth_location_token1] = ACTIONS(2327), }, [307] = { - [ts_builtin_sym_end] = ACTIONS(2322), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2326), - [aux_sym_match_token1] = ACTIONS(2322), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2322), - [aux_sym_address_family_token1] = ACTIONS(2322), - [aux_sym_batch_mode_token1] = ACTIONS(2322), - [aux_sym_bind_address_token1] = ACTIONS(2322), - [aux_sym_bind_interface_token1] = ACTIONS(2322), - [aux_sym_canonical_domains_token1] = ACTIONS(2322), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2322), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2322), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2322), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2322), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2322), - [aux_sym_certificate_file_token1] = ACTIONS(2322), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2322), - [aux_sym_channel_timeout_token1] = ACTIONS(2322), - [aux_sym_check_host_ip_token1] = ACTIONS(2322), - [aux_sym_ciphers_token1] = ACTIONS(2322), - [aux_sym_cipher_token1] = ACTIONS(2324), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2322), - [aux_sym_compression_token1] = ACTIONS(2322), - [aux_sym_connection_attempts_token1] = ACTIONS(2322), - [aux_sym_connect_timeout_token1] = ACTIONS(2322), - [aux_sym_control_master_token1] = ACTIONS(2322), - [aux_sym_control_path_token1] = ACTIONS(2322), - [aux_sym_control_persist_token1] = ACTIONS(2322), - [aux_sym_dynamic_forward_token1] = ACTIONS(2322), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2322), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2322), - [aux_sym_escape_char_token1] = ACTIONS(2322), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2322), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2322), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2322), - [aux_sym_forward_agent_token1] = ACTIONS(2322), - [aux_sym_forward_x11_token1] = ACTIONS(2324), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2322), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2322), - [aux_sym_gateway_ports_token1] = ACTIONS(2322), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2322), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2322), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2322), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2322), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2322), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2322), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2322), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2322), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2322), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2322), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2322), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2322), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2322), - [aux_sym_host_key_alias_token1] = ACTIONS(2322), - [aux_sym_hostname_token1] = ACTIONS(2322), - [aux_sym_identities_only_token1] = ACTIONS(2322), - [aux_sym_identity_agent_token1] = ACTIONS(2322), - [aux_sym_identity_file_token1] = ACTIONS(2322), - [aux_sym_ignore_unknown_token1] = ACTIONS(2322), - [aux_sym_include_token1] = ACTIONS(2322), - [aux_sym_ip_qos_token1] = ACTIONS(2322), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2322), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2322), - [aux_sym_kex_algorithms_token1] = ACTIONS(2322), - [aux_sym_known_hosts_command_token1] = ACTIONS(2322), - [aux_sym_local_command_token1] = ACTIONS(2322), - [aux_sym_local_forward_token1] = ACTIONS(2322), - [aux_sym_log_level_token1] = ACTIONS(2322), - [aux_sym_log_verbose_token1] = ACTIONS(2322), - [aux_sym_macs_token1] = ACTIONS(2322), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2322), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2322), - [aux_sym_password_authentication_token1] = ACTIONS(2322), - [aux_sym_permit_local_command_token1] = ACTIONS(2322), - [aux_sym_permit_remote_open_token1] = ACTIONS(2322), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2322), - [aux_sym_port_token1] = ACTIONS(2322), - [aux_sym_preferred_authentications_token1] = ACTIONS(2322), - [aux_sym_protocol_token1] = ACTIONS(2322), - [aux_sym_proxy_command_token1] = ACTIONS(2322), - [aux_sym_proxy_jump_token1] = ACTIONS(2322), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2322), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2322), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2322), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2322), - [aux_sym_rekey_limit_token1] = ACTIONS(2322), - [aux_sym_remote_command_token1] = ACTIONS(2322), - [aux_sym_remote_forward_token1] = ACTIONS(2322), - [aux_sym_request_tty_token1] = ACTIONS(2322), - [aux_sym_required_rsa_size_token1] = ACTIONS(2322), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2322), - [aux_sym_security_key_provider_token1] = ACTIONS(2322), - [aux_sym_send_env_token1] = ACTIONS(2322), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2322), - [aux_sym_server_alive_interval_token1] = ACTIONS(2322), - [aux_sym_session_type_token1] = ACTIONS(2322), - [aux_sym_set_env_token1] = ACTIONS(2322), - [aux_sym_stdin_null_token1] = ACTIONS(2322), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2322), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2322), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2322), - [aux_sym_syslog_facility_token1] = ACTIONS(2322), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2322), - [aux_sym_keep_alive_token1] = ACTIONS(2322), - [aux_sym_tag_token1] = ACTIONS(2322), - [aux_sym_tunnel_token1] = ACTIONS(2324), - [aux_sym_tunnel_device_token1] = ACTIONS(2322), - [aux_sym_update_host_keys_token1] = ACTIONS(2322), - [aux_sym_use_keychain_token1] = ACTIONS(2322), - [aux_sym_use_roaming_token1] = ACTIONS(2322), - [aux_sym_user_token1] = ACTIONS(2324), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2322), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2322), - [aux_sym_visual_host_key_token1] = ACTIONS(2322), - [aux_sym_xauth_location_token1] = ACTIONS(2322), + [ts_builtin_sym_end] = ACTIONS(2331), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(2335), + [aux_sym_match_token1] = ACTIONS(2331), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2331), + [aux_sym_address_family_token1] = ACTIONS(2331), + [aux_sym_batch_mode_token1] = ACTIONS(2331), + [aux_sym_bind_address_token1] = ACTIONS(2331), + [aux_sym_bind_interface_token1] = ACTIONS(2331), + [aux_sym_canonical_domains_token1] = ACTIONS(2331), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2331), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2331), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2331), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2331), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2331), + [aux_sym_certificate_file_token1] = ACTIONS(2331), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2331), + [aux_sym_channel_timeout_token1] = ACTIONS(2331), + [aux_sym_check_host_ip_token1] = ACTIONS(2331), + [aux_sym_ciphers_token1] = ACTIONS(2331), + [aux_sym_cipher_token1] = ACTIONS(2333), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2331), + [aux_sym_compression_token1] = ACTIONS(2331), + [aux_sym_connection_attempts_token1] = ACTIONS(2331), + [aux_sym_connect_timeout_token1] = ACTIONS(2331), + [aux_sym_control_master_token1] = ACTIONS(2331), + [aux_sym_control_path_token1] = ACTIONS(2331), + [aux_sym_control_persist_token1] = ACTIONS(2331), + [aux_sym_dynamic_forward_token1] = ACTIONS(2331), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2331), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2331), + [aux_sym_escape_char_token1] = ACTIONS(2331), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2331), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2331), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2331), + [aux_sym_forward_agent_token1] = ACTIONS(2331), + [aux_sym_forward_x11_token1] = ACTIONS(2333), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2331), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2331), + [aux_sym_gateway_ports_token1] = ACTIONS(2331), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2331), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2331), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2331), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2331), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2331), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2331), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2331), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2331), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2331), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2331), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2331), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2331), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2331), + [aux_sym_host_key_alias_token1] = ACTIONS(2331), + [aux_sym_hostname_token1] = ACTIONS(2331), + [aux_sym_identities_only_token1] = ACTIONS(2331), + [aux_sym_identity_agent_token1] = ACTIONS(2331), + [aux_sym_identity_file_token1] = ACTIONS(2331), + [aux_sym_ignore_unknown_token1] = ACTIONS(2331), + [aux_sym_include_token1] = ACTIONS(2331), + [aux_sym_ip_qos_token1] = ACTIONS(2331), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2331), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2331), + [aux_sym_kex_algorithms_token1] = ACTIONS(2331), + [aux_sym_known_hosts_command_token1] = ACTIONS(2331), + [aux_sym_local_command_token1] = ACTIONS(2331), + [aux_sym_local_forward_token1] = ACTIONS(2331), + [aux_sym_log_level_token1] = ACTIONS(2331), + [aux_sym_log_verbose_token1] = ACTIONS(2331), + [aux_sym_macs_token1] = ACTIONS(2331), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2331), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2331), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2331), + [aux_sym_password_authentication_token1] = ACTIONS(2331), + [aux_sym_permit_local_command_token1] = ACTIONS(2331), + [aux_sym_permit_remote_open_token1] = ACTIONS(2331), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2331), + [aux_sym_port_token1] = ACTIONS(2331), + [aux_sym_preferred_authentications_token1] = ACTIONS(2331), + [aux_sym_protocol_token1] = ACTIONS(2331), + [aux_sym_proxy_command_token1] = ACTIONS(2331), + [aux_sym_proxy_jump_token1] = ACTIONS(2331), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2331), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2331), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2331), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2331), + [aux_sym_rekey_limit_token1] = ACTIONS(2331), + [aux_sym_remote_command_token1] = ACTIONS(2331), + [aux_sym_remote_forward_token1] = ACTIONS(2331), + [aux_sym_request_tty_token1] = ACTIONS(2331), + [aux_sym_required_rsa_size_token1] = ACTIONS(2331), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2331), + [aux_sym_security_key_provider_token1] = ACTIONS(2331), + [aux_sym_send_env_token1] = ACTIONS(2331), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2331), + [aux_sym_server_alive_interval_token1] = ACTIONS(2331), + [aux_sym_session_type_token1] = ACTIONS(2331), + [aux_sym_set_env_token1] = ACTIONS(2331), + [aux_sym_stdin_null_token1] = ACTIONS(2331), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2331), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2331), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2331), + [aux_sym_syslog_facility_token1] = ACTIONS(2331), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2331), + [aux_sym_keep_alive_token1] = ACTIONS(2331), + [aux_sym_tag_token1] = ACTIONS(2331), + [aux_sym_tunnel_token1] = ACTIONS(2333), + [aux_sym_tunnel_device_token1] = ACTIONS(2331), + [aux_sym_update_host_keys_token1] = ACTIONS(2331), + [aux_sym_use_keychain_token1] = ACTIONS(2331), + [aux_sym_use_roaming_token1] = ACTIONS(2331), + [aux_sym_user_token1] = ACTIONS(2333), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2331), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2331), + [aux_sym_visual_host_key_token1] = ACTIONS(2331), + [aux_sym_xauth_location_token1] = ACTIONS(2331), }, [308] = { - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2330), - [anon_sym_DQUOTE] = ACTIONS(2328), - [aux_sym_match_token1] = ACTIONS(2328), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2328), - [aux_sym_address_family_token1] = ACTIONS(2328), - [aux_sym_batch_mode_token1] = ACTIONS(2328), - [aux_sym_bind_address_token1] = ACTIONS(2328), - [aux_sym_bind_interface_token1] = ACTIONS(2328), - [aux_sym_canonical_domains_token1] = ACTIONS(2328), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2328), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2328), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2328), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2328), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2328), - [aux_sym_certificate_file_token1] = ACTIONS(2328), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2328), - [aux_sym_channel_timeout_token1] = ACTIONS(2328), - [aux_sym_check_host_ip_token1] = ACTIONS(2328), - [aux_sym_ciphers_token1] = ACTIONS(2328), - [aux_sym_cipher_token1] = ACTIONS(2330), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2328), - [aux_sym_compression_token1] = ACTIONS(2328), - [aux_sym_connection_attempts_token1] = ACTIONS(2328), - [aux_sym_connect_timeout_token1] = ACTIONS(2328), - [aux_sym_control_master_token1] = ACTIONS(2328), - [aux_sym_control_path_token1] = ACTIONS(2328), - [aux_sym_control_persist_token1] = ACTIONS(2328), - [aux_sym_dynamic_forward_token1] = ACTIONS(2328), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2328), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2328), - [aux_sym_escape_char_token1] = ACTIONS(2328), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2328), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2328), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2328), - [aux_sym_forward_agent_token1] = ACTIONS(2328), - [aux_sym_forward_x11_token1] = ACTIONS(2330), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2328), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2328), - [aux_sym_gateway_ports_token1] = ACTIONS(2328), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2328), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2328), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2328), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2328), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2328), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2328), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2328), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2328), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2328), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2328), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2328), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2328), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2328), - [aux_sym_host_key_alias_token1] = ACTIONS(2328), - [aux_sym_hostname_token1] = ACTIONS(2328), - [aux_sym_identities_only_token1] = ACTIONS(2328), - [aux_sym_identity_agent_token1] = ACTIONS(2328), - [aux_sym_identity_file_token1] = ACTIONS(2328), - [aux_sym_ignore_unknown_token1] = ACTIONS(2328), - [aux_sym_include_token1] = ACTIONS(2328), - [aux_sym_ip_qos_token1] = ACTIONS(2328), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2328), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2328), - [aux_sym_kex_algorithms_token1] = ACTIONS(2328), - [aux_sym_known_hosts_command_token1] = ACTIONS(2328), - [aux_sym_local_command_token1] = ACTIONS(2328), - [aux_sym_local_forward_token1] = ACTIONS(2328), - [aux_sym_log_level_token1] = ACTIONS(2328), - [aux_sym_log_verbose_token1] = ACTIONS(2328), - [aux_sym_macs_token1] = ACTIONS(2328), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2328), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2328), - [aux_sym_password_authentication_token1] = ACTIONS(2328), - [aux_sym_permit_local_command_token1] = ACTIONS(2328), - [aux_sym_permit_remote_open_token1] = ACTIONS(2328), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2328), - [aux_sym_port_token1] = ACTIONS(2328), - [aux_sym_preferred_authentications_token1] = ACTIONS(2328), - [aux_sym_protocol_token1] = ACTIONS(2328), - [aux_sym_proxy_command_token1] = ACTIONS(2328), - [aux_sym_proxy_jump_token1] = ACTIONS(2328), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2328), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2328), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2328), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2328), - [aux_sym_rekey_limit_token1] = ACTIONS(2328), - [aux_sym_remote_command_token1] = ACTIONS(2328), - [aux_sym_remote_forward_token1] = ACTIONS(2328), - [aux_sym_request_tty_token1] = ACTIONS(2328), - [aux_sym_required_rsa_size_token1] = ACTIONS(2328), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2328), - [aux_sym_security_key_provider_token1] = ACTIONS(2328), - [aux_sym_send_env_token1] = ACTIONS(2328), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2328), - [aux_sym_server_alive_interval_token1] = ACTIONS(2328), - [aux_sym_session_type_token1] = ACTIONS(2328), - [aux_sym_set_env_token1] = ACTIONS(2328), - [aux_sym_stdin_null_token1] = ACTIONS(2328), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2328), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2328), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2328), - [aux_sym_syslog_facility_token1] = ACTIONS(2328), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2328), - [aux_sym_keep_alive_token1] = ACTIONS(2328), - [aux_sym_tag_token1] = ACTIONS(2328), - [aux_sym_tunnel_token1] = ACTIONS(2330), - [aux_sym_tunnel_device_token1] = ACTIONS(2328), - [aux_sym_update_host_keys_token1] = ACTIONS(2328), - [aux_sym_use_keychain_token1] = ACTIONS(2328), - [aux_sym_use_roaming_token1] = ACTIONS(2328), - [aux_sym_user_token1] = ACTIONS(2330), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2328), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2328), - [aux_sym_visual_host_key_token1] = ACTIONS(2328), - [aux_sym_xauth_location_token1] = ACTIONS(2328), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(2337), + [aux_sym_match_token1] = ACTIONS(2337), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2337), + [aux_sym_address_family_token1] = ACTIONS(2337), + [aux_sym_batch_mode_token1] = ACTIONS(2337), + [aux_sym_bind_address_token1] = ACTIONS(2337), + [aux_sym_bind_interface_token1] = ACTIONS(2337), + [aux_sym_canonical_domains_token1] = ACTIONS(2337), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2337), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2337), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2337), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2337), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2337), + [aux_sym_certificate_file_token1] = ACTIONS(2337), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2337), + [aux_sym_channel_timeout_token1] = ACTIONS(2337), + [aux_sym_check_host_ip_token1] = ACTIONS(2337), + [aux_sym_ciphers_token1] = ACTIONS(2337), + [aux_sym_cipher_token1] = ACTIONS(2339), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2337), + [aux_sym_compression_token1] = ACTIONS(2337), + [aux_sym_connection_attempts_token1] = ACTIONS(2337), + [aux_sym_connect_timeout_token1] = ACTIONS(2337), + [aux_sym_control_master_token1] = ACTIONS(2337), + [aux_sym_control_path_token1] = ACTIONS(2337), + [aux_sym_control_persist_token1] = ACTIONS(2337), + [aux_sym_dynamic_forward_token1] = ACTIONS(2337), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2337), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2337), + [aux_sym_escape_char_token1] = ACTIONS(2337), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2337), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2337), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2337), + [aux_sym_forward_agent_token1] = ACTIONS(2337), + [aux_sym_forward_x11_token1] = ACTIONS(2339), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2337), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2337), + [aux_sym_gateway_ports_token1] = ACTIONS(2337), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2337), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2337), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2337), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2337), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2337), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2337), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2337), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2337), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2337), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2337), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2337), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2337), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2337), + [aux_sym_host_key_alias_token1] = ACTIONS(2337), + [aux_sym_hostname_token1] = ACTIONS(2337), + [aux_sym_identities_only_token1] = ACTIONS(2337), + [aux_sym_identity_agent_token1] = ACTIONS(2337), + [aux_sym_identity_file_token1] = ACTIONS(2337), + [aux_sym_ignore_unknown_token1] = ACTIONS(2337), + [aux_sym_include_token1] = ACTIONS(2337), + [aux_sym_ip_qos_token1] = ACTIONS(2337), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2337), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2337), + [aux_sym_kex_algorithms_token1] = ACTIONS(2337), + [aux_sym_known_hosts_command_token1] = ACTIONS(2337), + [aux_sym_local_command_token1] = ACTIONS(2337), + [aux_sym_local_forward_token1] = ACTIONS(2337), + [aux_sym_log_level_token1] = ACTIONS(2337), + [aux_sym_log_verbose_token1] = ACTIONS(2337), + [aux_sym_macs_token1] = ACTIONS(2337), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2337), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2337), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2337), + [aux_sym_password_authentication_token1] = ACTIONS(2337), + [aux_sym_permit_local_command_token1] = ACTIONS(2337), + [aux_sym_permit_remote_open_token1] = ACTIONS(2337), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2337), + [aux_sym_port_token1] = ACTIONS(2337), + [aux_sym_preferred_authentications_token1] = ACTIONS(2337), + [aux_sym_protocol_token1] = ACTIONS(2337), + [aux_sym_proxy_command_token1] = ACTIONS(2337), + [aux_sym_proxy_jump_token1] = ACTIONS(2337), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2337), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2337), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2337), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2337), + [aux_sym_rekey_limit_token1] = ACTIONS(2337), + [aux_sym_remote_command_token1] = ACTIONS(2337), + [aux_sym_remote_forward_token1] = ACTIONS(2337), + [aux_sym_request_tty_token1] = ACTIONS(2337), + [aux_sym_required_rsa_size_token1] = ACTIONS(2337), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2337), + [aux_sym_security_key_provider_token1] = ACTIONS(2337), + [aux_sym_send_env_token1] = ACTIONS(2337), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2337), + [aux_sym_server_alive_interval_token1] = ACTIONS(2337), + [aux_sym_session_type_token1] = ACTIONS(2337), + [aux_sym_set_env_token1] = ACTIONS(2337), + [aux_sym_stdin_null_token1] = ACTIONS(2337), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2337), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2337), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2337), + [aux_sym_syslog_facility_token1] = ACTIONS(2337), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2337), + [aux_sym_keep_alive_token1] = ACTIONS(2337), + [aux_sym_tag_token1] = ACTIONS(2337), + [aux_sym_tunnel_token1] = ACTIONS(2339), + [aux_sym_tunnel_device_token1] = ACTIONS(2337), + [aux_sym_update_host_keys_token1] = ACTIONS(2337), + [aux_sym_use_keychain_token1] = ACTIONS(2337), + [aux_sym_use_roaming_token1] = ACTIONS(2337), + [aux_sym_user_token1] = ACTIONS(2339), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2337), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2337), + [aux_sym_visual_host_key_token1] = ACTIONS(2337), + [aux_sym_xauth_location_token1] = ACTIONS(2337), }, [309] = { - [ts_builtin_sym_end] = ACTIONS(2332), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2334), - [anon_sym_DQUOTE] = ACTIONS(2336), - [aux_sym_match_token1] = ACTIONS(2332), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2332), - [aux_sym_address_family_token1] = ACTIONS(2332), - [aux_sym_batch_mode_token1] = ACTIONS(2332), - [aux_sym_bind_address_token1] = ACTIONS(2332), - [aux_sym_bind_interface_token1] = ACTIONS(2332), - [aux_sym_canonical_domains_token1] = ACTIONS(2332), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2332), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2332), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2332), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2332), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2332), - [aux_sym_certificate_file_token1] = ACTIONS(2332), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2332), - [aux_sym_channel_timeout_token1] = ACTIONS(2332), - [aux_sym_check_host_ip_token1] = ACTIONS(2332), - [aux_sym_ciphers_token1] = ACTIONS(2332), - [aux_sym_cipher_token1] = ACTIONS(2334), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2332), - [aux_sym_compression_token1] = ACTIONS(2332), - [aux_sym_connection_attempts_token1] = ACTIONS(2332), - [aux_sym_connect_timeout_token1] = ACTIONS(2332), - [aux_sym_control_master_token1] = ACTIONS(2332), - [aux_sym_control_path_token1] = ACTIONS(2332), - [aux_sym_control_persist_token1] = ACTIONS(2332), - [aux_sym_dynamic_forward_token1] = ACTIONS(2332), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2332), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2332), - [aux_sym_escape_char_token1] = ACTIONS(2332), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2332), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2332), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2332), - [aux_sym_forward_agent_token1] = ACTIONS(2332), - [aux_sym_forward_x11_token1] = ACTIONS(2334), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2332), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2332), - [aux_sym_gateway_ports_token1] = ACTIONS(2332), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2332), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2332), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2332), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2332), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2332), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2332), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2332), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2332), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2332), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2332), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2332), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2332), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2332), - [aux_sym_host_key_alias_token1] = ACTIONS(2332), - [aux_sym_hostname_token1] = ACTIONS(2332), - [aux_sym_identities_only_token1] = ACTIONS(2332), - [aux_sym_identity_agent_token1] = ACTIONS(2332), - [aux_sym_identity_file_token1] = ACTIONS(2332), - [aux_sym_ignore_unknown_token1] = ACTIONS(2332), - [aux_sym_include_token1] = ACTIONS(2332), - [aux_sym_ip_qos_token1] = ACTIONS(2332), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2332), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2332), - [aux_sym_kex_algorithms_token1] = ACTIONS(2332), - [aux_sym_known_hosts_command_token1] = ACTIONS(2332), - [aux_sym_local_command_token1] = ACTIONS(2332), - [aux_sym_local_forward_token1] = ACTIONS(2332), - [aux_sym_log_level_token1] = ACTIONS(2332), - [aux_sym_log_verbose_token1] = ACTIONS(2332), - [aux_sym_macs_token1] = ACTIONS(2332), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2332), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2332), - [aux_sym_password_authentication_token1] = ACTIONS(2332), - [aux_sym_permit_local_command_token1] = ACTIONS(2332), - [aux_sym_permit_remote_open_token1] = ACTIONS(2332), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2332), - [aux_sym_port_token1] = ACTIONS(2332), - [aux_sym_preferred_authentications_token1] = ACTIONS(2332), - [aux_sym_protocol_token1] = ACTIONS(2332), - [aux_sym_proxy_command_token1] = ACTIONS(2332), - [aux_sym_proxy_jump_token1] = ACTIONS(2332), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2332), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2332), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2332), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2332), - [aux_sym_rekey_limit_token1] = ACTIONS(2332), - [aux_sym_remote_command_token1] = ACTIONS(2332), - [aux_sym_remote_forward_token1] = ACTIONS(2332), - [aux_sym_request_tty_token1] = ACTIONS(2332), - [aux_sym_required_rsa_size_token1] = ACTIONS(2332), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2332), - [aux_sym_security_key_provider_token1] = ACTIONS(2332), - [aux_sym_send_env_token1] = ACTIONS(2332), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2332), - [aux_sym_server_alive_interval_token1] = ACTIONS(2332), - [aux_sym_session_type_token1] = ACTIONS(2332), - [aux_sym_set_env_token1] = ACTIONS(2332), - [aux_sym_stdin_null_token1] = ACTIONS(2332), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2332), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2332), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2332), - [aux_sym_syslog_facility_token1] = ACTIONS(2332), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2332), - [aux_sym_keep_alive_token1] = ACTIONS(2332), - [aux_sym_tag_token1] = ACTIONS(2332), - [aux_sym_tunnel_token1] = ACTIONS(2334), - [aux_sym_tunnel_device_token1] = ACTIONS(2332), - [aux_sym_update_host_keys_token1] = ACTIONS(2332), - [aux_sym_use_keychain_token1] = ACTIONS(2332), - [aux_sym_use_roaming_token1] = ACTIONS(2332), - [aux_sym_user_token1] = ACTIONS(2334), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2332), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2332), - [aux_sym_visual_host_key_token1] = ACTIONS(2332), - [aux_sym_xauth_location_token1] = ACTIONS(2332), + [ts_builtin_sym_end] = ACTIONS(2341), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(2345), + [aux_sym_match_token1] = ACTIONS(2341), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2341), + [aux_sym_address_family_token1] = ACTIONS(2341), + [aux_sym_batch_mode_token1] = ACTIONS(2341), + [aux_sym_bind_address_token1] = ACTIONS(2341), + [aux_sym_bind_interface_token1] = ACTIONS(2341), + [aux_sym_canonical_domains_token1] = ACTIONS(2341), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2341), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2341), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2341), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2341), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2341), + [aux_sym_certificate_file_token1] = ACTIONS(2341), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2341), + [aux_sym_channel_timeout_token1] = ACTIONS(2341), + [aux_sym_check_host_ip_token1] = ACTIONS(2341), + [aux_sym_ciphers_token1] = ACTIONS(2341), + [aux_sym_cipher_token1] = ACTIONS(2343), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2341), + [aux_sym_compression_token1] = ACTIONS(2341), + [aux_sym_connection_attempts_token1] = ACTIONS(2341), + [aux_sym_connect_timeout_token1] = ACTIONS(2341), + [aux_sym_control_master_token1] = ACTIONS(2341), + [aux_sym_control_path_token1] = ACTIONS(2341), + [aux_sym_control_persist_token1] = ACTIONS(2341), + [aux_sym_dynamic_forward_token1] = ACTIONS(2341), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2341), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2341), + [aux_sym_escape_char_token1] = ACTIONS(2341), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2341), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2341), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2341), + [aux_sym_forward_agent_token1] = ACTIONS(2341), + [aux_sym_forward_x11_token1] = ACTIONS(2343), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2341), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2341), + [aux_sym_gateway_ports_token1] = ACTIONS(2341), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2341), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2341), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2341), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2341), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2341), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2341), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2341), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2341), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2341), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2341), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2341), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2341), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2341), + [aux_sym_host_key_alias_token1] = ACTIONS(2341), + [aux_sym_hostname_token1] = ACTIONS(2341), + [aux_sym_identities_only_token1] = ACTIONS(2341), + [aux_sym_identity_agent_token1] = ACTIONS(2341), + [aux_sym_identity_file_token1] = ACTIONS(2341), + [aux_sym_ignore_unknown_token1] = ACTIONS(2341), + [aux_sym_include_token1] = ACTIONS(2341), + [aux_sym_ip_qos_token1] = ACTIONS(2341), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2341), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2341), + [aux_sym_kex_algorithms_token1] = ACTIONS(2341), + [aux_sym_known_hosts_command_token1] = ACTIONS(2341), + [aux_sym_local_command_token1] = ACTIONS(2341), + [aux_sym_local_forward_token1] = ACTIONS(2341), + [aux_sym_log_level_token1] = ACTIONS(2341), + [aux_sym_log_verbose_token1] = ACTIONS(2341), + [aux_sym_macs_token1] = ACTIONS(2341), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2341), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2341), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2341), + [aux_sym_password_authentication_token1] = ACTIONS(2341), + [aux_sym_permit_local_command_token1] = ACTIONS(2341), + [aux_sym_permit_remote_open_token1] = ACTIONS(2341), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2341), + [aux_sym_port_token1] = ACTIONS(2341), + [aux_sym_preferred_authentications_token1] = ACTIONS(2341), + [aux_sym_protocol_token1] = ACTIONS(2341), + [aux_sym_proxy_command_token1] = ACTIONS(2341), + [aux_sym_proxy_jump_token1] = ACTIONS(2341), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2341), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2341), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2341), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2341), + [aux_sym_rekey_limit_token1] = ACTIONS(2341), + [aux_sym_remote_command_token1] = ACTIONS(2341), + [aux_sym_remote_forward_token1] = ACTIONS(2341), + [aux_sym_request_tty_token1] = ACTIONS(2341), + [aux_sym_required_rsa_size_token1] = ACTIONS(2341), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2341), + [aux_sym_security_key_provider_token1] = ACTIONS(2341), + [aux_sym_send_env_token1] = ACTIONS(2341), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2341), + [aux_sym_server_alive_interval_token1] = ACTIONS(2341), + [aux_sym_session_type_token1] = ACTIONS(2341), + [aux_sym_set_env_token1] = ACTIONS(2341), + [aux_sym_stdin_null_token1] = ACTIONS(2341), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2341), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2341), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2341), + [aux_sym_syslog_facility_token1] = ACTIONS(2341), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2341), + [aux_sym_keep_alive_token1] = ACTIONS(2341), + [aux_sym_tag_token1] = ACTIONS(2341), + [aux_sym_tunnel_token1] = ACTIONS(2343), + [aux_sym_tunnel_device_token1] = ACTIONS(2341), + [aux_sym_update_host_keys_token1] = ACTIONS(2341), + [aux_sym_use_keychain_token1] = ACTIONS(2341), + [aux_sym_use_roaming_token1] = ACTIONS(2341), + [aux_sym_user_token1] = ACTIONS(2343), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2341), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2341), + [aux_sym_visual_host_key_token1] = ACTIONS(2341), + [aux_sym_xauth_location_token1] = ACTIONS(2341), }, [310] = { - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2340), - [anon_sym_DQUOTE] = ACTIONS(2342), - [aux_sym_match_token1] = ACTIONS(2338), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2338), - [aux_sym_address_family_token1] = ACTIONS(2338), - [aux_sym_batch_mode_token1] = ACTIONS(2338), - [aux_sym_bind_address_token1] = ACTIONS(2338), - [aux_sym_bind_interface_token1] = ACTIONS(2338), - [aux_sym_canonical_domains_token1] = ACTIONS(2338), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2338), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2338), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2338), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2338), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2338), - [aux_sym_certificate_file_token1] = ACTIONS(2338), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2338), - [aux_sym_channel_timeout_token1] = ACTIONS(2338), - [aux_sym_check_host_ip_token1] = ACTIONS(2338), - [aux_sym_ciphers_token1] = ACTIONS(2338), - [aux_sym_cipher_token1] = ACTIONS(2340), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2338), - [aux_sym_compression_token1] = ACTIONS(2338), - [aux_sym_connection_attempts_token1] = ACTIONS(2338), - [aux_sym_connect_timeout_token1] = ACTIONS(2338), - [aux_sym_control_master_token1] = ACTIONS(2338), - [aux_sym_control_path_token1] = ACTIONS(2338), - [aux_sym_control_persist_token1] = ACTIONS(2338), - [aux_sym_dynamic_forward_token1] = ACTIONS(2338), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2338), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2338), - [aux_sym_escape_char_token1] = ACTIONS(2338), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2338), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2338), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2338), - [aux_sym_forward_agent_token1] = ACTIONS(2338), - [aux_sym_forward_x11_token1] = ACTIONS(2340), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2338), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2338), - [aux_sym_gateway_ports_token1] = ACTIONS(2338), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2338), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2338), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2338), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2338), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2338), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2338), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2338), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2338), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2338), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2338), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2338), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2338), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2338), - [aux_sym_host_key_alias_token1] = ACTIONS(2338), - [aux_sym_hostname_token1] = ACTIONS(2338), - [aux_sym_identities_only_token1] = ACTIONS(2338), - [aux_sym_identity_agent_token1] = ACTIONS(2338), - [aux_sym_identity_file_token1] = ACTIONS(2338), - [aux_sym_ignore_unknown_token1] = ACTIONS(2338), - [aux_sym_include_token1] = ACTIONS(2338), - [aux_sym_ip_qos_token1] = ACTIONS(2338), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2338), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2338), - [aux_sym_kex_algorithms_token1] = ACTIONS(2338), - [aux_sym_known_hosts_command_token1] = ACTIONS(2338), - [aux_sym_local_command_token1] = ACTIONS(2338), - [aux_sym_local_forward_token1] = ACTIONS(2338), - [aux_sym_log_level_token1] = ACTIONS(2338), - [aux_sym_log_verbose_token1] = ACTIONS(2338), - [aux_sym_macs_token1] = ACTIONS(2338), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2338), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2338), - [aux_sym_password_authentication_token1] = ACTIONS(2338), - [aux_sym_permit_local_command_token1] = ACTIONS(2338), - [aux_sym_permit_remote_open_token1] = ACTIONS(2338), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2338), - [aux_sym_port_token1] = ACTIONS(2338), - [aux_sym_preferred_authentications_token1] = ACTIONS(2338), - [aux_sym_protocol_token1] = ACTIONS(2338), - [aux_sym_proxy_command_token1] = ACTIONS(2338), - [aux_sym_proxy_jump_token1] = ACTIONS(2338), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2338), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2338), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2338), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2338), - [aux_sym_rekey_limit_token1] = ACTIONS(2338), - [aux_sym_remote_command_token1] = ACTIONS(2338), - [aux_sym_remote_forward_token1] = ACTIONS(2338), - [aux_sym_request_tty_token1] = ACTIONS(2338), - [aux_sym_required_rsa_size_token1] = ACTIONS(2338), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2338), - [aux_sym_security_key_provider_token1] = ACTIONS(2338), - [aux_sym_send_env_token1] = ACTIONS(2338), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2338), - [aux_sym_server_alive_interval_token1] = ACTIONS(2338), - [aux_sym_session_type_token1] = ACTIONS(2338), - [aux_sym_set_env_token1] = ACTIONS(2338), - [aux_sym_stdin_null_token1] = ACTIONS(2338), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2338), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2338), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2338), - [aux_sym_syslog_facility_token1] = ACTIONS(2338), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2338), - [aux_sym_keep_alive_token1] = ACTIONS(2338), - [aux_sym_tag_token1] = ACTIONS(2338), - [aux_sym_tunnel_token1] = ACTIONS(2340), - [aux_sym_tunnel_device_token1] = ACTIONS(2338), - [aux_sym_update_host_keys_token1] = ACTIONS(2338), - [aux_sym_use_keychain_token1] = ACTIONS(2338), - [aux_sym_use_roaming_token1] = ACTIONS(2338), - [aux_sym_user_token1] = ACTIONS(2340), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2338), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2338), - [aux_sym_visual_host_key_token1] = ACTIONS(2338), - [aux_sym_xauth_location_token1] = ACTIONS(2338), + [ts_builtin_sym_end] = ACTIONS(2347), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(2347), + [aux_sym_match_token1] = ACTIONS(2347), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2347), + [aux_sym_address_family_token1] = ACTIONS(2347), + [aux_sym_batch_mode_token1] = ACTIONS(2347), + [aux_sym_bind_address_token1] = ACTIONS(2347), + [aux_sym_bind_interface_token1] = ACTIONS(2347), + [aux_sym_canonical_domains_token1] = ACTIONS(2347), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2347), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2347), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2347), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2347), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2347), + [aux_sym_certificate_file_token1] = ACTIONS(2347), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2347), + [aux_sym_channel_timeout_token1] = ACTIONS(2347), + [aux_sym_check_host_ip_token1] = ACTIONS(2347), + [aux_sym_ciphers_token1] = ACTIONS(2347), + [aux_sym_cipher_token1] = ACTIONS(2349), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2347), + [aux_sym_compression_token1] = ACTIONS(2347), + [aux_sym_connection_attempts_token1] = ACTIONS(2347), + [aux_sym_connect_timeout_token1] = ACTIONS(2347), + [aux_sym_control_master_token1] = ACTIONS(2347), + [aux_sym_control_path_token1] = ACTIONS(2347), + [aux_sym_control_persist_token1] = ACTIONS(2347), + [aux_sym_dynamic_forward_token1] = ACTIONS(2347), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2347), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2347), + [aux_sym_escape_char_token1] = ACTIONS(2347), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2347), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2347), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2347), + [aux_sym_forward_agent_token1] = ACTIONS(2347), + [aux_sym_forward_x11_token1] = ACTIONS(2349), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2347), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2347), + [aux_sym_gateway_ports_token1] = ACTIONS(2347), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2347), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2347), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2347), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2347), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2347), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2347), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2347), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2347), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2347), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2347), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2347), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2347), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2347), + [aux_sym_host_key_alias_token1] = ACTIONS(2347), + [aux_sym_hostname_token1] = ACTIONS(2347), + [aux_sym_identities_only_token1] = ACTIONS(2347), + [aux_sym_identity_agent_token1] = ACTIONS(2347), + [aux_sym_identity_file_token1] = ACTIONS(2347), + [aux_sym_ignore_unknown_token1] = ACTIONS(2347), + [aux_sym_include_token1] = ACTIONS(2347), + [aux_sym_ip_qos_token1] = ACTIONS(2347), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2347), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2347), + [aux_sym_kex_algorithms_token1] = ACTIONS(2347), + [aux_sym_known_hosts_command_token1] = ACTIONS(2347), + [aux_sym_local_command_token1] = ACTIONS(2347), + [aux_sym_local_forward_token1] = ACTIONS(2347), + [aux_sym_log_level_token1] = ACTIONS(2347), + [aux_sym_log_verbose_token1] = ACTIONS(2347), + [aux_sym_macs_token1] = ACTIONS(2347), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2347), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2347), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2347), + [aux_sym_password_authentication_token1] = ACTIONS(2347), + [aux_sym_permit_local_command_token1] = ACTIONS(2347), + [aux_sym_permit_remote_open_token1] = ACTIONS(2347), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2347), + [aux_sym_port_token1] = ACTIONS(2347), + [aux_sym_preferred_authentications_token1] = ACTIONS(2347), + [aux_sym_protocol_token1] = ACTIONS(2347), + [aux_sym_proxy_command_token1] = ACTIONS(2347), + [aux_sym_proxy_jump_token1] = ACTIONS(2347), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2347), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2347), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2347), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2347), + [aux_sym_rekey_limit_token1] = ACTIONS(2347), + [aux_sym_remote_command_token1] = ACTIONS(2347), + [aux_sym_remote_forward_token1] = ACTIONS(2347), + [aux_sym_request_tty_token1] = ACTIONS(2347), + [aux_sym_required_rsa_size_token1] = ACTIONS(2347), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2347), + [aux_sym_security_key_provider_token1] = ACTIONS(2347), + [aux_sym_send_env_token1] = ACTIONS(2347), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2347), + [aux_sym_server_alive_interval_token1] = ACTIONS(2347), + [aux_sym_session_type_token1] = ACTIONS(2347), + [aux_sym_set_env_token1] = ACTIONS(2347), + [aux_sym_stdin_null_token1] = ACTIONS(2347), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2347), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2347), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2347), + [aux_sym_syslog_facility_token1] = ACTIONS(2347), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2347), + [aux_sym_keep_alive_token1] = ACTIONS(2347), + [aux_sym_tag_token1] = ACTIONS(2347), + [aux_sym_tunnel_token1] = ACTIONS(2349), + [aux_sym_tunnel_device_token1] = ACTIONS(2347), + [aux_sym_update_host_keys_token1] = ACTIONS(2347), + [aux_sym_use_keychain_token1] = ACTIONS(2347), + [aux_sym_use_roaming_token1] = ACTIONS(2347), + [aux_sym_user_token1] = ACTIONS(2349), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2347), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2347), + [aux_sym_visual_host_key_token1] = ACTIONS(2347), + [aux_sym_xauth_location_token1] = ACTIONS(2347), }, [311] = { - [ts_builtin_sym_end] = ACTIONS(2344), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2346), - [anon_sym_DQUOTE] = ACTIONS(2344), - [aux_sym_match_token1] = ACTIONS(2344), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2344), - [aux_sym_address_family_token1] = ACTIONS(2344), - [aux_sym_batch_mode_token1] = ACTIONS(2344), - [aux_sym_bind_address_token1] = ACTIONS(2344), - [aux_sym_bind_interface_token1] = ACTIONS(2344), - [aux_sym_canonical_domains_token1] = ACTIONS(2344), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2344), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2344), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2344), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2344), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2344), - [aux_sym_certificate_file_token1] = ACTIONS(2344), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2344), - [aux_sym_channel_timeout_token1] = ACTIONS(2344), - [aux_sym_check_host_ip_token1] = ACTIONS(2344), - [aux_sym_ciphers_token1] = ACTIONS(2344), - [aux_sym_cipher_token1] = ACTIONS(2346), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2344), - [aux_sym_compression_token1] = ACTIONS(2344), - [aux_sym_connection_attempts_token1] = ACTIONS(2344), - [aux_sym_connect_timeout_token1] = ACTIONS(2344), - [aux_sym_control_master_token1] = ACTIONS(2344), - [aux_sym_control_path_token1] = ACTIONS(2344), - [aux_sym_control_persist_token1] = ACTIONS(2344), - [aux_sym_dynamic_forward_token1] = ACTIONS(2344), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2344), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2344), - [aux_sym_escape_char_token1] = ACTIONS(2344), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2344), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2344), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2344), - [aux_sym_forward_agent_token1] = ACTIONS(2344), - [aux_sym_forward_x11_token1] = ACTIONS(2346), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2344), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2344), - [aux_sym_gateway_ports_token1] = ACTIONS(2344), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2344), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2344), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2344), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2344), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2344), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2344), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2344), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2344), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2344), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2344), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2344), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2344), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2344), - [aux_sym_host_key_alias_token1] = ACTIONS(2344), - [aux_sym_hostname_token1] = ACTIONS(2344), - [aux_sym_identities_only_token1] = ACTIONS(2344), - [aux_sym_identity_agent_token1] = ACTIONS(2344), - [aux_sym_identity_file_token1] = ACTIONS(2344), - [aux_sym_ignore_unknown_token1] = ACTIONS(2344), - [aux_sym_include_token1] = ACTIONS(2344), - [aux_sym_ip_qos_token1] = ACTIONS(2344), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2344), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2344), - [aux_sym_kex_algorithms_token1] = ACTIONS(2344), - [aux_sym_known_hosts_command_token1] = ACTIONS(2344), - [aux_sym_local_command_token1] = ACTIONS(2344), - [aux_sym_local_forward_token1] = ACTIONS(2344), - [aux_sym_log_level_token1] = ACTIONS(2344), - [aux_sym_log_verbose_token1] = ACTIONS(2344), - [aux_sym_macs_token1] = ACTIONS(2344), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2344), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2344), - [aux_sym_password_authentication_token1] = ACTIONS(2344), - [aux_sym_permit_local_command_token1] = ACTIONS(2344), - [aux_sym_permit_remote_open_token1] = ACTIONS(2344), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2344), - [aux_sym_port_token1] = ACTIONS(2344), - [aux_sym_preferred_authentications_token1] = ACTIONS(2344), - [aux_sym_protocol_token1] = ACTIONS(2344), - [aux_sym_proxy_command_token1] = ACTIONS(2344), - [aux_sym_proxy_jump_token1] = ACTIONS(2344), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2344), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2344), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2344), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2344), - [aux_sym_rekey_limit_token1] = ACTIONS(2344), - [aux_sym_remote_command_token1] = ACTIONS(2344), - [aux_sym_remote_forward_token1] = ACTIONS(2344), - [aux_sym_request_tty_token1] = ACTIONS(2344), - [aux_sym_required_rsa_size_token1] = ACTIONS(2344), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2344), - [aux_sym_security_key_provider_token1] = ACTIONS(2344), - [aux_sym_send_env_token1] = ACTIONS(2344), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2344), - [aux_sym_server_alive_interval_token1] = ACTIONS(2344), - [aux_sym_session_type_token1] = ACTIONS(2344), - [aux_sym_set_env_token1] = ACTIONS(2344), - [aux_sym_stdin_null_token1] = ACTIONS(2344), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2344), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2344), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2344), - [aux_sym_syslog_facility_token1] = ACTIONS(2344), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2344), - [aux_sym_keep_alive_token1] = ACTIONS(2344), - [aux_sym_tag_token1] = ACTIONS(2344), - [aux_sym_tunnel_token1] = ACTIONS(2346), - [aux_sym_tunnel_device_token1] = ACTIONS(2344), - [aux_sym_update_host_keys_token1] = ACTIONS(2344), - [aux_sym_use_keychain_token1] = ACTIONS(2344), - [aux_sym_use_roaming_token1] = ACTIONS(2344), - [aux_sym_user_token1] = ACTIONS(2346), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2344), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2344), - [aux_sym_visual_host_key_token1] = ACTIONS(2344), - [aux_sym_xauth_location_token1] = ACTIONS(2344), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(2355), + [aux_sym_match_token1] = ACTIONS(2351), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2351), + [aux_sym_address_family_token1] = ACTIONS(2351), + [aux_sym_batch_mode_token1] = ACTIONS(2351), + [aux_sym_bind_address_token1] = ACTIONS(2351), + [aux_sym_bind_interface_token1] = ACTIONS(2351), + [aux_sym_canonical_domains_token1] = ACTIONS(2351), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2351), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2351), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2351), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2351), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2351), + [aux_sym_certificate_file_token1] = ACTIONS(2351), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2351), + [aux_sym_channel_timeout_token1] = ACTIONS(2351), + [aux_sym_check_host_ip_token1] = ACTIONS(2351), + [aux_sym_ciphers_token1] = ACTIONS(2351), + [aux_sym_cipher_token1] = ACTIONS(2353), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2351), + [aux_sym_compression_token1] = ACTIONS(2351), + [aux_sym_connection_attempts_token1] = ACTIONS(2351), + [aux_sym_connect_timeout_token1] = ACTIONS(2351), + [aux_sym_control_master_token1] = ACTIONS(2351), + [aux_sym_control_path_token1] = ACTIONS(2351), + [aux_sym_control_persist_token1] = ACTIONS(2351), + [aux_sym_dynamic_forward_token1] = ACTIONS(2351), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2351), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2351), + [aux_sym_escape_char_token1] = ACTIONS(2351), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2351), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2351), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2351), + [aux_sym_forward_agent_token1] = ACTIONS(2351), + [aux_sym_forward_x11_token1] = ACTIONS(2353), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2351), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2351), + [aux_sym_gateway_ports_token1] = ACTIONS(2351), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2351), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2351), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2351), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2351), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2351), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2351), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2351), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2351), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2351), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2351), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2351), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2351), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2351), + [aux_sym_host_key_alias_token1] = ACTIONS(2351), + [aux_sym_hostname_token1] = ACTIONS(2351), + [aux_sym_identities_only_token1] = ACTIONS(2351), + [aux_sym_identity_agent_token1] = ACTIONS(2351), + [aux_sym_identity_file_token1] = ACTIONS(2351), + [aux_sym_ignore_unknown_token1] = ACTIONS(2351), + [aux_sym_include_token1] = ACTIONS(2351), + [aux_sym_ip_qos_token1] = ACTIONS(2351), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2351), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2351), + [aux_sym_kex_algorithms_token1] = ACTIONS(2351), + [aux_sym_known_hosts_command_token1] = ACTIONS(2351), + [aux_sym_local_command_token1] = ACTIONS(2351), + [aux_sym_local_forward_token1] = ACTIONS(2351), + [aux_sym_log_level_token1] = ACTIONS(2351), + [aux_sym_log_verbose_token1] = ACTIONS(2351), + [aux_sym_macs_token1] = ACTIONS(2351), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2351), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2351), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2351), + [aux_sym_password_authentication_token1] = ACTIONS(2351), + [aux_sym_permit_local_command_token1] = ACTIONS(2351), + [aux_sym_permit_remote_open_token1] = ACTIONS(2351), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2351), + [aux_sym_port_token1] = ACTIONS(2351), + [aux_sym_preferred_authentications_token1] = ACTIONS(2351), + [aux_sym_protocol_token1] = ACTIONS(2351), + [aux_sym_proxy_command_token1] = ACTIONS(2351), + [aux_sym_proxy_jump_token1] = ACTIONS(2351), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2351), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2351), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2351), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2351), + [aux_sym_rekey_limit_token1] = ACTIONS(2351), + [aux_sym_remote_command_token1] = ACTIONS(2351), + [aux_sym_remote_forward_token1] = ACTIONS(2351), + [aux_sym_request_tty_token1] = ACTIONS(2351), + [aux_sym_required_rsa_size_token1] = ACTIONS(2351), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2351), + [aux_sym_security_key_provider_token1] = ACTIONS(2351), + [aux_sym_send_env_token1] = ACTIONS(2351), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2351), + [aux_sym_server_alive_interval_token1] = ACTIONS(2351), + [aux_sym_session_type_token1] = ACTIONS(2351), + [aux_sym_set_env_token1] = ACTIONS(2351), + [aux_sym_stdin_null_token1] = ACTIONS(2351), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2351), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2351), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2351), + [aux_sym_syslog_facility_token1] = ACTIONS(2351), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2351), + [aux_sym_keep_alive_token1] = ACTIONS(2351), + [aux_sym_tag_token1] = ACTIONS(2351), + [aux_sym_tunnel_token1] = ACTIONS(2353), + [aux_sym_tunnel_device_token1] = ACTIONS(2351), + [aux_sym_update_host_keys_token1] = ACTIONS(2351), + [aux_sym_use_keychain_token1] = ACTIONS(2351), + [aux_sym_use_roaming_token1] = ACTIONS(2351), + [aux_sym_user_token1] = ACTIONS(2353), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2351), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2351), + [aux_sym_visual_host_key_token1] = ACTIONS(2351), + [aux_sym_xauth_location_token1] = ACTIONS(2351), }, [312] = { - [ts_builtin_sym_end] = ACTIONS(2348), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2350), - [anon_sym_DQUOTE] = ACTIONS(2348), - [aux_sym_match_token1] = ACTIONS(2348), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2348), - [aux_sym_address_family_token1] = ACTIONS(2348), - [aux_sym_batch_mode_token1] = ACTIONS(2348), - [aux_sym_bind_address_token1] = ACTIONS(2348), - [aux_sym_bind_interface_token1] = ACTIONS(2348), - [aux_sym_canonical_domains_token1] = ACTIONS(2348), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2348), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2348), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2348), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2348), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2348), - [aux_sym_certificate_file_token1] = ACTIONS(2348), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2348), - [aux_sym_channel_timeout_token1] = ACTIONS(2348), - [aux_sym_check_host_ip_token1] = ACTIONS(2348), - [aux_sym_ciphers_token1] = ACTIONS(2348), - [aux_sym_cipher_token1] = ACTIONS(2350), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2348), - [aux_sym_compression_token1] = ACTIONS(2348), - [aux_sym_connection_attempts_token1] = ACTIONS(2348), - [aux_sym_connect_timeout_token1] = ACTIONS(2348), - [aux_sym_control_master_token1] = ACTIONS(2348), - [aux_sym_control_path_token1] = ACTIONS(2348), - [aux_sym_control_persist_token1] = ACTIONS(2348), - [aux_sym_dynamic_forward_token1] = ACTIONS(2348), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2348), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2348), - [aux_sym_escape_char_token1] = ACTIONS(2348), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2348), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2348), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2348), - [aux_sym_forward_agent_token1] = ACTIONS(2348), - [aux_sym_forward_x11_token1] = ACTIONS(2350), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2348), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2348), - [aux_sym_gateway_ports_token1] = ACTIONS(2348), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2348), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2348), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2348), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2348), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2348), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2348), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2348), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2348), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2348), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2348), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2348), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2348), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2348), - [aux_sym_host_key_alias_token1] = ACTIONS(2348), - [aux_sym_hostname_token1] = ACTIONS(2348), - [aux_sym_identities_only_token1] = ACTIONS(2348), - [aux_sym_identity_agent_token1] = ACTIONS(2348), - [aux_sym_identity_file_token1] = ACTIONS(2348), - [aux_sym_ignore_unknown_token1] = ACTIONS(2348), - [aux_sym_include_token1] = ACTIONS(2348), - [aux_sym_ip_qos_token1] = ACTIONS(2348), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2348), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2348), - [aux_sym_kex_algorithms_token1] = ACTIONS(2348), - [aux_sym_known_hosts_command_token1] = ACTIONS(2348), - [aux_sym_local_command_token1] = ACTIONS(2348), - [aux_sym_local_forward_token1] = ACTIONS(2348), - [aux_sym_log_level_token1] = ACTIONS(2348), - [aux_sym_log_verbose_token1] = ACTIONS(2348), - [aux_sym_macs_token1] = ACTIONS(2348), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2348), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2348), - [aux_sym_password_authentication_token1] = ACTIONS(2348), - [aux_sym_permit_local_command_token1] = ACTIONS(2348), - [aux_sym_permit_remote_open_token1] = ACTIONS(2348), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2348), - [aux_sym_port_token1] = ACTIONS(2348), - [aux_sym_preferred_authentications_token1] = ACTIONS(2348), - [aux_sym_protocol_token1] = ACTIONS(2348), - [aux_sym_proxy_command_token1] = ACTIONS(2348), - [aux_sym_proxy_jump_token1] = ACTIONS(2348), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2348), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2348), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2348), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2348), - [aux_sym_rekey_limit_token1] = ACTIONS(2348), - [aux_sym_remote_command_token1] = ACTIONS(2348), - [aux_sym_remote_forward_token1] = ACTIONS(2348), - [aux_sym_request_tty_token1] = ACTIONS(2348), - [aux_sym_required_rsa_size_token1] = ACTIONS(2348), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2348), - [aux_sym_security_key_provider_token1] = ACTIONS(2348), - [aux_sym_send_env_token1] = ACTIONS(2348), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2348), - [aux_sym_server_alive_interval_token1] = ACTIONS(2348), - [aux_sym_session_type_token1] = ACTIONS(2348), - [aux_sym_set_env_token1] = ACTIONS(2348), - [aux_sym_stdin_null_token1] = ACTIONS(2348), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2348), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2348), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2348), - [aux_sym_syslog_facility_token1] = ACTIONS(2348), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2348), - [aux_sym_keep_alive_token1] = ACTIONS(2348), - [aux_sym_tag_token1] = ACTIONS(2348), - [aux_sym_tunnel_token1] = ACTIONS(2350), - [aux_sym_tunnel_device_token1] = ACTIONS(2348), - [aux_sym_update_host_keys_token1] = ACTIONS(2348), - [aux_sym_use_keychain_token1] = ACTIONS(2348), - [aux_sym_use_roaming_token1] = ACTIONS(2348), - [aux_sym_user_token1] = ACTIONS(2350), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2348), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2348), - [aux_sym_visual_host_key_token1] = ACTIONS(2348), - [aux_sym_xauth_location_token1] = ACTIONS(2348), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(2361), + [aux_sym_match_token1] = ACTIONS(2357), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2357), + [aux_sym_address_family_token1] = ACTIONS(2357), + [aux_sym_batch_mode_token1] = ACTIONS(2357), + [aux_sym_bind_address_token1] = ACTIONS(2357), + [aux_sym_bind_interface_token1] = ACTIONS(2357), + [aux_sym_canonical_domains_token1] = ACTIONS(2357), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2357), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2357), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2357), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2357), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2357), + [aux_sym_certificate_file_token1] = ACTIONS(2357), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2357), + [aux_sym_channel_timeout_token1] = ACTIONS(2357), + [aux_sym_check_host_ip_token1] = ACTIONS(2357), + [aux_sym_ciphers_token1] = ACTIONS(2357), + [aux_sym_cipher_token1] = ACTIONS(2359), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2357), + [aux_sym_compression_token1] = ACTIONS(2357), + [aux_sym_connection_attempts_token1] = ACTIONS(2357), + [aux_sym_connect_timeout_token1] = ACTIONS(2357), + [aux_sym_control_master_token1] = ACTIONS(2357), + [aux_sym_control_path_token1] = ACTIONS(2357), + [aux_sym_control_persist_token1] = ACTIONS(2357), + [aux_sym_dynamic_forward_token1] = ACTIONS(2357), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2357), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2357), + [aux_sym_escape_char_token1] = ACTIONS(2357), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2357), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2357), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2357), + [aux_sym_forward_agent_token1] = ACTIONS(2357), + [aux_sym_forward_x11_token1] = ACTIONS(2359), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2357), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2357), + [aux_sym_gateway_ports_token1] = ACTIONS(2357), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2357), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2357), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2357), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2357), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2357), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2357), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2357), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2357), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2357), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2357), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2357), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2357), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2357), + [aux_sym_host_key_alias_token1] = ACTIONS(2357), + [aux_sym_hostname_token1] = ACTIONS(2357), + [aux_sym_identities_only_token1] = ACTIONS(2357), + [aux_sym_identity_agent_token1] = ACTIONS(2357), + [aux_sym_identity_file_token1] = ACTIONS(2357), + [aux_sym_ignore_unknown_token1] = ACTIONS(2357), + [aux_sym_include_token1] = ACTIONS(2357), + [aux_sym_ip_qos_token1] = ACTIONS(2357), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2357), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2357), + [aux_sym_kex_algorithms_token1] = ACTIONS(2357), + [aux_sym_known_hosts_command_token1] = ACTIONS(2357), + [aux_sym_local_command_token1] = ACTIONS(2357), + [aux_sym_local_forward_token1] = ACTIONS(2357), + [aux_sym_log_level_token1] = ACTIONS(2357), + [aux_sym_log_verbose_token1] = ACTIONS(2357), + [aux_sym_macs_token1] = ACTIONS(2357), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2357), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2357), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2357), + [aux_sym_password_authentication_token1] = ACTIONS(2357), + [aux_sym_permit_local_command_token1] = ACTIONS(2357), + [aux_sym_permit_remote_open_token1] = ACTIONS(2357), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2357), + [aux_sym_port_token1] = ACTIONS(2357), + [aux_sym_preferred_authentications_token1] = ACTIONS(2357), + [aux_sym_protocol_token1] = ACTIONS(2357), + [aux_sym_proxy_command_token1] = ACTIONS(2357), + [aux_sym_proxy_jump_token1] = ACTIONS(2357), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2357), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2357), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2357), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2357), + [aux_sym_rekey_limit_token1] = ACTIONS(2357), + [aux_sym_remote_command_token1] = ACTIONS(2357), + [aux_sym_remote_forward_token1] = ACTIONS(2357), + [aux_sym_request_tty_token1] = ACTIONS(2357), + [aux_sym_required_rsa_size_token1] = ACTIONS(2357), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2357), + [aux_sym_security_key_provider_token1] = ACTIONS(2357), + [aux_sym_send_env_token1] = ACTIONS(2357), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2357), + [aux_sym_server_alive_interval_token1] = ACTIONS(2357), + [aux_sym_session_type_token1] = ACTIONS(2357), + [aux_sym_set_env_token1] = ACTIONS(2357), + [aux_sym_stdin_null_token1] = ACTIONS(2357), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2357), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2357), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2357), + [aux_sym_syslog_facility_token1] = ACTIONS(2357), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2357), + [aux_sym_keep_alive_token1] = ACTIONS(2357), + [aux_sym_tag_token1] = ACTIONS(2357), + [aux_sym_tunnel_token1] = ACTIONS(2359), + [aux_sym_tunnel_device_token1] = ACTIONS(2357), + [aux_sym_update_host_keys_token1] = ACTIONS(2357), + [aux_sym_use_keychain_token1] = ACTIONS(2357), + [aux_sym_use_roaming_token1] = ACTIONS(2357), + [aux_sym_user_token1] = ACTIONS(2359), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2357), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2357), + [aux_sym_visual_host_key_token1] = ACTIONS(2357), + [aux_sym_xauth_location_token1] = ACTIONS(2357), }, [313] = { - [ts_builtin_sym_end] = ACTIONS(2352), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2354), - [anon_sym_DQUOTE] = ACTIONS(2356), - [aux_sym_match_token1] = ACTIONS(2352), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2352), - [aux_sym_address_family_token1] = ACTIONS(2352), - [aux_sym_batch_mode_token1] = ACTIONS(2352), - [aux_sym_bind_address_token1] = ACTIONS(2352), - [aux_sym_bind_interface_token1] = ACTIONS(2352), - [aux_sym_canonical_domains_token1] = ACTIONS(2352), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2352), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2352), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2352), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2352), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2352), - [aux_sym_certificate_file_token1] = ACTIONS(2352), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2352), - [aux_sym_channel_timeout_token1] = ACTIONS(2352), - [aux_sym_check_host_ip_token1] = ACTIONS(2352), - [aux_sym_ciphers_token1] = ACTIONS(2352), - [aux_sym_cipher_token1] = ACTIONS(2354), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2352), - [aux_sym_compression_token1] = ACTIONS(2352), - [aux_sym_connection_attempts_token1] = ACTIONS(2352), - [aux_sym_connect_timeout_token1] = ACTIONS(2352), - [aux_sym_control_master_token1] = ACTIONS(2352), - [aux_sym_control_path_token1] = ACTIONS(2352), - [aux_sym_control_persist_token1] = ACTIONS(2352), - [aux_sym_dynamic_forward_token1] = ACTIONS(2352), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2352), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2352), - [aux_sym_escape_char_token1] = ACTIONS(2352), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2352), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2352), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2352), - [aux_sym_forward_agent_token1] = ACTIONS(2352), - [aux_sym_forward_x11_token1] = ACTIONS(2354), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2352), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2352), - [aux_sym_gateway_ports_token1] = ACTIONS(2352), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2352), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2352), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2352), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2352), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2352), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2352), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2352), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2352), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2352), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2352), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2352), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2352), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2352), - [aux_sym_host_key_alias_token1] = ACTIONS(2352), - [aux_sym_hostname_token1] = ACTIONS(2352), - [aux_sym_identities_only_token1] = ACTIONS(2352), - [aux_sym_identity_agent_token1] = ACTIONS(2352), - [aux_sym_identity_file_token1] = ACTIONS(2352), - [aux_sym_ignore_unknown_token1] = ACTIONS(2352), - [aux_sym_include_token1] = ACTIONS(2352), - [aux_sym_ip_qos_token1] = ACTIONS(2352), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2352), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2352), - [aux_sym_kex_algorithms_token1] = ACTIONS(2352), - [aux_sym_known_hosts_command_token1] = ACTIONS(2352), - [aux_sym_local_command_token1] = ACTIONS(2352), - [aux_sym_local_forward_token1] = ACTIONS(2352), - [aux_sym_log_level_token1] = ACTIONS(2352), - [aux_sym_log_verbose_token1] = ACTIONS(2352), - [aux_sym_macs_token1] = ACTIONS(2352), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2352), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2352), - [aux_sym_password_authentication_token1] = ACTIONS(2352), - [aux_sym_permit_local_command_token1] = ACTIONS(2352), - [aux_sym_permit_remote_open_token1] = ACTIONS(2352), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2352), - [aux_sym_port_token1] = ACTIONS(2352), - [aux_sym_preferred_authentications_token1] = ACTIONS(2352), - [aux_sym_protocol_token1] = ACTIONS(2352), - [aux_sym_proxy_command_token1] = ACTIONS(2352), - [aux_sym_proxy_jump_token1] = ACTIONS(2352), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2352), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2352), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2352), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2352), - [aux_sym_rekey_limit_token1] = ACTIONS(2352), - [aux_sym_remote_command_token1] = ACTIONS(2352), - [aux_sym_remote_forward_token1] = ACTIONS(2352), - [aux_sym_request_tty_token1] = ACTIONS(2352), - [aux_sym_required_rsa_size_token1] = ACTIONS(2352), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2352), - [aux_sym_security_key_provider_token1] = ACTIONS(2352), - [aux_sym_send_env_token1] = ACTIONS(2352), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2352), - [aux_sym_server_alive_interval_token1] = ACTIONS(2352), - [aux_sym_session_type_token1] = ACTIONS(2352), - [aux_sym_set_env_token1] = ACTIONS(2352), - [aux_sym_stdin_null_token1] = ACTIONS(2352), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2352), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2352), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2352), - [aux_sym_syslog_facility_token1] = ACTIONS(2352), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2352), - [aux_sym_keep_alive_token1] = ACTIONS(2352), - [aux_sym_tag_token1] = ACTIONS(2352), - [aux_sym_tunnel_token1] = ACTIONS(2354), - [aux_sym_tunnel_device_token1] = ACTIONS(2352), - [aux_sym_update_host_keys_token1] = ACTIONS(2352), - [aux_sym_use_keychain_token1] = ACTIONS(2352), - [aux_sym_use_roaming_token1] = ACTIONS(2352), - [aux_sym_user_token1] = ACTIONS(2354), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2352), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2352), - [aux_sym_visual_host_key_token1] = ACTIONS(2352), - [aux_sym_xauth_location_token1] = ACTIONS(2352), + [ts_builtin_sym_end] = ACTIONS(2363), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(2363), + [aux_sym_match_token1] = ACTIONS(2363), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2363), + [aux_sym_address_family_token1] = ACTIONS(2363), + [aux_sym_batch_mode_token1] = ACTIONS(2363), + [aux_sym_bind_address_token1] = ACTIONS(2363), + [aux_sym_bind_interface_token1] = ACTIONS(2363), + [aux_sym_canonical_domains_token1] = ACTIONS(2363), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2363), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2363), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2363), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2363), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2363), + [aux_sym_certificate_file_token1] = ACTIONS(2363), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2363), + [aux_sym_channel_timeout_token1] = ACTIONS(2363), + [aux_sym_check_host_ip_token1] = ACTIONS(2363), + [aux_sym_ciphers_token1] = ACTIONS(2363), + [aux_sym_cipher_token1] = ACTIONS(2365), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2363), + [aux_sym_compression_token1] = ACTIONS(2363), + [aux_sym_connection_attempts_token1] = ACTIONS(2363), + [aux_sym_connect_timeout_token1] = ACTIONS(2363), + [aux_sym_control_master_token1] = ACTIONS(2363), + [aux_sym_control_path_token1] = ACTIONS(2363), + [aux_sym_control_persist_token1] = ACTIONS(2363), + [aux_sym_dynamic_forward_token1] = ACTIONS(2363), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2363), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2363), + [aux_sym_escape_char_token1] = ACTIONS(2363), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2363), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2363), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2363), + [aux_sym_forward_agent_token1] = ACTIONS(2363), + [aux_sym_forward_x11_token1] = ACTIONS(2365), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2363), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2363), + [aux_sym_gateway_ports_token1] = ACTIONS(2363), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2363), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2363), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2363), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2363), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2363), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2363), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2363), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2363), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2363), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2363), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2363), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2363), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2363), + [aux_sym_host_key_alias_token1] = ACTIONS(2363), + [aux_sym_hostname_token1] = ACTIONS(2363), + [aux_sym_identities_only_token1] = ACTIONS(2363), + [aux_sym_identity_agent_token1] = ACTIONS(2363), + [aux_sym_identity_file_token1] = ACTIONS(2363), + [aux_sym_ignore_unknown_token1] = ACTIONS(2363), + [aux_sym_include_token1] = ACTIONS(2363), + [aux_sym_ip_qos_token1] = ACTIONS(2363), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2363), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2363), + [aux_sym_kex_algorithms_token1] = ACTIONS(2363), + [aux_sym_known_hosts_command_token1] = ACTIONS(2363), + [aux_sym_local_command_token1] = ACTIONS(2363), + [aux_sym_local_forward_token1] = ACTIONS(2363), + [aux_sym_log_level_token1] = ACTIONS(2363), + [aux_sym_log_verbose_token1] = ACTIONS(2363), + [aux_sym_macs_token1] = ACTIONS(2363), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2363), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2363), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2363), + [aux_sym_password_authentication_token1] = ACTIONS(2363), + [aux_sym_permit_local_command_token1] = ACTIONS(2363), + [aux_sym_permit_remote_open_token1] = ACTIONS(2363), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2363), + [aux_sym_port_token1] = ACTIONS(2363), + [aux_sym_preferred_authentications_token1] = ACTIONS(2363), + [aux_sym_protocol_token1] = ACTIONS(2363), + [aux_sym_proxy_command_token1] = ACTIONS(2363), + [aux_sym_proxy_jump_token1] = ACTIONS(2363), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2363), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2363), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2363), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2363), + [aux_sym_rekey_limit_token1] = ACTIONS(2363), + [aux_sym_remote_command_token1] = ACTIONS(2363), + [aux_sym_remote_forward_token1] = ACTIONS(2363), + [aux_sym_request_tty_token1] = ACTIONS(2363), + [aux_sym_required_rsa_size_token1] = ACTIONS(2363), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2363), + [aux_sym_security_key_provider_token1] = ACTIONS(2363), + [aux_sym_send_env_token1] = ACTIONS(2363), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2363), + [aux_sym_server_alive_interval_token1] = ACTIONS(2363), + [aux_sym_session_type_token1] = ACTIONS(2363), + [aux_sym_set_env_token1] = ACTIONS(2363), + [aux_sym_stdin_null_token1] = ACTIONS(2363), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2363), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2363), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2363), + [aux_sym_syslog_facility_token1] = ACTIONS(2363), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2363), + [aux_sym_keep_alive_token1] = ACTIONS(2363), + [aux_sym_tag_token1] = ACTIONS(2363), + [aux_sym_tunnel_token1] = ACTIONS(2365), + [aux_sym_tunnel_device_token1] = ACTIONS(2363), + [aux_sym_update_host_keys_token1] = ACTIONS(2363), + [aux_sym_use_keychain_token1] = ACTIONS(2363), + [aux_sym_use_roaming_token1] = ACTIONS(2363), + [aux_sym_user_token1] = ACTIONS(2365), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2363), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2363), + [aux_sym_visual_host_key_token1] = ACTIONS(2363), + [aux_sym_xauth_location_token1] = ACTIONS(2363), }, [314] = { - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2360), - [anon_sym_DQUOTE] = ACTIONS(2362), - [aux_sym_match_token1] = ACTIONS(2358), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2358), - [aux_sym_address_family_token1] = ACTIONS(2358), - [aux_sym_batch_mode_token1] = ACTIONS(2358), - [aux_sym_bind_address_token1] = ACTIONS(2358), - [aux_sym_bind_interface_token1] = ACTIONS(2358), - [aux_sym_canonical_domains_token1] = ACTIONS(2358), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2358), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2358), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2358), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2358), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2358), - [aux_sym_certificate_file_token1] = ACTIONS(2358), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2358), - [aux_sym_channel_timeout_token1] = ACTIONS(2358), - [aux_sym_check_host_ip_token1] = ACTIONS(2358), - [aux_sym_ciphers_token1] = ACTIONS(2358), - [aux_sym_cipher_token1] = ACTIONS(2360), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2358), - [aux_sym_compression_token1] = ACTIONS(2358), - [aux_sym_connection_attempts_token1] = ACTIONS(2358), - [aux_sym_connect_timeout_token1] = ACTIONS(2358), - [aux_sym_control_master_token1] = ACTIONS(2358), - [aux_sym_control_path_token1] = ACTIONS(2358), - [aux_sym_control_persist_token1] = ACTIONS(2358), - [aux_sym_dynamic_forward_token1] = ACTIONS(2358), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2358), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2358), - [aux_sym_escape_char_token1] = ACTIONS(2358), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2358), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2358), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2358), - [aux_sym_forward_agent_token1] = ACTIONS(2358), - [aux_sym_forward_x11_token1] = ACTIONS(2360), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2358), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2358), - [aux_sym_gateway_ports_token1] = ACTIONS(2358), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2358), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2358), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2358), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2358), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2358), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2358), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2358), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2358), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2358), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2358), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2358), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2358), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2358), - [aux_sym_host_key_alias_token1] = ACTIONS(2358), - [aux_sym_hostname_token1] = ACTIONS(2358), - [aux_sym_identities_only_token1] = ACTIONS(2358), - [aux_sym_identity_agent_token1] = ACTIONS(2358), - [aux_sym_identity_file_token1] = ACTIONS(2358), - [aux_sym_ignore_unknown_token1] = ACTIONS(2358), - [aux_sym_include_token1] = ACTIONS(2358), - [aux_sym_ip_qos_token1] = ACTIONS(2358), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2358), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2358), - [aux_sym_kex_algorithms_token1] = ACTIONS(2358), - [aux_sym_known_hosts_command_token1] = ACTIONS(2358), - [aux_sym_local_command_token1] = ACTIONS(2358), - [aux_sym_local_forward_token1] = ACTIONS(2358), - [aux_sym_log_level_token1] = ACTIONS(2358), - [aux_sym_log_verbose_token1] = ACTIONS(2358), - [aux_sym_macs_token1] = ACTIONS(2358), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2358), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2358), - [aux_sym_password_authentication_token1] = ACTIONS(2358), - [aux_sym_permit_local_command_token1] = ACTIONS(2358), - [aux_sym_permit_remote_open_token1] = ACTIONS(2358), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2358), - [aux_sym_port_token1] = ACTIONS(2358), - [aux_sym_preferred_authentications_token1] = ACTIONS(2358), - [aux_sym_protocol_token1] = ACTIONS(2358), - [aux_sym_proxy_command_token1] = ACTIONS(2358), - [aux_sym_proxy_jump_token1] = ACTIONS(2358), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2358), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2358), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2358), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2358), - [aux_sym_rekey_limit_token1] = ACTIONS(2358), - [aux_sym_remote_command_token1] = ACTIONS(2358), - [aux_sym_remote_forward_token1] = ACTIONS(2358), - [aux_sym_request_tty_token1] = ACTIONS(2358), - [aux_sym_required_rsa_size_token1] = ACTIONS(2358), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2358), - [aux_sym_security_key_provider_token1] = ACTIONS(2358), - [aux_sym_send_env_token1] = ACTIONS(2358), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2358), - [aux_sym_server_alive_interval_token1] = ACTIONS(2358), - [aux_sym_session_type_token1] = ACTIONS(2358), - [aux_sym_set_env_token1] = ACTIONS(2358), - [aux_sym_stdin_null_token1] = ACTIONS(2358), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2358), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2358), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2358), - [aux_sym_syslog_facility_token1] = ACTIONS(2358), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2358), - [aux_sym_keep_alive_token1] = ACTIONS(2358), - [aux_sym_tag_token1] = ACTIONS(2358), - [aux_sym_tunnel_token1] = ACTIONS(2360), - [aux_sym_tunnel_device_token1] = ACTIONS(2358), - [aux_sym_update_host_keys_token1] = ACTIONS(2358), - [aux_sym_use_keychain_token1] = ACTIONS(2358), - [aux_sym_use_roaming_token1] = ACTIONS(2358), - [aux_sym_user_token1] = ACTIONS(2360), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2358), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2358), - [aux_sym_visual_host_key_token1] = ACTIONS(2358), - [aux_sym_xauth_location_token1] = ACTIONS(2358), + [ts_builtin_sym_end] = ACTIONS(2367), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(2367), + [aux_sym_match_token1] = ACTIONS(2367), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2367), + [aux_sym_address_family_token1] = ACTIONS(2367), + [aux_sym_batch_mode_token1] = ACTIONS(2367), + [aux_sym_bind_address_token1] = ACTIONS(2367), + [aux_sym_bind_interface_token1] = ACTIONS(2367), + [aux_sym_canonical_domains_token1] = ACTIONS(2367), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2367), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2367), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2367), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2367), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2367), + [aux_sym_certificate_file_token1] = ACTIONS(2367), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2367), + [aux_sym_channel_timeout_token1] = ACTIONS(2367), + [aux_sym_check_host_ip_token1] = ACTIONS(2367), + [aux_sym_ciphers_token1] = ACTIONS(2367), + [aux_sym_cipher_token1] = ACTIONS(2369), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2367), + [aux_sym_compression_token1] = ACTIONS(2367), + [aux_sym_connection_attempts_token1] = ACTIONS(2367), + [aux_sym_connect_timeout_token1] = ACTIONS(2367), + [aux_sym_control_master_token1] = ACTIONS(2367), + [aux_sym_control_path_token1] = ACTIONS(2367), + [aux_sym_control_persist_token1] = ACTIONS(2367), + [aux_sym_dynamic_forward_token1] = ACTIONS(2367), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2367), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2367), + [aux_sym_escape_char_token1] = ACTIONS(2367), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2367), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2367), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2367), + [aux_sym_forward_agent_token1] = ACTIONS(2367), + [aux_sym_forward_x11_token1] = ACTIONS(2369), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2367), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2367), + [aux_sym_gateway_ports_token1] = ACTIONS(2367), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2367), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2367), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2367), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2367), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2367), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2367), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2367), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2367), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2367), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2367), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2367), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2367), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2367), + [aux_sym_host_key_alias_token1] = ACTIONS(2367), + [aux_sym_hostname_token1] = ACTIONS(2367), + [aux_sym_identities_only_token1] = ACTIONS(2367), + [aux_sym_identity_agent_token1] = ACTIONS(2367), + [aux_sym_identity_file_token1] = ACTIONS(2367), + [aux_sym_ignore_unknown_token1] = ACTIONS(2367), + [aux_sym_include_token1] = ACTIONS(2367), + [aux_sym_ip_qos_token1] = ACTIONS(2367), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2367), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2367), + [aux_sym_kex_algorithms_token1] = ACTIONS(2367), + [aux_sym_known_hosts_command_token1] = ACTIONS(2367), + [aux_sym_local_command_token1] = ACTIONS(2367), + [aux_sym_local_forward_token1] = ACTIONS(2367), + [aux_sym_log_level_token1] = ACTIONS(2367), + [aux_sym_log_verbose_token1] = ACTIONS(2367), + [aux_sym_macs_token1] = ACTIONS(2367), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2367), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2367), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2367), + [aux_sym_password_authentication_token1] = ACTIONS(2367), + [aux_sym_permit_local_command_token1] = ACTIONS(2367), + [aux_sym_permit_remote_open_token1] = ACTIONS(2367), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2367), + [aux_sym_port_token1] = ACTIONS(2367), + [aux_sym_preferred_authentications_token1] = ACTIONS(2367), + [aux_sym_protocol_token1] = ACTIONS(2367), + [aux_sym_proxy_command_token1] = ACTIONS(2367), + [aux_sym_proxy_jump_token1] = ACTIONS(2367), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2367), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2367), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2367), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2367), + [aux_sym_rekey_limit_token1] = ACTIONS(2367), + [aux_sym_remote_command_token1] = ACTIONS(2367), + [aux_sym_remote_forward_token1] = ACTIONS(2367), + [aux_sym_request_tty_token1] = ACTIONS(2367), + [aux_sym_required_rsa_size_token1] = ACTIONS(2367), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2367), + [aux_sym_security_key_provider_token1] = ACTIONS(2367), + [aux_sym_send_env_token1] = ACTIONS(2367), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2367), + [aux_sym_server_alive_interval_token1] = ACTIONS(2367), + [aux_sym_session_type_token1] = ACTIONS(2367), + [aux_sym_set_env_token1] = ACTIONS(2367), + [aux_sym_stdin_null_token1] = ACTIONS(2367), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2367), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2367), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2367), + [aux_sym_syslog_facility_token1] = ACTIONS(2367), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2367), + [aux_sym_keep_alive_token1] = ACTIONS(2367), + [aux_sym_tag_token1] = ACTIONS(2367), + [aux_sym_tunnel_token1] = ACTIONS(2369), + [aux_sym_tunnel_device_token1] = ACTIONS(2367), + [aux_sym_update_host_keys_token1] = ACTIONS(2367), + [aux_sym_use_keychain_token1] = ACTIONS(2367), + [aux_sym_use_roaming_token1] = ACTIONS(2367), + [aux_sym_user_token1] = ACTIONS(2369), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2367), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2367), + [aux_sym_visual_host_key_token1] = ACTIONS(2367), + [aux_sym_xauth_location_token1] = ACTIONS(2367), }, [315] = { - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2366), - [anon_sym_DQUOTE] = ACTIONS(2364), - [aux_sym_match_token1] = ACTIONS(2364), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2364), - [aux_sym_address_family_token1] = ACTIONS(2364), - [aux_sym_batch_mode_token1] = ACTIONS(2364), - [aux_sym_bind_address_token1] = ACTIONS(2364), - [aux_sym_bind_interface_token1] = ACTIONS(2364), - [aux_sym_canonical_domains_token1] = ACTIONS(2364), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2364), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2364), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2364), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2364), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2364), - [aux_sym_certificate_file_token1] = ACTIONS(2364), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2364), - [aux_sym_channel_timeout_token1] = ACTIONS(2364), - [aux_sym_check_host_ip_token1] = ACTIONS(2364), - [aux_sym_ciphers_token1] = ACTIONS(2364), - [aux_sym_cipher_token1] = ACTIONS(2366), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2364), - [aux_sym_compression_token1] = ACTIONS(2364), - [aux_sym_connection_attempts_token1] = ACTIONS(2364), - [aux_sym_connect_timeout_token1] = ACTIONS(2364), - [aux_sym_control_master_token1] = ACTIONS(2364), - [aux_sym_control_path_token1] = ACTIONS(2364), - [aux_sym_control_persist_token1] = ACTIONS(2364), - [aux_sym_dynamic_forward_token1] = ACTIONS(2364), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2364), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2364), - [aux_sym_escape_char_token1] = ACTIONS(2364), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2364), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2364), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2364), - [aux_sym_forward_agent_token1] = ACTIONS(2364), - [aux_sym_forward_x11_token1] = ACTIONS(2366), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2364), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2364), - [aux_sym_gateway_ports_token1] = ACTIONS(2364), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2364), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2364), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2364), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2364), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2364), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2364), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2364), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2364), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2364), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2364), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2364), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2364), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2364), - [aux_sym_host_key_alias_token1] = ACTIONS(2364), - [aux_sym_hostname_token1] = ACTIONS(2364), - [aux_sym_identities_only_token1] = ACTIONS(2364), - [aux_sym_identity_agent_token1] = ACTIONS(2364), - [aux_sym_identity_file_token1] = ACTIONS(2364), - [aux_sym_ignore_unknown_token1] = ACTIONS(2364), - [aux_sym_include_token1] = ACTIONS(2364), - [aux_sym_ip_qos_token1] = ACTIONS(2364), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2364), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2364), - [aux_sym_kex_algorithms_token1] = ACTIONS(2364), - [aux_sym_known_hosts_command_token1] = ACTIONS(2364), - [aux_sym_local_command_token1] = ACTIONS(2364), - [aux_sym_local_forward_token1] = ACTIONS(2364), - [aux_sym_log_level_token1] = ACTIONS(2364), - [aux_sym_log_verbose_token1] = ACTIONS(2364), - [aux_sym_macs_token1] = ACTIONS(2364), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2364), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2364), - [aux_sym_password_authentication_token1] = ACTIONS(2364), - [aux_sym_permit_local_command_token1] = ACTIONS(2364), - [aux_sym_permit_remote_open_token1] = ACTIONS(2364), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2364), - [aux_sym_port_token1] = ACTIONS(2364), - [aux_sym_preferred_authentications_token1] = ACTIONS(2364), - [aux_sym_protocol_token1] = ACTIONS(2364), - [aux_sym_proxy_command_token1] = ACTIONS(2364), - [aux_sym_proxy_jump_token1] = ACTIONS(2364), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2364), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2364), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2364), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2364), - [aux_sym_rekey_limit_token1] = ACTIONS(2364), - [aux_sym_remote_command_token1] = ACTIONS(2364), - [aux_sym_remote_forward_token1] = ACTIONS(2364), - [aux_sym_request_tty_token1] = ACTIONS(2364), - [aux_sym_required_rsa_size_token1] = ACTIONS(2364), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2364), - [aux_sym_security_key_provider_token1] = ACTIONS(2364), - [aux_sym_send_env_token1] = ACTIONS(2364), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2364), - [aux_sym_server_alive_interval_token1] = ACTIONS(2364), - [aux_sym_session_type_token1] = ACTIONS(2364), - [aux_sym_set_env_token1] = ACTIONS(2364), - [aux_sym_stdin_null_token1] = ACTIONS(2364), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2364), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2364), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2364), - [aux_sym_syslog_facility_token1] = ACTIONS(2364), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2364), - [aux_sym_keep_alive_token1] = ACTIONS(2364), - [aux_sym_tag_token1] = ACTIONS(2364), - [aux_sym_tunnel_token1] = ACTIONS(2366), - [aux_sym_tunnel_device_token1] = ACTIONS(2364), - [aux_sym_update_host_keys_token1] = ACTIONS(2364), - [aux_sym_use_keychain_token1] = ACTIONS(2364), - [aux_sym_use_roaming_token1] = ACTIONS(2364), - [aux_sym_user_token1] = ACTIONS(2366), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2364), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2364), - [aux_sym_visual_host_key_token1] = ACTIONS(2364), - [aux_sym_xauth_location_token1] = ACTIONS(2364), + [ts_builtin_sym_end] = ACTIONS(2371), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2375), + [aux_sym_match_token1] = ACTIONS(2371), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2371), + [aux_sym_address_family_token1] = ACTIONS(2371), + [aux_sym_batch_mode_token1] = ACTIONS(2371), + [aux_sym_bind_address_token1] = ACTIONS(2371), + [aux_sym_bind_interface_token1] = ACTIONS(2371), + [aux_sym_canonical_domains_token1] = ACTIONS(2371), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2371), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2371), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2371), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2371), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2371), + [aux_sym_certificate_file_token1] = ACTIONS(2371), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2371), + [aux_sym_channel_timeout_token1] = ACTIONS(2371), + [aux_sym_check_host_ip_token1] = ACTIONS(2371), + [aux_sym_ciphers_token1] = ACTIONS(2371), + [aux_sym_cipher_token1] = ACTIONS(2373), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2371), + [aux_sym_compression_token1] = ACTIONS(2371), + [aux_sym_connection_attempts_token1] = ACTIONS(2371), + [aux_sym_connect_timeout_token1] = ACTIONS(2371), + [aux_sym_control_master_token1] = ACTIONS(2371), + [aux_sym_control_path_token1] = ACTIONS(2371), + [aux_sym_control_persist_token1] = ACTIONS(2371), + [aux_sym_dynamic_forward_token1] = ACTIONS(2371), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2371), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2371), + [aux_sym_escape_char_token1] = ACTIONS(2371), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2371), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2371), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2371), + [aux_sym_forward_agent_token1] = ACTIONS(2371), + [aux_sym_forward_x11_token1] = ACTIONS(2373), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2371), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2371), + [aux_sym_gateway_ports_token1] = ACTIONS(2371), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2371), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2371), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2371), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2371), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2371), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2371), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2371), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2371), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2371), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2371), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2371), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2371), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2371), + [aux_sym_host_key_alias_token1] = ACTIONS(2371), + [aux_sym_hostname_token1] = ACTIONS(2371), + [aux_sym_identities_only_token1] = ACTIONS(2371), + [aux_sym_identity_agent_token1] = ACTIONS(2371), + [aux_sym_identity_file_token1] = ACTIONS(2371), + [aux_sym_ignore_unknown_token1] = ACTIONS(2371), + [aux_sym_include_token1] = ACTIONS(2371), + [aux_sym_ip_qos_token1] = ACTIONS(2371), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2371), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2371), + [aux_sym_kex_algorithms_token1] = ACTIONS(2371), + [aux_sym_known_hosts_command_token1] = ACTIONS(2371), + [aux_sym_local_command_token1] = ACTIONS(2371), + [aux_sym_local_forward_token1] = ACTIONS(2371), + [aux_sym_log_level_token1] = ACTIONS(2371), + [aux_sym_log_verbose_token1] = ACTIONS(2371), + [aux_sym_macs_token1] = ACTIONS(2371), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2371), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2371), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2371), + [aux_sym_password_authentication_token1] = ACTIONS(2371), + [aux_sym_permit_local_command_token1] = ACTIONS(2371), + [aux_sym_permit_remote_open_token1] = ACTIONS(2371), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2371), + [aux_sym_port_token1] = ACTIONS(2371), + [aux_sym_preferred_authentications_token1] = ACTIONS(2371), + [aux_sym_protocol_token1] = ACTIONS(2371), + [aux_sym_proxy_command_token1] = ACTIONS(2371), + [aux_sym_proxy_jump_token1] = ACTIONS(2371), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2371), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2371), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2371), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2371), + [aux_sym_rekey_limit_token1] = ACTIONS(2371), + [aux_sym_remote_command_token1] = ACTIONS(2371), + [aux_sym_remote_forward_token1] = ACTIONS(2371), + [aux_sym_request_tty_token1] = ACTIONS(2371), + [aux_sym_required_rsa_size_token1] = ACTIONS(2371), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2371), + [aux_sym_security_key_provider_token1] = ACTIONS(2371), + [aux_sym_send_env_token1] = ACTIONS(2371), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2371), + [aux_sym_server_alive_interval_token1] = ACTIONS(2371), + [aux_sym_session_type_token1] = ACTIONS(2371), + [aux_sym_set_env_token1] = ACTIONS(2371), + [aux_sym_stdin_null_token1] = ACTIONS(2371), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2371), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2371), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2371), + [aux_sym_syslog_facility_token1] = ACTIONS(2371), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2371), + [aux_sym_keep_alive_token1] = ACTIONS(2371), + [aux_sym_tag_token1] = ACTIONS(2371), + [aux_sym_tunnel_token1] = ACTIONS(2373), + [aux_sym_tunnel_device_token1] = ACTIONS(2371), + [aux_sym_update_host_keys_token1] = ACTIONS(2371), + [aux_sym_use_keychain_token1] = ACTIONS(2371), + [aux_sym_use_roaming_token1] = ACTIONS(2371), + [aux_sym_user_token1] = ACTIONS(2373), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2371), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2371), + [aux_sym_visual_host_key_token1] = ACTIONS(2371), + [aux_sym_xauth_location_token1] = ACTIONS(2371), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(2368), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2370), - [anon_sym_DQUOTE] = ACTIONS(2368), - [aux_sym_match_token1] = ACTIONS(2368), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2368), - [aux_sym_address_family_token1] = ACTIONS(2368), - [aux_sym_batch_mode_token1] = ACTIONS(2368), - [aux_sym_bind_address_token1] = ACTIONS(2368), - [aux_sym_bind_interface_token1] = ACTIONS(2368), - [aux_sym_canonical_domains_token1] = ACTIONS(2368), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2368), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2368), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2368), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2368), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2368), - [aux_sym_certificate_file_token1] = ACTIONS(2368), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2368), - [aux_sym_channel_timeout_token1] = ACTIONS(2368), - [aux_sym_check_host_ip_token1] = ACTIONS(2368), - [aux_sym_ciphers_token1] = ACTIONS(2368), - [aux_sym_cipher_token1] = ACTIONS(2370), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2368), - [aux_sym_compression_token1] = ACTIONS(2368), - [aux_sym_connection_attempts_token1] = ACTIONS(2368), - [aux_sym_connect_timeout_token1] = ACTIONS(2368), - [aux_sym_control_master_token1] = ACTIONS(2368), - [aux_sym_control_path_token1] = ACTIONS(2368), - [aux_sym_control_persist_token1] = ACTIONS(2368), - [aux_sym_dynamic_forward_token1] = ACTIONS(2368), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2368), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2368), - [aux_sym_escape_char_token1] = ACTIONS(2368), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2368), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2368), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2368), - [aux_sym_forward_agent_token1] = ACTIONS(2368), - [aux_sym_forward_x11_token1] = ACTIONS(2370), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2368), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2368), - [aux_sym_gateway_ports_token1] = ACTIONS(2368), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2368), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2368), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2368), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2368), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2368), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2368), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2368), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2368), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2368), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2368), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2368), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2368), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2368), - [aux_sym_host_key_alias_token1] = ACTIONS(2368), - [aux_sym_hostname_token1] = ACTIONS(2368), - [aux_sym_identities_only_token1] = ACTIONS(2368), - [aux_sym_identity_agent_token1] = ACTIONS(2368), - [aux_sym_identity_file_token1] = ACTIONS(2368), - [aux_sym_ignore_unknown_token1] = ACTIONS(2368), - [aux_sym_include_token1] = ACTIONS(2368), - [aux_sym_ip_qos_token1] = ACTIONS(2368), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2368), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2368), - [aux_sym_kex_algorithms_token1] = ACTIONS(2368), - [aux_sym_known_hosts_command_token1] = ACTIONS(2368), - [aux_sym_local_command_token1] = ACTIONS(2368), - [aux_sym_local_forward_token1] = ACTIONS(2368), - [aux_sym_log_level_token1] = ACTIONS(2368), - [aux_sym_log_verbose_token1] = ACTIONS(2368), - [aux_sym_macs_token1] = ACTIONS(2368), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2368), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2368), - [aux_sym_password_authentication_token1] = ACTIONS(2368), - [aux_sym_permit_local_command_token1] = ACTIONS(2368), - [aux_sym_permit_remote_open_token1] = ACTIONS(2368), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2368), - [aux_sym_port_token1] = ACTIONS(2368), - [aux_sym_preferred_authentications_token1] = ACTIONS(2368), - [aux_sym_protocol_token1] = ACTIONS(2368), - [aux_sym_proxy_command_token1] = ACTIONS(2368), - [aux_sym_proxy_jump_token1] = ACTIONS(2368), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2368), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2368), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2368), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2368), - [aux_sym_rekey_limit_token1] = ACTIONS(2368), - [aux_sym_remote_command_token1] = ACTIONS(2368), - [aux_sym_remote_forward_token1] = ACTIONS(2368), - [aux_sym_request_tty_token1] = ACTIONS(2368), - [aux_sym_required_rsa_size_token1] = ACTIONS(2368), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2368), - [aux_sym_security_key_provider_token1] = ACTIONS(2368), - [aux_sym_send_env_token1] = ACTIONS(2368), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2368), - [aux_sym_server_alive_interval_token1] = ACTIONS(2368), - [aux_sym_session_type_token1] = ACTIONS(2368), - [aux_sym_set_env_token1] = ACTIONS(2368), - [aux_sym_stdin_null_token1] = ACTIONS(2368), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2368), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2368), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2368), - [aux_sym_syslog_facility_token1] = ACTIONS(2368), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2368), - [aux_sym_keep_alive_token1] = ACTIONS(2368), - [aux_sym_tag_token1] = ACTIONS(2368), - [aux_sym_tunnel_token1] = ACTIONS(2370), - [aux_sym_tunnel_device_token1] = ACTIONS(2368), - [aux_sym_update_host_keys_token1] = ACTIONS(2368), - [aux_sym_use_keychain_token1] = ACTIONS(2368), - [aux_sym_use_roaming_token1] = ACTIONS(2368), - [aux_sym_user_token1] = ACTIONS(2370), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2368), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2368), - [aux_sym_visual_host_key_token1] = ACTIONS(2368), - [aux_sym_xauth_location_token1] = ACTIONS(2368), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(2381), + [aux_sym_match_token1] = ACTIONS(2377), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2377), + [aux_sym_address_family_token1] = ACTIONS(2377), + [aux_sym_batch_mode_token1] = ACTIONS(2377), + [aux_sym_bind_address_token1] = ACTIONS(2377), + [aux_sym_bind_interface_token1] = ACTIONS(2377), + [aux_sym_canonical_domains_token1] = ACTIONS(2377), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2377), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2377), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2377), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2377), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2377), + [aux_sym_certificate_file_token1] = ACTIONS(2377), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2377), + [aux_sym_channel_timeout_token1] = ACTIONS(2377), + [aux_sym_check_host_ip_token1] = ACTIONS(2377), + [aux_sym_ciphers_token1] = ACTIONS(2377), + [aux_sym_cipher_token1] = ACTIONS(2379), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2377), + [aux_sym_compression_token1] = ACTIONS(2377), + [aux_sym_connection_attempts_token1] = ACTIONS(2377), + [aux_sym_connect_timeout_token1] = ACTIONS(2377), + [aux_sym_control_master_token1] = ACTIONS(2377), + [aux_sym_control_path_token1] = ACTIONS(2377), + [aux_sym_control_persist_token1] = ACTIONS(2377), + [aux_sym_dynamic_forward_token1] = ACTIONS(2377), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2377), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2377), + [aux_sym_escape_char_token1] = ACTIONS(2377), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2377), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2377), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2377), + [aux_sym_forward_agent_token1] = ACTIONS(2377), + [aux_sym_forward_x11_token1] = ACTIONS(2379), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2377), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2377), + [aux_sym_gateway_ports_token1] = ACTIONS(2377), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2377), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2377), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2377), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2377), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2377), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2377), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2377), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2377), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2377), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2377), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2377), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2377), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2377), + [aux_sym_host_key_alias_token1] = ACTIONS(2377), + [aux_sym_hostname_token1] = ACTIONS(2377), + [aux_sym_identities_only_token1] = ACTIONS(2377), + [aux_sym_identity_agent_token1] = ACTIONS(2377), + [aux_sym_identity_file_token1] = ACTIONS(2377), + [aux_sym_ignore_unknown_token1] = ACTIONS(2377), + [aux_sym_include_token1] = ACTIONS(2377), + [aux_sym_ip_qos_token1] = ACTIONS(2377), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2377), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2377), + [aux_sym_kex_algorithms_token1] = ACTIONS(2377), + [aux_sym_known_hosts_command_token1] = ACTIONS(2377), + [aux_sym_local_command_token1] = ACTIONS(2377), + [aux_sym_local_forward_token1] = ACTIONS(2377), + [aux_sym_log_level_token1] = ACTIONS(2377), + [aux_sym_log_verbose_token1] = ACTIONS(2377), + [aux_sym_macs_token1] = ACTIONS(2377), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2377), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2377), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2377), + [aux_sym_password_authentication_token1] = ACTIONS(2377), + [aux_sym_permit_local_command_token1] = ACTIONS(2377), + [aux_sym_permit_remote_open_token1] = ACTIONS(2377), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2377), + [aux_sym_port_token1] = ACTIONS(2377), + [aux_sym_preferred_authentications_token1] = ACTIONS(2377), + [aux_sym_protocol_token1] = ACTIONS(2377), + [aux_sym_proxy_command_token1] = ACTIONS(2377), + [aux_sym_proxy_jump_token1] = ACTIONS(2377), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2377), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2377), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2377), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2377), + [aux_sym_rekey_limit_token1] = ACTIONS(2377), + [aux_sym_remote_command_token1] = ACTIONS(2377), + [aux_sym_remote_forward_token1] = ACTIONS(2377), + [aux_sym_request_tty_token1] = ACTIONS(2377), + [aux_sym_required_rsa_size_token1] = ACTIONS(2377), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2377), + [aux_sym_security_key_provider_token1] = ACTIONS(2377), + [aux_sym_send_env_token1] = ACTIONS(2377), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2377), + [aux_sym_server_alive_interval_token1] = ACTIONS(2377), + [aux_sym_session_type_token1] = ACTIONS(2377), + [aux_sym_set_env_token1] = ACTIONS(2377), + [aux_sym_stdin_null_token1] = ACTIONS(2377), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2377), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2377), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2377), + [aux_sym_syslog_facility_token1] = ACTIONS(2377), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2377), + [aux_sym_keep_alive_token1] = ACTIONS(2377), + [aux_sym_tag_token1] = ACTIONS(2377), + [aux_sym_tunnel_token1] = ACTIONS(2379), + [aux_sym_tunnel_device_token1] = ACTIONS(2377), + [aux_sym_update_host_keys_token1] = ACTIONS(2377), + [aux_sym_use_keychain_token1] = ACTIONS(2377), + [aux_sym_use_roaming_token1] = ACTIONS(2377), + [aux_sym_user_token1] = ACTIONS(2379), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2377), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2377), + [aux_sym_visual_host_key_token1] = ACTIONS(2377), + [aux_sym_xauth_location_token1] = ACTIONS(2377), }, [317] = { - [ts_builtin_sym_end] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2374), - [anon_sym_DQUOTE] = ACTIONS(2376), - [aux_sym_match_token1] = ACTIONS(2372), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2372), - [aux_sym_address_family_token1] = ACTIONS(2372), - [aux_sym_batch_mode_token1] = ACTIONS(2372), - [aux_sym_bind_address_token1] = ACTIONS(2372), - [aux_sym_bind_interface_token1] = ACTIONS(2372), - [aux_sym_canonical_domains_token1] = ACTIONS(2372), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2372), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2372), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2372), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2372), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2372), - [aux_sym_certificate_file_token1] = ACTIONS(2372), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2372), - [aux_sym_channel_timeout_token1] = ACTIONS(2372), - [aux_sym_check_host_ip_token1] = ACTIONS(2372), - [aux_sym_ciphers_token1] = ACTIONS(2372), - [aux_sym_cipher_token1] = ACTIONS(2374), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2372), - [aux_sym_compression_token1] = ACTIONS(2372), - [aux_sym_connection_attempts_token1] = ACTIONS(2372), - [aux_sym_connect_timeout_token1] = ACTIONS(2372), - [aux_sym_control_master_token1] = ACTIONS(2372), - [aux_sym_control_path_token1] = ACTIONS(2372), - [aux_sym_control_persist_token1] = ACTIONS(2372), - [aux_sym_dynamic_forward_token1] = ACTIONS(2372), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2372), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2372), - [aux_sym_escape_char_token1] = ACTIONS(2372), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2372), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2372), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2372), - [aux_sym_forward_agent_token1] = ACTIONS(2372), - [aux_sym_forward_x11_token1] = ACTIONS(2374), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2372), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2372), - [aux_sym_gateway_ports_token1] = ACTIONS(2372), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2372), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2372), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2372), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2372), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2372), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2372), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2372), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2372), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2372), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2372), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2372), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2372), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2372), - [aux_sym_host_key_alias_token1] = ACTIONS(2372), - [aux_sym_hostname_token1] = ACTIONS(2372), - [aux_sym_identities_only_token1] = ACTIONS(2372), - [aux_sym_identity_agent_token1] = ACTIONS(2372), - [aux_sym_identity_file_token1] = ACTIONS(2372), - [aux_sym_ignore_unknown_token1] = ACTIONS(2372), - [aux_sym_include_token1] = ACTIONS(2372), - [aux_sym_ip_qos_token1] = ACTIONS(2372), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2372), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2372), - [aux_sym_kex_algorithms_token1] = ACTIONS(2372), - [aux_sym_known_hosts_command_token1] = ACTIONS(2372), - [aux_sym_local_command_token1] = ACTIONS(2372), - [aux_sym_local_forward_token1] = ACTIONS(2372), - [aux_sym_log_level_token1] = ACTIONS(2372), - [aux_sym_log_verbose_token1] = ACTIONS(2372), - [aux_sym_macs_token1] = ACTIONS(2372), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2372), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2372), - [aux_sym_password_authentication_token1] = ACTIONS(2372), - [aux_sym_permit_local_command_token1] = ACTIONS(2372), - [aux_sym_permit_remote_open_token1] = ACTIONS(2372), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2372), - [aux_sym_port_token1] = ACTIONS(2372), - [aux_sym_preferred_authentications_token1] = ACTIONS(2372), - [aux_sym_protocol_token1] = ACTIONS(2372), - [aux_sym_proxy_command_token1] = ACTIONS(2372), - [aux_sym_proxy_jump_token1] = ACTIONS(2372), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2372), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2372), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2372), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2372), - [aux_sym_rekey_limit_token1] = ACTIONS(2372), - [aux_sym_remote_command_token1] = ACTIONS(2372), - [aux_sym_remote_forward_token1] = ACTIONS(2372), - [aux_sym_request_tty_token1] = ACTIONS(2372), - [aux_sym_required_rsa_size_token1] = ACTIONS(2372), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2372), - [aux_sym_security_key_provider_token1] = ACTIONS(2372), - [aux_sym_send_env_token1] = ACTIONS(2372), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2372), - [aux_sym_server_alive_interval_token1] = ACTIONS(2372), - [aux_sym_session_type_token1] = ACTIONS(2372), - [aux_sym_set_env_token1] = ACTIONS(2372), - [aux_sym_stdin_null_token1] = ACTIONS(2372), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2372), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2372), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2372), - [aux_sym_syslog_facility_token1] = ACTIONS(2372), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2372), - [aux_sym_keep_alive_token1] = ACTIONS(2372), - [aux_sym_tag_token1] = ACTIONS(2372), - [aux_sym_tunnel_token1] = ACTIONS(2374), - [aux_sym_tunnel_device_token1] = ACTIONS(2372), - [aux_sym_update_host_keys_token1] = ACTIONS(2372), - [aux_sym_use_keychain_token1] = ACTIONS(2372), - [aux_sym_use_roaming_token1] = ACTIONS(2372), - [aux_sym_user_token1] = ACTIONS(2374), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2372), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2372), - [aux_sym_visual_host_key_token1] = ACTIONS(2372), - [aux_sym_xauth_location_token1] = ACTIONS(2372), + [ts_builtin_sym_end] = ACTIONS(2383), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2383), + [aux_sym_match_token1] = ACTIONS(2383), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2383), + [aux_sym_address_family_token1] = ACTIONS(2383), + [aux_sym_batch_mode_token1] = ACTIONS(2383), + [aux_sym_bind_address_token1] = ACTIONS(2383), + [aux_sym_bind_interface_token1] = ACTIONS(2383), + [aux_sym_canonical_domains_token1] = ACTIONS(2383), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2383), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2383), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2383), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2383), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2383), + [aux_sym_certificate_file_token1] = ACTIONS(2383), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2383), + [aux_sym_channel_timeout_token1] = ACTIONS(2383), + [aux_sym_check_host_ip_token1] = ACTIONS(2383), + [aux_sym_ciphers_token1] = ACTIONS(2383), + [aux_sym_cipher_token1] = ACTIONS(2385), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2383), + [aux_sym_compression_token1] = ACTIONS(2383), + [aux_sym_connection_attempts_token1] = ACTIONS(2383), + [aux_sym_connect_timeout_token1] = ACTIONS(2383), + [aux_sym_control_master_token1] = ACTIONS(2383), + [aux_sym_control_path_token1] = ACTIONS(2383), + [aux_sym_control_persist_token1] = ACTIONS(2383), + [aux_sym_dynamic_forward_token1] = ACTIONS(2383), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2383), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2383), + [aux_sym_escape_char_token1] = ACTIONS(2383), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2383), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2383), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2383), + [aux_sym_forward_agent_token1] = ACTIONS(2383), + [aux_sym_forward_x11_token1] = ACTIONS(2385), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2383), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2383), + [aux_sym_gateway_ports_token1] = ACTIONS(2383), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2383), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2383), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2383), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2383), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2383), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2383), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2383), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2383), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2383), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2383), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2383), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2383), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2383), + [aux_sym_host_key_alias_token1] = ACTIONS(2383), + [aux_sym_hostname_token1] = ACTIONS(2383), + [aux_sym_identities_only_token1] = ACTIONS(2383), + [aux_sym_identity_agent_token1] = ACTIONS(2383), + [aux_sym_identity_file_token1] = ACTIONS(2383), + [aux_sym_ignore_unknown_token1] = ACTIONS(2383), + [aux_sym_include_token1] = ACTIONS(2383), + [aux_sym_ip_qos_token1] = ACTIONS(2383), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2383), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2383), + [aux_sym_kex_algorithms_token1] = ACTIONS(2383), + [aux_sym_known_hosts_command_token1] = ACTIONS(2383), + [aux_sym_local_command_token1] = ACTIONS(2383), + [aux_sym_local_forward_token1] = ACTIONS(2383), + [aux_sym_log_level_token1] = ACTIONS(2383), + [aux_sym_log_verbose_token1] = ACTIONS(2383), + [aux_sym_macs_token1] = ACTIONS(2383), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2383), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2383), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2383), + [aux_sym_password_authentication_token1] = ACTIONS(2383), + [aux_sym_permit_local_command_token1] = ACTIONS(2383), + [aux_sym_permit_remote_open_token1] = ACTIONS(2383), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2383), + [aux_sym_port_token1] = ACTIONS(2383), + [aux_sym_preferred_authentications_token1] = ACTIONS(2383), + [aux_sym_protocol_token1] = ACTIONS(2383), + [aux_sym_proxy_command_token1] = ACTIONS(2383), + [aux_sym_proxy_jump_token1] = ACTIONS(2383), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2383), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2383), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2383), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2383), + [aux_sym_rekey_limit_token1] = ACTIONS(2383), + [aux_sym_remote_command_token1] = ACTIONS(2383), + [aux_sym_remote_forward_token1] = ACTIONS(2383), + [aux_sym_request_tty_token1] = ACTIONS(2383), + [aux_sym_required_rsa_size_token1] = ACTIONS(2383), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2383), + [aux_sym_security_key_provider_token1] = ACTIONS(2383), + [aux_sym_send_env_token1] = ACTIONS(2383), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2383), + [aux_sym_server_alive_interval_token1] = ACTIONS(2383), + [aux_sym_session_type_token1] = ACTIONS(2383), + [aux_sym_set_env_token1] = ACTIONS(2383), + [aux_sym_stdin_null_token1] = ACTIONS(2383), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2383), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2383), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2383), + [aux_sym_syslog_facility_token1] = ACTIONS(2383), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2383), + [aux_sym_keep_alive_token1] = ACTIONS(2383), + [aux_sym_tag_token1] = ACTIONS(2383), + [aux_sym_tunnel_token1] = ACTIONS(2385), + [aux_sym_tunnel_device_token1] = ACTIONS(2383), + [aux_sym_update_host_keys_token1] = ACTIONS(2383), + [aux_sym_use_keychain_token1] = ACTIONS(2383), + [aux_sym_use_roaming_token1] = ACTIONS(2383), + [aux_sym_user_token1] = ACTIONS(2385), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2383), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2383), + [aux_sym_visual_host_key_token1] = ACTIONS(2383), + [aux_sym_xauth_location_token1] = ACTIONS(2383), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(2378), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2378), - [aux_sym_match_token1] = ACTIONS(2378), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2378), - [aux_sym_address_family_token1] = ACTIONS(2378), - [aux_sym_batch_mode_token1] = ACTIONS(2378), - [aux_sym_bind_address_token1] = ACTIONS(2378), - [aux_sym_bind_interface_token1] = ACTIONS(2378), - [aux_sym_canonical_domains_token1] = ACTIONS(2378), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2378), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2378), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2378), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2378), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2378), - [aux_sym_certificate_file_token1] = ACTIONS(2378), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2378), - [aux_sym_channel_timeout_token1] = ACTIONS(2378), - [aux_sym_check_host_ip_token1] = ACTIONS(2378), - [aux_sym_ciphers_token1] = ACTIONS(2378), - [aux_sym_cipher_token1] = ACTIONS(2380), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2378), - [aux_sym_compression_token1] = ACTIONS(2378), - [aux_sym_connection_attempts_token1] = ACTIONS(2378), - [aux_sym_connect_timeout_token1] = ACTIONS(2378), - [aux_sym_control_master_token1] = ACTIONS(2378), - [aux_sym_control_path_token1] = ACTIONS(2378), - [aux_sym_control_persist_token1] = ACTIONS(2378), - [aux_sym_dynamic_forward_token1] = ACTIONS(2378), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2378), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2378), - [aux_sym_escape_char_token1] = ACTIONS(2378), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2378), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2378), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2378), - [aux_sym_forward_agent_token1] = ACTIONS(2378), - [aux_sym_forward_x11_token1] = ACTIONS(2380), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2378), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2378), - [aux_sym_gateway_ports_token1] = ACTIONS(2378), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2378), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2378), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2378), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2378), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2378), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2378), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2378), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2378), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2378), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2378), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2378), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2378), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2378), - [aux_sym_host_key_alias_token1] = ACTIONS(2378), - [aux_sym_hostname_token1] = ACTIONS(2378), - [aux_sym_identities_only_token1] = ACTIONS(2378), - [aux_sym_identity_agent_token1] = ACTIONS(2378), - [aux_sym_identity_file_token1] = ACTIONS(2378), - [aux_sym_ignore_unknown_token1] = ACTIONS(2378), - [aux_sym_include_token1] = ACTIONS(2378), - [aux_sym_ip_qos_token1] = ACTIONS(2378), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2378), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2378), - [aux_sym_kex_algorithms_token1] = ACTIONS(2378), - [aux_sym_known_hosts_command_token1] = ACTIONS(2378), - [aux_sym_local_command_token1] = ACTIONS(2378), - [aux_sym_local_forward_token1] = ACTIONS(2378), - [aux_sym_log_level_token1] = ACTIONS(2378), - [aux_sym_log_verbose_token1] = ACTIONS(2378), - [aux_sym_macs_token1] = ACTIONS(2378), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2378), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2378), - [aux_sym_password_authentication_token1] = ACTIONS(2378), - [aux_sym_permit_local_command_token1] = ACTIONS(2378), - [aux_sym_permit_remote_open_token1] = ACTIONS(2378), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2378), - [aux_sym_port_token1] = ACTIONS(2378), - [aux_sym_preferred_authentications_token1] = ACTIONS(2378), - [aux_sym_protocol_token1] = ACTIONS(2378), - [aux_sym_proxy_command_token1] = ACTIONS(2378), - [aux_sym_proxy_jump_token1] = ACTIONS(2378), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2378), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2378), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2378), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2378), - [aux_sym_rekey_limit_token1] = ACTIONS(2378), - [aux_sym_remote_command_token1] = ACTIONS(2378), - [aux_sym_remote_forward_token1] = ACTIONS(2378), - [aux_sym_request_tty_token1] = ACTIONS(2378), - [aux_sym_required_rsa_size_token1] = ACTIONS(2378), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2378), - [aux_sym_security_key_provider_token1] = ACTIONS(2378), - [aux_sym_send_env_token1] = ACTIONS(2378), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2378), - [aux_sym_server_alive_interval_token1] = ACTIONS(2378), - [aux_sym_session_type_token1] = ACTIONS(2378), - [aux_sym_set_env_token1] = ACTIONS(2378), - [aux_sym_stdin_null_token1] = ACTIONS(2378), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2378), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2378), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2378), - [aux_sym_syslog_facility_token1] = ACTIONS(2378), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2378), - [aux_sym_keep_alive_token1] = ACTIONS(2378), - [aux_sym_tag_token1] = ACTIONS(2378), - [aux_sym_tunnel_token1] = ACTIONS(2380), - [aux_sym_tunnel_device_token1] = ACTIONS(2378), - [aux_sym_update_host_keys_token1] = ACTIONS(2378), - [aux_sym_use_keychain_token1] = ACTIONS(2378), - [aux_sym_use_roaming_token1] = ACTIONS(2378), - [aux_sym_user_token1] = ACTIONS(2380), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2378), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2378), - [aux_sym_visual_host_key_token1] = ACTIONS(2378), - [aux_sym_xauth_location_token1] = ACTIONS(2378), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2387), + [aux_sym_match_token1] = ACTIONS(2387), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2387), + [aux_sym_address_family_token1] = ACTIONS(2387), + [aux_sym_batch_mode_token1] = ACTIONS(2387), + [aux_sym_bind_address_token1] = ACTIONS(2387), + [aux_sym_bind_interface_token1] = ACTIONS(2387), + [aux_sym_canonical_domains_token1] = ACTIONS(2387), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2387), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2387), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2387), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2387), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2387), + [aux_sym_certificate_file_token1] = ACTIONS(2387), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2387), + [aux_sym_channel_timeout_token1] = ACTIONS(2387), + [aux_sym_check_host_ip_token1] = ACTIONS(2387), + [aux_sym_ciphers_token1] = ACTIONS(2387), + [aux_sym_cipher_token1] = ACTIONS(2389), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2387), + [aux_sym_compression_token1] = ACTIONS(2387), + [aux_sym_connection_attempts_token1] = ACTIONS(2387), + [aux_sym_connect_timeout_token1] = ACTIONS(2387), + [aux_sym_control_master_token1] = ACTIONS(2387), + [aux_sym_control_path_token1] = ACTIONS(2387), + [aux_sym_control_persist_token1] = ACTIONS(2387), + [aux_sym_dynamic_forward_token1] = ACTIONS(2387), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2387), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2387), + [aux_sym_escape_char_token1] = ACTIONS(2387), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2387), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2387), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2387), + [aux_sym_forward_agent_token1] = ACTIONS(2387), + [aux_sym_forward_x11_token1] = ACTIONS(2389), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2387), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2387), + [aux_sym_gateway_ports_token1] = ACTIONS(2387), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2387), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2387), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2387), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2387), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2387), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2387), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2387), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2387), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2387), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2387), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2387), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2387), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2387), + [aux_sym_host_key_alias_token1] = ACTIONS(2387), + [aux_sym_hostname_token1] = ACTIONS(2387), + [aux_sym_identities_only_token1] = ACTIONS(2387), + [aux_sym_identity_agent_token1] = ACTIONS(2387), + [aux_sym_identity_file_token1] = ACTIONS(2387), + [aux_sym_ignore_unknown_token1] = ACTIONS(2387), + [aux_sym_include_token1] = ACTIONS(2387), + [aux_sym_ip_qos_token1] = ACTIONS(2387), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2387), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2387), + [aux_sym_kex_algorithms_token1] = ACTIONS(2387), + [aux_sym_known_hosts_command_token1] = ACTIONS(2387), + [aux_sym_local_command_token1] = ACTIONS(2387), + [aux_sym_local_forward_token1] = ACTIONS(2387), + [aux_sym_log_level_token1] = ACTIONS(2387), + [aux_sym_log_verbose_token1] = ACTIONS(2387), + [aux_sym_macs_token1] = ACTIONS(2387), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2387), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2387), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2387), + [aux_sym_password_authentication_token1] = ACTIONS(2387), + [aux_sym_permit_local_command_token1] = ACTIONS(2387), + [aux_sym_permit_remote_open_token1] = ACTIONS(2387), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2387), + [aux_sym_port_token1] = ACTIONS(2387), + [aux_sym_preferred_authentications_token1] = ACTIONS(2387), + [aux_sym_protocol_token1] = ACTIONS(2387), + [aux_sym_proxy_command_token1] = ACTIONS(2387), + [aux_sym_proxy_jump_token1] = ACTIONS(2387), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2387), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2387), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2387), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2387), + [aux_sym_rekey_limit_token1] = ACTIONS(2387), + [aux_sym_remote_command_token1] = ACTIONS(2387), + [aux_sym_remote_forward_token1] = ACTIONS(2387), + [aux_sym_request_tty_token1] = ACTIONS(2387), + [aux_sym_required_rsa_size_token1] = ACTIONS(2387), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2387), + [aux_sym_security_key_provider_token1] = ACTIONS(2387), + [aux_sym_send_env_token1] = ACTIONS(2387), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2387), + [aux_sym_server_alive_interval_token1] = ACTIONS(2387), + [aux_sym_session_type_token1] = ACTIONS(2387), + [aux_sym_set_env_token1] = ACTIONS(2387), + [aux_sym_stdin_null_token1] = ACTIONS(2387), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2387), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2387), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2387), + [aux_sym_syslog_facility_token1] = ACTIONS(2387), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2387), + [aux_sym_keep_alive_token1] = ACTIONS(2387), + [aux_sym_tag_token1] = ACTIONS(2387), + [aux_sym_tunnel_token1] = ACTIONS(2389), + [aux_sym_tunnel_device_token1] = ACTIONS(2387), + [aux_sym_update_host_keys_token1] = ACTIONS(2387), + [aux_sym_use_keychain_token1] = ACTIONS(2387), + [aux_sym_use_roaming_token1] = ACTIONS(2387), + [aux_sym_user_token1] = ACTIONS(2389), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2387), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2387), + [aux_sym_visual_host_key_token1] = ACTIONS(2387), + [aux_sym_xauth_location_token1] = ACTIONS(2387), }, [319] = { - [ts_builtin_sym_end] = ACTIONS(2382), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2384), - [anon_sym_DQUOTE] = ACTIONS(2386), - [aux_sym_match_token1] = ACTIONS(2382), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2382), - [aux_sym_address_family_token1] = ACTIONS(2382), - [aux_sym_batch_mode_token1] = ACTIONS(2382), - [aux_sym_bind_address_token1] = ACTIONS(2382), - [aux_sym_bind_interface_token1] = ACTIONS(2382), - [aux_sym_canonical_domains_token1] = ACTIONS(2382), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2382), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2382), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2382), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2382), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2382), - [aux_sym_certificate_file_token1] = ACTIONS(2382), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2382), - [aux_sym_channel_timeout_token1] = ACTIONS(2382), - [aux_sym_check_host_ip_token1] = ACTIONS(2382), - [aux_sym_ciphers_token1] = ACTIONS(2382), - [aux_sym_cipher_token1] = ACTIONS(2384), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2382), - [aux_sym_compression_token1] = ACTIONS(2382), - [aux_sym_connection_attempts_token1] = ACTIONS(2382), - [aux_sym_connect_timeout_token1] = ACTIONS(2382), - [aux_sym_control_master_token1] = ACTIONS(2382), - [aux_sym_control_path_token1] = ACTIONS(2382), - [aux_sym_control_persist_token1] = ACTIONS(2382), - [aux_sym_dynamic_forward_token1] = ACTIONS(2382), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2382), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2382), - [aux_sym_escape_char_token1] = ACTIONS(2382), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2382), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2382), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2382), - [aux_sym_forward_agent_token1] = ACTIONS(2382), - [aux_sym_forward_x11_token1] = ACTIONS(2384), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2382), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2382), - [aux_sym_gateway_ports_token1] = ACTIONS(2382), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2382), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2382), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2382), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2382), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2382), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2382), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2382), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2382), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2382), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2382), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2382), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2382), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2382), - [aux_sym_host_key_alias_token1] = ACTIONS(2382), - [aux_sym_hostname_token1] = ACTIONS(2382), - [aux_sym_identities_only_token1] = ACTIONS(2382), - [aux_sym_identity_agent_token1] = ACTIONS(2382), - [aux_sym_identity_file_token1] = ACTIONS(2382), - [aux_sym_ignore_unknown_token1] = ACTIONS(2382), - [aux_sym_include_token1] = ACTIONS(2382), - [aux_sym_ip_qos_token1] = ACTIONS(2382), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2382), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2382), - [aux_sym_kex_algorithms_token1] = ACTIONS(2382), - [aux_sym_known_hosts_command_token1] = ACTIONS(2382), - [aux_sym_local_command_token1] = ACTIONS(2382), - [aux_sym_local_forward_token1] = ACTIONS(2382), - [aux_sym_log_level_token1] = ACTIONS(2382), - [aux_sym_log_verbose_token1] = ACTIONS(2382), - [aux_sym_macs_token1] = ACTIONS(2382), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2382), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2382), - [aux_sym_password_authentication_token1] = ACTIONS(2382), - [aux_sym_permit_local_command_token1] = ACTIONS(2382), - [aux_sym_permit_remote_open_token1] = ACTIONS(2382), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2382), - [aux_sym_port_token1] = ACTIONS(2382), - [aux_sym_preferred_authentications_token1] = ACTIONS(2382), - [aux_sym_protocol_token1] = ACTIONS(2382), - [aux_sym_proxy_command_token1] = ACTIONS(2382), - [aux_sym_proxy_jump_token1] = ACTIONS(2382), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2382), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2382), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2382), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2382), - [aux_sym_rekey_limit_token1] = ACTIONS(2382), - [aux_sym_remote_command_token1] = ACTIONS(2382), - [aux_sym_remote_forward_token1] = ACTIONS(2382), - [aux_sym_request_tty_token1] = ACTIONS(2382), - [aux_sym_required_rsa_size_token1] = ACTIONS(2382), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2382), - [aux_sym_security_key_provider_token1] = ACTIONS(2382), - [aux_sym_send_env_token1] = ACTIONS(2382), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2382), - [aux_sym_server_alive_interval_token1] = ACTIONS(2382), - [aux_sym_session_type_token1] = ACTIONS(2382), - [aux_sym_set_env_token1] = ACTIONS(2382), - [aux_sym_stdin_null_token1] = ACTIONS(2382), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2382), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2382), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2382), - [aux_sym_syslog_facility_token1] = ACTIONS(2382), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2382), - [aux_sym_keep_alive_token1] = ACTIONS(2382), - [aux_sym_tag_token1] = ACTIONS(2382), - [aux_sym_tunnel_token1] = ACTIONS(2384), - [aux_sym_tunnel_device_token1] = ACTIONS(2382), - [aux_sym_update_host_keys_token1] = ACTIONS(2382), - [aux_sym_use_keychain_token1] = ACTIONS(2382), - [aux_sym_use_roaming_token1] = ACTIONS(2382), - [aux_sym_user_token1] = ACTIONS(2384), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2382), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2382), - [aux_sym_visual_host_key_token1] = ACTIONS(2382), - [aux_sym_xauth_location_token1] = ACTIONS(2382), + [ts_builtin_sym_end] = ACTIONS(2391), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2395), + [aux_sym_match_token1] = ACTIONS(2391), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2391), + [aux_sym_address_family_token1] = ACTIONS(2391), + [aux_sym_batch_mode_token1] = ACTIONS(2391), + [aux_sym_bind_address_token1] = ACTIONS(2391), + [aux_sym_bind_interface_token1] = ACTIONS(2391), + [aux_sym_canonical_domains_token1] = ACTIONS(2391), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2391), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2391), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2391), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2391), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2391), + [aux_sym_certificate_file_token1] = ACTIONS(2391), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2391), + [aux_sym_channel_timeout_token1] = ACTIONS(2391), + [aux_sym_check_host_ip_token1] = ACTIONS(2391), + [aux_sym_ciphers_token1] = ACTIONS(2391), + [aux_sym_cipher_token1] = ACTIONS(2393), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2391), + [aux_sym_compression_token1] = ACTIONS(2391), + [aux_sym_connection_attempts_token1] = ACTIONS(2391), + [aux_sym_connect_timeout_token1] = ACTIONS(2391), + [aux_sym_control_master_token1] = ACTIONS(2391), + [aux_sym_control_path_token1] = ACTIONS(2391), + [aux_sym_control_persist_token1] = ACTIONS(2391), + [aux_sym_dynamic_forward_token1] = ACTIONS(2391), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2391), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2391), + [aux_sym_escape_char_token1] = ACTIONS(2391), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2391), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2391), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2391), + [aux_sym_forward_agent_token1] = ACTIONS(2391), + [aux_sym_forward_x11_token1] = ACTIONS(2393), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2391), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2391), + [aux_sym_gateway_ports_token1] = ACTIONS(2391), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2391), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2391), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2391), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2391), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2391), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2391), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2391), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2391), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2391), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2391), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2391), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2391), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2391), + [aux_sym_host_key_alias_token1] = ACTIONS(2391), + [aux_sym_hostname_token1] = ACTIONS(2391), + [aux_sym_identities_only_token1] = ACTIONS(2391), + [aux_sym_identity_agent_token1] = ACTIONS(2391), + [aux_sym_identity_file_token1] = ACTIONS(2391), + [aux_sym_ignore_unknown_token1] = ACTIONS(2391), + [aux_sym_include_token1] = ACTIONS(2391), + [aux_sym_ip_qos_token1] = ACTIONS(2391), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2391), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2391), + [aux_sym_kex_algorithms_token1] = ACTIONS(2391), + [aux_sym_known_hosts_command_token1] = ACTIONS(2391), + [aux_sym_local_command_token1] = ACTIONS(2391), + [aux_sym_local_forward_token1] = ACTIONS(2391), + [aux_sym_log_level_token1] = ACTIONS(2391), + [aux_sym_log_verbose_token1] = ACTIONS(2391), + [aux_sym_macs_token1] = ACTIONS(2391), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2391), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2391), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2391), + [aux_sym_password_authentication_token1] = ACTIONS(2391), + [aux_sym_permit_local_command_token1] = ACTIONS(2391), + [aux_sym_permit_remote_open_token1] = ACTIONS(2391), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2391), + [aux_sym_port_token1] = ACTIONS(2391), + [aux_sym_preferred_authentications_token1] = ACTIONS(2391), + [aux_sym_protocol_token1] = ACTIONS(2391), + [aux_sym_proxy_command_token1] = ACTIONS(2391), + [aux_sym_proxy_jump_token1] = ACTIONS(2391), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2391), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2391), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2391), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2391), + [aux_sym_rekey_limit_token1] = ACTIONS(2391), + [aux_sym_remote_command_token1] = ACTIONS(2391), + [aux_sym_remote_forward_token1] = ACTIONS(2391), + [aux_sym_request_tty_token1] = ACTIONS(2391), + [aux_sym_required_rsa_size_token1] = ACTIONS(2391), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2391), + [aux_sym_security_key_provider_token1] = ACTIONS(2391), + [aux_sym_send_env_token1] = ACTIONS(2391), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2391), + [aux_sym_server_alive_interval_token1] = ACTIONS(2391), + [aux_sym_session_type_token1] = ACTIONS(2391), + [aux_sym_set_env_token1] = ACTIONS(2391), + [aux_sym_stdin_null_token1] = ACTIONS(2391), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2391), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2391), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2391), + [aux_sym_syslog_facility_token1] = ACTIONS(2391), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2391), + [aux_sym_keep_alive_token1] = ACTIONS(2391), + [aux_sym_tag_token1] = ACTIONS(2391), + [aux_sym_tunnel_token1] = ACTIONS(2393), + [aux_sym_tunnel_device_token1] = ACTIONS(2391), + [aux_sym_update_host_keys_token1] = ACTIONS(2391), + [aux_sym_use_keychain_token1] = ACTIONS(2391), + [aux_sym_use_roaming_token1] = ACTIONS(2391), + [aux_sym_user_token1] = ACTIONS(2393), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2391), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2391), + [aux_sym_visual_host_key_token1] = ACTIONS(2391), + [aux_sym_xauth_location_token1] = ACTIONS(2391), }, [320] = { - [ts_builtin_sym_end] = ACTIONS(2388), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2388), - [aux_sym_match_token1] = ACTIONS(2388), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2388), - [aux_sym_address_family_token1] = ACTIONS(2388), - [aux_sym_batch_mode_token1] = ACTIONS(2388), - [aux_sym_bind_address_token1] = ACTIONS(2388), - [aux_sym_bind_interface_token1] = ACTIONS(2388), - [aux_sym_canonical_domains_token1] = ACTIONS(2388), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2388), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2388), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2388), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2388), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2388), - [aux_sym_certificate_file_token1] = ACTIONS(2388), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2388), - [aux_sym_channel_timeout_token1] = ACTIONS(2388), - [aux_sym_check_host_ip_token1] = ACTIONS(2388), - [aux_sym_ciphers_token1] = ACTIONS(2388), - [aux_sym_cipher_token1] = ACTIONS(2390), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2388), - [aux_sym_compression_token1] = ACTIONS(2388), - [aux_sym_connection_attempts_token1] = ACTIONS(2388), - [aux_sym_connect_timeout_token1] = ACTIONS(2388), - [aux_sym_control_master_token1] = ACTIONS(2388), - [aux_sym_control_path_token1] = ACTIONS(2388), - [aux_sym_control_persist_token1] = ACTIONS(2388), - [aux_sym_dynamic_forward_token1] = ACTIONS(2388), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2388), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2388), - [aux_sym_escape_char_token1] = ACTIONS(2388), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2388), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2388), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2388), - [aux_sym_forward_agent_token1] = ACTIONS(2388), - [aux_sym_forward_x11_token1] = ACTIONS(2390), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2388), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2388), - [aux_sym_gateway_ports_token1] = ACTIONS(2388), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2388), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2388), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2388), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2388), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2388), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2388), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2388), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2388), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2388), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2388), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2388), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2388), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2388), - [aux_sym_host_key_alias_token1] = ACTIONS(2388), - [aux_sym_hostname_token1] = ACTIONS(2388), - [aux_sym_identities_only_token1] = ACTIONS(2388), - [aux_sym_identity_agent_token1] = ACTIONS(2388), - [aux_sym_identity_file_token1] = ACTIONS(2388), - [aux_sym_ignore_unknown_token1] = ACTIONS(2388), - [aux_sym_include_token1] = ACTIONS(2388), - [aux_sym_ip_qos_token1] = ACTIONS(2388), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2388), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2388), - [aux_sym_kex_algorithms_token1] = ACTIONS(2388), - [aux_sym_known_hosts_command_token1] = ACTIONS(2388), - [aux_sym_local_command_token1] = ACTIONS(2388), - [aux_sym_local_forward_token1] = ACTIONS(2388), - [aux_sym_log_level_token1] = ACTIONS(2388), - [aux_sym_log_verbose_token1] = ACTIONS(2388), - [aux_sym_macs_token1] = ACTIONS(2388), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2388), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2388), - [aux_sym_password_authentication_token1] = ACTIONS(2388), - [aux_sym_permit_local_command_token1] = ACTIONS(2388), - [aux_sym_permit_remote_open_token1] = ACTIONS(2388), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2388), - [aux_sym_port_token1] = ACTIONS(2388), - [aux_sym_preferred_authentications_token1] = ACTIONS(2388), - [aux_sym_protocol_token1] = ACTIONS(2388), - [aux_sym_proxy_command_token1] = ACTIONS(2388), - [aux_sym_proxy_jump_token1] = ACTIONS(2388), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2388), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2388), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2388), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2388), - [aux_sym_rekey_limit_token1] = ACTIONS(2388), - [aux_sym_remote_command_token1] = ACTIONS(2388), - [aux_sym_remote_forward_token1] = ACTIONS(2388), - [aux_sym_request_tty_token1] = ACTIONS(2388), - [aux_sym_required_rsa_size_token1] = ACTIONS(2388), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2388), - [aux_sym_security_key_provider_token1] = ACTIONS(2388), - [aux_sym_send_env_token1] = ACTIONS(2388), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2388), - [aux_sym_server_alive_interval_token1] = ACTIONS(2388), - [aux_sym_session_type_token1] = ACTIONS(2388), - [aux_sym_set_env_token1] = ACTIONS(2388), - [aux_sym_stdin_null_token1] = ACTIONS(2388), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2388), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2388), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2388), - [aux_sym_syslog_facility_token1] = ACTIONS(2388), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2388), - [aux_sym_keep_alive_token1] = ACTIONS(2388), - [aux_sym_tag_token1] = ACTIONS(2388), - [aux_sym_tunnel_token1] = ACTIONS(2390), - [aux_sym_tunnel_device_token1] = ACTIONS(2388), - [aux_sym_update_host_keys_token1] = ACTIONS(2388), - [aux_sym_use_keychain_token1] = ACTIONS(2388), - [aux_sym_use_roaming_token1] = ACTIONS(2388), - [aux_sym_user_token1] = ACTIONS(2390), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2388), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2388), - [aux_sym_visual_host_key_token1] = ACTIONS(2388), - [aux_sym_xauth_location_token1] = ACTIONS(2388), + [ts_builtin_sym_end] = ACTIONS(2397), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(2397), + [aux_sym_match_token1] = ACTIONS(2397), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2397), + [aux_sym_address_family_token1] = ACTIONS(2397), + [aux_sym_batch_mode_token1] = ACTIONS(2397), + [aux_sym_bind_address_token1] = ACTIONS(2397), + [aux_sym_bind_interface_token1] = ACTIONS(2397), + [aux_sym_canonical_domains_token1] = ACTIONS(2397), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2397), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2397), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2397), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2397), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2397), + [aux_sym_certificate_file_token1] = ACTIONS(2397), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2397), + [aux_sym_channel_timeout_token1] = ACTIONS(2397), + [aux_sym_check_host_ip_token1] = ACTIONS(2397), + [aux_sym_ciphers_token1] = ACTIONS(2397), + [aux_sym_cipher_token1] = ACTIONS(2399), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2397), + [aux_sym_compression_token1] = ACTIONS(2397), + [aux_sym_connection_attempts_token1] = ACTIONS(2397), + [aux_sym_connect_timeout_token1] = ACTIONS(2397), + [aux_sym_control_master_token1] = ACTIONS(2397), + [aux_sym_control_path_token1] = ACTIONS(2397), + [aux_sym_control_persist_token1] = ACTIONS(2397), + [aux_sym_dynamic_forward_token1] = ACTIONS(2397), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2397), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2397), + [aux_sym_escape_char_token1] = ACTIONS(2397), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2397), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2397), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2397), + [aux_sym_forward_agent_token1] = ACTIONS(2397), + [aux_sym_forward_x11_token1] = ACTIONS(2399), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2397), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2397), + [aux_sym_gateway_ports_token1] = ACTIONS(2397), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2397), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2397), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2397), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2397), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2397), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2397), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2397), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2397), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2397), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2397), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2397), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2397), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2397), + [aux_sym_host_key_alias_token1] = ACTIONS(2397), + [aux_sym_hostname_token1] = ACTIONS(2397), + [aux_sym_identities_only_token1] = ACTIONS(2397), + [aux_sym_identity_agent_token1] = ACTIONS(2397), + [aux_sym_identity_file_token1] = ACTIONS(2397), + [aux_sym_ignore_unknown_token1] = ACTIONS(2397), + [aux_sym_include_token1] = ACTIONS(2397), + [aux_sym_ip_qos_token1] = ACTIONS(2397), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2397), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2397), + [aux_sym_kex_algorithms_token1] = ACTIONS(2397), + [aux_sym_known_hosts_command_token1] = ACTIONS(2397), + [aux_sym_local_command_token1] = ACTIONS(2397), + [aux_sym_local_forward_token1] = ACTIONS(2397), + [aux_sym_log_level_token1] = ACTIONS(2397), + [aux_sym_log_verbose_token1] = ACTIONS(2397), + [aux_sym_macs_token1] = ACTIONS(2397), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2397), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2397), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2397), + [aux_sym_password_authentication_token1] = ACTIONS(2397), + [aux_sym_permit_local_command_token1] = ACTIONS(2397), + [aux_sym_permit_remote_open_token1] = ACTIONS(2397), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2397), + [aux_sym_port_token1] = ACTIONS(2397), + [aux_sym_preferred_authentications_token1] = ACTIONS(2397), + [aux_sym_protocol_token1] = ACTIONS(2397), + [aux_sym_proxy_command_token1] = ACTIONS(2397), + [aux_sym_proxy_jump_token1] = ACTIONS(2397), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2397), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2397), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2397), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2397), + [aux_sym_rekey_limit_token1] = ACTIONS(2397), + [aux_sym_remote_command_token1] = ACTIONS(2397), + [aux_sym_remote_forward_token1] = ACTIONS(2397), + [aux_sym_request_tty_token1] = ACTIONS(2397), + [aux_sym_required_rsa_size_token1] = ACTIONS(2397), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2397), + [aux_sym_security_key_provider_token1] = ACTIONS(2397), + [aux_sym_send_env_token1] = ACTIONS(2397), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2397), + [aux_sym_server_alive_interval_token1] = ACTIONS(2397), + [aux_sym_session_type_token1] = ACTIONS(2397), + [aux_sym_set_env_token1] = ACTIONS(2397), + [aux_sym_stdin_null_token1] = ACTIONS(2397), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2397), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2397), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2397), + [aux_sym_syslog_facility_token1] = ACTIONS(2397), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2397), + [aux_sym_keep_alive_token1] = ACTIONS(2397), + [aux_sym_tag_token1] = ACTIONS(2397), + [aux_sym_tunnel_token1] = ACTIONS(2399), + [aux_sym_tunnel_device_token1] = ACTIONS(2397), + [aux_sym_update_host_keys_token1] = ACTIONS(2397), + [aux_sym_use_keychain_token1] = ACTIONS(2397), + [aux_sym_use_roaming_token1] = ACTIONS(2397), + [aux_sym_user_token1] = ACTIONS(2399), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2397), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2397), + [aux_sym_visual_host_key_token1] = ACTIONS(2397), + [aux_sym_xauth_location_token1] = ACTIONS(2397), }, [321] = { - [ts_builtin_sym_end] = ACTIONS(2392), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2394), - [anon_sym_DQUOTE] = ACTIONS(2396), - [aux_sym_match_token1] = ACTIONS(2392), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2392), - [aux_sym_address_family_token1] = ACTIONS(2392), - [aux_sym_batch_mode_token1] = ACTIONS(2392), - [aux_sym_bind_address_token1] = ACTIONS(2392), - [aux_sym_bind_interface_token1] = ACTIONS(2392), - [aux_sym_canonical_domains_token1] = ACTIONS(2392), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2392), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2392), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2392), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2392), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2392), - [aux_sym_certificate_file_token1] = ACTIONS(2392), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2392), - [aux_sym_channel_timeout_token1] = ACTIONS(2392), - [aux_sym_check_host_ip_token1] = ACTIONS(2392), - [aux_sym_ciphers_token1] = ACTIONS(2392), - [aux_sym_cipher_token1] = ACTIONS(2394), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2392), - [aux_sym_compression_token1] = ACTIONS(2392), - [aux_sym_connection_attempts_token1] = ACTIONS(2392), - [aux_sym_connect_timeout_token1] = ACTIONS(2392), - [aux_sym_control_master_token1] = ACTIONS(2392), - [aux_sym_control_path_token1] = ACTIONS(2392), - [aux_sym_control_persist_token1] = ACTIONS(2392), - [aux_sym_dynamic_forward_token1] = ACTIONS(2392), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2392), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2392), - [aux_sym_escape_char_token1] = ACTIONS(2392), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2392), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2392), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2392), - [aux_sym_forward_agent_token1] = ACTIONS(2392), - [aux_sym_forward_x11_token1] = ACTIONS(2394), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2392), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2392), - [aux_sym_gateway_ports_token1] = ACTIONS(2392), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2392), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2392), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2392), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2392), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2392), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2392), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2392), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2392), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2392), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2392), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2392), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2392), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2392), - [aux_sym_host_key_alias_token1] = ACTIONS(2392), - [aux_sym_hostname_token1] = ACTIONS(2392), - [aux_sym_identities_only_token1] = ACTIONS(2392), - [aux_sym_identity_agent_token1] = ACTIONS(2392), - [aux_sym_identity_file_token1] = ACTIONS(2392), - [aux_sym_ignore_unknown_token1] = ACTIONS(2392), - [aux_sym_include_token1] = ACTIONS(2392), - [aux_sym_ip_qos_token1] = ACTIONS(2392), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2392), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2392), - [aux_sym_kex_algorithms_token1] = ACTIONS(2392), - [aux_sym_known_hosts_command_token1] = ACTIONS(2392), - [aux_sym_local_command_token1] = ACTIONS(2392), - [aux_sym_local_forward_token1] = ACTIONS(2392), - [aux_sym_log_level_token1] = ACTIONS(2392), - [aux_sym_log_verbose_token1] = ACTIONS(2392), - [aux_sym_macs_token1] = ACTIONS(2392), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2392), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2392), - [aux_sym_password_authentication_token1] = ACTIONS(2392), - [aux_sym_permit_local_command_token1] = ACTIONS(2392), - [aux_sym_permit_remote_open_token1] = ACTIONS(2392), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2392), - [aux_sym_port_token1] = ACTIONS(2392), - [aux_sym_preferred_authentications_token1] = ACTIONS(2392), - [aux_sym_protocol_token1] = ACTIONS(2392), - [aux_sym_proxy_command_token1] = ACTIONS(2392), - [aux_sym_proxy_jump_token1] = ACTIONS(2392), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2392), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2392), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2392), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2392), - [aux_sym_rekey_limit_token1] = ACTIONS(2392), - [aux_sym_remote_command_token1] = ACTIONS(2392), - [aux_sym_remote_forward_token1] = ACTIONS(2392), - [aux_sym_request_tty_token1] = ACTIONS(2392), - [aux_sym_required_rsa_size_token1] = ACTIONS(2392), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2392), - [aux_sym_security_key_provider_token1] = ACTIONS(2392), - [aux_sym_send_env_token1] = ACTIONS(2392), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2392), - [aux_sym_server_alive_interval_token1] = ACTIONS(2392), - [aux_sym_session_type_token1] = ACTIONS(2392), - [aux_sym_set_env_token1] = ACTIONS(2392), - [aux_sym_stdin_null_token1] = ACTIONS(2392), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2392), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2392), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2392), - [aux_sym_syslog_facility_token1] = ACTIONS(2392), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2392), - [aux_sym_keep_alive_token1] = ACTIONS(2392), - [aux_sym_tag_token1] = ACTIONS(2392), - [aux_sym_tunnel_token1] = ACTIONS(2394), - [aux_sym_tunnel_device_token1] = ACTIONS(2392), - [aux_sym_update_host_keys_token1] = ACTIONS(2392), - [aux_sym_use_keychain_token1] = ACTIONS(2392), - [aux_sym_use_roaming_token1] = ACTIONS(2392), - [aux_sym_user_token1] = ACTIONS(2394), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2392), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2392), - [aux_sym_visual_host_key_token1] = ACTIONS(2392), - [aux_sym_xauth_location_token1] = ACTIONS(2392), + [ts_builtin_sym_end] = ACTIONS(2401), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2405), + [aux_sym_match_token1] = ACTIONS(2401), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2401), + [aux_sym_address_family_token1] = ACTIONS(2401), + [aux_sym_batch_mode_token1] = ACTIONS(2401), + [aux_sym_bind_address_token1] = ACTIONS(2401), + [aux_sym_bind_interface_token1] = ACTIONS(2401), + [aux_sym_canonical_domains_token1] = ACTIONS(2401), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2401), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2401), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2401), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2401), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2401), + [aux_sym_certificate_file_token1] = ACTIONS(2401), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2401), + [aux_sym_channel_timeout_token1] = ACTIONS(2401), + [aux_sym_check_host_ip_token1] = ACTIONS(2401), + [aux_sym_ciphers_token1] = ACTIONS(2401), + [aux_sym_cipher_token1] = ACTIONS(2403), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2401), + [aux_sym_compression_token1] = ACTIONS(2401), + [aux_sym_connection_attempts_token1] = ACTIONS(2401), + [aux_sym_connect_timeout_token1] = ACTIONS(2401), + [aux_sym_control_master_token1] = ACTIONS(2401), + [aux_sym_control_path_token1] = ACTIONS(2401), + [aux_sym_control_persist_token1] = ACTIONS(2401), + [aux_sym_dynamic_forward_token1] = ACTIONS(2401), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2401), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2401), + [aux_sym_escape_char_token1] = ACTIONS(2401), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2401), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2401), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2401), + [aux_sym_forward_agent_token1] = ACTIONS(2401), + [aux_sym_forward_x11_token1] = ACTIONS(2403), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2401), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2401), + [aux_sym_gateway_ports_token1] = ACTIONS(2401), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2401), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2401), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2401), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2401), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2401), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2401), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2401), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2401), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2401), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2401), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2401), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2401), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2401), + [aux_sym_host_key_alias_token1] = ACTIONS(2401), + [aux_sym_hostname_token1] = ACTIONS(2401), + [aux_sym_identities_only_token1] = ACTIONS(2401), + [aux_sym_identity_agent_token1] = ACTIONS(2401), + [aux_sym_identity_file_token1] = ACTIONS(2401), + [aux_sym_ignore_unknown_token1] = ACTIONS(2401), + [aux_sym_include_token1] = ACTIONS(2401), + [aux_sym_ip_qos_token1] = ACTIONS(2401), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2401), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2401), + [aux_sym_kex_algorithms_token1] = ACTIONS(2401), + [aux_sym_known_hosts_command_token1] = ACTIONS(2401), + [aux_sym_local_command_token1] = ACTIONS(2401), + [aux_sym_local_forward_token1] = ACTIONS(2401), + [aux_sym_log_level_token1] = ACTIONS(2401), + [aux_sym_log_verbose_token1] = ACTIONS(2401), + [aux_sym_macs_token1] = ACTIONS(2401), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2401), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2401), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2401), + [aux_sym_password_authentication_token1] = ACTIONS(2401), + [aux_sym_permit_local_command_token1] = ACTIONS(2401), + [aux_sym_permit_remote_open_token1] = ACTIONS(2401), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2401), + [aux_sym_port_token1] = ACTIONS(2401), + [aux_sym_preferred_authentications_token1] = ACTIONS(2401), + [aux_sym_protocol_token1] = ACTIONS(2401), + [aux_sym_proxy_command_token1] = ACTIONS(2401), + [aux_sym_proxy_jump_token1] = ACTIONS(2401), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2401), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2401), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2401), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2401), + [aux_sym_rekey_limit_token1] = ACTIONS(2401), + [aux_sym_remote_command_token1] = ACTIONS(2401), + [aux_sym_remote_forward_token1] = ACTIONS(2401), + [aux_sym_request_tty_token1] = ACTIONS(2401), + [aux_sym_required_rsa_size_token1] = ACTIONS(2401), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2401), + [aux_sym_security_key_provider_token1] = ACTIONS(2401), + [aux_sym_send_env_token1] = ACTIONS(2401), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2401), + [aux_sym_server_alive_interval_token1] = ACTIONS(2401), + [aux_sym_session_type_token1] = ACTIONS(2401), + [aux_sym_set_env_token1] = ACTIONS(2401), + [aux_sym_stdin_null_token1] = ACTIONS(2401), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2401), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2401), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2401), + [aux_sym_syslog_facility_token1] = ACTIONS(2401), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2401), + [aux_sym_keep_alive_token1] = ACTIONS(2401), + [aux_sym_tag_token1] = ACTIONS(2401), + [aux_sym_tunnel_token1] = ACTIONS(2403), + [aux_sym_tunnel_device_token1] = ACTIONS(2401), + [aux_sym_update_host_keys_token1] = ACTIONS(2401), + [aux_sym_use_keychain_token1] = ACTIONS(2401), + [aux_sym_use_roaming_token1] = ACTIONS(2401), + [aux_sym_user_token1] = ACTIONS(2403), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2401), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2401), + [aux_sym_visual_host_key_token1] = ACTIONS(2401), + [aux_sym_xauth_location_token1] = ACTIONS(2401), }, [322] = { - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2400), - [anon_sym_DQUOTE] = ACTIONS(2398), - [aux_sym_match_token1] = ACTIONS(2398), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2398), - [aux_sym_address_family_token1] = ACTIONS(2398), - [aux_sym_batch_mode_token1] = ACTIONS(2398), - [aux_sym_bind_address_token1] = ACTIONS(2398), - [aux_sym_bind_interface_token1] = ACTIONS(2398), - [aux_sym_canonical_domains_token1] = ACTIONS(2398), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2398), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2398), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2398), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2398), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2398), - [aux_sym_certificate_file_token1] = ACTIONS(2398), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2398), - [aux_sym_channel_timeout_token1] = ACTIONS(2398), - [aux_sym_check_host_ip_token1] = ACTIONS(2398), - [aux_sym_ciphers_token1] = ACTIONS(2398), - [aux_sym_cipher_token1] = ACTIONS(2400), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2398), - [aux_sym_compression_token1] = ACTIONS(2398), - [aux_sym_connection_attempts_token1] = ACTIONS(2398), - [aux_sym_connect_timeout_token1] = ACTIONS(2398), - [aux_sym_control_master_token1] = ACTIONS(2398), - [aux_sym_control_path_token1] = ACTIONS(2398), - [aux_sym_control_persist_token1] = ACTIONS(2398), - [aux_sym_dynamic_forward_token1] = ACTIONS(2398), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2398), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2398), - [aux_sym_escape_char_token1] = ACTIONS(2398), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2398), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2398), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2398), - [aux_sym_forward_agent_token1] = ACTIONS(2398), - [aux_sym_forward_x11_token1] = ACTIONS(2400), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2398), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2398), - [aux_sym_gateway_ports_token1] = ACTIONS(2398), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2398), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2398), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2398), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2398), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2398), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2398), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2398), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2398), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2398), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2398), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2398), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2398), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2398), - [aux_sym_host_key_alias_token1] = ACTIONS(2398), - [aux_sym_hostname_token1] = ACTIONS(2398), - [aux_sym_identities_only_token1] = ACTIONS(2398), - [aux_sym_identity_agent_token1] = ACTIONS(2398), - [aux_sym_identity_file_token1] = ACTIONS(2398), - [aux_sym_ignore_unknown_token1] = ACTIONS(2398), - [aux_sym_include_token1] = ACTIONS(2398), - [aux_sym_ip_qos_token1] = ACTIONS(2398), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2398), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2398), - [aux_sym_kex_algorithms_token1] = ACTIONS(2398), - [aux_sym_known_hosts_command_token1] = ACTIONS(2398), - [aux_sym_local_command_token1] = ACTIONS(2398), - [aux_sym_local_forward_token1] = ACTIONS(2398), - [aux_sym_log_level_token1] = ACTIONS(2398), - [aux_sym_log_verbose_token1] = ACTIONS(2398), - [aux_sym_macs_token1] = ACTIONS(2398), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2398), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2398), - [aux_sym_password_authentication_token1] = ACTIONS(2398), - [aux_sym_permit_local_command_token1] = ACTIONS(2398), - [aux_sym_permit_remote_open_token1] = ACTIONS(2398), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2398), - [aux_sym_port_token1] = ACTIONS(2398), - [aux_sym_preferred_authentications_token1] = ACTIONS(2398), - [aux_sym_protocol_token1] = ACTIONS(2398), - [aux_sym_proxy_command_token1] = ACTIONS(2398), - [aux_sym_proxy_jump_token1] = ACTIONS(2398), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2398), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2398), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2398), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2398), - [aux_sym_rekey_limit_token1] = ACTIONS(2398), - [aux_sym_remote_command_token1] = ACTIONS(2398), - [aux_sym_remote_forward_token1] = ACTIONS(2398), - [aux_sym_request_tty_token1] = ACTIONS(2398), - [aux_sym_required_rsa_size_token1] = ACTIONS(2398), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2398), - [aux_sym_security_key_provider_token1] = ACTIONS(2398), - [aux_sym_send_env_token1] = ACTIONS(2398), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2398), - [aux_sym_server_alive_interval_token1] = ACTIONS(2398), - [aux_sym_session_type_token1] = ACTIONS(2398), - [aux_sym_set_env_token1] = ACTIONS(2398), - [aux_sym_stdin_null_token1] = ACTIONS(2398), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2398), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2398), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2398), - [aux_sym_syslog_facility_token1] = ACTIONS(2398), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2398), - [aux_sym_keep_alive_token1] = ACTIONS(2398), - [aux_sym_tag_token1] = ACTIONS(2398), - [aux_sym_tunnel_token1] = ACTIONS(2400), - [aux_sym_tunnel_device_token1] = ACTIONS(2398), - [aux_sym_update_host_keys_token1] = ACTIONS(2398), - [aux_sym_use_keychain_token1] = ACTIONS(2398), - [aux_sym_use_roaming_token1] = ACTIONS(2398), - [aux_sym_user_token1] = ACTIONS(2400), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2398), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2398), - [aux_sym_visual_host_key_token1] = ACTIONS(2398), - [aux_sym_xauth_location_token1] = ACTIONS(2398), + [ts_builtin_sym_end] = ACTIONS(2407), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(2407), + [aux_sym_match_token1] = ACTIONS(2407), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2407), + [aux_sym_address_family_token1] = ACTIONS(2407), + [aux_sym_batch_mode_token1] = ACTIONS(2407), + [aux_sym_bind_address_token1] = ACTIONS(2407), + [aux_sym_bind_interface_token1] = ACTIONS(2407), + [aux_sym_canonical_domains_token1] = ACTIONS(2407), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2407), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2407), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2407), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2407), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2407), + [aux_sym_certificate_file_token1] = ACTIONS(2407), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2407), + [aux_sym_channel_timeout_token1] = ACTIONS(2407), + [aux_sym_check_host_ip_token1] = ACTIONS(2407), + [aux_sym_ciphers_token1] = ACTIONS(2407), + [aux_sym_cipher_token1] = ACTIONS(2409), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2407), + [aux_sym_compression_token1] = ACTIONS(2407), + [aux_sym_connection_attempts_token1] = ACTIONS(2407), + [aux_sym_connect_timeout_token1] = ACTIONS(2407), + [aux_sym_control_master_token1] = ACTIONS(2407), + [aux_sym_control_path_token1] = ACTIONS(2407), + [aux_sym_control_persist_token1] = ACTIONS(2407), + [aux_sym_dynamic_forward_token1] = ACTIONS(2407), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2407), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2407), + [aux_sym_escape_char_token1] = ACTIONS(2407), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2407), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2407), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2407), + [aux_sym_forward_agent_token1] = ACTIONS(2407), + [aux_sym_forward_x11_token1] = ACTIONS(2409), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2407), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2407), + [aux_sym_gateway_ports_token1] = ACTIONS(2407), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2407), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2407), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2407), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2407), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2407), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2407), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2407), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2407), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2407), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2407), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2407), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2407), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2407), + [aux_sym_host_key_alias_token1] = ACTIONS(2407), + [aux_sym_hostname_token1] = ACTIONS(2407), + [aux_sym_identities_only_token1] = ACTIONS(2407), + [aux_sym_identity_agent_token1] = ACTIONS(2407), + [aux_sym_identity_file_token1] = ACTIONS(2407), + [aux_sym_ignore_unknown_token1] = ACTIONS(2407), + [aux_sym_include_token1] = ACTIONS(2407), + [aux_sym_ip_qos_token1] = ACTIONS(2407), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2407), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2407), + [aux_sym_kex_algorithms_token1] = ACTIONS(2407), + [aux_sym_known_hosts_command_token1] = ACTIONS(2407), + [aux_sym_local_command_token1] = ACTIONS(2407), + [aux_sym_local_forward_token1] = ACTIONS(2407), + [aux_sym_log_level_token1] = ACTIONS(2407), + [aux_sym_log_verbose_token1] = ACTIONS(2407), + [aux_sym_macs_token1] = ACTIONS(2407), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2407), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2407), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2407), + [aux_sym_password_authentication_token1] = ACTIONS(2407), + [aux_sym_permit_local_command_token1] = ACTIONS(2407), + [aux_sym_permit_remote_open_token1] = ACTIONS(2407), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2407), + [aux_sym_port_token1] = ACTIONS(2407), + [aux_sym_preferred_authentications_token1] = ACTIONS(2407), + [aux_sym_protocol_token1] = ACTIONS(2407), + [aux_sym_proxy_command_token1] = ACTIONS(2407), + [aux_sym_proxy_jump_token1] = ACTIONS(2407), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2407), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2407), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2407), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2407), + [aux_sym_rekey_limit_token1] = ACTIONS(2407), + [aux_sym_remote_command_token1] = ACTIONS(2407), + [aux_sym_remote_forward_token1] = ACTIONS(2407), + [aux_sym_request_tty_token1] = ACTIONS(2407), + [aux_sym_required_rsa_size_token1] = ACTIONS(2407), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2407), + [aux_sym_security_key_provider_token1] = ACTIONS(2407), + [aux_sym_send_env_token1] = ACTIONS(2407), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2407), + [aux_sym_server_alive_interval_token1] = ACTIONS(2407), + [aux_sym_session_type_token1] = ACTIONS(2407), + [aux_sym_set_env_token1] = ACTIONS(2407), + [aux_sym_stdin_null_token1] = ACTIONS(2407), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2407), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2407), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2407), + [aux_sym_syslog_facility_token1] = ACTIONS(2407), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2407), + [aux_sym_keep_alive_token1] = ACTIONS(2407), + [aux_sym_tag_token1] = ACTIONS(2407), + [aux_sym_tunnel_token1] = ACTIONS(2409), + [aux_sym_tunnel_device_token1] = ACTIONS(2407), + [aux_sym_update_host_keys_token1] = ACTIONS(2407), + [aux_sym_use_keychain_token1] = ACTIONS(2407), + [aux_sym_use_roaming_token1] = ACTIONS(2407), + [aux_sym_user_token1] = ACTIONS(2409), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2407), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2407), + [aux_sym_visual_host_key_token1] = ACTIONS(2407), + [aux_sym_xauth_location_token1] = ACTIONS(2407), }, [323] = { - [ts_builtin_sym_end] = ACTIONS(2402), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(2406), - [aux_sym_match_token1] = ACTIONS(2402), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2402), - [aux_sym_address_family_token1] = ACTIONS(2402), - [aux_sym_batch_mode_token1] = ACTIONS(2402), - [aux_sym_bind_address_token1] = ACTIONS(2402), - [aux_sym_bind_interface_token1] = ACTIONS(2402), - [aux_sym_canonical_domains_token1] = ACTIONS(2402), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2402), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2402), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2402), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2402), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2402), - [aux_sym_certificate_file_token1] = ACTIONS(2402), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2402), - [aux_sym_channel_timeout_token1] = ACTIONS(2402), - [aux_sym_check_host_ip_token1] = ACTIONS(2402), - [aux_sym_ciphers_token1] = ACTIONS(2402), - [aux_sym_cipher_token1] = ACTIONS(2404), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2402), - [aux_sym_compression_token1] = ACTIONS(2402), - [aux_sym_connection_attempts_token1] = ACTIONS(2402), - [aux_sym_connect_timeout_token1] = ACTIONS(2402), - [aux_sym_control_master_token1] = ACTIONS(2402), - [aux_sym_control_path_token1] = ACTIONS(2402), - [aux_sym_control_persist_token1] = ACTIONS(2402), - [aux_sym_dynamic_forward_token1] = ACTIONS(2402), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2402), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2402), - [aux_sym_escape_char_token1] = ACTIONS(2402), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2402), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2402), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2402), - [aux_sym_forward_agent_token1] = ACTIONS(2402), - [aux_sym_forward_x11_token1] = ACTIONS(2404), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2402), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2402), - [aux_sym_gateway_ports_token1] = ACTIONS(2402), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2402), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2402), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2402), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2402), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2402), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2402), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2402), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2402), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2402), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2402), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2402), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2402), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2402), - [aux_sym_host_key_alias_token1] = ACTIONS(2402), - [aux_sym_hostname_token1] = ACTIONS(2402), - [aux_sym_identities_only_token1] = ACTIONS(2402), - [aux_sym_identity_agent_token1] = ACTIONS(2402), - [aux_sym_identity_file_token1] = ACTIONS(2402), - [aux_sym_ignore_unknown_token1] = ACTIONS(2402), - [aux_sym_include_token1] = ACTIONS(2402), - [aux_sym_ip_qos_token1] = ACTIONS(2402), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2402), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2402), - [aux_sym_kex_algorithms_token1] = ACTIONS(2402), - [aux_sym_known_hosts_command_token1] = ACTIONS(2402), - [aux_sym_local_command_token1] = ACTIONS(2402), - [aux_sym_local_forward_token1] = ACTIONS(2402), - [aux_sym_log_level_token1] = ACTIONS(2402), - [aux_sym_log_verbose_token1] = ACTIONS(2402), - [aux_sym_macs_token1] = ACTIONS(2402), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2402), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2402), - [aux_sym_password_authentication_token1] = ACTIONS(2402), - [aux_sym_permit_local_command_token1] = ACTIONS(2402), - [aux_sym_permit_remote_open_token1] = ACTIONS(2402), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2402), - [aux_sym_port_token1] = ACTIONS(2402), - [aux_sym_preferred_authentications_token1] = ACTIONS(2402), - [aux_sym_protocol_token1] = ACTIONS(2402), - [aux_sym_proxy_command_token1] = ACTIONS(2402), - [aux_sym_proxy_jump_token1] = ACTIONS(2402), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2402), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2402), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2402), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2402), - [aux_sym_rekey_limit_token1] = ACTIONS(2402), - [aux_sym_remote_command_token1] = ACTIONS(2402), - [aux_sym_remote_forward_token1] = ACTIONS(2402), - [aux_sym_request_tty_token1] = ACTIONS(2402), - [aux_sym_required_rsa_size_token1] = ACTIONS(2402), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2402), - [aux_sym_security_key_provider_token1] = ACTIONS(2402), - [aux_sym_send_env_token1] = ACTIONS(2402), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2402), - [aux_sym_server_alive_interval_token1] = ACTIONS(2402), - [aux_sym_session_type_token1] = ACTIONS(2402), - [aux_sym_set_env_token1] = ACTIONS(2402), - [aux_sym_stdin_null_token1] = ACTIONS(2402), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2402), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2402), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2402), - [aux_sym_syslog_facility_token1] = ACTIONS(2402), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2402), - [aux_sym_keep_alive_token1] = ACTIONS(2402), - [aux_sym_tag_token1] = ACTIONS(2402), - [aux_sym_tunnel_token1] = ACTIONS(2404), - [aux_sym_tunnel_device_token1] = ACTIONS(2402), - [aux_sym_update_host_keys_token1] = ACTIONS(2402), - [aux_sym_use_keychain_token1] = ACTIONS(2402), - [aux_sym_use_roaming_token1] = ACTIONS(2402), - [aux_sym_user_token1] = ACTIONS(2404), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2402), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2402), - [aux_sym_visual_host_key_token1] = ACTIONS(2402), - [aux_sym_xauth_location_token1] = ACTIONS(2402), + [ts_builtin_sym_end] = ACTIONS(2411), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(2415), + [aux_sym_match_token1] = ACTIONS(2411), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2411), + [aux_sym_address_family_token1] = ACTIONS(2411), + [aux_sym_batch_mode_token1] = ACTIONS(2411), + [aux_sym_bind_address_token1] = ACTIONS(2411), + [aux_sym_bind_interface_token1] = ACTIONS(2411), + [aux_sym_canonical_domains_token1] = ACTIONS(2411), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2411), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2411), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2411), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2411), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2411), + [aux_sym_certificate_file_token1] = ACTIONS(2411), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2411), + [aux_sym_channel_timeout_token1] = ACTIONS(2411), + [aux_sym_check_host_ip_token1] = ACTIONS(2411), + [aux_sym_ciphers_token1] = ACTIONS(2411), + [aux_sym_cipher_token1] = ACTIONS(2413), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2411), + [aux_sym_compression_token1] = ACTIONS(2411), + [aux_sym_connection_attempts_token1] = ACTIONS(2411), + [aux_sym_connect_timeout_token1] = ACTIONS(2411), + [aux_sym_control_master_token1] = ACTIONS(2411), + [aux_sym_control_path_token1] = ACTIONS(2411), + [aux_sym_control_persist_token1] = ACTIONS(2411), + [aux_sym_dynamic_forward_token1] = ACTIONS(2411), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2411), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2411), + [aux_sym_escape_char_token1] = ACTIONS(2411), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2411), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2411), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2411), + [aux_sym_forward_agent_token1] = ACTIONS(2411), + [aux_sym_forward_x11_token1] = ACTIONS(2413), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2411), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2411), + [aux_sym_gateway_ports_token1] = ACTIONS(2411), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2411), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2411), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2411), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2411), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2411), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2411), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2411), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2411), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2411), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2411), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2411), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2411), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2411), + [aux_sym_host_key_alias_token1] = ACTIONS(2411), + [aux_sym_hostname_token1] = ACTIONS(2411), + [aux_sym_identities_only_token1] = ACTIONS(2411), + [aux_sym_identity_agent_token1] = ACTIONS(2411), + [aux_sym_identity_file_token1] = ACTIONS(2411), + [aux_sym_ignore_unknown_token1] = ACTIONS(2411), + [aux_sym_include_token1] = ACTIONS(2411), + [aux_sym_ip_qos_token1] = ACTIONS(2411), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2411), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2411), + [aux_sym_kex_algorithms_token1] = ACTIONS(2411), + [aux_sym_known_hosts_command_token1] = ACTIONS(2411), + [aux_sym_local_command_token1] = ACTIONS(2411), + [aux_sym_local_forward_token1] = ACTIONS(2411), + [aux_sym_log_level_token1] = ACTIONS(2411), + [aux_sym_log_verbose_token1] = ACTIONS(2411), + [aux_sym_macs_token1] = ACTIONS(2411), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2411), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2411), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2411), + [aux_sym_password_authentication_token1] = ACTIONS(2411), + [aux_sym_permit_local_command_token1] = ACTIONS(2411), + [aux_sym_permit_remote_open_token1] = ACTIONS(2411), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2411), + [aux_sym_port_token1] = ACTIONS(2411), + [aux_sym_preferred_authentications_token1] = ACTIONS(2411), + [aux_sym_protocol_token1] = ACTIONS(2411), + [aux_sym_proxy_command_token1] = ACTIONS(2411), + [aux_sym_proxy_jump_token1] = ACTIONS(2411), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2411), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2411), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2411), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2411), + [aux_sym_rekey_limit_token1] = ACTIONS(2411), + [aux_sym_remote_command_token1] = ACTIONS(2411), + [aux_sym_remote_forward_token1] = ACTIONS(2411), + [aux_sym_request_tty_token1] = ACTIONS(2411), + [aux_sym_required_rsa_size_token1] = ACTIONS(2411), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2411), + [aux_sym_security_key_provider_token1] = ACTIONS(2411), + [aux_sym_send_env_token1] = ACTIONS(2411), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2411), + [aux_sym_server_alive_interval_token1] = ACTIONS(2411), + [aux_sym_session_type_token1] = ACTIONS(2411), + [aux_sym_set_env_token1] = ACTIONS(2411), + [aux_sym_stdin_null_token1] = ACTIONS(2411), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2411), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2411), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2411), + [aux_sym_syslog_facility_token1] = ACTIONS(2411), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2411), + [aux_sym_keep_alive_token1] = ACTIONS(2411), + [aux_sym_tag_token1] = ACTIONS(2411), + [aux_sym_tunnel_token1] = ACTIONS(2413), + [aux_sym_tunnel_device_token1] = ACTIONS(2411), + [aux_sym_update_host_keys_token1] = ACTIONS(2411), + [aux_sym_use_keychain_token1] = ACTIONS(2411), + [aux_sym_use_roaming_token1] = ACTIONS(2411), + [aux_sym_user_token1] = ACTIONS(2413), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2411), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2411), + [aux_sym_visual_host_key_token1] = ACTIONS(2411), + [aux_sym_xauth_location_token1] = ACTIONS(2411), }, [324] = { - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2410), - [anon_sym_DQUOTE] = ACTIONS(2408), - [aux_sym_match_token1] = ACTIONS(2408), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2408), - [aux_sym_address_family_token1] = ACTIONS(2408), - [aux_sym_batch_mode_token1] = ACTIONS(2408), - [aux_sym_bind_address_token1] = ACTIONS(2408), - [aux_sym_bind_interface_token1] = ACTIONS(2408), - [aux_sym_canonical_domains_token1] = ACTIONS(2408), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2408), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2408), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2408), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2408), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2408), - [aux_sym_certificate_file_token1] = ACTIONS(2408), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2408), - [aux_sym_channel_timeout_token1] = ACTIONS(2408), - [aux_sym_check_host_ip_token1] = ACTIONS(2408), - [aux_sym_ciphers_token1] = ACTIONS(2408), - [aux_sym_cipher_token1] = ACTIONS(2410), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2408), - [aux_sym_compression_token1] = ACTIONS(2408), - [aux_sym_connection_attempts_token1] = ACTIONS(2408), - [aux_sym_connect_timeout_token1] = ACTIONS(2408), - [aux_sym_control_master_token1] = ACTIONS(2408), - [aux_sym_control_path_token1] = ACTIONS(2408), - [aux_sym_control_persist_token1] = ACTIONS(2408), - [aux_sym_dynamic_forward_token1] = ACTIONS(2408), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2408), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2408), - [aux_sym_escape_char_token1] = ACTIONS(2408), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2408), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2408), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2408), - [aux_sym_forward_agent_token1] = ACTIONS(2408), - [aux_sym_forward_x11_token1] = ACTIONS(2410), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2408), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2408), - [aux_sym_gateway_ports_token1] = ACTIONS(2408), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2408), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2408), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2408), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2408), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2408), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2408), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2408), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2408), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2408), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2408), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2408), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2408), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2408), - [aux_sym_host_key_alias_token1] = ACTIONS(2408), - [aux_sym_hostname_token1] = ACTIONS(2408), - [aux_sym_identities_only_token1] = ACTIONS(2408), - [aux_sym_identity_agent_token1] = ACTIONS(2408), - [aux_sym_identity_file_token1] = ACTIONS(2408), - [aux_sym_ignore_unknown_token1] = ACTIONS(2408), - [aux_sym_include_token1] = ACTIONS(2408), - [aux_sym_ip_qos_token1] = ACTIONS(2408), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2408), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2408), - [aux_sym_kex_algorithms_token1] = ACTIONS(2408), - [aux_sym_known_hosts_command_token1] = ACTIONS(2408), - [aux_sym_local_command_token1] = ACTIONS(2408), - [aux_sym_local_forward_token1] = ACTIONS(2408), - [aux_sym_log_level_token1] = ACTIONS(2408), - [aux_sym_log_verbose_token1] = ACTIONS(2408), - [aux_sym_macs_token1] = ACTIONS(2408), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2408), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2408), - [aux_sym_password_authentication_token1] = ACTIONS(2408), - [aux_sym_permit_local_command_token1] = ACTIONS(2408), - [aux_sym_permit_remote_open_token1] = ACTIONS(2408), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2408), - [aux_sym_port_token1] = ACTIONS(2408), - [aux_sym_preferred_authentications_token1] = ACTIONS(2408), - [aux_sym_protocol_token1] = ACTIONS(2408), - [aux_sym_proxy_command_token1] = ACTIONS(2408), - [aux_sym_proxy_jump_token1] = ACTIONS(2408), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2408), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2408), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2408), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2408), - [aux_sym_rekey_limit_token1] = ACTIONS(2408), - [aux_sym_remote_command_token1] = ACTIONS(2408), - [aux_sym_remote_forward_token1] = ACTIONS(2408), - [aux_sym_request_tty_token1] = ACTIONS(2408), - [aux_sym_required_rsa_size_token1] = ACTIONS(2408), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2408), - [aux_sym_security_key_provider_token1] = ACTIONS(2408), - [aux_sym_send_env_token1] = ACTIONS(2408), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2408), - [aux_sym_server_alive_interval_token1] = ACTIONS(2408), - [aux_sym_session_type_token1] = ACTIONS(2408), - [aux_sym_set_env_token1] = ACTIONS(2408), - [aux_sym_stdin_null_token1] = ACTIONS(2408), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2408), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2408), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2408), - [aux_sym_syslog_facility_token1] = ACTIONS(2408), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2408), - [aux_sym_keep_alive_token1] = ACTIONS(2408), - [aux_sym_tag_token1] = ACTIONS(2408), - [aux_sym_tunnel_token1] = ACTIONS(2410), - [aux_sym_tunnel_device_token1] = ACTIONS(2408), - [aux_sym_update_host_keys_token1] = ACTIONS(2408), - [aux_sym_use_keychain_token1] = ACTIONS(2408), - [aux_sym_use_roaming_token1] = ACTIONS(2408), - [aux_sym_user_token1] = ACTIONS(2410), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2408), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2408), - [aux_sym_visual_host_key_token1] = ACTIONS(2408), - [aux_sym_xauth_location_token1] = ACTIONS(2408), + [ts_builtin_sym_end] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(2417), + [aux_sym_match_token1] = ACTIONS(2417), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2417), + [aux_sym_address_family_token1] = ACTIONS(2417), + [aux_sym_batch_mode_token1] = ACTIONS(2417), + [aux_sym_bind_address_token1] = ACTIONS(2417), + [aux_sym_bind_interface_token1] = ACTIONS(2417), + [aux_sym_canonical_domains_token1] = ACTIONS(2417), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2417), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2417), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2417), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2417), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2417), + [aux_sym_certificate_file_token1] = ACTIONS(2417), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2417), + [aux_sym_channel_timeout_token1] = ACTIONS(2417), + [aux_sym_check_host_ip_token1] = ACTIONS(2417), + [aux_sym_ciphers_token1] = ACTIONS(2417), + [aux_sym_cipher_token1] = ACTIONS(2419), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2417), + [aux_sym_compression_token1] = ACTIONS(2417), + [aux_sym_connection_attempts_token1] = ACTIONS(2417), + [aux_sym_connect_timeout_token1] = ACTIONS(2417), + [aux_sym_control_master_token1] = ACTIONS(2417), + [aux_sym_control_path_token1] = ACTIONS(2417), + [aux_sym_control_persist_token1] = ACTIONS(2417), + [aux_sym_dynamic_forward_token1] = ACTIONS(2417), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2417), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2417), + [aux_sym_escape_char_token1] = ACTIONS(2417), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2417), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2417), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2417), + [aux_sym_forward_agent_token1] = ACTIONS(2417), + [aux_sym_forward_x11_token1] = ACTIONS(2419), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2417), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2417), + [aux_sym_gateway_ports_token1] = ACTIONS(2417), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2417), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2417), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2417), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2417), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2417), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2417), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2417), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2417), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2417), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2417), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2417), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2417), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2417), + [aux_sym_host_key_alias_token1] = ACTIONS(2417), + [aux_sym_hostname_token1] = ACTIONS(2417), + [aux_sym_identities_only_token1] = ACTIONS(2417), + [aux_sym_identity_agent_token1] = ACTIONS(2417), + [aux_sym_identity_file_token1] = ACTIONS(2417), + [aux_sym_ignore_unknown_token1] = ACTIONS(2417), + [aux_sym_include_token1] = ACTIONS(2417), + [aux_sym_ip_qos_token1] = ACTIONS(2417), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2417), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2417), + [aux_sym_kex_algorithms_token1] = ACTIONS(2417), + [aux_sym_known_hosts_command_token1] = ACTIONS(2417), + [aux_sym_local_command_token1] = ACTIONS(2417), + [aux_sym_local_forward_token1] = ACTIONS(2417), + [aux_sym_log_level_token1] = ACTIONS(2417), + [aux_sym_log_verbose_token1] = ACTIONS(2417), + [aux_sym_macs_token1] = ACTIONS(2417), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2417), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2417), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2417), + [aux_sym_password_authentication_token1] = ACTIONS(2417), + [aux_sym_permit_local_command_token1] = ACTIONS(2417), + [aux_sym_permit_remote_open_token1] = ACTIONS(2417), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2417), + [aux_sym_port_token1] = ACTIONS(2417), + [aux_sym_preferred_authentications_token1] = ACTIONS(2417), + [aux_sym_protocol_token1] = ACTIONS(2417), + [aux_sym_proxy_command_token1] = ACTIONS(2417), + [aux_sym_proxy_jump_token1] = ACTIONS(2417), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2417), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2417), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2417), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2417), + [aux_sym_rekey_limit_token1] = ACTIONS(2417), + [aux_sym_remote_command_token1] = ACTIONS(2417), + [aux_sym_remote_forward_token1] = ACTIONS(2417), + [aux_sym_request_tty_token1] = ACTIONS(2417), + [aux_sym_required_rsa_size_token1] = ACTIONS(2417), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2417), + [aux_sym_security_key_provider_token1] = ACTIONS(2417), + [aux_sym_send_env_token1] = ACTIONS(2417), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2417), + [aux_sym_server_alive_interval_token1] = ACTIONS(2417), + [aux_sym_session_type_token1] = ACTIONS(2417), + [aux_sym_set_env_token1] = ACTIONS(2417), + [aux_sym_stdin_null_token1] = ACTIONS(2417), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2417), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2417), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2417), + [aux_sym_syslog_facility_token1] = ACTIONS(2417), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2417), + [aux_sym_keep_alive_token1] = ACTIONS(2417), + [aux_sym_tag_token1] = ACTIONS(2417), + [aux_sym_tunnel_token1] = ACTIONS(2419), + [aux_sym_tunnel_device_token1] = ACTIONS(2417), + [aux_sym_update_host_keys_token1] = ACTIONS(2417), + [aux_sym_use_keychain_token1] = ACTIONS(2417), + [aux_sym_use_roaming_token1] = ACTIONS(2417), + [aux_sym_user_token1] = ACTIONS(2419), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2417), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2417), + [aux_sym_visual_host_key_token1] = ACTIONS(2417), + [aux_sym_xauth_location_token1] = ACTIONS(2417), }, [325] = { - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2414), - [anon_sym_DQUOTE] = ACTIONS(2416), - [aux_sym_match_token1] = ACTIONS(2412), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2412), - [aux_sym_address_family_token1] = ACTIONS(2412), - [aux_sym_batch_mode_token1] = ACTIONS(2412), - [aux_sym_bind_address_token1] = ACTIONS(2412), - [aux_sym_bind_interface_token1] = ACTIONS(2412), - [aux_sym_canonical_domains_token1] = ACTIONS(2412), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2412), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2412), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2412), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2412), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2412), - [aux_sym_certificate_file_token1] = ACTIONS(2412), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2412), - [aux_sym_channel_timeout_token1] = ACTIONS(2412), - [aux_sym_check_host_ip_token1] = ACTIONS(2412), - [aux_sym_ciphers_token1] = ACTIONS(2412), - [aux_sym_cipher_token1] = ACTIONS(2414), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2412), - [aux_sym_compression_token1] = ACTIONS(2412), - [aux_sym_connection_attempts_token1] = ACTIONS(2412), - [aux_sym_connect_timeout_token1] = ACTIONS(2412), - [aux_sym_control_master_token1] = ACTIONS(2412), - [aux_sym_control_path_token1] = ACTIONS(2412), - [aux_sym_control_persist_token1] = ACTIONS(2412), - [aux_sym_dynamic_forward_token1] = ACTIONS(2412), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2412), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2412), - [aux_sym_escape_char_token1] = ACTIONS(2412), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2412), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2412), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2412), - [aux_sym_forward_agent_token1] = ACTIONS(2412), - [aux_sym_forward_x11_token1] = ACTIONS(2414), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2412), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2412), - [aux_sym_gateway_ports_token1] = ACTIONS(2412), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2412), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2412), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2412), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2412), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2412), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2412), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2412), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2412), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2412), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2412), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2412), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2412), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2412), - [aux_sym_host_key_alias_token1] = ACTIONS(2412), - [aux_sym_hostname_token1] = ACTIONS(2412), - [aux_sym_identities_only_token1] = ACTIONS(2412), - [aux_sym_identity_agent_token1] = ACTIONS(2412), - [aux_sym_identity_file_token1] = ACTIONS(2412), - [aux_sym_ignore_unknown_token1] = ACTIONS(2412), - [aux_sym_include_token1] = ACTIONS(2412), - [aux_sym_ip_qos_token1] = ACTIONS(2412), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2412), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2412), - [aux_sym_kex_algorithms_token1] = ACTIONS(2412), - [aux_sym_known_hosts_command_token1] = ACTIONS(2412), - [aux_sym_local_command_token1] = ACTIONS(2412), - [aux_sym_local_forward_token1] = ACTIONS(2412), - [aux_sym_log_level_token1] = ACTIONS(2412), - [aux_sym_log_verbose_token1] = ACTIONS(2412), - [aux_sym_macs_token1] = ACTIONS(2412), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2412), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2412), - [aux_sym_password_authentication_token1] = ACTIONS(2412), - [aux_sym_permit_local_command_token1] = ACTIONS(2412), - [aux_sym_permit_remote_open_token1] = ACTIONS(2412), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2412), - [aux_sym_port_token1] = ACTIONS(2412), - [aux_sym_preferred_authentications_token1] = ACTIONS(2412), - [aux_sym_protocol_token1] = ACTIONS(2412), - [aux_sym_proxy_command_token1] = ACTIONS(2412), - [aux_sym_proxy_jump_token1] = ACTIONS(2412), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2412), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2412), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2412), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2412), - [aux_sym_rekey_limit_token1] = ACTIONS(2412), - [aux_sym_remote_command_token1] = ACTIONS(2412), - [aux_sym_remote_forward_token1] = ACTIONS(2412), - [aux_sym_request_tty_token1] = ACTIONS(2412), - [aux_sym_required_rsa_size_token1] = ACTIONS(2412), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2412), - [aux_sym_security_key_provider_token1] = ACTIONS(2412), - [aux_sym_send_env_token1] = ACTIONS(2412), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2412), - [aux_sym_server_alive_interval_token1] = ACTIONS(2412), - [aux_sym_session_type_token1] = ACTIONS(2412), - [aux_sym_set_env_token1] = ACTIONS(2412), - [aux_sym_stdin_null_token1] = ACTIONS(2412), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2412), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2412), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2412), - [aux_sym_syslog_facility_token1] = ACTIONS(2412), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2412), - [aux_sym_keep_alive_token1] = ACTIONS(2412), - [aux_sym_tag_token1] = ACTIONS(2412), - [aux_sym_tunnel_token1] = ACTIONS(2414), - [aux_sym_tunnel_device_token1] = ACTIONS(2412), - [aux_sym_update_host_keys_token1] = ACTIONS(2412), - [aux_sym_use_keychain_token1] = ACTIONS(2412), - [aux_sym_use_roaming_token1] = ACTIONS(2412), - [aux_sym_user_token1] = ACTIONS(2414), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2412), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2412), - [aux_sym_visual_host_key_token1] = ACTIONS(2412), - [aux_sym_xauth_location_token1] = ACTIONS(2412), + [ts_builtin_sym_end] = ACTIONS(2421), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(2425), + [aux_sym_match_token1] = ACTIONS(2421), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2421), + [aux_sym_address_family_token1] = ACTIONS(2421), + [aux_sym_batch_mode_token1] = ACTIONS(2421), + [aux_sym_bind_address_token1] = ACTIONS(2421), + [aux_sym_bind_interface_token1] = ACTIONS(2421), + [aux_sym_canonical_domains_token1] = ACTIONS(2421), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2421), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2421), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2421), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2421), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2421), + [aux_sym_certificate_file_token1] = ACTIONS(2421), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2421), + [aux_sym_channel_timeout_token1] = ACTIONS(2421), + [aux_sym_check_host_ip_token1] = ACTIONS(2421), + [aux_sym_ciphers_token1] = ACTIONS(2421), + [aux_sym_cipher_token1] = ACTIONS(2423), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2421), + [aux_sym_compression_token1] = ACTIONS(2421), + [aux_sym_connection_attempts_token1] = ACTIONS(2421), + [aux_sym_connect_timeout_token1] = ACTIONS(2421), + [aux_sym_control_master_token1] = ACTIONS(2421), + [aux_sym_control_path_token1] = ACTIONS(2421), + [aux_sym_control_persist_token1] = ACTIONS(2421), + [aux_sym_dynamic_forward_token1] = ACTIONS(2421), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2421), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2421), + [aux_sym_escape_char_token1] = ACTIONS(2421), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2421), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2421), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2421), + [aux_sym_forward_agent_token1] = ACTIONS(2421), + [aux_sym_forward_x11_token1] = ACTIONS(2423), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2421), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2421), + [aux_sym_gateway_ports_token1] = ACTIONS(2421), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2421), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2421), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2421), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2421), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2421), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2421), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2421), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2421), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2421), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2421), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2421), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2421), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2421), + [aux_sym_host_key_alias_token1] = ACTIONS(2421), + [aux_sym_hostname_token1] = ACTIONS(2421), + [aux_sym_identities_only_token1] = ACTIONS(2421), + [aux_sym_identity_agent_token1] = ACTIONS(2421), + [aux_sym_identity_file_token1] = ACTIONS(2421), + [aux_sym_ignore_unknown_token1] = ACTIONS(2421), + [aux_sym_include_token1] = ACTIONS(2421), + [aux_sym_ip_qos_token1] = ACTIONS(2421), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2421), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2421), + [aux_sym_kex_algorithms_token1] = ACTIONS(2421), + [aux_sym_known_hosts_command_token1] = ACTIONS(2421), + [aux_sym_local_command_token1] = ACTIONS(2421), + [aux_sym_local_forward_token1] = ACTIONS(2421), + [aux_sym_log_level_token1] = ACTIONS(2421), + [aux_sym_log_verbose_token1] = ACTIONS(2421), + [aux_sym_macs_token1] = ACTIONS(2421), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2421), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2421), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2421), + [aux_sym_password_authentication_token1] = ACTIONS(2421), + [aux_sym_permit_local_command_token1] = ACTIONS(2421), + [aux_sym_permit_remote_open_token1] = ACTIONS(2421), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2421), + [aux_sym_port_token1] = ACTIONS(2421), + [aux_sym_preferred_authentications_token1] = ACTIONS(2421), + [aux_sym_protocol_token1] = ACTIONS(2421), + [aux_sym_proxy_command_token1] = ACTIONS(2421), + [aux_sym_proxy_jump_token1] = ACTIONS(2421), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2421), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2421), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2421), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2421), + [aux_sym_rekey_limit_token1] = ACTIONS(2421), + [aux_sym_remote_command_token1] = ACTIONS(2421), + [aux_sym_remote_forward_token1] = ACTIONS(2421), + [aux_sym_request_tty_token1] = ACTIONS(2421), + [aux_sym_required_rsa_size_token1] = ACTIONS(2421), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2421), + [aux_sym_security_key_provider_token1] = ACTIONS(2421), + [aux_sym_send_env_token1] = ACTIONS(2421), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2421), + [aux_sym_server_alive_interval_token1] = ACTIONS(2421), + [aux_sym_session_type_token1] = ACTIONS(2421), + [aux_sym_set_env_token1] = ACTIONS(2421), + [aux_sym_stdin_null_token1] = ACTIONS(2421), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2421), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2421), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2421), + [aux_sym_syslog_facility_token1] = ACTIONS(2421), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2421), + [aux_sym_keep_alive_token1] = ACTIONS(2421), + [aux_sym_tag_token1] = ACTIONS(2421), + [aux_sym_tunnel_token1] = ACTIONS(2423), + [aux_sym_tunnel_device_token1] = ACTIONS(2421), + [aux_sym_update_host_keys_token1] = ACTIONS(2421), + [aux_sym_use_keychain_token1] = ACTIONS(2421), + [aux_sym_use_roaming_token1] = ACTIONS(2421), + [aux_sym_user_token1] = ACTIONS(2423), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2421), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2421), + [aux_sym_visual_host_key_token1] = ACTIONS(2421), + [aux_sym_xauth_location_token1] = ACTIONS(2421), }, [326] = { - [ts_builtin_sym_end] = ACTIONS(2418), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2420), - [anon_sym_DQUOTE] = ACTIONS(2418), - [aux_sym_match_token1] = ACTIONS(2418), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2418), - [aux_sym_address_family_token1] = ACTIONS(2418), - [aux_sym_batch_mode_token1] = ACTIONS(2418), - [aux_sym_bind_address_token1] = ACTIONS(2418), - [aux_sym_bind_interface_token1] = ACTIONS(2418), - [aux_sym_canonical_domains_token1] = ACTIONS(2418), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2418), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2418), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2418), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2418), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2418), - [aux_sym_certificate_file_token1] = ACTIONS(2418), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2418), - [aux_sym_channel_timeout_token1] = ACTIONS(2418), - [aux_sym_check_host_ip_token1] = ACTIONS(2418), - [aux_sym_ciphers_token1] = ACTIONS(2418), - [aux_sym_cipher_token1] = ACTIONS(2420), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2418), - [aux_sym_compression_token1] = ACTIONS(2418), - [aux_sym_connection_attempts_token1] = ACTIONS(2418), - [aux_sym_connect_timeout_token1] = ACTIONS(2418), - [aux_sym_control_master_token1] = ACTIONS(2418), - [aux_sym_control_path_token1] = ACTIONS(2418), - [aux_sym_control_persist_token1] = ACTIONS(2418), - [aux_sym_dynamic_forward_token1] = ACTIONS(2418), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2418), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2418), - [aux_sym_escape_char_token1] = ACTIONS(2418), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2418), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2418), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2418), - [aux_sym_forward_agent_token1] = ACTIONS(2418), - [aux_sym_forward_x11_token1] = ACTIONS(2420), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2418), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2418), - [aux_sym_gateway_ports_token1] = ACTIONS(2418), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2418), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2418), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2418), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2418), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2418), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2418), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2418), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2418), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2418), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2418), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2418), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2418), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2418), - [aux_sym_host_key_alias_token1] = ACTIONS(2418), - [aux_sym_hostname_token1] = ACTIONS(2418), - [aux_sym_identities_only_token1] = ACTIONS(2418), - [aux_sym_identity_agent_token1] = ACTIONS(2418), - [aux_sym_identity_file_token1] = ACTIONS(2418), - [aux_sym_ignore_unknown_token1] = ACTIONS(2418), - [aux_sym_include_token1] = ACTIONS(2418), - [aux_sym_ip_qos_token1] = ACTIONS(2418), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2418), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2418), - [aux_sym_kex_algorithms_token1] = ACTIONS(2418), - [aux_sym_known_hosts_command_token1] = ACTIONS(2418), - [aux_sym_local_command_token1] = ACTIONS(2418), - [aux_sym_local_forward_token1] = ACTIONS(2418), - [aux_sym_log_level_token1] = ACTIONS(2418), - [aux_sym_log_verbose_token1] = ACTIONS(2418), - [aux_sym_macs_token1] = ACTIONS(2418), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2418), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2418), - [aux_sym_password_authentication_token1] = ACTIONS(2418), - [aux_sym_permit_local_command_token1] = ACTIONS(2418), - [aux_sym_permit_remote_open_token1] = ACTIONS(2418), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2418), - [aux_sym_port_token1] = ACTIONS(2418), - [aux_sym_preferred_authentications_token1] = ACTIONS(2418), - [aux_sym_protocol_token1] = ACTIONS(2418), - [aux_sym_proxy_command_token1] = ACTIONS(2418), - [aux_sym_proxy_jump_token1] = ACTIONS(2418), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2418), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2418), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2418), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2418), - [aux_sym_rekey_limit_token1] = ACTIONS(2418), - [aux_sym_remote_command_token1] = ACTIONS(2418), - [aux_sym_remote_forward_token1] = ACTIONS(2418), - [aux_sym_request_tty_token1] = ACTIONS(2418), - [aux_sym_required_rsa_size_token1] = ACTIONS(2418), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2418), - [aux_sym_security_key_provider_token1] = ACTIONS(2418), - [aux_sym_send_env_token1] = ACTIONS(2418), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2418), - [aux_sym_server_alive_interval_token1] = ACTIONS(2418), - [aux_sym_session_type_token1] = ACTIONS(2418), - [aux_sym_set_env_token1] = ACTIONS(2418), - [aux_sym_stdin_null_token1] = ACTIONS(2418), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2418), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2418), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2418), - [aux_sym_syslog_facility_token1] = ACTIONS(2418), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2418), - [aux_sym_keep_alive_token1] = ACTIONS(2418), - [aux_sym_tag_token1] = ACTIONS(2418), - [aux_sym_tunnel_token1] = ACTIONS(2420), - [aux_sym_tunnel_device_token1] = ACTIONS(2418), - [aux_sym_update_host_keys_token1] = ACTIONS(2418), - [aux_sym_use_keychain_token1] = ACTIONS(2418), - [aux_sym_use_roaming_token1] = ACTIONS(2418), - [aux_sym_user_token1] = ACTIONS(2420), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2418), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2418), - [aux_sym_visual_host_key_token1] = ACTIONS(2418), - [aux_sym_xauth_location_token1] = ACTIONS(2418), + [ts_builtin_sym_end] = ACTIONS(2427), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2427), + [aux_sym_match_token1] = ACTIONS(2427), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2427), + [aux_sym_address_family_token1] = ACTIONS(2427), + [aux_sym_batch_mode_token1] = ACTIONS(2427), + [aux_sym_bind_address_token1] = ACTIONS(2427), + [aux_sym_bind_interface_token1] = ACTIONS(2427), + [aux_sym_canonical_domains_token1] = ACTIONS(2427), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2427), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2427), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2427), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2427), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2427), + [aux_sym_certificate_file_token1] = ACTIONS(2427), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2427), + [aux_sym_channel_timeout_token1] = ACTIONS(2427), + [aux_sym_check_host_ip_token1] = ACTIONS(2427), + [aux_sym_ciphers_token1] = ACTIONS(2427), + [aux_sym_cipher_token1] = ACTIONS(2429), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2427), + [aux_sym_compression_token1] = ACTIONS(2427), + [aux_sym_connection_attempts_token1] = ACTIONS(2427), + [aux_sym_connect_timeout_token1] = ACTIONS(2427), + [aux_sym_control_master_token1] = ACTIONS(2427), + [aux_sym_control_path_token1] = ACTIONS(2427), + [aux_sym_control_persist_token1] = ACTIONS(2427), + [aux_sym_dynamic_forward_token1] = ACTIONS(2427), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2427), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2427), + [aux_sym_escape_char_token1] = ACTIONS(2427), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2427), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2427), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2427), + [aux_sym_forward_agent_token1] = ACTIONS(2427), + [aux_sym_forward_x11_token1] = ACTIONS(2429), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2427), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2427), + [aux_sym_gateway_ports_token1] = ACTIONS(2427), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2427), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2427), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2427), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2427), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2427), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2427), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2427), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2427), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2427), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2427), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2427), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2427), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2427), + [aux_sym_host_key_alias_token1] = ACTIONS(2427), + [aux_sym_hostname_token1] = ACTIONS(2427), + [aux_sym_identities_only_token1] = ACTIONS(2427), + [aux_sym_identity_agent_token1] = ACTIONS(2427), + [aux_sym_identity_file_token1] = ACTIONS(2427), + [aux_sym_ignore_unknown_token1] = ACTIONS(2427), + [aux_sym_include_token1] = ACTIONS(2427), + [aux_sym_ip_qos_token1] = ACTIONS(2427), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2427), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2427), + [aux_sym_kex_algorithms_token1] = ACTIONS(2427), + [aux_sym_known_hosts_command_token1] = ACTIONS(2427), + [aux_sym_local_command_token1] = ACTIONS(2427), + [aux_sym_local_forward_token1] = ACTIONS(2427), + [aux_sym_log_level_token1] = ACTIONS(2427), + [aux_sym_log_verbose_token1] = ACTIONS(2427), + [aux_sym_macs_token1] = ACTIONS(2427), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2427), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2427), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2427), + [aux_sym_password_authentication_token1] = ACTIONS(2427), + [aux_sym_permit_local_command_token1] = ACTIONS(2427), + [aux_sym_permit_remote_open_token1] = ACTIONS(2427), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2427), + [aux_sym_port_token1] = ACTIONS(2427), + [aux_sym_preferred_authentications_token1] = ACTIONS(2427), + [aux_sym_protocol_token1] = ACTIONS(2427), + [aux_sym_proxy_command_token1] = ACTIONS(2427), + [aux_sym_proxy_jump_token1] = ACTIONS(2427), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2427), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2427), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2427), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2427), + [aux_sym_rekey_limit_token1] = ACTIONS(2427), + [aux_sym_remote_command_token1] = ACTIONS(2427), + [aux_sym_remote_forward_token1] = ACTIONS(2427), + [aux_sym_request_tty_token1] = ACTIONS(2427), + [aux_sym_required_rsa_size_token1] = ACTIONS(2427), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2427), + [aux_sym_security_key_provider_token1] = ACTIONS(2427), + [aux_sym_send_env_token1] = ACTIONS(2427), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2427), + [aux_sym_server_alive_interval_token1] = ACTIONS(2427), + [aux_sym_session_type_token1] = ACTIONS(2427), + [aux_sym_set_env_token1] = ACTIONS(2427), + [aux_sym_stdin_null_token1] = ACTIONS(2427), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2427), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2427), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2427), + [aux_sym_syslog_facility_token1] = ACTIONS(2427), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2427), + [aux_sym_keep_alive_token1] = ACTIONS(2427), + [aux_sym_tag_token1] = ACTIONS(2427), + [aux_sym_tunnel_token1] = ACTIONS(2429), + [aux_sym_tunnel_device_token1] = ACTIONS(2427), + [aux_sym_update_host_keys_token1] = ACTIONS(2427), + [aux_sym_use_keychain_token1] = ACTIONS(2427), + [aux_sym_use_roaming_token1] = ACTIONS(2427), + [aux_sym_user_token1] = ACTIONS(2429), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2427), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2427), + [aux_sym_visual_host_key_token1] = ACTIONS(2427), + [aux_sym_xauth_location_token1] = ACTIONS(2427), }, [327] = { - [ts_builtin_sym_end] = ACTIONS(2422), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2424), - [anon_sym_DQUOTE] = ACTIONS(2426), - [aux_sym_match_token1] = ACTIONS(2422), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2422), - [aux_sym_address_family_token1] = ACTIONS(2422), - [aux_sym_batch_mode_token1] = ACTIONS(2422), - [aux_sym_bind_address_token1] = ACTIONS(2422), - [aux_sym_bind_interface_token1] = ACTIONS(2422), - [aux_sym_canonical_domains_token1] = ACTIONS(2422), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2422), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2422), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2422), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2422), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2422), - [aux_sym_certificate_file_token1] = ACTIONS(2422), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2422), - [aux_sym_channel_timeout_token1] = ACTIONS(2422), - [aux_sym_check_host_ip_token1] = ACTIONS(2422), - [aux_sym_ciphers_token1] = ACTIONS(2422), - [aux_sym_cipher_token1] = ACTIONS(2424), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2422), - [aux_sym_compression_token1] = ACTIONS(2422), - [aux_sym_connection_attempts_token1] = ACTIONS(2422), - [aux_sym_connect_timeout_token1] = ACTIONS(2422), - [aux_sym_control_master_token1] = ACTIONS(2422), - [aux_sym_control_path_token1] = ACTIONS(2422), - [aux_sym_control_persist_token1] = ACTIONS(2422), - [aux_sym_dynamic_forward_token1] = ACTIONS(2422), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2422), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2422), - [aux_sym_escape_char_token1] = ACTIONS(2422), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2422), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2422), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2422), - [aux_sym_forward_agent_token1] = ACTIONS(2422), - [aux_sym_forward_x11_token1] = ACTIONS(2424), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2422), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2422), - [aux_sym_gateway_ports_token1] = ACTIONS(2422), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2422), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2422), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2422), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2422), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2422), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2422), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2422), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2422), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2422), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2422), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2422), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2422), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2422), - [aux_sym_host_key_alias_token1] = ACTIONS(2422), - [aux_sym_hostname_token1] = ACTIONS(2422), - [aux_sym_identities_only_token1] = ACTIONS(2422), - [aux_sym_identity_agent_token1] = ACTIONS(2422), - [aux_sym_identity_file_token1] = ACTIONS(2422), - [aux_sym_ignore_unknown_token1] = ACTIONS(2422), - [aux_sym_include_token1] = ACTIONS(2422), - [aux_sym_ip_qos_token1] = ACTIONS(2422), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2422), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2422), - [aux_sym_kex_algorithms_token1] = ACTIONS(2422), - [aux_sym_known_hosts_command_token1] = ACTIONS(2422), - [aux_sym_local_command_token1] = ACTIONS(2422), - [aux_sym_local_forward_token1] = ACTIONS(2422), - [aux_sym_log_level_token1] = ACTIONS(2422), - [aux_sym_log_verbose_token1] = ACTIONS(2422), - [aux_sym_macs_token1] = ACTIONS(2422), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2422), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2422), - [aux_sym_password_authentication_token1] = ACTIONS(2422), - [aux_sym_permit_local_command_token1] = ACTIONS(2422), - [aux_sym_permit_remote_open_token1] = ACTIONS(2422), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2422), - [aux_sym_port_token1] = ACTIONS(2422), - [aux_sym_preferred_authentications_token1] = ACTIONS(2422), - [aux_sym_protocol_token1] = ACTIONS(2422), - [aux_sym_proxy_command_token1] = ACTIONS(2422), - [aux_sym_proxy_jump_token1] = ACTIONS(2422), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2422), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2422), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2422), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2422), - [aux_sym_rekey_limit_token1] = ACTIONS(2422), - [aux_sym_remote_command_token1] = ACTIONS(2422), - [aux_sym_remote_forward_token1] = ACTIONS(2422), - [aux_sym_request_tty_token1] = ACTIONS(2422), - [aux_sym_required_rsa_size_token1] = ACTIONS(2422), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2422), - [aux_sym_security_key_provider_token1] = ACTIONS(2422), - [aux_sym_send_env_token1] = ACTIONS(2422), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2422), - [aux_sym_server_alive_interval_token1] = ACTIONS(2422), - [aux_sym_session_type_token1] = ACTIONS(2422), - [aux_sym_set_env_token1] = ACTIONS(2422), - [aux_sym_stdin_null_token1] = ACTIONS(2422), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2422), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2422), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2422), - [aux_sym_syslog_facility_token1] = ACTIONS(2422), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2422), - [aux_sym_keep_alive_token1] = ACTIONS(2422), - [aux_sym_tag_token1] = ACTIONS(2422), - [aux_sym_tunnel_token1] = ACTIONS(2424), - [aux_sym_tunnel_device_token1] = ACTIONS(2422), - [aux_sym_update_host_keys_token1] = ACTIONS(2422), - [aux_sym_use_keychain_token1] = ACTIONS(2422), - [aux_sym_use_roaming_token1] = ACTIONS(2422), - [aux_sym_user_token1] = ACTIONS(2424), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2422), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2422), - [aux_sym_visual_host_key_token1] = ACTIONS(2422), - [aux_sym_xauth_location_token1] = ACTIONS(2422), + [ts_builtin_sym_end] = ACTIONS(2431), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2435), + [aux_sym_match_token1] = ACTIONS(2431), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2431), + [aux_sym_address_family_token1] = ACTIONS(2431), + [aux_sym_batch_mode_token1] = ACTIONS(2431), + [aux_sym_bind_address_token1] = ACTIONS(2431), + [aux_sym_bind_interface_token1] = ACTIONS(2431), + [aux_sym_canonical_domains_token1] = ACTIONS(2431), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2431), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2431), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2431), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2431), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2431), + [aux_sym_certificate_file_token1] = ACTIONS(2431), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2431), + [aux_sym_channel_timeout_token1] = ACTIONS(2431), + [aux_sym_check_host_ip_token1] = ACTIONS(2431), + [aux_sym_ciphers_token1] = ACTIONS(2431), + [aux_sym_cipher_token1] = ACTIONS(2433), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2431), + [aux_sym_compression_token1] = ACTIONS(2431), + [aux_sym_connection_attempts_token1] = ACTIONS(2431), + [aux_sym_connect_timeout_token1] = ACTIONS(2431), + [aux_sym_control_master_token1] = ACTIONS(2431), + [aux_sym_control_path_token1] = ACTIONS(2431), + [aux_sym_control_persist_token1] = ACTIONS(2431), + [aux_sym_dynamic_forward_token1] = ACTIONS(2431), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2431), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2431), + [aux_sym_escape_char_token1] = ACTIONS(2431), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2431), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2431), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2431), + [aux_sym_forward_agent_token1] = ACTIONS(2431), + [aux_sym_forward_x11_token1] = ACTIONS(2433), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2431), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2431), + [aux_sym_gateway_ports_token1] = ACTIONS(2431), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2431), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2431), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2431), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2431), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2431), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2431), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2431), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2431), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2431), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2431), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2431), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2431), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2431), + [aux_sym_host_key_alias_token1] = ACTIONS(2431), + [aux_sym_hostname_token1] = ACTIONS(2431), + [aux_sym_identities_only_token1] = ACTIONS(2431), + [aux_sym_identity_agent_token1] = ACTIONS(2431), + [aux_sym_identity_file_token1] = ACTIONS(2431), + [aux_sym_ignore_unknown_token1] = ACTIONS(2431), + [aux_sym_include_token1] = ACTIONS(2431), + [aux_sym_ip_qos_token1] = ACTIONS(2431), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2431), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2431), + [aux_sym_kex_algorithms_token1] = ACTIONS(2431), + [aux_sym_known_hosts_command_token1] = ACTIONS(2431), + [aux_sym_local_command_token1] = ACTIONS(2431), + [aux_sym_local_forward_token1] = ACTIONS(2431), + [aux_sym_log_level_token1] = ACTIONS(2431), + [aux_sym_log_verbose_token1] = ACTIONS(2431), + [aux_sym_macs_token1] = ACTIONS(2431), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2431), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2431), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2431), + [aux_sym_password_authentication_token1] = ACTIONS(2431), + [aux_sym_permit_local_command_token1] = ACTIONS(2431), + [aux_sym_permit_remote_open_token1] = ACTIONS(2431), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2431), + [aux_sym_port_token1] = ACTIONS(2431), + [aux_sym_preferred_authentications_token1] = ACTIONS(2431), + [aux_sym_protocol_token1] = ACTIONS(2431), + [aux_sym_proxy_command_token1] = ACTIONS(2431), + [aux_sym_proxy_jump_token1] = ACTIONS(2431), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2431), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2431), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2431), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2431), + [aux_sym_rekey_limit_token1] = ACTIONS(2431), + [aux_sym_remote_command_token1] = ACTIONS(2431), + [aux_sym_remote_forward_token1] = ACTIONS(2431), + [aux_sym_request_tty_token1] = ACTIONS(2431), + [aux_sym_required_rsa_size_token1] = ACTIONS(2431), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2431), + [aux_sym_security_key_provider_token1] = ACTIONS(2431), + [aux_sym_send_env_token1] = ACTIONS(2431), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2431), + [aux_sym_server_alive_interval_token1] = ACTIONS(2431), + [aux_sym_session_type_token1] = ACTIONS(2431), + [aux_sym_set_env_token1] = ACTIONS(2431), + [aux_sym_stdin_null_token1] = ACTIONS(2431), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2431), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2431), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2431), + [aux_sym_syslog_facility_token1] = ACTIONS(2431), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2431), + [aux_sym_keep_alive_token1] = ACTIONS(2431), + [aux_sym_tag_token1] = ACTIONS(2431), + [aux_sym_tunnel_token1] = ACTIONS(2433), + [aux_sym_tunnel_device_token1] = ACTIONS(2431), + [aux_sym_update_host_keys_token1] = ACTIONS(2431), + [aux_sym_use_keychain_token1] = ACTIONS(2431), + [aux_sym_use_roaming_token1] = ACTIONS(2431), + [aux_sym_user_token1] = ACTIONS(2433), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2431), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2431), + [aux_sym_visual_host_key_token1] = ACTIONS(2431), + [aux_sym_xauth_location_token1] = ACTIONS(2431), }, [328] = { - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2430), - [anon_sym_DQUOTE] = ACTIONS(2428), - [aux_sym_match_token1] = ACTIONS(2428), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2428), - [aux_sym_address_family_token1] = ACTIONS(2428), - [aux_sym_batch_mode_token1] = ACTIONS(2428), - [aux_sym_bind_address_token1] = ACTIONS(2428), - [aux_sym_bind_interface_token1] = ACTIONS(2428), - [aux_sym_canonical_domains_token1] = ACTIONS(2428), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2428), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2428), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2428), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2428), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2428), - [aux_sym_certificate_file_token1] = ACTIONS(2428), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2428), - [aux_sym_channel_timeout_token1] = ACTIONS(2428), - [aux_sym_check_host_ip_token1] = ACTIONS(2428), - [aux_sym_ciphers_token1] = ACTIONS(2428), - [aux_sym_cipher_token1] = ACTIONS(2430), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2428), - [aux_sym_compression_token1] = ACTIONS(2428), - [aux_sym_connection_attempts_token1] = ACTIONS(2428), - [aux_sym_connect_timeout_token1] = ACTIONS(2428), - [aux_sym_control_master_token1] = ACTIONS(2428), - [aux_sym_control_path_token1] = ACTIONS(2428), - [aux_sym_control_persist_token1] = ACTIONS(2428), - [aux_sym_dynamic_forward_token1] = ACTIONS(2428), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2428), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2428), - [aux_sym_escape_char_token1] = ACTIONS(2428), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2428), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2428), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2428), - [aux_sym_forward_agent_token1] = ACTIONS(2428), - [aux_sym_forward_x11_token1] = ACTIONS(2430), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2428), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2428), - [aux_sym_gateway_ports_token1] = ACTIONS(2428), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2428), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2428), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2428), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2428), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2428), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2428), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2428), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2428), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2428), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2428), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2428), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2428), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2428), - [aux_sym_host_key_alias_token1] = ACTIONS(2428), - [aux_sym_hostname_token1] = ACTIONS(2428), - [aux_sym_identities_only_token1] = ACTIONS(2428), - [aux_sym_identity_agent_token1] = ACTIONS(2428), - [aux_sym_identity_file_token1] = ACTIONS(2428), - [aux_sym_ignore_unknown_token1] = ACTIONS(2428), - [aux_sym_include_token1] = ACTIONS(2428), - [aux_sym_ip_qos_token1] = ACTIONS(2428), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2428), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2428), - [aux_sym_kex_algorithms_token1] = ACTIONS(2428), - [aux_sym_known_hosts_command_token1] = ACTIONS(2428), - [aux_sym_local_command_token1] = ACTIONS(2428), - [aux_sym_local_forward_token1] = ACTIONS(2428), - [aux_sym_log_level_token1] = ACTIONS(2428), - [aux_sym_log_verbose_token1] = ACTIONS(2428), - [aux_sym_macs_token1] = ACTIONS(2428), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2428), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2428), - [aux_sym_password_authentication_token1] = ACTIONS(2428), - [aux_sym_permit_local_command_token1] = ACTIONS(2428), - [aux_sym_permit_remote_open_token1] = ACTIONS(2428), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2428), - [aux_sym_port_token1] = ACTIONS(2428), - [aux_sym_preferred_authentications_token1] = ACTIONS(2428), - [aux_sym_protocol_token1] = ACTIONS(2428), - [aux_sym_proxy_command_token1] = ACTIONS(2428), - [aux_sym_proxy_jump_token1] = ACTIONS(2428), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2428), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2428), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2428), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2428), - [aux_sym_rekey_limit_token1] = ACTIONS(2428), - [aux_sym_remote_command_token1] = ACTIONS(2428), - [aux_sym_remote_forward_token1] = ACTIONS(2428), - [aux_sym_request_tty_token1] = ACTIONS(2428), - [aux_sym_required_rsa_size_token1] = ACTIONS(2428), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2428), - [aux_sym_security_key_provider_token1] = ACTIONS(2428), - [aux_sym_send_env_token1] = ACTIONS(2428), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2428), - [aux_sym_server_alive_interval_token1] = ACTIONS(2428), - [aux_sym_session_type_token1] = ACTIONS(2428), - [aux_sym_set_env_token1] = ACTIONS(2428), - [aux_sym_stdin_null_token1] = ACTIONS(2428), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2428), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2428), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2428), - [aux_sym_syslog_facility_token1] = ACTIONS(2428), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2428), - [aux_sym_keep_alive_token1] = ACTIONS(2428), - [aux_sym_tag_token1] = ACTIONS(2428), - [aux_sym_tunnel_token1] = ACTIONS(2430), - [aux_sym_tunnel_device_token1] = ACTIONS(2428), - [aux_sym_update_host_keys_token1] = ACTIONS(2428), - [aux_sym_use_keychain_token1] = ACTIONS(2428), - [aux_sym_use_roaming_token1] = ACTIONS(2428), - [aux_sym_user_token1] = ACTIONS(2430), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2428), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2428), - [aux_sym_visual_host_key_token1] = ACTIONS(2428), - [aux_sym_xauth_location_token1] = ACTIONS(2428), + [ts_builtin_sym_end] = ACTIONS(2437), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(2437), + [aux_sym_match_token1] = ACTIONS(2437), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2437), + [aux_sym_address_family_token1] = ACTIONS(2437), + [aux_sym_batch_mode_token1] = ACTIONS(2437), + [aux_sym_bind_address_token1] = ACTIONS(2437), + [aux_sym_bind_interface_token1] = ACTIONS(2437), + [aux_sym_canonical_domains_token1] = ACTIONS(2437), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2437), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2437), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2437), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2437), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2437), + [aux_sym_certificate_file_token1] = ACTIONS(2437), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2437), + [aux_sym_channel_timeout_token1] = ACTIONS(2437), + [aux_sym_check_host_ip_token1] = ACTIONS(2437), + [aux_sym_ciphers_token1] = ACTIONS(2437), + [aux_sym_cipher_token1] = ACTIONS(2439), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2437), + [aux_sym_compression_token1] = ACTIONS(2437), + [aux_sym_connection_attempts_token1] = ACTIONS(2437), + [aux_sym_connect_timeout_token1] = ACTIONS(2437), + [aux_sym_control_master_token1] = ACTIONS(2437), + [aux_sym_control_path_token1] = ACTIONS(2437), + [aux_sym_control_persist_token1] = ACTIONS(2437), + [aux_sym_dynamic_forward_token1] = ACTIONS(2437), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2437), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2437), + [aux_sym_escape_char_token1] = ACTIONS(2437), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2437), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2437), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2437), + [aux_sym_forward_agent_token1] = ACTIONS(2437), + [aux_sym_forward_x11_token1] = ACTIONS(2439), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2437), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2437), + [aux_sym_gateway_ports_token1] = ACTIONS(2437), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2437), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2437), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2437), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2437), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2437), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2437), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2437), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2437), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2437), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2437), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2437), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2437), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2437), + [aux_sym_host_key_alias_token1] = ACTIONS(2437), + [aux_sym_hostname_token1] = ACTIONS(2437), + [aux_sym_identities_only_token1] = ACTIONS(2437), + [aux_sym_identity_agent_token1] = ACTIONS(2437), + [aux_sym_identity_file_token1] = ACTIONS(2437), + [aux_sym_ignore_unknown_token1] = ACTIONS(2437), + [aux_sym_include_token1] = ACTIONS(2437), + [aux_sym_ip_qos_token1] = ACTIONS(2437), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2437), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2437), + [aux_sym_kex_algorithms_token1] = ACTIONS(2437), + [aux_sym_known_hosts_command_token1] = ACTIONS(2437), + [aux_sym_local_command_token1] = ACTIONS(2437), + [aux_sym_local_forward_token1] = ACTIONS(2437), + [aux_sym_log_level_token1] = ACTIONS(2437), + [aux_sym_log_verbose_token1] = ACTIONS(2437), + [aux_sym_macs_token1] = ACTIONS(2437), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2437), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2437), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2437), + [aux_sym_password_authentication_token1] = ACTIONS(2437), + [aux_sym_permit_local_command_token1] = ACTIONS(2437), + [aux_sym_permit_remote_open_token1] = ACTIONS(2437), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2437), + [aux_sym_port_token1] = ACTIONS(2437), + [aux_sym_preferred_authentications_token1] = ACTIONS(2437), + [aux_sym_protocol_token1] = ACTIONS(2437), + [aux_sym_proxy_command_token1] = ACTIONS(2437), + [aux_sym_proxy_jump_token1] = ACTIONS(2437), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2437), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2437), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2437), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2437), + [aux_sym_rekey_limit_token1] = ACTIONS(2437), + [aux_sym_remote_command_token1] = ACTIONS(2437), + [aux_sym_remote_forward_token1] = ACTIONS(2437), + [aux_sym_request_tty_token1] = ACTIONS(2437), + [aux_sym_required_rsa_size_token1] = ACTIONS(2437), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2437), + [aux_sym_security_key_provider_token1] = ACTIONS(2437), + [aux_sym_send_env_token1] = ACTIONS(2437), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2437), + [aux_sym_server_alive_interval_token1] = ACTIONS(2437), + [aux_sym_session_type_token1] = ACTIONS(2437), + [aux_sym_set_env_token1] = ACTIONS(2437), + [aux_sym_stdin_null_token1] = ACTIONS(2437), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2437), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2437), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2437), + [aux_sym_syslog_facility_token1] = ACTIONS(2437), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2437), + [aux_sym_keep_alive_token1] = ACTIONS(2437), + [aux_sym_tag_token1] = ACTIONS(2437), + [aux_sym_tunnel_token1] = ACTIONS(2439), + [aux_sym_tunnel_device_token1] = ACTIONS(2437), + [aux_sym_update_host_keys_token1] = ACTIONS(2437), + [aux_sym_use_keychain_token1] = ACTIONS(2437), + [aux_sym_use_roaming_token1] = ACTIONS(2437), + [aux_sym_user_token1] = ACTIONS(2439), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2437), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2437), + [aux_sym_visual_host_key_token1] = ACTIONS(2437), + [aux_sym_xauth_location_token1] = ACTIONS(2437), }, [329] = { - [ts_builtin_sym_end] = ACTIONS(2432), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2434), - [anon_sym_DQUOTE] = ACTIONS(2436), - [aux_sym_match_token1] = ACTIONS(2432), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2432), - [aux_sym_address_family_token1] = ACTIONS(2432), - [aux_sym_batch_mode_token1] = ACTIONS(2432), - [aux_sym_bind_address_token1] = ACTIONS(2432), - [aux_sym_bind_interface_token1] = ACTIONS(2432), - [aux_sym_canonical_domains_token1] = ACTIONS(2432), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2432), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2432), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2432), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2432), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2432), - [aux_sym_certificate_file_token1] = ACTIONS(2432), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2432), - [aux_sym_channel_timeout_token1] = ACTIONS(2432), - [aux_sym_check_host_ip_token1] = ACTIONS(2432), - [aux_sym_ciphers_token1] = ACTIONS(2432), - [aux_sym_cipher_token1] = ACTIONS(2434), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2432), - [aux_sym_compression_token1] = ACTIONS(2432), - [aux_sym_connection_attempts_token1] = ACTIONS(2432), - [aux_sym_connect_timeout_token1] = ACTIONS(2432), - [aux_sym_control_master_token1] = ACTIONS(2432), - [aux_sym_control_path_token1] = ACTIONS(2432), - [aux_sym_control_persist_token1] = ACTIONS(2432), - [aux_sym_dynamic_forward_token1] = ACTIONS(2432), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2432), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2432), - [aux_sym_escape_char_token1] = ACTIONS(2432), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2432), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2432), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2432), - [aux_sym_forward_agent_token1] = ACTIONS(2432), - [aux_sym_forward_x11_token1] = ACTIONS(2434), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2432), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2432), - [aux_sym_gateway_ports_token1] = ACTIONS(2432), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2432), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2432), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2432), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2432), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2432), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2432), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2432), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2432), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2432), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2432), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2432), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2432), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2432), - [aux_sym_host_key_alias_token1] = ACTIONS(2432), - [aux_sym_hostname_token1] = ACTIONS(2432), - [aux_sym_identities_only_token1] = ACTIONS(2432), - [aux_sym_identity_agent_token1] = ACTIONS(2432), - [aux_sym_identity_file_token1] = ACTIONS(2432), - [aux_sym_ignore_unknown_token1] = ACTIONS(2432), - [aux_sym_include_token1] = ACTIONS(2432), - [aux_sym_ip_qos_token1] = ACTIONS(2432), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2432), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2432), - [aux_sym_kex_algorithms_token1] = ACTIONS(2432), - [aux_sym_known_hosts_command_token1] = ACTIONS(2432), - [aux_sym_local_command_token1] = ACTIONS(2432), - [aux_sym_local_forward_token1] = ACTIONS(2432), - [aux_sym_log_level_token1] = ACTIONS(2432), - [aux_sym_log_verbose_token1] = ACTIONS(2432), - [aux_sym_macs_token1] = ACTIONS(2432), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2432), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2432), - [aux_sym_password_authentication_token1] = ACTIONS(2432), - [aux_sym_permit_local_command_token1] = ACTIONS(2432), - [aux_sym_permit_remote_open_token1] = ACTIONS(2432), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2432), - [aux_sym_port_token1] = ACTIONS(2432), - [aux_sym_preferred_authentications_token1] = ACTIONS(2432), - [aux_sym_protocol_token1] = ACTIONS(2432), - [aux_sym_proxy_command_token1] = ACTIONS(2432), - [aux_sym_proxy_jump_token1] = ACTIONS(2432), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2432), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2432), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2432), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2432), - [aux_sym_rekey_limit_token1] = ACTIONS(2432), - [aux_sym_remote_command_token1] = ACTIONS(2432), - [aux_sym_remote_forward_token1] = ACTIONS(2432), - [aux_sym_request_tty_token1] = ACTIONS(2432), - [aux_sym_required_rsa_size_token1] = ACTIONS(2432), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2432), - [aux_sym_security_key_provider_token1] = ACTIONS(2432), - [aux_sym_send_env_token1] = ACTIONS(2432), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2432), - [aux_sym_server_alive_interval_token1] = ACTIONS(2432), - [aux_sym_session_type_token1] = ACTIONS(2432), - [aux_sym_set_env_token1] = ACTIONS(2432), - [aux_sym_stdin_null_token1] = ACTIONS(2432), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2432), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2432), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2432), - [aux_sym_syslog_facility_token1] = ACTIONS(2432), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2432), - [aux_sym_keep_alive_token1] = ACTIONS(2432), - [aux_sym_tag_token1] = ACTIONS(2432), - [aux_sym_tunnel_token1] = ACTIONS(2434), - [aux_sym_tunnel_device_token1] = ACTIONS(2432), - [aux_sym_update_host_keys_token1] = ACTIONS(2432), - [aux_sym_use_keychain_token1] = ACTIONS(2432), - [aux_sym_use_roaming_token1] = ACTIONS(2432), - [aux_sym_user_token1] = ACTIONS(2434), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2432), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2432), - [aux_sym_visual_host_key_token1] = ACTIONS(2432), - [aux_sym_xauth_location_token1] = ACTIONS(2432), + [ts_builtin_sym_end] = ACTIONS(2441), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(2445), + [aux_sym_match_token1] = ACTIONS(2441), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2441), + [aux_sym_address_family_token1] = ACTIONS(2441), + [aux_sym_batch_mode_token1] = ACTIONS(2441), + [aux_sym_bind_address_token1] = ACTIONS(2441), + [aux_sym_bind_interface_token1] = ACTIONS(2441), + [aux_sym_canonical_domains_token1] = ACTIONS(2441), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2441), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2441), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2441), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2441), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2441), + [aux_sym_certificate_file_token1] = ACTIONS(2441), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2441), + [aux_sym_channel_timeout_token1] = ACTIONS(2441), + [aux_sym_check_host_ip_token1] = ACTIONS(2441), + [aux_sym_ciphers_token1] = ACTIONS(2441), + [aux_sym_cipher_token1] = ACTIONS(2443), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2441), + [aux_sym_compression_token1] = ACTIONS(2441), + [aux_sym_connection_attempts_token1] = ACTIONS(2441), + [aux_sym_connect_timeout_token1] = ACTIONS(2441), + [aux_sym_control_master_token1] = ACTIONS(2441), + [aux_sym_control_path_token1] = ACTIONS(2441), + [aux_sym_control_persist_token1] = ACTIONS(2441), + [aux_sym_dynamic_forward_token1] = ACTIONS(2441), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2441), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2441), + [aux_sym_escape_char_token1] = ACTIONS(2441), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2441), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2441), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2441), + [aux_sym_forward_agent_token1] = ACTIONS(2441), + [aux_sym_forward_x11_token1] = ACTIONS(2443), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2441), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2441), + [aux_sym_gateway_ports_token1] = ACTIONS(2441), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2441), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2441), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2441), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2441), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2441), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2441), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2441), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2441), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2441), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2441), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2441), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2441), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2441), + [aux_sym_host_key_alias_token1] = ACTIONS(2441), + [aux_sym_hostname_token1] = ACTIONS(2441), + [aux_sym_identities_only_token1] = ACTIONS(2441), + [aux_sym_identity_agent_token1] = ACTIONS(2441), + [aux_sym_identity_file_token1] = ACTIONS(2441), + [aux_sym_ignore_unknown_token1] = ACTIONS(2441), + [aux_sym_include_token1] = ACTIONS(2441), + [aux_sym_ip_qos_token1] = ACTIONS(2441), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2441), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2441), + [aux_sym_kex_algorithms_token1] = ACTIONS(2441), + [aux_sym_known_hosts_command_token1] = ACTIONS(2441), + [aux_sym_local_command_token1] = ACTIONS(2441), + [aux_sym_local_forward_token1] = ACTIONS(2441), + [aux_sym_log_level_token1] = ACTIONS(2441), + [aux_sym_log_verbose_token1] = ACTIONS(2441), + [aux_sym_macs_token1] = ACTIONS(2441), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2441), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2441), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2441), + [aux_sym_password_authentication_token1] = ACTIONS(2441), + [aux_sym_permit_local_command_token1] = ACTIONS(2441), + [aux_sym_permit_remote_open_token1] = ACTIONS(2441), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2441), + [aux_sym_port_token1] = ACTIONS(2441), + [aux_sym_preferred_authentications_token1] = ACTIONS(2441), + [aux_sym_protocol_token1] = ACTIONS(2441), + [aux_sym_proxy_command_token1] = ACTIONS(2441), + [aux_sym_proxy_jump_token1] = ACTIONS(2441), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2441), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2441), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2441), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2441), + [aux_sym_rekey_limit_token1] = ACTIONS(2441), + [aux_sym_remote_command_token1] = ACTIONS(2441), + [aux_sym_remote_forward_token1] = ACTIONS(2441), + [aux_sym_request_tty_token1] = ACTIONS(2441), + [aux_sym_required_rsa_size_token1] = ACTIONS(2441), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2441), + [aux_sym_security_key_provider_token1] = ACTIONS(2441), + [aux_sym_send_env_token1] = ACTIONS(2441), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2441), + [aux_sym_server_alive_interval_token1] = ACTIONS(2441), + [aux_sym_session_type_token1] = ACTIONS(2441), + [aux_sym_set_env_token1] = ACTIONS(2441), + [aux_sym_stdin_null_token1] = ACTIONS(2441), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2441), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2441), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2441), + [aux_sym_syslog_facility_token1] = ACTIONS(2441), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2441), + [aux_sym_keep_alive_token1] = ACTIONS(2441), + [aux_sym_tag_token1] = ACTIONS(2441), + [aux_sym_tunnel_token1] = ACTIONS(2443), + [aux_sym_tunnel_device_token1] = ACTIONS(2441), + [aux_sym_update_host_keys_token1] = ACTIONS(2441), + [aux_sym_use_keychain_token1] = ACTIONS(2441), + [aux_sym_use_roaming_token1] = ACTIONS(2441), + [aux_sym_user_token1] = ACTIONS(2443), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2441), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2441), + [aux_sym_visual_host_key_token1] = ACTIONS(2441), + [aux_sym_xauth_location_token1] = ACTIONS(2441), }, [330] = { - [ts_builtin_sym_end] = ACTIONS(2438), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2438), - [aux_sym_match_token1] = ACTIONS(2438), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2438), - [aux_sym_address_family_token1] = ACTIONS(2438), - [aux_sym_batch_mode_token1] = ACTIONS(2438), - [aux_sym_bind_address_token1] = ACTIONS(2438), - [aux_sym_bind_interface_token1] = ACTIONS(2438), - [aux_sym_canonical_domains_token1] = ACTIONS(2438), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2438), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2438), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2438), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2438), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2438), - [aux_sym_certificate_file_token1] = ACTIONS(2438), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2438), - [aux_sym_channel_timeout_token1] = ACTIONS(2438), - [aux_sym_check_host_ip_token1] = ACTIONS(2438), - [aux_sym_ciphers_token1] = ACTIONS(2438), - [aux_sym_cipher_token1] = ACTIONS(2440), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2438), - [aux_sym_compression_token1] = ACTIONS(2438), - [aux_sym_connection_attempts_token1] = ACTIONS(2438), - [aux_sym_connect_timeout_token1] = ACTIONS(2438), - [aux_sym_control_master_token1] = ACTIONS(2438), - [aux_sym_control_path_token1] = ACTIONS(2438), - [aux_sym_control_persist_token1] = ACTIONS(2438), - [aux_sym_dynamic_forward_token1] = ACTIONS(2438), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2438), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2438), - [aux_sym_escape_char_token1] = ACTIONS(2438), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2438), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2438), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2438), - [aux_sym_forward_agent_token1] = ACTIONS(2438), - [aux_sym_forward_x11_token1] = ACTIONS(2440), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2438), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2438), - [aux_sym_gateway_ports_token1] = ACTIONS(2438), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2438), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2438), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2438), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2438), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2438), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2438), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2438), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2438), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2438), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2438), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2438), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2438), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2438), - [aux_sym_host_key_alias_token1] = ACTIONS(2438), - [aux_sym_hostname_token1] = ACTIONS(2438), - [aux_sym_identities_only_token1] = ACTIONS(2438), - [aux_sym_identity_agent_token1] = ACTIONS(2438), - [aux_sym_identity_file_token1] = ACTIONS(2438), - [aux_sym_ignore_unknown_token1] = ACTIONS(2438), - [aux_sym_include_token1] = ACTIONS(2438), - [aux_sym_ip_qos_token1] = ACTIONS(2438), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2438), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2438), - [aux_sym_kex_algorithms_token1] = ACTIONS(2438), - [aux_sym_known_hosts_command_token1] = ACTIONS(2438), - [aux_sym_local_command_token1] = ACTIONS(2438), - [aux_sym_local_forward_token1] = ACTIONS(2438), - [aux_sym_log_level_token1] = ACTIONS(2438), - [aux_sym_log_verbose_token1] = ACTIONS(2438), - [aux_sym_macs_token1] = ACTIONS(2438), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2438), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2438), - [aux_sym_password_authentication_token1] = ACTIONS(2438), - [aux_sym_permit_local_command_token1] = ACTIONS(2438), - [aux_sym_permit_remote_open_token1] = ACTIONS(2438), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2438), - [aux_sym_port_token1] = ACTIONS(2438), - [aux_sym_preferred_authentications_token1] = ACTIONS(2438), - [aux_sym_protocol_token1] = ACTIONS(2438), - [aux_sym_proxy_command_token1] = ACTIONS(2438), - [aux_sym_proxy_jump_token1] = ACTIONS(2438), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2438), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2438), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2438), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2438), - [aux_sym_rekey_limit_token1] = ACTIONS(2438), - [aux_sym_remote_command_token1] = ACTIONS(2438), - [aux_sym_remote_forward_token1] = ACTIONS(2438), - [aux_sym_request_tty_token1] = ACTIONS(2438), - [aux_sym_required_rsa_size_token1] = ACTIONS(2438), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2438), - [aux_sym_security_key_provider_token1] = ACTIONS(2438), - [aux_sym_send_env_token1] = ACTIONS(2438), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2438), - [aux_sym_server_alive_interval_token1] = ACTIONS(2438), - [aux_sym_session_type_token1] = ACTIONS(2438), - [aux_sym_set_env_token1] = ACTIONS(2438), - [aux_sym_stdin_null_token1] = ACTIONS(2438), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2438), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2438), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2438), - [aux_sym_syslog_facility_token1] = ACTIONS(2438), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2438), - [aux_sym_keep_alive_token1] = ACTIONS(2438), - [aux_sym_tag_token1] = ACTIONS(2438), - [aux_sym_tunnel_token1] = ACTIONS(2440), - [aux_sym_tunnel_device_token1] = ACTIONS(2438), - [aux_sym_update_host_keys_token1] = ACTIONS(2438), - [aux_sym_use_keychain_token1] = ACTIONS(2438), - [aux_sym_use_roaming_token1] = ACTIONS(2438), - [aux_sym_user_token1] = ACTIONS(2440), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2438), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2438), - [aux_sym_visual_host_key_token1] = ACTIONS(2438), - [aux_sym_xauth_location_token1] = ACTIONS(2438), + [ts_builtin_sym_end] = ACTIONS(2447), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2447), + [aux_sym_match_token1] = ACTIONS(2447), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2447), + [aux_sym_address_family_token1] = ACTIONS(2447), + [aux_sym_batch_mode_token1] = ACTIONS(2447), + [aux_sym_bind_address_token1] = ACTIONS(2447), + [aux_sym_bind_interface_token1] = ACTIONS(2447), + [aux_sym_canonical_domains_token1] = ACTIONS(2447), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2447), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2447), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2447), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2447), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2447), + [aux_sym_certificate_file_token1] = ACTIONS(2447), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2447), + [aux_sym_channel_timeout_token1] = ACTIONS(2447), + [aux_sym_check_host_ip_token1] = ACTIONS(2447), + [aux_sym_ciphers_token1] = ACTIONS(2447), + [aux_sym_cipher_token1] = ACTIONS(2449), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2447), + [aux_sym_compression_token1] = ACTIONS(2447), + [aux_sym_connection_attempts_token1] = ACTIONS(2447), + [aux_sym_connect_timeout_token1] = ACTIONS(2447), + [aux_sym_control_master_token1] = ACTIONS(2447), + [aux_sym_control_path_token1] = ACTIONS(2447), + [aux_sym_control_persist_token1] = ACTIONS(2447), + [aux_sym_dynamic_forward_token1] = ACTIONS(2447), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2447), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2447), + [aux_sym_escape_char_token1] = ACTIONS(2447), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2447), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2447), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2447), + [aux_sym_forward_agent_token1] = ACTIONS(2447), + [aux_sym_forward_x11_token1] = ACTIONS(2449), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2447), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2447), + [aux_sym_gateway_ports_token1] = ACTIONS(2447), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2447), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2447), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2447), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2447), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2447), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2447), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2447), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2447), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2447), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2447), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2447), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2447), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2447), + [aux_sym_host_key_alias_token1] = ACTIONS(2447), + [aux_sym_hostname_token1] = ACTIONS(2447), + [aux_sym_identities_only_token1] = ACTIONS(2447), + [aux_sym_identity_agent_token1] = ACTIONS(2447), + [aux_sym_identity_file_token1] = ACTIONS(2447), + [aux_sym_ignore_unknown_token1] = ACTIONS(2447), + [aux_sym_include_token1] = ACTIONS(2447), + [aux_sym_ip_qos_token1] = ACTIONS(2447), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2447), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2447), + [aux_sym_kex_algorithms_token1] = ACTIONS(2447), + [aux_sym_known_hosts_command_token1] = ACTIONS(2447), + [aux_sym_local_command_token1] = ACTIONS(2447), + [aux_sym_local_forward_token1] = ACTIONS(2447), + [aux_sym_log_level_token1] = ACTIONS(2447), + [aux_sym_log_verbose_token1] = ACTIONS(2447), + [aux_sym_macs_token1] = ACTIONS(2447), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2447), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2447), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2447), + [aux_sym_password_authentication_token1] = ACTIONS(2447), + [aux_sym_permit_local_command_token1] = ACTIONS(2447), + [aux_sym_permit_remote_open_token1] = ACTIONS(2447), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2447), + [aux_sym_port_token1] = ACTIONS(2447), + [aux_sym_preferred_authentications_token1] = ACTIONS(2447), + [aux_sym_protocol_token1] = ACTIONS(2447), + [aux_sym_proxy_command_token1] = ACTIONS(2447), + [aux_sym_proxy_jump_token1] = ACTIONS(2447), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2447), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2447), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2447), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2447), + [aux_sym_rekey_limit_token1] = ACTIONS(2447), + [aux_sym_remote_command_token1] = ACTIONS(2447), + [aux_sym_remote_forward_token1] = ACTIONS(2447), + [aux_sym_request_tty_token1] = ACTIONS(2447), + [aux_sym_required_rsa_size_token1] = ACTIONS(2447), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2447), + [aux_sym_security_key_provider_token1] = ACTIONS(2447), + [aux_sym_send_env_token1] = ACTIONS(2447), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2447), + [aux_sym_server_alive_interval_token1] = ACTIONS(2447), + [aux_sym_session_type_token1] = ACTIONS(2447), + [aux_sym_set_env_token1] = ACTIONS(2447), + [aux_sym_stdin_null_token1] = ACTIONS(2447), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2447), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2447), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2447), + [aux_sym_syslog_facility_token1] = ACTIONS(2447), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2447), + [aux_sym_keep_alive_token1] = ACTIONS(2447), + [aux_sym_tag_token1] = ACTIONS(2447), + [aux_sym_tunnel_token1] = ACTIONS(2449), + [aux_sym_tunnel_device_token1] = ACTIONS(2447), + [aux_sym_update_host_keys_token1] = ACTIONS(2447), + [aux_sym_use_keychain_token1] = ACTIONS(2447), + [aux_sym_use_roaming_token1] = ACTIONS(2447), + [aux_sym_user_token1] = ACTIONS(2449), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2447), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2447), + [aux_sym_visual_host_key_token1] = ACTIONS(2447), + [aux_sym_xauth_location_token1] = ACTIONS(2447), }, [331] = { - [ts_builtin_sym_end] = ACTIONS(2442), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2444), - [anon_sym_DQUOTE] = ACTIONS(2446), - [aux_sym_match_token1] = ACTIONS(2442), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2442), - [aux_sym_address_family_token1] = ACTIONS(2442), - [aux_sym_batch_mode_token1] = ACTIONS(2442), - [aux_sym_bind_address_token1] = ACTIONS(2442), - [aux_sym_bind_interface_token1] = ACTIONS(2442), - [aux_sym_canonical_domains_token1] = ACTIONS(2442), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2442), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2442), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2442), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2442), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2442), - [aux_sym_certificate_file_token1] = ACTIONS(2442), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2442), - [aux_sym_channel_timeout_token1] = ACTIONS(2442), - [aux_sym_check_host_ip_token1] = ACTIONS(2442), - [aux_sym_ciphers_token1] = ACTIONS(2442), - [aux_sym_cipher_token1] = ACTIONS(2444), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2442), - [aux_sym_compression_token1] = ACTIONS(2442), - [aux_sym_connection_attempts_token1] = ACTIONS(2442), - [aux_sym_connect_timeout_token1] = ACTIONS(2442), - [aux_sym_control_master_token1] = ACTIONS(2442), - [aux_sym_control_path_token1] = ACTIONS(2442), - [aux_sym_control_persist_token1] = ACTIONS(2442), - [aux_sym_dynamic_forward_token1] = ACTIONS(2442), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2442), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2442), - [aux_sym_escape_char_token1] = ACTIONS(2442), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2442), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2442), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2442), - [aux_sym_forward_agent_token1] = ACTIONS(2442), - [aux_sym_forward_x11_token1] = ACTIONS(2444), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2442), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2442), - [aux_sym_gateway_ports_token1] = ACTIONS(2442), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2442), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2442), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2442), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2442), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2442), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2442), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2442), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2442), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2442), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2442), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2442), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2442), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2442), - [aux_sym_host_key_alias_token1] = ACTIONS(2442), - [aux_sym_hostname_token1] = ACTIONS(2442), - [aux_sym_identities_only_token1] = ACTIONS(2442), - [aux_sym_identity_agent_token1] = ACTIONS(2442), - [aux_sym_identity_file_token1] = ACTIONS(2442), - [aux_sym_ignore_unknown_token1] = ACTIONS(2442), - [aux_sym_include_token1] = ACTIONS(2442), - [aux_sym_ip_qos_token1] = ACTIONS(2442), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2442), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2442), - [aux_sym_kex_algorithms_token1] = ACTIONS(2442), - [aux_sym_known_hosts_command_token1] = ACTIONS(2442), - [aux_sym_local_command_token1] = ACTIONS(2442), - [aux_sym_local_forward_token1] = ACTIONS(2442), - [aux_sym_log_level_token1] = ACTIONS(2442), - [aux_sym_log_verbose_token1] = ACTIONS(2442), - [aux_sym_macs_token1] = ACTIONS(2442), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2442), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2442), - [aux_sym_password_authentication_token1] = ACTIONS(2442), - [aux_sym_permit_local_command_token1] = ACTIONS(2442), - [aux_sym_permit_remote_open_token1] = ACTIONS(2442), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2442), - [aux_sym_port_token1] = ACTIONS(2442), - [aux_sym_preferred_authentications_token1] = ACTIONS(2442), - [aux_sym_protocol_token1] = ACTIONS(2442), - [aux_sym_proxy_command_token1] = ACTIONS(2442), - [aux_sym_proxy_jump_token1] = ACTIONS(2442), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2442), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2442), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2442), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2442), - [aux_sym_rekey_limit_token1] = ACTIONS(2442), - [aux_sym_remote_command_token1] = ACTIONS(2442), - [aux_sym_remote_forward_token1] = ACTIONS(2442), - [aux_sym_request_tty_token1] = ACTIONS(2442), - [aux_sym_required_rsa_size_token1] = ACTIONS(2442), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2442), - [aux_sym_security_key_provider_token1] = ACTIONS(2442), - [aux_sym_send_env_token1] = ACTIONS(2442), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2442), - [aux_sym_server_alive_interval_token1] = ACTIONS(2442), - [aux_sym_session_type_token1] = ACTIONS(2442), - [aux_sym_set_env_token1] = ACTIONS(2442), - [aux_sym_stdin_null_token1] = ACTIONS(2442), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2442), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2442), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2442), - [aux_sym_syslog_facility_token1] = ACTIONS(2442), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2442), - [aux_sym_keep_alive_token1] = ACTIONS(2442), - [aux_sym_tag_token1] = ACTIONS(2442), - [aux_sym_tunnel_token1] = ACTIONS(2444), - [aux_sym_tunnel_device_token1] = ACTIONS(2442), - [aux_sym_update_host_keys_token1] = ACTIONS(2442), - [aux_sym_use_keychain_token1] = ACTIONS(2442), - [aux_sym_use_roaming_token1] = ACTIONS(2442), - [aux_sym_user_token1] = ACTIONS(2444), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2442), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2442), - [aux_sym_visual_host_key_token1] = ACTIONS(2442), - [aux_sym_xauth_location_token1] = ACTIONS(2442), + [ts_builtin_sym_end] = ACTIONS(2451), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [aux_sym_match_token1] = ACTIONS(2451), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2451), + [aux_sym_address_family_token1] = ACTIONS(2451), + [aux_sym_batch_mode_token1] = ACTIONS(2451), + [aux_sym_bind_address_token1] = ACTIONS(2451), + [aux_sym_bind_interface_token1] = ACTIONS(2451), + [aux_sym_canonical_domains_token1] = ACTIONS(2451), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2451), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2451), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2451), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2451), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2451), + [aux_sym_certificate_file_token1] = ACTIONS(2451), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2451), + [aux_sym_channel_timeout_token1] = ACTIONS(2451), + [aux_sym_check_host_ip_token1] = ACTIONS(2451), + [aux_sym_ciphers_token1] = ACTIONS(2451), + [aux_sym_cipher_token1] = ACTIONS(2453), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2451), + [aux_sym_compression_token1] = ACTIONS(2451), + [aux_sym_connection_attempts_token1] = ACTIONS(2451), + [aux_sym_connect_timeout_token1] = ACTIONS(2451), + [aux_sym_control_master_token1] = ACTIONS(2451), + [aux_sym_control_path_token1] = ACTIONS(2451), + [aux_sym_control_persist_token1] = ACTIONS(2451), + [aux_sym_dynamic_forward_token1] = ACTIONS(2451), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2451), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2451), + [aux_sym_escape_char_token1] = ACTIONS(2451), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2451), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2451), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2451), + [aux_sym_forward_agent_token1] = ACTIONS(2451), + [aux_sym_forward_x11_token1] = ACTIONS(2453), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2451), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2451), + [aux_sym_gateway_ports_token1] = ACTIONS(2451), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2451), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2451), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2451), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2451), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2451), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2451), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2451), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2451), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2451), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2451), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2451), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2451), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2451), + [aux_sym_host_key_alias_token1] = ACTIONS(2451), + [aux_sym_hostname_token1] = ACTIONS(2451), + [aux_sym_identities_only_token1] = ACTIONS(2451), + [aux_sym_identity_agent_token1] = ACTIONS(2451), + [aux_sym_identity_file_token1] = ACTIONS(2451), + [aux_sym_ignore_unknown_token1] = ACTIONS(2451), + [aux_sym_include_token1] = ACTIONS(2451), + [aux_sym_ip_qos_token1] = ACTIONS(2451), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2451), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2451), + [aux_sym_kex_algorithms_token1] = ACTIONS(2451), + [aux_sym_known_hosts_command_token1] = ACTIONS(2451), + [aux_sym_local_command_token1] = ACTIONS(2451), + [aux_sym_local_forward_token1] = ACTIONS(2451), + [aux_sym_log_level_token1] = ACTIONS(2451), + [aux_sym_log_verbose_token1] = ACTIONS(2451), + [aux_sym_macs_token1] = ACTIONS(2451), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2451), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2451), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2451), + [aux_sym_password_authentication_token1] = ACTIONS(2451), + [aux_sym_permit_local_command_token1] = ACTIONS(2451), + [aux_sym_permit_remote_open_token1] = ACTIONS(2451), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2451), + [aux_sym_port_token1] = ACTIONS(2451), + [aux_sym_preferred_authentications_token1] = ACTIONS(2451), + [aux_sym_protocol_token1] = ACTIONS(2451), + [aux_sym_proxy_command_token1] = ACTIONS(2451), + [aux_sym_proxy_jump_token1] = ACTIONS(2451), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2451), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2451), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2451), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2451), + [aux_sym_rekey_limit_token1] = ACTIONS(2451), + [aux_sym_remote_command_token1] = ACTIONS(2451), + [aux_sym_remote_forward_token1] = ACTIONS(2451), + [aux_sym_request_tty_token1] = ACTIONS(2451), + [aux_sym_required_rsa_size_token1] = ACTIONS(2451), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2451), + [aux_sym_security_key_provider_token1] = ACTIONS(2451), + [aux_sym_send_env_token1] = ACTIONS(2451), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2451), + [aux_sym_server_alive_interval_token1] = ACTIONS(2451), + [aux_sym_session_type_token1] = ACTIONS(2451), + [aux_sym_set_env_token1] = ACTIONS(2451), + [aux_sym_stdin_null_token1] = ACTIONS(2451), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2451), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2451), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2451), + [aux_sym_syslog_facility_token1] = ACTIONS(2451), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2451), + [aux_sym_keep_alive_token1] = ACTIONS(2451), + [aux_sym_tag_token1] = ACTIONS(2451), + [aux_sym_tunnel_token1] = ACTIONS(2453), + [aux_sym_tunnel_device_token1] = ACTIONS(2451), + [aux_sym_update_host_keys_token1] = ACTIONS(2451), + [aux_sym_use_keychain_token1] = ACTIONS(2451), + [aux_sym_use_roaming_token1] = ACTIONS(2451), + [aux_sym_user_token1] = ACTIONS(2453), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2451), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2451), + [aux_sym_visual_host_key_token1] = ACTIONS(2451), + [aux_sym_xauth_location_token1] = ACTIONS(2451), }, [332] = { - [ts_builtin_sym_end] = ACTIONS(2448), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2450), - [anon_sym_DQUOTE] = ACTIONS(2448), - [aux_sym_match_token1] = ACTIONS(2448), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2448), - [aux_sym_address_family_token1] = ACTIONS(2448), - [aux_sym_batch_mode_token1] = ACTIONS(2448), - [aux_sym_bind_address_token1] = ACTIONS(2448), - [aux_sym_bind_interface_token1] = ACTIONS(2448), - [aux_sym_canonical_domains_token1] = ACTIONS(2448), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2448), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2448), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2448), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2448), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2448), - [aux_sym_certificate_file_token1] = ACTIONS(2448), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2448), - [aux_sym_channel_timeout_token1] = ACTIONS(2448), - [aux_sym_check_host_ip_token1] = ACTIONS(2448), - [aux_sym_ciphers_token1] = ACTIONS(2448), - [aux_sym_cipher_token1] = ACTIONS(2450), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2448), - [aux_sym_compression_token1] = ACTIONS(2448), - [aux_sym_connection_attempts_token1] = ACTIONS(2448), - [aux_sym_connect_timeout_token1] = ACTIONS(2448), - [aux_sym_control_master_token1] = ACTIONS(2448), - [aux_sym_control_path_token1] = ACTIONS(2448), - [aux_sym_control_persist_token1] = ACTIONS(2448), - [aux_sym_dynamic_forward_token1] = ACTIONS(2448), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2448), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2448), - [aux_sym_escape_char_token1] = ACTIONS(2448), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2448), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2448), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2448), - [aux_sym_forward_agent_token1] = ACTIONS(2448), - [aux_sym_forward_x11_token1] = ACTIONS(2450), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2448), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2448), - [aux_sym_gateway_ports_token1] = ACTIONS(2448), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2448), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2448), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2448), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2448), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2448), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2448), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2448), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2448), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2448), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2448), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2448), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2448), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2448), - [aux_sym_host_key_alias_token1] = ACTIONS(2448), - [aux_sym_hostname_token1] = ACTIONS(2448), - [aux_sym_identities_only_token1] = ACTIONS(2448), - [aux_sym_identity_agent_token1] = ACTIONS(2448), - [aux_sym_identity_file_token1] = ACTIONS(2448), - [aux_sym_ignore_unknown_token1] = ACTIONS(2448), - [aux_sym_include_token1] = ACTIONS(2448), - [aux_sym_ip_qos_token1] = ACTIONS(2448), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2448), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2448), - [aux_sym_kex_algorithms_token1] = ACTIONS(2448), - [aux_sym_known_hosts_command_token1] = ACTIONS(2448), - [aux_sym_local_command_token1] = ACTIONS(2448), - [aux_sym_local_forward_token1] = ACTIONS(2448), - [aux_sym_log_level_token1] = ACTIONS(2448), - [aux_sym_log_verbose_token1] = ACTIONS(2448), - [aux_sym_macs_token1] = ACTIONS(2448), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2448), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2448), - [aux_sym_password_authentication_token1] = ACTIONS(2448), - [aux_sym_permit_local_command_token1] = ACTIONS(2448), - [aux_sym_permit_remote_open_token1] = ACTIONS(2448), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2448), - [aux_sym_port_token1] = ACTIONS(2448), - [aux_sym_preferred_authentications_token1] = ACTIONS(2448), - [aux_sym_protocol_token1] = ACTIONS(2448), - [aux_sym_proxy_command_token1] = ACTIONS(2448), - [aux_sym_proxy_jump_token1] = ACTIONS(2448), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2448), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2448), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2448), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2448), - [aux_sym_rekey_limit_token1] = ACTIONS(2448), - [aux_sym_remote_command_token1] = ACTIONS(2448), - [aux_sym_remote_forward_token1] = ACTIONS(2448), - [aux_sym_request_tty_token1] = ACTIONS(2448), - [aux_sym_required_rsa_size_token1] = ACTIONS(2448), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2448), - [aux_sym_security_key_provider_token1] = ACTIONS(2448), - [aux_sym_send_env_token1] = ACTIONS(2448), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2448), - [aux_sym_server_alive_interval_token1] = ACTIONS(2448), - [aux_sym_session_type_token1] = ACTIONS(2448), - [aux_sym_set_env_token1] = ACTIONS(2448), - [aux_sym_stdin_null_token1] = ACTIONS(2448), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2448), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2448), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2448), - [aux_sym_syslog_facility_token1] = ACTIONS(2448), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2448), - [aux_sym_keep_alive_token1] = ACTIONS(2448), - [aux_sym_tag_token1] = ACTIONS(2448), - [aux_sym_tunnel_token1] = ACTIONS(2450), - [aux_sym_tunnel_device_token1] = ACTIONS(2448), - [aux_sym_update_host_keys_token1] = ACTIONS(2448), - [aux_sym_use_keychain_token1] = ACTIONS(2448), - [aux_sym_use_roaming_token1] = ACTIONS(2448), - [aux_sym_user_token1] = ACTIONS(2450), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2448), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2448), - [aux_sym_visual_host_key_token1] = ACTIONS(2448), - [aux_sym_xauth_location_token1] = ACTIONS(2448), + [ts_builtin_sym_end] = ACTIONS(2457), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(2457), + [aux_sym_match_token1] = ACTIONS(2457), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2457), + [aux_sym_address_family_token1] = ACTIONS(2457), + [aux_sym_batch_mode_token1] = ACTIONS(2457), + [aux_sym_bind_address_token1] = ACTIONS(2457), + [aux_sym_bind_interface_token1] = ACTIONS(2457), + [aux_sym_canonical_domains_token1] = ACTIONS(2457), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2457), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2457), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2457), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2457), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2457), + [aux_sym_certificate_file_token1] = ACTIONS(2457), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2457), + [aux_sym_channel_timeout_token1] = ACTIONS(2457), + [aux_sym_check_host_ip_token1] = ACTIONS(2457), + [aux_sym_ciphers_token1] = ACTIONS(2457), + [aux_sym_cipher_token1] = ACTIONS(2459), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2457), + [aux_sym_compression_token1] = ACTIONS(2457), + [aux_sym_connection_attempts_token1] = ACTIONS(2457), + [aux_sym_connect_timeout_token1] = ACTIONS(2457), + [aux_sym_control_master_token1] = ACTIONS(2457), + [aux_sym_control_path_token1] = ACTIONS(2457), + [aux_sym_control_persist_token1] = ACTIONS(2457), + [aux_sym_dynamic_forward_token1] = ACTIONS(2457), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2457), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2457), + [aux_sym_escape_char_token1] = ACTIONS(2457), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2457), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2457), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2457), + [aux_sym_forward_agent_token1] = ACTIONS(2457), + [aux_sym_forward_x11_token1] = ACTIONS(2459), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2457), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2457), + [aux_sym_gateway_ports_token1] = ACTIONS(2457), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2457), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2457), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2457), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2457), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2457), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2457), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2457), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2457), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2457), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2457), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2457), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2457), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2457), + [aux_sym_host_key_alias_token1] = ACTIONS(2457), + [aux_sym_hostname_token1] = ACTIONS(2457), + [aux_sym_identities_only_token1] = ACTIONS(2457), + [aux_sym_identity_agent_token1] = ACTIONS(2457), + [aux_sym_identity_file_token1] = ACTIONS(2457), + [aux_sym_ignore_unknown_token1] = ACTIONS(2457), + [aux_sym_include_token1] = ACTIONS(2457), + [aux_sym_ip_qos_token1] = ACTIONS(2457), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2457), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2457), + [aux_sym_kex_algorithms_token1] = ACTIONS(2457), + [aux_sym_known_hosts_command_token1] = ACTIONS(2457), + [aux_sym_local_command_token1] = ACTIONS(2457), + [aux_sym_local_forward_token1] = ACTIONS(2457), + [aux_sym_log_level_token1] = ACTIONS(2457), + [aux_sym_log_verbose_token1] = ACTIONS(2457), + [aux_sym_macs_token1] = ACTIONS(2457), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2457), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2457), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2457), + [aux_sym_password_authentication_token1] = ACTIONS(2457), + [aux_sym_permit_local_command_token1] = ACTIONS(2457), + [aux_sym_permit_remote_open_token1] = ACTIONS(2457), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2457), + [aux_sym_port_token1] = ACTIONS(2457), + [aux_sym_preferred_authentications_token1] = ACTIONS(2457), + [aux_sym_protocol_token1] = ACTIONS(2457), + [aux_sym_proxy_command_token1] = ACTIONS(2457), + [aux_sym_proxy_jump_token1] = ACTIONS(2457), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2457), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2457), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2457), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2457), + [aux_sym_rekey_limit_token1] = ACTIONS(2457), + [aux_sym_remote_command_token1] = ACTIONS(2457), + [aux_sym_remote_forward_token1] = ACTIONS(2457), + [aux_sym_request_tty_token1] = ACTIONS(2457), + [aux_sym_required_rsa_size_token1] = ACTIONS(2457), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2457), + [aux_sym_security_key_provider_token1] = ACTIONS(2457), + [aux_sym_send_env_token1] = ACTIONS(2457), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2457), + [aux_sym_server_alive_interval_token1] = ACTIONS(2457), + [aux_sym_session_type_token1] = ACTIONS(2457), + [aux_sym_set_env_token1] = ACTIONS(2457), + [aux_sym_stdin_null_token1] = ACTIONS(2457), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2457), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2457), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2457), + [aux_sym_syslog_facility_token1] = ACTIONS(2457), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2457), + [aux_sym_keep_alive_token1] = ACTIONS(2457), + [aux_sym_tag_token1] = ACTIONS(2457), + [aux_sym_tunnel_token1] = ACTIONS(2459), + [aux_sym_tunnel_device_token1] = ACTIONS(2457), + [aux_sym_update_host_keys_token1] = ACTIONS(2457), + [aux_sym_use_keychain_token1] = ACTIONS(2457), + [aux_sym_use_roaming_token1] = ACTIONS(2457), + [aux_sym_user_token1] = ACTIONS(2459), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2457), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2457), + [aux_sym_visual_host_key_token1] = ACTIONS(2457), + [aux_sym_xauth_location_token1] = ACTIONS(2457), }, [333] = { - [ts_builtin_sym_end] = ACTIONS(2452), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2454), - [anon_sym_DQUOTE] = ACTIONS(2456), - [aux_sym_match_token1] = ACTIONS(2452), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2452), - [aux_sym_address_family_token1] = ACTIONS(2452), - [aux_sym_batch_mode_token1] = ACTIONS(2452), - [aux_sym_bind_address_token1] = ACTIONS(2452), - [aux_sym_bind_interface_token1] = ACTIONS(2452), - [aux_sym_canonical_domains_token1] = ACTIONS(2452), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2452), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2452), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2452), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2452), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2452), - [aux_sym_certificate_file_token1] = ACTIONS(2452), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2452), - [aux_sym_channel_timeout_token1] = ACTIONS(2452), - [aux_sym_check_host_ip_token1] = ACTIONS(2452), - [aux_sym_ciphers_token1] = ACTIONS(2452), - [aux_sym_cipher_token1] = ACTIONS(2454), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2452), - [aux_sym_compression_token1] = ACTIONS(2452), - [aux_sym_connection_attempts_token1] = ACTIONS(2452), - [aux_sym_connect_timeout_token1] = ACTIONS(2452), - [aux_sym_control_master_token1] = ACTIONS(2452), - [aux_sym_control_path_token1] = ACTIONS(2452), - [aux_sym_control_persist_token1] = ACTIONS(2452), - [aux_sym_dynamic_forward_token1] = ACTIONS(2452), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2452), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2452), - [aux_sym_escape_char_token1] = ACTIONS(2452), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2452), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2452), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2452), - [aux_sym_forward_agent_token1] = ACTIONS(2452), - [aux_sym_forward_x11_token1] = ACTIONS(2454), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2452), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2452), - [aux_sym_gateway_ports_token1] = ACTIONS(2452), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2452), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2452), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2452), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2452), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2452), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2452), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2452), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2452), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2452), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2452), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2452), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2452), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2452), - [aux_sym_host_key_alias_token1] = ACTIONS(2452), - [aux_sym_hostname_token1] = ACTIONS(2452), - [aux_sym_identities_only_token1] = ACTIONS(2452), - [aux_sym_identity_agent_token1] = ACTIONS(2452), - [aux_sym_identity_file_token1] = ACTIONS(2452), - [aux_sym_ignore_unknown_token1] = ACTIONS(2452), - [aux_sym_include_token1] = ACTIONS(2452), - [aux_sym_ip_qos_token1] = ACTIONS(2452), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2452), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2452), - [aux_sym_kex_algorithms_token1] = ACTIONS(2452), - [aux_sym_known_hosts_command_token1] = ACTIONS(2452), - [aux_sym_local_command_token1] = ACTIONS(2452), - [aux_sym_local_forward_token1] = ACTIONS(2452), - [aux_sym_log_level_token1] = ACTIONS(2452), - [aux_sym_log_verbose_token1] = ACTIONS(2452), - [aux_sym_macs_token1] = ACTIONS(2452), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2452), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2452), - [aux_sym_password_authentication_token1] = ACTIONS(2452), - [aux_sym_permit_local_command_token1] = ACTIONS(2452), - [aux_sym_permit_remote_open_token1] = ACTIONS(2452), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2452), - [aux_sym_port_token1] = ACTIONS(2452), - [aux_sym_preferred_authentications_token1] = ACTIONS(2452), - [aux_sym_protocol_token1] = ACTIONS(2452), - [aux_sym_proxy_command_token1] = ACTIONS(2452), - [aux_sym_proxy_jump_token1] = ACTIONS(2452), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2452), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2452), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2452), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2452), - [aux_sym_rekey_limit_token1] = ACTIONS(2452), - [aux_sym_remote_command_token1] = ACTIONS(2452), - [aux_sym_remote_forward_token1] = ACTIONS(2452), - [aux_sym_request_tty_token1] = ACTIONS(2452), - [aux_sym_required_rsa_size_token1] = ACTIONS(2452), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2452), - [aux_sym_security_key_provider_token1] = ACTIONS(2452), - [aux_sym_send_env_token1] = ACTIONS(2452), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2452), - [aux_sym_server_alive_interval_token1] = ACTIONS(2452), - [aux_sym_session_type_token1] = ACTIONS(2452), - [aux_sym_set_env_token1] = ACTIONS(2452), - [aux_sym_stdin_null_token1] = ACTIONS(2452), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2452), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2452), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2452), - [aux_sym_syslog_facility_token1] = ACTIONS(2452), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2452), - [aux_sym_keep_alive_token1] = ACTIONS(2452), - [aux_sym_tag_token1] = ACTIONS(2452), - [aux_sym_tunnel_token1] = ACTIONS(2454), - [aux_sym_tunnel_device_token1] = ACTIONS(2452), - [aux_sym_update_host_keys_token1] = ACTIONS(2452), - [aux_sym_use_keychain_token1] = ACTIONS(2452), - [aux_sym_use_roaming_token1] = ACTIONS(2452), - [aux_sym_user_token1] = ACTIONS(2454), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2452), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2452), - [aux_sym_visual_host_key_token1] = ACTIONS(2452), - [aux_sym_xauth_location_token1] = ACTIONS(2452), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(2465), + [aux_sym_match_token1] = ACTIONS(2461), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2461), + [aux_sym_address_family_token1] = ACTIONS(2461), + [aux_sym_batch_mode_token1] = ACTIONS(2461), + [aux_sym_bind_address_token1] = ACTIONS(2461), + [aux_sym_bind_interface_token1] = ACTIONS(2461), + [aux_sym_canonical_domains_token1] = ACTIONS(2461), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2461), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2461), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2461), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2461), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2461), + [aux_sym_certificate_file_token1] = ACTIONS(2461), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2461), + [aux_sym_channel_timeout_token1] = ACTIONS(2461), + [aux_sym_check_host_ip_token1] = ACTIONS(2461), + [aux_sym_ciphers_token1] = ACTIONS(2461), + [aux_sym_cipher_token1] = ACTIONS(2463), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2461), + [aux_sym_compression_token1] = ACTIONS(2461), + [aux_sym_connection_attempts_token1] = ACTIONS(2461), + [aux_sym_connect_timeout_token1] = ACTIONS(2461), + [aux_sym_control_master_token1] = ACTIONS(2461), + [aux_sym_control_path_token1] = ACTIONS(2461), + [aux_sym_control_persist_token1] = ACTIONS(2461), + [aux_sym_dynamic_forward_token1] = ACTIONS(2461), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2461), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2461), + [aux_sym_escape_char_token1] = ACTIONS(2461), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2461), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2461), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2461), + [aux_sym_forward_agent_token1] = ACTIONS(2461), + [aux_sym_forward_x11_token1] = ACTIONS(2463), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2461), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2461), + [aux_sym_gateway_ports_token1] = ACTIONS(2461), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2461), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2461), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2461), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2461), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2461), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2461), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2461), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2461), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2461), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2461), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2461), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2461), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2461), + [aux_sym_host_key_alias_token1] = ACTIONS(2461), + [aux_sym_hostname_token1] = ACTIONS(2461), + [aux_sym_identities_only_token1] = ACTIONS(2461), + [aux_sym_identity_agent_token1] = ACTIONS(2461), + [aux_sym_identity_file_token1] = ACTIONS(2461), + [aux_sym_ignore_unknown_token1] = ACTIONS(2461), + [aux_sym_include_token1] = ACTIONS(2461), + [aux_sym_ip_qos_token1] = ACTIONS(2461), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2461), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2461), + [aux_sym_kex_algorithms_token1] = ACTIONS(2461), + [aux_sym_known_hosts_command_token1] = ACTIONS(2461), + [aux_sym_local_command_token1] = ACTIONS(2461), + [aux_sym_local_forward_token1] = ACTIONS(2461), + [aux_sym_log_level_token1] = ACTIONS(2461), + [aux_sym_log_verbose_token1] = ACTIONS(2461), + [aux_sym_macs_token1] = ACTIONS(2461), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2461), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2461), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2461), + [aux_sym_password_authentication_token1] = ACTIONS(2461), + [aux_sym_permit_local_command_token1] = ACTIONS(2461), + [aux_sym_permit_remote_open_token1] = ACTIONS(2461), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2461), + [aux_sym_port_token1] = ACTIONS(2461), + [aux_sym_preferred_authentications_token1] = ACTIONS(2461), + [aux_sym_protocol_token1] = ACTIONS(2461), + [aux_sym_proxy_command_token1] = ACTIONS(2461), + [aux_sym_proxy_jump_token1] = ACTIONS(2461), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2461), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2461), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2461), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2461), + [aux_sym_rekey_limit_token1] = ACTIONS(2461), + [aux_sym_remote_command_token1] = ACTIONS(2461), + [aux_sym_remote_forward_token1] = ACTIONS(2461), + [aux_sym_request_tty_token1] = ACTIONS(2461), + [aux_sym_required_rsa_size_token1] = ACTIONS(2461), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2461), + [aux_sym_security_key_provider_token1] = ACTIONS(2461), + [aux_sym_send_env_token1] = ACTIONS(2461), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2461), + [aux_sym_server_alive_interval_token1] = ACTIONS(2461), + [aux_sym_session_type_token1] = ACTIONS(2461), + [aux_sym_set_env_token1] = ACTIONS(2461), + [aux_sym_stdin_null_token1] = ACTIONS(2461), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2461), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2461), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2461), + [aux_sym_syslog_facility_token1] = ACTIONS(2461), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2461), + [aux_sym_keep_alive_token1] = ACTIONS(2461), + [aux_sym_tag_token1] = ACTIONS(2461), + [aux_sym_tunnel_token1] = ACTIONS(2463), + [aux_sym_tunnel_device_token1] = ACTIONS(2461), + [aux_sym_update_host_keys_token1] = ACTIONS(2461), + [aux_sym_use_keychain_token1] = ACTIONS(2461), + [aux_sym_use_roaming_token1] = ACTIONS(2461), + [aux_sym_user_token1] = ACTIONS(2463), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2461), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2461), + [aux_sym_visual_host_key_token1] = ACTIONS(2461), + [aux_sym_xauth_location_token1] = ACTIONS(2461), }, [334] = { - [ts_builtin_sym_end] = ACTIONS(2458), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2460), - [anon_sym_DQUOTE] = ACTIONS(2458), - [aux_sym_match_token1] = ACTIONS(2458), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2458), - [aux_sym_address_family_token1] = ACTIONS(2458), - [aux_sym_batch_mode_token1] = ACTIONS(2458), - [aux_sym_bind_address_token1] = ACTIONS(2458), - [aux_sym_bind_interface_token1] = ACTIONS(2458), - [aux_sym_canonical_domains_token1] = ACTIONS(2458), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2458), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2458), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2458), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2458), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2458), - [aux_sym_certificate_file_token1] = ACTIONS(2458), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2458), - [aux_sym_channel_timeout_token1] = ACTIONS(2458), - [aux_sym_check_host_ip_token1] = ACTIONS(2458), - [aux_sym_ciphers_token1] = ACTIONS(2458), - [aux_sym_cipher_token1] = ACTIONS(2460), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2458), - [aux_sym_compression_token1] = ACTIONS(2458), - [aux_sym_connection_attempts_token1] = ACTIONS(2458), - [aux_sym_connect_timeout_token1] = ACTIONS(2458), - [aux_sym_control_master_token1] = ACTIONS(2458), - [aux_sym_control_path_token1] = ACTIONS(2458), - [aux_sym_control_persist_token1] = ACTIONS(2458), - [aux_sym_dynamic_forward_token1] = ACTIONS(2458), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2458), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2458), - [aux_sym_escape_char_token1] = ACTIONS(2458), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2458), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2458), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2458), - [aux_sym_forward_agent_token1] = ACTIONS(2458), - [aux_sym_forward_x11_token1] = ACTIONS(2460), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2458), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2458), - [aux_sym_gateway_ports_token1] = ACTIONS(2458), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2458), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2458), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2458), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2458), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2458), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2458), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2458), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2458), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2458), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2458), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2458), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2458), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2458), - [aux_sym_host_key_alias_token1] = ACTIONS(2458), - [aux_sym_hostname_token1] = ACTIONS(2458), - [aux_sym_identities_only_token1] = ACTIONS(2458), - [aux_sym_identity_agent_token1] = ACTIONS(2458), - [aux_sym_identity_file_token1] = ACTIONS(2458), - [aux_sym_ignore_unknown_token1] = ACTIONS(2458), - [aux_sym_include_token1] = ACTIONS(2458), - [aux_sym_ip_qos_token1] = ACTIONS(2458), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2458), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2458), - [aux_sym_kex_algorithms_token1] = ACTIONS(2458), - [aux_sym_known_hosts_command_token1] = ACTIONS(2458), - [aux_sym_local_command_token1] = ACTIONS(2458), - [aux_sym_local_forward_token1] = ACTIONS(2458), - [aux_sym_log_level_token1] = ACTIONS(2458), - [aux_sym_log_verbose_token1] = ACTIONS(2458), - [aux_sym_macs_token1] = ACTIONS(2458), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2458), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2458), - [aux_sym_password_authentication_token1] = ACTIONS(2458), - [aux_sym_permit_local_command_token1] = ACTIONS(2458), - [aux_sym_permit_remote_open_token1] = ACTIONS(2458), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2458), - [aux_sym_port_token1] = ACTIONS(2458), - [aux_sym_preferred_authentications_token1] = ACTIONS(2458), - [aux_sym_protocol_token1] = ACTIONS(2458), - [aux_sym_proxy_command_token1] = ACTIONS(2458), - [aux_sym_proxy_jump_token1] = ACTIONS(2458), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2458), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2458), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2458), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2458), - [aux_sym_rekey_limit_token1] = ACTIONS(2458), - [aux_sym_remote_command_token1] = ACTIONS(2458), - [aux_sym_remote_forward_token1] = ACTIONS(2458), - [aux_sym_request_tty_token1] = ACTIONS(2458), - [aux_sym_required_rsa_size_token1] = ACTIONS(2458), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2458), - [aux_sym_security_key_provider_token1] = ACTIONS(2458), - [aux_sym_send_env_token1] = ACTIONS(2458), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2458), - [aux_sym_server_alive_interval_token1] = ACTIONS(2458), - [aux_sym_session_type_token1] = ACTIONS(2458), - [aux_sym_set_env_token1] = ACTIONS(2458), - [aux_sym_stdin_null_token1] = ACTIONS(2458), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2458), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2458), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2458), - [aux_sym_syslog_facility_token1] = ACTIONS(2458), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2458), - [aux_sym_keep_alive_token1] = ACTIONS(2458), - [aux_sym_tag_token1] = ACTIONS(2458), - [aux_sym_tunnel_token1] = ACTIONS(2460), - [aux_sym_tunnel_device_token1] = ACTIONS(2458), - [aux_sym_update_host_keys_token1] = ACTIONS(2458), - [aux_sym_use_keychain_token1] = ACTIONS(2458), - [aux_sym_use_roaming_token1] = ACTIONS(2458), - [aux_sym_user_token1] = ACTIONS(2460), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2458), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2458), - [aux_sym_visual_host_key_token1] = ACTIONS(2458), - [aux_sym_xauth_location_token1] = ACTIONS(2458), + [ts_builtin_sym_end] = ACTIONS(2467), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(2467), + [aux_sym_match_token1] = ACTIONS(2467), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2467), + [aux_sym_address_family_token1] = ACTIONS(2467), + [aux_sym_batch_mode_token1] = ACTIONS(2467), + [aux_sym_bind_address_token1] = ACTIONS(2467), + [aux_sym_bind_interface_token1] = ACTIONS(2467), + [aux_sym_canonical_domains_token1] = ACTIONS(2467), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2467), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2467), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2467), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2467), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2467), + [aux_sym_certificate_file_token1] = ACTIONS(2467), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2467), + [aux_sym_channel_timeout_token1] = ACTIONS(2467), + [aux_sym_check_host_ip_token1] = ACTIONS(2467), + [aux_sym_ciphers_token1] = ACTIONS(2467), + [aux_sym_cipher_token1] = ACTIONS(2469), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2467), + [aux_sym_compression_token1] = ACTIONS(2467), + [aux_sym_connection_attempts_token1] = ACTIONS(2467), + [aux_sym_connect_timeout_token1] = ACTIONS(2467), + [aux_sym_control_master_token1] = ACTIONS(2467), + [aux_sym_control_path_token1] = ACTIONS(2467), + [aux_sym_control_persist_token1] = ACTIONS(2467), + [aux_sym_dynamic_forward_token1] = ACTIONS(2467), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2467), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2467), + [aux_sym_escape_char_token1] = ACTIONS(2467), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2467), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2467), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2467), + [aux_sym_forward_agent_token1] = ACTIONS(2467), + [aux_sym_forward_x11_token1] = ACTIONS(2469), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2467), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2467), + [aux_sym_gateway_ports_token1] = ACTIONS(2467), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2467), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2467), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2467), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2467), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2467), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2467), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2467), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2467), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2467), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2467), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2467), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2467), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2467), + [aux_sym_host_key_alias_token1] = ACTIONS(2467), + [aux_sym_hostname_token1] = ACTIONS(2467), + [aux_sym_identities_only_token1] = ACTIONS(2467), + [aux_sym_identity_agent_token1] = ACTIONS(2467), + [aux_sym_identity_file_token1] = ACTIONS(2467), + [aux_sym_ignore_unknown_token1] = ACTIONS(2467), + [aux_sym_include_token1] = ACTIONS(2467), + [aux_sym_ip_qos_token1] = ACTIONS(2467), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2467), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2467), + [aux_sym_kex_algorithms_token1] = ACTIONS(2467), + [aux_sym_known_hosts_command_token1] = ACTIONS(2467), + [aux_sym_local_command_token1] = ACTIONS(2467), + [aux_sym_local_forward_token1] = ACTIONS(2467), + [aux_sym_log_level_token1] = ACTIONS(2467), + [aux_sym_log_verbose_token1] = ACTIONS(2467), + [aux_sym_macs_token1] = ACTIONS(2467), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2467), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2467), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2467), + [aux_sym_password_authentication_token1] = ACTIONS(2467), + [aux_sym_permit_local_command_token1] = ACTIONS(2467), + [aux_sym_permit_remote_open_token1] = ACTIONS(2467), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2467), + [aux_sym_port_token1] = ACTIONS(2467), + [aux_sym_preferred_authentications_token1] = ACTIONS(2467), + [aux_sym_protocol_token1] = ACTIONS(2467), + [aux_sym_proxy_command_token1] = ACTIONS(2467), + [aux_sym_proxy_jump_token1] = ACTIONS(2467), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2467), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2467), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2467), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2467), + [aux_sym_rekey_limit_token1] = ACTIONS(2467), + [aux_sym_remote_command_token1] = ACTIONS(2467), + [aux_sym_remote_forward_token1] = ACTIONS(2467), + [aux_sym_request_tty_token1] = ACTIONS(2467), + [aux_sym_required_rsa_size_token1] = ACTIONS(2467), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2467), + [aux_sym_security_key_provider_token1] = ACTIONS(2467), + [aux_sym_send_env_token1] = ACTIONS(2467), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2467), + [aux_sym_server_alive_interval_token1] = ACTIONS(2467), + [aux_sym_session_type_token1] = ACTIONS(2467), + [aux_sym_set_env_token1] = ACTIONS(2467), + [aux_sym_stdin_null_token1] = ACTIONS(2467), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2467), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2467), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2467), + [aux_sym_syslog_facility_token1] = ACTIONS(2467), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2467), + [aux_sym_keep_alive_token1] = ACTIONS(2467), + [aux_sym_tag_token1] = ACTIONS(2467), + [aux_sym_tunnel_token1] = ACTIONS(2469), + [aux_sym_tunnel_device_token1] = ACTIONS(2467), + [aux_sym_update_host_keys_token1] = ACTIONS(2467), + [aux_sym_use_keychain_token1] = ACTIONS(2467), + [aux_sym_use_roaming_token1] = ACTIONS(2467), + [aux_sym_user_token1] = ACTIONS(2469), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2467), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2467), + [aux_sym_visual_host_key_token1] = ACTIONS(2467), + [aux_sym_xauth_location_token1] = ACTIONS(2467), }, [335] = { - [ts_builtin_sym_end] = ACTIONS(2462), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2464), - [anon_sym_DQUOTE] = ACTIONS(2466), - [aux_sym_match_token1] = ACTIONS(2462), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2462), - [aux_sym_address_family_token1] = ACTIONS(2462), - [aux_sym_batch_mode_token1] = ACTIONS(2462), - [aux_sym_bind_address_token1] = ACTIONS(2462), - [aux_sym_bind_interface_token1] = ACTIONS(2462), - [aux_sym_canonical_domains_token1] = ACTIONS(2462), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2462), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2462), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2462), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2462), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2462), - [aux_sym_certificate_file_token1] = ACTIONS(2462), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2462), - [aux_sym_channel_timeout_token1] = ACTIONS(2462), - [aux_sym_check_host_ip_token1] = ACTIONS(2462), - [aux_sym_ciphers_token1] = ACTIONS(2462), - [aux_sym_cipher_token1] = ACTIONS(2464), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2462), - [aux_sym_compression_token1] = ACTIONS(2462), - [aux_sym_connection_attempts_token1] = ACTIONS(2462), - [aux_sym_connect_timeout_token1] = ACTIONS(2462), - [aux_sym_control_master_token1] = ACTIONS(2462), - [aux_sym_control_path_token1] = ACTIONS(2462), - [aux_sym_control_persist_token1] = ACTIONS(2462), - [aux_sym_dynamic_forward_token1] = ACTIONS(2462), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2462), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2462), - [aux_sym_escape_char_token1] = ACTIONS(2462), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2462), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2462), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2462), - [aux_sym_forward_agent_token1] = ACTIONS(2462), - [aux_sym_forward_x11_token1] = ACTIONS(2464), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2462), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2462), - [aux_sym_gateway_ports_token1] = ACTIONS(2462), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2462), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2462), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2462), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2462), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2462), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2462), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2462), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2462), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2462), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2462), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2462), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2462), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2462), - [aux_sym_host_key_alias_token1] = ACTIONS(2462), - [aux_sym_hostname_token1] = ACTIONS(2462), - [aux_sym_identities_only_token1] = ACTIONS(2462), - [aux_sym_identity_agent_token1] = ACTIONS(2462), - [aux_sym_identity_file_token1] = ACTIONS(2462), - [aux_sym_ignore_unknown_token1] = ACTIONS(2462), - [aux_sym_include_token1] = ACTIONS(2462), - [aux_sym_ip_qos_token1] = ACTIONS(2462), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2462), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2462), - [aux_sym_kex_algorithms_token1] = ACTIONS(2462), - [aux_sym_known_hosts_command_token1] = ACTIONS(2462), - [aux_sym_local_command_token1] = ACTIONS(2462), - [aux_sym_local_forward_token1] = ACTIONS(2462), - [aux_sym_log_level_token1] = ACTIONS(2462), - [aux_sym_log_verbose_token1] = ACTIONS(2462), - [aux_sym_macs_token1] = ACTIONS(2462), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2462), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2462), - [aux_sym_password_authentication_token1] = ACTIONS(2462), - [aux_sym_permit_local_command_token1] = ACTIONS(2462), - [aux_sym_permit_remote_open_token1] = ACTIONS(2462), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2462), - [aux_sym_port_token1] = ACTIONS(2462), - [aux_sym_preferred_authentications_token1] = ACTIONS(2462), - [aux_sym_protocol_token1] = ACTIONS(2462), - [aux_sym_proxy_command_token1] = ACTIONS(2462), - [aux_sym_proxy_jump_token1] = ACTIONS(2462), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2462), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2462), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2462), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2462), - [aux_sym_rekey_limit_token1] = ACTIONS(2462), - [aux_sym_remote_command_token1] = ACTIONS(2462), - [aux_sym_remote_forward_token1] = ACTIONS(2462), - [aux_sym_request_tty_token1] = ACTIONS(2462), - [aux_sym_required_rsa_size_token1] = ACTIONS(2462), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2462), - [aux_sym_security_key_provider_token1] = ACTIONS(2462), - [aux_sym_send_env_token1] = ACTIONS(2462), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2462), - [aux_sym_server_alive_interval_token1] = ACTIONS(2462), - [aux_sym_session_type_token1] = ACTIONS(2462), - [aux_sym_set_env_token1] = ACTIONS(2462), - [aux_sym_stdin_null_token1] = ACTIONS(2462), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2462), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2462), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2462), - [aux_sym_syslog_facility_token1] = ACTIONS(2462), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2462), - [aux_sym_keep_alive_token1] = ACTIONS(2462), - [aux_sym_tag_token1] = ACTIONS(2462), - [aux_sym_tunnel_token1] = ACTIONS(2464), - [aux_sym_tunnel_device_token1] = ACTIONS(2462), - [aux_sym_update_host_keys_token1] = ACTIONS(2462), - [aux_sym_use_keychain_token1] = ACTIONS(2462), - [aux_sym_use_roaming_token1] = ACTIONS(2462), - [aux_sym_user_token1] = ACTIONS(2464), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2462), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2462), - [aux_sym_visual_host_key_token1] = ACTIONS(2462), - [aux_sym_xauth_location_token1] = ACTIONS(2462), + [ts_builtin_sym_end] = ACTIONS(2471), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(2475), + [aux_sym_match_token1] = ACTIONS(2471), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2471), + [aux_sym_address_family_token1] = ACTIONS(2471), + [aux_sym_batch_mode_token1] = ACTIONS(2471), + [aux_sym_bind_address_token1] = ACTIONS(2471), + [aux_sym_bind_interface_token1] = ACTIONS(2471), + [aux_sym_canonical_domains_token1] = ACTIONS(2471), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2471), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2471), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2471), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2471), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2471), + [aux_sym_certificate_file_token1] = ACTIONS(2471), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2471), + [aux_sym_channel_timeout_token1] = ACTIONS(2471), + [aux_sym_check_host_ip_token1] = ACTIONS(2471), + [aux_sym_ciphers_token1] = ACTIONS(2471), + [aux_sym_cipher_token1] = ACTIONS(2473), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2471), + [aux_sym_compression_token1] = ACTIONS(2471), + [aux_sym_connection_attempts_token1] = ACTIONS(2471), + [aux_sym_connect_timeout_token1] = ACTIONS(2471), + [aux_sym_control_master_token1] = ACTIONS(2471), + [aux_sym_control_path_token1] = ACTIONS(2471), + [aux_sym_control_persist_token1] = ACTIONS(2471), + [aux_sym_dynamic_forward_token1] = ACTIONS(2471), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2471), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2471), + [aux_sym_escape_char_token1] = ACTIONS(2471), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2471), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2471), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2471), + [aux_sym_forward_agent_token1] = ACTIONS(2471), + [aux_sym_forward_x11_token1] = ACTIONS(2473), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2471), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2471), + [aux_sym_gateway_ports_token1] = ACTIONS(2471), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2471), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2471), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2471), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2471), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2471), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2471), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2471), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2471), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2471), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2471), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2471), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2471), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2471), + [aux_sym_host_key_alias_token1] = ACTIONS(2471), + [aux_sym_hostname_token1] = ACTIONS(2471), + [aux_sym_identities_only_token1] = ACTIONS(2471), + [aux_sym_identity_agent_token1] = ACTIONS(2471), + [aux_sym_identity_file_token1] = ACTIONS(2471), + [aux_sym_ignore_unknown_token1] = ACTIONS(2471), + [aux_sym_include_token1] = ACTIONS(2471), + [aux_sym_ip_qos_token1] = ACTIONS(2471), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2471), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2471), + [aux_sym_kex_algorithms_token1] = ACTIONS(2471), + [aux_sym_known_hosts_command_token1] = ACTIONS(2471), + [aux_sym_local_command_token1] = ACTIONS(2471), + [aux_sym_local_forward_token1] = ACTIONS(2471), + [aux_sym_log_level_token1] = ACTIONS(2471), + [aux_sym_log_verbose_token1] = ACTIONS(2471), + [aux_sym_macs_token1] = ACTIONS(2471), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2471), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2471), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2471), + [aux_sym_password_authentication_token1] = ACTIONS(2471), + [aux_sym_permit_local_command_token1] = ACTIONS(2471), + [aux_sym_permit_remote_open_token1] = ACTIONS(2471), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2471), + [aux_sym_port_token1] = ACTIONS(2471), + [aux_sym_preferred_authentications_token1] = ACTIONS(2471), + [aux_sym_protocol_token1] = ACTIONS(2471), + [aux_sym_proxy_command_token1] = ACTIONS(2471), + [aux_sym_proxy_jump_token1] = ACTIONS(2471), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2471), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2471), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2471), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2471), + [aux_sym_rekey_limit_token1] = ACTIONS(2471), + [aux_sym_remote_command_token1] = ACTIONS(2471), + [aux_sym_remote_forward_token1] = ACTIONS(2471), + [aux_sym_request_tty_token1] = ACTIONS(2471), + [aux_sym_required_rsa_size_token1] = ACTIONS(2471), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2471), + [aux_sym_security_key_provider_token1] = ACTIONS(2471), + [aux_sym_send_env_token1] = ACTIONS(2471), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2471), + [aux_sym_server_alive_interval_token1] = ACTIONS(2471), + [aux_sym_session_type_token1] = ACTIONS(2471), + [aux_sym_set_env_token1] = ACTIONS(2471), + [aux_sym_stdin_null_token1] = ACTIONS(2471), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2471), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2471), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2471), + [aux_sym_syslog_facility_token1] = ACTIONS(2471), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2471), + [aux_sym_keep_alive_token1] = ACTIONS(2471), + [aux_sym_tag_token1] = ACTIONS(2471), + [aux_sym_tunnel_token1] = ACTIONS(2473), + [aux_sym_tunnel_device_token1] = ACTIONS(2471), + [aux_sym_update_host_keys_token1] = ACTIONS(2471), + [aux_sym_use_keychain_token1] = ACTIONS(2471), + [aux_sym_use_roaming_token1] = ACTIONS(2471), + [aux_sym_user_token1] = ACTIONS(2473), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2471), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2471), + [aux_sym_visual_host_key_token1] = ACTIONS(2471), + [aux_sym_xauth_location_token1] = ACTIONS(2471), }, [336] = { - [ts_builtin_sym_end] = ACTIONS(2468), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2470), - [anon_sym_DQUOTE] = ACTIONS(2468), - [aux_sym_match_token1] = ACTIONS(2468), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2468), - [aux_sym_address_family_token1] = ACTIONS(2468), - [aux_sym_batch_mode_token1] = ACTIONS(2468), - [aux_sym_bind_address_token1] = ACTIONS(2468), - [aux_sym_bind_interface_token1] = ACTIONS(2468), - [aux_sym_canonical_domains_token1] = ACTIONS(2468), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2468), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2468), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2468), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2468), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2468), - [aux_sym_certificate_file_token1] = ACTIONS(2468), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2468), - [aux_sym_channel_timeout_token1] = ACTIONS(2468), - [aux_sym_check_host_ip_token1] = ACTIONS(2468), - [aux_sym_ciphers_token1] = ACTIONS(2468), - [aux_sym_cipher_token1] = ACTIONS(2470), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2468), - [aux_sym_compression_token1] = ACTIONS(2468), - [aux_sym_connection_attempts_token1] = ACTIONS(2468), - [aux_sym_connect_timeout_token1] = ACTIONS(2468), - [aux_sym_control_master_token1] = ACTIONS(2468), - [aux_sym_control_path_token1] = ACTIONS(2468), - [aux_sym_control_persist_token1] = ACTIONS(2468), - [aux_sym_dynamic_forward_token1] = ACTIONS(2468), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2468), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2468), - [aux_sym_escape_char_token1] = ACTIONS(2468), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2468), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2468), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2468), - [aux_sym_forward_agent_token1] = ACTIONS(2468), - [aux_sym_forward_x11_token1] = ACTIONS(2470), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2468), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2468), - [aux_sym_gateway_ports_token1] = ACTIONS(2468), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2468), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2468), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2468), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2468), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2468), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2468), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2468), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2468), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2468), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2468), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2468), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2468), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2468), - [aux_sym_host_key_alias_token1] = ACTIONS(2468), - [aux_sym_hostname_token1] = ACTIONS(2468), - [aux_sym_identities_only_token1] = ACTIONS(2468), - [aux_sym_identity_agent_token1] = ACTIONS(2468), - [aux_sym_identity_file_token1] = ACTIONS(2468), - [aux_sym_ignore_unknown_token1] = ACTIONS(2468), - [aux_sym_include_token1] = ACTIONS(2468), - [aux_sym_ip_qos_token1] = ACTIONS(2468), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2468), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2468), - [aux_sym_kex_algorithms_token1] = ACTIONS(2468), - [aux_sym_known_hosts_command_token1] = ACTIONS(2468), - [aux_sym_local_command_token1] = ACTIONS(2468), - [aux_sym_local_forward_token1] = ACTIONS(2468), - [aux_sym_log_level_token1] = ACTIONS(2468), - [aux_sym_log_verbose_token1] = ACTIONS(2468), - [aux_sym_macs_token1] = ACTIONS(2468), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2468), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2468), - [aux_sym_password_authentication_token1] = ACTIONS(2468), - [aux_sym_permit_local_command_token1] = ACTIONS(2468), - [aux_sym_permit_remote_open_token1] = ACTIONS(2468), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2468), - [aux_sym_port_token1] = ACTIONS(2468), - [aux_sym_preferred_authentications_token1] = ACTIONS(2468), - [aux_sym_protocol_token1] = ACTIONS(2468), - [aux_sym_proxy_command_token1] = ACTIONS(2468), - [aux_sym_proxy_jump_token1] = ACTIONS(2468), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2468), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2468), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2468), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2468), - [aux_sym_rekey_limit_token1] = ACTIONS(2468), - [aux_sym_remote_command_token1] = ACTIONS(2468), - [aux_sym_remote_forward_token1] = ACTIONS(2468), - [aux_sym_request_tty_token1] = ACTIONS(2468), - [aux_sym_required_rsa_size_token1] = ACTIONS(2468), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2468), - [aux_sym_security_key_provider_token1] = ACTIONS(2468), - [aux_sym_send_env_token1] = ACTIONS(2468), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2468), - [aux_sym_server_alive_interval_token1] = ACTIONS(2468), - [aux_sym_session_type_token1] = ACTIONS(2468), - [aux_sym_set_env_token1] = ACTIONS(2468), - [aux_sym_stdin_null_token1] = ACTIONS(2468), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2468), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2468), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2468), - [aux_sym_syslog_facility_token1] = ACTIONS(2468), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2468), - [aux_sym_keep_alive_token1] = ACTIONS(2468), - [aux_sym_tag_token1] = ACTIONS(2468), - [aux_sym_tunnel_token1] = ACTIONS(2470), - [aux_sym_tunnel_device_token1] = ACTIONS(2468), - [aux_sym_update_host_keys_token1] = ACTIONS(2468), - [aux_sym_use_keychain_token1] = ACTIONS(2468), - [aux_sym_use_roaming_token1] = ACTIONS(2468), - [aux_sym_user_token1] = ACTIONS(2470), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2468), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2468), - [aux_sym_visual_host_key_token1] = ACTIONS(2468), - [aux_sym_xauth_location_token1] = ACTIONS(2468), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(2477), + [aux_sym_match_token1] = ACTIONS(2477), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2477), + [aux_sym_address_family_token1] = ACTIONS(2477), + [aux_sym_batch_mode_token1] = ACTIONS(2477), + [aux_sym_bind_address_token1] = ACTIONS(2477), + [aux_sym_bind_interface_token1] = ACTIONS(2477), + [aux_sym_canonical_domains_token1] = ACTIONS(2477), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2477), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2477), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2477), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2477), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2477), + [aux_sym_certificate_file_token1] = ACTIONS(2477), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2477), + [aux_sym_channel_timeout_token1] = ACTIONS(2477), + [aux_sym_check_host_ip_token1] = ACTIONS(2477), + [aux_sym_ciphers_token1] = ACTIONS(2477), + [aux_sym_cipher_token1] = ACTIONS(2479), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2477), + [aux_sym_compression_token1] = ACTIONS(2477), + [aux_sym_connection_attempts_token1] = ACTIONS(2477), + [aux_sym_connect_timeout_token1] = ACTIONS(2477), + [aux_sym_control_master_token1] = ACTIONS(2477), + [aux_sym_control_path_token1] = ACTIONS(2477), + [aux_sym_control_persist_token1] = ACTIONS(2477), + [aux_sym_dynamic_forward_token1] = ACTIONS(2477), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2477), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2477), + [aux_sym_escape_char_token1] = ACTIONS(2477), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2477), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2477), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2477), + [aux_sym_forward_agent_token1] = ACTIONS(2477), + [aux_sym_forward_x11_token1] = ACTIONS(2479), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2477), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2477), + [aux_sym_gateway_ports_token1] = ACTIONS(2477), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2477), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2477), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2477), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2477), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2477), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2477), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2477), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2477), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2477), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2477), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2477), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2477), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2477), + [aux_sym_host_key_alias_token1] = ACTIONS(2477), + [aux_sym_hostname_token1] = ACTIONS(2477), + [aux_sym_identities_only_token1] = ACTIONS(2477), + [aux_sym_identity_agent_token1] = ACTIONS(2477), + [aux_sym_identity_file_token1] = ACTIONS(2477), + [aux_sym_ignore_unknown_token1] = ACTIONS(2477), + [aux_sym_include_token1] = ACTIONS(2477), + [aux_sym_ip_qos_token1] = ACTIONS(2477), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2477), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2477), + [aux_sym_kex_algorithms_token1] = ACTIONS(2477), + [aux_sym_known_hosts_command_token1] = ACTIONS(2477), + [aux_sym_local_command_token1] = ACTIONS(2477), + [aux_sym_local_forward_token1] = ACTIONS(2477), + [aux_sym_log_level_token1] = ACTIONS(2477), + [aux_sym_log_verbose_token1] = ACTIONS(2477), + [aux_sym_macs_token1] = ACTIONS(2477), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2477), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2477), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2477), + [aux_sym_password_authentication_token1] = ACTIONS(2477), + [aux_sym_permit_local_command_token1] = ACTIONS(2477), + [aux_sym_permit_remote_open_token1] = ACTIONS(2477), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2477), + [aux_sym_port_token1] = ACTIONS(2477), + [aux_sym_preferred_authentications_token1] = ACTIONS(2477), + [aux_sym_protocol_token1] = ACTIONS(2477), + [aux_sym_proxy_command_token1] = ACTIONS(2477), + [aux_sym_proxy_jump_token1] = ACTIONS(2477), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2477), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2477), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2477), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2477), + [aux_sym_rekey_limit_token1] = ACTIONS(2477), + [aux_sym_remote_command_token1] = ACTIONS(2477), + [aux_sym_remote_forward_token1] = ACTIONS(2477), + [aux_sym_request_tty_token1] = ACTIONS(2477), + [aux_sym_required_rsa_size_token1] = ACTIONS(2477), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2477), + [aux_sym_security_key_provider_token1] = ACTIONS(2477), + [aux_sym_send_env_token1] = ACTIONS(2477), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2477), + [aux_sym_server_alive_interval_token1] = ACTIONS(2477), + [aux_sym_session_type_token1] = ACTIONS(2477), + [aux_sym_set_env_token1] = ACTIONS(2477), + [aux_sym_stdin_null_token1] = ACTIONS(2477), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2477), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2477), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2477), + [aux_sym_syslog_facility_token1] = ACTIONS(2477), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2477), + [aux_sym_keep_alive_token1] = ACTIONS(2477), + [aux_sym_tag_token1] = ACTIONS(2477), + [aux_sym_tunnel_token1] = ACTIONS(2479), + [aux_sym_tunnel_device_token1] = ACTIONS(2477), + [aux_sym_update_host_keys_token1] = ACTIONS(2477), + [aux_sym_use_keychain_token1] = ACTIONS(2477), + [aux_sym_use_roaming_token1] = ACTIONS(2477), + [aux_sym_user_token1] = ACTIONS(2479), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2477), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2477), + [aux_sym_visual_host_key_token1] = ACTIONS(2477), + [aux_sym_xauth_location_token1] = ACTIONS(2477), }, [337] = { - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2474), - [anon_sym_DQUOTE] = ACTIONS(2476), - [aux_sym_match_token1] = ACTIONS(2472), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2472), - [aux_sym_address_family_token1] = ACTIONS(2472), - [aux_sym_batch_mode_token1] = ACTIONS(2472), - [aux_sym_bind_address_token1] = ACTIONS(2472), - [aux_sym_bind_interface_token1] = ACTIONS(2472), - [aux_sym_canonical_domains_token1] = ACTIONS(2472), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2472), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2472), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2472), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2472), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2472), - [aux_sym_certificate_file_token1] = ACTIONS(2472), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2472), - [aux_sym_channel_timeout_token1] = ACTIONS(2472), - [aux_sym_check_host_ip_token1] = ACTIONS(2472), - [aux_sym_ciphers_token1] = ACTIONS(2472), - [aux_sym_cipher_token1] = ACTIONS(2474), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2472), - [aux_sym_compression_token1] = ACTIONS(2472), - [aux_sym_connection_attempts_token1] = ACTIONS(2472), - [aux_sym_connect_timeout_token1] = ACTIONS(2472), - [aux_sym_control_master_token1] = ACTIONS(2472), - [aux_sym_control_path_token1] = ACTIONS(2472), - [aux_sym_control_persist_token1] = ACTIONS(2472), - [aux_sym_dynamic_forward_token1] = ACTIONS(2472), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2472), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2472), - [aux_sym_escape_char_token1] = ACTIONS(2472), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2472), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2472), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2472), - [aux_sym_forward_agent_token1] = ACTIONS(2472), - [aux_sym_forward_x11_token1] = ACTIONS(2474), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2472), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2472), - [aux_sym_gateway_ports_token1] = ACTIONS(2472), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2472), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2472), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2472), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2472), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2472), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2472), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2472), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2472), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2472), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2472), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2472), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2472), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2472), - [aux_sym_host_key_alias_token1] = ACTIONS(2472), - [aux_sym_hostname_token1] = ACTIONS(2472), - [aux_sym_identities_only_token1] = ACTIONS(2472), - [aux_sym_identity_agent_token1] = ACTIONS(2472), - [aux_sym_identity_file_token1] = ACTIONS(2472), - [aux_sym_ignore_unknown_token1] = ACTIONS(2472), - [aux_sym_include_token1] = ACTIONS(2472), - [aux_sym_ip_qos_token1] = ACTIONS(2472), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2472), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2472), - [aux_sym_kex_algorithms_token1] = ACTIONS(2472), - [aux_sym_known_hosts_command_token1] = ACTIONS(2472), - [aux_sym_local_command_token1] = ACTIONS(2472), - [aux_sym_local_forward_token1] = ACTIONS(2472), - [aux_sym_log_level_token1] = ACTIONS(2472), - [aux_sym_log_verbose_token1] = ACTIONS(2472), - [aux_sym_macs_token1] = ACTIONS(2472), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2472), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2472), - [aux_sym_password_authentication_token1] = ACTIONS(2472), - [aux_sym_permit_local_command_token1] = ACTIONS(2472), - [aux_sym_permit_remote_open_token1] = ACTIONS(2472), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2472), - [aux_sym_port_token1] = ACTIONS(2472), - [aux_sym_preferred_authentications_token1] = ACTIONS(2472), - [aux_sym_protocol_token1] = ACTIONS(2472), - [aux_sym_proxy_command_token1] = ACTIONS(2472), - [aux_sym_proxy_jump_token1] = ACTIONS(2472), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2472), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2472), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2472), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2472), - [aux_sym_rekey_limit_token1] = ACTIONS(2472), - [aux_sym_remote_command_token1] = ACTIONS(2472), - [aux_sym_remote_forward_token1] = ACTIONS(2472), - [aux_sym_request_tty_token1] = ACTIONS(2472), - [aux_sym_required_rsa_size_token1] = ACTIONS(2472), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2472), - [aux_sym_security_key_provider_token1] = ACTIONS(2472), - [aux_sym_send_env_token1] = ACTIONS(2472), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2472), - [aux_sym_server_alive_interval_token1] = ACTIONS(2472), - [aux_sym_session_type_token1] = ACTIONS(2472), - [aux_sym_set_env_token1] = ACTIONS(2472), - [aux_sym_stdin_null_token1] = ACTIONS(2472), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2472), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2472), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2472), - [aux_sym_syslog_facility_token1] = ACTIONS(2472), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2472), - [aux_sym_keep_alive_token1] = ACTIONS(2472), - [aux_sym_tag_token1] = ACTIONS(2472), - [aux_sym_tunnel_token1] = ACTIONS(2474), - [aux_sym_tunnel_device_token1] = ACTIONS(2472), - [aux_sym_update_host_keys_token1] = ACTIONS(2472), - [aux_sym_use_keychain_token1] = ACTIONS(2472), - [aux_sym_use_roaming_token1] = ACTIONS(2472), - [aux_sym_user_token1] = ACTIONS(2474), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2472), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2472), - [aux_sym_visual_host_key_token1] = ACTIONS(2472), - [aux_sym_xauth_location_token1] = ACTIONS(2472), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2483), + [anon_sym_DQUOTE] = ACTIONS(2485), + [aux_sym_match_token1] = ACTIONS(2481), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2481), + [aux_sym_address_family_token1] = ACTIONS(2481), + [aux_sym_batch_mode_token1] = ACTIONS(2481), + [aux_sym_bind_address_token1] = ACTIONS(2481), + [aux_sym_bind_interface_token1] = ACTIONS(2481), + [aux_sym_canonical_domains_token1] = ACTIONS(2481), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2481), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2481), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2481), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2481), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2481), + [aux_sym_certificate_file_token1] = ACTIONS(2481), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2481), + [aux_sym_channel_timeout_token1] = ACTIONS(2481), + [aux_sym_check_host_ip_token1] = ACTIONS(2481), + [aux_sym_ciphers_token1] = ACTIONS(2481), + [aux_sym_cipher_token1] = ACTIONS(2483), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2481), + [aux_sym_compression_token1] = ACTIONS(2481), + [aux_sym_connection_attempts_token1] = ACTIONS(2481), + [aux_sym_connect_timeout_token1] = ACTIONS(2481), + [aux_sym_control_master_token1] = ACTIONS(2481), + [aux_sym_control_path_token1] = ACTIONS(2481), + [aux_sym_control_persist_token1] = ACTIONS(2481), + [aux_sym_dynamic_forward_token1] = ACTIONS(2481), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2481), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2481), + [aux_sym_escape_char_token1] = ACTIONS(2481), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2481), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2481), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2481), + [aux_sym_forward_agent_token1] = ACTIONS(2481), + [aux_sym_forward_x11_token1] = ACTIONS(2483), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2481), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2481), + [aux_sym_gateway_ports_token1] = ACTIONS(2481), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2481), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2481), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2481), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2481), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2481), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2481), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2481), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2481), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2481), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2481), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2481), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2481), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2481), + [aux_sym_host_key_alias_token1] = ACTIONS(2481), + [aux_sym_hostname_token1] = ACTIONS(2481), + [aux_sym_identities_only_token1] = ACTIONS(2481), + [aux_sym_identity_agent_token1] = ACTIONS(2481), + [aux_sym_identity_file_token1] = ACTIONS(2481), + [aux_sym_ignore_unknown_token1] = ACTIONS(2481), + [aux_sym_include_token1] = ACTIONS(2481), + [aux_sym_ip_qos_token1] = ACTIONS(2481), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2481), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2481), + [aux_sym_kex_algorithms_token1] = ACTIONS(2481), + [aux_sym_known_hosts_command_token1] = ACTIONS(2481), + [aux_sym_local_command_token1] = ACTIONS(2481), + [aux_sym_local_forward_token1] = ACTIONS(2481), + [aux_sym_log_level_token1] = ACTIONS(2481), + [aux_sym_log_verbose_token1] = ACTIONS(2481), + [aux_sym_macs_token1] = ACTIONS(2481), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2481), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2481), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2481), + [aux_sym_password_authentication_token1] = ACTIONS(2481), + [aux_sym_permit_local_command_token1] = ACTIONS(2481), + [aux_sym_permit_remote_open_token1] = ACTIONS(2481), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2481), + [aux_sym_port_token1] = ACTIONS(2481), + [aux_sym_preferred_authentications_token1] = ACTIONS(2481), + [aux_sym_protocol_token1] = ACTIONS(2481), + [aux_sym_proxy_command_token1] = ACTIONS(2481), + [aux_sym_proxy_jump_token1] = ACTIONS(2481), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2481), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2481), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2481), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2481), + [aux_sym_rekey_limit_token1] = ACTIONS(2481), + [aux_sym_remote_command_token1] = ACTIONS(2481), + [aux_sym_remote_forward_token1] = ACTIONS(2481), + [aux_sym_request_tty_token1] = ACTIONS(2481), + [aux_sym_required_rsa_size_token1] = ACTIONS(2481), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2481), + [aux_sym_security_key_provider_token1] = ACTIONS(2481), + [aux_sym_send_env_token1] = ACTIONS(2481), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2481), + [aux_sym_server_alive_interval_token1] = ACTIONS(2481), + [aux_sym_session_type_token1] = ACTIONS(2481), + [aux_sym_set_env_token1] = ACTIONS(2481), + [aux_sym_stdin_null_token1] = ACTIONS(2481), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2481), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2481), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2481), + [aux_sym_syslog_facility_token1] = ACTIONS(2481), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2481), + [aux_sym_keep_alive_token1] = ACTIONS(2481), + [aux_sym_tag_token1] = ACTIONS(2481), + [aux_sym_tunnel_token1] = ACTIONS(2483), + [aux_sym_tunnel_device_token1] = ACTIONS(2481), + [aux_sym_update_host_keys_token1] = ACTIONS(2481), + [aux_sym_use_keychain_token1] = ACTIONS(2481), + [aux_sym_use_roaming_token1] = ACTIONS(2481), + [aux_sym_user_token1] = ACTIONS(2483), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2481), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2481), + [aux_sym_visual_host_key_token1] = ACTIONS(2481), + [aux_sym_xauth_location_token1] = ACTIONS(2481), }, [338] = { - [ts_builtin_sym_end] = ACTIONS(2478), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2480), - [anon_sym_DQUOTE] = ACTIONS(2478), - [aux_sym_match_token1] = ACTIONS(2478), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2478), - [aux_sym_address_family_token1] = ACTIONS(2478), - [aux_sym_batch_mode_token1] = ACTIONS(2478), - [aux_sym_bind_address_token1] = ACTIONS(2478), - [aux_sym_bind_interface_token1] = ACTIONS(2478), - [aux_sym_canonical_domains_token1] = ACTIONS(2478), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2478), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2478), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2478), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2478), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2478), - [aux_sym_certificate_file_token1] = ACTIONS(2478), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2478), - [aux_sym_channel_timeout_token1] = ACTIONS(2478), - [aux_sym_check_host_ip_token1] = ACTIONS(2478), - [aux_sym_ciphers_token1] = ACTIONS(2478), - [aux_sym_cipher_token1] = ACTIONS(2480), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2478), - [aux_sym_compression_token1] = ACTIONS(2478), - [aux_sym_connection_attempts_token1] = ACTIONS(2478), - [aux_sym_connect_timeout_token1] = ACTIONS(2478), - [aux_sym_control_master_token1] = ACTIONS(2478), - [aux_sym_control_path_token1] = ACTIONS(2478), - [aux_sym_control_persist_token1] = ACTIONS(2478), - [aux_sym_dynamic_forward_token1] = ACTIONS(2478), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2478), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2478), - [aux_sym_escape_char_token1] = ACTIONS(2478), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2478), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2478), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2478), - [aux_sym_forward_agent_token1] = ACTIONS(2478), - [aux_sym_forward_x11_token1] = ACTIONS(2480), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2478), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2478), - [aux_sym_gateway_ports_token1] = ACTIONS(2478), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2478), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2478), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2478), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2478), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2478), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2478), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2478), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2478), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2478), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2478), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2478), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2478), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2478), - [aux_sym_host_key_alias_token1] = ACTIONS(2478), - [aux_sym_hostname_token1] = ACTIONS(2478), - [aux_sym_identities_only_token1] = ACTIONS(2478), - [aux_sym_identity_agent_token1] = ACTIONS(2478), - [aux_sym_identity_file_token1] = ACTIONS(2478), - [aux_sym_ignore_unknown_token1] = ACTIONS(2478), - [aux_sym_include_token1] = ACTIONS(2478), - [aux_sym_ip_qos_token1] = ACTIONS(2478), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2478), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2478), - [aux_sym_kex_algorithms_token1] = ACTIONS(2478), - [aux_sym_known_hosts_command_token1] = ACTIONS(2478), - [aux_sym_local_command_token1] = ACTIONS(2478), - [aux_sym_local_forward_token1] = ACTIONS(2478), - [aux_sym_log_level_token1] = ACTIONS(2478), - [aux_sym_log_verbose_token1] = ACTIONS(2478), - [aux_sym_macs_token1] = ACTIONS(2478), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2478), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2478), - [aux_sym_password_authentication_token1] = ACTIONS(2478), - [aux_sym_permit_local_command_token1] = ACTIONS(2478), - [aux_sym_permit_remote_open_token1] = ACTIONS(2478), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2478), - [aux_sym_port_token1] = ACTIONS(2478), - [aux_sym_preferred_authentications_token1] = ACTIONS(2478), - [aux_sym_protocol_token1] = ACTIONS(2478), - [aux_sym_proxy_command_token1] = ACTIONS(2478), - [aux_sym_proxy_jump_token1] = ACTIONS(2478), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2478), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2478), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2478), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2478), - [aux_sym_rekey_limit_token1] = ACTIONS(2478), - [aux_sym_remote_command_token1] = ACTIONS(2478), - [aux_sym_remote_forward_token1] = ACTIONS(2478), - [aux_sym_request_tty_token1] = ACTIONS(2478), - [aux_sym_required_rsa_size_token1] = ACTIONS(2478), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2478), - [aux_sym_security_key_provider_token1] = ACTIONS(2478), - [aux_sym_send_env_token1] = ACTIONS(2478), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2478), - [aux_sym_server_alive_interval_token1] = ACTIONS(2478), - [aux_sym_session_type_token1] = ACTIONS(2478), - [aux_sym_set_env_token1] = ACTIONS(2478), - [aux_sym_stdin_null_token1] = ACTIONS(2478), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2478), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2478), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2478), - [aux_sym_syslog_facility_token1] = ACTIONS(2478), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2478), - [aux_sym_keep_alive_token1] = ACTIONS(2478), - [aux_sym_tag_token1] = ACTIONS(2478), - [aux_sym_tunnel_token1] = ACTIONS(2480), - [aux_sym_tunnel_device_token1] = ACTIONS(2478), - [aux_sym_update_host_keys_token1] = ACTIONS(2478), - [aux_sym_use_keychain_token1] = ACTIONS(2478), - [aux_sym_use_roaming_token1] = ACTIONS(2478), - [aux_sym_user_token1] = ACTIONS(2480), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2478), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2478), - [aux_sym_visual_host_key_token1] = ACTIONS(2478), - [aux_sym_xauth_location_token1] = ACTIONS(2478), + [ts_builtin_sym_end] = ACTIONS(2487), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2487), + [aux_sym_match_token1] = ACTIONS(2487), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2487), + [aux_sym_address_family_token1] = ACTIONS(2487), + [aux_sym_batch_mode_token1] = ACTIONS(2487), + [aux_sym_bind_address_token1] = ACTIONS(2487), + [aux_sym_bind_interface_token1] = ACTIONS(2487), + [aux_sym_canonical_domains_token1] = ACTIONS(2487), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2487), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2487), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2487), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2487), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2487), + [aux_sym_certificate_file_token1] = ACTIONS(2487), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2487), + [aux_sym_channel_timeout_token1] = ACTIONS(2487), + [aux_sym_check_host_ip_token1] = ACTIONS(2487), + [aux_sym_ciphers_token1] = ACTIONS(2487), + [aux_sym_cipher_token1] = ACTIONS(2489), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2487), + [aux_sym_compression_token1] = ACTIONS(2487), + [aux_sym_connection_attempts_token1] = ACTIONS(2487), + [aux_sym_connect_timeout_token1] = ACTIONS(2487), + [aux_sym_control_master_token1] = ACTIONS(2487), + [aux_sym_control_path_token1] = ACTIONS(2487), + [aux_sym_control_persist_token1] = ACTIONS(2487), + [aux_sym_dynamic_forward_token1] = ACTIONS(2487), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2487), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2487), + [aux_sym_escape_char_token1] = ACTIONS(2487), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2487), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2487), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2487), + [aux_sym_forward_agent_token1] = ACTIONS(2487), + [aux_sym_forward_x11_token1] = ACTIONS(2489), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2487), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2487), + [aux_sym_gateway_ports_token1] = ACTIONS(2487), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2487), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2487), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2487), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2487), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2487), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2487), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2487), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2487), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2487), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2487), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2487), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2487), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2487), + [aux_sym_host_key_alias_token1] = ACTIONS(2487), + [aux_sym_hostname_token1] = ACTIONS(2487), + [aux_sym_identities_only_token1] = ACTIONS(2487), + [aux_sym_identity_agent_token1] = ACTIONS(2487), + [aux_sym_identity_file_token1] = ACTIONS(2487), + [aux_sym_ignore_unknown_token1] = ACTIONS(2487), + [aux_sym_include_token1] = ACTIONS(2487), + [aux_sym_ip_qos_token1] = ACTIONS(2487), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2487), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2487), + [aux_sym_kex_algorithms_token1] = ACTIONS(2487), + [aux_sym_known_hosts_command_token1] = ACTIONS(2487), + [aux_sym_local_command_token1] = ACTIONS(2487), + [aux_sym_local_forward_token1] = ACTIONS(2487), + [aux_sym_log_level_token1] = ACTIONS(2487), + [aux_sym_log_verbose_token1] = ACTIONS(2487), + [aux_sym_macs_token1] = ACTIONS(2487), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2487), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2487), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2487), + [aux_sym_password_authentication_token1] = ACTIONS(2487), + [aux_sym_permit_local_command_token1] = ACTIONS(2487), + [aux_sym_permit_remote_open_token1] = ACTIONS(2487), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2487), + [aux_sym_port_token1] = ACTIONS(2487), + [aux_sym_preferred_authentications_token1] = ACTIONS(2487), + [aux_sym_protocol_token1] = ACTIONS(2487), + [aux_sym_proxy_command_token1] = ACTIONS(2487), + [aux_sym_proxy_jump_token1] = ACTIONS(2487), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2487), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2487), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2487), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2487), + [aux_sym_rekey_limit_token1] = ACTIONS(2487), + [aux_sym_remote_command_token1] = ACTIONS(2487), + [aux_sym_remote_forward_token1] = ACTIONS(2487), + [aux_sym_request_tty_token1] = ACTIONS(2487), + [aux_sym_required_rsa_size_token1] = ACTIONS(2487), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2487), + [aux_sym_security_key_provider_token1] = ACTIONS(2487), + [aux_sym_send_env_token1] = ACTIONS(2487), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2487), + [aux_sym_server_alive_interval_token1] = ACTIONS(2487), + [aux_sym_session_type_token1] = ACTIONS(2487), + [aux_sym_set_env_token1] = ACTIONS(2487), + [aux_sym_stdin_null_token1] = ACTIONS(2487), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2487), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2487), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2487), + [aux_sym_syslog_facility_token1] = ACTIONS(2487), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2487), + [aux_sym_keep_alive_token1] = ACTIONS(2487), + [aux_sym_tag_token1] = ACTIONS(2487), + [aux_sym_tunnel_token1] = ACTIONS(2489), + [aux_sym_tunnel_device_token1] = ACTIONS(2487), + [aux_sym_update_host_keys_token1] = ACTIONS(2487), + [aux_sym_use_keychain_token1] = ACTIONS(2487), + [aux_sym_use_roaming_token1] = ACTIONS(2487), + [aux_sym_user_token1] = ACTIONS(2489), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2487), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2487), + [aux_sym_visual_host_key_token1] = ACTIONS(2487), + [aux_sym_xauth_location_token1] = ACTIONS(2487), }, [339] = { - [ts_builtin_sym_end] = ACTIONS(2482), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2484), - [anon_sym_DQUOTE] = ACTIONS(2486), - [aux_sym_match_token1] = ACTIONS(2482), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2482), - [aux_sym_address_family_token1] = ACTIONS(2482), - [aux_sym_batch_mode_token1] = ACTIONS(2482), - [aux_sym_bind_address_token1] = ACTIONS(2482), - [aux_sym_bind_interface_token1] = ACTIONS(2482), - [aux_sym_canonical_domains_token1] = ACTIONS(2482), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2482), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2482), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2482), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2482), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2482), - [aux_sym_certificate_file_token1] = ACTIONS(2482), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2482), - [aux_sym_channel_timeout_token1] = ACTIONS(2482), - [aux_sym_check_host_ip_token1] = ACTIONS(2482), - [aux_sym_ciphers_token1] = ACTIONS(2482), - [aux_sym_cipher_token1] = ACTIONS(2484), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2482), - [aux_sym_compression_token1] = ACTIONS(2482), - [aux_sym_connection_attempts_token1] = ACTIONS(2482), - [aux_sym_connect_timeout_token1] = ACTIONS(2482), - [aux_sym_control_master_token1] = ACTIONS(2482), - [aux_sym_control_path_token1] = ACTIONS(2482), - [aux_sym_control_persist_token1] = ACTIONS(2482), - [aux_sym_dynamic_forward_token1] = ACTIONS(2482), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2482), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2482), - [aux_sym_escape_char_token1] = ACTIONS(2482), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2482), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2482), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2482), - [aux_sym_forward_agent_token1] = ACTIONS(2482), - [aux_sym_forward_x11_token1] = ACTIONS(2484), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2482), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2482), - [aux_sym_gateway_ports_token1] = ACTIONS(2482), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2482), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2482), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2482), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2482), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2482), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2482), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2482), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2482), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2482), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2482), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2482), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2482), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2482), - [aux_sym_host_key_alias_token1] = ACTIONS(2482), - [aux_sym_hostname_token1] = ACTIONS(2482), - [aux_sym_identities_only_token1] = ACTIONS(2482), - [aux_sym_identity_agent_token1] = ACTIONS(2482), - [aux_sym_identity_file_token1] = ACTIONS(2482), - [aux_sym_ignore_unknown_token1] = ACTIONS(2482), - [aux_sym_include_token1] = ACTIONS(2482), - [aux_sym_ip_qos_token1] = ACTIONS(2482), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2482), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2482), - [aux_sym_kex_algorithms_token1] = ACTIONS(2482), - [aux_sym_known_hosts_command_token1] = ACTIONS(2482), - [aux_sym_local_command_token1] = ACTIONS(2482), - [aux_sym_local_forward_token1] = ACTIONS(2482), - [aux_sym_log_level_token1] = ACTIONS(2482), - [aux_sym_log_verbose_token1] = ACTIONS(2482), - [aux_sym_macs_token1] = ACTIONS(2482), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2482), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2482), - [aux_sym_password_authentication_token1] = ACTIONS(2482), - [aux_sym_permit_local_command_token1] = ACTIONS(2482), - [aux_sym_permit_remote_open_token1] = ACTIONS(2482), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2482), - [aux_sym_port_token1] = ACTIONS(2482), - [aux_sym_preferred_authentications_token1] = ACTIONS(2482), - [aux_sym_protocol_token1] = ACTIONS(2482), - [aux_sym_proxy_command_token1] = ACTIONS(2482), - [aux_sym_proxy_jump_token1] = ACTIONS(2482), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2482), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2482), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2482), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2482), - [aux_sym_rekey_limit_token1] = ACTIONS(2482), - [aux_sym_remote_command_token1] = ACTIONS(2482), - [aux_sym_remote_forward_token1] = ACTIONS(2482), - [aux_sym_request_tty_token1] = ACTIONS(2482), - [aux_sym_required_rsa_size_token1] = ACTIONS(2482), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2482), - [aux_sym_security_key_provider_token1] = ACTIONS(2482), - [aux_sym_send_env_token1] = ACTIONS(2482), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2482), - [aux_sym_server_alive_interval_token1] = ACTIONS(2482), - [aux_sym_session_type_token1] = ACTIONS(2482), - [aux_sym_set_env_token1] = ACTIONS(2482), - [aux_sym_stdin_null_token1] = ACTIONS(2482), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2482), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2482), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2482), - [aux_sym_syslog_facility_token1] = ACTIONS(2482), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2482), - [aux_sym_keep_alive_token1] = ACTIONS(2482), - [aux_sym_tag_token1] = ACTIONS(2482), - [aux_sym_tunnel_token1] = ACTIONS(2484), - [aux_sym_tunnel_device_token1] = ACTIONS(2482), - [aux_sym_update_host_keys_token1] = ACTIONS(2482), - [aux_sym_use_keychain_token1] = ACTIONS(2482), - [aux_sym_use_roaming_token1] = ACTIONS(2482), - [aux_sym_user_token1] = ACTIONS(2484), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2482), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2482), - [aux_sym_visual_host_key_token1] = ACTIONS(2482), - [aux_sym_xauth_location_token1] = ACTIONS(2482), + [ts_builtin_sym_end] = ACTIONS(2491), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(2495), + [aux_sym_match_token1] = ACTIONS(2491), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2491), + [aux_sym_address_family_token1] = ACTIONS(2491), + [aux_sym_batch_mode_token1] = ACTIONS(2491), + [aux_sym_bind_address_token1] = ACTIONS(2491), + [aux_sym_bind_interface_token1] = ACTIONS(2491), + [aux_sym_canonical_domains_token1] = ACTIONS(2491), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2491), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2491), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2491), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2491), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2491), + [aux_sym_certificate_file_token1] = ACTIONS(2491), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2491), + [aux_sym_channel_timeout_token1] = ACTIONS(2491), + [aux_sym_check_host_ip_token1] = ACTIONS(2491), + [aux_sym_ciphers_token1] = ACTIONS(2491), + [aux_sym_cipher_token1] = ACTIONS(2493), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2491), + [aux_sym_compression_token1] = ACTIONS(2491), + [aux_sym_connection_attempts_token1] = ACTIONS(2491), + [aux_sym_connect_timeout_token1] = ACTIONS(2491), + [aux_sym_control_master_token1] = ACTIONS(2491), + [aux_sym_control_path_token1] = ACTIONS(2491), + [aux_sym_control_persist_token1] = ACTIONS(2491), + [aux_sym_dynamic_forward_token1] = ACTIONS(2491), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2491), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2491), + [aux_sym_escape_char_token1] = ACTIONS(2491), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2491), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2491), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2491), + [aux_sym_forward_agent_token1] = ACTIONS(2491), + [aux_sym_forward_x11_token1] = ACTIONS(2493), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2491), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2491), + [aux_sym_gateway_ports_token1] = ACTIONS(2491), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2491), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2491), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2491), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2491), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2491), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2491), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2491), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2491), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2491), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2491), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2491), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2491), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2491), + [aux_sym_host_key_alias_token1] = ACTIONS(2491), + [aux_sym_hostname_token1] = ACTIONS(2491), + [aux_sym_identities_only_token1] = ACTIONS(2491), + [aux_sym_identity_agent_token1] = ACTIONS(2491), + [aux_sym_identity_file_token1] = ACTIONS(2491), + [aux_sym_ignore_unknown_token1] = ACTIONS(2491), + [aux_sym_include_token1] = ACTIONS(2491), + [aux_sym_ip_qos_token1] = ACTIONS(2491), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2491), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2491), + [aux_sym_kex_algorithms_token1] = ACTIONS(2491), + [aux_sym_known_hosts_command_token1] = ACTIONS(2491), + [aux_sym_local_command_token1] = ACTIONS(2491), + [aux_sym_local_forward_token1] = ACTIONS(2491), + [aux_sym_log_level_token1] = ACTIONS(2491), + [aux_sym_log_verbose_token1] = ACTIONS(2491), + [aux_sym_macs_token1] = ACTIONS(2491), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2491), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2491), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2491), + [aux_sym_password_authentication_token1] = ACTIONS(2491), + [aux_sym_permit_local_command_token1] = ACTIONS(2491), + [aux_sym_permit_remote_open_token1] = ACTIONS(2491), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2491), + [aux_sym_port_token1] = ACTIONS(2491), + [aux_sym_preferred_authentications_token1] = ACTIONS(2491), + [aux_sym_protocol_token1] = ACTIONS(2491), + [aux_sym_proxy_command_token1] = ACTIONS(2491), + [aux_sym_proxy_jump_token1] = ACTIONS(2491), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2491), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2491), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2491), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2491), + [aux_sym_rekey_limit_token1] = ACTIONS(2491), + [aux_sym_remote_command_token1] = ACTIONS(2491), + [aux_sym_remote_forward_token1] = ACTIONS(2491), + [aux_sym_request_tty_token1] = ACTIONS(2491), + [aux_sym_required_rsa_size_token1] = ACTIONS(2491), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2491), + [aux_sym_security_key_provider_token1] = ACTIONS(2491), + [aux_sym_send_env_token1] = ACTIONS(2491), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2491), + [aux_sym_server_alive_interval_token1] = ACTIONS(2491), + [aux_sym_session_type_token1] = ACTIONS(2491), + [aux_sym_set_env_token1] = ACTIONS(2491), + [aux_sym_stdin_null_token1] = ACTIONS(2491), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2491), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2491), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2491), + [aux_sym_syslog_facility_token1] = ACTIONS(2491), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2491), + [aux_sym_keep_alive_token1] = ACTIONS(2491), + [aux_sym_tag_token1] = ACTIONS(2491), + [aux_sym_tunnel_token1] = ACTIONS(2493), + [aux_sym_tunnel_device_token1] = ACTIONS(2491), + [aux_sym_update_host_keys_token1] = ACTIONS(2491), + [aux_sym_use_keychain_token1] = ACTIONS(2491), + [aux_sym_use_roaming_token1] = ACTIONS(2491), + [aux_sym_user_token1] = ACTIONS(2493), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2491), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2491), + [aux_sym_visual_host_key_token1] = ACTIONS(2491), + [aux_sym_xauth_location_token1] = ACTIONS(2491), }, [340] = { - [ts_builtin_sym_end] = ACTIONS(2488), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2488), - [aux_sym_match_token1] = ACTIONS(2488), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2488), - [aux_sym_address_family_token1] = ACTIONS(2488), - [aux_sym_batch_mode_token1] = ACTIONS(2488), - [aux_sym_bind_address_token1] = ACTIONS(2488), - [aux_sym_bind_interface_token1] = ACTIONS(2488), - [aux_sym_canonical_domains_token1] = ACTIONS(2488), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2488), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2488), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2488), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2488), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2488), - [aux_sym_certificate_file_token1] = ACTIONS(2488), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2488), - [aux_sym_channel_timeout_token1] = ACTIONS(2488), - [aux_sym_check_host_ip_token1] = ACTIONS(2488), - [aux_sym_ciphers_token1] = ACTIONS(2488), - [aux_sym_cipher_token1] = ACTIONS(2490), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2488), - [aux_sym_compression_token1] = ACTIONS(2488), - [aux_sym_connection_attempts_token1] = ACTIONS(2488), - [aux_sym_connect_timeout_token1] = ACTIONS(2488), - [aux_sym_control_master_token1] = ACTIONS(2488), - [aux_sym_control_path_token1] = ACTIONS(2488), - [aux_sym_control_persist_token1] = ACTIONS(2488), - [aux_sym_dynamic_forward_token1] = ACTIONS(2488), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2488), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2488), - [aux_sym_escape_char_token1] = ACTIONS(2488), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2488), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2488), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2488), - [aux_sym_forward_agent_token1] = ACTIONS(2488), - [aux_sym_forward_x11_token1] = ACTIONS(2490), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2488), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2488), - [aux_sym_gateway_ports_token1] = ACTIONS(2488), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2488), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2488), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2488), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2488), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2488), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2488), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2488), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2488), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2488), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2488), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2488), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2488), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2488), - [aux_sym_host_key_alias_token1] = ACTIONS(2488), - [aux_sym_hostname_token1] = ACTIONS(2488), - [aux_sym_identities_only_token1] = ACTIONS(2488), - [aux_sym_identity_agent_token1] = ACTIONS(2488), - [aux_sym_identity_file_token1] = ACTIONS(2488), - [aux_sym_ignore_unknown_token1] = ACTIONS(2488), - [aux_sym_include_token1] = ACTIONS(2488), - [aux_sym_ip_qos_token1] = ACTIONS(2488), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2488), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2488), - [aux_sym_kex_algorithms_token1] = ACTIONS(2488), - [aux_sym_known_hosts_command_token1] = ACTIONS(2488), - [aux_sym_local_command_token1] = ACTIONS(2488), - [aux_sym_local_forward_token1] = ACTIONS(2488), - [aux_sym_log_level_token1] = ACTIONS(2488), - [aux_sym_log_verbose_token1] = ACTIONS(2488), - [aux_sym_macs_token1] = ACTIONS(2488), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2488), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2488), - [aux_sym_password_authentication_token1] = ACTIONS(2488), - [aux_sym_permit_local_command_token1] = ACTIONS(2488), - [aux_sym_permit_remote_open_token1] = ACTIONS(2488), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2488), - [aux_sym_port_token1] = ACTIONS(2488), - [aux_sym_preferred_authentications_token1] = ACTIONS(2488), - [aux_sym_protocol_token1] = ACTIONS(2488), - [aux_sym_proxy_command_token1] = ACTIONS(2488), - [aux_sym_proxy_jump_token1] = ACTIONS(2488), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2488), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2488), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2488), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2488), - [aux_sym_rekey_limit_token1] = ACTIONS(2488), - [aux_sym_remote_command_token1] = ACTIONS(2488), - [aux_sym_remote_forward_token1] = ACTIONS(2488), - [aux_sym_request_tty_token1] = ACTIONS(2488), - [aux_sym_required_rsa_size_token1] = ACTIONS(2488), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2488), - [aux_sym_security_key_provider_token1] = ACTIONS(2488), - [aux_sym_send_env_token1] = ACTIONS(2488), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2488), - [aux_sym_server_alive_interval_token1] = ACTIONS(2488), - [aux_sym_session_type_token1] = ACTIONS(2488), - [aux_sym_set_env_token1] = ACTIONS(2488), - [aux_sym_stdin_null_token1] = ACTIONS(2488), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2488), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2488), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2488), - [aux_sym_syslog_facility_token1] = ACTIONS(2488), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2488), - [aux_sym_keep_alive_token1] = ACTIONS(2488), - [aux_sym_tag_token1] = ACTIONS(2488), - [aux_sym_tunnel_token1] = ACTIONS(2490), - [aux_sym_tunnel_device_token1] = ACTIONS(2488), - [aux_sym_update_host_keys_token1] = ACTIONS(2488), - [aux_sym_use_keychain_token1] = ACTIONS(2488), - [aux_sym_use_roaming_token1] = ACTIONS(2488), - [aux_sym_user_token1] = ACTIONS(2490), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2488), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2488), - [aux_sym_visual_host_key_token1] = ACTIONS(2488), - [aux_sym_xauth_location_token1] = ACTIONS(2488), + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(2497), + [aux_sym_match_token1] = ACTIONS(2497), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2497), + [aux_sym_address_family_token1] = ACTIONS(2497), + [aux_sym_batch_mode_token1] = ACTIONS(2497), + [aux_sym_bind_address_token1] = ACTIONS(2497), + [aux_sym_bind_interface_token1] = ACTIONS(2497), + [aux_sym_canonical_domains_token1] = ACTIONS(2497), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2497), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2497), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2497), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2497), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2497), + [aux_sym_certificate_file_token1] = ACTIONS(2497), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2497), + [aux_sym_channel_timeout_token1] = ACTIONS(2497), + [aux_sym_check_host_ip_token1] = ACTIONS(2497), + [aux_sym_ciphers_token1] = ACTIONS(2497), + [aux_sym_cipher_token1] = ACTIONS(2499), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2497), + [aux_sym_compression_token1] = ACTIONS(2497), + [aux_sym_connection_attempts_token1] = ACTIONS(2497), + [aux_sym_connect_timeout_token1] = ACTIONS(2497), + [aux_sym_control_master_token1] = ACTIONS(2497), + [aux_sym_control_path_token1] = ACTIONS(2497), + [aux_sym_control_persist_token1] = ACTIONS(2497), + [aux_sym_dynamic_forward_token1] = ACTIONS(2497), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2497), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2497), + [aux_sym_escape_char_token1] = ACTIONS(2497), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2497), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2497), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2497), + [aux_sym_forward_agent_token1] = ACTIONS(2497), + [aux_sym_forward_x11_token1] = ACTIONS(2499), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2497), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2497), + [aux_sym_gateway_ports_token1] = ACTIONS(2497), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2497), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2497), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2497), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2497), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2497), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2497), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2497), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2497), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2497), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2497), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2497), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2497), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2497), + [aux_sym_host_key_alias_token1] = ACTIONS(2497), + [aux_sym_hostname_token1] = ACTIONS(2497), + [aux_sym_identities_only_token1] = ACTIONS(2497), + [aux_sym_identity_agent_token1] = ACTIONS(2497), + [aux_sym_identity_file_token1] = ACTIONS(2497), + [aux_sym_ignore_unknown_token1] = ACTIONS(2497), + [aux_sym_include_token1] = ACTIONS(2497), + [aux_sym_ip_qos_token1] = ACTIONS(2497), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2497), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2497), + [aux_sym_kex_algorithms_token1] = ACTIONS(2497), + [aux_sym_known_hosts_command_token1] = ACTIONS(2497), + [aux_sym_local_command_token1] = ACTIONS(2497), + [aux_sym_local_forward_token1] = ACTIONS(2497), + [aux_sym_log_level_token1] = ACTIONS(2497), + [aux_sym_log_verbose_token1] = ACTIONS(2497), + [aux_sym_macs_token1] = ACTIONS(2497), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2497), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2497), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2497), + [aux_sym_password_authentication_token1] = ACTIONS(2497), + [aux_sym_permit_local_command_token1] = ACTIONS(2497), + [aux_sym_permit_remote_open_token1] = ACTIONS(2497), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2497), + [aux_sym_port_token1] = ACTIONS(2497), + [aux_sym_preferred_authentications_token1] = ACTIONS(2497), + [aux_sym_protocol_token1] = ACTIONS(2497), + [aux_sym_proxy_command_token1] = ACTIONS(2497), + [aux_sym_proxy_jump_token1] = ACTIONS(2497), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2497), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2497), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2497), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2497), + [aux_sym_rekey_limit_token1] = ACTIONS(2497), + [aux_sym_remote_command_token1] = ACTIONS(2497), + [aux_sym_remote_forward_token1] = ACTIONS(2497), + [aux_sym_request_tty_token1] = ACTIONS(2497), + [aux_sym_required_rsa_size_token1] = ACTIONS(2497), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2497), + [aux_sym_security_key_provider_token1] = ACTIONS(2497), + [aux_sym_send_env_token1] = ACTIONS(2497), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2497), + [aux_sym_server_alive_interval_token1] = ACTIONS(2497), + [aux_sym_session_type_token1] = ACTIONS(2497), + [aux_sym_set_env_token1] = ACTIONS(2497), + [aux_sym_stdin_null_token1] = ACTIONS(2497), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2497), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2497), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2497), + [aux_sym_syslog_facility_token1] = ACTIONS(2497), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2497), + [aux_sym_keep_alive_token1] = ACTIONS(2497), + [aux_sym_tag_token1] = ACTIONS(2497), + [aux_sym_tunnel_token1] = ACTIONS(2499), + [aux_sym_tunnel_device_token1] = ACTIONS(2497), + [aux_sym_update_host_keys_token1] = ACTIONS(2497), + [aux_sym_use_keychain_token1] = ACTIONS(2497), + [aux_sym_use_roaming_token1] = ACTIONS(2497), + [aux_sym_user_token1] = ACTIONS(2499), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2497), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2497), + [aux_sym_visual_host_key_token1] = ACTIONS(2497), + [aux_sym_xauth_location_token1] = ACTIONS(2497), }, [341] = { - [ts_builtin_sym_end] = ACTIONS(2492), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2494), - [anon_sym_DQUOTE] = ACTIONS(2496), - [aux_sym_match_token1] = ACTIONS(2492), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2492), - [aux_sym_address_family_token1] = ACTIONS(2492), - [aux_sym_batch_mode_token1] = ACTIONS(2492), - [aux_sym_bind_address_token1] = ACTIONS(2492), - [aux_sym_bind_interface_token1] = ACTIONS(2492), - [aux_sym_canonical_domains_token1] = ACTIONS(2492), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2492), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2492), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2492), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2492), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2492), - [aux_sym_certificate_file_token1] = ACTIONS(2492), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2492), - [aux_sym_channel_timeout_token1] = ACTIONS(2492), - [aux_sym_check_host_ip_token1] = ACTIONS(2492), - [aux_sym_ciphers_token1] = ACTIONS(2492), - [aux_sym_cipher_token1] = ACTIONS(2494), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2492), - [aux_sym_compression_token1] = ACTIONS(2492), - [aux_sym_connection_attempts_token1] = ACTIONS(2492), - [aux_sym_connect_timeout_token1] = ACTIONS(2492), - [aux_sym_control_master_token1] = ACTIONS(2492), - [aux_sym_control_path_token1] = ACTIONS(2492), - [aux_sym_control_persist_token1] = ACTIONS(2492), - [aux_sym_dynamic_forward_token1] = ACTIONS(2492), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2492), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2492), - [aux_sym_escape_char_token1] = ACTIONS(2492), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2492), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2492), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2492), - [aux_sym_forward_agent_token1] = ACTIONS(2492), - [aux_sym_forward_x11_token1] = ACTIONS(2494), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2492), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2492), - [aux_sym_gateway_ports_token1] = ACTIONS(2492), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2492), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2492), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2492), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2492), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2492), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2492), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2492), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2492), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2492), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2492), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2492), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2492), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2492), - [aux_sym_host_key_alias_token1] = ACTIONS(2492), - [aux_sym_hostname_token1] = ACTIONS(2492), - [aux_sym_identities_only_token1] = ACTIONS(2492), - [aux_sym_identity_agent_token1] = ACTIONS(2492), - [aux_sym_identity_file_token1] = ACTIONS(2492), - [aux_sym_ignore_unknown_token1] = ACTIONS(2492), - [aux_sym_include_token1] = ACTIONS(2492), - [aux_sym_ip_qos_token1] = ACTIONS(2492), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2492), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2492), - [aux_sym_kex_algorithms_token1] = ACTIONS(2492), - [aux_sym_known_hosts_command_token1] = ACTIONS(2492), - [aux_sym_local_command_token1] = ACTIONS(2492), - [aux_sym_local_forward_token1] = ACTIONS(2492), - [aux_sym_log_level_token1] = ACTIONS(2492), - [aux_sym_log_verbose_token1] = ACTIONS(2492), - [aux_sym_macs_token1] = ACTIONS(2492), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2492), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2492), - [aux_sym_password_authentication_token1] = ACTIONS(2492), - [aux_sym_permit_local_command_token1] = ACTIONS(2492), - [aux_sym_permit_remote_open_token1] = ACTIONS(2492), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2492), - [aux_sym_port_token1] = ACTIONS(2492), - [aux_sym_preferred_authentications_token1] = ACTIONS(2492), - [aux_sym_protocol_token1] = ACTIONS(2492), - [aux_sym_proxy_command_token1] = ACTIONS(2492), - [aux_sym_proxy_jump_token1] = ACTIONS(2492), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2492), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2492), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2492), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2492), - [aux_sym_rekey_limit_token1] = ACTIONS(2492), - [aux_sym_remote_command_token1] = ACTIONS(2492), - [aux_sym_remote_forward_token1] = ACTIONS(2492), - [aux_sym_request_tty_token1] = ACTIONS(2492), - [aux_sym_required_rsa_size_token1] = ACTIONS(2492), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2492), - [aux_sym_security_key_provider_token1] = ACTIONS(2492), - [aux_sym_send_env_token1] = ACTIONS(2492), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2492), - [aux_sym_server_alive_interval_token1] = ACTIONS(2492), - [aux_sym_session_type_token1] = ACTIONS(2492), - [aux_sym_set_env_token1] = ACTIONS(2492), - [aux_sym_stdin_null_token1] = ACTIONS(2492), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2492), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2492), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2492), - [aux_sym_syslog_facility_token1] = ACTIONS(2492), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2492), - [aux_sym_keep_alive_token1] = ACTIONS(2492), - [aux_sym_tag_token1] = ACTIONS(2492), - [aux_sym_tunnel_token1] = ACTIONS(2494), - [aux_sym_tunnel_device_token1] = ACTIONS(2492), - [aux_sym_update_host_keys_token1] = ACTIONS(2492), - [aux_sym_use_keychain_token1] = ACTIONS(2492), - [aux_sym_use_roaming_token1] = ACTIONS(2492), - [aux_sym_user_token1] = ACTIONS(2494), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2492), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2492), - [aux_sym_visual_host_key_token1] = ACTIONS(2492), - [aux_sym_xauth_location_token1] = ACTIONS(2492), + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2503), + [anon_sym_DQUOTE] = ACTIONS(2505), + [aux_sym_match_token1] = ACTIONS(2501), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2501), + [aux_sym_address_family_token1] = ACTIONS(2501), + [aux_sym_batch_mode_token1] = ACTIONS(2501), + [aux_sym_bind_address_token1] = ACTIONS(2501), + [aux_sym_bind_interface_token1] = ACTIONS(2501), + [aux_sym_canonical_domains_token1] = ACTIONS(2501), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2501), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2501), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2501), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2501), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2501), + [aux_sym_certificate_file_token1] = ACTIONS(2501), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2501), + [aux_sym_channel_timeout_token1] = ACTIONS(2501), + [aux_sym_check_host_ip_token1] = ACTIONS(2501), + [aux_sym_ciphers_token1] = ACTIONS(2501), + [aux_sym_cipher_token1] = ACTIONS(2503), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2501), + [aux_sym_compression_token1] = ACTIONS(2501), + [aux_sym_connection_attempts_token1] = ACTIONS(2501), + [aux_sym_connect_timeout_token1] = ACTIONS(2501), + [aux_sym_control_master_token1] = ACTIONS(2501), + [aux_sym_control_path_token1] = ACTIONS(2501), + [aux_sym_control_persist_token1] = ACTIONS(2501), + [aux_sym_dynamic_forward_token1] = ACTIONS(2501), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2501), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2501), + [aux_sym_escape_char_token1] = ACTIONS(2501), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2501), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2501), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2501), + [aux_sym_forward_agent_token1] = ACTIONS(2501), + [aux_sym_forward_x11_token1] = ACTIONS(2503), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2501), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2501), + [aux_sym_gateway_ports_token1] = ACTIONS(2501), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2501), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2501), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2501), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2501), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2501), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2501), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2501), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2501), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2501), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2501), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2501), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2501), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2501), + [aux_sym_host_key_alias_token1] = ACTIONS(2501), + [aux_sym_hostname_token1] = ACTIONS(2501), + [aux_sym_identities_only_token1] = ACTIONS(2501), + [aux_sym_identity_agent_token1] = ACTIONS(2501), + [aux_sym_identity_file_token1] = ACTIONS(2501), + [aux_sym_ignore_unknown_token1] = ACTIONS(2501), + [aux_sym_include_token1] = ACTIONS(2501), + [aux_sym_ip_qos_token1] = ACTIONS(2501), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2501), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2501), + [aux_sym_kex_algorithms_token1] = ACTIONS(2501), + [aux_sym_known_hosts_command_token1] = ACTIONS(2501), + [aux_sym_local_command_token1] = ACTIONS(2501), + [aux_sym_local_forward_token1] = ACTIONS(2501), + [aux_sym_log_level_token1] = ACTIONS(2501), + [aux_sym_log_verbose_token1] = ACTIONS(2501), + [aux_sym_macs_token1] = ACTIONS(2501), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2501), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2501), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2501), + [aux_sym_password_authentication_token1] = ACTIONS(2501), + [aux_sym_permit_local_command_token1] = ACTIONS(2501), + [aux_sym_permit_remote_open_token1] = ACTIONS(2501), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2501), + [aux_sym_port_token1] = ACTIONS(2501), + [aux_sym_preferred_authentications_token1] = ACTIONS(2501), + [aux_sym_protocol_token1] = ACTIONS(2501), + [aux_sym_proxy_command_token1] = ACTIONS(2501), + [aux_sym_proxy_jump_token1] = ACTIONS(2501), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2501), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2501), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2501), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2501), + [aux_sym_rekey_limit_token1] = ACTIONS(2501), + [aux_sym_remote_command_token1] = ACTIONS(2501), + [aux_sym_remote_forward_token1] = ACTIONS(2501), + [aux_sym_request_tty_token1] = ACTIONS(2501), + [aux_sym_required_rsa_size_token1] = ACTIONS(2501), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2501), + [aux_sym_security_key_provider_token1] = ACTIONS(2501), + [aux_sym_send_env_token1] = ACTIONS(2501), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2501), + [aux_sym_server_alive_interval_token1] = ACTIONS(2501), + [aux_sym_session_type_token1] = ACTIONS(2501), + [aux_sym_set_env_token1] = ACTIONS(2501), + [aux_sym_stdin_null_token1] = ACTIONS(2501), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2501), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2501), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2501), + [aux_sym_syslog_facility_token1] = ACTIONS(2501), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2501), + [aux_sym_keep_alive_token1] = ACTIONS(2501), + [aux_sym_tag_token1] = ACTIONS(2501), + [aux_sym_tunnel_token1] = ACTIONS(2503), + [aux_sym_tunnel_device_token1] = ACTIONS(2501), + [aux_sym_update_host_keys_token1] = ACTIONS(2501), + [aux_sym_use_keychain_token1] = ACTIONS(2501), + [aux_sym_use_roaming_token1] = ACTIONS(2501), + [aux_sym_user_token1] = ACTIONS(2503), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2501), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2501), + [aux_sym_visual_host_key_token1] = ACTIONS(2501), + [aux_sym_xauth_location_token1] = ACTIONS(2501), }, [342] = { - [ts_builtin_sym_end] = ACTIONS(2498), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2500), - [anon_sym_DQUOTE] = ACTIONS(2502), - [aux_sym_match_token1] = ACTIONS(2498), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2498), - [aux_sym_address_family_token1] = ACTIONS(2498), - [aux_sym_batch_mode_token1] = ACTIONS(2498), - [aux_sym_bind_address_token1] = ACTIONS(2498), - [aux_sym_bind_interface_token1] = ACTIONS(2498), - [aux_sym_canonical_domains_token1] = ACTIONS(2498), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2498), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2498), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2498), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2498), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2498), - [aux_sym_certificate_file_token1] = ACTIONS(2498), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2498), - [aux_sym_channel_timeout_token1] = ACTIONS(2498), - [aux_sym_check_host_ip_token1] = ACTIONS(2498), - [aux_sym_ciphers_token1] = ACTIONS(2498), - [aux_sym_cipher_token1] = ACTIONS(2500), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2498), - [aux_sym_compression_token1] = ACTIONS(2498), - [aux_sym_connection_attempts_token1] = ACTIONS(2498), - [aux_sym_connect_timeout_token1] = ACTIONS(2498), - [aux_sym_control_master_token1] = ACTIONS(2498), - [aux_sym_control_path_token1] = ACTIONS(2498), - [aux_sym_control_persist_token1] = ACTIONS(2498), - [aux_sym_dynamic_forward_token1] = ACTIONS(2498), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2498), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2498), - [aux_sym_escape_char_token1] = ACTIONS(2498), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2498), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2498), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2498), - [aux_sym_forward_agent_token1] = ACTIONS(2498), - [aux_sym_forward_x11_token1] = ACTIONS(2500), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2498), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2498), - [aux_sym_gateway_ports_token1] = ACTIONS(2498), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2498), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2498), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2498), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2498), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2498), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2498), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2498), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2498), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2498), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2498), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2498), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2498), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2498), - [aux_sym_host_key_alias_token1] = ACTIONS(2498), - [aux_sym_hostname_token1] = ACTIONS(2498), - [aux_sym_identities_only_token1] = ACTIONS(2498), - [aux_sym_identity_agent_token1] = ACTIONS(2498), - [aux_sym_identity_file_token1] = ACTIONS(2498), - [aux_sym_ignore_unknown_token1] = ACTIONS(2498), - [aux_sym_include_token1] = ACTIONS(2498), - [aux_sym_ip_qos_token1] = ACTIONS(2498), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2498), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2498), - [aux_sym_kex_algorithms_token1] = ACTIONS(2498), - [aux_sym_known_hosts_command_token1] = ACTIONS(2498), - [aux_sym_local_command_token1] = ACTIONS(2498), - [aux_sym_local_forward_token1] = ACTIONS(2498), - [aux_sym_log_level_token1] = ACTIONS(2498), - [aux_sym_log_verbose_token1] = ACTIONS(2498), - [aux_sym_macs_token1] = ACTIONS(2498), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2498), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2498), - [aux_sym_password_authentication_token1] = ACTIONS(2498), - [aux_sym_permit_local_command_token1] = ACTIONS(2498), - [aux_sym_permit_remote_open_token1] = ACTIONS(2498), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2498), - [aux_sym_port_token1] = ACTIONS(2498), - [aux_sym_preferred_authentications_token1] = ACTIONS(2498), - [aux_sym_protocol_token1] = ACTIONS(2498), - [aux_sym_proxy_command_token1] = ACTIONS(2498), - [aux_sym_proxy_jump_token1] = ACTIONS(2498), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2498), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2498), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2498), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2498), - [aux_sym_rekey_limit_token1] = ACTIONS(2498), - [aux_sym_remote_command_token1] = ACTIONS(2498), - [aux_sym_remote_forward_token1] = ACTIONS(2498), - [aux_sym_request_tty_token1] = ACTIONS(2498), - [aux_sym_required_rsa_size_token1] = ACTIONS(2498), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2498), - [aux_sym_security_key_provider_token1] = ACTIONS(2498), - [aux_sym_send_env_token1] = ACTIONS(2498), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2498), - [aux_sym_server_alive_interval_token1] = ACTIONS(2498), - [aux_sym_session_type_token1] = ACTIONS(2498), - [aux_sym_set_env_token1] = ACTIONS(2498), - [aux_sym_stdin_null_token1] = ACTIONS(2498), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2498), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2498), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2498), - [aux_sym_syslog_facility_token1] = ACTIONS(2498), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2498), - [aux_sym_keep_alive_token1] = ACTIONS(2498), - [aux_sym_tag_token1] = ACTIONS(2498), - [aux_sym_tunnel_token1] = ACTIONS(2500), - [aux_sym_tunnel_device_token1] = ACTIONS(2498), - [aux_sym_update_host_keys_token1] = ACTIONS(2498), - [aux_sym_use_keychain_token1] = ACTIONS(2498), - [aux_sym_use_roaming_token1] = ACTIONS(2498), - [aux_sym_user_token1] = ACTIONS(2500), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2498), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2498), - [aux_sym_visual_host_key_token1] = ACTIONS(2498), - [aux_sym_xauth_location_token1] = ACTIONS(2498), + [ts_builtin_sym_end] = ACTIONS(2507), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(2507), + [aux_sym_match_token1] = ACTIONS(2507), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2507), + [aux_sym_address_family_token1] = ACTIONS(2507), + [aux_sym_batch_mode_token1] = ACTIONS(2507), + [aux_sym_bind_address_token1] = ACTIONS(2507), + [aux_sym_bind_interface_token1] = ACTIONS(2507), + [aux_sym_canonical_domains_token1] = ACTIONS(2507), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2507), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2507), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2507), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2507), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2507), + [aux_sym_certificate_file_token1] = ACTIONS(2507), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2507), + [aux_sym_channel_timeout_token1] = ACTIONS(2507), + [aux_sym_check_host_ip_token1] = ACTIONS(2507), + [aux_sym_ciphers_token1] = ACTIONS(2507), + [aux_sym_cipher_token1] = ACTIONS(2509), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2507), + [aux_sym_compression_token1] = ACTIONS(2507), + [aux_sym_connection_attempts_token1] = ACTIONS(2507), + [aux_sym_connect_timeout_token1] = ACTIONS(2507), + [aux_sym_control_master_token1] = ACTIONS(2507), + [aux_sym_control_path_token1] = ACTIONS(2507), + [aux_sym_control_persist_token1] = ACTIONS(2507), + [aux_sym_dynamic_forward_token1] = ACTIONS(2507), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2507), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2507), + [aux_sym_escape_char_token1] = ACTIONS(2507), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2507), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2507), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2507), + [aux_sym_forward_agent_token1] = ACTIONS(2507), + [aux_sym_forward_x11_token1] = ACTIONS(2509), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2507), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2507), + [aux_sym_gateway_ports_token1] = ACTIONS(2507), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2507), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2507), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2507), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2507), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2507), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2507), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2507), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2507), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2507), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2507), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2507), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2507), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2507), + [aux_sym_host_key_alias_token1] = ACTIONS(2507), + [aux_sym_hostname_token1] = ACTIONS(2507), + [aux_sym_identities_only_token1] = ACTIONS(2507), + [aux_sym_identity_agent_token1] = ACTIONS(2507), + [aux_sym_identity_file_token1] = ACTIONS(2507), + [aux_sym_ignore_unknown_token1] = ACTIONS(2507), + [aux_sym_include_token1] = ACTIONS(2507), + [aux_sym_ip_qos_token1] = ACTIONS(2507), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2507), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2507), + [aux_sym_kex_algorithms_token1] = ACTIONS(2507), + [aux_sym_known_hosts_command_token1] = ACTIONS(2507), + [aux_sym_local_command_token1] = ACTIONS(2507), + [aux_sym_local_forward_token1] = ACTIONS(2507), + [aux_sym_log_level_token1] = ACTIONS(2507), + [aux_sym_log_verbose_token1] = ACTIONS(2507), + [aux_sym_macs_token1] = ACTIONS(2507), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2507), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2507), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2507), + [aux_sym_password_authentication_token1] = ACTIONS(2507), + [aux_sym_permit_local_command_token1] = ACTIONS(2507), + [aux_sym_permit_remote_open_token1] = ACTIONS(2507), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2507), + [aux_sym_port_token1] = ACTIONS(2507), + [aux_sym_preferred_authentications_token1] = ACTIONS(2507), + [aux_sym_protocol_token1] = ACTIONS(2507), + [aux_sym_proxy_command_token1] = ACTIONS(2507), + [aux_sym_proxy_jump_token1] = ACTIONS(2507), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2507), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2507), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2507), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2507), + [aux_sym_rekey_limit_token1] = ACTIONS(2507), + [aux_sym_remote_command_token1] = ACTIONS(2507), + [aux_sym_remote_forward_token1] = ACTIONS(2507), + [aux_sym_request_tty_token1] = ACTIONS(2507), + [aux_sym_required_rsa_size_token1] = ACTIONS(2507), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2507), + [aux_sym_security_key_provider_token1] = ACTIONS(2507), + [aux_sym_send_env_token1] = ACTIONS(2507), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2507), + [aux_sym_server_alive_interval_token1] = ACTIONS(2507), + [aux_sym_session_type_token1] = ACTIONS(2507), + [aux_sym_set_env_token1] = ACTIONS(2507), + [aux_sym_stdin_null_token1] = ACTIONS(2507), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2507), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2507), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2507), + [aux_sym_syslog_facility_token1] = ACTIONS(2507), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2507), + [aux_sym_keep_alive_token1] = ACTIONS(2507), + [aux_sym_tag_token1] = ACTIONS(2507), + [aux_sym_tunnel_token1] = ACTIONS(2509), + [aux_sym_tunnel_device_token1] = ACTIONS(2507), + [aux_sym_update_host_keys_token1] = ACTIONS(2507), + [aux_sym_use_keychain_token1] = ACTIONS(2507), + [aux_sym_use_roaming_token1] = ACTIONS(2507), + [aux_sym_user_token1] = ACTIONS(2509), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2507), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2507), + [aux_sym_visual_host_key_token1] = ACTIONS(2507), + [aux_sym_xauth_location_token1] = ACTIONS(2507), }, [343] = { - [ts_builtin_sym_end] = ACTIONS(2504), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2506), - [anon_sym_DQUOTE] = ACTIONS(2504), - [aux_sym_match_token1] = ACTIONS(2504), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2504), - [aux_sym_address_family_token1] = ACTIONS(2504), - [aux_sym_batch_mode_token1] = ACTIONS(2504), - [aux_sym_bind_address_token1] = ACTIONS(2504), - [aux_sym_bind_interface_token1] = ACTIONS(2504), - [aux_sym_canonical_domains_token1] = ACTIONS(2504), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2504), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2504), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2504), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2504), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2504), - [aux_sym_certificate_file_token1] = ACTIONS(2504), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2504), - [aux_sym_channel_timeout_token1] = ACTIONS(2504), - [aux_sym_check_host_ip_token1] = ACTIONS(2504), - [aux_sym_ciphers_token1] = ACTIONS(2504), - [aux_sym_cipher_token1] = ACTIONS(2506), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2504), - [aux_sym_compression_token1] = ACTIONS(2504), - [aux_sym_connection_attempts_token1] = ACTIONS(2504), - [aux_sym_connect_timeout_token1] = ACTIONS(2504), - [aux_sym_control_master_token1] = ACTIONS(2504), - [aux_sym_control_path_token1] = ACTIONS(2504), - [aux_sym_control_persist_token1] = ACTIONS(2504), - [aux_sym_dynamic_forward_token1] = ACTIONS(2504), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2504), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2504), - [aux_sym_escape_char_token1] = ACTIONS(2504), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2504), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2504), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2504), - [aux_sym_forward_agent_token1] = ACTIONS(2504), - [aux_sym_forward_x11_token1] = ACTIONS(2506), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2504), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2504), - [aux_sym_gateway_ports_token1] = ACTIONS(2504), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2504), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2504), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2504), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2504), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2504), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2504), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2504), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2504), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2504), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2504), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2504), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2504), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2504), - [aux_sym_host_key_alias_token1] = ACTIONS(2504), - [aux_sym_hostname_token1] = ACTIONS(2504), - [aux_sym_identities_only_token1] = ACTIONS(2504), - [aux_sym_identity_agent_token1] = ACTIONS(2504), - [aux_sym_identity_file_token1] = ACTIONS(2504), - [aux_sym_ignore_unknown_token1] = ACTIONS(2504), - [aux_sym_include_token1] = ACTIONS(2504), - [aux_sym_ip_qos_token1] = ACTIONS(2504), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2504), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2504), - [aux_sym_kex_algorithms_token1] = ACTIONS(2504), - [aux_sym_known_hosts_command_token1] = ACTIONS(2504), - [aux_sym_local_command_token1] = ACTIONS(2504), - [aux_sym_local_forward_token1] = ACTIONS(2504), - [aux_sym_log_level_token1] = ACTIONS(2504), - [aux_sym_log_verbose_token1] = ACTIONS(2504), - [aux_sym_macs_token1] = ACTIONS(2504), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2504), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2504), - [aux_sym_password_authentication_token1] = ACTIONS(2504), - [aux_sym_permit_local_command_token1] = ACTIONS(2504), - [aux_sym_permit_remote_open_token1] = ACTIONS(2504), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2504), - [aux_sym_port_token1] = ACTIONS(2504), - [aux_sym_preferred_authentications_token1] = ACTIONS(2504), - [aux_sym_protocol_token1] = ACTIONS(2504), - [aux_sym_proxy_command_token1] = ACTIONS(2504), - [aux_sym_proxy_jump_token1] = ACTIONS(2504), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2504), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2504), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2504), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2504), - [aux_sym_rekey_limit_token1] = ACTIONS(2504), - [aux_sym_remote_command_token1] = ACTIONS(2504), - [aux_sym_remote_forward_token1] = ACTIONS(2504), - [aux_sym_request_tty_token1] = ACTIONS(2504), - [aux_sym_required_rsa_size_token1] = ACTIONS(2504), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2504), - [aux_sym_security_key_provider_token1] = ACTIONS(2504), - [aux_sym_send_env_token1] = ACTIONS(2504), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2504), - [aux_sym_server_alive_interval_token1] = ACTIONS(2504), - [aux_sym_session_type_token1] = ACTIONS(2504), - [aux_sym_set_env_token1] = ACTIONS(2504), - [aux_sym_stdin_null_token1] = ACTIONS(2504), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2504), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2504), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2504), - [aux_sym_syslog_facility_token1] = ACTIONS(2504), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2504), - [aux_sym_keep_alive_token1] = ACTIONS(2504), - [aux_sym_tag_token1] = ACTIONS(2504), - [aux_sym_tunnel_token1] = ACTIONS(2506), - [aux_sym_tunnel_device_token1] = ACTIONS(2504), - [aux_sym_update_host_keys_token1] = ACTIONS(2504), - [aux_sym_use_keychain_token1] = ACTIONS(2504), - [aux_sym_use_roaming_token1] = ACTIONS(2504), - [aux_sym_user_token1] = ACTIONS(2506), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2504), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2504), - [aux_sym_visual_host_key_token1] = ACTIONS(2504), - [aux_sym_xauth_location_token1] = ACTIONS(2504), + [ts_builtin_sym_end] = ACTIONS(2511), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(2515), + [aux_sym_match_token1] = ACTIONS(2511), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2511), + [aux_sym_address_family_token1] = ACTIONS(2511), + [aux_sym_batch_mode_token1] = ACTIONS(2511), + [aux_sym_bind_address_token1] = ACTIONS(2511), + [aux_sym_bind_interface_token1] = ACTIONS(2511), + [aux_sym_canonical_domains_token1] = ACTIONS(2511), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2511), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2511), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2511), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2511), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2511), + [aux_sym_certificate_file_token1] = ACTIONS(2511), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2511), + [aux_sym_channel_timeout_token1] = ACTIONS(2511), + [aux_sym_check_host_ip_token1] = ACTIONS(2511), + [aux_sym_ciphers_token1] = ACTIONS(2511), + [aux_sym_cipher_token1] = ACTIONS(2513), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2511), + [aux_sym_compression_token1] = ACTIONS(2511), + [aux_sym_connection_attempts_token1] = ACTIONS(2511), + [aux_sym_connect_timeout_token1] = ACTIONS(2511), + [aux_sym_control_master_token1] = ACTIONS(2511), + [aux_sym_control_path_token1] = ACTIONS(2511), + [aux_sym_control_persist_token1] = ACTIONS(2511), + [aux_sym_dynamic_forward_token1] = ACTIONS(2511), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2511), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2511), + [aux_sym_escape_char_token1] = ACTIONS(2511), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2511), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2511), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2511), + [aux_sym_forward_agent_token1] = ACTIONS(2511), + [aux_sym_forward_x11_token1] = ACTIONS(2513), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2511), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2511), + [aux_sym_gateway_ports_token1] = ACTIONS(2511), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2511), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2511), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2511), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2511), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2511), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2511), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2511), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2511), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2511), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2511), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2511), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2511), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2511), + [aux_sym_host_key_alias_token1] = ACTIONS(2511), + [aux_sym_hostname_token1] = ACTIONS(2511), + [aux_sym_identities_only_token1] = ACTIONS(2511), + [aux_sym_identity_agent_token1] = ACTIONS(2511), + [aux_sym_identity_file_token1] = ACTIONS(2511), + [aux_sym_ignore_unknown_token1] = ACTIONS(2511), + [aux_sym_include_token1] = ACTIONS(2511), + [aux_sym_ip_qos_token1] = ACTIONS(2511), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2511), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2511), + [aux_sym_kex_algorithms_token1] = ACTIONS(2511), + [aux_sym_known_hosts_command_token1] = ACTIONS(2511), + [aux_sym_local_command_token1] = ACTIONS(2511), + [aux_sym_local_forward_token1] = ACTIONS(2511), + [aux_sym_log_level_token1] = ACTIONS(2511), + [aux_sym_log_verbose_token1] = ACTIONS(2511), + [aux_sym_macs_token1] = ACTIONS(2511), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2511), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2511), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2511), + [aux_sym_password_authentication_token1] = ACTIONS(2511), + [aux_sym_permit_local_command_token1] = ACTIONS(2511), + [aux_sym_permit_remote_open_token1] = ACTIONS(2511), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2511), + [aux_sym_port_token1] = ACTIONS(2511), + [aux_sym_preferred_authentications_token1] = ACTIONS(2511), + [aux_sym_protocol_token1] = ACTIONS(2511), + [aux_sym_proxy_command_token1] = ACTIONS(2511), + [aux_sym_proxy_jump_token1] = ACTIONS(2511), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2511), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2511), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2511), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2511), + [aux_sym_rekey_limit_token1] = ACTIONS(2511), + [aux_sym_remote_command_token1] = ACTIONS(2511), + [aux_sym_remote_forward_token1] = ACTIONS(2511), + [aux_sym_request_tty_token1] = ACTIONS(2511), + [aux_sym_required_rsa_size_token1] = ACTIONS(2511), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2511), + [aux_sym_security_key_provider_token1] = ACTIONS(2511), + [aux_sym_send_env_token1] = ACTIONS(2511), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2511), + [aux_sym_server_alive_interval_token1] = ACTIONS(2511), + [aux_sym_session_type_token1] = ACTIONS(2511), + [aux_sym_set_env_token1] = ACTIONS(2511), + [aux_sym_stdin_null_token1] = ACTIONS(2511), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2511), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2511), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2511), + [aux_sym_syslog_facility_token1] = ACTIONS(2511), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2511), + [aux_sym_keep_alive_token1] = ACTIONS(2511), + [aux_sym_tag_token1] = ACTIONS(2511), + [aux_sym_tunnel_token1] = ACTIONS(2513), + [aux_sym_tunnel_device_token1] = ACTIONS(2511), + [aux_sym_update_host_keys_token1] = ACTIONS(2511), + [aux_sym_use_keychain_token1] = ACTIONS(2511), + [aux_sym_use_roaming_token1] = ACTIONS(2511), + [aux_sym_user_token1] = ACTIONS(2513), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2511), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2511), + [aux_sym_visual_host_key_token1] = ACTIONS(2511), + [aux_sym_xauth_location_token1] = ACTIONS(2511), }, [344] = { - [ts_builtin_sym_end] = ACTIONS(2508), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2510), - [anon_sym_DQUOTE] = ACTIONS(2508), - [aux_sym_match_token1] = ACTIONS(2508), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2508), - [aux_sym_address_family_token1] = ACTIONS(2508), - [aux_sym_batch_mode_token1] = ACTIONS(2508), - [aux_sym_bind_address_token1] = ACTIONS(2508), - [aux_sym_bind_interface_token1] = ACTIONS(2508), - [aux_sym_canonical_domains_token1] = ACTIONS(2508), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2508), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2508), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2508), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2508), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2508), - [aux_sym_certificate_file_token1] = ACTIONS(2508), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2508), - [aux_sym_channel_timeout_token1] = ACTIONS(2508), - [aux_sym_check_host_ip_token1] = ACTIONS(2508), - [aux_sym_ciphers_token1] = ACTIONS(2508), - [aux_sym_cipher_token1] = ACTIONS(2510), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2508), - [aux_sym_compression_token1] = ACTIONS(2508), - [aux_sym_connection_attempts_token1] = ACTIONS(2508), - [aux_sym_connect_timeout_token1] = ACTIONS(2508), - [aux_sym_control_master_token1] = ACTIONS(2508), - [aux_sym_control_path_token1] = ACTIONS(2508), - [aux_sym_control_persist_token1] = ACTIONS(2508), - [aux_sym_dynamic_forward_token1] = ACTIONS(2508), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2508), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2508), - [aux_sym_escape_char_token1] = ACTIONS(2508), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2508), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2508), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2508), - [aux_sym_forward_agent_token1] = ACTIONS(2508), - [aux_sym_forward_x11_token1] = ACTIONS(2510), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2508), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2508), - [aux_sym_gateway_ports_token1] = ACTIONS(2508), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2508), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2508), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2508), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2508), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2508), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2508), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2508), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2508), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2508), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2508), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2508), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2508), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2508), - [aux_sym_host_key_alias_token1] = ACTIONS(2508), - [aux_sym_hostname_token1] = ACTIONS(2508), - [aux_sym_identities_only_token1] = ACTIONS(2508), - [aux_sym_identity_agent_token1] = ACTIONS(2508), - [aux_sym_identity_file_token1] = ACTIONS(2508), - [aux_sym_ignore_unknown_token1] = ACTIONS(2508), - [aux_sym_include_token1] = ACTIONS(2508), - [aux_sym_ip_qos_token1] = ACTIONS(2508), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2508), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2508), - [aux_sym_kex_algorithms_token1] = ACTIONS(2508), - [aux_sym_known_hosts_command_token1] = ACTIONS(2508), - [aux_sym_local_command_token1] = ACTIONS(2508), - [aux_sym_local_forward_token1] = ACTIONS(2508), - [aux_sym_log_level_token1] = ACTIONS(2508), - [aux_sym_log_verbose_token1] = ACTIONS(2508), - [aux_sym_macs_token1] = ACTIONS(2508), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2508), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2508), - [aux_sym_password_authentication_token1] = ACTIONS(2508), - [aux_sym_permit_local_command_token1] = ACTIONS(2508), - [aux_sym_permit_remote_open_token1] = ACTIONS(2508), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2508), - [aux_sym_port_token1] = ACTIONS(2508), - [aux_sym_preferred_authentications_token1] = ACTIONS(2508), - [aux_sym_protocol_token1] = ACTIONS(2508), - [aux_sym_proxy_command_token1] = ACTIONS(2508), - [aux_sym_proxy_jump_token1] = ACTIONS(2508), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2508), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2508), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2508), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2508), - [aux_sym_rekey_limit_token1] = ACTIONS(2508), - [aux_sym_remote_command_token1] = ACTIONS(2508), - [aux_sym_remote_forward_token1] = ACTIONS(2508), - [aux_sym_request_tty_token1] = ACTIONS(2508), - [aux_sym_required_rsa_size_token1] = ACTIONS(2508), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2508), - [aux_sym_security_key_provider_token1] = ACTIONS(2508), - [aux_sym_send_env_token1] = ACTIONS(2508), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2508), - [aux_sym_server_alive_interval_token1] = ACTIONS(2508), - [aux_sym_session_type_token1] = ACTIONS(2508), - [aux_sym_set_env_token1] = ACTIONS(2508), - [aux_sym_stdin_null_token1] = ACTIONS(2508), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2508), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2508), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2508), - [aux_sym_syslog_facility_token1] = ACTIONS(2508), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2508), - [aux_sym_keep_alive_token1] = ACTIONS(2508), - [aux_sym_tag_token1] = ACTIONS(2508), - [aux_sym_tunnel_token1] = ACTIONS(2510), - [aux_sym_tunnel_device_token1] = ACTIONS(2508), - [aux_sym_update_host_keys_token1] = ACTIONS(2508), - [aux_sym_use_keychain_token1] = ACTIONS(2508), - [aux_sym_use_roaming_token1] = ACTIONS(2508), - [aux_sym_user_token1] = ACTIONS(2510), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2508), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2508), - [aux_sym_visual_host_key_token1] = ACTIONS(2508), - [aux_sym_xauth_location_token1] = ACTIONS(2508), + [ts_builtin_sym_end] = ACTIONS(2517), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(2521), + [aux_sym_match_token1] = ACTIONS(2517), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2517), + [aux_sym_address_family_token1] = ACTIONS(2517), + [aux_sym_batch_mode_token1] = ACTIONS(2517), + [aux_sym_bind_address_token1] = ACTIONS(2517), + [aux_sym_bind_interface_token1] = ACTIONS(2517), + [aux_sym_canonical_domains_token1] = ACTIONS(2517), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2517), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2517), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2517), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2517), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2517), + [aux_sym_certificate_file_token1] = ACTIONS(2517), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2517), + [aux_sym_channel_timeout_token1] = ACTIONS(2517), + [aux_sym_check_host_ip_token1] = ACTIONS(2517), + [aux_sym_ciphers_token1] = ACTIONS(2517), + [aux_sym_cipher_token1] = ACTIONS(2519), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2517), + [aux_sym_compression_token1] = ACTIONS(2517), + [aux_sym_connection_attempts_token1] = ACTIONS(2517), + [aux_sym_connect_timeout_token1] = ACTIONS(2517), + [aux_sym_control_master_token1] = ACTIONS(2517), + [aux_sym_control_path_token1] = ACTIONS(2517), + [aux_sym_control_persist_token1] = ACTIONS(2517), + [aux_sym_dynamic_forward_token1] = ACTIONS(2517), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2517), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2517), + [aux_sym_escape_char_token1] = ACTIONS(2517), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2517), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2517), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2517), + [aux_sym_forward_agent_token1] = ACTIONS(2517), + [aux_sym_forward_x11_token1] = ACTIONS(2519), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2517), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2517), + [aux_sym_gateway_ports_token1] = ACTIONS(2517), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2517), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2517), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2517), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2517), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2517), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2517), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2517), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2517), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2517), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2517), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2517), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2517), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2517), + [aux_sym_host_key_alias_token1] = ACTIONS(2517), + [aux_sym_hostname_token1] = ACTIONS(2517), + [aux_sym_identities_only_token1] = ACTIONS(2517), + [aux_sym_identity_agent_token1] = ACTIONS(2517), + [aux_sym_identity_file_token1] = ACTIONS(2517), + [aux_sym_ignore_unknown_token1] = ACTIONS(2517), + [aux_sym_include_token1] = ACTIONS(2517), + [aux_sym_ip_qos_token1] = ACTIONS(2517), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2517), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2517), + [aux_sym_kex_algorithms_token1] = ACTIONS(2517), + [aux_sym_known_hosts_command_token1] = ACTIONS(2517), + [aux_sym_local_command_token1] = ACTIONS(2517), + [aux_sym_local_forward_token1] = ACTIONS(2517), + [aux_sym_log_level_token1] = ACTIONS(2517), + [aux_sym_log_verbose_token1] = ACTIONS(2517), + [aux_sym_macs_token1] = ACTIONS(2517), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2517), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2517), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2517), + [aux_sym_password_authentication_token1] = ACTIONS(2517), + [aux_sym_permit_local_command_token1] = ACTIONS(2517), + [aux_sym_permit_remote_open_token1] = ACTIONS(2517), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2517), + [aux_sym_port_token1] = ACTIONS(2517), + [aux_sym_preferred_authentications_token1] = ACTIONS(2517), + [aux_sym_protocol_token1] = ACTIONS(2517), + [aux_sym_proxy_command_token1] = ACTIONS(2517), + [aux_sym_proxy_jump_token1] = ACTIONS(2517), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2517), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2517), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2517), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2517), + [aux_sym_rekey_limit_token1] = ACTIONS(2517), + [aux_sym_remote_command_token1] = ACTIONS(2517), + [aux_sym_remote_forward_token1] = ACTIONS(2517), + [aux_sym_request_tty_token1] = ACTIONS(2517), + [aux_sym_required_rsa_size_token1] = ACTIONS(2517), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2517), + [aux_sym_security_key_provider_token1] = ACTIONS(2517), + [aux_sym_send_env_token1] = ACTIONS(2517), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2517), + [aux_sym_server_alive_interval_token1] = ACTIONS(2517), + [aux_sym_session_type_token1] = ACTIONS(2517), + [aux_sym_set_env_token1] = ACTIONS(2517), + [aux_sym_stdin_null_token1] = ACTIONS(2517), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2517), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2517), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2517), + [aux_sym_syslog_facility_token1] = ACTIONS(2517), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2517), + [aux_sym_keep_alive_token1] = ACTIONS(2517), + [aux_sym_tag_token1] = ACTIONS(2517), + [aux_sym_tunnel_token1] = ACTIONS(2519), + [aux_sym_tunnel_device_token1] = ACTIONS(2517), + [aux_sym_update_host_keys_token1] = ACTIONS(2517), + [aux_sym_use_keychain_token1] = ACTIONS(2517), + [aux_sym_use_roaming_token1] = ACTIONS(2517), + [aux_sym_user_token1] = ACTIONS(2519), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2517), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2517), + [aux_sym_visual_host_key_token1] = ACTIONS(2517), + [aux_sym_xauth_location_token1] = ACTIONS(2517), }, [345] = { - [ts_builtin_sym_end] = ACTIONS(2512), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2514), - [anon_sym_DQUOTE] = ACTIONS(2516), - [aux_sym_match_token1] = ACTIONS(2512), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2512), - [aux_sym_address_family_token1] = ACTIONS(2512), - [aux_sym_batch_mode_token1] = ACTIONS(2512), - [aux_sym_bind_address_token1] = ACTIONS(2512), - [aux_sym_bind_interface_token1] = ACTIONS(2512), - [aux_sym_canonical_domains_token1] = ACTIONS(2512), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2512), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2512), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2512), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2512), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2512), - [aux_sym_certificate_file_token1] = ACTIONS(2512), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2512), - [aux_sym_channel_timeout_token1] = ACTIONS(2512), - [aux_sym_check_host_ip_token1] = ACTIONS(2512), - [aux_sym_ciphers_token1] = ACTIONS(2512), - [aux_sym_cipher_token1] = ACTIONS(2514), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2512), - [aux_sym_compression_token1] = ACTIONS(2512), - [aux_sym_connection_attempts_token1] = ACTIONS(2512), - [aux_sym_connect_timeout_token1] = ACTIONS(2512), - [aux_sym_control_master_token1] = ACTIONS(2512), - [aux_sym_control_path_token1] = ACTIONS(2512), - [aux_sym_control_persist_token1] = ACTIONS(2512), - [aux_sym_dynamic_forward_token1] = ACTIONS(2512), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2512), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2512), - [aux_sym_escape_char_token1] = ACTIONS(2512), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2512), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2512), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2512), - [aux_sym_forward_agent_token1] = ACTIONS(2512), - [aux_sym_forward_x11_token1] = ACTIONS(2514), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2512), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2512), - [aux_sym_gateway_ports_token1] = ACTIONS(2512), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2512), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2512), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2512), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2512), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2512), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2512), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2512), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2512), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2512), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2512), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2512), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2512), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2512), - [aux_sym_host_key_alias_token1] = ACTIONS(2512), - [aux_sym_hostname_token1] = ACTIONS(2512), - [aux_sym_identities_only_token1] = ACTIONS(2512), - [aux_sym_identity_agent_token1] = ACTIONS(2512), - [aux_sym_identity_file_token1] = ACTIONS(2512), - [aux_sym_ignore_unknown_token1] = ACTIONS(2512), - [aux_sym_include_token1] = ACTIONS(2512), - [aux_sym_ip_qos_token1] = ACTIONS(2512), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2512), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2512), - [aux_sym_kex_algorithms_token1] = ACTIONS(2512), - [aux_sym_known_hosts_command_token1] = ACTIONS(2512), - [aux_sym_local_command_token1] = ACTIONS(2512), - [aux_sym_local_forward_token1] = ACTIONS(2512), - [aux_sym_log_level_token1] = ACTIONS(2512), - [aux_sym_log_verbose_token1] = ACTIONS(2512), - [aux_sym_macs_token1] = ACTIONS(2512), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2512), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2512), - [aux_sym_password_authentication_token1] = ACTIONS(2512), - [aux_sym_permit_local_command_token1] = ACTIONS(2512), - [aux_sym_permit_remote_open_token1] = ACTIONS(2512), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2512), - [aux_sym_port_token1] = ACTIONS(2512), - [aux_sym_preferred_authentications_token1] = ACTIONS(2512), - [aux_sym_protocol_token1] = ACTIONS(2512), - [aux_sym_proxy_command_token1] = ACTIONS(2512), - [aux_sym_proxy_jump_token1] = ACTIONS(2512), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2512), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2512), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2512), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2512), - [aux_sym_rekey_limit_token1] = ACTIONS(2512), - [aux_sym_remote_command_token1] = ACTIONS(2512), - [aux_sym_remote_forward_token1] = ACTIONS(2512), - [aux_sym_request_tty_token1] = ACTIONS(2512), - [aux_sym_required_rsa_size_token1] = ACTIONS(2512), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2512), - [aux_sym_security_key_provider_token1] = ACTIONS(2512), - [aux_sym_send_env_token1] = ACTIONS(2512), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2512), - [aux_sym_server_alive_interval_token1] = ACTIONS(2512), - [aux_sym_session_type_token1] = ACTIONS(2512), - [aux_sym_set_env_token1] = ACTIONS(2512), - [aux_sym_stdin_null_token1] = ACTIONS(2512), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2512), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2512), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2512), - [aux_sym_syslog_facility_token1] = ACTIONS(2512), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2512), - [aux_sym_keep_alive_token1] = ACTIONS(2512), - [aux_sym_tag_token1] = ACTIONS(2512), - [aux_sym_tunnel_token1] = ACTIONS(2514), - [aux_sym_tunnel_device_token1] = ACTIONS(2512), - [aux_sym_update_host_keys_token1] = ACTIONS(2512), - [aux_sym_use_keychain_token1] = ACTIONS(2512), - [aux_sym_use_roaming_token1] = ACTIONS(2512), - [aux_sym_user_token1] = ACTIONS(2514), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2512), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2512), - [aux_sym_visual_host_key_token1] = ACTIONS(2512), - [aux_sym_xauth_location_token1] = ACTIONS(2512), + [ts_builtin_sym_end] = ACTIONS(2523), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(2523), + [aux_sym_match_token1] = ACTIONS(2523), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2523), + [aux_sym_address_family_token1] = ACTIONS(2523), + [aux_sym_batch_mode_token1] = ACTIONS(2523), + [aux_sym_bind_address_token1] = ACTIONS(2523), + [aux_sym_bind_interface_token1] = ACTIONS(2523), + [aux_sym_canonical_domains_token1] = ACTIONS(2523), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2523), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2523), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2523), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2523), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2523), + [aux_sym_certificate_file_token1] = ACTIONS(2523), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2523), + [aux_sym_channel_timeout_token1] = ACTIONS(2523), + [aux_sym_check_host_ip_token1] = ACTIONS(2523), + [aux_sym_ciphers_token1] = ACTIONS(2523), + [aux_sym_cipher_token1] = ACTIONS(2525), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2523), + [aux_sym_compression_token1] = ACTIONS(2523), + [aux_sym_connection_attempts_token1] = ACTIONS(2523), + [aux_sym_connect_timeout_token1] = ACTIONS(2523), + [aux_sym_control_master_token1] = ACTIONS(2523), + [aux_sym_control_path_token1] = ACTIONS(2523), + [aux_sym_control_persist_token1] = ACTIONS(2523), + [aux_sym_dynamic_forward_token1] = ACTIONS(2523), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2523), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2523), + [aux_sym_escape_char_token1] = ACTIONS(2523), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2523), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2523), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2523), + [aux_sym_forward_agent_token1] = ACTIONS(2523), + [aux_sym_forward_x11_token1] = ACTIONS(2525), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2523), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2523), + [aux_sym_gateway_ports_token1] = ACTIONS(2523), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2523), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2523), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2523), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2523), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2523), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2523), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2523), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2523), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2523), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2523), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2523), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2523), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2523), + [aux_sym_host_key_alias_token1] = ACTIONS(2523), + [aux_sym_hostname_token1] = ACTIONS(2523), + [aux_sym_identities_only_token1] = ACTIONS(2523), + [aux_sym_identity_agent_token1] = ACTIONS(2523), + [aux_sym_identity_file_token1] = ACTIONS(2523), + [aux_sym_ignore_unknown_token1] = ACTIONS(2523), + [aux_sym_include_token1] = ACTIONS(2523), + [aux_sym_ip_qos_token1] = ACTIONS(2523), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2523), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2523), + [aux_sym_kex_algorithms_token1] = ACTIONS(2523), + [aux_sym_known_hosts_command_token1] = ACTIONS(2523), + [aux_sym_local_command_token1] = ACTIONS(2523), + [aux_sym_local_forward_token1] = ACTIONS(2523), + [aux_sym_log_level_token1] = ACTIONS(2523), + [aux_sym_log_verbose_token1] = ACTIONS(2523), + [aux_sym_macs_token1] = ACTIONS(2523), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2523), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2523), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2523), + [aux_sym_password_authentication_token1] = ACTIONS(2523), + [aux_sym_permit_local_command_token1] = ACTIONS(2523), + [aux_sym_permit_remote_open_token1] = ACTIONS(2523), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2523), + [aux_sym_port_token1] = ACTIONS(2523), + [aux_sym_preferred_authentications_token1] = ACTIONS(2523), + [aux_sym_protocol_token1] = ACTIONS(2523), + [aux_sym_proxy_command_token1] = ACTIONS(2523), + [aux_sym_proxy_jump_token1] = ACTIONS(2523), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2523), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2523), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2523), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2523), + [aux_sym_rekey_limit_token1] = ACTIONS(2523), + [aux_sym_remote_command_token1] = ACTIONS(2523), + [aux_sym_remote_forward_token1] = ACTIONS(2523), + [aux_sym_request_tty_token1] = ACTIONS(2523), + [aux_sym_required_rsa_size_token1] = ACTIONS(2523), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2523), + [aux_sym_security_key_provider_token1] = ACTIONS(2523), + [aux_sym_send_env_token1] = ACTIONS(2523), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2523), + [aux_sym_server_alive_interval_token1] = ACTIONS(2523), + [aux_sym_session_type_token1] = ACTIONS(2523), + [aux_sym_set_env_token1] = ACTIONS(2523), + [aux_sym_stdin_null_token1] = ACTIONS(2523), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2523), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2523), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2523), + [aux_sym_syslog_facility_token1] = ACTIONS(2523), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2523), + [aux_sym_keep_alive_token1] = ACTIONS(2523), + [aux_sym_tag_token1] = ACTIONS(2523), + [aux_sym_tunnel_token1] = ACTIONS(2525), + [aux_sym_tunnel_device_token1] = ACTIONS(2523), + [aux_sym_update_host_keys_token1] = ACTIONS(2523), + [aux_sym_use_keychain_token1] = ACTIONS(2523), + [aux_sym_use_roaming_token1] = ACTIONS(2523), + [aux_sym_user_token1] = ACTIONS(2525), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2523), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2523), + [aux_sym_visual_host_key_token1] = ACTIONS(2523), + [aux_sym_xauth_location_token1] = ACTIONS(2523), }, [346] = { - [ts_builtin_sym_end] = ACTIONS(2518), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2520), - [anon_sym_DQUOTE] = ACTIONS(2522), - [aux_sym_match_token1] = ACTIONS(2518), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2518), - [aux_sym_address_family_token1] = ACTIONS(2518), - [aux_sym_batch_mode_token1] = ACTIONS(2518), - [aux_sym_bind_address_token1] = ACTIONS(2518), - [aux_sym_bind_interface_token1] = ACTIONS(2518), - [aux_sym_canonical_domains_token1] = ACTIONS(2518), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2518), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2518), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2518), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2518), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2518), - [aux_sym_certificate_file_token1] = ACTIONS(2518), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2518), - [aux_sym_channel_timeout_token1] = ACTIONS(2518), - [aux_sym_check_host_ip_token1] = ACTIONS(2518), - [aux_sym_ciphers_token1] = ACTIONS(2518), - [aux_sym_cipher_token1] = ACTIONS(2520), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2518), - [aux_sym_compression_token1] = ACTIONS(2518), - [aux_sym_connection_attempts_token1] = ACTIONS(2518), - [aux_sym_connect_timeout_token1] = ACTIONS(2518), - [aux_sym_control_master_token1] = ACTIONS(2518), - [aux_sym_control_path_token1] = ACTIONS(2518), - [aux_sym_control_persist_token1] = ACTIONS(2518), - [aux_sym_dynamic_forward_token1] = ACTIONS(2518), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2518), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2518), - [aux_sym_escape_char_token1] = ACTIONS(2518), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2518), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2518), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2518), - [aux_sym_forward_agent_token1] = ACTIONS(2518), - [aux_sym_forward_x11_token1] = ACTIONS(2520), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2518), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2518), - [aux_sym_gateway_ports_token1] = ACTIONS(2518), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2518), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2518), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2518), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2518), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2518), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2518), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2518), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2518), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2518), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2518), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2518), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2518), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2518), - [aux_sym_host_key_alias_token1] = ACTIONS(2518), - [aux_sym_hostname_token1] = ACTIONS(2518), - [aux_sym_identities_only_token1] = ACTIONS(2518), - [aux_sym_identity_agent_token1] = ACTIONS(2518), - [aux_sym_identity_file_token1] = ACTIONS(2518), - [aux_sym_ignore_unknown_token1] = ACTIONS(2518), - [aux_sym_include_token1] = ACTIONS(2518), - [aux_sym_ip_qos_token1] = ACTIONS(2518), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2518), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2518), - [aux_sym_kex_algorithms_token1] = ACTIONS(2518), - [aux_sym_known_hosts_command_token1] = ACTIONS(2518), - [aux_sym_local_command_token1] = ACTIONS(2518), - [aux_sym_local_forward_token1] = ACTIONS(2518), - [aux_sym_log_level_token1] = ACTIONS(2518), - [aux_sym_log_verbose_token1] = ACTIONS(2518), - [aux_sym_macs_token1] = ACTIONS(2518), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2518), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2518), - [aux_sym_password_authentication_token1] = ACTIONS(2518), - [aux_sym_permit_local_command_token1] = ACTIONS(2518), - [aux_sym_permit_remote_open_token1] = ACTIONS(2518), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2518), - [aux_sym_port_token1] = ACTIONS(2518), - [aux_sym_preferred_authentications_token1] = ACTIONS(2518), - [aux_sym_protocol_token1] = ACTIONS(2518), - [aux_sym_proxy_command_token1] = ACTIONS(2518), - [aux_sym_proxy_jump_token1] = ACTIONS(2518), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2518), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2518), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2518), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2518), - [aux_sym_rekey_limit_token1] = ACTIONS(2518), - [aux_sym_remote_command_token1] = ACTIONS(2518), - [aux_sym_remote_forward_token1] = ACTIONS(2518), - [aux_sym_request_tty_token1] = ACTIONS(2518), - [aux_sym_required_rsa_size_token1] = ACTIONS(2518), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2518), - [aux_sym_security_key_provider_token1] = ACTIONS(2518), - [aux_sym_send_env_token1] = ACTIONS(2518), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2518), - [aux_sym_server_alive_interval_token1] = ACTIONS(2518), - [aux_sym_session_type_token1] = ACTIONS(2518), - [aux_sym_set_env_token1] = ACTIONS(2518), - [aux_sym_stdin_null_token1] = ACTIONS(2518), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2518), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2518), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2518), - [aux_sym_syslog_facility_token1] = ACTIONS(2518), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2518), - [aux_sym_keep_alive_token1] = ACTIONS(2518), - [aux_sym_tag_token1] = ACTIONS(2518), - [aux_sym_tunnel_token1] = ACTIONS(2520), - [aux_sym_tunnel_device_token1] = ACTIONS(2518), - [aux_sym_update_host_keys_token1] = ACTIONS(2518), - [aux_sym_use_keychain_token1] = ACTIONS(2518), - [aux_sym_use_roaming_token1] = ACTIONS(2518), - [aux_sym_user_token1] = ACTIONS(2520), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2518), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2518), - [aux_sym_visual_host_key_token1] = ACTIONS(2518), - [aux_sym_xauth_location_token1] = ACTIONS(2518), + [ts_builtin_sym_end] = ACTIONS(2527), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(2527), + [aux_sym_match_token1] = ACTIONS(2527), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2527), + [aux_sym_address_family_token1] = ACTIONS(2527), + [aux_sym_batch_mode_token1] = ACTIONS(2527), + [aux_sym_bind_address_token1] = ACTIONS(2527), + [aux_sym_bind_interface_token1] = ACTIONS(2527), + [aux_sym_canonical_domains_token1] = ACTIONS(2527), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2527), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2527), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2527), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2527), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2527), + [aux_sym_certificate_file_token1] = ACTIONS(2527), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2527), + [aux_sym_channel_timeout_token1] = ACTIONS(2527), + [aux_sym_check_host_ip_token1] = ACTIONS(2527), + [aux_sym_ciphers_token1] = ACTIONS(2527), + [aux_sym_cipher_token1] = ACTIONS(2529), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2527), + [aux_sym_compression_token1] = ACTIONS(2527), + [aux_sym_connection_attempts_token1] = ACTIONS(2527), + [aux_sym_connect_timeout_token1] = ACTIONS(2527), + [aux_sym_control_master_token1] = ACTIONS(2527), + [aux_sym_control_path_token1] = ACTIONS(2527), + [aux_sym_control_persist_token1] = ACTIONS(2527), + [aux_sym_dynamic_forward_token1] = ACTIONS(2527), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2527), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2527), + [aux_sym_escape_char_token1] = ACTIONS(2527), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2527), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2527), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2527), + [aux_sym_forward_agent_token1] = ACTIONS(2527), + [aux_sym_forward_x11_token1] = ACTIONS(2529), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2527), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2527), + [aux_sym_gateway_ports_token1] = ACTIONS(2527), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2527), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2527), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2527), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2527), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2527), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2527), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2527), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2527), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2527), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2527), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2527), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2527), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2527), + [aux_sym_host_key_alias_token1] = ACTIONS(2527), + [aux_sym_hostname_token1] = ACTIONS(2527), + [aux_sym_identities_only_token1] = ACTIONS(2527), + [aux_sym_identity_agent_token1] = ACTIONS(2527), + [aux_sym_identity_file_token1] = ACTIONS(2527), + [aux_sym_ignore_unknown_token1] = ACTIONS(2527), + [aux_sym_include_token1] = ACTIONS(2527), + [aux_sym_ip_qos_token1] = ACTIONS(2527), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2527), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2527), + [aux_sym_kex_algorithms_token1] = ACTIONS(2527), + [aux_sym_known_hosts_command_token1] = ACTIONS(2527), + [aux_sym_local_command_token1] = ACTIONS(2527), + [aux_sym_local_forward_token1] = ACTIONS(2527), + [aux_sym_log_level_token1] = ACTIONS(2527), + [aux_sym_log_verbose_token1] = ACTIONS(2527), + [aux_sym_macs_token1] = ACTIONS(2527), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2527), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2527), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2527), + [aux_sym_password_authentication_token1] = ACTIONS(2527), + [aux_sym_permit_local_command_token1] = ACTIONS(2527), + [aux_sym_permit_remote_open_token1] = ACTIONS(2527), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2527), + [aux_sym_port_token1] = ACTIONS(2527), + [aux_sym_preferred_authentications_token1] = ACTIONS(2527), + [aux_sym_protocol_token1] = ACTIONS(2527), + [aux_sym_proxy_command_token1] = ACTIONS(2527), + [aux_sym_proxy_jump_token1] = ACTIONS(2527), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2527), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2527), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2527), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2527), + [aux_sym_rekey_limit_token1] = ACTIONS(2527), + [aux_sym_remote_command_token1] = ACTIONS(2527), + [aux_sym_remote_forward_token1] = ACTIONS(2527), + [aux_sym_request_tty_token1] = ACTIONS(2527), + [aux_sym_required_rsa_size_token1] = ACTIONS(2527), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2527), + [aux_sym_security_key_provider_token1] = ACTIONS(2527), + [aux_sym_send_env_token1] = ACTIONS(2527), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2527), + [aux_sym_server_alive_interval_token1] = ACTIONS(2527), + [aux_sym_session_type_token1] = ACTIONS(2527), + [aux_sym_set_env_token1] = ACTIONS(2527), + [aux_sym_stdin_null_token1] = ACTIONS(2527), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2527), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2527), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2527), + [aux_sym_syslog_facility_token1] = ACTIONS(2527), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2527), + [aux_sym_keep_alive_token1] = ACTIONS(2527), + [aux_sym_tag_token1] = ACTIONS(2527), + [aux_sym_tunnel_token1] = ACTIONS(2529), + [aux_sym_tunnel_device_token1] = ACTIONS(2527), + [aux_sym_update_host_keys_token1] = ACTIONS(2527), + [aux_sym_use_keychain_token1] = ACTIONS(2527), + [aux_sym_use_roaming_token1] = ACTIONS(2527), + [aux_sym_user_token1] = ACTIONS(2529), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2527), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2527), + [aux_sym_visual_host_key_token1] = ACTIONS(2527), + [aux_sym_xauth_location_token1] = ACTIONS(2527), }, [347] = { - [ts_builtin_sym_end] = ACTIONS(2524), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2526), - [anon_sym_DQUOTE] = ACTIONS(2524), - [aux_sym_match_token1] = ACTIONS(2524), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2524), - [aux_sym_address_family_token1] = ACTIONS(2524), - [aux_sym_batch_mode_token1] = ACTIONS(2524), - [aux_sym_bind_address_token1] = ACTIONS(2524), - [aux_sym_bind_interface_token1] = ACTIONS(2524), - [aux_sym_canonical_domains_token1] = ACTIONS(2524), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2524), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2524), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2524), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2524), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2524), - [aux_sym_certificate_file_token1] = ACTIONS(2524), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2524), - [aux_sym_channel_timeout_token1] = ACTIONS(2524), - [aux_sym_check_host_ip_token1] = ACTIONS(2524), - [aux_sym_ciphers_token1] = ACTIONS(2524), - [aux_sym_cipher_token1] = ACTIONS(2526), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2524), - [aux_sym_compression_token1] = ACTIONS(2524), - [aux_sym_connection_attempts_token1] = ACTIONS(2524), - [aux_sym_connect_timeout_token1] = ACTIONS(2524), - [aux_sym_control_master_token1] = ACTIONS(2524), - [aux_sym_control_path_token1] = ACTIONS(2524), - [aux_sym_control_persist_token1] = ACTIONS(2524), - [aux_sym_dynamic_forward_token1] = ACTIONS(2524), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2524), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2524), - [aux_sym_escape_char_token1] = ACTIONS(2524), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2524), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2524), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2524), - [aux_sym_forward_agent_token1] = ACTIONS(2524), - [aux_sym_forward_x11_token1] = ACTIONS(2526), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2524), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2524), - [aux_sym_gateway_ports_token1] = ACTIONS(2524), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2524), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2524), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2524), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2524), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2524), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2524), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2524), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2524), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2524), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2524), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2524), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2524), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2524), - [aux_sym_host_key_alias_token1] = ACTIONS(2524), - [aux_sym_hostname_token1] = ACTIONS(2524), - [aux_sym_identities_only_token1] = ACTIONS(2524), - [aux_sym_identity_agent_token1] = ACTIONS(2524), - [aux_sym_identity_file_token1] = ACTIONS(2524), - [aux_sym_ignore_unknown_token1] = ACTIONS(2524), - [aux_sym_include_token1] = ACTIONS(2524), - [aux_sym_ip_qos_token1] = ACTIONS(2524), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2524), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2524), - [aux_sym_kex_algorithms_token1] = ACTIONS(2524), - [aux_sym_known_hosts_command_token1] = ACTIONS(2524), - [aux_sym_local_command_token1] = ACTIONS(2524), - [aux_sym_local_forward_token1] = ACTIONS(2524), - [aux_sym_log_level_token1] = ACTIONS(2524), - [aux_sym_log_verbose_token1] = ACTIONS(2524), - [aux_sym_macs_token1] = ACTIONS(2524), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2524), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2524), - [aux_sym_password_authentication_token1] = ACTIONS(2524), - [aux_sym_permit_local_command_token1] = ACTIONS(2524), - [aux_sym_permit_remote_open_token1] = ACTIONS(2524), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2524), - [aux_sym_port_token1] = ACTIONS(2524), - [aux_sym_preferred_authentications_token1] = ACTIONS(2524), - [aux_sym_protocol_token1] = ACTIONS(2524), - [aux_sym_proxy_command_token1] = ACTIONS(2524), - [aux_sym_proxy_jump_token1] = ACTIONS(2524), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2524), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2524), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2524), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2524), - [aux_sym_rekey_limit_token1] = ACTIONS(2524), - [aux_sym_remote_command_token1] = ACTIONS(2524), - [aux_sym_remote_forward_token1] = ACTIONS(2524), - [aux_sym_request_tty_token1] = ACTIONS(2524), - [aux_sym_required_rsa_size_token1] = ACTIONS(2524), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2524), - [aux_sym_security_key_provider_token1] = ACTIONS(2524), - [aux_sym_send_env_token1] = ACTIONS(2524), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2524), - [aux_sym_server_alive_interval_token1] = ACTIONS(2524), - [aux_sym_session_type_token1] = ACTIONS(2524), - [aux_sym_set_env_token1] = ACTIONS(2524), - [aux_sym_stdin_null_token1] = ACTIONS(2524), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2524), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2524), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2524), - [aux_sym_syslog_facility_token1] = ACTIONS(2524), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2524), - [aux_sym_keep_alive_token1] = ACTIONS(2524), - [aux_sym_tag_token1] = ACTIONS(2524), - [aux_sym_tunnel_token1] = ACTIONS(2526), - [aux_sym_tunnel_device_token1] = ACTIONS(2524), - [aux_sym_update_host_keys_token1] = ACTIONS(2524), - [aux_sym_use_keychain_token1] = ACTIONS(2524), - [aux_sym_use_roaming_token1] = ACTIONS(2524), - [aux_sym_user_token1] = ACTIONS(2526), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2524), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2524), - [aux_sym_visual_host_key_token1] = ACTIONS(2524), - [aux_sym_xauth_location_token1] = ACTIONS(2524), + [ts_builtin_sym_end] = ACTIONS(2531), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(2535), + [aux_sym_match_token1] = ACTIONS(2531), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2531), + [aux_sym_address_family_token1] = ACTIONS(2531), + [aux_sym_batch_mode_token1] = ACTIONS(2531), + [aux_sym_bind_address_token1] = ACTIONS(2531), + [aux_sym_bind_interface_token1] = ACTIONS(2531), + [aux_sym_canonical_domains_token1] = ACTIONS(2531), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2531), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2531), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2531), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2531), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2531), + [aux_sym_certificate_file_token1] = ACTIONS(2531), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2531), + [aux_sym_channel_timeout_token1] = ACTIONS(2531), + [aux_sym_check_host_ip_token1] = ACTIONS(2531), + [aux_sym_ciphers_token1] = ACTIONS(2531), + [aux_sym_cipher_token1] = ACTIONS(2533), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2531), + [aux_sym_compression_token1] = ACTIONS(2531), + [aux_sym_connection_attempts_token1] = ACTIONS(2531), + [aux_sym_connect_timeout_token1] = ACTIONS(2531), + [aux_sym_control_master_token1] = ACTIONS(2531), + [aux_sym_control_path_token1] = ACTIONS(2531), + [aux_sym_control_persist_token1] = ACTIONS(2531), + [aux_sym_dynamic_forward_token1] = ACTIONS(2531), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2531), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2531), + [aux_sym_escape_char_token1] = ACTIONS(2531), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2531), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2531), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2531), + [aux_sym_forward_agent_token1] = ACTIONS(2531), + [aux_sym_forward_x11_token1] = ACTIONS(2533), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2531), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2531), + [aux_sym_gateway_ports_token1] = ACTIONS(2531), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2531), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2531), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2531), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2531), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2531), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2531), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2531), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2531), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2531), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2531), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2531), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2531), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2531), + [aux_sym_host_key_alias_token1] = ACTIONS(2531), + [aux_sym_hostname_token1] = ACTIONS(2531), + [aux_sym_identities_only_token1] = ACTIONS(2531), + [aux_sym_identity_agent_token1] = ACTIONS(2531), + [aux_sym_identity_file_token1] = ACTIONS(2531), + [aux_sym_ignore_unknown_token1] = ACTIONS(2531), + [aux_sym_include_token1] = ACTIONS(2531), + [aux_sym_ip_qos_token1] = ACTIONS(2531), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2531), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2531), + [aux_sym_kex_algorithms_token1] = ACTIONS(2531), + [aux_sym_known_hosts_command_token1] = ACTIONS(2531), + [aux_sym_local_command_token1] = ACTIONS(2531), + [aux_sym_local_forward_token1] = ACTIONS(2531), + [aux_sym_log_level_token1] = ACTIONS(2531), + [aux_sym_log_verbose_token1] = ACTIONS(2531), + [aux_sym_macs_token1] = ACTIONS(2531), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2531), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2531), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2531), + [aux_sym_password_authentication_token1] = ACTIONS(2531), + [aux_sym_permit_local_command_token1] = ACTIONS(2531), + [aux_sym_permit_remote_open_token1] = ACTIONS(2531), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2531), + [aux_sym_port_token1] = ACTIONS(2531), + [aux_sym_preferred_authentications_token1] = ACTIONS(2531), + [aux_sym_protocol_token1] = ACTIONS(2531), + [aux_sym_proxy_command_token1] = ACTIONS(2531), + [aux_sym_proxy_jump_token1] = ACTIONS(2531), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2531), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2531), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2531), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2531), + [aux_sym_rekey_limit_token1] = ACTIONS(2531), + [aux_sym_remote_command_token1] = ACTIONS(2531), + [aux_sym_remote_forward_token1] = ACTIONS(2531), + [aux_sym_request_tty_token1] = ACTIONS(2531), + [aux_sym_required_rsa_size_token1] = ACTIONS(2531), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2531), + [aux_sym_security_key_provider_token1] = ACTIONS(2531), + [aux_sym_send_env_token1] = ACTIONS(2531), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2531), + [aux_sym_server_alive_interval_token1] = ACTIONS(2531), + [aux_sym_session_type_token1] = ACTIONS(2531), + [aux_sym_set_env_token1] = ACTIONS(2531), + [aux_sym_stdin_null_token1] = ACTIONS(2531), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2531), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2531), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2531), + [aux_sym_syslog_facility_token1] = ACTIONS(2531), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2531), + [aux_sym_keep_alive_token1] = ACTIONS(2531), + [aux_sym_tag_token1] = ACTIONS(2531), + [aux_sym_tunnel_token1] = ACTIONS(2533), + [aux_sym_tunnel_device_token1] = ACTIONS(2531), + [aux_sym_update_host_keys_token1] = ACTIONS(2531), + [aux_sym_use_keychain_token1] = ACTIONS(2531), + [aux_sym_use_roaming_token1] = ACTIONS(2531), + [aux_sym_user_token1] = ACTIONS(2533), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2531), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2531), + [aux_sym_visual_host_key_token1] = ACTIONS(2531), + [aux_sym_xauth_location_token1] = ACTIONS(2531), }, [348] = { - [ts_builtin_sym_end] = ACTIONS(2528), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2530), - [anon_sym_DQUOTE] = ACTIONS(2528), - [aux_sym_match_token1] = ACTIONS(2528), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2528), - [aux_sym_address_family_token1] = ACTIONS(2528), - [aux_sym_batch_mode_token1] = ACTIONS(2528), - [aux_sym_bind_address_token1] = ACTIONS(2528), - [aux_sym_bind_interface_token1] = ACTIONS(2528), - [aux_sym_canonical_domains_token1] = ACTIONS(2528), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2528), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2528), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2528), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2528), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2528), - [aux_sym_certificate_file_token1] = ACTIONS(2528), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2528), - [aux_sym_channel_timeout_token1] = ACTIONS(2528), - [aux_sym_check_host_ip_token1] = ACTIONS(2528), - [aux_sym_ciphers_token1] = ACTIONS(2528), - [aux_sym_cipher_token1] = ACTIONS(2530), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2528), - [aux_sym_compression_token1] = ACTIONS(2528), - [aux_sym_connection_attempts_token1] = ACTIONS(2528), - [aux_sym_connect_timeout_token1] = ACTIONS(2528), - [aux_sym_control_master_token1] = ACTIONS(2528), - [aux_sym_control_path_token1] = ACTIONS(2528), - [aux_sym_control_persist_token1] = ACTIONS(2528), - [aux_sym_dynamic_forward_token1] = ACTIONS(2528), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2528), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2528), - [aux_sym_escape_char_token1] = ACTIONS(2528), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2528), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2528), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2528), - [aux_sym_forward_agent_token1] = ACTIONS(2528), - [aux_sym_forward_x11_token1] = ACTIONS(2530), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2528), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2528), - [aux_sym_gateway_ports_token1] = ACTIONS(2528), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2528), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2528), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2528), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2528), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2528), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2528), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2528), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2528), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2528), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2528), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2528), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2528), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2528), - [aux_sym_host_key_alias_token1] = ACTIONS(2528), - [aux_sym_hostname_token1] = ACTIONS(2528), - [aux_sym_identities_only_token1] = ACTIONS(2528), - [aux_sym_identity_agent_token1] = ACTIONS(2528), - [aux_sym_identity_file_token1] = ACTIONS(2528), - [aux_sym_ignore_unknown_token1] = ACTIONS(2528), - [aux_sym_include_token1] = ACTIONS(2528), - [aux_sym_ip_qos_token1] = ACTIONS(2528), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2528), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2528), - [aux_sym_kex_algorithms_token1] = ACTIONS(2528), - [aux_sym_known_hosts_command_token1] = ACTIONS(2528), - [aux_sym_local_command_token1] = ACTIONS(2528), - [aux_sym_local_forward_token1] = ACTIONS(2528), - [aux_sym_log_level_token1] = ACTIONS(2528), - [aux_sym_log_verbose_token1] = ACTIONS(2528), - [aux_sym_macs_token1] = ACTIONS(2528), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2528), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2528), - [aux_sym_password_authentication_token1] = ACTIONS(2528), - [aux_sym_permit_local_command_token1] = ACTIONS(2528), - [aux_sym_permit_remote_open_token1] = ACTIONS(2528), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2528), - [aux_sym_port_token1] = ACTIONS(2528), - [aux_sym_preferred_authentications_token1] = ACTIONS(2528), - [aux_sym_protocol_token1] = ACTIONS(2528), - [aux_sym_proxy_command_token1] = ACTIONS(2528), - [aux_sym_proxy_jump_token1] = ACTIONS(2528), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2528), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2528), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2528), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2528), - [aux_sym_rekey_limit_token1] = ACTIONS(2528), - [aux_sym_remote_command_token1] = ACTIONS(2528), - [aux_sym_remote_forward_token1] = ACTIONS(2528), - [aux_sym_request_tty_token1] = ACTIONS(2528), - [aux_sym_required_rsa_size_token1] = ACTIONS(2528), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2528), - [aux_sym_security_key_provider_token1] = ACTIONS(2528), - [aux_sym_send_env_token1] = ACTIONS(2528), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2528), - [aux_sym_server_alive_interval_token1] = ACTIONS(2528), - [aux_sym_session_type_token1] = ACTIONS(2528), - [aux_sym_set_env_token1] = ACTIONS(2528), - [aux_sym_stdin_null_token1] = ACTIONS(2528), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2528), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2528), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2528), - [aux_sym_syslog_facility_token1] = ACTIONS(2528), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2528), - [aux_sym_keep_alive_token1] = ACTIONS(2528), - [aux_sym_tag_token1] = ACTIONS(2528), - [aux_sym_tunnel_token1] = ACTIONS(2530), - [aux_sym_tunnel_device_token1] = ACTIONS(2528), - [aux_sym_update_host_keys_token1] = ACTIONS(2528), - [aux_sym_use_keychain_token1] = ACTIONS(2528), - [aux_sym_use_roaming_token1] = ACTIONS(2528), - [aux_sym_user_token1] = ACTIONS(2530), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2528), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2528), - [aux_sym_visual_host_key_token1] = ACTIONS(2528), - [aux_sym_xauth_location_token1] = ACTIONS(2528), + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(2541), + [aux_sym_match_token1] = ACTIONS(2537), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2537), + [aux_sym_address_family_token1] = ACTIONS(2537), + [aux_sym_batch_mode_token1] = ACTIONS(2537), + [aux_sym_bind_address_token1] = ACTIONS(2537), + [aux_sym_bind_interface_token1] = ACTIONS(2537), + [aux_sym_canonical_domains_token1] = ACTIONS(2537), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2537), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2537), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2537), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2537), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2537), + [aux_sym_certificate_file_token1] = ACTIONS(2537), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2537), + [aux_sym_channel_timeout_token1] = ACTIONS(2537), + [aux_sym_check_host_ip_token1] = ACTIONS(2537), + [aux_sym_ciphers_token1] = ACTIONS(2537), + [aux_sym_cipher_token1] = ACTIONS(2539), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2537), + [aux_sym_compression_token1] = ACTIONS(2537), + [aux_sym_connection_attempts_token1] = ACTIONS(2537), + [aux_sym_connect_timeout_token1] = ACTIONS(2537), + [aux_sym_control_master_token1] = ACTIONS(2537), + [aux_sym_control_path_token1] = ACTIONS(2537), + [aux_sym_control_persist_token1] = ACTIONS(2537), + [aux_sym_dynamic_forward_token1] = ACTIONS(2537), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2537), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2537), + [aux_sym_escape_char_token1] = ACTIONS(2537), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2537), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2537), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2537), + [aux_sym_forward_agent_token1] = ACTIONS(2537), + [aux_sym_forward_x11_token1] = ACTIONS(2539), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2537), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2537), + [aux_sym_gateway_ports_token1] = ACTIONS(2537), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2537), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2537), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2537), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2537), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2537), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2537), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2537), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2537), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2537), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2537), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2537), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2537), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2537), + [aux_sym_host_key_alias_token1] = ACTIONS(2537), + [aux_sym_hostname_token1] = ACTIONS(2537), + [aux_sym_identities_only_token1] = ACTIONS(2537), + [aux_sym_identity_agent_token1] = ACTIONS(2537), + [aux_sym_identity_file_token1] = ACTIONS(2537), + [aux_sym_ignore_unknown_token1] = ACTIONS(2537), + [aux_sym_include_token1] = ACTIONS(2537), + [aux_sym_ip_qos_token1] = ACTIONS(2537), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2537), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2537), + [aux_sym_kex_algorithms_token1] = ACTIONS(2537), + [aux_sym_known_hosts_command_token1] = ACTIONS(2537), + [aux_sym_local_command_token1] = ACTIONS(2537), + [aux_sym_local_forward_token1] = ACTIONS(2537), + [aux_sym_log_level_token1] = ACTIONS(2537), + [aux_sym_log_verbose_token1] = ACTIONS(2537), + [aux_sym_macs_token1] = ACTIONS(2537), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2537), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2537), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2537), + [aux_sym_password_authentication_token1] = ACTIONS(2537), + [aux_sym_permit_local_command_token1] = ACTIONS(2537), + [aux_sym_permit_remote_open_token1] = ACTIONS(2537), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2537), + [aux_sym_port_token1] = ACTIONS(2537), + [aux_sym_preferred_authentications_token1] = ACTIONS(2537), + [aux_sym_protocol_token1] = ACTIONS(2537), + [aux_sym_proxy_command_token1] = ACTIONS(2537), + [aux_sym_proxy_jump_token1] = ACTIONS(2537), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2537), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2537), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2537), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2537), + [aux_sym_rekey_limit_token1] = ACTIONS(2537), + [aux_sym_remote_command_token1] = ACTIONS(2537), + [aux_sym_remote_forward_token1] = ACTIONS(2537), + [aux_sym_request_tty_token1] = ACTIONS(2537), + [aux_sym_required_rsa_size_token1] = ACTIONS(2537), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2537), + [aux_sym_security_key_provider_token1] = ACTIONS(2537), + [aux_sym_send_env_token1] = ACTIONS(2537), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2537), + [aux_sym_server_alive_interval_token1] = ACTIONS(2537), + [aux_sym_session_type_token1] = ACTIONS(2537), + [aux_sym_set_env_token1] = ACTIONS(2537), + [aux_sym_stdin_null_token1] = ACTIONS(2537), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2537), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2537), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2537), + [aux_sym_syslog_facility_token1] = ACTIONS(2537), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2537), + [aux_sym_keep_alive_token1] = ACTIONS(2537), + [aux_sym_tag_token1] = ACTIONS(2537), + [aux_sym_tunnel_token1] = ACTIONS(2539), + [aux_sym_tunnel_device_token1] = ACTIONS(2537), + [aux_sym_update_host_keys_token1] = ACTIONS(2537), + [aux_sym_use_keychain_token1] = ACTIONS(2537), + [aux_sym_use_roaming_token1] = ACTIONS(2537), + [aux_sym_user_token1] = ACTIONS(2539), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2537), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2537), + [aux_sym_visual_host_key_token1] = ACTIONS(2537), + [aux_sym_xauth_location_token1] = ACTIONS(2537), }, [349] = { - [ts_builtin_sym_end] = ACTIONS(2532), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2534), - [anon_sym_DQUOTE] = ACTIONS(2536), - [aux_sym_match_token1] = ACTIONS(2532), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2532), - [aux_sym_address_family_token1] = ACTIONS(2532), - [aux_sym_batch_mode_token1] = ACTIONS(2532), - [aux_sym_bind_address_token1] = ACTIONS(2532), - [aux_sym_bind_interface_token1] = ACTIONS(2532), - [aux_sym_canonical_domains_token1] = ACTIONS(2532), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2532), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2532), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2532), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2532), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2532), - [aux_sym_certificate_file_token1] = ACTIONS(2532), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2532), - [aux_sym_channel_timeout_token1] = ACTIONS(2532), - [aux_sym_check_host_ip_token1] = ACTIONS(2532), - [aux_sym_ciphers_token1] = ACTIONS(2532), - [aux_sym_cipher_token1] = ACTIONS(2534), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2532), - [aux_sym_compression_token1] = ACTIONS(2532), - [aux_sym_connection_attempts_token1] = ACTIONS(2532), - [aux_sym_connect_timeout_token1] = ACTIONS(2532), - [aux_sym_control_master_token1] = ACTIONS(2532), - [aux_sym_control_path_token1] = ACTIONS(2532), - [aux_sym_control_persist_token1] = ACTIONS(2532), - [aux_sym_dynamic_forward_token1] = ACTIONS(2532), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2532), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2532), - [aux_sym_escape_char_token1] = ACTIONS(2532), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2532), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2532), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2532), - [aux_sym_forward_agent_token1] = ACTIONS(2532), - [aux_sym_forward_x11_token1] = ACTIONS(2534), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2532), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2532), - [aux_sym_gateway_ports_token1] = ACTIONS(2532), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2532), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2532), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2532), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2532), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2532), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2532), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2532), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2532), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2532), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2532), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2532), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2532), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2532), - [aux_sym_host_key_alias_token1] = ACTIONS(2532), - [aux_sym_hostname_token1] = ACTIONS(2532), - [aux_sym_identities_only_token1] = ACTIONS(2532), - [aux_sym_identity_agent_token1] = ACTIONS(2532), - [aux_sym_identity_file_token1] = ACTIONS(2532), - [aux_sym_ignore_unknown_token1] = ACTIONS(2532), - [aux_sym_include_token1] = ACTIONS(2532), - [aux_sym_ip_qos_token1] = ACTIONS(2532), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2532), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2532), - [aux_sym_kex_algorithms_token1] = ACTIONS(2532), - [aux_sym_known_hosts_command_token1] = ACTIONS(2532), - [aux_sym_local_command_token1] = ACTIONS(2532), - [aux_sym_local_forward_token1] = ACTIONS(2532), - [aux_sym_log_level_token1] = ACTIONS(2532), - [aux_sym_log_verbose_token1] = ACTIONS(2532), - [aux_sym_macs_token1] = ACTIONS(2532), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2532), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2532), - [aux_sym_password_authentication_token1] = ACTIONS(2532), - [aux_sym_permit_local_command_token1] = ACTIONS(2532), - [aux_sym_permit_remote_open_token1] = ACTIONS(2532), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2532), - [aux_sym_port_token1] = ACTIONS(2532), - [aux_sym_preferred_authentications_token1] = ACTIONS(2532), - [aux_sym_protocol_token1] = ACTIONS(2532), - [aux_sym_proxy_command_token1] = ACTIONS(2532), - [aux_sym_proxy_jump_token1] = ACTIONS(2532), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2532), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2532), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2532), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2532), - [aux_sym_rekey_limit_token1] = ACTIONS(2532), - [aux_sym_remote_command_token1] = ACTIONS(2532), - [aux_sym_remote_forward_token1] = ACTIONS(2532), - [aux_sym_request_tty_token1] = ACTIONS(2532), - [aux_sym_required_rsa_size_token1] = ACTIONS(2532), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2532), - [aux_sym_security_key_provider_token1] = ACTIONS(2532), - [aux_sym_send_env_token1] = ACTIONS(2532), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2532), - [aux_sym_server_alive_interval_token1] = ACTIONS(2532), - [aux_sym_session_type_token1] = ACTIONS(2532), - [aux_sym_set_env_token1] = ACTIONS(2532), - [aux_sym_stdin_null_token1] = ACTIONS(2532), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2532), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2532), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2532), - [aux_sym_syslog_facility_token1] = ACTIONS(2532), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2532), - [aux_sym_keep_alive_token1] = ACTIONS(2532), - [aux_sym_tag_token1] = ACTIONS(2532), - [aux_sym_tunnel_token1] = ACTIONS(2534), - [aux_sym_tunnel_device_token1] = ACTIONS(2532), - [aux_sym_update_host_keys_token1] = ACTIONS(2532), - [aux_sym_use_keychain_token1] = ACTIONS(2532), - [aux_sym_use_roaming_token1] = ACTIONS(2532), - [aux_sym_user_token1] = ACTIONS(2534), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2532), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2532), - [aux_sym_visual_host_key_token1] = ACTIONS(2532), - [aux_sym_xauth_location_token1] = ACTIONS(2532), + [ts_builtin_sym_end] = ACTIONS(2543), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2545), + [anon_sym_DQUOTE] = ACTIONS(2543), + [aux_sym_match_token1] = ACTIONS(2543), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2543), + [aux_sym_address_family_token1] = ACTIONS(2543), + [aux_sym_batch_mode_token1] = ACTIONS(2543), + [aux_sym_bind_address_token1] = ACTIONS(2543), + [aux_sym_bind_interface_token1] = ACTIONS(2543), + [aux_sym_canonical_domains_token1] = ACTIONS(2543), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2543), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2543), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2543), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2543), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2543), + [aux_sym_certificate_file_token1] = ACTIONS(2543), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2543), + [aux_sym_channel_timeout_token1] = ACTIONS(2543), + [aux_sym_check_host_ip_token1] = ACTIONS(2543), + [aux_sym_ciphers_token1] = ACTIONS(2543), + [aux_sym_cipher_token1] = ACTIONS(2545), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2543), + [aux_sym_compression_token1] = ACTIONS(2543), + [aux_sym_connection_attempts_token1] = ACTIONS(2543), + [aux_sym_connect_timeout_token1] = ACTIONS(2543), + [aux_sym_control_master_token1] = ACTIONS(2543), + [aux_sym_control_path_token1] = ACTIONS(2543), + [aux_sym_control_persist_token1] = ACTIONS(2543), + [aux_sym_dynamic_forward_token1] = ACTIONS(2543), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2543), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2543), + [aux_sym_escape_char_token1] = ACTIONS(2543), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2543), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2543), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2543), + [aux_sym_forward_agent_token1] = ACTIONS(2543), + [aux_sym_forward_x11_token1] = ACTIONS(2545), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2543), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2543), + [aux_sym_gateway_ports_token1] = ACTIONS(2543), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2543), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2543), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2543), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2543), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2543), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2543), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2543), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2543), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2543), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2543), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2543), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2543), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2543), + [aux_sym_host_key_alias_token1] = ACTIONS(2543), + [aux_sym_hostname_token1] = ACTIONS(2543), + [aux_sym_identities_only_token1] = ACTIONS(2543), + [aux_sym_identity_agent_token1] = ACTIONS(2543), + [aux_sym_identity_file_token1] = ACTIONS(2543), + [aux_sym_ignore_unknown_token1] = ACTIONS(2543), + [aux_sym_include_token1] = ACTIONS(2543), + [aux_sym_ip_qos_token1] = ACTIONS(2543), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2543), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2543), + [aux_sym_kex_algorithms_token1] = ACTIONS(2543), + [aux_sym_known_hosts_command_token1] = ACTIONS(2543), + [aux_sym_local_command_token1] = ACTIONS(2543), + [aux_sym_local_forward_token1] = ACTIONS(2543), + [aux_sym_log_level_token1] = ACTIONS(2543), + [aux_sym_log_verbose_token1] = ACTIONS(2543), + [aux_sym_macs_token1] = ACTIONS(2543), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2543), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2543), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2543), + [aux_sym_password_authentication_token1] = ACTIONS(2543), + [aux_sym_permit_local_command_token1] = ACTIONS(2543), + [aux_sym_permit_remote_open_token1] = ACTIONS(2543), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2543), + [aux_sym_port_token1] = ACTIONS(2543), + [aux_sym_preferred_authentications_token1] = ACTIONS(2543), + [aux_sym_protocol_token1] = ACTIONS(2543), + [aux_sym_proxy_command_token1] = ACTIONS(2543), + [aux_sym_proxy_jump_token1] = ACTIONS(2543), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2543), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2543), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2543), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2543), + [aux_sym_rekey_limit_token1] = ACTIONS(2543), + [aux_sym_remote_command_token1] = ACTIONS(2543), + [aux_sym_remote_forward_token1] = ACTIONS(2543), + [aux_sym_request_tty_token1] = ACTIONS(2543), + [aux_sym_required_rsa_size_token1] = ACTIONS(2543), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2543), + [aux_sym_security_key_provider_token1] = ACTIONS(2543), + [aux_sym_send_env_token1] = ACTIONS(2543), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2543), + [aux_sym_server_alive_interval_token1] = ACTIONS(2543), + [aux_sym_session_type_token1] = ACTIONS(2543), + [aux_sym_set_env_token1] = ACTIONS(2543), + [aux_sym_stdin_null_token1] = ACTIONS(2543), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2543), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2543), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2543), + [aux_sym_syslog_facility_token1] = ACTIONS(2543), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2543), + [aux_sym_keep_alive_token1] = ACTIONS(2543), + [aux_sym_tag_token1] = ACTIONS(2543), + [aux_sym_tunnel_token1] = ACTIONS(2545), + [aux_sym_tunnel_device_token1] = ACTIONS(2543), + [aux_sym_update_host_keys_token1] = ACTIONS(2543), + [aux_sym_use_keychain_token1] = ACTIONS(2543), + [aux_sym_use_roaming_token1] = ACTIONS(2543), + [aux_sym_user_token1] = ACTIONS(2545), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2543), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2543), + [aux_sym_visual_host_key_token1] = ACTIONS(2543), + [aux_sym_xauth_location_token1] = ACTIONS(2543), }, [350] = { - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2540), - [anon_sym_DQUOTE] = ACTIONS(2542), - [aux_sym_match_token1] = ACTIONS(2538), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2538), - [aux_sym_address_family_token1] = ACTIONS(2538), - [aux_sym_batch_mode_token1] = ACTIONS(2538), - [aux_sym_bind_address_token1] = ACTIONS(2538), - [aux_sym_bind_interface_token1] = ACTIONS(2538), - [aux_sym_canonical_domains_token1] = ACTIONS(2538), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2538), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2538), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2538), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2538), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2538), - [aux_sym_certificate_file_token1] = ACTIONS(2538), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2538), - [aux_sym_channel_timeout_token1] = ACTIONS(2538), - [aux_sym_check_host_ip_token1] = ACTIONS(2538), - [aux_sym_ciphers_token1] = ACTIONS(2538), - [aux_sym_cipher_token1] = ACTIONS(2540), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2538), - [aux_sym_compression_token1] = ACTIONS(2538), - [aux_sym_connection_attempts_token1] = ACTIONS(2538), - [aux_sym_connect_timeout_token1] = ACTIONS(2538), - [aux_sym_control_master_token1] = ACTIONS(2538), - [aux_sym_control_path_token1] = ACTIONS(2538), - [aux_sym_control_persist_token1] = ACTIONS(2538), - [aux_sym_dynamic_forward_token1] = ACTIONS(2538), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2538), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2538), - [aux_sym_escape_char_token1] = ACTIONS(2538), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2538), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2538), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2538), - [aux_sym_forward_agent_token1] = ACTIONS(2538), - [aux_sym_forward_x11_token1] = ACTIONS(2540), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2538), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2538), - [aux_sym_gateway_ports_token1] = ACTIONS(2538), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2538), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2538), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2538), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2538), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2538), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2538), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2538), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2538), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2538), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2538), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2538), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2538), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2538), - [aux_sym_host_key_alias_token1] = ACTIONS(2538), - [aux_sym_hostname_token1] = ACTIONS(2538), - [aux_sym_identities_only_token1] = ACTIONS(2538), - [aux_sym_identity_agent_token1] = ACTIONS(2538), - [aux_sym_identity_file_token1] = ACTIONS(2538), - [aux_sym_ignore_unknown_token1] = ACTIONS(2538), - [aux_sym_include_token1] = ACTIONS(2538), - [aux_sym_ip_qos_token1] = ACTIONS(2538), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2538), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2538), - [aux_sym_kex_algorithms_token1] = ACTIONS(2538), - [aux_sym_known_hosts_command_token1] = ACTIONS(2538), - [aux_sym_local_command_token1] = ACTIONS(2538), - [aux_sym_local_forward_token1] = ACTIONS(2538), - [aux_sym_log_level_token1] = ACTIONS(2538), - [aux_sym_log_verbose_token1] = ACTIONS(2538), - [aux_sym_macs_token1] = ACTIONS(2538), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2538), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2538), - [aux_sym_password_authentication_token1] = ACTIONS(2538), - [aux_sym_permit_local_command_token1] = ACTIONS(2538), - [aux_sym_permit_remote_open_token1] = ACTIONS(2538), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2538), - [aux_sym_port_token1] = ACTIONS(2538), - [aux_sym_preferred_authentications_token1] = ACTIONS(2538), - [aux_sym_protocol_token1] = ACTIONS(2538), - [aux_sym_proxy_command_token1] = ACTIONS(2538), - [aux_sym_proxy_jump_token1] = ACTIONS(2538), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2538), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2538), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2538), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2538), - [aux_sym_rekey_limit_token1] = ACTIONS(2538), - [aux_sym_remote_command_token1] = ACTIONS(2538), - [aux_sym_remote_forward_token1] = ACTIONS(2538), - [aux_sym_request_tty_token1] = ACTIONS(2538), - [aux_sym_required_rsa_size_token1] = ACTIONS(2538), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2538), - [aux_sym_security_key_provider_token1] = ACTIONS(2538), - [aux_sym_send_env_token1] = ACTIONS(2538), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2538), - [aux_sym_server_alive_interval_token1] = ACTIONS(2538), - [aux_sym_session_type_token1] = ACTIONS(2538), - [aux_sym_set_env_token1] = ACTIONS(2538), - [aux_sym_stdin_null_token1] = ACTIONS(2538), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2538), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2538), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2538), - [aux_sym_syslog_facility_token1] = ACTIONS(2538), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2538), - [aux_sym_keep_alive_token1] = ACTIONS(2538), - [aux_sym_tag_token1] = ACTIONS(2538), - [aux_sym_tunnel_token1] = ACTIONS(2540), - [aux_sym_tunnel_device_token1] = ACTIONS(2538), - [aux_sym_update_host_keys_token1] = ACTIONS(2538), - [aux_sym_use_keychain_token1] = ACTIONS(2538), - [aux_sym_use_roaming_token1] = ACTIONS(2538), - [aux_sym_user_token1] = ACTIONS(2540), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2538), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2538), - [aux_sym_visual_host_key_token1] = ACTIONS(2538), - [aux_sym_xauth_location_token1] = ACTIONS(2538), + [ts_builtin_sym_end] = ACTIONS(2547), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2549), + [anon_sym_DQUOTE] = ACTIONS(2547), + [aux_sym_match_token1] = ACTIONS(2547), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2547), + [aux_sym_address_family_token1] = ACTIONS(2547), + [aux_sym_batch_mode_token1] = ACTIONS(2547), + [aux_sym_bind_address_token1] = ACTIONS(2547), + [aux_sym_bind_interface_token1] = ACTIONS(2547), + [aux_sym_canonical_domains_token1] = ACTIONS(2547), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2547), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2547), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2547), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2547), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2547), + [aux_sym_certificate_file_token1] = ACTIONS(2547), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2547), + [aux_sym_channel_timeout_token1] = ACTIONS(2547), + [aux_sym_check_host_ip_token1] = ACTIONS(2547), + [aux_sym_ciphers_token1] = ACTIONS(2547), + [aux_sym_cipher_token1] = ACTIONS(2549), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2547), + [aux_sym_compression_token1] = ACTIONS(2547), + [aux_sym_connection_attempts_token1] = ACTIONS(2547), + [aux_sym_connect_timeout_token1] = ACTIONS(2547), + [aux_sym_control_master_token1] = ACTIONS(2547), + [aux_sym_control_path_token1] = ACTIONS(2547), + [aux_sym_control_persist_token1] = ACTIONS(2547), + [aux_sym_dynamic_forward_token1] = ACTIONS(2547), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2547), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2547), + [aux_sym_escape_char_token1] = ACTIONS(2547), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2547), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2547), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2547), + [aux_sym_forward_agent_token1] = ACTIONS(2547), + [aux_sym_forward_x11_token1] = ACTIONS(2549), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2547), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2547), + [aux_sym_gateway_ports_token1] = ACTIONS(2547), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2547), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2547), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2547), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2547), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2547), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2547), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2547), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2547), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2547), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2547), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2547), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2547), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2547), + [aux_sym_host_key_alias_token1] = ACTIONS(2547), + [aux_sym_hostname_token1] = ACTIONS(2547), + [aux_sym_identities_only_token1] = ACTIONS(2547), + [aux_sym_identity_agent_token1] = ACTIONS(2547), + [aux_sym_identity_file_token1] = ACTIONS(2547), + [aux_sym_ignore_unknown_token1] = ACTIONS(2547), + [aux_sym_include_token1] = ACTIONS(2547), + [aux_sym_ip_qos_token1] = ACTIONS(2547), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2547), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2547), + [aux_sym_kex_algorithms_token1] = ACTIONS(2547), + [aux_sym_known_hosts_command_token1] = ACTIONS(2547), + [aux_sym_local_command_token1] = ACTIONS(2547), + [aux_sym_local_forward_token1] = ACTIONS(2547), + [aux_sym_log_level_token1] = ACTIONS(2547), + [aux_sym_log_verbose_token1] = ACTIONS(2547), + [aux_sym_macs_token1] = ACTIONS(2547), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2547), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2547), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2547), + [aux_sym_password_authentication_token1] = ACTIONS(2547), + [aux_sym_permit_local_command_token1] = ACTIONS(2547), + [aux_sym_permit_remote_open_token1] = ACTIONS(2547), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2547), + [aux_sym_port_token1] = ACTIONS(2547), + [aux_sym_preferred_authentications_token1] = ACTIONS(2547), + [aux_sym_protocol_token1] = ACTIONS(2547), + [aux_sym_proxy_command_token1] = ACTIONS(2547), + [aux_sym_proxy_jump_token1] = ACTIONS(2547), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2547), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2547), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2547), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2547), + [aux_sym_rekey_limit_token1] = ACTIONS(2547), + [aux_sym_remote_command_token1] = ACTIONS(2547), + [aux_sym_remote_forward_token1] = ACTIONS(2547), + [aux_sym_request_tty_token1] = ACTIONS(2547), + [aux_sym_required_rsa_size_token1] = ACTIONS(2547), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2547), + [aux_sym_security_key_provider_token1] = ACTIONS(2547), + [aux_sym_send_env_token1] = ACTIONS(2547), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2547), + [aux_sym_server_alive_interval_token1] = ACTIONS(2547), + [aux_sym_session_type_token1] = ACTIONS(2547), + [aux_sym_set_env_token1] = ACTIONS(2547), + [aux_sym_stdin_null_token1] = ACTIONS(2547), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2547), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2547), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2547), + [aux_sym_syslog_facility_token1] = ACTIONS(2547), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2547), + [aux_sym_keep_alive_token1] = ACTIONS(2547), + [aux_sym_tag_token1] = ACTIONS(2547), + [aux_sym_tunnel_token1] = ACTIONS(2549), + [aux_sym_tunnel_device_token1] = ACTIONS(2547), + [aux_sym_update_host_keys_token1] = ACTIONS(2547), + [aux_sym_use_keychain_token1] = ACTIONS(2547), + [aux_sym_use_roaming_token1] = ACTIONS(2547), + [aux_sym_user_token1] = ACTIONS(2549), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2547), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2547), + [aux_sym_visual_host_key_token1] = ACTIONS(2547), + [aux_sym_xauth_location_token1] = ACTIONS(2547), }, [351] = { - [ts_builtin_sym_end] = ACTIONS(2544), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2546), - [anon_sym_DQUOTE] = ACTIONS(2544), - [aux_sym_match_token1] = ACTIONS(2544), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2544), - [aux_sym_address_family_token1] = ACTIONS(2544), - [aux_sym_batch_mode_token1] = ACTIONS(2544), - [aux_sym_bind_address_token1] = ACTIONS(2544), - [aux_sym_bind_interface_token1] = ACTIONS(2544), - [aux_sym_canonical_domains_token1] = ACTIONS(2544), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2544), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2544), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2544), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2544), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2544), - [aux_sym_certificate_file_token1] = ACTIONS(2544), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2544), - [aux_sym_channel_timeout_token1] = ACTIONS(2544), - [aux_sym_check_host_ip_token1] = ACTIONS(2544), - [aux_sym_ciphers_token1] = ACTIONS(2544), - [aux_sym_cipher_token1] = ACTIONS(2546), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2544), - [aux_sym_compression_token1] = ACTIONS(2544), - [aux_sym_connection_attempts_token1] = ACTIONS(2544), - [aux_sym_connect_timeout_token1] = ACTIONS(2544), - [aux_sym_control_master_token1] = ACTIONS(2544), - [aux_sym_control_path_token1] = ACTIONS(2544), - [aux_sym_control_persist_token1] = ACTIONS(2544), - [aux_sym_dynamic_forward_token1] = ACTIONS(2544), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2544), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2544), - [aux_sym_escape_char_token1] = ACTIONS(2544), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2544), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2544), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2544), - [aux_sym_forward_agent_token1] = ACTIONS(2544), - [aux_sym_forward_x11_token1] = ACTIONS(2546), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2544), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2544), - [aux_sym_gateway_ports_token1] = ACTIONS(2544), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2544), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2544), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2544), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2544), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2544), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2544), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2544), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2544), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2544), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2544), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2544), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2544), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2544), - [aux_sym_host_key_alias_token1] = ACTIONS(2544), - [aux_sym_hostname_token1] = ACTIONS(2544), - [aux_sym_identities_only_token1] = ACTIONS(2544), - [aux_sym_identity_agent_token1] = ACTIONS(2544), - [aux_sym_identity_file_token1] = ACTIONS(2544), - [aux_sym_ignore_unknown_token1] = ACTIONS(2544), - [aux_sym_include_token1] = ACTIONS(2544), - [aux_sym_ip_qos_token1] = ACTIONS(2544), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2544), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2544), - [aux_sym_kex_algorithms_token1] = ACTIONS(2544), - [aux_sym_known_hosts_command_token1] = ACTIONS(2544), - [aux_sym_local_command_token1] = ACTIONS(2544), - [aux_sym_local_forward_token1] = ACTIONS(2544), - [aux_sym_log_level_token1] = ACTIONS(2544), - [aux_sym_log_verbose_token1] = ACTIONS(2544), - [aux_sym_macs_token1] = ACTIONS(2544), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2544), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2544), - [aux_sym_password_authentication_token1] = ACTIONS(2544), - [aux_sym_permit_local_command_token1] = ACTIONS(2544), - [aux_sym_permit_remote_open_token1] = ACTIONS(2544), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2544), - [aux_sym_port_token1] = ACTIONS(2544), - [aux_sym_preferred_authentications_token1] = ACTIONS(2544), - [aux_sym_protocol_token1] = ACTIONS(2544), - [aux_sym_proxy_command_token1] = ACTIONS(2544), - [aux_sym_proxy_jump_token1] = ACTIONS(2544), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2544), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2544), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2544), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2544), - [aux_sym_rekey_limit_token1] = ACTIONS(2544), - [aux_sym_remote_command_token1] = ACTIONS(2544), - [aux_sym_remote_forward_token1] = ACTIONS(2544), - [aux_sym_request_tty_token1] = ACTIONS(2544), - [aux_sym_required_rsa_size_token1] = ACTIONS(2544), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2544), - [aux_sym_security_key_provider_token1] = ACTIONS(2544), - [aux_sym_send_env_token1] = ACTIONS(2544), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2544), - [aux_sym_server_alive_interval_token1] = ACTIONS(2544), - [aux_sym_session_type_token1] = ACTIONS(2544), - [aux_sym_set_env_token1] = ACTIONS(2544), - [aux_sym_stdin_null_token1] = ACTIONS(2544), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2544), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2544), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2544), - [aux_sym_syslog_facility_token1] = ACTIONS(2544), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2544), - [aux_sym_keep_alive_token1] = ACTIONS(2544), - [aux_sym_tag_token1] = ACTIONS(2544), - [aux_sym_tunnel_token1] = ACTIONS(2546), - [aux_sym_tunnel_device_token1] = ACTIONS(2544), - [aux_sym_update_host_keys_token1] = ACTIONS(2544), - [aux_sym_use_keychain_token1] = ACTIONS(2544), - [aux_sym_use_roaming_token1] = ACTIONS(2544), - [aux_sym_user_token1] = ACTIONS(2546), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2544), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2544), - [aux_sym_visual_host_key_token1] = ACTIONS(2544), - [aux_sym_xauth_location_token1] = ACTIONS(2544), + [ts_builtin_sym_end] = ACTIONS(2551), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2553), + [anon_sym_DQUOTE] = ACTIONS(2555), + [aux_sym_match_token1] = ACTIONS(2551), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2551), + [aux_sym_address_family_token1] = ACTIONS(2551), + [aux_sym_batch_mode_token1] = ACTIONS(2551), + [aux_sym_bind_address_token1] = ACTIONS(2551), + [aux_sym_bind_interface_token1] = ACTIONS(2551), + [aux_sym_canonical_domains_token1] = ACTIONS(2551), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2551), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2551), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2551), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2551), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2551), + [aux_sym_certificate_file_token1] = ACTIONS(2551), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2551), + [aux_sym_channel_timeout_token1] = ACTIONS(2551), + [aux_sym_check_host_ip_token1] = ACTIONS(2551), + [aux_sym_ciphers_token1] = ACTIONS(2551), + [aux_sym_cipher_token1] = ACTIONS(2553), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2551), + [aux_sym_compression_token1] = ACTIONS(2551), + [aux_sym_connection_attempts_token1] = ACTIONS(2551), + [aux_sym_connect_timeout_token1] = ACTIONS(2551), + [aux_sym_control_master_token1] = ACTIONS(2551), + [aux_sym_control_path_token1] = ACTIONS(2551), + [aux_sym_control_persist_token1] = ACTIONS(2551), + [aux_sym_dynamic_forward_token1] = ACTIONS(2551), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2551), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2551), + [aux_sym_escape_char_token1] = ACTIONS(2551), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2551), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2551), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2551), + [aux_sym_forward_agent_token1] = ACTIONS(2551), + [aux_sym_forward_x11_token1] = ACTIONS(2553), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2551), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2551), + [aux_sym_gateway_ports_token1] = ACTIONS(2551), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2551), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2551), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2551), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2551), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2551), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2551), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2551), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2551), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2551), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2551), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2551), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2551), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2551), + [aux_sym_host_key_alias_token1] = ACTIONS(2551), + [aux_sym_hostname_token1] = ACTIONS(2551), + [aux_sym_identities_only_token1] = ACTIONS(2551), + [aux_sym_identity_agent_token1] = ACTIONS(2551), + [aux_sym_identity_file_token1] = ACTIONS(2551), + [aux_sym_ignore_unknown_token1] = ACTIONS(2551), + [aux_sym_include_token1] = ACTIONS(2551), + [aux_sym_ip_qos_token1] = ACTIONS(2551), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2551), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2551), + [aux_sym_kex_algorithms_token1] = ACTIONS(2551), + [aux_sym_known_hosts_command_token1] = ACTIONS(2551), + [aux_sym_local_command_token1] = ACTIONS(2551), + [aux_sym_local_forward_token1] = ACTIONS(2551), + [aux_sym_log_level_token1] = ACTIONS(2551), + [aux_sym_log_verbose_token1] = ACTIONS(2551), + [aux_sym_macs_token1] = ACTIONS(2551), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2551), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2551), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2551), + [aux_sym_password_authentication_token1] = ACTIONS(2551), + [aux_sym_permit_local_command_token1] = ACTIONS(2551), + [aux_sym_permit_remote_open_token1] = ACTIONS(2551), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2551), + [aux_sym_port_token1] = ACTIONS(2551), + [aux_sym_preferred_authentications_token1] = ACTIONS(2551), + [aux_sym_protocol_token1] = ACTIONS(2551), + [aux_sym_proxy_command_token1] = ACTIONS(2551), + [aux_sym_proxy_jump_token1] = ACTIONS(2551), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2551), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2551), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2551), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2551), + [aux_sym_rekey_limit_token1] = ACTIONS(2551), + [aux_sym_remote_command_token1] = ACTIONS(2551), + [aux_sym_remote_forward_token1] = ACTIONS(2551), + [aux_sym_request_tty_token1] = ACTIONS(2551), + [aux_sym_required_rsa_size_token1] = ACTIONS(2551), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2551), + [aux_sym_security_key_provider_token1] = ACTIONS(2551), + [aux_sym_send_env_token1] = ACTIONS(2551), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2551), + [aux_sym_server_alive_interval_token1] = ACTIONS(2551), + [aux_sym_session_type_token1] = ACTIONS(2551), + [aux_sym_set_env_token1] = ACTIONS(2551), + [aux_sym_stdin_null_token1] = ACTIONS(2551), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2551), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2551), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2551), + [aux_sym_syslog_facility_token1] = ACTIONS(2551), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2551), + [aux_sym_keep_alive_token1] = ACTIONS(2551), + [aux_sym_tag_token1] = ACTIONS(2551), + [aux_sym_tunnel_token1] = ACTIONS(2553), + [aux_sym_tunnel_device_token1] = ACTIONS(2551), + [aux_sym_update_host_keys_token1] = ACTIONS(2551), + [aux_sym_use_keychain_token1] = ACTIONS(2551), + [aux_sym_use_roaming_token1] = ACTIONS(2551), + [aux_sym_user_token1] = ACTIONS(2553), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2551), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2551), + [aux_sym_visual_host_key_token1] = ACTIONS(2551), + [aux_sym_xauth_location_token1] = ACTIONS(2551), }, [352] = { - [ts_builtin_sym_end] = ACTIONS(2548), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2550), - [anon_sym_DQUOTE] = ACTIONS(2548), - [aux_sym_match_token1] = ACTIONS(2548), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2548), - [aux_sym_address_family_token1] = ACTIONS(2548), - [aux_sym_batch_mode_token1] = ACTIONS(2548), - [aux_sym_bind_address_token1] = ACTIONS(2548), - [aux_sym_bind_interface_token1] = ACTIONS(2548), - [aux_sym_canonical_domains_token1] = ACTIONS(2548), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2548), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2548), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2548), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2548), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2548), - [aux_sym_certificate_file_token1] = ACTIONS(2548), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2548), - [aux_sym_channel_timeout_token1] = ACTIONS(2548), - [aux_sym_check_host_ip_token1] = ACTIONS(2548), - [aux_sym_ciphers_token1] = ACTIONS(2548), - [aux_sym_cipher_token1] = ACTIONS(2550), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2548), - [aux_sym_compression_token1] = ACTIONS(2548), - [aux_sym_connection_attempts_token1] = ACTIONS(2548), - [aux_sym_connect_timeout_token1] = ACTIONS(2548), - [aux_sym_control_master_token1] = ACTIONS(2548), - [aux_sym_control_path_token1] = ACTIONS(2548), - [aux_sym_control_persist_token1] = ACTIONS(2548), - [aux_sym_dynamic_forward_token1] = ACTIONS(2548), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2548), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2548), - [aux_sym_escape_char_token1] = ACTIONS(2548), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2548), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2548), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2548), - [aux_sym_forward_agent_token1] = ACTIONS(2548), - [aux_sym_forward_x11_token1] = ACTIONS(2550), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2548), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2548), - [aux_sym_gateway_ports_token1] = ACTIONS(2548), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2548), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2548), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2548), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2548), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2548), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2548), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2548), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2548), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2548), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2548), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2548), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2548), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2548), - [aux_sym_host_key_alias_token1] = ACTIONS(2548), - [aux_sym_hostname_token1] = ACTIONS(2548), - [aux_sym_identities_only_token1] = ACTIONS(2548), - [aux_sym_identity_agent_token1] = ACTIONS(2548), - [aux_sym_identity_file_token1] = ACTIONS(2548), - [aux_sym_ignore_unknown_token1] = ACTIONS(2548), - [aux_sym_include_token1] = ACTIONS(2548), - [aux_sym_ip_qos_token1] = ACTIONS(2548), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2548), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2548), - [aux_sym_kex_algorithms_token1] = ACTIONS(2548), - [aux_sym_known_hosts_command_token1] = ACTIONS(2548), - [aux_sym_local_command_token1] = ACTIONS(2548), - [aux_sym_local_forward_token1] = ACTIONS(2548), - [aux_sym_log_level_token1] = ACTIONS(2548), - [aux_sym_log_verbose_token1] = ACTIONS(2548), - [aux_sym_macs_token1] = ACTIONS(2548), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2548), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2548), - [aux_sym_password_authentication_token1] = ACTIONS(2548), - [aux_sym_permit_local_command_token1] = ACTIONS(2548), - [aux_sym_permit_remote_open_token1] = ACTIONS(2548), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2548), - [aux_sym_port_token1] = ACTIONS(2548), - [aux_sym_preferred_authentications_token1] = ACTIONS(2548), - [aux_sym_protocol_token1] = ACTIONS(2548), - [aux_sym_proxy_command_token1] = ACTIONS(2548), - [aux_sym_proxy_jump_token1] = ACTIONS(2548), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2548), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2548), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2548), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2548), - [aux_sym_rekey_limit_token1] = ACTIONS(2548), - [aux_sym_remote_command_token1] = ACTIONS(2548), - [aux_sym_remote_forward_token1] = ACTIONS(2548), - [aux_sym_request_tty_token1] = ACTIONS(2548), - [aux_sym_required_rsa_size_token1] = ACTIONS(2548), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2548), - [aux_sym_security_key_provider_token1] = ACTIONS(2548), - [aux_sym_send_env_token1] = ACTIONS(2548), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2548), - [aux_sym_server_alive_interval_token1] = ACTIONS(2548), - [aux_sym_session_type_token1] = ACTIONS(2548), - [aux_sym_set_env_token1] = ACTIONS(2548), - [aux_sym_stdin_null_token1] = ACTIONS(2548), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2548), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2548), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2548), - [aux_sym_syslog_facility_token1] = ACTIONS(2548), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2548), - [aux_sym_keep_alive_token1] = ACTIONS(2548), - [aux_sym_tag_token1] = ACTIONS(2548), - [aux_sym_tunnel_token1] = ACTIONS(2550), - [aux_sym_tunnel_device_token1] = ACTIONS(2548), - [aux_sym_update_host_keys_token1] = ACTIONS(2548), - [aux_sym_use_keychain_token1] = ACTIONS(2548), - [aux_sym_use_roaming_token1] = ACTIONS(2548), - [aux_sym_user_token1] = ACTIONS(2550), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2548), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2548), - [aux_sym_visual_host_key_token1] = ACTIONS(2548), - [aux_sym_xauth_location_token1] = ACTIONS(2548), + [ts_builtin_sym_end] = ACTIONS(2557), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2561), + [aux_sym_match_token1] = ACTIONS(2557), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2557), + [aux_sym_address_family_token1] = ACTIONS(2557), + [aux_sym_batch_mode_token1] = ACTIONS(2557), + [aux_sym_bind_address_token1] = ACTIONS(2557), + [aux_sym_bind_interface_token1] = ACTIONS(2557), + [aux_sym_canonical_domains_token1] = ACTIONS(2557), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2557), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2557), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2557), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2557), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2557), + [aux_sym_certificate_file_token1] = ACTIONS(2557), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2557), + [aux_sym_channel_timeout_token1] = ACTIONS(2557), + [aux_sym_check_host_ip_token1] = ACTIONS(2557), + [aux_sym_ciphers_token1] = ACTIONS(2557), + [aux_sym_cipher_token1] = ACTIONS(2559), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2557), + [aux_sym_compression_token1] = ACTIONS(2557), + [aux_sym_connection_attempts_token1] = ACTIONS(2557), + [aux_sym_connect_timeout_token1] = ACTIONS(2557), + [aux_sym_control_master_token1] = ACTIONS(2557), + [aux_sym_control_path_token1] = ACTIONS(2557), + [aux_sym_control_persist_token1] = ACTIONS(2557), + [aux_sym_dynamic_forward_token1] = ACTIONS(2557), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2557), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2557), + [aux_sym_escape_char_token1] = ACTIONS(2557), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2557), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2557), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2557), + [aux_sym_forward_agent_token1] = ACTIONS(2557), + [aux_sym_forward_x11_token1] = ACTIONS(2559), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2557), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2557), + [aux_sym_gateway_ports_token1] = ACTIONS(2557), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2557), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2557), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2557), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2557), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2557), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2557), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2557), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2557), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2557), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2557), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2557), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2557), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2557), + [aux_sym_host_key_alias_token1] = ACTIONS(2557), + [aux_sym_hostname_token1] = ACTIONS(2557), + [aux_sym_identities_only_token1] = ACTIONS(2557), + [aux_sym_identity_agent_token1] = ACTIONS(2557), + [aux_sym_identity_file_token1] = ACTIONS(2557), + [aux_sym_ignore_unknown_token1] = ACTIONS(2557), + [aux_sym_include_token1] = ACTIONS(2557), + [aux_sym_ip_qos_token1] = ACTIONS(2557), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2557), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2557), + [aux_sym_kex_algorithms_token1] = ACTIONS(2557), + [aux_sym_known_hosts_command_token1] = ACTIONS(2557), + [aux_sym_local_command_token1] = ACTIONS(2557), + [aux_sym_local_forward_token1] = ACTIONS(2557), + [aux_sym_log_level_token1] = ACTIONS(2557), + [aux_sym_log_verbose_token1] = ACTIONS(2557), + [aux_sym_macs_token1] = ACTIONS(2557), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2557), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2557), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2557), + [aux_sym_password_authentication_token1] = ACTIONS(2557), + [aux_sym_permit_local_command_token1] = ACTIONS(2557), + [aux_sym_permit_remote_open_token1] = ACTIONS(2557), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2557), + [aux_sym_port_token1] = ACTIONS(2557), + [aux_sym_preferred_authentications_token1] = ACTIONS(2557), + [aux_sym_protocol_token1] = ACTIONS(2557), + [aux_sym_proxy_command_token1] = ACTIONS(2557), + [aux_sym_proxy_jump_token1] = ACTIONS(2557), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2557), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2557), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2557), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2557), + [aux_sym_rekey_limit_token1] = ACTIONS(2557), + [aux_sym_remote_command_token1] = ACTIONS(2557), + [aux_sym_remote_forward_token1] = ACTIONS(2557), + [aux_sym_request_tty_token1] = ACTIONS(2557), + [aux_sym_required_rsa_size_token1] = ACTIONS(2557), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2557), + [aux_sym_security_key_provider_token1] = ACTIONS(2557), + [aux_sym_send_env_token1] = ACTIONS(2557), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2557), + [aux_sym_server_alive_interval_token1] = ACTIONS(2557), + [aux_sym_session_type_token1] = ACTIONS(2557), + [aux_sym_set_env_token1] = ACTIONS(2557), + [aux_sym_stdin_null_token1] = ACTIONS(2557), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2557), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2557), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2557), + [aux_sym_syslog_facility_token1] = ACTIONS(2557), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2557), + [aux_sym_keep_alive_token1] = ACTIONS(2557), + [aux_sym_tag_token1] = ACTIONS(2557), + [aux_sym_tunnel_token1] = ACTIONS(2559), + [aux_sym_tunnel_device_token1] = ACTIONS(2557), + [aux_sym_update_host_keys_token1] = ACTIONS(2557), + [aux_sym_use_keychain_token1] = ACTIONS(2557), + [aux_sym_use_roaming_token1] = ACTIONS(2557), + [aux_sym_user_token1] = ACTIONS(2559), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2557), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2557), + [aux_sym_visual_host_key_token1] = ACTIONS(2557), + [aux_sym_xauth_location_token1] = ACTIONS(2557), }, [353] = { - [ts_builtin_sym_end] = ACTIONS(2552), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2556), - [aux_sym_match_token1] = ACTIONS(2552), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2552), - [aux_sym_address_family_token1] = ACTIONS(2552), - [aux_sym_batch_mode_token1] = ACTIONS(2552), - [aux_sym_bind_address_token1] = ACTIONS(2552), - [aux_sym_bind_interface_token1] = ACTIONS(2552), - [aux_sym_canonical_domains_token1] = ACTIONS(2552), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2552), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2552), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2552), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2552), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2552), - [aux_sym_certificate_file_token1] = ACTIONS(2552), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2552), - [aux_sym_channel_timeout_token1] = ACTIONS(2552), - [aux_sym_check_host_ip_token1] = ACTIONS(2552), - [aux_sym_ciphers_token1] = ACTIONS(2552), - [aux_sym_cipher_token1] = ACTIONS(2554), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2552), - [aux_sym_compression_token1] = ACTIONS(2552), - [aux_sym_connection_attempts_token1] = ACTIONS(2552), - [aux_sym_connect_timeout_token1] = ACTIONS(2552), - [aux_sym_control_master_token1] = ACTIONS(2552), - [aux_sym_control_path_token1] = ACTIONS(2552), - [aux_sym_control_persist_token1] = ACTIONS(2552), - [aux_sym_dynamic_forward_token1] = ACTIONS(2552), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2552), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2552), - [aux_sym_escape_char_token1] = ACTIONS(2552), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2552), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2552), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2552), - [aux_sym_forward_agent_token1] = ACTIONS(2552), - [aux_sym_forward_x11_token1] = ACTIONS(2554), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2552), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2552), - [aux_sym_gateway_ports_token1] = ACTIONS(2552), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2552), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2552), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2552), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2552), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2552), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2552), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2552), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2552), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2552), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2552), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2552), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2552), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2552), - [aux_sym_host_key_alias_token1] = ACTIONS(2552), - [aux_sym_hostname_token1] = ACTIONS(2552), - [aux_sym_identities_only_token1] = ACTIONS(2552), - [aux_sym_identity_agent_token1] = ACTIONS(2552), - [aux_sym_identity_file_token1] = ACTIONS(2552), - [aux_sym_ignore_unknown_token1] = ACTIONS(2552), - [aux_sym_include_token1] = ACTIONS(2552), - [aux_sym_ip_qos_token1] = ACTIONS(2552), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2552), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2552), - [aux_sym_kex_algorithms_token1] = ACTIONS(2552), - [aux_sym_known_hosts_command_token1] = ACTIONS(2552), - [aux_sym_local_command_token1] = ACTIONS(2552), - [aux_sym_local_forward_token1] = ACTIONS(2552), - [aux_sym_log_level_token1] = ACTIONS(2552), - [aux_sym_log_verbose_token1] = ACTIONS(2552), - [aux_sym_macs_token1] = ACTIONS(2552), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2552), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2552), - [aux_sym_password_authentication_token1] = ACTIONS(2552), - [aux_sym_permit_local_command_token1] = ACTIONS(2552), - [aux_sym_permit_remote_open_token1] = ACTIONS(2552), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2552), - [aux_sym_port_token1] = ACTIONS(2552), - [aux_sym_preferred_authentications_token1] = ACTIONS(2552), - [aux_sym_protocol_token1] = ACTIONS(2552), - [aux_sym_proxy_command_token1] = ACTIONS(2552), - [aux_sym_proxy_jump_token1] = ACTIONS(2552), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2552), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2552), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2552), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2552), - [aux_sym_rekey_limit_token1] = ACTIONS(2552), - [aux_sym_remote_command_token1] = ACTIONS(2552), - [aux_sym_remote_forward_token1] = ACTIONS(2552), - [aux_sym_request_tty_token1] = ACTIONS(2552), - [aux_sym_required_rsa_size_token1] = ACTIONS(2552), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2552), - [aux_sym_security_key_provider_token1] = ACTIONS(2552), - [aux_sym_send_env_token1] = ACTIONS(2552), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2552), - [aux_sym_server_alive_interval_token1] = ACTIONS(2552), - [aux_sym_session_type_token1] = ACTIONS(2552), - [aux_sym_set_env_token1] = ACTIONS(2552), - [aux_sym_stdin_null_token1] = ACTIONS(2552), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2552), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2552), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2552), - [aux_sym_syslog_facility_token1] = ACTIONS(2552), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2552), - [aux_sym_keep_alive_token1] = ACTIONS(2552), - [aux_sym_tag_token1] = ACTIONS(2552), - [aux_sym_tunnel_token1] = ACTIONS(2554), - [aux_sym_tunnel_device_token1] = ACTIONS(2552), - [aux_sym_update_host_keys_token1] = ACTIONS(2552), - [aux_sym_use_keychain_token1] = ACTIONS(2552), - [aux_sym_use_roaming_token1] = ACTIONS(2552), - [aux_sym_user_token1] = ACTIONS(2554), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2552), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2552), - [aux_sym_visual_host_key_token1] = ACTIONS(2552), - [aux_sym_xauth_location_token1] = ACTIONS(2552), + [ts_builtin_sym_end] = ACTIONS(2563), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2563), + [aux_sym_match_token1] = ACTIONS(2563), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2563), + [aux_sym_address_family_token1] = ACTIONS(2563), + [aux_sym_batch_mode_token1] = ACTIONS(2563), + [aux_sym_bind_address_token1] = ACTIONS(2563), + [aux_sym_bind_interface_token1] = ACTIONS(2563), + [aux_sym_canonical_domains_token1] = ACTIONS(2563), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2563), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2563), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2563), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2563), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2563), + [aux_sym_certificate_file_token1] = ACTIONS(2563), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2563), + [aux_sym_channel_timeout_token1] = ACTIONS(2563), + [aux_sym_check_host_ip_token1] = ACTIONS(2563), + [aux_sym_ciphers_token1] = ACTIONS(2563), + [aux_sym_cipher_token1] = ACTIONS(2565), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2563), + [aux_sym_compression_token1] = ACTIONS(2563), + [aux_sym_connection_attempts_token1] = ACTIONS(2563), + [aux_sym_connect_timeout_token1] = ACTIONS(2563), + [aux_sym_control_master_token1] = ACTIONS(2563), + [aux_sym_control_path_token1] = ACTIONS(2563), + [aux_sym_control_persist_token1] = ACTIONS(2563), + [aux_sym_dynamic_forward_token1] = ACTIONS(2563), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2563), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2563), + [aux_sym_escape_char_token1] = ACTIONS(2563), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2563), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2563), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2563), + [aux_sym_forward_agent_token1] = ACTIONS(2563), + [aux_sym_forward_x11_token1] = ACTIONS(2565), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2563), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2563), + [aux_sym_gateway_ports_token1] = ACTIONS(2563), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2563), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2563), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2563), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2563), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2563), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2563), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2563), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2563), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2563), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2563), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2563), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2563), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2563), + [aux_sym_host_key_alias_token1] = ACTIONS(2563), + [aux_sym_hostname_token1] = ACTIONS(2563), + [aux_sym_identities_only_token1] = ACTIONS(2563), + [aux_sym_identity_agent_token1] = ACTIONS(2563), + [aux_sym_identity_file_token1] = ACTIONS(2563), + [aux_sym_ignore_unknown_token1] = ACTIONS(2563), + [aux_sym_include_token1] = ACTIONS(2563), + [aux_sym_ip_qos_token1] = ACTIONS(2563), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2563), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2563), + [aux_sym_kex_algorithms_token1] = ACTIONS(2563), + [aux_sym_known_hosts_command_token1] = ACTIONS(2563), + [aux_sym_local_command_token1] = ACTIONS(2563), + [aux_sym_local_forward_token1] = ACTIONS(2563), + [aux_sym_log_level_token1] = ACTIONS(2563), + [aux_sym_log_verbose_token1] = ACTIONS(2563), + [aux_sym_macs_token1] = ACTIONS(2563), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2563), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2563), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2563), + [aux_sym_password_authentication_token1] = ACTIONS(2563), + [aux_sym_permit_local_command_token1] = ACTIONS(2563), + [aux_sym_permit_remote_open_token1] = ACTIONS(2563), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2563), + [aux_sym_port_token1] = ACTIONS(2563), + [aux_sym_preferred_authentications_token1] = ACTIONS(2563), + [aux_sym_protocol_token1] = ACTIONS(2563), + [aux_sym_proxy_command_token1] = ACTIONS(2563), + [aux_sym_proxy_jump_token1] = ACTIONS(2563), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2563), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2563), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2563), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2563), + [aux_sym_rekey_limit_token1] = ACTIONS(2563), + [aux_sym_remote_command_token1] = ACTIONS(2563), + [aux_sym_remote_forward_token1] = ACTIONS(2563), + [aux_sym_request_tty_token1] = ACTIONS(2563), + [aux_sym_required_rsa_size_token1] = ACTIONS(2563), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2563), + [aux_sym_security_key_provider_token1] = ACTIONS(2563), + [aux_sym_send_env_token1] = ACTIONS(2563), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2563), + [aux_sym_server_alive_interval_token1] = ACTIONS(2563), + [aux_sym_session_type_token1] = ACTIONS(2563), + [aux_sym_set_env_token1] = ACTIONS(2563), + [aux_sym_stdin_null_token1] = ACTIONS(2563), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2563), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2563), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2563), + [aux_sym_syslog_facility_token1] = ACTIONS(2563), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2563), + [aux_sym_keep_alive_token1] = ACTIONS(2563), + [aux_sym_tag_token1] = ACTIONS(2563), + [aux_sym_tunnel_token1] = ACTIONS(2565), + [aux_sym_tunnel_device_token1] = ACTIONS(2563), + [aux_sym_update_host_keys_token1] = ACTIONS(2563), + [aux_sym_use_keychain_token1] = ACTIONS(2563), + [aux_sym_use_roaming_token1] = ACTIONS(2563), + [aux_sym_user_token1] = ACTIONS(2565), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2563), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2563), + [aux_sym_visual_host_key_token1] = ACTIONS(2563), + [aux_sym_xauth_location_token1] = ACTIONS(2563), }, [354] = { - [ts_builtin_sym_end] = ACTIONS(2558), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2560), - [anon_sym_DQUOTE] = ACTIONS(2562), - [aux_sym_match_token1] = ACTIONS(2558), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2558), - [aux_sym_address_family_token1] = ACTIONS(2558), - [aux_sym_batch_mode_token1] = ACTIONS(2558), - [aux_sym_bind_address_token1] = ACTIONS(2558), - [aux_sym_bind_interface_token1] = ACTIONS(2558), - [aux_sym_canonical_domains_token1] = ACTIONS(2558), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2558), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2558), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2558), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2558), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2558), - [aux_sym_certificate_file_token1] = ACTIONS(2558), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2558), - [aux_sym_channel_timeout_token1] = ACTIONS(2558), - [aux_sym_check_host_ip_token1] = ACTIONS(2558), - [aux_sym_ciphers_token1] = ACTIONS(2558), - [aux_sym_cipher_token1] = ACTIONS(2560), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2558), - [aux_sym_compression_token1] = ACTIONS(2558), - [aux_sym_connection_attempts_token1] = ACTIONS(2558), - [aux_sym_connect_timeout_token1] = ACTIONS(2558), - [aux_sym_control_master_token1] = ACTIONS(2558), - [aux_sym_control_path_token1] = ACTIONS(2558), - [aux_sym_control_persist_token1] = ACTIONS(2558), - [aux_sym_dynamic_forward_token1] = ACTIONS(2558), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2558), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2558), - [aux_sym_escape_char_token1] = ACTIONS(2558), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2558), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2558), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2558), - [aux_sym_forward_agent_token1] = ACTIONS(2558), - [aux_sym_forward_x11_token1] = ACTIONS(2560), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2558), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2558), - [aux_sym_gateway_ports_token1] = ACTIONS(2558), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2558), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2558), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2558), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2558), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2558), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2558), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2558), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2558), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2558), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2558), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2558), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2558), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2558), - [aux_sym_host_key_alias_token1] = ACTIONS(2558), - [aux_sym_hostname_token1] = ACTIONS(2558), - [aux_sym_identities_only_token1] = ACTIONS(2558), - [aux_sym_identity_agent_token1] = ACTIONS(2558), - [aux_sym_identity_file_token1] = ACTIONS(2558), - [aux_sym_ignore_unknown_token1] = ACTIONS(2558), - [aux_sym_include_token1] = ACTIONS(2558), - [aux_sym_ip_qos_token1] = ACTIONS(2558), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2558), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2558), - [aux_sym_kex_algorithms_token1] = ACTIONS(2558), - [aux_sym_known_hosts_command_token1] = ACTIONS(2558), - [aux_sym_local_command_token1] = ACTIONS(2558), - [aux_sym_local_forward_token1] = ACTIONS(2558), - [aux_sym_log_level_token1] = ACTIONS(2558), - [aux_sym_log_verbose_token1] = ACTIONS(2558), - [aux_sym_macs_token1] = ACTIONS(2558), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2558), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2558), - [aux_sym_password_authentication_token1] = ACTIONS(2558), - [aux_sym_permit_local_command_token1] = ACTIONS(2558), - [aux_sym_permit_remote_open_token1] = ACTIONS(2558), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2558), - [aux_sym_port_token1] = ACTIONS(2558), - [aux_sym_preferred_authentications_token1] = ACTIONS(2558), - [aux_sym_protocol_token1] = ACTIONS(2558), - [aux_sym_proxy_command_token1] = ACTIONS(2558), - [aux_sym_proxy_jump_token1] = ACTIONS(2558), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2558), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2558), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2558), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2558), - [aux_sym_rekey_limit_token1] = ACTIONS(2558), - [aux_sym_remote_command_token1] = ACTIONS(2558), - [aux_sym_remote_forward_token1] = ACTIONS(2558), - [aux_sym_request_tty_token1] = ACTIONS(2558), - [aux_sym_required_rsa_size_token1] = ACTIONS(2558), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2558), - [aux_sym_security_key_provider_token1] = ACTIONS(2558), - [aux_sym_send_env_token1] = ACTIONS(2558), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2558), - [aux_sym_server_alive_interval_token1] = ACTIONS(2558), - [aux_sym_session_type_token1] = ACTIONS(2558), - [aux_sym_set_env_token1] = ACTIONS(2558), - [aux_sym_stdin_null_token1] = ACTIONS(2558), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2558), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2558), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2558), - [aux_sym_syslog_facility_token1] = ACTIONS(2558), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2558), - [aux_sym_keep_alive_token1] = ACTIONS(2558), - [aux_sym_tag_token1] = ACTIONS(2558), - [aux_sym_tunnel_token1] = ACTIONS(2560), - [aux_sym_tunnel_device_token1] = ACTIONS(2558), - [aux_sym_update_host_keys_token1] = ACTIONS(2558), - [aux_sym_use_keychain_token1] = ACTIONS(2558), - [aux_sym_use_roaming_token1] = ACTIONS(2558), - [aux_sym_user_token1] = ACTIONS(2560), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2558), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2558), - [aux_sym_visual_host_key_token1] = ACTIONS(2558), - [aux_sym_xauth_location_token1] = ACTIONS(2558), + [ts_builtin_sym_end] = ACTIONS(2567), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2569), + [anon_sym_DQUOTE] = ACTIONS(2567), + [aux_sym_match_token1] = ACTIONS(2567), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2567), + [aux_sym_address_family_token1] = ACTIONS(2567), + [aux_sym_batch_mode_token1] = ACTIONS(2567), + [aux_sym_bind_address_token1] = ACTIONS(2567), + [aux_sym_bind_interface_token1] = ACTIONS(2567), + [aux_sym_canonical_domains_token1] = ACTIONS(2567), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2567), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2567), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2567), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2567), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2567), + [aux_sym_certificate_file_token1] = ACTIONS(2567), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2567), + [aux_sym_channel_timeout_token1] = ACTIONS(2567), + [aux_sym_check_host_ip_token1] = ACTIONS(2567), + [aux_sym_ciphers_token1] = ACTIONS(2567), + [aux_sym_cipher_token1] = ACTIONS(2569), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2567), + [aux_sym_compression_token1] = ACTIONS(2567), + [aux_sym_connection_attempts_token1] = ACTIONS(2567), + [aux_sym_connect_timeout_token1] = ACTIONS(2567), + [aux_sym_control_master_token1] = ACTIONS(2567), + [aux_sym_control_path_token1] = ACTIONS(2567), + [aux_sym_control_persist_token1] = ACTIONS(2567), + [aux_sym_dynamic_forward_token1] = ACTIONS(2567), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2567), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2567), + [aux_sym_escape_char_token1] = ACTIONS(2567), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2567), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2567), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2567), + [aux_sym_forward_agent_token1] = ACTIONS(2567), + [aux_sym_forward_x11_token1] = ACTIONS(2569), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2567), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2567), + [aux_sym_gateway_ports_token1] = ACTIONS(2567), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2567), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2567), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2567), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2567), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2567), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2567), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2567), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2567), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2567), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2567), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2567), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2567), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2567), + [aux_sym_host_key_alias_token1] = ACTIONS(2567), + [aux_sym_hostname_token1] = ACTIONS(2567), + [aux_sym_identities_only_token1] = ACTIONS(2567), + [aux_sym_identity_agent_token1] = ACTIONS(2567), + [aux_sym_identity_file_token1] = ACTIONS(2567), + [aux_sym_ignore_unknown_token1] = ACTIONS(2567), + [aux_sym_include_token1] = ACTIONS(2567), + [aux_sym_ip_qos_token1] = ACTIONS(2567), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2567), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2567), + [aux_sym_kex_algorithms_token1] = ACTIONS(2567), + [aux_sym_known_hosts_command_token1] = ACTIONS(2567), + [aux_sym_local_command_token1] = ACTIONS(2567), + [aux_sym_local_forward_token1] = ACTIONS(2567), + [aux_sym_log_level_token1] = ACTIONS(2567), + [aux_sym_log_verbose_token1] = ACTIONS(2567), + [aux_sym_macs_token1] = ACTIONS(2567), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2567), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2567), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2567), + [aux_sym_password_authentication_token1] = ACTIONS(2567), + [aux_sym_permit_local_command_token1] = ACTIONS(2567), + [aux_sym_permit_remote_open_token1] = ACTIONS(2567), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2567), + [aux_sym_port_token1] = ACTIONS(2567), + [aux_sym_preferred_authentications_token1] = ACTIONS(2567), + [aux_sym_protocol_token1] = ACTIONS(2567), + [aux_sym_proxy_command_token1] = ACTIONS(2567), + [aux_sym_proxy_jump_token1] = ACTIONS(2567), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2567), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2567), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2567), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2567), + [aux_sym_rekey_limit_token1] = ACTIONS(2567), + [aux_sym_remote_command_token1] = ACTIONS(2567), + [aux_sym_remote_forward_token1] = ACTIONS(2567), + [aux_sym_request_tty_token1] = ACTIONS(2567), + [aux_sym_required_rsa_size_token1] = ACTIONS(2567), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2567), + [aux_sym_security_key_provider_token1] = ACTIONS(2567), + [aux_sym_send_env_token1] = ACTIONS(2567), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2567), + [aux_sym_server_alive_interval_token1] = ACTIONS(2567), + [aux_sym_session_type_token1] = ACTIONS(2567), + [aux_sym_set_env_token1] = ACTIONS(2567), + [aux_sym_stdin_null_token1] = ACTIONS(2567), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2567), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2567), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2567), + [aux_sym_syslog_facility_token1] = ACTIONS(2567), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2567), + [aux_sym_keep_alive_token1] = ACTIONS(2567), + [aux_sym_tag_token1] = ACTIONS(2567), + [aux_sym_tunnel_token1] = ACTIONS(2569), + [aux_sym_tunnel_device_token1] = ACTIONS(2567), + [aux_sym_update_host_keys_token1] = ACTIONS(2567), + [aux_sym_use_keychain_token1] = ACTIONS(2567), + [aux_sym_use_roaming_token1] = ACTIONS(2567), + [aux_sym_user_token1] = ACTIONS(2569), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2567), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2567), + [aux_sym_visual_host_key_token1] = ACTIONS(2567), + [aux_sym_xauth_location_token1] = ACTIONS(2567), }, [355] = { - [ts_builtin_sym_end] = ACTIONS(2564), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2566), - [anon_sym_DQUOTE] = ACTIONS(2564), - [aux_sym_match_token1] = ACTIONS(2564), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2564), - [aux_sym_address_family_token1] = ACTIONS(2564), - [aux_sym_batch_mode_token1] = ACTIONS(2564), - [aux_sym_bind_address_token1] = ACTIONS(2564), - [aux_sym_bind_interface_token1] = ACTIONS(2564), - [aux_sym_canonical_domains_token1] = ACTIONS(2564), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2564), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2564), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2564), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2564), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2564), - [aux_sym_certificate_file_token1] = ACTIONS(2564), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2564), - [aux_sym_channel_timeout_token1] = ACTIONS(2564), - [aux_sym_check_host_ip_token1] = ACTIONS(2564), - [aux_sym_ciphers_token1] = ACTIONS(2564), - [aux_sym_cipher_token1] = ACTIONS(2566), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2564), - [aux_sym_compression_token1] = ACTIONS(2564), - [aux_sym_connection_attempts_token1] = ACTIONS(2564), - [aux_sym_connect_timeout_token1] = ACTIONS(2564), - [aux_sym_control_master_token1] = ACTIONS(2564), - [aux_sym_control_path_token1] = ACTIONS(2564), - [aux_sym_control_persist_token1] = ACTIONS(2564), - [aux_sym_dynamic_forward_token1] = ACTIONS(2564), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2564), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2564), - [aux_sym_escape_char_token1] = ACTIONS(2564), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2564), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2564), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2564), - [aux_sym_forward_agent_token1] = ACTIONS(2564), - [aux_sym_forward_x11_token1] = ACTIONS(2566), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2564), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2564), - [aux_sym_gateway_ports_token1] = ACTIONS(2564), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2564), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2564), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2564), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2564), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2564), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2564), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2564), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2564), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2564), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2564), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2564), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2564), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2564), - [aux_sym_host_key_alias_token1] = ACTIONS(2564), - [aux_sym_hostname_token1] = ACTIONS(2564), - [aux_sym_identities_only_token1] = ACTIONS(2564), - [aux_sym_identity_agent_token1] = ACTIONS(2564), - [aux_sym_identity_file_token1] = ACTIONS(2564), - [aux_sym_ignore_unknown_token1] = ACTIONS(2564), - [aux_sym_include_token1] = ACTIONS(2564), - [aux_sym_ip_qos_token1] = ACTIONS(2564), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2564), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2564), - [aux_sym_kex_algorithms_token1] = ACTIONS(2564), - [aux_sym_known_hosts_command_token1] = ACTIONS(2564), - [aux_sym_local_command_token1] = ACTIONS(2564), - [aux_sym_local_forward_token1] = ACTIONS(2564), - [aux_sym_log_level_token1] = ACTIONS(2564), - [aux_sym_log_verbose_token1] = ACTIONS(2564), - [aux_sym_macs_token1] = ACTIONS(2564), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2564), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2564), - [aux_sym_password_authentication_token1] = ACTIONS(2564), - [aux_sym_permit_local_command_token1] = ACTIONS(2564), - [aux_sym_permit_remote_open_token1] = ACTIONS(2564), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2564), - [aux_sym_port_token1] = ACTIONS(2564), - [aux_sym_preferred_authentications_token1] = ACTIONS(2564), - [aux_sym_protocol_token1] = ACTIONS(2564), - [aux_sym_proxy_command_token1] = ACTIONS(2564), - [aux_sym_proxy_jump_token1] = ACTIONS(2564), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2564), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2564), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2564), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2564), - [aux_sym_rekey_limit_token1] = ACTIONS(2564), - [aux_sym_remote_command_token1] = ACTIONS(2564), - [aux_sym_remote_forward_token1] = ACTIONS(2564), - [aux_sym_request_tty_token1] = ACTIONS(2564), - [aux_sym_required_rsa_size_token1] = ACTIONS(2564), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2564), - [aux_sym_security_key_provider_token1] = ACTIONS(2564), - [aux_sym_send_env_token1] = ACTIONS(2564), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2564), - [aux_sym_server_alive_interval_token1] = ACTIONS(2564), - [aux_sym_session_type_token1] = ACTIONS(2564), - [aux_sym_set_env_token1] = ACTIONS(2564), - [aux_sym_stdin_null_token1] = ACTIONS(2564), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2564), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2564), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2564), - [aux_sym_syslog_facility_token1] = ACTIONS(2564), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2564), - [aux_sym_keep_alive_token1] = ACTIONS(2564), - [aux_sym_tag_token1] = ACTIONS(2564), - [aux_sym_tunnel_token1] = ACTIONS(2566), - [aux_sym_tunnel_device_token1] = ACTIONS(2564), - [aux_sym_update_host_keys_token1] = ACTIONS(2564), - [aux_sym_use_keychain_token1] = ACTIONS(2564), - [aux_sym_use_roaming_token1] = ACTIONS(2564), - [aux_sym_user_token1] = ACTIONS(2566), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2564), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2564), - [aux_sym_visual_host_key_token1] = ACTIONS(2564), - [aux_sym_xauth_location_token1] = ACTIONS(2564), + [ts_builtin_sym_end] = ACTIONS(2571), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2573), + [anon_sym_DQUOTE] = ACTIONS(2575), + [aux_sym_match_token1] = ACTIONS(2571), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2571), + [aux_sym_address_family_token1] = ACTIONS(2571), + [aux_sym_batch_mode_token1] = ACTIONS(2571), + [aux_sym_bind_address_token1] = ACTIONS(2571), + [aux_sym_bind_interface_token1] = ACTIONS(2571), + [aux_sym_canonical_domains_token1] = ACTIONS(2571), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2571), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2571), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2571), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2571), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2571), + [aux_sym_certificate_file_token1] = ACTIONS(2571), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2571), + [aux_sym_channel_timeout_token1] = ACTIONS(2571), + [aux_sym_check_host_ip_token1] = ACTIONS(2571), + [aux_sym_ciphers_token1] = ACTIONS(2571), + [aux_sym_cipher_token1] = ACTIONS(2573), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2571), + [aux_sym_compression_token1] = ACTIONS(2571), + [aux_sym_connection_attempts_token1] = ACTIONS(2571), + [aux_sym_connect_timeout_token1] = ACTIONS(2571), + [aux_sym_control_master_token1] = ACTIONS(2571), + [aux_sym_control_path_token1] = ACTIONS(2571), + [aux_sym_control_persist_token1] = ACTIONS(2571), + [aux_sym_dynamic_forward_token1] = ACTIONS(2571), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2571), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2571), + [aux_sym_escape_char_token1] = ACTIONS(2571), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2571), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2571), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2571), + [aux_sym_forward_agent_token1] = ACTIONS(2571), + [aux_sym_forward_x11_token1] = ACTIONS(2573), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2571), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2571), + [aux_sym_gateway_ports_token1] = ACTIONS(2571), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2571), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2571), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2571), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2571), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2571), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2571), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2571), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2571), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2571), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2571), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2571), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2571), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2571), + [aux_sym_host_key_alias_token1] = ACTIONS(2571), + [aux_sym_hostname_token1] = ACTIONS(2571), + [aux_sym_identities_only_token1] = ACTIONS(2571), + [aux_sym_identity_agent_token1] = ACTIONS(2571), + [aux_sym_identity_file_token1] = ACTIONS(2571), + [aux_sym_ignore_unknown_token1] = ACTIONS(2571), + [aux_sym_include_token1] = ACTIONS(2571), + [aux_sym_ip_qos_token1] = ACTIONS(2571), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2571), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2571), + [aux_sym_kex_algorithms_token1] = ACTIONS(2571), + [aux_sym_known_hosts_command_token1] = ACTIONS(2571), + [aux_sym_local_command_token1] = ACTIONS(2571), + [aux_sym_local_forward_token1] = ACTIONS(2571), + [aux_sym_log_level_token1] = ACTIONS(2571), + [aux_sym_log_verbose_token1] = ACTIONS(2571), + [aux_sym_macs_token1] = ACTIONS(2571), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2571), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2571), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2571), + [aux_sym_password_authentication_token1] = ACTIONS(2571), + [aux_sym_permit_local_command_token1] = ACTIONS(2571), + [aux_sym_permit_remote_open_token1] = ACTIONS(2571), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2571), + [aux_sym_port_token1] = ACTIONS(2571), + [aux_sym_preferred_authentications_token1] = ACTIONS(2571), + [aux_sym_protocol_token1] = ACTIONS(2571), + [aux_sym_proxy_command_token1] = ACTIONS(2571), + [aux_sym_proxy_jump_token1] = ACTIONS(2571), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2571), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2571), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2571), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2571), + [aux_sym_rekey_limit_token1] = ACTIONS(2571), + [aux_sym_remote_command_token1] = ACTIONS(2571), + [aux_sym_remote_forward_token1] = ACTIONS(2571), + [aux_sym_request_tty_token1] = ACTIONS(2571), + [aux_sym_required_rsa_size_token1] = ACTIONS(2571), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2571), + [aux_sym_security_key_provider_token1] = ACTIONS(2571), + [aux_sym_send_env_token1] = ACTIONS(2571), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2571), + [aux_sym_server_alive_interval_token1] = ACTIONS(2571), + [aux_sym_session_type_token1] = ACTIONS(2571), + [aux_sym_set_env_token1] = ACTIONS(2571), + [aux_sym_stdin_null_token1] = ACTIONS(2571), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2571), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2571), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2571), + [aux_sym_syslog_facility_token1] = ACTIONS(2571), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2571), + [aux_sym_keep_alive_token1] = ACTIONS(2571), + [aux_sym_tag_token1] = ACTIONS(2571), + [aux_sym_tunnel_token1] = ACTIONS(2573), + [aux_sym_tunnel_device_token1] = ACTIONS(2571), + [aux_sym_update_host_keys_token1] = ACTIONS(2571), + [aux_sym_use_keychain_token1] = ACTIONS(2571), + [aux_sym_use_roaming_token1] = ACTIONS(2571), + [aux_sym_user_token1] = ACTIONS(2573), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2571), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2571), + [aux_sym_visual_host_key_token1] = ACTIONS(2571), + [aux_sym_xauth_location_token1] = ACTIONS(2571), }, [356] = { - [ts_builtin_sym_end] = ACTIONS(2568), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2570), - [anon_sym_DQUOTE] = ACTIONS(2568), - [aux_sym_match_token1] = ACTIONS(2568), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2568), - [aux_sym_address_family_token1] = ACTIONS(2568), - [aux_sym_batch_mode_token1] = ACTIONS(2568), - [aux_sym_bind_address_token1] = ACTIONS(2568), - [aux_sym_bind_interface_token1] = ACTIONS(2568), - [aux_sym_canonical_domains_token1] = ACTIONS(2568), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2568), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2568), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2568), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2568), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2568), - [aux_sym_certificate_file_token1] = ACTIONS(2568), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2568), - [aux_sym_channel_timeout_token1] = ACTIONS(2568), - [aux_sym_check_host_ip_token1] = ACTIONS(2568), - [aux_sym_ciphers_token1] = ACTIONS(2568), - [aux_sym_cipher_token1] = ACTIONS(2570), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2568), - [aux_sym_compression_token1] = ACTIONS(2568), - [aux_sym_connection_attempts_token1] = ACTIONS(2568), - [aux_sym_connect_timeout_token1] = ACTIONS(2568), - [aux_sym_control_master_token1] = ACTIONS(2568), - [aux_sym_control_path_token1] = ACTIONS(2568), - [aux_sym_control_persist_token1] = ACTIONS(2568), - [aux_sym_dynamic_forward_token1] = ACTIONS(2568), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2568), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2568), - [aux_sym_escape_char_token1] = ACTIONS(2568), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2568), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2568), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2568), - [aux_sym_forward_agent_token1] = ACTIONS(2568), - [aux_sym_forward_x11_token1] = ACTIONS(2570), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2568), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2568), - [aux_sym_gateway_ports_token1] = ACTIONS(2568), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2568), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2568), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2568), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2568), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2568), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2568), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2568), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2568), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2568), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2568), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2568), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2568), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2568), - [aux_sym_host_key_alias_token1] = ACTIONS(2568), - [aux_sym_hostname_token1] = ACTIONS(2568), - [aux_sym_identities_only_token1] = ACTIONS(2568), - [aux_sym_identity_agent_token1] = ACTIONS(2568), - [aux_sym_identity_file_token1] = ACTIONS(2568), - [aux_sym_ignore_unknown_token1] = ACTIONS(2568), - [aux_sym_include_token1] = ACTIONS(2568), - [aux_sym_ip_qos_token1] = ACTIONS(2568), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2568), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2568), - [aux_sym_kex_algorithms_token1] = ACTIONS(2568), - [aux_sym_known_hosts_command_token1] = ACTIONS(2568), - [aux_sym_local_command_token1] = ACTIONS(2568), - [aux_sym_local_forward_token1] = ACTIONS(2568), - [aux_sym_log_level_token1] = ACTIONS(2568), - [aux_sym_log_verbose_token1] = ACTIONS(2568), - [aux_sym_macs_token1] = ACTIONS(2568), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2568), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2568), - [aux_sym_password_authentication_token1] = ACTIONS(2568), - [aux_sym_permit_local_command_token1] = ACTIONS(2568), - [aux_sym_permit_remote_open_token1] = ACTIONS(2568), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2568), - [aux_sym_port_token1] = ACTIONS(2568), - [aux_sym_preferred_authentications_token1] = ACTIONS(2568), - [aux_sym_protocol_token1] = ACTIONS(2568), - [aux_sym_proxy_command_token1] = ACTIONS(2568), - [aux_sym_proxy_jump_token1] = ACTIONS(2568), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2568), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2568), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2568), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2568), - [aux_sym_rekey_limit_token1] = ACTIONS(2568), - [aux_sym_remote_command_token1] = ACTIONS(2568), - [aux_sym_remote_forward_token1] = ACTIONS(2568), - [aux_sym_request_tty_token1] = ACTIONS(2568), - [aux_sym_required_rsa_size_token1] = ACTIONS(2568), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2568), - [aux_sym_security_key_provider_token1] = ACTIONS(2568), - [aux_sym_send_env_token1] = ACTIONS(2568), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2568), - [aux_sym_server_alive_interval_token1] = ACTIONS(2568), - [aux_sym_session_type_token1] = ACTIONS(2568), - [aux_sym_set_env_token1] = ACTIONS(2568), - [aux_sym_stdin_null_token1] = ACTIONS(2568), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2568), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2568), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2568), - [aux_sym_syslog_facility_token1] = ACTIONS(2568), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2568), - [aux_sym_keep_alive_token1] = ACTIONS(2568), - [aux_sym_tag_token1] = ACTIONS(2568), - [aux_sym_tunnel_token1] = ACTIONS(2570), - [aux_sym_tunnel_device_token1] = ACTIONS(2568), - [aux_sym_update_host_keys_token1] = ACTIONS(2568), - [aux_sym_use_keychain_token1] = ACTIONS(2568), - [aux_sym_use_roaming_token1] = ACTIONS(2568), - [aux_sym_user_token1] = ACTIONS(2570), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2568), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2568), - [aux_sym_visual_host_key_token1] = ACTIONS(2568), - [aux_sym_xauth_location_token1] = ACTIONS(2568), + [ts_builtin_sym_end] = ACTIONS(2577), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2581), + [aux_sym_match_token1] = ACTIONS(2577), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2577), + [aux_sym_address_family_token1] = ACTIONS(2577), + [aux_sym_batch_mode_token1] = ACTIONS(2577), + [aux_sym_bind_address_token1] = ACTIONS(2577), + [aux_sym_bind_interface_token1] = ACTIONS(2577), + [aux_sym_canonical_domains_token1] = ACTIONS(2577), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2577), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2577), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2577), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2577), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2577), + [aux_sym_certificate_file_token1] = ACTIONS(2577), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2577), + [aux_sym_channel_timeout_token1] = ACTIONS(2577), + [aux_sym_check_host_ip_token1] = ACTIONS(2577), + [aux_sym_ciphers_token1] = ACTIONS(2577), + [aux_sym_cipher_token1] = ACTIONS(2579), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2577), + [aux_sym_compression_token1] = ACTIONS(2577), + [aux_sym_connection_attempts_token1] = ACTIONS(2577), + [aux_sym_connect_timeout_token1] = ACTIONS(2577), + [aux_sym_control_master_token1] = ACTIONS(2577), + [aux_sym_control_path_token1] = ACTIONS(2577), + [aux_sym_control_persist_token1] = ACTIONS(2577), + [aux_sym_dynamic_forward_token1] = ACTIONS(2577), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2577), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2577), + [aux_sym_escape_char_token1] = ACTIONS(2577), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2577), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2577), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2577), + [aux_sym_forward_agent_token1] = ACTIONS(2577), + [aux_sym_forward_x11_token1] = ACTIONS(2579), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2577), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2577), + [aux_sym_gateway_ports_token1] = ACTIONS(2577), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2577), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2577), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2577), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2577), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2577), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2577), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2577), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2577), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2577), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2577), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2577), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2577), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2577), + [aux_sym_host_key_alias_token1] = ACTIONS(2577), + [aux_sym_hostname_token1] = ACTIONS(2577), + [aux_sym_identities_only_token1] = ACTIONS(2577), + [aux_sym_identity_agent_token1] = ACTIONS(2577), + [aux_sym_identity_file_token1] = ACTIONS(2577), + [aux_sym_ignore_unknown_token1] = ACTIONS(2577), + [aux_sym_include_token1] = ACTIONS(2577), + [aux_sym_ip_qos_token1] = ACTIONS(2577), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2577), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2577), + [aux_sym_kex_algorithms_token1] = ACTIONS(2577), + [aux_sym_known_hosts_command_token1] = ACTIONS(2577), + [aux_sym_local_command_token1] = ACTIONS(2577), + [aux_sym_local_forward_token1] = ACTIONS(2577), + [aux_sym_log_level_token1] = ACTIONS(2577), + [aux_sym_log_verbose_token1] = ACTIONS(2577), + [aux_sym_macs_token1] = ACTIONS(2577), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2577), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2577), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2577), + [aux_sym_password_authentication_token1] = ACTIONS(2577), + [aux_sym_permit_local_command_token1] = ACTIONS(2577), + [aux_sym_permit_remote_open_token1] = ACTIONS(2577), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2577), + [aux_sym_port_token1] = ACTIONS(2577), + [aux_sym_preferred_authentications_token1] = ACTIONS(2577), + [aux_sym_protocol_token1] = ACTIONS(2577), + [aux_sym_proxy_command_token1] = ACTIONS(2577), + [aux_sym_proxy_jump_token1] = ACTIONS(2577), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2577), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2577), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2577), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2577), + [aux_sym_rekey_limit_token1] = ACTIONS(2577), + [aux_sym_remote_command_token1] = ACTIONS(2577), + [aux_sym_remote_forward_token1] = ACTIONS(2577), + [aux_sym_request_tty_token1] = ACTIONS(2577), + [aux_sym_required_rsa_size_token1] = ACTIONS(2577), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2577), + [aux_sym_security_key_provider_token1] = ACTIONS(2577), + [aux_sym_send_env_token1] = ACTIONS(2577), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2577), + [aux_sym_server_alive_interval_token1] = ACTIONS(2577), + [aux_sym_session_type_token1] = ACTIONS(2577), + [aux_sym_set_env_token1] = ACTIONS(2577), + [aux_sym_stdin_null_token1] = ACTIONS(2577), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2577), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2577), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2577), + [aux_sym_syslog_facility_token1] = ACTIONS(2577), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2577), + [aux_sym_keep_alive_token1] = ACTIONS(2577), + [aux_sym_tag_token1] = ACTIONS(2577), + [aux_sym_tunnel_token1] = ACTIONS(2579), + [aux_sym_tunnel_device_token1] = ACTIONS(2577), + [aux_sym_update_host_keys_token1] = ACTIONS(2577), + [aux_sym_use_keychain_token1] = ACTIONS(2577), + [aux_sym_use_roaming_token1] = ACTIONS(2577), + [aux_sym_user_token1] = ACTIONS(2579), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2577), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2577), + [aux_sym_visual_host_key_token1] = ACTIONS(2577), + [aux_sym_xauth_location_token1] = ACTIONS(2577), }, [357] = { - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2574), - [anon_sym_DQUOTE] = ACTIONS(2576), - [aux_sym_match_token1] = ACTIONS(2572), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2572), - [aux_sym_address_family_token1] = ACTIONS(2572), - [aux_sym_batch_mode_token1] = ACTIONS(2572), - [aux_sym_bind_address_token1] = ACTIONS(2572), - [aux_sym_bind_interface_token1] = ACTIONS(2572), - [aux_sym_canonical_domains_token1] = ACTIONS(2572), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2572), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2572), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2572), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2572), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2572), - [aux_sym_certificate_file_token1] = ACTIONS(2572), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2572), - [aux_sym_channel_timeout_token1] = ACTIONS(2572), - [aux_sym_check_host_ip_token1] = ACTIONS(2572), - [aux_sym_ciphers_token1] = ACTIONS(2572), - [aux_sym_cipher_token1] = ACTIONS(2574), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2572), - [aux_sym_compression_token1] = ACTIONS(2572), - [aux_sym_connection_attempts_token1] = ACTIONS(2572), - [aux_sym_connect_timeout_token1] = ACTIONS(2572), - [aux_sym_control_master_token1] = ACTIONS(2572), - [aux_sym_control_path_token1] = ACTIONS(2572), - [aux_sym_control_persist_token1] = ACTIONS(2572), - [aux_sym_dynamic_forward_token1] = ACTIONS(2572), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2572), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2572), - [aux_sym_escape_char_token1] = ACTIONS(2572), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2572), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2572), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2572), - [aux_sym_forward_agent_token1] = ACTIONS(2572), - [aux_sym_forward_x11_token1] = ACTIONS(2574), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2572), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2572), - [aux_sym_gateway_ports_token1] = ACTIONS(2572), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2572), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2572), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2572), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2572), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2572), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2572), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2572), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2572), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2572), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2572), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2572), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2572), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2572), - [aux_sym_host_key_alias_token1] = ACTIONS(2572), - [aux_sym_hostname_token1] = ACTIONS(2572), - [aux_sym_identities_only_token1] = ACTIONS(2572), - [aux_sym_identity_agent_token1] = ACTIONS(2572), - [aux_sym_identity_file_token1] = ACTIONS(2572), - [aux_sym_ignore_unknown_token1] = ACTIONS(2572), - [aux_sym_include_token1] = ACTIONS(2572), - [aux_sym_ip_qos_token1] = ACTIONS(2572), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2572), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2572), - [aux_sym_kex_algorithms_token1] = ACTIONS(2572), - [aux_sym_known_hosts_command_token1] = ACTIONS(2572), - [aux_sym_local_command_token1] = ACTIONS(2572), - [aux_sym_local_forward_token1] = ACTIONS(2572), - [aux_sym_log_level_token1] = ACTIONS(2572), - [aux_sym_log_verbose_token1] = ACTIONS(2572), - [aux_sym_macs_token1] = ACTIONS(2572), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2572), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2572), - [aux_sym_password_authentication_token1] = ACTIONS(2572), - [aux_sym_permit_local_command_token1] = ACTIONS(2572), - [aux_sym_permit_remote_open_token1] = ACTIONS(2572), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2572), - [aux_sym_port_token1] = ACTIONS(2572), - [aux_sym_preferred_authentications_token1] = ACTIONS(2572), - [aux_sym_protocol_token1] = ACTIONS(2572), - [aux_sym_proxy_command_token1] = ACTIONS(2572), - [aux_sym_proxy_jump_token1] = ACTIONS(2572), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2572), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2572), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2572), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2572), - [aux_sym_rekey_limit_token1] = ACTIONS(2572), - [aux_sym_remote_command_token1] = ACTIONS(2572), - [aux_sym_remote_forward_token1] = ACTIONS(2572), - [aux_sym_request_tty_token1] = ACTIONS(2572), - [aux_sym_required_rsa_size_token1] = ACTIONS(2572), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2572), - [aux_sym_security_key_provider_token1] = ACTIONS(2572), - [aux_sym_send_env_token1] = ACTIONS(2572), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2572), - [aux_sym_server_alive_interval_token1] = ACTIONS(2572), - [aux_sym_session_type_token1] = ACTIONS(2572), - [aux_sym_set_env_token1] = ACTIONS(2572), - [aux_sym_stdin_null_token1] = ACTIONS(2572), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2572), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2572), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2572), - [aux_sym_syslog_facility_token1] = ACTIONS(2572), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2572), - [aux_sym_keep_alive_token1] = ACTIONS(2572), - [aux_sym_tag_token1] = ACTIONS(2572), - [aux_sym_tunnel_token1] = ACTIONS(2574), - [aux_sym_tunnel_device_token1] = ACTIONS(2572), - [aux_sym_update_host_keys_token1] = ACTIONS(2572), - [aux_sym_use_keychain_token1] = ACTIONS(2572), - [aux_sym_use_roaming_token1] = ACTIONS(2572), - [aux_sym_user_token1] = ACTIONS(2574), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2572), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2572), - [aux_sym_visual_host_key_token1] = ACTIONS(2572), - [aux_sym_xauth_location_token1] = ACTIONS(2572), + [ts_builtin_sym_end] = ACTIONS(2583), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2583), + [aux_sym_match_token1] = ACTIONS(2583), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2583), + [aux_sym_address_family_token1] = ACTIONS(2583), + [aux_sym_batch_mode_token1] = ACTIONS(2583), + [aux_sym_bind_address_token1] = ACTIONS(2583), + [aux_sym_bind_interface_token1] = ACTIONS(2583), + [aux_sym_canonical_domains_token1] = ACTIONS(2583), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2583), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2583), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2583), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2583), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2583), + [aux_sym_certificate_file_token1] = ACTIONS(2583), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2583), + [aux_sym_channel_timeout_token1] = ACTIONS(2583), + [aux_sym_check_host_ip_token1] = ACTIONS(2583), + [aux_sym_ciphers_token1] = ACTIONS(2583), + [aux_sym_cipher_token1] = ACTIONS(2585), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2583), + [aux_sym_compression_token1] = ACTIONS(2583), + [aux_sym_connection_attempts_token1] = ACTIONS(2583), + [aux_sym_connect_timeout_token1] = ACTIONS(2583), + [aux_sym_control_master_token1] = ACTIONS(2583), + [aux_sym_control_path_token1] = ACTIONS(2583), + [aux_sym_control_persist_token1] = ACTIONS(2583), + [aux_sym_dynamic_forward_token1] = ACTIONS(2583), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2583), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2583), + [aux_sym_escape_char_token1] = ACTIONS(2583), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2583), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2583), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2583), + [aux_sym_forward_agent_token1] = ACTIONS(2583), + [aux_sym_forward_x11_token1] = ACTIONS(2585), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2583), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2583), + [aux_sym_gateway_ports_token1] = ACTIONS(2583), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2583), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2583), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2583), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2583), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2583), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2583), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2583), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2583), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2583), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2583), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2583), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2583), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2583), + [aux_sym_host_key_alias_token1] = ACTIONS(2583), + [aux_sym_hostname_token1] = ACTIONS(2583), + [aux_sym_identities_only_token1] = ACTIONS(2583), + [aux_sym_identity_agent_token1] = ACTIONS(2583), + [aux_sym_identity_file_token1] = ACTIONS(2583), + [aux_sym_ignore_unknown_token1] = ACTIONS(2583), + [aux_sym_include_token1] = ACTIONS(2583), + [aux_sym_ip_qos_token1] = ACTIONS(2583), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2583), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2583), + [aux_sym_kex_algorithms_token1] = ACTIONS(2583), + [aux_sym_known_hosts_command_token1] = ACTIONS(2583), + [aux_sym_local_command_token1] = ACTIONS(2583), + [aux_sym_local_forward_token1] = ACTIONS(2583), + [aux_sym_log_level_token1] = ACTIONS(2583), + [aux_sym_log_verbose_token1] = ACTIONS(2583), + [aux_sym_macs_token1] = ACTIONS(2583), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2583), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2583), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2583), + [aux_sym_password_authentication_token1] = ACTIONS(2583), + [aux_sym_permit_local_command_token1] = ACTIONS(2583), + [aux_sym_permit_remote_open_token1] = ACTIONS(2583), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2583), + [aux_sym_port_token1] = ACTIONS(2583), + [aux_sym_preferred_authentications_token1] = ACTIONS(2583), + [aux_sym_protocol_token1] = ACTIONS(2583), + [aux_sym_proxy_command_token1] = ACTIONS(2583), + [aux_sym_proxy_jump_token1] = ACTIONS(2583), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2583), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2583), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2583), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2583), + [aux_sym_rekey_limit_token1] = ACTIONS(2583), + [aux_sym_remote_command_token1] = ACTIONS(2583), + [aux_sym_remote_forward_token1] = ACTIONS(2583), + [aux_sym_request_tty_token1] = ACTIONS(2583), + [aux_sym_required_rsa_size_token1] = ACTIONS(2583), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2583), + [aux_sym_security_key_provider_token1] = ACTIONS(2583), + [aux_sym_send_env_token1] = ACTIONS(2583), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2583), + [aux_sym_server_alive_interval_token1] = ACTIONS(2583), + [aux_sym_session_type_token1] = ACTIONS(2583), + [aux_sym_set_env_token1] = ACTIONS(2583), + [aux_sym_stdin_null_token1] = ACTIONS(2583), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2583), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2583), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2583), + [aux_sym_syslog_facility_token1] = ACTIONS(2583), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2583), + [aux_sym_keep_alive_token1] = ACTIONS(2583), + [aux_sym_tag_token1] = ACTIONS(2583), + [aux_sym_tunnel_token1] = ACTIONS(2585), + [aux_sym_tunnel_device_token1] = ACTIONS(2583), + [aux_sym_update_host_keys_token1] = ACTIONS(2583), + [aux_sym_use_keychain_token1] = ACTIONS(2583), + [aux_sym_use_roaming_token1] = ACTIONS(2583), + [aux_sym_user_token1] = ACTIONS(2585), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2583), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2583), + [aux_sym_visual_host_key_token1] = ACTIONS(2583), + [aux_sym_xauth_location_token1] = ACTIONS(2583), }, [358] = { - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2580), - [anon_sym_DQUOTE] = ACTIONS(2582), - [aux_sym_match_token1] = ACTIONS(2578), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2578), - [aux_sym_address_family_token1] = ACTIONS(2578), - [aux_sym_batch_mode_token1] = ACTIONS(2578), - [aux_sym_bind_address_token1] = ACTIONS(2578), - [aux_sym_bind_interface_token1] = ACTIONS(2578), - [aux_sym_canonical_domains_token1] = ACTIONS(2578), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2578), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2578), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2578), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2578), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2578), - [aux_sym_certificate_file_token1] = ACTIONS(2578), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2578), - [aux_sym_channel_timeout_token1] = ACTIONS(2578), - [aux_sym_check_host_ip_token1] = ACTIONS(2578), - [aux_sym_ciphers_token1] = ACTIONS(2578), - [aux_sym_cipher_token1] = ACTIONS(2580), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2578), - [aux_sym_compression_token1] = ACTIONS(2578), - [aux_sym_connection_attempts_token1] = ACTIONS(2578), - [aux_sym_connect_timeout_token1] = ACTIONS(2578), - [aux_sym_control_master_token1] = ACTIONS(2578), - [aux_sym_control_path_token1] = ACTIONS(2578), - [aux_sym_control_persist_token1] = ACTIONS(2578), - [aux_sym_dynamic_forward_token1] = ACTIONS(2578), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2578), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2578), - [aux_sym_escape_char_token1] = ACTIONS(2578), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2578), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2578), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2578), - [aux_sym_forward_agent_token1] = ACTIONS(2578), - [aux_sym_forward_x11_token1] = ACTIONS(2580), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2578), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2578), - [aux_sym_gateway_ports_token1] = ACTIONS(2578), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2578), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2578), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2578), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2578), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2578), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2578), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2578), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2578), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2578), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2578), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2578), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2578), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2578), - [aux_sym_host_key_alias_token1] = ACTIONS(2578), - [aux_sym_hostname_token1] = ACTIONS(2578), - [aux_sym_identities_only_token1] = ACTIONS(2578), - [aux_sym_identity_agent_token1] = ACTIONS(2578), - [aux_sym_identity_file_token1] = ACTIONS(2578), - [aux_sym_ignore_unknown_token1] = ACTIONS(2578), - [aux_sym_include_token1] = ACTIONS(2578), - [aux_sym_ip_qos_token1] = ACTIONS(2578), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2578), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2578), - [aux_sym_kex_algorithms_token1] = ACTIONS(2578), - [aux_sym_known_hosts_command_token1] = ACTIONS(2578), - [aux_sym_local_command_token1] = ACTIONS(2578), - [aux_sym_local_forward_token1] = ACTIONS(2578), - [aux_sym_log_level_token1] = ACTIONS(2578), - [aux_sym_log_verbose_token1] = ACTIONS(2578), - [aux_sym_macs_token1] = ACTIONS(2578), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2578), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2578), - [aux_sym_password_authentication_token1] = ACTIONS(2578), - [aux_sym_permit_local_command_token1] = ACTIONS(2578), - [aux_sym_permit_remote_open_token1] = ACTIONS(2578), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2578), - [aux_sym_port_token1] = ACTIONS(2578), - [aux_sym_preferred_authentications_token1] = ACTIONS(2578), - [aux_sym_protocol_token1] = ACTIONS(2578), - [aux_sym_proxy_command_token1] = ACTIONS(2578), - [aux_sym_proxy_jump_token1] = ACTIONS(2578), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2578), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2578), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2578), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2578), - [aux_sym_rekey_limit_token1] = ACTIONS(2578), - [aux_sym_remote_command_token1] = ACTIONS(2578), - [aux_sym_remote_forward_token1] = ACTIONS(2578), - [aux_sym_request_tty_token1] = ACTIONS(2578), - [aux_sym_required_rsa_size_token1] = ACTIONS(2578), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2578), - [aux_sym_security_key_provider_token1] = ACTIONS(2578), - [aux_sym_send_env_token1] = ACTIONS(2578), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2578), - [aux_sym_server_alive_interval_token1] = ACTIONS(2578), - [aux_sym_session_type_token1] = ACTIONS(2578), - [aux_sym_set_env_token1] = ACTIONS(2578), - [aux_sym_stdin_null_token1] = ACTIONS(2578), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2578), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2578), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2578), - [aux_sym_syslog_facility_token1] = ACTIONS(2578), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2578), - [aux_sym_keep_alive_token1] = ACTIONS(2578), - [aux_sym_tag_token1] = ACTIONS(2578), - [aux_sym_tunnel_token1] = ACTIONS(2580), - [aux_sym_tunnel_device_token1] = ACTIONS(2578), - [aux_sym_update_host_keys_token1] = ACTIONS(2578), - [aux_sym_use_keychain_token1] = ACTIONS(2578), - [aux_sym_use_roaming_token1] = ACTIONS(2578), - [aux_sym_user_token1] = ACTIONS(2580), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2578), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2578), - [aux_sym_visual_host_key_token1] = ACTIONS(2578), - [aux_sym_xauth_location_token1] = ACTIONS(2578), + [ts_builtin_sym_end] = ACTIONS(2587), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2587), + [aux_sym_match_token1] = ACTIONS(2587), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2587), + [aux_sym_address_family_token1] = ACTIONS(2587), + [aux_sym_batch_mode_token1] = ACTIONS(2587), + [aux_sym_bind_address_token1] = ACTIONS(2587), + [aux_sym_bind_interface_token1] = ACTIONS(2587), + [aux_sym_canonical_domains_token1] = ACTIONS(2587), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2587), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2587), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2587), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2587), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2587), + [aux_sym_certificate_file_token1] = ACTIONS(2587), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2587), + [aux_sym_channel_timeout_token1] = ACTIONS(2587), + [aux_sym_check_host_ip_token1] = ACTIONS(2587), + [aux_sym_ciphers_token1] = ACTIONS(2587), + [aux_sym_cipher_token1] = ACTIONS(2589), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2587), + [aux_sym_compression_token1] = ACTIONS(2587), + [aux_sym_connection_attempts_token1] = ACTIONS(2587), + [aux_sym_connect_timeout_token1] = ACTIONS(2587), + [aux_sym_control_master_token1] = ACTIONS(2587), + [aux_sym_control_path_token1] = ACTIONS(2587), + [aux_sym_control_persist_token1] = ACTIONS(2587), + [aux_sym_dynamic_forward_token1] = ACTIONS(2587), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2587), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2587), + [aux_sym_escape_char_token1] = ACTIONS(2587), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2587), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2587), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2587), + [aux_sym_forward_agent_token1] = ACTIONS(2587), + [aux_sym_forward_x11_token1] = ACTIONS(2589), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2587), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2587), + [aux_sym_gateway_ports_token1] = ACTIONS(2587), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2587), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2587), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2587), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2587), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2587), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2587), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2587), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2587), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2587), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2587), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2587), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2587), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2587), + [aux_sym_host_key_alias_token1] = ACTIONS(2587), + [aux_sym_hostname_token1] = ACTIONS(2587), + [aux_sym_identities_only_token1] = ACTIONS(2587), + [aux_sym_identity_agent_token1] = ACTIONS(2587), + [aux_sym_identity_file_token1] = ACTIONS(2587), + [aux_sym_ignore_unknown_token1] = ACTIONS(2587), + [aux_sym_include_token1] = ACTIONS(2587), + [aux_sym_ip_qos_token1] = ACTIONS(2587), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2587), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2587), + [aux_sym_kex_algorithms_token1] = ACTIONS(2587), + [aux_sym_known_hosts_command_token1] = ACTIONS(2587), + [aux_sym_local_command_token1] = ACTIONS(2587), + [aux_sym_local_forward_token1] = ACTIONS(2587), + [aux_sym_log_level_token1] = ACTIONS(2587), + [aux_sym_log_verbose_token1] = ACTIONS(2587), + [aux_sym_macs_token1] = ACTIONS(2587), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2587), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2587), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2587), + [aux_sym_password_authentication_token1] = ACTIONS(2587), + [aux_sym_permit_local_command_token1] = ACTIONS(2587), + [aux_sym_permit_remote_open_token1] = ACTIONS(2587), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2587), + [aux_sym_port_token1] = ACTIONS(2587), + [aux_sym_preferred_authentications_token1] = ACTIONS(2587), + [aux_sym_protocol_token1] = ACTIONS(2587), + [aux_sym_proxy_command_token1] = ACTIONS(2587), + [aux_sym_proxy_jump_token1] = ACTIONS(2587), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2587), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2587), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2587), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2587), + [aux_sym_rekey_limit_token1] = ACTIONS(2587), + [aux_sym_remote_command_token1] = ACTIONS(2587), + [aux_sym_remote_forward_token1] = ACTIONS(2587), + [aux_sym_request_tty_token1] = ACTIONS(2587), + [aux_sym_required_rsa_size_token1] = ACTIONS(2587), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2587), + [aux_sym_security_key_provider_token1] = ACTIONS(2587), + [aux_sym_send_env_token1] = ACTIONS(2587), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2587), + [aux_sym_server_alive_interval_token1] = ACTIONS(2587), + [aux_sym_session_type_token1] = ACTIONS(2587), + [aux_sym_set_env_token1] = ACTIONS(2587), + [aux_sym_stdin_null_token1] = ACTIONS(2587), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2587), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2587), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2587), + [aux_sym_syslog_facility_token1] = ACTIONS(2587), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2587), + [aux_sym_keep_alive_token1] = ACTIONS(2587), + [aux_sym_tag_token1] = ACTIONS(2587), + [aux_sym_tunnel_token1] = ACTIONS(2589), + [aux_sym_tunnel_device_token1] = ACTIONS(2587), + [aux_sym_update_host_keys_token1] = ACTIONS(2587), + [aux_sym_use_keychain_token1] = ACTIONS(2587), + [aux_sym_use_roaming_token1] = ACTIONS(2587), + [aux_sym_user_token1] = ACTIONS(2589), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2587), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2587), + [aux_sym_visual_host_key_token1] = ACTIONS(2587), + [aux_sym_xauth_location_token1] = ACTIONS(2587), }, [359] = { - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2584), - [aux_sym_match_token1] = ACTIONS(2584), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2584), - [aux_sym_address_family_token1] = ACTIONS(2584), - [aux_sym_batch_mode_token1] = ACTIONS(2584), - [aux_sym_bind_address_token1] = ACTIONS(2584), - [aux_sym_bind_interface_token1] = ACTIONS(2584), - [aux_sym_canonical_domains_token1] = ACTIONS(2584), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2584), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2584), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2584), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2584), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2584), - [aux_sym_certificate_file_token1] = ACTIONS(2584), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2584), - [aux_sym_channel_timeout_token1] = ACTIONS(2584), - [aux_sym_check_host_ip_token1] = ACTIONS(2584), - [aux_sym_ciphers_token1] = ACTIONS(2584), - [aux_sym_cipher_token1] = ACTIONS(2586), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2584), - [aux_sym_compression_token1] = ACTIONS(2584), - [aux_sym_connection_attempts_token1] = ACTIONS(2584), - [aux_sym_connect_timeout_token1] = ACTIONS(2584), - [aux_sym_control_master_token1] = ACTIONS(2584), - [aux_sym_control_path_token1] = ACTIONS(2584), - [aux_sym_control_persist_token1] = ACTIONS(2584), - [aux_sym_dynamic_forward_token1] = ACTIONS(2584), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2584), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2584), - [aux_sym_escape_char_token1] = ACTIONS(2584), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2584), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2584), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2584), - [aux_sym_forward_agent_token1] = ACTIONS(2584), - [aux_sym_forward_x11_token1] = ACTIONS(2586), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2584), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2584), - [aux_sym_gateway_ports_token1] = ACTIONS(2584), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2584), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2584), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2584), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2584), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2584), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2584), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2584), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2584), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2584), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2584), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2584), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2584), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2584), - [aux_sym_host_key_alias_token1] = ACTIONS(2584), - [aux_sym_hostname_token1] = ACTIONS(2584), - [aux_sym_identities_only_token1] = ACTIONS(2584), - [aux_sym_identity_agent_token1] = ACTIONS(2584), - [aux_sym_identity_file_token1] = ACTIONS(2584), - [aux_sym_ignore_unknown_token1] = ACTIONS(2584), - [aux_sym_include_token1] = ACTIONS(2584), - [aux_sym_ip_qos_token1] = ACTIONS(2584), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2584), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2584), - [aux_sym_kex_algorithms_token1] = ACTIONS(2584), - [aux_sym_known_hosts_command_token1] = ACTIONS(2584), - [aux_sym_local_command_token1] = ACTIONS(2584), - [aux_sym_local_forward_token1] = ACTIONS(2584), - [aux_sym_log_level_token1] = ACTIONS(2584), - [aux_sym_log_verbose_token1] = ACTIONS(2584), - [aux_sym_macs_token1] = ACTIONS(2584), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2584), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2584), - [aux_sym_password_authentication_token1] = ACTIONS(2584), - [aux_sym_permit_local_command_token1] = ACTIONS(2584), - [aux_sym_permit_remote_open_token1] = ACTIONS(2584), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2584), - [aux_sym_port_token1] = ACTIONS(2584), - [aux_sym_preferred_authentications_token1] = ACTIONS(2584), - [aux_sym_protocol_token1] = ACTIONS(2584), - [aux_sym_proxy_command_token1] = ACTIONS(2584), - [aux_sym_proxy_jump_token1] = ACTIONS(2584), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2584), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2584), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2584), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2584), - [aux_sym_rekey_limit_token1] = ACTIONS(2584), - [aux_sym_remote_command_token1] = ACTIONS(2584), - [aux_sym_remote_forward_token1] = ACTIONS(2584), - [aux_sym_request_tty_token1] = ACTIONS(2584), - [aux_sym_required_rsa_size_token1] = ACTIONS(2584), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2584), - [aux_sym_security_key_provider_token1] = ACTIONS(2584), - [aux_sym_send_env_token1] = ACTIONS(2584), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2584), - [aux_sym_server_alive_interval_token1] = ACTIONS(2584), - [aux_sym_session_type_token1] = ACTIONS(2584), - [aux_sym_set_env_token1] = ACTIONS(2584), - [aux_sym_stdin_null_token1] = ACTIONS(2584), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2584), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2584), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2584), - [aux_sym_syslog_facility_token1] = ACTIONS(2584), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2584), - [aux_sym_keep_alive_token1] = ACTIONS(2584), - [aux_sym_tag_token1] = ACTIONS(2584), - [aux_sym_tunnel_token1] = ACTIONS(2586), - [aux_sym_tunnel_device_token1] = ACTIONS(2584), - [aux_sym_update_host_keys_token1] = ACTIONS(2584), - [aux_sym_use_keychain_token1] = ACTIONS(2584), - [aux_sym_use_roaming_token1] = ACTIONS(2584), - [aux_sym_user_token1] = ACTIONS(2586), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2584), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2584), - [aux_sym_visual_host_key_token1] = ACTIONS(2584), - [aux_sym_xauth_location_token1] = ACTIONS(2584), + [ts_builtin_sym_end] = ACTIONS(2591), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2593), + [anon_sym_DQUOTE] = ACTIONS(2595), + [aux_sym_match_token1] = ACTIONS(2591), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2591), + [aux_sym_address_family_token1] = ACTIONS(2591), + [aux_sym_batch_mode_token1] = ACTIONS(2591), + [aux_sym_bind_address_token1] = ACTIONS(2591), + [aux_sym_bind_interface_token1] = ACTIONS(2591), + [aux_sym_canonical_domains_token1] = ACTIONS(2591), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2591), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2591), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2591), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2591), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2591), + [aux_sym_certificate_file_token1] = ACTIONS(2591), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2591), + [aux_sym_channel_timeout_token1] = ACTIONS(2591), + [aux_sym_check_host_ip_token1] = ACTIONS(2591), + [aux_sym_ciphers_token1] = ACTIONS(2591), + [aux_sym_cipher_token1] = ACTIONS(2593), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2591), + [aux_sym_compression_token1] = ACTIONS(2591), + [aux_sym_connection_attempts_token1] = ACTIONS(2591), + [aux_sym_connect_timeout_token1] = ACTIONS(2591), + [aux_sym_control_master_token1] = ACTIONS(2591), + [aux_sym_control_path_token1] = ACTIONS(2591), + [aux_sym_control_persist_token1] = ACTIONS(2591), + [aux_sym_dynamic_forward_token1] = ACTIONS(2591), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2591), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2591), + [aux_sym_escape_char_token1] = ACTIONS(2591), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2591), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2591), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2591), + [aux_sym_forward_agent_token1] = ACTIONS(2591), + [aux_sym_forward_x11_token1] = ACTIONS(2593), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2591), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2591), + [aux_sym_gateway_ports_token1] = ACTIONS(2591), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2591), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2591), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2591), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2591), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2591), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2591), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2591), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2591), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2591), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2591), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2591), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2591), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2591), + [aux_sym_host_key_alias_token1] = ACTIONS(2591), + [aux_sym_hostname_token1] = ACTIONS(2591), + [aux_sym_identities_only_token1] = ACTIONS(2591), + [aux_sym_identity_agent_token1] = ACTIONS(2591), + [aux_sym_identity_file_token1] = ACTIONS(2591), + [aux_sym_ignore_unknown_token1] = ACTIONS(2591), + [aux_sym_include_token1] = ACTIONS(2591), + [aux_sym_ip_qos_token1] = ACTIONS(2591), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2591), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2591), + [aux_sym_kex_algorithms_token1] = ACTIONS(2591), + [aux_sym_known_hosts_command_token1] = ACTIONS(2591), + [aux_sym_local_command_token1] = ACTIONS(2591), + [aux_sym_local_forward_token1] = ACTIONS(2591), + [aux_sym_log_level_token1] = ACTIONS(2591), + [aux_sym_log_verbose_token1] = ACTIONS(2591), + [aux_sym_macs_token1] = ACTIONS(2591), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2591), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2591), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2591), + [aux_sym_password_authentication_token1] = ACTIONS(2591), + [aux_sym_permit_local_command_token1] = ACTIONS(2591), + [aux_sym_permit_remote_open_token1] = ACTIONS(2591), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2591), + [aux_sym_port_token1] = ACTIONS(2591), + [aux_sym_preferred_authentications_token1] = ACTIONS(2591), + [aux_sym_protocol_token1] = ACTIONS(2591), + [aux_sym_proxy_command_token1] = ACTIONS(2591), + [aux_sym_proxy_jump_token1] = ACTIONS(2591), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2591), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2591), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2591), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2591), + [aux_sym_rekey_limit_token1] = ACTIONS(2591), + [aux_sym_remote_command_token1] = ACTIONS(2591), + [aux_sym_remote_forward_token1] = ACTIONS(2591), + [aux_sym_request_tty_token1] = ACTIONS(2591), + [aux_sym_required_rsa_size_token1] = ACTIONS(2591), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2591), + [aux_sym_security_key_provider_token1] = ACTIONS(2591), + [aux_sym_send_env_token1] = ACTIONS(2591), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2591), + [aux_sym_server_alive_interval_token1] = ACTIONS(2591), + [aux_sym_session_type_token1] = ACTIONS(2591), + [aux_sym_set_env_token1] = ACTIONS(2591), + [aux_sym_stdin_null_token1] = ACTIONS(2591), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2591), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2591), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2591), + [aux_sym_syslog_facility_token1] = ACTIONS(2591), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2591), + [aux_sym_keep_alive_token1] = ACTIONS(2591), + [aux_sym_tag_token1] = ACTIONS(2591), + [aux_sym_tunnel_token1] = ACTIONS(2593), + [aux_sym_tunnel_device_token1] = ACTIONS(2591), + [aux_sym_update_host_keys_token1] = ACTIONS(2591), + [aux_sym_use_keychain_token1] = ACTIONS(2591), + [aux_sym_use_roaming_token1] = ACTIONS(2591), + [aux_sym_user_token1] = ACTIONS(2593), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2591), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2591), + [aux_sym_visual_host_key_token1] = ACTIONS(2591), + [aux_sym_xauth_location_token1] = ACTIONS(2591), }, [360] = { - [ts_builtin_sym_end] = ACTIONS(2588), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2590), - [anon_sym_DQUOTE] = ACTIONS(2588), - [aux_sym_match_token1] = ACTIONS(2588), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2588), - [aux_sym_address_family_token1] = ACTIONS(2588), - [aux_sym_batch_mode_token1] = ACTIONS(2588), - [aux_sym_bind_address_token1] = ACTIONS(2588), - [aux_sym_bind_interface_token1] = ACTIONS(2588), - [aux_sym_canonical_domains_token1] = ACTIONS(2588), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2588), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2588), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2588), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2588), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2588), - [aux_sym_certificate_file_token1] = ACTIONS(2588), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2588), - [aux_sym_channel_timeout_token1] = ACTIONS(2588), - [aux_sym_check_host_ip_token1] = ACTIONS(2588), - [aux_sym_ciphers_token1] = ACTIONS(2588), - [aux_sym_cipher_token1] = ACTIONS(2590), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2588), - [aux_sym_compression_token1] = ACTIONS(2588), - [aux_sym_connection_attempts_token1] = ACTIONS(2588), - [aux_sym_connect_timeout_token1] = ACTIONS(2588), - [aux_sym_control_master_token1] = ACTIONS(2588), - [aux_sym_control_path_token1] = ACTIONS(2588), - [aux_sym_control_persist_token1] = ACTIONS(2588), - [aux_sym_dynamic_forward_token1] = ACTIONS(2588), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2588), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2588), - [aux_sym_escape_char_token1] = ACTIONS(2588), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2588), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2588), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2588), - [aux_sym_forward_agent_token1] = ACTIONS(2588), - [aux_sym_forward_x11_token1] = ACTIONS(2590), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2588), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2588), - [aux_sym_gateway_ports_token1] = ACTIONS(2588), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2588), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2588), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2588), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2588), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2588), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2588), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2588), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2588), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2588), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2588), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2588), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2588), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2588), - [aux_sym_host_key_alias_token1] = ACTIONS(2588), - [aux_sym_hostname_token1] = ACTIONS(2588), - [aux_sym_identities_only_token1] = ACTIONS(2588), - [aux_sym_identity_agent_token1] = ACTIONS(2588), - [aux_sym_identity_file_token1] = ACTIONS(2588), - [aux_sym_ignore_unknown_token1] = ACTIONS(2588), - [aux_sym_include_token1] = ACTIONS(2588), - [aux_sym_ip_qos_token1] = ACTIONS(2588), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2588), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2588), - [aux_sym_kex_algorithms_token1] = ACTIONS(2588), - [aux_sym_known_hosts_command_token1] = ACTIONS(2588), - [aux_sym_local_command_token1] = ACTIONS(2588), - [aux_sym_local_forward_token1] = ACTIONS(2588), - [aux_sym_log_level_token1] = ACTIONS(2588), - [aux_sym_log_verbose_token1] = ACTIONS(2588), - [aux_sym_macs_token1] = ACTIONS(2588), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2588), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2588), - [aux_sym_password_authentication_token1] = ACTIONS(2588), - [aux_sym_permit_local_command_token1] = ACTIONS(2588), - [aux_sym_permit_remote_open_token1] = ACTIONS(2588), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2588), - [aux_sym_port_token1] = ACTIONS(2588), - [aux_sym_preferred_authentications_token1] = ACTIONS(2588), - [aux_sym_protocol_token1] = ACTIONS(2588), - [aux_sym_proxy_command_token1] = ACTIONS(2588), - [aux_sym_proxy_jump_token1] = ACTIONS(2588), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2588), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2588), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2588), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2588), - [aux_sym_rekey_limit_token1] = ACTIONS(2588), - [aux_sym_remote_command_token1] = ACTIONS(2588), - [aux_sym_remote_forward_token1] = ACTIONS(2588), - [aux_sym_request_tty_token1] = ACTIONS(2588), - [aux_sym_required_rsa_size_token1] = ACTIONS(2588), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2588), - [aux_sym_security_key_provider_token1] = ACTIONS(2588), - [aux_sym_send_env_token1] = ACTIONS(2588), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2588), - [aux_sym_server_alive_interval_token1] = ACTIONS(2588), - [aux_sym_session_type_token1] = ACTIONS(2588), - [aux_sym_set_env_token1] = ACTIONS(2588), - [aux_sym_stdin_null_token1] = ACTIONS(2588), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2588), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2588), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2588), - [aux_sym_syslog_facility_token1] = ACTIONS(2588), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2588), - [aux_sym_keep_alive_token1] = ACTIONS(2588), - [aux_sym_tag_token1] = ACTIONS(2588), - [aux_sym_tunnel_token1] = ACTIONS(2590), - [aux_sym_tunnel_device_token1] = ACTIONS(2588), - [aux_sym_update_host_keys_token1] = ACTIONS(2588), - [aux_sym_use_keychain_token1] = ACTIONS(2588), - [aux_sym_use_roaming_token1] = ACTIONS(2588), - [aux_sym_user_token1] = ACTIONS(2590), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2588), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2588), - [aux_sym_visual_host_key_token1] = ACTIONS(2588), - [aux_sym_xauth_location_token1] = ACTIONS(2588), + [ts_builtin_sym_end] = ACTIONS(2597), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2599), + [anon_sym_DQUOTE] = ACTIONS(2601), + [aux_sym_match_token1] = ACTIONS(2597), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2597), + [aux_sym_address_family_token1] = ACTIONS(2597), + [aux_sym_batch_mode_token1] = ACTIONS(2597), + [aux_sym_bind_address_token1] = ACTIONS(2597), + [aux_sym_bind_interface_token1] = ACTIONS(2597), + [aux_sym_canonical_domains_token1] = ACTIONS(2597), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2597), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2597), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2597), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2597), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2597), + [aux_sym_certificate_file_token1] = ACTIONS(2597), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2597), + [aux_sym_channel_timeout_token1] = ACTIONS(2597), + [aux_sym_check_host_ip_token1] = ACTIONS(2597), + [aux_sym_ciphers_token1] = ACTIONS(2597), + [aux_sym_cipher_token1] = ACTIONS(2599), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2597), + [aux_sym_compression_token1] = ACTIONS(2597), + [aux_sym_connection_attempts_token1] = ACTIONS(2597), + [aux_sym_connect_timeout_token1] = ACTIONS(2597), + [aux_sym_control_master_token1] = ACTIONS(2597), + [aux_sym_control_path_token1] = ACTIONS(2597), + [aux_sym_control_persist_token1] = ACTIONS(2597), + [aux_sym_dynamic_forward_token1] = ACTIONS(2597), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2597), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2597), + [aux_sym_escape_char_token1] = ACTIONS(2597), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2597), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2597), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2597), + [aux_sym_forward_agent_token1] = ACTIONS(2597), + [aux_sym_forward_x11_token1] = ACTIONS(2599), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2597), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2597), + [aux_sym_gateway_ports_token1] = ACTIONS(2597), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2597), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2597), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2597), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2597), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2597), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2597), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2597), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2597), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2597), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2597), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2597), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2597), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2597), + [aux_sym_host_key_alias_token1] = ACTIONS(2597), + [aux_sym_hostname_token1] = ACTIONS(2597), + [aux_sym_identities_only_token1] = ACTIONS(2597), + [aux_sym_identity_agent_token1] = ACTIONS(2597), + [aux_sym_identity_file_token1] = ACTIONS(2597), + [aux_sym_ignore_unknown_token1] = ACTIONS(2597), + [aux_sym_include_token1] = ACTIONS(2597), + [aux_sym_ip_qos_token1] = ACTIONS(2597), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2597), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2597), + [aux_sym_kex_algorithms_token1] = ACTIONS(2597), + [aux_sym_known_hosts_command_token1] = ACTIONS(2597), + [aux_sym_local_command_token1] = ACTIONS(2597), + [aux_sym_local_forward_token1] = ACTIONS(2597), + [aux_sym_log_level_token1] = ACTIONS(2597), + [aux_sym_log_verbose_token1] = ACTIONS(2597), + [aux_sym_macs_token1] = ACTIONS(2597), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2597), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2597), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2597), + [aux_sym_password_authentication_token1] = ACTIONS(2597), + [aux_sym_permit_local_command_token1] = ACTIONS(2597), + [aux_sym_permit_remote_open_token1] = ACTIONS(2597), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2597), + [aux_sym_port_token1] = ACTIONS(2597), + [aux_sym_preferred_authentications_token1] = ACTIONS(2597), + [aux_sym_protocol_token1] = ACTIONS(2597), + [aux_sym_proxy_command_token1] = ACTIONS(2597), + [aux_sym_proxy_jump_token1] = ACTIONS(2597), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2597), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2597), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2597), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2597), + [aux_sym_rekey_limit_token1] = ACTIONS(2597), + [aux_sym_remote_command_token1] = ACTIONS(2597), + [aux_sym_remote_forward_token1] = ACTIONS(2597), + [aux_sym_request_tty_token1] = ACTIONS(2597), + [aux_sym_required_rsa_size_token1] = ACTIONS(2597), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2597), + [aux_sym_security_key_provider_token1] = ACTIONS(2597), + [aux_sym_send_env_token1] = ACTIONS(2597), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2597), + [aux_sym_server_alive_interval_token1] = ACTIONS(2597), + [aux_sym_session_type_token1] = ACTIONS(2597), + [aux_sym_set_env_token1] = ACTIONS(2597), + [aux_sym_stdin_null_token1] = ACTIONS(2597), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2597), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2597), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2597), + [aux_sym_syslog_facility_token1] = ACTIONS(2597), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2597), + [aux_sym_keep_alive_token1] = ACTIONS(2597), + [aux_sym_tag_token1] = ACTIONS(2597), + [aux_sym_tunnel_token1] = ACTIONS(2599), + [aux_sym_tunnel_device_token1] = ACTIONS(2597), + [aux_sym_update_host_keys_token1] = ACTIONS(2597), + [aux_sym_use_keychain_token1] = ACTIONS(2597), + [aux_sym_use_roaming_token1] = ACTIONS(2597), + [aux_sym_user_token1] = ACTIONS(2599), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2597), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2597), + [aux_sym_visual_host_key_token1] = ACTIONS(2597), + [aux_sym_xauth_location_token1] = ACTIONS(2597), }, [361] = { - [ts_builtin_sym_end] = ACTIONS(2592), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2594), - [anon_sym_DQUOTE] = ACTIONS(2596), - [aux_sym_match_token1] = ACTIONS(2592), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2592), - [aux_sym_address_family_token1] = ACTIONS(2592), - [aux_sym_batch_mode_token1] = ACTIONS(2592), - [aux_sym_bind_address_token1] = ACTIONS(2592), - [aux_sym_bind_interface_token1] = ACTIONS(2592), - [aux_sym_canonical_domains_token1] = ACTIONS(2592), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2592), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2592), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2592), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2592), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2592), - [aux_sym_certificate_file_token1] = ACTIONS(2592), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2592), - [aux_sym_channel_timeout_token1] = ACTIONS(2592), - [aux_sym_check_host_ip_token1] = ACTIONS(2592), - [aux_sym_ciphers_token1] = ACTIONS(2592), - [aux_sym_cipher_token1] = ACTIONS(2594), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2592), - [aux_sym_compression_token1] = ACTIONS(2592), - [aux_sym_connection_attempts_token1] = ACTIONS(2592), - [aux_sym_connect_timeout_token1] = ACTIONS(2592), - [aux_sym_control_master_token1] = ACTIONS(2592), - [aux_sym_control_path_token1] = ACTIONS(2592), - [aux_sym_control_persist_token1] = ACTIONS(2592), - [aux_sym_dynamic_forward_token1] = ACTIONS(2592), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2592), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2592), - [aux_sym_escape_char_token1] = ACTIONS(2592), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2592), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2592), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2592), - [aux_sym_forward_agent_token1] = ACTIONS(2592), - [aux_sym_forward_x11_token1] = ACTIONS(2594), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2592), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2592), - [aux_sym_gateway_ports_token1] = ACTIONS(2592), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2592), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2592), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2592), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2592), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2592), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2592), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2592), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2592), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2592), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2592), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2592), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2592), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2592), - [aux_sym_host_key_alias_token1] = ACTIONS(2592), - [aux_sym_hostname_token1] = ACTIONS(2592), - [aux_sym_identities_only_token1] = ACTIONS(2592), - [aux_sym_identity_agent_token1] = ACTIONS(2592), - [aux_sym_identity_file_token1] = ACTIONS(2592), - [aux_sym_ignore_unknown_token1] = ACTIONS(2592), - [aux_sym_include_token1] = ACTIONS(2592), - [aux_sym_ip_qos_token1] = ACTIONS(2592), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2592), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2592), - [aux_sym_kex_algorithms_token1] = ACTIONS(2592), - [aux_sym_known_hosts_command_token1] = ACTIONS(2592), - [aux_sym_local_command_token1] = ACTIONS(2592), - [aux_sym_local_forward_token1] = ACTIONS(2592), - [aux_sym_log_level_token1] = ACTIONS(2592), - [aux_sym_log_verbose_token1] = ACTIONS(2592), - [aux_sym_macs_token1] = ACTIONS(2592), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2592), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2592), - [aux_sym_password_authentication_token1] = ACTIONS(2592), - [aux_sym_permit_local_command_token1] = ACTIONS(2592), - [aux_sym_permit_remote_open_token1] = ACTIONS(2592), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2592), - [aux_sym_port_token1] = ACTIONS(2592), - [aux_sym_preferred_authentications_token1] = ACTIONS(2592), - [aux_sym_protocol_token1] = ACTIONS(2592), - [aux_sym_proxy_command_token1] = ACTIONS(2592), - [aux_sym_proxy_jump_token1] = ACTIONS(2592), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2592), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2592), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2592), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2592), - [aux_sym_rekey_limit_token1] = ACTIONS(2592), - [aux_sym_remote_command_token1] = ACTIONS(2592), - [aux_sym_remote_forward_token1] = ACTIONS(2592), - [aux_sym_request_tty_token1] = ACTIONS(2592), - [aux_sym_required_rsa_size_token1] = ACTIONS(2592), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2592), - [aux_sym_security_key_provider_token1] = ACTIONS(2592), - [aux_sym_send_env_token1] = ACTIONS(2592), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2592), - [aux_sym_server_alive_interval_token1] = ACTIONS(2592), - [aux_sym_session_type_token1] = ACTIONS(2592), - [aux_sym_set_env_token1] = ACTIONS(2592), - [aux_sym_stdin_null_token1] = ACTIONS(2592), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2592), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2592), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2592), - [aux_sym_syslog_facility_token1] = ACTIONS(2592), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2592), - [aux_sym_keep_alive_token1] = ACTIONS(2592), - [aux_sym_tag_token1] = ACTIONS(2592), - [aux_sym_tunnel_token1] = ACTIONS(2594), - [aux_sym_tunnel_device_token1] = ACTIONS(2592), - [aux_sym_update_host_keys_token1] = ACTIONS(2592), - [aux_sym_use_keychain_token1] = ACTIONS(2592), - [aux_sym_use_roaming_token1] = ACTIONS(2592), - [aux_sym_user_token1] = ACTIONS(2594), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2592), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2592), - [aux_sym_visual_host_key_token1] = ACTIONS(2592), - [aux_sym_xauth_location_token1] = ACTIONS(2592), + [ts_builtin_sym_end] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2605), + [anon_sym_DQUOTE] = ACTIONS(2603), + [aux_sym_match_token1] = ACTIONS(2603), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2603), + [aux_sym_address_family_token1] = ACTIONS(2603), + [aux_sym_batch_mode_token1] = ACTIONS(2603), + [aux_sym_bind_address_token1] = ACTIONS(2603), + [aux_sym_bind_interface_token1] = ACTIONS(2603), + [aux_sym_canonical_domains_token1] = ACTIONS(2603), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2603), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2603), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2603), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2603), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2603), + [aux_sym_certificate_file_token1] = ACTIONS(2603), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2603), + [aux_sym_channel_timeout_token1] = ACTIONS(2603), + [aux_sym_check_host_ip_token1] = ACTIONS(2603), + [aux_sym_ciphers_token1] = ACTIONS(2603), + [aux_sym_cipher_token1] = ACTIONS(2605), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2603), + [aux_sym_compression_token1] = ACTIONS(2603), + [aux_sym_connection_attempts_token1] = ACTIONS(2603), + [aux_sym_connect_timeout_token1] = ACTIONS(2603), + [aux_sym_control_master_token1] = ACTIONS(2603), + [aux_sym_control_path_token1] = ACTIONS(2603), + [aux_sym_control_persist_token1] = ACTIONS(2603), + [aux_sym_dynamic_forward_token1] = ACTIONS(2603), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2603), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2603), + [aux_sym_escape_char_token1] = ACTIONS(2603), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2603), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2603), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2603), + [aux_sym_forward_agent_token1] = ACTIONS(2603), + [aux_sym_forward_x11_token1] = ACTIONS(2605), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2603), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2603), + [aux_sym_gateway_ports_token1] = ACTIONS(2603), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2603), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2603), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2603), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2603), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2603), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2603), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2603), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2603), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2603), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2603), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2603), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2603), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2603), + [aux_sym_host_key_alias_token1] = ACTIONS(2603), + [aux_sym_hostname_token1] = ACTIONS(2603), + [aux_sym_identities_only_token1] = ACTIONS(2603), + [aux_sym_identity_agent_token1] = ACTIONS(2603), + [aux_sym_identity_file_token1] = ACTIONS(2603), + [aux_sym_ignore_unknown_token1] = ACTIONS(2603), + [aux_sym_include_token1] = ACTIONS(2603), + [aux_sym_ip_qos_token1] = ACTIONS(2603), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2603), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2603), + [aux_sym_kex_algorithms_token1] = ACTIONS(2603), + [aux_sym_known_hosts_command_token1] = ACTIONS(2603), + [aux_sym_local_command_token1] = ACTIONS(2603), + [aux_sym_local_forward_token1] = ACTIONS(2603), + [aux_sym_log_level_token1] = ACTIONS(2603), + [aux_sym_log_verbose_token1] = ACTIONS(2603), + [aux_sym_macs_token1] = ACTIONS(2603), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2603), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2603), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2603), + [aux_sym_password_authentication_token1] = ACTIONS(2603), + [aux_sym_permit_local_command_token1] = ACTIONS(2603), + [aux_sym_permit_remote_open_token1] = ACTIONS(2603), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2603), + [aux_sym_port_token1] = ACTIONS(2603), + [aux_sym_preferred_authentications_token1] = ACTIONS(2603), + [aux_sym_protocol_token1] = ACTIONS(2603), + [aux_sym_proxy_command_token1] = ACTIONS(2603), + [aux_sym_proxy_jump_token1] = ACTIONS(2603), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2603), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2603), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2603), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2603), + [aux_sym_rekey_limit_token1] = ACTIONS(2603), + [aux_sym_remote_command_token1] = ACTIONS(2603), + [aux_sym_remote_forward_token1] = ACTIONS(2603), + [aux_sym_request_tty_token1] = ACTIONS(2603), + [aux_sym_required_rsa_size_token1] = ACTIONS(2603), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2603), + [aux_sym_security_key_provider_token1] = ACTIONS(2603), + [aux_sym_send_env_token1] = ACTIONS(2603), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2603), + [aux_sym_server_alive_interval_token1] = ACTIONS(2603), + [aux_sym_session_type_token1] = ACTIONS(2603), + [aux_sym_set_env_token1] = ACTIONS(2603), + [aux_sym_stdin_null_token1] = ACTIONS(2603), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2603), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2603), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2603), + [aux_sym_syslog_facility_token1] = ACTIONS(2603), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2603), + [aux_sym_keep_alive_token1] = ACTIONS(2603), + [aux_sym_tag_token1] = ACTIONS(2603), + [aux_sym_tunnel_token1] = ACTIONS(2605), + [aux_sym_tunnel_device_token1] = ACTIONS(2603), + [aux_sym_update_host_keys_token1] = ACTIONS(2603), + [aux_sym_use_keychain_token1] = ACTIONS(2603), + [aux_sym_use_roaming_token1] = ACTIONS(2603), + [aux_sym_user_token1] = ACTIONS(2605), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2603), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2603), + [aux_sym_visual_host_key_token1] = ACTIONS(2603), + [aux_sym_xauth_location_token1] = ACTIONS(2603), }, [362] = { - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2600), - [anon_sym_DQUOTE] = ACTIONS(2602), - [aux_sym_match_token1] = ACTIONS(2598), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2598), - [aux_sym_address_family_token1] = ACTIONS(2598), - [aux_sym_batch_mode_token1] = ACTIONS(2598), - [aux_sym_bind_address_token1] = ACTIONS(2598), - [aux_sym_bind_interface_token1] = ACTIONS(2598), - [aux_sym_canonical_domains_token1] = ACTIONS(2598), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2598), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2598), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2598), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2598), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2598), - [aux_sym_certificate_file_token1] = ACTIONS(2598), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2598), - [aux_sym_channel_timeout_token1] = ACTIONS(2598), - [aux_sym_check_host_ip_token1] = ACTIONS(2598), - [aux_sym_ciphers_token1] = ACTIONS(2598), - [aux_sym_cipher_token1] = ACTIONS(2600), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2598), - [aux_sym_compression_token1] = ACTIONS(2598), - [aux_sym_connection_attempts_token1] = ACTIONS(2598), - [aux_sym_connect_timeout_token1] = ACTIONS(2598), - [aux_sym_control_master_token1] = ACTIONS(2598), - [aux_sym_control_path_token1] = ACTIONS(2598), - [aux_sym_control_persist_token1] = ACTIONS(2598), - [aux_sym_dynamic_forward_token1] = ACTIONS(2598), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2598), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2598), - [aux_sym_escape_char_token1] = ACTIONS(2598), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2598), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2598), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2598), - [aux_sym_forward_agent_token1] = ACTIONS(2598), - [aux_sym_forward_x11_token1] = ACTIONS(2600), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2598), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2598), - [aux_sym_gateway_ports_token1] = ACTIONS(2598), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2598), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2598), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2598), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2598), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2598), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2598), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2598), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2598), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2598), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2598), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2598), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2598), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2598), - [aux_sym_host_key_alias_token1] = ACTIONS(2598), - [aux_sym_hostname_token1] = ACTIONS(2598), - [aux_sym_identities_only_token1] = ACTIONS(2598), - [aux_sym_identity_agent_token1] = ACTIONS(2598), - [aux_sym_identity_file_token1] = ACTIONS(2598), - [aux_sym_ignore_unknown_token1] = ACTIONS(2598), - [aux_sym_include_token1] = ACTIONS(2598), - [aux_sym_ip_qos_token1] = ACTIONS(2598), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2598), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2598), - [aux_sym_kex_algorithms_token1] = ACTIONS(2598), - [aux_sym_known_hosts_command_token1] = ACTIONS(2598), - [aux_sym_local_command_token1] = ACTIONS(2598), - [aux_sym_local_forward_token1] = ACTIONS(2598), - [aux_sym_log_level_token1] = ACTIONS(2598), - [aux_sym_log_verbose_token1] = ACTIONS(2598), - [aux_sym_macs_token1] = ACTIONS(2598), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2598), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2598), - [aux_sym_password_authentication_token1] = ACTIONS(2598), - [aux_sym_permit_local_command_token1] = ACTIONS(2598), - [aux_sym_permit_remote_open_token1] = ACTIONS(2598), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2598), - [aux_sym_port_token1] = ACTIONS(2598), - [aux_sym_preferred_authentications_token1] = ACTIONS(2598), - [aux_sym_protocol_token1] = ACTIONS(2598), - [aux_sym_proxy_command_token1] = ACTIONS(2598), - [aux_sym_proxy_jump_token1] = ACTIONS(2598), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2598), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2598), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2598), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2598), - [aux_sym_rekey_limit_token1] = ACTIONS(2598), - [aux_sym_remote_command_token1] = ACTIONS(2598), - [aux_sym_remote_forward_token1] = ACTIONS(2598), - [aux_sym_request_tty_token1] = ACTIONS(2598), - [aux_sym_required_rsa_size_token1] = ACTIONS(2598), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2598), - [aux_sym_security_key_provider_token1] = ACTIONS(2598), - [aux_sym_send_env_token1] = ACTIONS(2598), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2598), - [aux_sym_server_alive_interval_token1] = ACTIONS(2598), - [aux_sym_session_type_token1] = ACTIONS(2598), - [aux_sym_set_env_token1] = ACTIONS(2598), - [aux_sym_stdin_null_token1] = ACTIONS(2598), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2598), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2598), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2598), - [aux_sym_syslog_facility_token1] = ACTIONS(2598), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2598), - [aux_sym_keep_alive_token1] = ACTIONS(2598), - [aux_sym_tag_token1] = ACTIONS(2598), - [aux_sym_tunnel_token1] = ACTIONS(2600), - [aux_sym_tunnel_device_token1] = ACTIONS(2598), - [aux_sym_update_host_keys_token1] = ACTIONS(2598), - [aux_sym_use_keychain_token1] = ACTIONS(2598), - [aux_sym_use_roaming_token1] = ACTIONS(2598), - [aux_sym_user_token1] = ACTIONS(2600), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2598), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2598), - [aux_sym_visual_host_key_token1] = ACTIONS(2598), - [aux_sym_xauth_location_token1] = ACTIONS(2598), + [ts_builtin_sym_end] = ACTIONS(2607), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2607), + [aux_sym_match_token1] = ACTIONS(2607), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2607), + [aux_sym_address_family_token1] = ACTIONS(2607), + [aux_sym_batch_mode_token1] = ACTIONS(2607), + [aux_sym_bind_address_token1] = ACTIONS(2607), + [aux_sym_bind_interface_token1] = ACTIONS(2607), + [aux_sym_canonical_domains_token1] = ACTIONS(2607), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2607), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2607), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2607), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2607), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2607), + [aux_sym_certificate_file_token1] = ACTIONS(2607), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2607), + [aux_sym_channel_timeout_token1] = ACTIONS(2607), + [aux_sym_check_host_ip_token1] = ACTIONS(2607), + [aux_sym_ciphers_token1] = ACTIONS(2607), + [aux_sym_cipher_token1] = ACTIONS(2609), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2607), + [aux_sym_compression_token1] = ACTIONS(2607), + [aux_sym_connection_attempts_token1] = ACTIONS(2607), + [aux_sym_connect_timeout_token1] = ACTIONS(2607), + [aux_sym_control_master_token1] = ACTIONS(2607), + [aux_sym_control_path_token1] = ACTIONS(2607), + [aux_sym_control_persist_token1] = ACTIONS(2607), + [aux_sym_dynamic_forward_token1] = ACTIONS(2607), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2607), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2607), + [aux_sym_escape_char_token1] = ACTIONS(2607), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2607), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2607), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2607), + [aux_sym_forward_agent_token1] = ACTIONS(2607), + [aux_sym_forward_x11_token1] = ACTIONS(2609), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2607), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2607), + [aux_sym_gateway_ports_token1] = ACTIONS(2607), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2607), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2607), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2607), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2607), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2607), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2607), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2607), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2607), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2607), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2607), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2607), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2607), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2607), + [aux_sym_host_key_alias_token1] = ACTIONS(2607), + [aux_sym_hostname_token1] = ACTIONS(2607), + [aux_sym_identities_only_token1] = ACTIONS(2607), + [aux_sym_identity_agent_token1] = ACTIONS(2607), + [aux_sym_identity_file_token1] = ACTIONS(2607), + [aux_sym_ignore_unknown_token1] = ACTIONS(2607), + [aux_sym_include_token1] = ACTIONS(2607), + [aux_sym_ip_qos_token1] = ACTIONS(2607), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2607), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2607), + [aux_sym_kex_algorithms_token1] = ACTIONS(2607), + [aux_sym_known_hosts_command_token1] = ACTIONS(2607), + [aux_sym_local_command_token1] = ACTIONS(2607), + [aux_sym_local_forward_token1] = ACTIONS(2607), + [aux_sym_log_level_token1] = ACTIONS(2607), + [aux_sym_log_verbose_token1] = ACTIONS(2607), + [aux_sym_macs_token1] = ACTIONS(2607), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2607), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2607), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2607), + [aux_sym_password_authentication_token1] = ACTIONS(2607), + [aux_sym_permit_local_command_token1] = ACTIONS(2607), + [aux_sym_permit_remote_open_token1] = ACTIONS(2607), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2607), + [aux_sym_port_token1] = ACTIONS(2607), + [aux_sym_preferred_authentications_token1] = ACTIONS(2607), + [aux_sym_protocol_token1] = ACTIONS(2607), + [aux_sym_proxy_command_token1] = ACTIONS(2607), + [aux_sym_proxy_jump_token1] = ACTIONS(2607), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2607), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2607), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2607), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2607), + [aux_sym_rekey_limit_token1] = ACTIONS(2607), + [aux_sym_remote_command_token1] = ACTIONS(2607), + [aux_sym_remote_forward_token1] = ACTIONS(2607), + [aux_sym_request_tty_token1] = ACTIONS(2607), + [aux_sym_required_rsa_size_token1] = ACTIONS(2607), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2607), + [aux_sym_security_key_provider_token1] = ACTIONS(2607), + [aux_sym_send_env_token1] = ACTIONS(2607), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2607), + [aux_sym_server_alive_interval_token1] = ACTIONS(2607), + [aux_sym_session_type_token1] = ACTIONS(2607), + [aux_sym_set_env_token1] = ACTIONS(2607), + [aux_sym_stdin_null_token1] = ACTIONS(2607), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2607), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2607), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2607), + [aux_sym_syslog_facility_token1] = ACTIONS(2607), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2607), + [aux_sym_keep_alive_token1] = ACTIONS(2607), + [aux_sym_tag_token1] = ACTIONS(2607), + [aux_sym_tunnel_token1] = ACTIONS(2609), + [aux_sym_tunnel_device_token1] = ACTIONS(2607), + [aux_sym_update_host_keys_token1] = ACTIONS(2607), + [aux_sym_use_keychain_token1] = ACTIONS(2607), + [aux_sym_use_roaming_token1] = ACTIONS(2607), + [aux_sym_user_token1] = ACTIONS(2609), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2607), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2607), + [aux_sym_visual_host_key_token1] = ACTIONS(2607), + [aux_sym_xauth_location_token1] = ACTIONS(2607), }, [363] = { - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2604), - [aux_sym_match_token1] = ACTIONS(2604), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2604), - [aux_sym_address_family_token1] = ACTIONS(2604), - [aux_sym_batch_mode_token1] = ACTIONS(2604), - [aux_sym_bind_address_token1] = ACTIONS(2604), - [aux_sym_bind_interface_token1] = ACTIONS(2604), - [aux_sym_canonical_domains_token1] = ACTIONS(2604), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2604), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2604), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2604), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2604), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2604), - [aux_sym_certificate_file_token1] = ACTIONS(2604), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2604), - [aux_sym_channel_timeout_token1] = ACTIONS(2604), - [aux_sym_check_host_ip_token1] = ACTIONS(2604), - [aux_sym_ciphers_token1] = ACTIONS(2604), - [aux_sym_cipher_token1] = ACTIONS(2606), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2604), - [aux_sym_compression_token1] = ACTIONS(2604), - [aux_sym_connection_attempts_token1] = ACTIONS(2604), - [aux_sym_connect_timeout_token1] = ACTIONS(2604), - [aux_sym_control_master_token1] = ACTIONS(2604), - [aux_sym_control_path_token1] = ACTIONS(2604), - [aux_sym_control_persist_token1] = ACTIONS(2604), - [aux_sym_dynamic_forward_token1] = ACTIONS(2604), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2604), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2604), - [aux_sym_escape_char_token1] = ACTIONS(2604), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2604), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2604), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2604), - [aux_sym_forward_agent_token1] = ACTIONS(2604), - [aux_sym_forward_x11_token1] = ACTIONS(2606), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2604), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2604), - [aux_sym_gateway_ports_token1] = ACTIONS(2604), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2604), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2604), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2604), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2604), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2604), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2604), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2604), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2604), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2604), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2604), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2604), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2604), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2604), - [aux_sym_host_key_alias_token1] = ACTIONS(2604), - [aux_sym_hostname_token1] = ACTIONS(2604), - [aux_sym_identities_only_token1] = ACTIONS(2604), - [aux_sym_identity_agent_token1] = ACTIONS(2604), - [aux_sym_identity_file_token1] = ACTIONS(2604), - [aux_sym_ignore_unknown_token1] = ACTIONS(2604), - [aux_sym_include_token1] = ACTIONS(2604), - [aux_sym_ip_qos_token1] = ACTIONS(2604), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2604), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2604), - [aux_sym_kex_algorithms_token1] = ACTIONS(2604), - [aux_sym_known_hosts_command_token1] = ACTIONS(2604), - [aux_sym_local_command_token1] = ACTIONS(2604), - [aux_sym_local_forward_token1] = ACTIONS(2604), - [aux_sym_log_level_token1] = ACTIONS(2604), - [aux_sym_log_verbose_token1] = ACTIONS(2604), - [aux_sym_macs_token1] = ACTIONS(2604), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2604), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2604), - [aux_sym_password_authentication_token1] = ACTIONS(2604), - [aux_sym_permit_local_command_token1] = ACTIONS(2604), - [aux_sym_permit_remote_open_token1] = ACTIONS(2604), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2604), - [aux_sym_port_token1] = ACTIONS(2604), - [aux_sym_preferred_authentications_token1] = ACTIONS(2604), - [aux_sym_protocol_token1] = ACTIONS(2604), - [aux_sym_proxy_command_token1] = ACTIONS(2604), - [aux_sym_proxy_jump_token1] = ACTIONS(2604), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2604), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2604), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2604), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2604), - [aux_sym_rekey_limit_token1] = ACTIONS(2604), - [aux_sym_remote_command_token1] = ACTIONS(2604), - [aux_sym_remote_forward_token1] = ACTIONS(2604), - [aux_sym_request_tty_token1] = ACTIONS(2604), - [aux_sym_required_rsa_size_token1] = ACTIONS(2604), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2604), - [aux_sym_security_key_provider_token1] = ACTIONS(2604), - [aux_sym_send_env_token1] = ACTIONS(2604), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2604), - [aux_sym_server_alive_interval_token1] = ACTIONS(2604), - [aux_sym_session_type_token1] = ACTIONS(2604), - [aux_sym_set_env_token1] = ACTIONS(2604), - [aux_sym_stdin_null_token1] = ACTIONS(2604), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2604), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2604), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2604), - [aux_sym_syslog_facility_token1] = ACTIONS(2604), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2604), - [aux_sym_keep_alive_token1] = ACTIONS(2604), - [aux_sym_tag_token1] = ACTIONS(2604), - [aux_sym_tunnel_token1] = ACTIONS(2606), - [aux_sym_tunnel_device_token1] = ACTIONS(2604), - [aux_sym_update_host_keys_token1] = ACTIONS(2604), - [aux_sym_use_keychain_token1] = ACTIONS(2604), - [aux_sym_use_roaming_token1] = ACTIONS(2604), - [aux_sym_user_token1] = ACTIONS(2606), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2604), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2604), - [aux_sym_visual_host_key_token1] = ACTIONS(2604), - [aux_sym_xauth_location_token1] = ACTIONS(2604), + [ts_builtin_sym_end] = ACTIONS(2611), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2613), + [anon_sym_DQUOTE] = ACTIONS(2615), + [aux_sym_match_token1] = ACTIONS(2611), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2611), + [aux_sym_address_family_token1] = ACTIONS(2611), + [aux_sym_batch_mode_token1] = ACTIONS(2611), + [aux_sym_bind_address_token1] = ACTIONS(2611), + [aux_sym_bind_interface_token1] = ACTIONS(2611), + [aux_sym_canonical_domains_token1] = ACTIONS(2611), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2611), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2611), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2611), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2611), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2611), + [aux_sym_certificate_file_token1] = ACTIONS(2611), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2611), + [aux_sym_channel_timeout_token1] = ACTIONS(2611), + [aux_sym_check_host_ip_token1] = ACTIONS(2611), + [aux_sym_ciphers_token1] = ACTIONS(2611), + [aux_sym_cipher_token1] = ACTIONS(2613), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2611), + [aux_sym_compression_token1] = ACTIONS(2611), + [aux_sym_connection_attempts_token1] = ACTIONS(2611), + [aux_sym_connect_timeout_token1] = ACTIONS(2611), + [aux_sym_control_master_token1] = ACTIONS(2611), + [aux_sym_control_path_token1] = ACTIONS(2611), + [aux_sym_control_persist_token1] = ACTIONS(2611), + [aux_sym_dynamic_forward_token1] = ACTIONS(2611), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2611), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2611), + [aux_sym_escape_char_token1] = ACTIONS(2611), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2611), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2611), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2611), + [aux_sym_forward_agent_token1] = ACTIONS(2611), + [aux_sym_forward_x11_token1] = ACTIONS(2613), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2611), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2611), + [aux_sym_gateway_ports_token1] = ACTIONS(2611), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2611), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2611), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2611), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2611), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2611), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2611), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2611), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2611), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2611), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2611), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2611), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2611), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2611), + [aux_sym_host_key_alias_token1] = ACTIONS(2611), + [aux_sym_hostname_token1] = ACTIONS(2611), + [aux_sym_identities_only_token1] = ACTIONS(2611), + [aux_sym_identity_agent_token1] = ACTIONS(2611), + [aux_sym_identity_file_token1] = ACTIONS(2611), + [aux_sym_ignore_unknown_token1] = ACTIONS(2611), + [aux_sym_include_token1] = ACTIONS(2611), + [aux_sym_ip_qos_token1] = ACTIONS(2611), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2611), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2611), + [aux_sym_kex_algorithms_token1] = ACTIONS(2611), + [aux_sym_known_hosts_command_token1] = ACTIONS(2611), + [aux_sym_local_command_token1] = ACTIONS(2611), + [aux_sym_local_forward_token1] = ACTIONS(2611), + [aux_sym_log_level_token1] = ACTIONS(2611), + [aux_sym_log_verbose_token1] = ACTIONS(2611), + [aux_sym_macs_token1] = ACTIONS(2611), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2611), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2611), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2611), + [aux_sym_password_authentication_token1] = ACTIONS(2611), + [aux_sym_permit_local_command_token1] = ACTIONS(2611), + [aux_sym_permit_remote_open_token1] = ACTIONS(2611), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2611), + [aux_sym_port_token1] = ACTIONS(2611), + [aux_sym_preferred_authentications_token1] = ACTIONS(2611), + [aux_sym_protocol_token1] = ACTIONS(2611), + [aux_sym_proxy_command_token1] = ACTIONS(2611), + [aux_sym_proxy_jump_token1] = ACTIONS(2611), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2611), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2611), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2611), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2611), + [aux_sym_rekey_limit_token1] = ACTIONS(2611), + [aux_sym_remote_command_token1] = ACTIONS(2611), + [aux_sym_remote_forward_token1] = ACTIONS(2611), + [aux_sym_request_tty_token1] = ACTIONS(2611), + [aux_sym_required_rsa_size_token1] = ACTIONS(2611), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2611), + [aux_sym_security_key_provider_token1] = ACTIONS(2611), + [aux_sym_send_env_token1] = ACTIONS(2611), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2611), + [aux_sym_server_alive_interval_token1] = ACTIONS(2611), + [aux_sym_session_type_token1] = ACTIONS(2611), + [aux_sym_set_env_token1] = ACTIONS(2611), + [aux_sym_stdin_null_token1] = ACTIONS(2611), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2611), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2611), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2611), + [aux_sym_syslog_facility_token1] = ACTIONS(2611), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2611), + [aux_sym_keep_alive_token1] = ACTIONS(2611), + [aux_sym_tag_token1] = ACTIONS(2611), + [aux_sym_tunnel_token1] = ACTIONS(2613), + [aux_sym_tunnel_device_token1] = ACTIONS(2611), + [aux_sym_update_host_keys_token1] = ACTIONS(2611), + [aux_sym_use_keychain_token1] = ACTIONS(2611), + [aux_sym_use_roaming_token1] = ACTIONS(2611), + [aux_sym_user_token1] = ACTIONS(2613), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2611), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2611), + [aux_sym_visual_host_key_token1] = ACTIONS(2611), + [aux_sym_xauth_location_token1] = ACTIONS(2611), }, [364] = { - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2610), - [anon_sym_DQUOTE] = ACTIONS(2608), - [aux_sym_match_token1] = ACTIONS(2608), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2608), - [aux_sym_address_family_token1] = ACTIONS(2608), - [aux_sym_batch_mode_token1] = ACTIONS(2608), - [aux_sym_bind_address_token1] = ACTIONS(2608), - [aux_sym_bind_interface_token1] = ACTIONS(2608), - [aux_sym_canonical_domains_token1] = ACTIONS(2608), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2608), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2608), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2608), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2608), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2608), - [aux_sym_certificate_file_token1] = ACTIONS(2608), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2608), - [aux_sym_channel_timeout_token1] = ACTIONS(2608), - [aux_sym_check_host_ip_token1] = ACTIONS(2608), - [aux_sym_ciphers_token1] = ACTIONS(2608), - [aux_sym_cipher_token1] = ACTIONS(2610), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2608), - [aux_sym_compression_token1] = ACTIONS(2608), - [aux_sym_connection_attempts_token1] = ACTIONS(2608), - [aux_sym_connect_timeout_token1] = ACTIONS(2608), - [aux_sym_control_master_token1] = ACTIONS(2608), - [aux_sym_control_path_token1] = ACTIONS(2608), - [aux_sym_control_persist_token1] = ACTIONS(2608), - [aux_sym_dynamic_forward_token1] = ACTIONS(2608), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2608), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2608), - [aux_sym_escape_char_token1] = ACTIONS(2608), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2608), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2608), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2608), - [aux_sym_forward_agent_token1] = ACTIONS(2608), - [aux_sym_forward_x11_token1] = ACTIONS(2610), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2608), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2608), - [aux_sym_gateway_ports_token1] = ACTIONS(2608), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2608), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2608), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2608), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2608), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2608), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2608), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2608), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2608), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2608), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2608), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2608), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2608), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2608), - [aux_sym_host_key_alias_token1] = ACTIONS(2608), - [aux_sym_hostname_token1] = ACTIONS(2608), - [aux_sym_identities_only_token1] = ACTIONS(2608), - [aux_sym_identity_agent_token1] = ACTIONS(2608), - [aux_sym_identity_file_token1] = ACTIONS(2608), - [aux_sym_ignore_unknown_token1] = ACTIONS(2608), - [aux_sym_include_token1] = ACTIONS(2608), - [aux_sym_ip_qos_token1] = ACTIONS(2608), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2608), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2608), - [aux_sym_kex_algorithms_token1] = ACTIONS(2608), - [aux_sym_known_hosts_command_token1] = ACTIONS(2608), - [aux_sym_local_command_token1] = ACTIONS(2608), - [aux_sym_local_forward_token1] = ACTIONS(2608), - [aux_sym_log_level_token1] = ACTIONS(2608), - [aux_sym_log_verbose_token1] = ACTIONS(2608), - [aux_sym_macs_token1] = ACTIONS(2608), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2608), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2608), - [aux_sym_password_authentication_token1] = ACTIONS(2608), - [aux_sym_permit_local_command_token1] = ACTIONS(2608), - [aux_sym_permit_remote_open_token1] = ACTIONS(2608), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2608), - [aux_sym_port_token1] = ACTIONS(2608), - [aux_sym_preferred_authentications_token1] = ACTIONS(2608), - [aux_sym_protocol_token1] = ACTIONS(2608), - [aux_sym_proxy_command_token1] = ACTIONS(2608), - [aux_sym_proxy_jump_token1] = ACTIONS(2608), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2608), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2608), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2608), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2608), - [aux_sym_rekey_limit_token1] = ACTIONS(2608), - [aux_sym_remote_command_token1] = ACTIONS(2608), - [aux_sym_remote_forward_token1] = ACTIONS(2608), - [aux_sym_request_tty_token1] = ACTIONS(2608), - [aux_sym_required_rsa_size_token1] = ACTIONS(2608), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2608), - [aux_sym_security_key_provider_token1] = ACTIONS(2608), - [aux_sym_send_env_token1] = ACTIONS(2608), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2608), - [aux_sym_server_alive_interval_token1] = ACTIONS(2608), - [aux_sym_session_type_token1] = ACTIONS(2608), - [aux_sym_set_env_token1] = ACTIONS(2608), - [aux_sym_stdin_null_token1] = ACTIONS(2608), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2608), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2608), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2608), - [aux_sym_syslog_facility_token1] = ACTIONS(2608), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2608), - [aux_sym_keep_alive_token1] = ACTIONS(2608), - [aux_sym_tag_token1] = ACTIONS(2608), - [aux_sym_tunnel_token1] = ACTIONS(2610), - [aux_sym_tunnel_device_token1] = ACTIONS(2608), - [aux_sym_update_host_keys_token1] = ACTIONS(2608), - [aux_sym_use_keychain_token1] = ACTIONS(2608), - [aux_sym_use_roaming_token1] = ACTIONS(2608), - [aux_sym_user_token1] = ACTIONS(2610), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2608), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2608), - [aux_sym_visual_host_key_token1] = ACTIONS(2608), - [aux_sym_xauth_location_token1] = ACTIONS(2608), + [ts_builtin_sym_end] = ACTIONS(2617), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2619), + [anon_sym_DQUOTE] = ACTIONS(2621), + [aux_sym_match_token1] = ACTIONS(2617), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2617), + [aux_sym_address_family_token1] = ACTIONS(2617), + [aux_sym_batch_mode_token1] = ACTIONS(2617), + [aux_sym_bind_address_token1] = ACTIONS(2617), + [aux_sym_bind_interface_token1] = ACTIONS(2617), + [aux_sym_canonical_domains_token1] = ACTIONS(2617), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2617), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2617), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2617), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2617), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2617), + [aux_sym_certificate_file_token1] = ACTIONS(2617), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2617), + [aux_sym_channel_timeout_token1] = ACTIONS(2617), + [aux_sym_check_host_ip_token1] = ACTIONS(2617), + [aux_sym_ciphers_token1] = ACTIONS(2617), + [aux_sym_cipher_token1] = ACTIONS(2619), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2617), + [aux_sym_compression_token1] = ACTIONS(2617), + [aux_sym_connection_attempts_token1] = ACTIONS(2617), + [aux_sym_connect_timeout_token1] = ACTIONS(2617), + [aux_sym_control_master_token1] = ACTIONS(2617), + [aux_sym_control_path_token1] = ACTIONS(2617), + [aux_sym_control_persist_token1] = ACTIONS(2617), + [aux_sym_dynamic_forward_token1] = ACTIONS(2617), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2617), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2617), + [aux_sym_escape_char_token1] = ACTIONS(2617), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2617), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2617), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2617), + [aux_sym_forward_agent_token1] = ACTIONS(2617), + [aux_sym_forward_x11_token1] = ACTIONS(2619), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2617), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2617), + [aux_sym_gateway_ports_token1] = ACTIONS(2617), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2617), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2617), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2617), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2617), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2617), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2617), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2617), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2617), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2617), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2617), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2617), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2617), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2617), + [aux_sym_host_key_alias_token1] = ACTIONS(2617), + [aux_sym_hostname_token1] = ACTIONS(2617), + [aux_sym_identities_only_token1] = ACTIONS(2617), + [aux_sym_identity_agent_token1] = ACTIONS(2617), + [aux_sym_identity_file_token1] = ACTIONS(2617), + [aux_sym_ignore_unknown_token1] = ACTIONS(2617), + [aux_sym_include_token1] = ACTIONS(2617), + [aux_sym_ip_qos_token1] = ACTIONS(2617), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2617), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2617), + [aux_sym_kex_algorithms_token1] = ACTIONS(2617), + [aux_sym_known_hosts_command_token1] = ACTIONS(2617), + [aux_sym_local_command_token1] = ACTIONS(2617), + [aux_sym_local_forward_token1] = ACTIONS(2617), + [aux_sym_log_level_token1] = ACTIONS(2617), + [aux_sym_log_verbose_token1] = ACTIONS(2617), + [aux_sym_macs_token1] = ACTIONS(2617), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2617), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2617), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2617), + [aux_sym_password_authentication_token1] = ACTIONS(2617), + [aux_sym_permit_local_command_token1] = ACTIONS(2617), + [aux_sym_permit_remote_open_token1] = ACTIONS(2617), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2617), + [aux_sym_port_token1] = ACTIONS(2617), + [aux_sym_preferred_authentications_token1] = ACTIONS(2617), + [aux_sym_protocol_token1] = ACTIONS(2617), + [aux_sym_proxy_command_token1] = ACTIONS(2617), + [aux_sym_proxy_jump_token1] = ACTIONS(2617), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2617), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2617), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2617), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2617), + [aux_sym_rekey_limit_token1] = ACTIONS(2617), + [aux_sym_remote_command_token1] = ACTIONS(2617), + [aux_sym_remote_forward_token1] = ACTIONS(2617), + [aux_sym_request_tty_token1] = ACTIONS(2617), + [aux_sym_required_rsa_size_token1] = ACTIONS(2617), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2617), + [aux_sym_security_key_provider_token1] = ACTIONS(2617), + [aux_sym_send_env_token1] = ACTIONS(2617), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2617), + [aux_sym_server_alive_interval_token1] = ACTIONS(2617), + [aux_sym_session_type_token1] = ACTIONS(2617), + [aux_sym_set_env_token1] = ACTIONS(2617), + [aux_sym_stdin_null_token1] = ACTIONS(2617), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2617), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2617), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2617), + [aux_sym_syslog_facility_token1] = ACTIONS(2617), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2617), + [aux_sym_keep_alive_token1] = ACTIONS(2617), + [aux_sym_tag_token1] = ACTIONS(2617), + [aux_sym_tunnel_token1] = ACTIONS(2619), + [aux_sym_tunnel_device_token1] = ACTIONS(2617), + [aux_sym_update_host_keys_token1] = ACTIONS(2617), + [aux_sym_use_keychain_token1] = ACTIONS(2617), + [aux_sym_use_roaming_token1] = ACTIONS(2617), + [aux_sym_user_token1] = ACTIONS(2619), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2617), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2617), + [aux_sym_visual_host_key_token1] = ACTIONS(2617), + [aux_sym_xauth_location_token1] = ACTIONS(2617), }, [365] = { - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2614), - [anon_sym_DQUOTE] = ACTIONS(2616), - [aux_sym_match_token1] = ACTIONS(2612), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2612), - [aux_sym_address_family_token1] = ACTIONS(2612), - [aux_sym_batch_mode_token1] = ACTIONS(2612), - [aux_sym_bind_address_token1] = ACTIONS(2612), - [aux_sym_bind_interface_token1] = ACTIONS(2612), - [aux_sym_canonical_domains_token1] = ACTIONS(2612), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2612), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2612), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2612), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2612), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2612), - [aux_sym_certificate_file_token1] = ACTIONS(2612), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2612), - [aux_sym_channel_timeout_token1] = ACTIONS(2612), - [aux_sym_check_host_ip_token1] = ACTIONS(2612), - [aux_sym_ciphers_token1] = ACTIONS(2612), - [aux_sym_cipher_token1] = ACTIONS(2614), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2612), - [aux_sym_compression_token1] = ACTIONS(2612), - [aux_sym_connection_attempts_token1] = ACTIONS(2612), - [aux_sym_connect_timeout_token1] = ACTIONS(2612), - [aux_sym_control_master_token1] = ACTIONS(2612), - [aux_sym_control_path_token1] = ACTIONS(2612), - [aux_sym_control_persist_token1] = ACTIONS(2612), - [aux_sym_dynamic_forward_token1] = ACTIONS(2612), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2612), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2612), - [aux_sym_escape_char_token1] = ACTIONS(2612), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2612), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2612), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2612), - [aux_sym_forward_agent_token1] = ACTIONS(2612), - [aux_sym_forward_x11_token1] = ACTIONS(2614), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2612), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2612), - [aux_sym_gateway_ports_token1] = ACTIONS(2612), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2612), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2612), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2612), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2612), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2612), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2612), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2612), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2612), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2612), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2612), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2612), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2612), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2612), - [aux_sym_host_key_alias_token1] = ACTIONS(2612), - [aux_sym_hostname_token1] = ACTIONS(2612), - [aux_sym_identities_only_token1] = ACTIONS(2612), - [aux_sym_identity_agent_token1] = ACTIONS(2612), - [aux_sym_identity_file_token1] = ACTIONS(2612), - [aux_sym_ignore_unknown_token1] = ACTIONS(2612), - [aux_sym_include_token1] = ACTIONS(2612), - [aux_sym_ip_qos_token1] = ACTIONS(2612), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2612), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2612), - [aux_sym_kex_algorithms_token1] = ACTIONS(2612), - [aux_sym_known_hosts_command_token1] = ACTIONS(2612), - [aux_sym_local_command_token1] = ACTIONS(2612), - [aux_sym_local_forward_token1] = ACTIONS(2612), - [aux_sym_log_level_token1] = ACTIONS(2612), - [aux_sym_log_verbose_token1] = ACTIONS(2612), - [aux_sym_macs_token1] = ACTIONS(2612), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2612), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2612), - [aux_sym_password_authentication_token1] = ACTIONS(2612), - [aux_sym_permit_local_command_token1] = ACTIONS(2612), - [aux_sym_permit_remote_open_token1] = ACTIONS(2612), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2612), - [aux_sym_port_token1] = ACTIONS(2612), - [aux_sym_preferred_authentications_token1] = ACTIONS(2612), - [aux_sym_protocol_token1] = ACTIONS(2612), - [aux_sym_proxy_command_token1] = ACTIONS(2612), - [aux_sym_proxy_jump_token1] = ACTIONS(2612), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2612), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2612), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2612), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2612), - [aux_sym_rekey_limit_token1] = ACTIONS(2612), - [aux_sym_remote_command_token1] = ACTIONS(2612), - [aux_sym_remote_forward_token1] = ACTIONS(2612), - [aux_sym_request_tty_token1] = ACTIONS(2612), - [aux_sym_required_rsa_size_token1] = ACTIONS(2612), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2612), - [aux_sym_security_key_provider_token1] = ACTIONS(2612), - [aux_sym_send_env_token1] = ACTIONS(2612), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2612), - [aux_sym_server_alive_interval_token1] = ACTIONS(2612), - [aux_sym_session_type_token1] = ACTIONS(2612), - [aux_sym_set_env_token1] = ACTIONS(2612), - [aux_sym_stdin_null_token1] = ACTIONS(2612), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2612), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2612), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2612), - [aux_sym_syslog_facility_token1] = ACTIONS(2612), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2612), - [aux_sym_keep_alive_token1] = ACTIONS(2612), - [aux_sym_tag_token1] = ACTIONS(2612), - [aux_sym_tunnel_token1] = ACTIONS(2614), - [aux_sym_tunnel_device_token1] = ACTIONS(2612), - [aux_sym_update_host_keys_token1] = ACTIONS(2612), - [aux_sym_use_keychain_token1] = ACTIONS(2612), - [aux_sym_use_roaming_token1] = ACTIONS(2612), - [aux_sym_user_token1] = ACTIONS(2614), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2612), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2612), - [aux_sym_visual_host_key_token1] = ACTIONS(2612), - [aux_sym_xauth_location_token1] = ACTIONS(2612), + [ts_builtin_sym_end] = ACTIONS(2623), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2625), + [anon_sym_DQUOTE] = ACTIONS(2623), + [aux_sym_match_token1] = ACTIONS(2623), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2623), + [aux_sym_address_family_token1] = ACTIONS(2623), + [aux_sym_batch_mode_token1] = ACTIONS(2623), + [aux_sym_bind_address_token1] = ACTIONS(2623), + [aux_sym_bind_interface_token1] = ACTIONS(2623), + [aux_sym_canonical_domains_token1] = ACTIONS(2623), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2623), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2623), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2623), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2623), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2623), + [aux_sym_certificate_file_token1] = ACTIONS(2623), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2623), + [aux_sym_channel_timeout_token1] = ACTIONS(2623), + [aux_sym_check_host_ip_token1] = ACTIONS(2623), + [aux_sym_ciphers_token1] = ACTIONS(2623), + [aux_sym_cipher_token1] = ACTIONS(2625), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2623), + [aux_sym_compression_token1] = ACTIONS(2623), + [aux_sym_connection_attempts_token1] = ACTIONS(2623), + [aux_sym_connect_timeout_token1] = ACTIONS(2623), + [aux_sym_control_master_token1] = ACTIONS(2623), + [aux_sym_control_path_token1] = ACTIONS(2623), + [aux_sym_control_persist_token1] = ACTIONS(2623), + [aux_sym_dynamic_forward_token1] = ACTIONS(2623), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2623), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2623), + [aux_sym_escape_char_token1] = ACTIONS(2623), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2623), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2623), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2623), + [aux_sym_forward_agent_token1] = ACTIONS(2623), + [aux_sym_forward_x11_token1] = ACTIONS(2625), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2623), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2623), + [aux_sym_gateway_ports_token1] = ACTIONS(2623), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2623), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2623), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2623), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2623), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2623), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2623), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2623), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2623), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2623), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2623), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2623), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2623), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2623), + [aux_sym_host_key_alias_token1] = ACTIONS(2623), + [aux_sym_hostname_token1] = ACTIONS(2623), + [aux_sym_identities_only_token1] = ACTIONS(2623), + [aux_sym_identity_agent_token1] = ACTIONS(2623), + [aux_sym_identity_file_token1] = ACTIONS(2623), + [aux_sym_ignore_unknown_token1] = ACTIONS(2623), + [aux_sym_include_token1] = ACTIONS(2623), + [aux_sym_ip_qos_token1] = ACTIONS(2623), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2623), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2623), + [aux_sym_kex_algorithms_token1] = ACTIONS(2623), + [aux_sym_known_hosts_command_token1] = ACTIONS(2623), + [aux_sym_local_command_token1] = ACTIONS(2623), + [aux_sym_local_forward_token1] = ACTIONS(2623), + [aux_sym_log_level_token1] = ACTIONS(2623), + [aux_sym_log_verbose_token1] = ACTIONS(2623), + [aux_sym_macs_token1] = ACTIONS(2623), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2623), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2623), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2623), + [aux_sym_password_authentication_token1] = ACTIONS(2623), + [aux_sym_permit_local_command_token1] = ACTIONS(2623), + [aux_sym_permit_remote_open_token1] = ACTIONS(2623), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2623), + [aux_sym_port_token1] = ACTIONS(2623), + [aux_sym_preferred_authentications_token1] = ACTIONS(2623), + [aux_sym_protocol_token1] = ACTIONS(2623), + [aux_sym_proxy_command_token1] = ACTIONS(2623), + [aux_sym_proxy_jump_token1] = ACTIONS(2623), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2623), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2623), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2623), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2623), + [aux_sym_rekey_limit_token1] = ACTIONS(2623), + [aux_sym_remote_command_token1] = ACTIONS(2623), + [aux_sym_remote_forward_token1] = ACTIONS(2623), + [aux_sym_request_tty_token1] = ACTIONS(2623), + [aux_sym_required_rsa_size_token1] = ACTIONS(2623), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2623), + [aux_sym_security_key_provider_token1] = ACTIONS(2623), + [aux_sym_send_env_token1] = ACTIONS(2623), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2623), + [aux_sym_server_alive_interval_token1] = ACTIONS(2623), + [aux_sym_session_type_token1] = ACTIONS(2623), + [aux_sym_set_env_token1] = ACTIONS(2623), + [aux_sym_stdin_null_token1] = ACTIONS(2623), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2623), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2623), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2623), + [aux_sym_syslog_facility_token1] = ACTIONS(2623), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2623), + [aux_sym_keep_alive_token1] = ACTIONS(2623), + [aux_sym_tag_token1] = ACTIONS(2623), + [aux_sym_tunnel_token1] = ACTIONS(2625), + [aux_sym_tunnel_device_token1] = ACTIONS(2623), + [aux_sym_update_host_keys_token1] = ACTIONS(2623), + [aux_sym_use_keychain_token1] = ACTIONS(2623), + [aux_sym_use_roaming_token1] = ACTIONS(2623), + [aux_sym_user_token1] = ACTIONS(2625), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2623), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2623), + [aux_sym_visual_host_key_token1] = ACTIONS(2623), + [aux_sym_xauth_location_token1] = ACTIONS(2623), }, [366] = { - [ts_builtin_sym_end] = ACTIONS(2618), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2618), - [aux_sym_match_token1] = ACTIONS(2618), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2618), - [aux_sym_address_family_token1] = ACTIONS(2618), - [aux_sym_batch_mode_token1] = ACTIONS(2618), - [aux_sym_bind_address_token1] = ACTIONS(2618), - [aux_sym_bind_interface_token1] = ACTIONS(2618), - [aux_sym_canonical_domains_token1] = ACTIONS(2618), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2618), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2618), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2618), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2618), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2618), - [aux_sym_certificate_file_token1] = ACTIONS(2618), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2618), - [aux_sym_channel_timeout_token1] = ACTIONS(2618), - [aux_sym_check_host_ip_token1] = ACTIONS(2618), - [aux_sym_ciphers_token1] = ACTIONS(2618), - [aux_sym_cipher_token1] = ACTIONS(2620), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2618), - [aux_sym_compression_token1] = ACTIONS(2618), - [aux_sym_connection_attempts_token1] = ACTIONS(2618), - [aux_sym_connect_timeout_token1] = ACTIONS(2618), - [aux_sym_control_master_token1] = ACTIONS(2618), - [aux_sym_control_path_token1] = ACTIONS(2618), - [aux_sym_control_persist_token1] = ACTIONS(2618), - [aux_sym_dynamic_forward_token1] = ACTIONS(2618), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2618), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2618), - [aux_sym_escape_char_token1] = ACTIONS(2618), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2618), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2618), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2618), - [aux_sym_forward_agent_token1] = ACTIONS(2618), - [aux_sym_forward_x11_token1] = ACTIONS(2620), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2618), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2618), - [aux_sym_gateway_ports_token1] = ACTIONS(2618), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2618), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2618), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2618), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2618), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2618), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2618), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2618), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2618), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2618), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2618), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2618), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2618), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2618), - [aux_sym_host_key_alias_token1] = ACTIONS(2618), - [aux_sym_hostname_token1] = ACTIONS(2618), - [aux_sym_identities_only_token1] = ACTIONS(2618), - [aux_sym_identity_agent_token1] = ACTIONS(2618), - [aux_sym_identity_file_token1] = ACTIONS(2618), - [aux_sym_ignore_unknown_token1] = ACTIONS(2618), - [aux_sym_include_token1] = ACTIONS(2618), - [aux_sym_ip_qos_token1] = ACTIONS(2618), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2618), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2618), - [aux_sym_kex_algorithms_token1] = ACTIONS(2618), - [aux_sym_known_hosts_command_token1] = ACTIONS(2618), - [aux_sym_local_command_token1] = ACTIONS(2618), - [aux_sym_local_forward_token1] = ACTIONS(2618), - [aux_sym_log_level_token1] = ACTIONS(2618), - [aux_sym_log_verbose_token1] = ACTIONS(2618), - [aux_sym_macs_token1] = ACTIONS(2618), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2618), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2618), - [aux_sym_password_authentication_token1] = ACTIONS(2618), - [aux_sym_permit_local_command_token1] = ACTIONS(2618), - [aux_sym_permit_remote_open_token1] = ACTIONS(2618), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2618), - [aux_sym_port_token1] = ACTIONS(2618), - [aux_sym_preferred_authentications_token1] = ACTIONS(2618), - [aux_sym_protocol_token1] = ACTIONS(2618), - [aux_sym_proxy_command_token1] = ACTIONS(2618), - [aux_sym_proxy_jump_token1] = ACTIONS(2618), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2618), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2618), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2618), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2618), - [aux_sym_rekey_limit_token1] = ACTIONS(2618), - [aux_sym_remote_command_token1] = ACTIONS(2618), - [aux_sym_remote_forward_token1] = ACTIONS(2618), - [aux_sym_request_tty_token1] = ACTIONS(2618), - [aux_sym_required_rsa_size_token1] = ACTIONS(2618), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2618), - [aux_sym_security_key_provider_token1] = ACTIONS(2618), - [aux_sym_send_env_token1] = ACTIONS(2618), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2618), - [aux_sym_server_alive_interval_token1] = ACTIONS(2618), - [aux_sym_session_type_token1] = ACTIONS(2618), - [aux_sym_set_env_token1] = ACTIONS(2618), - [aux_sym_stdin_null_token1] = ACTIONS(2618), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2618), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2618), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2618), - [aux_sym_syslog_facility_token1] = ACTIONS(2618), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2618), - [aux_sym_keep_alive_token1] = ACTIONS(2618), - [aux_sym_tag_token1] = ACTIONS(2618), - [aux_sym_tunnel_token1] = ACTIONS(2620), - [aux_sym_tunnel_device_token1] = ACTIONS(2618), - [aux_sym_update_host_keys_token1] = ACTIONS(2618), - [aux_sym_use_keychain_token1] = ACTIONS(2618), - [aux_sym_use_roaming_token1] = ACTIONS(2618), - [aux_sym_user_token1] = ACTIONS(2620), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2618), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2618), - [aux_sym_visual_host_key_token1] = ACTIONS(2618), - [aux_sym_xauth_location_token1] = ACTIONS(2618), + [ts_builtin_sym_end] = ACTIONS(2627), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2629), + [anon_sym_DQUOTE] = ACTIONS(2627), + [aux_sym_match_token1] = ACTIONS(2627), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2627), + [aux_sym_address_family_token1] = ACTIONS(2627), + [aux_sym_batch_mode_token1] = ACTIONS(2627), + [aux_sym_bind_address_token1] = ACTIONS(2627), + [aux_sym_bind_interface_token1] = ACTIONS(2627), + [aux_sym_canonical_domains_token1] = ACTIONS(2627), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2627), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2627), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2627), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2627), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2627), + [aux_sym_certificate_file_token1] = ACTIONS(2627), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2627), + [aux_sym_channel_timeout_token1] = ACTIONS(2627), + [aux_sym_check_host_ip_token1] = ACTIONS(2627), + [aux_sym_ciphers_token1] = ACTIONS(2627), + [aux_sym_cipher_token1] = ACTIONS(2629), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2627), + [aux_sym_compression_token1] = ACTIONS(2627), + [aux_sym_connection_attempts_token1] = ACTIONS(2627), + [aux_sym_connect_timeout_token1] = ACTIONS(2627), + [aux_sym_control_master_token1] = ACTIONS(2627), + [aux_sym_control_path_token1] = ACTIONS(2627), + [aux_sym_control_persist_token1] = ACTIONS(2627), + [aux_sym_dynamic_forward_token1] = ACTIONS(2627), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2627), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2627), + [aux_sym_escape_char_token1] = ACTIONS(2627), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2627), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2627), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2627), + [aux_sym_forward_agent_token1] = ACTIONS(2627), + [aux_sym_forward_x11_token1] = ACTIONS(2629), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2627), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2627), + [aux_sym_gateway_ports_token1] = ACTIONS(2627), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2627), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2627), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2627), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2627), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2627), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2627), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2627), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2627), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2627), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2627), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2627), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2627), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2627), + [aux_sym_host_key_alias_token1] = ACTIONS(2627), + [aux_sym_hostname_token1] = ACTIONS(2627), + [aux_sym_identities_only_token1] = ACTIONS(2627), + [aux_sym_identity_agent_token1] = ACTIONS(2627), + [aux_sym_identity_file_token1] = ACTIONS(2627), + [aux_sym_ignore_unknown_token1] = ACTIONS(2627), + [aux_sym_include_token1] = ACTIONS(2627), + [aux_sym_ip_qos_token1] = ACTIONS(2627), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2627), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2627), + [aux_sym_kex_algorithms_token1] = ACTIONS(2627), + [aux_sym_known_hosts_command_token1] = ACTIONS(2627), + [aux_sym_local_command_token1] = ACTIONS(2627), + [aux_sym_local_forward_token1] = ACTIONS(2627), + [aux_sym_log_level_token1] = ACTIONS(2627), + [aux_sym_log_verbose_token1] = ACTIONS(2627), + [aux_sym_macs_token1] = ACTIONS(2627), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2627), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2627), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2627), + [aux_sym_password_authentication_token1] = ACTIONS(2627), + [aux_sym_permit_local_command_token1] = ACTIONS(2627), + [aux_sym_permit_remote_open_token1] = ACTIONS(2627), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2627), + [aux_sym_port_token1] = ACTIONS(2627), + [aux_sym_preferred_authentications_token1] = ACTIONS(2627), + [aux_sym_protocol_token1] = ACTIONS(2627), + [aux_sym_proxy_command_token1] = ACTIONS(2627), + [aux_sym_proxy_jump_token1] = ACTIONS(2627), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2627), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2627), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2627), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2627), + [aux_sym_rekey_limit_token1] = ACTIONS(2627), + [aux_sym_remote_command_token1] = ACTIONS(2627), + [aux_sym_remote_forward_token1] = ACTIONS(2627), + [aux_sym_request_tty_token1] = ACTIONS(2627), + [aux_sym_required_rsa_size_token1] = ACTIONS(2627), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2627), + [aux_sym_security_key_provider_token1] = ACTIONS(2627), + [aux_sym_send_env_token1] = ACTIONS(2627), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2627), + [aux_sym_server_alive_interval_token1] = ACTIONS(2627), + [aux_sym_session_type_token1] = ACTIONS(2627), + [aux_sym_set_env_token1] = ACTIONS(2627), + [aux_sym_stdin_null_token1] = ACTIONS(2627), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2627), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2627), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2627), + [aux_sym_syslog_facility_token1] = ACTIONS(2627), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2627), + [aux_sym_keep_alive_token1] = ACTIONS(2627), + [aux_sym_tag_token1] = ACTIONS(2627), + [aux_sym_tunnel_token1] = ACTIONS(2629), + [aux_sym_tunnel_device_token1] = ACTIONS(2627), + [aux_sym_update_host_keys_token1] = ACTIONS(2627), + [aux_sym_use_keychain_token1] = ACTIONS(2627), + [aux_sym_use_roaming_token1] = ACTIONS(2627), + [aux_sym_user_token1] = ACTIONS(2629), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2627), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2627), + [aux_sym_visual_host_key_token1] = ACTIONS(2627), + [aux_sym_xauth_location_token1] = ACTIONS(2627), }, [367] = { - [ts_builtin_sym_end] = ACTIONS(2622), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2626), - [aux_sym_match_token1] = ACTIONS(2622), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2622), - [aux_sym_address_family_token1] = ACTIONS(2622), - [aux_sym_batch_mode_token1] = ACTIONS(2622), - [aux_sym_bind_address_token1] = ACTIONS(2622), - [aux_sym_bind_interface_token1] = ACTIONS(2622), - [aux_sym_canonical_domains_token1] = ACTIONS(2622), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2622), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2622), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2622), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2622), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2622), - [aux_sym_certificate_file_token1] = ACTIONS(2622), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2622), - [aux_sym_channel_timeout_token1] = ACTIONS(2622), - [aux_sym_check_host_ip_token1] = ACTIONS(2622), - [aux_sym_ciphers_token1] = ACTIONS(2622), - [aux_sym_cipher_token1] = ACTIONS(2624), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2622), - [aux_sym_compression_token1] = ACTIONS(2622), - [aux_sym_connection_attempts_token1] = ACTIONS(2622), - [aux_sym_connect_timeout_token1] = ACTIONS(2622), - [aux_sym_control_master_token1] = ACTIONS(2622), - [aux_sym_control_path_token1] = ACTIONS(2622), - [aux_sym_control_persist_token1] = ACTIONS(2622), - [aux_sym_dynamic_forward_token1] = ACTIONS(2622), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2622), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2622), - [aux_sym_escape_char_token1] = ACTIONS(2622), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2622), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2622), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2622), - [aux_sym_forward_agent_token1] = ACTIONS(2622), - [aux_sym_forward_x11_token1] = ACTIONS(2624), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2622), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2622), - [aux_sym_gateway_ports_token1] = ACTIONS(2622), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2622), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2622), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2622), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2622), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2622), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2622), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2622), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2622), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2622), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2622), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2622), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2622), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2622), - [aux_sym_host_key_alias_token1] = ACTIONS(2622), - [aux_sym_hostname_token1] = ACTIONS(2622), - [aux_sym_identities_only_token1] = ACTIONS(2622), - [aux_sym_identity_agent_token1] = ACTIONS(2622), - [aux_sym_identity_file_token1] = ACTIONS(2622), - [aux_sym_ignore_unknown_token1] = ACTIONS(2622), - [aux_sym_include_token1] = ACTIONS(2622), - [aux_sym_ip_qos_token1] = ACTIONS(2622), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2622), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2622), - [aux_sym_kex_algorithms_token1] = ACTIONS(2622), - [aux_sym_known_hosts_command_token1] = ACTIONS(2622), - [aux_sym_local_command_token1] = ACTIONS(2622), - [aux_sym_local_forward_token1] = ACTIONS(2622), - [aux_sym_log_level_token1] = ACTIONS(2622), - [aux_sym_log_verbose_token1] = ACTIONS(2622), - [aux_sym_macs_token1] = ACTIONS(2622), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2622), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2622), - [aux_sym_password_authentication_token1] = ACTIONS(2622), - [aux_sym_permit_local_command_token1] = ACTIONS(2622), - [aux_sym_permit_remote_open_token1] = ACTIONS(2622), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2622), - [aux_sym_port_token1] = ACTIONS(2622), - [aux_sym_preferred_authentications_token1] = ACTIONS(2622), - [aux_sym_protocol_token1] = ACTIONS(2622), - [aux_sym_proxy_command_token1] = ACTIONS(2622), - [aux_sym_proxy_jump_token1] = ACTIONS(2622), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2622), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2622), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2622), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2622), - [aux_sym_rekey_limit_token1] = ACTIONS(2622), - [aux_sym_remote_command_token1] = ACTIONS(2622), - [aux_sym_remote_forward_token1] = ACTIONS(2622), - [aux_sym_request_tty_token1] = ACTIONS(2622), - [aux_sym_required_rsa_size_token1] = ACTIONS(2622), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2622), - [aux_sym_security_key_provider_token1] = ACTIONS(2622), - [aux_sym_send_env_token1] = ACTIONS(2622), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2622), - [aux_sym_server_alive_interval_token1] = ACTIONS(2622), - [aux_sym_session_type_token1] = ACTIONS(2622), - [aux_sym_set_env_token1] = ACTIONS(2622), - [aux_sym_stdin_null_token1] = ACTIONS(2622), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2622), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2622), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2622), - [aux_sym_syslog_facility_token1] = ACTIONS(2622), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2622), - [aux_sym_keep_alive_token1] = ACTIONS(2622), - [aux_sym_tag_token1] = ACTIONS(2622), - [aux_sym_tunnel_token1] = ACTIONS(2624), - [aux_sym_tunnel_device_token1] = ACTIONS(2622), - [aux_sym_update_host_keys_token1] = ACTIONS(2622), - [aux_sym_use_keychain_token1] = ACTIONS(2622), - [aux_sym_use_roaming_token1] = ACTIONS(2622), - [aux_sym_user_token1] = ACTIONS(2624), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2622), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2622), - [aux_sym_visual_host_key_token1] = ACTIONS(2622), - [aux_sym_xauth_location_token1] = ACTIONS(2622), + [ts_builtin_sym_end] = ACTIONS(2631), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2635), + [aux_sym_match_token1] = ACTIONS(2631), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2631), + [aux_sym_address_family_token1] = ACTIONS(2631), + [aux_sym_batch_mode_token1] = ACTIONS(2631), + [aux_sym_bind_address_token1] = ACTIONS(2631), + [aux_sym_bind_interface_token1] = ACTIONS(2631), + [aux_sym_canonical_domains_token1] = ACTIONS(2631), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2631), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2631), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2631), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2631), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2631), + [aux_sym_certificate_file_token1] = ACTIONS(2631), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2631), + [aux_sym_channel_timeout_token1] = ACTIONS(2631), + [aux_sym_check_host_ip_token1] = ACTIONS(2631), + [aux_sym_ciphers_token1] = ACTIONS(2631), + [aux_sym_cipher_token1] = ACTIONS(2633), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2631), + [aux_sym_compression_token1] = ACTIONS(2631), + [aux_sym_connection_attempts_token1] = ACTIONS(2631), + [aux_sym_connect_timeout_token1] = ACTIONS(2631), + [aux_sym_control_master_token1] = ACTIONS(2631), + [aux_sym_control_path_token1] = ACTIONS(2631), + [aux_sym_control_persist_token1] = ACTIONS(2631), + [aux_sym_dynamic_forward_token1] = ACTIONS(2631), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2631), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2631), + [aux_sym_escape_char_token1] = ACTIONS(2631), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2631), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2631), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2631), + [aux_sym_forward_agent_token1] = ACTIONS(2631), + [aux_sym_forward_x11_token1] = ACTIONS(2633), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2631), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2631), + [aux_sym_gateway_ports_token1] = ACTIONS(2631), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2631), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2631), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2631), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2631), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2631), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2631), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2631), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2631), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2631), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2631), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2631), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2631), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2631), + [aux_sym_host_key_alias_token1] = ACTIONS(2631), + [aux_sym_hostname_token1] = ACTIONS(2631), + [aux_sym_identities_only_token1] = ACTIONS(2631), + [aux_sym_identity_agent_token1] = ACTIONS(2631), + [aux_sym_identity_file_token1] = ACTIONS(2631), + [aux_sym_ignore_unknown_token1] = ACTIONS(2631), + [aux_sym_include_token1] = ACTIONS(2631), + [aux_sym_ip_qos_token1] = ACTIONS(2631), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2631), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2631), + [aux_sym_kex_algorithms_token1] = ACTIONS(2631), + [aux_sym_known_hosts_command_token1] = ACTIONS(2631), + [aux_sym_local_command_token1] = ACTIONS(2631), + [aux_sym_local_forward_token1] = ACTIONS(2631), + [aux_sym_log_level_token1] = ACTIONS(2631), + [aux_sym_log_verbose_token1] = ACTIONS(2631), + [aux_sym_macs_token1] = ACTIONS(2631), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2631), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2631), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2631), + [aux_sym_password_authentication_token1] = ACTIONS(2631), + [aux_sym_permit_local_command_token1] = ACTIONS(2631), + [aux_sym_permit_remote_open_token1] = ACTIONS(2631), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2631), + [aux_sym_port_token1] = ACTIONS(2631), + [aux_sym_preferred_authentications_token1] = ACTIONS(2631), + [aux_sym_protocol_token1] = ACTIONS(2631), + [aux_sym_proxy_command_token1] = ACTIONS(2631), + [aux_sym_proxy_jump_token1] = ACTIONS(2631), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2631), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2631), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2631), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2631), + [aux_sym_rekey_limit_token1] = ACTIONS(2631), + [aux_sym_remote_command_token1] = ACTIONS(2631), + [aux_sym_remote_forward_token1] = ACTIONS(2631), + [aux_sym_request_tty_token1] = ACTIONS(2631), + [aux_sym_required_rsa_size_token1] = ACTIONS(2631), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2631), + [aux_sym_security_key_provider_token1] = ACTIONS(2631), + [aux_sym_send_env_token1] = ACTIONS(2631), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2631), + [aux_sym_server_alive_interval_token1] = ACTIONS(2631), + [aux_sym_session_type_token1] = ACTIONS(2631), + [aux_sym_set_env_token1] = ACTIONS(2631), + [aux_sym_stdin_null_token1] = ACTIONS(2631), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2631), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2631), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2631), + [aux_sym_syslog_facility_token1] = ACTIONS(2631), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2631), + [aux_sym_keep_alive_token1] = ACTIONS(2631), + [aux_sym_tag_token1] = ACTIONS(2631), + [aux_sym_tunnel_token1] = ACTIONS(2633), + [aux_sym_tunnel_device_token1] = ACTIONS(2631), + [aux_sym_update_host_keys_token1] = ACTIONS(2631), + [aux_sym_use_keychain_token1] = ACTIONS(2631), + [aux_sym_use_roaming_token1] = ACTIONS(2631), + [aux_sym_user_token1] = ACTIONS(2633), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2631), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2631), + [aux_sym_visual_host_key_token1] = ACTIONS(2631), + [aux_sym_xauth_location_token1] = ACTIONS(2631), }, [368] = { - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2630), - [anon_sym_DQUOTE] = ACTIONS(2628), - [aux_sym_match_token1] = ACTIONS(2628), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2628), - [aux_sym_address_family_token1] = ACTIONS(2628), - [aux_sym_batch_mode_token1] = ACTIONS(2628), - [aux_sym_bind_address_token1] = ACTIONS(2628), - [aux_sym_bind_interface_token1] = ACTIONS(2628), - [aux_sym_canonical_domains_token1] = ACTIONS(2628), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2628), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2628), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2628), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2628), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2628), - [aux_sym_certificate_file_token1] = ACTIONS(2628), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2628), - [aux_sym_channel_timeout_token1] = ACTIONS(2628), - [aux_sym_check_host_ip_token1] = ACTIONS(2628), - [aux_sym_ciphers_token1] = ACTIONS(2628), - [aux_sym_cipher_token1] = ACTIONS(2630), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2628), - [aux_sym_compression_token1] = ACTIONS(2628), - [aux_sym_connection_attempts_token1] = ACTIONS(2628), - [aux_sym_connect_timeout_token1] = ACTIONS(2628), - [aux_sym_control_master_token1] = ACTIONS(2628), - [aux_sym_control_path_token1] = ACTIONS(2628), - [aux_sym_control_persist_token1] = ACTIONS(2628), - [aux_sym_dynamic_forward_token1] = ACTIONS(2628), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2628), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2628), - [aux_sym_escape_char_token1] = ACTIONS(2628), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2628), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2628), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2628), - [aux_sym_forward_agent_token1] = ACTIONS(2628), - [aux_sym_forward_x11_token1] = ACTIONS(2630), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2628), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2628), - [aux_sym_gateway_ports_token1] = ACTIONS(2628), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2628), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2628), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2628), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2628), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2628), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2628), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2628), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2628), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2628), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2628), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2628), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2628), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2628), - [aux_sym_host_key_alias_token1] = ACTIONS(2628), - [aux_sym_hostname_token1] = ACTIONS(2628), - [aux_sym_identities_only_token1] = ACTIONS(2628), - [aux_sym_identity_agent_token1] = ACTIONS(2628), - [aux_sym_identity_file_token1] = ACTIONS(2628), - [aux_sym_ignore_unknown_token1] = ACTIONS(2628), - [aux_sym_include_token1] = ACTIONS(2628), - [aux_sym_ip_qos_token1] = ACTIONS(2628), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2628), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2628), - [aux_sym_kex_algorithms_token1] = ACTIONS(2628), - [aux_sym_known_hosts_command_token1] = ACTIONS(2628), - [aux_sym_local_command_token1] = ACTIONS(2628), - [aux_sym_local_forward_token1] = ACTIONS(2628), - [aux_sym_log_level_token1] = ACTIONS(2628), - [aux_sym_log_verbose_token1] = ACTIONS(2628), - [aux_sym_macs_token1] = ACTIONS(2628), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2628), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2628), - [aux_sym_password_authentication_token1] = ACTIONS(2628), - [aux_sym_permit_local_command_token1] = ACTIONS(2628), - [aux_sym_permit_remote_open_token1] = ACTIONS(2628), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2628), - [aux_sym_port_token1] = ACTIONS(2628), - [aux_sym_preferred_authentications_token1] = ACTIONS(2628), - [aux_sym_protocol_token1] = ACTIONS(2628), - [aux_sym_proxy_command_token1] = ACTIONS(2628), - [aux_sym_proxy_jump_token1] = ACTIONS(2628), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2628), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2628), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2628), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2628), - [aux_sym_rekey_limit_token1] = ACTIONS(2628), - [aux_sym_remote_command_token1] = ACTIONS(2628), - [aux_sym_remote_forward_token1] = ACTIONS(2628), - [aux_sym_request_tty_token1] = ACTIONS(2628), - [aux_sym_required_rsa_size_token1] = ACTIONS(2628), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2628), - [aux_sym_security_key_provider_token1] = ACTIONS(2628), - [aux_sym_send_env_token1] = ACTIONS(2628), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2628), - [aux_sym_server_alive_interval_token1] = ACTIONS(2628), - [aux_sym_session_type_token1] = ACTIONS(2628), - [aux_sym_set_env_token1] = ACTIONS(2628), - [aux_sym_stdin_null_token1] = ACTIONS(2628), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2628), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2628), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2628), - [aux_sym_syslog_facility_token1] = ACTIONS(2628), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2628), - [aux_sym_keep_alive_token1] = ACTIONS(2628), - [aux_sym_tag_token1] = ACTIONS(2628), - [aux_sym_tunnel_token1] = ACTIONS(2630), - [aux_sym_tunnel_device_token1] = ACTIONS(2628), - [aux_sym_update_host_keys_token1] = ACTIONS(2628), - [aux_sym_use_keychain_token1] = ACTIONS(2628), - [aux_sym_use_roaming_token1] = ACTIONS(2628), - [aux_sym_user_token1] = ACTIONS(2630), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2628), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2628), - [aux_sym_visual_host_key_token1] = ACTIONS(2628), - [aux_sym_xauth_location_token1] = ACTIONS(2628), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2639), + [anon_sym_DQUOTE] = ACTIONS(2637), + [aux_sym_match_token1] = ACTIONS(2637), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2637), + [aux_sym_address_family_token1] = ACTIONS(2637), + [aux_sym_batch_mode_token1] = ACTIONS(2637), + [aux_sym_bind_address_token1] = ACTIONS(2637), + [aux_sym_bind_interface_token1] = ACTIONS(2637), + [aux_sym_canonical_domains_token1] = ACTIONS(2637), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2637), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2637), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2637), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2637), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2637), + [aux_sym_certificate_file_token1] = ACTIONS(2637), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2637), + [aux_sym_channel_timeout_token1] = ACTIONS(2637), + [aux_sym_check_host_ip_token1] = ACTIONS(2637), + [aux_sym_ciphers_token1] = ACTIONS(2637), + [aux_sym_cipher_token1] = ACTIONS(2639), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2637), + [aux_sym_compression_token1] = ACTIONS(2637), + [aux_sym_connection_attempts_token1] = ACTIONS(2637), + [aux_sym_connect_timeout_token1] = ACTIONS(2637), + [aux_sym_control_master_token1] = ACTIONS(2637), + [aux_sym_control_path_token1] = ACTIONS(2637), + [aux_sym_control_persist_token1] = ACTIONS(2637), + [aux_sym_dynamic_forward_token1] = ACTIONS(2637), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2637), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2637), + [aux_sym_escape_char_token1] = ACTIONS(2637), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2637), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2637), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2637), + [aux_sym_forward_agent_token1] = ACTIONS(2637), + [aux_sym_forward_x11_token1] = ACTIONS(2639), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2637), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2637), + [aux_sym_gateway_ports_token1] = ACTIONS(2637), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2637), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2637), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2637), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2637), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2637), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2637), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2637), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2637), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2637), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2637), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2637), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2637), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2637), + [aux_sym_host_key_alias_token1] = ACTIONS(2637), + [aux_sym_hostname_token1] = ACTIONS(2637), + [aux_sym_identities_only_token1] = ACTIONS(2637), + [aux_sym_identity_agent_token1] = ACTIONS(2637), + [aux_sym_identity_file_token1] = ACTIONS(2637), + [aux_sym_ignore_unknown_token1] = ACTIONS(2637), + [aux_sym_include_token1] = ACTIONS(2637), + [aux_sym_ip_qos_token1] = ACTIONS(2637), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2637), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2637), + [aux_sym_kex_algorithms_token1] = ACTIONS(2637), + [aux_sym_known_hosts_command_token1] = ACTIONS(2637), + [aux_sym_local_command_token1] = ACTIONS(2637), + [aux_sym_local_forward_token1] = ACTIONS(2637), + [aux_sym_log_level_token1] = ACTIONS(2637), + [aux_sym_log_verbose_token1] = ACTIONS(2637), + [aux_sym_macs_token1] = ACTIONS(2637), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2637), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2637), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2637), + [aux_sym_password_authentication_token1] = ACTIONS(2637), + [aux_sym_permit_local_command_token1] = ACTIONS(2637), + [aux_sym_permit_remote_open_token1] = ACTIONS(2637), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2637), + [aux_sym_port_token1] = ACTIONS(2637), + [aux_sym_preferred_authentications_token1] = ACTIONS(2637), + [aux_sym_protocol_token1] = ACTIONS(2637), + [aux_sym_proxy_command_token1] = ACTIONS(2637), + [aux_sym_proxy_jump_token1] = ACTIONS(2637), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2637), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2637), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2637), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2637), + [aux_sym_rekey_limit_token1] = ACTIONS(2637), + [aux_sym_remote_command_token1] = ACTIONS(2637), + [aux_sym_remote_forward_token1] = ACTIONS(2637), + [aux_sym_request_tty_token1] = ACTIONS(2637), + [aux_sym_required_rsa_size_token1] = ACTIONS(2637), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2637), + [aux_sym_security_key_provider_token1] = ACTIONS(2637), + [aux_sym_send_env_token1] = ACTIONS(2637), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2637), + [aux_sym_server_alive_interval_token1] = ACTIONS(2637), + [aux_sym_session_type_token1] = ACTIONS(2637), + [aux_sym_set_env_token1] = ACTIONS(2637), + [aux_sym_stdin_null_token1] = ACTIONS(2637), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2637), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2637), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2637), + [aux_sym_syslog_facility_token1] = ACTIONS(2637), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2637), + [aux_sym_keep_alive_token1] = ACTIONS(2637), + [aux_sym_tag_token1] = ACTIONS(2637), + [aux_sym_tunnel_token1] = ACTIONS(2639), + [aux_sym_tunnel_device_token1] = ACTIONS(2637), + [aux_sym_update_host_keys_token1] = ACTIONS(2637), + [aux_sym_use_keychain_token1] = ACTIONS(2637), + [aux_sym_use_roaming_token1] = ACTIONS(2637), + [aux_sym_user_token1] = ACTIONS(2639), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2637), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2637), + [aux_sym_visual_host_key_token1] = ACTIONS(2637), + [aux_sym_xauth_location_token1] = ACTIONS(2637), }, [369] = { - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2634), - [anon_sym_DQUOTE] = ACTIONS(2636), - [aux_sym_match_token1] = ACTIONS(2632), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2632), - [aux_sym_address_family_token1] = ACTIONS(2632), - [aux_sym_batch_mode_token1] = ACTIONS(2632), - [aux_sym_bind_address_token1] = ACTIONS(2632), - [aux_sym_bind_interface_token1] = ACTIONS(2632), - [aux_sym_canonical_domains_token1] = ACTIONS(2632), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2632), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2632), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2632), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2632), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2632), - [aux_sym_certificate_file_token1] = ACTIONS(2632), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2632), - [aux_sym_channel_timeout_token1] = ACTIONS(2632), - [aux_sym_check_host_ip_token1] = ACTIONS(2632), - [aux_sym_ciphers_token1] = ACTIONS(2632), - [aux_sym_cipher_token1] = ACTIONS(2634), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2632), - [aux_sym_compression_token1] = ACTIONS(2632), - [aux_sym_connection_attempts_token1] = ACTIONS(2632), - [aux_sym_connect_timeout_token1] = ACTIONS(2632), - [aux_sym_control_master_token1] = ACTIONS(2632), - [aux_sym_control_path_token1] = ACTIONS(2632), - [aux_sym_control_persist_token1] = ACTIONS(2632), - [aux_sym_dynamic_forward_token1] = ACTIONS(2632), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2632), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2632), - [aux_sym_escape_char_token1] = ACTIONS(2632), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2632), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2632), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2632), - [aux_sym_forward_agent_token1] = ACTIONS(2632), - [aux_sym_forward_x11_token1] = ACTIONS(2634), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2632), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2632), - [aux_sym_gateway_ports_token1] = ACTIONS(2632), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2632), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2632), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2632), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2632), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2632), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2632), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2632), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2632), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2632), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2632), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2632), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2632), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2632), - [aux_sym_host_key_alias_token1] = ACTIONS(2632), - [aux_sym_hostname_token1] = ACTIONS(2632), - [aux_sym_identities_only_token1] = ACTIONS(2632), - [aux_sym_identity_agent_token1] = ACTIONS(2632), - [aux_sym_identity_file_token1] = ACTIONS(2632), - [aux_sym_ignore_unknown_token1] = ACTIONS(2632), - [aux_sym_include_token1] = ACTIONS(2632), - [aux_sym_ip_qos_token1] = ACTIONS(2632), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2632), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2632), - [aux_sym_kex_algorithms_token1] = ACTIONS(2632), - [aux_sym_known_hosts_command_token1] = ACTIONS(2632), - [aux_sym_local_command_token1] = ACTIONS(2632), - [aux_sym_local_forward_token1] = ACTIONS(2632), - [aux_sym_log_level_token1] = ACTIONS(2632), - [aux_sym_log_verbose_token1] = ACTIONS(2632), - [aux_sym_macs_token1] = ACTIONS(2632), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2632), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2632), - [aux_sym_password_authentication_token1] = ACTIONS(2632), - [aux_sym_permit_local_command_token1] = ACTIONS(2632), - [aux_sym_permit_remote_open_token1] = ACTIONS(2632), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2632), - [aux_sym_port_token1] = ACTIONS(2632), - [aux_sym_preferred_authentications_token1] = ACTIONS(2632), - [aux_sym_protocol_token1] = ACTIONS(2632), - [aux_sym_proxy_command_token1] = ACTIONS(2632), - [aux_sym_proxy_jump_token1] = ACTIONS(2632), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2632), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2632), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2632), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2632), - [aux_sym_rekey_limit_token1] = ACTIONS(2632), - [aux_sym_remote_command_token1] = ACTIONS(2632), - [aux_sym_remote_forward_token1] = ACTIONS(2632), - [aux_sym_request_tty_token1] = ACTIONS(2632), - [aux_sym_required_rsa_size_token1] = ACTIONS(2632), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2632), - [aux_sym_security_key_provider_token1] = ACTIONS(2632), - [aux_sym_send_env_token1] = ACTIONS(2632), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2632), - [aux_sym_server_alive_interval_token1] = ACTIONS(2632), - [aux_sym_session_type_token1] = ACTIONS(2632), - [aux_sym_set_env_token1] = ACTIONS(2632), - [aux_sym_stdin_null_token1] = ACTIONS(2632), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2632), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2632), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2632), - [aux_sym_syslog_facility_token1] = ACTIONS(2632), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2632), - [aux_sym_keep_alive_token1] = ACTIONS(2632), - [aux_sym_tag_token1] = ACTIONS(2632), - [aux_sym_tunnel_token1] = ACTIONS(2634), - [aux_sym_tunnel_device_token1] = ACTIONS(2632), - [aux_sym_update_host_keys_token1] = ACTIONS(2632), - [aux_sym_use_keychain_token1] = ACTIONS(2632), - [aux_sym_use_roaming_token1] = ACTIONS(2632), - [aux_sym_user_token1] = ACTIONS(2634), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2632), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2632), - [aux_sym_visual_host_key_token1] = ACTIONS(2632), - [aux_sym_xauth_location_token1] = ACTIONS(2632), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2645), + [aux_sym_match_token1] = ACTIONS(2641), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2641), + [aux_sym_address_family_token1] = ACTIONS(2641), + [aux_sym_batch_mode_token1] = ACTIONS(2641), + [aux_sym_bind_address_token1] = ACTIONS(2641), + [aux_sym_bind_interface_token1] = ACTIONS(2641), + [aux_sym_canonical_domains_token1] = ACTIONS(2641), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2641), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2641), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2641), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2641), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2641), + [aux_sym_certificate_file_token1] = ACTIONS(2641), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2641), + [aux_sym_channel_timeout_token1] = ACTIONS(2641), + [aux_sym_check_host_ip_token1] = ACTIONS(2641), + [aux_sym_ciphers_token1] = ACTIONS(2641), + [aux_sym_cipher_token1] = ACTIONS(2643), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2641), + [aux_sym_compression_token1] = ACTIONS(2641), + [aux_sym_connection_attempts_token1] = ACTIONS(2641), + [aux_sym_connect_timeout_token1] = ACTIONS(2641), + [aux_sym_control_master_token1] = ACTIONS(2641), + [aux_sym_control_path_token1] = ACTIONS(2641), + [aux_sym_control_persist_token1] = ACTIONS(2641), + [aux_sym_dynamic_forward_token1] = ACTIONS(2641), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2641), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2641), + [aux_sym_escape_char_token1] = ACTIONS(2641), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2641), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2641), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2641), + [aux_sym_forward_agent_token1] = ACTIONS(2641), + [aux_sym_forward_x11_token1] = ACTIONS(2643), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2641), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2641), + [aux_sym_gateway_ports_token1] = ACTIONS(2641), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2641), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2641), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2641), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2641), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2641), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2641), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2641), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2641), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2641), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2641), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2641), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2641), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2641), + [aux_sym_host_key_alias_token1] = ACTIONS(2641), + [aux_sym_hostname_token1] = ACTIONS(2641), + [aux_sym_identities_only_token1] = ACTIONS(2641), + [aux_sym_identity_agent_token1] = ACTIONS(2641), + [aux_sym_identity_file_token1] = ACTIONS(2641), + [aux_sym_ignore_unknown_token1] = ACTIONS(2641), + [aux_sym_include_token1] = ACTIONS(2641), + [aux_sym_ip_qos_token1] = ACTIONS(2641), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2641), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2641), + [aux_sym_kex_algorithms_token1] = ACTIONS(2641), + [aux_sym_known_hosts_command_token1] = ACTIONS(2641), + [aux_sym_local_command_token1] = ACTIONS(2641), + [aux_sym_local_forward_token1] = ACTIONS(2641), + [aux_sym_log_level_token1] = ACTIONS(2641), + [aux_sym_log_verbose_token1] = ACTIONS(2641), + [aux_sym_macs_token1] = ACTIONS(2641), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2641), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2641), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2641), + [aux_sym_password_authentication_token1] = ACTIONS(2641), + [aux_sym_permit_local_command_token1] = ACTIONS(2641), + [aux_sym_permit_remote_open_token1] = ACTIONS(2641), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2641), + [aux_sym_port_token1] = ACTIONS(2641), + [aux_sym_preferred_authentications_token1] = ACTIONS(2641), + [aux_sym_protocol_token1] = ACTIONS(2641), + [aux_sym_proxy_command_token1] = ACTIONS(2641), + [aux_sym_proxy_jump_token1] = ACTIONS(2641), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2641), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2641), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2641), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2641), + [aux_sym_rekey_limit_token1] = ACTIONS(2641), + [aux_sym_remote_command_token1] = ACTIONS(2641), + [aux_sym_remote_forward_token1] = ACTIONS(2641), + [aux_sym_request_tty_token1] = ACTIONS(2641), + [aux_sym_required_rsa_size_token1] = ACTIONS(2641), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2641), + [aux_sym_security_key_provider_token1] = ACTIONS(2641), + [aux_sym_send_env_token1] = ACTIONS(2641), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2641), + [aux_sym_server_alive_interval_token1] = ACTIONS(2641), + [aux_sym_session_type_token1] = ACTIONS(2641), + [aux_sym_set_env_token1] = ACTIONS(2641), + [aux_sym_stdin_null_token1] = ACTIONS(2641), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2641), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2641), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2641), + [aux_sym_syslog_facility_token1] = ACTIONS(2641), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2641), + [aux_sym_keep_alive_token1] = ACTIONS(2641), + [aux_sym_tag_token1] = ACTIONS(2641), + [aux_sym_tunnel_token1] = ACTIONS(2643), + [aux_sym_tunnel_device_token1] = ACTIONS(2641), + [aux_sym_update_host_keys_token1] = ACTIONS(2641), + [aux_sym_use_keychain_token1] = ACTIONS(2641), + [aux_sym_use_roaming_token1] = ACTIONS(2641), + [aux_sym_user_token1] = ACTIONS(2643), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2641), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2641), + [aux_sym_visual_host_key_token1] = ACTIONS(2641), + [aux_sym_xauth_location_token1] = ACTIONS(2641), }, [370] = { - [ts_builtin_sym_end] = ACTIONS(2638), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2640), - [anon_sym_DQUOTE] = ACTIONS(2642), - [aux_sym_match_token1] = ACTIONS(2638), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2638), - [aux_sym_address_family_token1] = ACTIONS(2638), - [aux_sym_batch_mode_token1] = ACTIONS(2638), - [aux_sym_bind_address_token1] = ACTIONS(2638), - [aux_sym_bind_interface_token1] = ACTIONS(2638), - [aux_sym_canonical_domains_token1] = ACTIONS(2638), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2638), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2638), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2638), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2638), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2638), - [aux_sym_certificate_file_token1] = ACTIONS(2638), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2638), - [aux_sym_channel_timeout_token1] = ACTIONS(2638), - [aux_sym_check_host_ip_token1] = ACTIONS(2638), - [aux_sym_ciphers_token1] = ACTIONS(2638), - [aux_sym_cipher_token1] = ACTIONS(2640), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2638), - [aux_sym_compression_token1] = ACTIONS(2638), - [aux_sym_connection_attempts_token1] = ACTIONS(2638), - [aux_sym_connect_timeout_token1] = ACTIONS(2638), - [aux_sym_control_master_token1] = ACTIONS(2638), - [aux_sym_control_path_token1] = ACTIONS(2638), - [aux_sym_control_persist_token1] = ACTIONS(2638), - [aux_sym_dynamic_forward_token1] = ACTIONS(2638), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2638), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2638), - [aux_sym_escape_char_token1] = ACTIONS(2638), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2638), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2638), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2638), - [aux_sym_forward_agent_token1] = ACTIONS(2638), - [aux_sym_forward_x11_token1] = ACTIONS(2640), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2638), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2638), - [aux_sym_gateway_ports_token1] = ACTIONS(2638), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2638), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2638), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2638), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2638), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2638), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2638), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2638), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2638), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2638), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2638), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2638), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2638), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2638), - [aux_sym_host_key_alias_token1] = ACTIONS(2638), - [aux_sym_hostname_token1] = ACTIONS(2638), - [aux_sym_identities_only_token1] = ACTIONS(2638), - [aux_sym_identity_agent_token1] = ACTIONS(2638), - [aux_sym_identity_file_token1] = ACTIONS(2638), - [aux_sym_ignore_unknown_token1] = ACTIONS(2638), - [aux_sym_include_token1] = ACTIONS(2638), - [aux_sym_ip_qos_token1] = ACTIONS(2638), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2638), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2638), - [aux_sym_kex_algorithms_token1] = ACTIONS(2638), - [aux_sym_known_hosts_command_token1] = ACTIONS(2638), - [aux_sym_local_command_token1] = ACTIONS(2638), - [aux_sym_local_forward_token1] = ACTIONS(2638), - [aux_sym_log_level_token1] = ACTIONS(2638), - [aux_sym_log_verbose_token1] = ACTIONS(2638), - [aux_sym_macs_token1] = ACTIONS(2638), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2638), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2638), - [aux_sym_password_authentication_token1] = ACTIONS(2638), - [aux_sym_permit_local_command_token1] = ACTIONS(2638), - [aux_sym_permit_remote_open_token1] = ACTIONS(2638), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2638), - [aux_sym_port_token1] = ACTIONS(2638), - [aux_sym_preferred_authentications_token1] = ACTIONS(2638), - [aux_sym_protocol_token1] = ACTIONS(2638), - [aux_sym_proxy_command_token1] = ACTIONS(2638), - [aux_sym_proxy_jump_token1] = ACTIONS(2638), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2638), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2638), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2638), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2638), - [aux_sym_rekey_limit_token1] = ACTIONS(2638), - [aux_sym_remote_command_token1] = ACTIONS(2638), - [aux_sym_remote_forward_token1] = ACTIONS(2638), - [aux_sym_request_tty_token1] = ACTIONS(2638), - [aux_sym_required_rsa_size_token1] = ACTIONS(2638), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2638), - [aux_sym_security_key_provider_token1] = ACTIONS(2638), - [aux_sym_send_env_token1] = ACTIONS(2638), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2638), - [aux_sym_server_alive_interval_token1] = ACTIONS(2638), - [aux_sym_session_type_token1] = ACTIONS(2638), - [aux_sym_set_env_token1] = ACTIONS(2638), - [aux_sym_stdin_null_token1] = ACTIONS(2638), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2638), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2638), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2638), - [aux_sym_syslog_facility_token1] = ACTIONS(2638), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2638), - [aux_sym_keep_alive_token1] = ACTIONS(2638), - [aux_sym_tag_token1] = ACTIONS(2638), - [aux_sym_tunnel_token1] = ACTIONS(2640), - [aux_sym_tunnel_device_token1] = ACTIONS(2638), - [aux_sym_update_host_keys_token1] = ACTIONS(2638), - [aux_sym_use_keychain_token1] = ACTIONS(2638), - [aux_sym_use_roaming_token1] = ACTIONS(2638), - [aux_sym_user_token1] = ACTIONS(2640), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2638), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2638), - [aux_sym_visual_host_key_token1] = ACTIONS(2638), - [aux_sym_xauth_location_token1] = ACTIONS(2638), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2649), + [anon_sym_DQUOTE] = ACTIONS(2647), + [aux_sym_match_token1] = ACTIONS(2647), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2647), + [aux_sym_address_family_token1] = ACTIONS(2647), + [aux_sym_batch_mode_token1] = ACTIONS(2647), + [aux_sym_bind_address_token1] = ACTIONS(2647), + [aux_sym_bind_interface_token1] = ACTIONS(2647), + [aux_sym_canonical_domains_token1] = ACTIONS(2647), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2647), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2647), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2647), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2647), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2647), + [aux_sym_certificate_file_token1] = ACTIONS(2647), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2647), + [aux_sym_channel_timeout_token1] = ACTIONS(2647), + [aux_sym_check_host_ip_token1] = ACTIONS(2647), + [aux_sym_ciphers_token1] = ACTIONS(2647), + [aux_sym_cipher_token1] = ACTIONS(2649), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2647), + [aux_sym_compression_token1] = ACTIONS(2647), + [aux_sym_connection_attempts_token1] = ACTIONS(2647), + [aux_sym_connect_timeout_token1] = ACTIONS(2647), + [aux_sym_control_master_token1] = ACTIONS(2647), + [aux_sym_control_path_token1] = ACTIONS(2647), + [aux_sym_control_persist_token1] = ACTIONS(2647), + [aux_sym_dynamic_forward_token1] = ACTIONS(2647), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2647), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2647), + [aux_sym_escape_char_token1] = ACTIONS(2647), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2647), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2647), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2647), + [aux_sym_forward_agent_token1] = ACTIONS(2647), + [aux_sym_forward_x11_token1] = ACTIONS(2649), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2647), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2647), + [aux_sym_gateway_ports_token1] = ACTIONS(2647), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2647), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2647), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2647), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2647), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2647), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2647), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2647), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2647), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2647), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2647), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2647), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2647), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2647), + [aux_sym_host_key_alias_token1] = ACTIONS(2647), + [aux_sym_hostname_token1] = ACTIONS(2647), + [aux_sym_identities_only_token1] = ACTIONS(2647), + [aux_sym_identity_agent_token1] = ACTIONS(2647), + [aux_sym_identity_file_token1] = ACTIONS(2647), + [aux_sym_ignore_unknown_token1] = ACTIONS(2647), + [aux_sym_include_token1] = ACTIONS(2647), + [aux_sym_ip_qos_token1] = ACTIONS(2647), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2647), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2647), + [aux_sym_kex_algorithms_token1] = ACTIONS(2647), + [aux_sym_known_hosts_command_token1] = ACTIONS(2647), + [aux_sym_local_command_token1] = ACTIONS(2647), + [aux_sym_local_forward_token1] = ACTIONS(2647), + [aux_sym_log_level_token1] = ACTIONS(2647), + [aux_sym_log_verbose_token1] = ACTIONS(2647), + [aux_sym_macs_token1] = ACTIONS(2647), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2647), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2647), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2647), + [aux_sym_password_authentication_token1] = ACTIONS(2647), + [aux_sym_permit_local_command_token1] = ACTIONS(2647), + [aux_sym_permit_remote_open_token1] = ACTIONS(2647), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2647), + [aux_sym_port_token1] = ACTIONS(2647), + [aux_sym_preferred_authentications_token1] = ACTIONS(2647), + [aux_sym_protocol_token1] = ACTIONS(2647), + [aux_sym_proxy_command_token1] = ACTIONS(2647), + [aux_sym_proxy_jump_token1] = ACTIONS(2647), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2647), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2647), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2647), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2647), + [aux_sym_rekey_limit_token1] = ACTIONS(2647), + [aux_sym_remote_command_token1] = ACTIONS(2647), + [aux_sym_remote_forward_token1] = ACTIONS(2647), + [aux_sym_request_tty_token1] = ACTIONS(2647), + [aux_sym_required_rsa_size_token1] = ACTIONS(2647), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2647), + [aux_sym_security_key_provider_token1] = ACTIONS(2647), + [aux_sym_send_env_token1] = ACTIONS(2647), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2647), + [aux_sym_server_alive_interval_token1] = ACTIONS(2647), + [aux_sym_session_type_token1] = ACTIONS(2647), + [aux_sym_set_env_token1] = ACTIONS(2647), + [aux_sym_stdin_null_token1] = ACTIONS(2647), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2647), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2647), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2647), + [aux_sym_syslog_facility_token1] = ACTIONS(2647), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2647), + [aux_sym_keep_alive_token1] = ACTIONS(2647), + [aux_sym_tag_token1] = ACTIONS(2647), + [aux_sym_tunnel_token1] = ACTIONS(2649), + [aux_sym_tunnel_device_token1] = ACTIONS(2647), + [aux_sym_update_host_keys_token1] = ACTIONS(2647), + [aux_sym_use_keychain_token1] = ACTIONS(2647), + [aux_sym_use_roaming_token1] = ACTIONS(2647), + [aux_sym_user_token1] = ACTIONS(2649), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2647), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2647), + [aux_sym_visual_host_key_token1] = ACTIONS(2647), + [aux_sym_xauth_location_token1] = ACTIONS(2647), }, [371] = { - [ts_builtin_sym_end] = ACTIONS(2644), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(2644), - [aux_sym_match_token1] = ACTIONS(2644), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2644), - [aux_sym_address_family_token1] = ACTIONS(2644), - [aux_sym_batch_mode_token1] = ACTIONS(2644), - [aux_sym_bind_address_token1] = ACTIONS(2644), - [aux_sym_bind_interface_token1] = ACTIONS(2644), - [aux_sym_canonical_domains_token1] = ACTIONS(2644), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2644), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2644), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2644), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2644), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2644), - [aux_sym_certificate_file_token1] = ACTIONS(2644), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2644), - [aux_sym_channel_timeout_token1] = ACTIONS(2644), - [aux_sym_check_host_ip_token1] = ACTIONS(2644), - [aux_sym_ciphers_token1] = ACTIONS(2644), - [aux_sym_cipher_token1] = ACTIONS(2646), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2644), - [aux_sym_compression_token1] = ACTIONS(2644), - [aux_sym_connection_attempts_token1] = ACTIONS(2644), - [aux_sym_connect_timeout_token1] = ACTIONS(2644), - [aux_sym_control_master_token1] = ACTIONS(2644), - [aux_sym_control_path_token1] = ACTIONS(2644), - [aux_sym_control_persist_token1] = ACTIONS(2644), - [aux_sym_dynamic_forward_token1] = ACTIONS(2644), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2644), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2644), - [aux_sym_escape_char_token1] = ACTIONS(2644), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2644), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2644), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2644), - [aux_sym_forward_agent_token1] = ACTIONS(2644), - [aux_sym_forward_x11_token1] = ACTIONS(2646), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2644), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2644), - [aux_sym_gateway_ports_token1] = ACTIONS(2644), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2644), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2644), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2644), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2644), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2644), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2644), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2644), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2644), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2644), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2644), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2644), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2644), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2644), - [aux_sym_host_key_alias_token1] = ACTIONS(2644), - [aux_sym_hostname_token1] = ACTIONS(2644), - [aux_sym_identities_only_token1] = ACTIONS(2644), - [aux_sym_identity_agent_token1] = ACTIONS(2644), - [aux_sym_identity_file_token1] = ACTIONS(2644), - [aux_sym_ignore_unknown_token1] = ACTIONS(2644), - [aux_sym_include_token1] = ACTIONS(2644), - [aux_sym_ip_qos_token1] = ACTIONS(2644), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2644), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2644), - [aux_sym_kex_algorithms_token1] = ACTIONS(2644), - [aux_sym_known_hosts_command_token1] = ACTIONS(2644), - [aux_sym_local_command_token1] = ACTIONS(2644), - [aux_sym_local_forward_token1] = ACTIONS(2644), - [aux_sym_log_level_token1] = ACTIONS(2644), - [aux_sym_log_verbose_token1] = ACTIONS(2644), - [aux_sym_macs_token1] = ACTIONS(2644), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2644), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2644), - [aux_sym_password_authentication_token1] = ACTIONS(2644), - [aux_sym_permit_local_command_token1] = ACTIONS(2644), - [aux_sym_permit_remote_open_token1] = ACTIONS(2644), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2644), - [aux_sym_port_token1] = ACTIONS(2644), - [aux_sym_preferred_authentications_token1] = ACTIONS(2644), - [aux_sym_protocol_token1] = ACTIONS(2644), - [aux_sym_proxy_command_token1] = ACTIONS(2644), - [aux_sym_proxy_jump_token1] = ACTIONS(2644), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2644), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2644), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2644), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2644), - [aux_sym_rekey_limit_token1] = ACTIONS(2644), - [aux_sym_remote_command_token1] = ACTIONS(2644), - [aux_sym_remote_forward_token1] = ACTIONS(2644), - [aux_sym_request_tty_token1] = ACTIONS(2644), - [aux_sym_required_rsa_size_token1] = ACTIONS(2644), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2644), - [aux_sym_security_key_provider_token1] = ACTIONS(2644), - [aux_sym_send_env_token1] = ACTIONS(2644), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2644), - [aux_sym_server_alive_interval_token1] = ACTIONS(2644), - [aux_sym_session_type_token1] = ACTIONS(2644), - [aux_sym_set_env_token1] = ACTIONS(2644), - [aux_sym_stdin_null_token1] = ACTIONS(2644), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2644), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2644), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2644), - [aux_sym_syslog_facility_token1] = ACTIONS(2644), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2644), - [aux_sym_keep_alive_token1] = ACTIONS(2644), - [aux_sym_tag_token1] = ACTIONS(2644), - [aux_sym_tunnel_token1] = ACTIONS(2646), - [aux_sym_tunnel_device_token1] = ACTIONS(2644), - [aux_sym_update_host_keys_token1] = ACTIONS(2644), - [aux_sym_use_keychain_token1] = ACTIONS(2644), - [aux_sym_use_roaming_token1] = ACTIONS(2644), - [aux_sym_user_token1] = ACTIONS(2646), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2644), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2644), - [aux_sym_visual_host_key_token1] = ACTIONS(2644), - [aux_sym_xauth_location_token1] = ACTIONS(2644), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2653), + [anon_sym_DQUOTE] = ACTIONS(2655), + [aux_sym_match_token1] = ACTIONS(2651), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2651), + [aux_sym_address_family_token1] = ACTIONS(2651), + [aux_sym_batch_mode_token1] = ACTIONS(2651), + [aux_sym_bind_address_token1] = ACTIONS(2651), + [aux_sym_bind_interface_token1] = ACTIONS(2651), + [aux_sym_canonical_domains_token1] = ACTIONS(2651), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2651), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2651), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2651), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2651), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2651), + [aux_sym_certificate_file_token1] = ACTIONS(2651), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2651), + [aux_sym_channel_timeout_token1] = ACTIONS(2651), + [aux_sym_check_host_ip_token1] = ACTIONS(2651), + [aux_sym_ciphers_token1] = ACTIONS(2651), + [aux_sym_cipher_token1] = ACTIONS(2653), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2651), + [aux_sym_compression_token1] = ACTIONS(2651), + [aux_sym_connection_attempts_token1] = ACTIONS(2651), + [aux_sym_connect_timeout_token1] = ACTIONS(2651), + [aux_sym_control_master_token1] = ACTIONS(2651), + [aux_sym_control_path_token1] = ACTIONS(2651), + [aux_sym_control_persist_token1] = ACTIONS(2651), + [aux_sym_dynamic_forward_token1] = ACTIONS(2651), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2651), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2651), + [aux_sym_escape_char_token1] = ACTIONS(2651), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2651), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2651), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2651), + [aux_sym_forward_agent_token1] = ACTIONS(2651), + [aux_sym_forward_x11_token1] = ACTIONS(2653), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2651), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2651), + [aux_sym_gateway_ports_token1] = ACTIONS(2651), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2651), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2651), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2651), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2651), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2651), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2651), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2651), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2651), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2651), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2651), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2651), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2651), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2651), + [aux_sym_host_key_alias_token1] = ACTIONS(2651), + [aux_sym_hostname_token1] = ACTIONS(2651), + [aux_sym_identities_only_token1] = ACTIONS(2651), + [aux_sym_identity_agent_token1] = ACTIONS(2651), + [aux_sym_identity_file_token1] = ACTIONS(2651), + [aux_sym_ignore_unknown_token1] = ACTIONS(2651), + [aux_sym_include_token1] = ACTIONS(2651), + [aux_sym_ip_qos_token1] = ACTIONS(2651), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2651), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2651), + [aux_sym_kex_algorithms_token1] = ACTIONS(2651), + [aux_sym_known_hosts_command_token1] = ACTIONS(2651), + [aux_sym_local_command_token1] = ACTIONS(2651), + [aux_sym_local_forward_token1] = ACTIONS(2651), + [aux_sym_log_level_token1] = ACTIONS(2651), + [aux_sym_log_verbose_token1] = ACTIONS(2651), + [aux_sym_macs_token1] = ACTIONS(2651), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2651), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2651), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2651), + [aux_sym_password_authentication_token1] = ACTIONS(2651), + [aux_sym_permit_local_command_token1] = ACTIONS(2651), + [aux_sym_permit_remote_open_token1] = ACTIONS(2651), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2651), + [aux_sym_port_token1] = ACTIONS(2651), + [aux_sym_preferred_authentications_token1] = ACTIONS(2651), + [aux_sym_protocol_token1] = ACTIONS(2651), + [aux_sym_proxy_command_token1] = ACTIONS(2651), + [aux_sym_proxy_jump_token1] = ACTIONS(2651), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2651), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2651), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2651), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2651), + [aux_sym_rekey_limit_token1] = ACTIONS(2651), + [aux_sym_remote_command_token1] = ACTIONS(2651), + [aux_sym_remote_forward_token1] = ACTIONS(2651), + [aux_sym_request_tty_token1] = ACTIONS(2651), + [aux_sym_required_rsa_size_token1] = ACTIONS(2651), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2651), + [aux_sym_security_key_provider_token1] = ACTIONS(2651), + [aux_sym_send_env_token1] = ACTIONS(2651), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2651), + [aux_sym_server_alive_interval_token1] = ACTIONS(2651), + [aux_sym_session_type_token1] = ACTIONS(2651), + [aux_sym_set_env_token1] = ACTIONS(2651), + [aux_sym_stdin_null_token1] = ACTIONS(2651), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2651), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2651), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2651), + [aux_sym_syslog_facility_token1] = ACTIONS(2651), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2651), + [aux_sym_keep_alive_token1] = ACTIONS(2651), + [aux_sym_tag_token1] = ACTIONS(2651), + [aux_sym_tunnel_token1] = ACTIONS(2653), + [aux_sym_tunnel_device_token1] = ACTIONS(2651), + [aux_sym_update_host_keys_token1] = ACTIONS(2651), + [aux_sym_use_keychain_token1] = ACTIONS(2651), + [aux_sym_use_roaming_token1] = ACTIONS(2651), + [aux_sym_user_token1] = ACTIONS(2653), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2651), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2651), + [aux_sym_visual_host_key_token1] = ACTIONS(2651), + [aux_sym_xauth_location_token1] = ACTIONS(2651), }, [372] = { - [ts_builtin_sym_end] = ACTIONS(2648), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2650), - [anon_sym_DQUOTE] = ACTIONS(2648), - [aux_sym_match_token1] = ACTIONS(2648), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2648), - [aux_sym_address_family_token1] = ACTIONS(2648), - [aux_sym_batch_mode_token1] = ACTIONS(2648), - [aux_sym_bind_address_token1] = ACTIONS(2648), - [aux_sym_bind_interface_token1] = ACTIONS(2648), - [aux_sym_canonical_domains_token1] = ACTIONS(2648), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2648), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2648), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2648), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2648), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2648), - [aux_sym_certificate_file_token1] = ACTIONS(2648), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2648), - [aux_sym_channel_timeout_token1] = ACTIONS(2648), - [aux_sym_check_host_ip_token1] = ACTIONS(2648), - [aux_sym_ciphers_token1] = ACTIONS(2648), - [aux_sym_cipher_token1] = ACTIONS(2650), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2648), - [aux_sym_compression_token1] = ACTIONS(2648), - [aux_sym_connection_attempts_token1] = ACTIONS(2648), - [aux_sym_connect_timeout_token1] = ACTIONS(2648), - [aux_sym_control_master_token1] = ACTIONS(2648), - [aux_sym_control_path_token1] = ACTIONS(2648), - [aux_sym_control_persist_token1] = ACTIONS(2648), - [aux_sym_dynamic_forward_token1] = ACTIONS(2648), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2648), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2648), - [aux_sym_escape_char_token1] = ACTIONS(2648), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2648), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2648), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2648), - [aux_sym_forward_agent_token1] = ACTIONS(2648), - [aux_sym_forward_x11_token1] = ACTIONS(2650), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2648), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2648), - [aux_sym_gateway_ports_token1] = ACTIONS(2648), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2648), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2648), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2648), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2648), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2648), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2648), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2648), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2648), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2648), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2648), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2648), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2648), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2648), - [aux_sym_host_key_alias_token1] = ACTIONS(2648), - [aux_sym_hostname_token1] = ACTIONS(2648), - [aux_sym_identities_only_token1] = ACTIONS(2648), - [aux_sym_identity_agent_token1] = ACTIONS(2648), - [aux_sym_identity_file_token1] = ACTIONS(2648), - [aux_sym_ignore_unknown_token1] = ACTIONS(2648), - [aux_sym_include_token1] = ACTIONS(2648), - [aux_sym_ip_qos_token1] = ACTIONS(2648), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2648), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2648), - [aux_sym_kex_algorithms_token1] = ACTIONS(2648), - [aux_sym_known_hosts_command_token1] = ACTIONS(2648), - [aux_sym_local_command_token1] = ACTIONS(2648), - [aux_sym_local_forward_token1] = ACTIONS(2648), - [aux_sym_log_level_token1] = ACTIONS(2648), - [aux_sym_log_verbose_token1] = ACTIONS(2648), - [aux_sym_macs_token1] = ACTIONS(2648), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2648), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2648), - [aux_sym_password_authentication_token1] = ACTIONS(2648), - [aux_sym_permit_local_command_token1] = ACTIONS(2648), - [aux_sym_permit_remote_open_token1] = ACTIONS(2648), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2648), - [aux_sym_port_token1] = ACTIONS(2648), - [aux_sym_preferred_authentications_token1] = ACTIONS(2648), - [aux_sym_protocol_token1] = ACTIONS(2648), - [aux_sym_proxy_command_token1] = ACTIONS(2648), - [aux_sym_proxy_jump_token1] = ACTIONS(2648), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2648), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2648), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2648), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2648), - [aux_sym_rekey_limit_token1] = ACTIONS(2648), - [aux_sym_remote_command_token1] = ACTIONS(2648), - [aux_sym_remote_forward_token1] = ACTIONS(2648), - [aux_sym_request_tty_token1] = ACTIONS(2648), - [aux_sym_required_rsa_size_token1] = ACTIONS(2648), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2648), - [aux_sym_security_key_provider_token1] = ACTIONS(2648), - [aux_sym_send_env_token1] = ACTIONS(2648), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2648), - [aux_sym_server_alive_interval_token1] = ACTIONS(2648), - [aux_sym_session_type_token1] = ACTIONS(2648), - [aux_sym_set_env_token1] = ACTIONS(2648), - [aux_sym_stdin_null_token1] = ACTIONS(2648), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2648), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2648), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2648), - [aux_sym_syslog_facility_token1] = ACTIONS(2648), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2648), - [aux_sym_keep_alive_token1] = ACTIONS(2648), - [aux_sym_tag_token1] = ACTIONS(2648), - [aux_sym_tunnel_token1] = ACTIONS(2650), - [aux_sym_tunnel_device_token1] = ACTIONS(2648), - [aux_sym_update_host_keys_token1] = ACTIONS(2648), - [aux_sym_use_keychain_token1] = ACTIONS(2648), - [aux_sym_use_roaming_token1] = ACTIONS(2648), - [aux_sym_user_token1] = ACTIONS(2650), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2648), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2648), - [aux_sym_visual_host_key_token1] = ACTIONS(2648), - [aux_sym_xauth_location_token1] = ACTIONS(2648), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2661), + [aux_sym_match_token1] = ACTIONS(2657), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2657), + [aux_sym_address_family_token1] = ACTIONS(2657), + [aux_sym_batch_mode_token1] = ACTIONS(2657), + [aux_sym_bind_address_token1] = ACTIONS(2657), + [aux_sym_bind_interface_token1] = ACTIONS(2657), + [aux_sym_canonical_domains_token1] = ACTIONS(2657), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2657), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2657), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2657), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2657), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2657), + [aux_sym_certificate_file_token1] = ACTIONS(2657), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2657), + [aux_sym_channel_timeout_token1] = ACTIONS(2657), + [aux_sym_check_host_ip_token1] = ACTIONS(2657), + [aux_sym_ciphers_token1] = ACTIONS(2657), + [aux_sym_cipher_token1] = ACTIONS(2659), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2657), + [aux_sym_compression_token1] = ACTIONS(2657), + [aux_sym_connection_attempts_token1] = ACTIONS(2657), + [aux_sym_connect_timeout_token1] = ACTIONS(2657), + [aux_sym_control_master_token1] = ACTIONS(2657), + [aux_sym_control_path_token1] = ACTIONS(2657), + [aux_sym_control_persist_token1] = ACTIONS(2657), + [aux_sym_dynamic_forward_token1] = ACTIONS(2657), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2657), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2657), + [aux_sym_escape_char_token1] = ACTIONS(2657), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2657), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2657), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2657), + [aux_sym_forward_agent_token1] = ACTIONS(2657), + [aux_sym_forward_x11_token1] = ACTIONS(2659), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2657), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2657), + [aux_sym_gateway_ports_token1] = ACTIONS(2657), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2657), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2657), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2657), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2657), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2657), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2657), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2657), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2657), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2657), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2657), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2657), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2657), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2657), + [aux_sym_host_key_alias_token1] = ACTIONS(2657), + [aux_sym_hostname_token1] = ACTIONS(2657), + [aux_sym_identities_only_token1] = ACTIONS(2657), + [aux_sym_identity_agent_token1] = ACTIONS(2657), + [aux_sym_identity_file_token1] = ACTIONS(2657), + [aux_sym_ignore_unknown_token1] = ACTIONS(2657), + [aux_sym_include_token1] = ACTIONS(2657), + [aux_sym_ip_qos_token1] = ACTIONS(2657), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2657), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2657), + [aux_sym_kex_algorithms_token1] = ACTIONS(2657), + [aux_sym_known_hosts_command_token1] = ACTIONS(2657), + [aux_sym_local_command_token1] = ACTIONS(2657), + [aux_sym_local_forward_token1] = ACTIONS(2657), + [aux_sym_log_level_token1] = ACTIONS(2657), + [aux_sym_log_verbose_token1] = ACTIONS(2657), + [aux_sym_macs_token1] = ACTIONS(2657), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2657), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2657), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2657), + [aux_sym_password_authentication_token1] = ACTIONS(2657), + [aux_sym_permit_local_command_token1] = ACTIONS(2657), + [aux_sym_permit_remote_open_token1] = ACTIONS(2657), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2657), + [aux_sym_port_token1] = ACTIONS(2657), + [aux_sym_preferred_authentications_token1] = ACTIONS(2657), + [aux_sym_protocol_token1] = ACTIONS(2657), + [aux_sym_proxy_command_token1] = ACTIONS(2657), + [aux_sym_proxy_jump_token1] = ACTIONS(2657), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2657), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2657), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2657), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2657), + [aux_sym_rekey_limit_token1] = ACTIONS(2657), + [aux_sym_remote_command_token1] = ACTIONS(2657), + [aux_sym_remote_forward_token1] = ACTIONS(2657), + [aux_sym_request_tty_token1] = ACTIONS(2657), + [aux_sym_required_rsa_size_token1] = ACTIONS(2657), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2657), + [aux_sym_security_key_provider_token1] = ACTIONS(2657), + [aux_sym_send_env_token1] = ACTIONS(2657), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2657), + [aux_sym_server_alive_interval_token1] = ACTIONS(2657), + [aux_sym_session_type_token1] = ACTIONS(2657), + [aux_sym_set_env_token1] = ACTIONS(2657), + [aux_sym_stdin_null_token1] = ACTIONS(2657), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2657), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2657), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2657), + [aux_sym_syslog_facility_token1] = ACTIONS(2657), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2657), + [aux_sym_keep_alive_token1] = ACTIONS(2657), + [aux_sym_tag_token1] = ACTIONS(2657), + [aux_sym_tunnel_token1] = ACTIONS(2659), + [aux_sym_tunnel_device_token1] = ACTIONS(2657), + [aux_sym_update_host_keys_token1] = ACTIONS(2657), + [aux_sym_use_keychain_token1] = ACTIONS(2657), + [aux_sym_use_roaming_token1] = ACTIONS(2657), + [aux_sym_user_token1] = ACTIONS(2659), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2657), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2657), + [aux_sym_visual_host_key_token1] = ACTIONS(2657), + [aux_sym_xauth_location_token1] = ACTIONS(2657), }, [373] = { - [ts_builtin_sym_end] = ACTIONS(2652), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2654), - [anon_sym_DQUOTE] = ACTIONS(2656), - [aux_sym_match_token1] = ACTIONS(2652), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2652), - [aux_sym_address_family_token1] = ACTIONS(2652), - [aux_sym_batch_mode_token1] = ACTIONS(2652), - [aux_sym_bind_address_token1] = ACTIONS(2652), - [aux_sym_bind_interface_token1] = ACTIONS(2652), - [aux_sym_canonical_domains_token1] = ACTIONS(2652), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2652), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2652), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2652), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2652), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2652), - [aux_sym_certificate_file_token1] = ACTIONS(2652), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2652), - [aux_sym_channel_timeout_token1] = ACTIONS(2652), - [aux_sym_check_host_ip_token1] = ACTIONS(2652), - [aux_sym_ciphers_token1] = ACTIONS(2652), - [aux_sym_cipher_token1] = ACTIONS(2654), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2652), - [aux_sym_compression_token1] = ACTIONS(2652), - [aux_sym_connection_attempts_token1] = ACTIONS(2652), - [aux_sym_connect_timeout_token1] = ACTIONS(2652), - [aux_sym_control_master_token1] = ACTIONS(2652), - [aux_sym_control_path_token1] = ACTIONS(2652), - [aux_sym_control_persist_token1] = ACTIONS(2652), - [aux_sym_dynamic_forward_token1] = ACTIONS(2652), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2652), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2652), - [aux_sym_escape_char_token1] = ACTIONS(2652), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2652), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2652), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2652), - [aux_sym_forward_agent_token1] = ACTIONS(2652), - [aux_sym_forward_x11_token1] = ACTIONS(2654), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2652), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2652), - [aux_sym_gateway_ports_token1] = ACTIONS(2652), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2652), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2652), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2652), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2652), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2652), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2652), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2652), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2652), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2652), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2652), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2652), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2652), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2652), - [aux_sym_host_key_alias_token1] = ACTIONS(2652), - [aux_sym_hostname_token1] = ACTIONS(2652), - [aux_sym_identities_only_token1] = ACTIONS(2652), - [aux_sym_identity_agent_token1] = ACTIONS(2652), - [aux_sym_identity_file_token1] = ACTIONS(2652), - [aux_sym_ignore_unknown_token1] = ACTIONS(2652), - [aux_sym_include_token1] = ACTIONS(2652), - [aux_sym_ip_qos_token1] = ACTIONS(2652), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2652), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2652), - [aux_sym_kex_algorithms_token1] = ACTIONS(2652), - [aux_sym_known_hosts_command_token1] = ACTIONS(2652), - [aux_sym_local_command_token1] = ACTIONS(2652), - [aux_sym_local_forward_token1] = ACTIONS(2652), - [aux_sym_log_level_token1] = ACTIONS(2652), - [aux_sym_log_verbose_token1] = ACTIONS(2652), - [aux_sym_macs_token1] = ACTIONS(2652), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2652), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2652), - [aux_sym_password_authentication_token1] = ACTIONS(2652), - [aux_sym_permit_local_command_token1] = ACTIONS(2652), - [aux_sym_permit_remote_open_token1] = ACTIONS(2652), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2652), - [aux_sym_port_token1] = ACTIONS(2652), - [aux_sym_preferred_authentications_token1] = ACTIONS(2652), - [aux_sym_protocol_token1] = ACTIONS(2652), - [aux_sym_proxy_command_token1] = ACTIONS(2652), - [aux_sym_proxy_jump_token1] = ACTIONS(2652), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2652), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2652), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2652), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2652), - [aux_sym_rekey_limit_token1] = ACTIONS(2652), - [aux_sym_remote_command_token1] = ACTIONS(2652), - [aux_sym_remote_forward_token1] = ACTIONS(2652), - [aux_sym_request_tty_token1] = ACTIONS(2652), - [aux_sym_required_rsa_size_token1] = ACTIONS(2652), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2652), - [aux_sym_security_key_provider_token1] = ACTIONS(2652), - [aux_sym_send_env_token1] = ACTIONS(2652), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2652), - [aux_sym_server_alive_interval_token1] = ACTIONS(2652), - [aux_sym_session_type_token1] = ACTIONS(2652), - [aux_sym_set_env_token1] = ACTIONS(2652), - [aux_sym_stdin_null_token1] = ACTIONS(2652), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2652), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2652), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2652), - [aux_sym_syslog_facility_token1] = ACTIONS(2652), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2652), - [aux_sym_keep_alive_token1] = ACTIONS(2652), - [aux_sym_tag_token1] = ACTIONS(2652), - [aux_sym_tunnel_token1] = ACTIONS(2654), - [aux_sym_tunnel_device_token1] = ACTIONS(2652), - [aux_sym_update_host_keys_token1] = ACTIONS(2652), - [aux_sym_use_keychain_token1] = ACTIONS(2652), - [aux_sym_use_roaming_token1] = ACTIONS(2652), - [aux_sym_user_token1] = ACTIONS(2654), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2652), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2652), - [aux_sym_visual_host_key_token1] = ACTIONS(2652), - [aux_sym_xauth_location_token1] = ACTIONS(2652), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2665), + [anon_sym_DQUOTE] = ACTIONS(2663), + [aux_sym_match_token1] = ACTIONS(2663), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2663), + [aux_sym_address_family_token1] = ACTIONS(2663), + [aux_sym_batch_mode_token1] = ACTIONS(2663), + [aux_sym_bind_address_token1] = ACTIONS(2663), + [aux_sym_bind_interface_token1] = ACTIONS(2663), + [aux_sym_canonical_domains_token1] = ACTIONS(2663), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2663), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2663), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2663), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2663), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2663), + [aux_sym_certificate_file_token1] = ACTIONS(2663), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2663), + [aux_sym_channel_timeout_token1] = ACTIONS(2663), + [aux_sym_check_host_ip_token1] = ACTIONS(2663), + [aux_sym_ciphers_token1] = ACTIONS(2663), + [aux_sym_cipher_token1] = ACTIONS(2665), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2663), + [aux_sym_compression_token1] = ACTIONS(2663), + [aux_sym_connection_attempts_token1] = ACTIONS(2663), + [aux_sym_connect_timeout_token1] = ACTIONS(2663), + [aux_sym_control_master_token1] = ACTIONS(2663), + [aux_sym_control_path_token1] = ACTIONS(2663), + [aux_sym_control_persist_token1] = ACTIONS(2663), + [aux_sym_dynamic_forward_token1] = ACTIONS(2663), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2663), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2663), + [aux_sym_escape_char_token1] = ACTIONS(2663), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2663), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2663), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2663), + [aux_sym_forward_agent_token1] = ACTIONS(2663), + [aux_sym_forward_x11_token1] = ACTIONS(2665), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2663), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2663), + [aux_sym_gateway_ports_token1] = ACTIONS(2663), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2663), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2663), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2663), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2663), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2663), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2663), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2663), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2663), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2663), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2663), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2663), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2663), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2663), + [aux_sym_host_key_alias_token1] = ACTIONS(2663), + [aux_sym_hostname_token1] = ACTIONS(2663), + [aux_sym_identities_only_token1] = ACTIONS(2663), + [aux_sym_identity_agent_token1] = ACTIONS(2663), + [aux_sym_identity_file_token1] = ACTIONS(2663), + [aux_sym_ignore_unknown_token1] = ACTIONS(2663), + [aux_sym_include_token1] = ACTIONS(2663), + [aux_sym_ip_qos_token1] = ACTIONS(2663), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2663), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2663), + [aux_sym_kex_algorithms_token1] = ACTIONS(2663), + [aux_sym_known_hosts_command_token1] = ACTIONS(2663), + [aux_sym_local_command_token1] = ACTIONS(2663), + [aux_sym_local_forward_token1] = ACTIONS(2663), + [aux_sym_log_level_token1] = ACTIONS(2663), + [aux_sym_log_verbose_token1] = ACTIONS(2663), + [aux_sym_macs_token1] = ACTIONS(2663), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2663), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2663), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2663), + [aux_sym_password_authentication_token1] = ACTIONS(2663), + [aux_sym_permit_local_command_token1] = ACTIONS(2663), + [aux_sym_permit_remote_open_token1] = ACTIONS(2663), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2663), + [aux_sym_port_token1] = ACTIONS(2663), + [aux_sym_preferred_authentications_token1] = ACTIONS(2663), + [aux_sym_protocol_token1] = ACTIONS(2663), + [aux_sym_proxy_command_token1] = ACTIONS(2663), + [aux_sym_proxy_jump_token1] = ACTIONS(2663), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2663), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2663), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2663), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2663), + [aux_sym_rekey_limit_token1] = ACTIONS(2663), + [aux_sym_remote_command_token1] = ACTIONS(2663), + [aux_sym_remote_forward_token1] = ACTIONS(2663), + [aux_sym_request_tty_token1] = ACTIONS(2663), + [aux_sym_required_rsa_size_token1] = ACTIONS(2663), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2663), + [aux_sym_security_key_provider_token1] = ACTIONS(2663), + [aux_sym_send_env_token1] = ACTIONS(2663), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2663), + [aux_sym_server_alive_interval_token1] = ACTIONS(2663), + [aux_sym_session_type_token1] = ACTIONS(2663), + [aux_sym_set_env_token1] = ACTIONS(2663), + [aux_sym_stdin_null_token1] = ACTIONS(2663), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2663), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2663), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2663), + [aux_sym_syslog_facility_token1] = ACTIONS(2663), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2663), + [aux_sym_keep_alive_token1] = ACTIONS(2663), + [aux_sym_tag_token1] = ACTIONS(2663), + [aux_sym_tunnel_token1] = ACTIONS(2665), + [aux_sym_tunnel_device_token1] = ACTIONS(2663), + [aux_sym_update_host_keys_token1] = ACTIONS(2663), + [aux_sym_use_keychain_token1] = ACTIONS(2663), + [aux_sym_use_roaming_token1] = ACTIONS(2663), + [aux_sym_user_token1] = ACTIONS(2665), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2663), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2663), + [aux_sym_visual_host_key_token1] = ACTIONS(2663), + [aux_sym_xauth_location_token1] = ACTIONS(2663), }, [374] = { - [ts_builtin_sym_end] = ACTIONS(2658), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2658), - [aux_sym_match_token1] = ACTIONS(2658), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2658), - [aux_sym_address_family_token1] = ACTIONS(2658), - [aux_sym_batch_mode_token1] = ACTIONS(2658), - [aux_sym_bind_address_token1] = ACTIONS(2658), - [aux_sym_bind_interface_token1] = ACTIONS(2658), - [aux_sym_canonical_domains_token1] = ACTIONS(2658), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2658), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2658), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2658), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2658), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2658), - [aux_sym_certificate_file_token1] = ACTIONS(2658), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2658), - [aux_sym_channel_timeout_token1] = ACTIONS(2658), - [aux_sym_check_host_ip_token1] = ACTIONS(2658), - [aux_sym_ciphers_token1] = ACTIONS(2658), - [aux_sym_cipher_token1] = ACTIONS(2660), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2658), - [aux_sym_compression_token1] = ACTIONS(2658), - [aux_sym_connection_attempts_token1] = ACTIONS(2658), - [aux_sym_connect_timeout_token1] = ACTIONS(2658), - [aux_sym_control_master_token1] = ACTIONS(2658), - [aux_sym_control_path_token1] = ACTIONS(2658), - [aux_sym_control_persist_token1] = ACTIONS(2658), - [aux_sym_dynamic_forward_token1] = ACTIONS(2658), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2658), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2658), - [aux_sym_escape_char_token1] = ACTIONS(2658), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2658), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2658), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2658), - [aux_sym_forward_agent_token1] = ACTIONS(2658), - [aux_sym_forward_x11_token1] = ACTIONS(2660), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2658), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2658), - [aux_sym_gateway_ports_token1] = ACTIONS(2658), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2658), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2658), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2658), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2658), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2658), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2658), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2658), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2658), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2658), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2658), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2658), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2658), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2658), - [aux_sym_host_key_alias_token1] = ACTIONS(2658), - [aux_sym_hostname_token1] = ACTIONS(2658), - [aux_sym_identities_only_token1] = ACTIONS(2658), - [aux_sym_identity_agent_token1] = ACTIONS(2658), - [aux_sym_identity_file_token1] = ACTIONS(2658), - [aux_sym_ignore_unknown_token1] = ACTIONS(2658), - [aux_sym_include_token1] = ACTIONS(2658), - [aux_sym_ip_qos_token1] = ACTIONS(2658), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2658), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2658), - [aux_sym_kex_algorithms_token1] = ACTIONS(2658), - [aux_sym_known_hosts_command_token1] = ACTIONS(2658), - [aux_sym_local_command_token1] = ACTIONS(2658), - [aux_sym_local_forward_token1] = ACTIONS(2658), - [aux_sym_log_level_token1] = ACTIONS(2658), - [aux_sym_log_verbose_token1] = ACTIONS(2658), - [aux_sym_macs_token1] = ACTIONS(2658), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2658), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2658), - [aux_sym_password_authentication_token1] = ACTIONS(2658), - [aux_sym_permit_local_command_token1] = ACTIONS(2658), - [aux_sym_permit_remote_open_token1] = ACTIONS(2658), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2658), - [aux_sym_port_token1] = ACTIONS(2658), - [aux_sym_preferred_authentications_token1] = ACTIONS(2658), - [aux_sym_protocol_token1] = ACTIONS(2658), - [aux_sym_proxy_command_token1] = ACTIONS(2658), - [aux_sym_proxy_jump_token1] = ACTIONS(2658), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2658), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2658), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2658), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2658), - [aux_sym_rekey_limit_token1] = ACTIONS(2658), - [aux_sym_remote_command_token1] = ACTIONS(2658), - [aux_sym_remote_forward_token1] = ACTIONS(2658), - [aux_sym_request_tty_token1] = ACTIONS(2658), - [aux_sym_required_rsa_size_token1] = ACTIONS(2658), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2658), - [aux_sym_security_key_provider_token1] = ACTIONS(2658), - [aux_sym_send_env_token1] = ACTIONS(2658), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2658), - [aux_sym_server_alive_interval_token1] = ACTIONS(2658), - [aux_sym_session_type_token1] = ACTIONS(2658), - [aux_sym_set_env_token1] = ACTIONS(2658), - [aux_sym_stdin_null_token1] = ACTIONS(2658), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2658), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2658), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2658), - [aux_sym_syslog_facility_token1] = ACTIONS(2658), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2658), - [aux_sym_keep_alive_token1] = ACTIONS(2658), - [aux_sym_tag_token1] = ACTIONS(2658), - [aux_sym_tunnel_token1] = ACTIONS(2660), - [aux_sym_tunnel_device_token1] = ACTIONS(2658), - [aux_sym_update_host_keys_token1] = ACTIONS(2658), - [aux_sym_use_keychain_token1] = ACTIONS(2658), - [aux_sym_use_roaming_token1] = ACTIONS(2658), - [aux_sym_user_token1] = ACTIONS(2660), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2658), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2658), - [aux_sym_visual_host_key_token1] = ACTIONS(2658), - [aux_sym_xauth_location_token1] = ACTIONS(2658), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2669), + [anon_sym_DQUOTE] = ACTIONS(2667), + [aux_sym_match_token1] = ACTIONS(2667), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2667), + [aux_sym_address_family_token1] = ACTIONS(2667), + [aux_sym_batch_mode_token1] = ACTIONS(2667), + [aux_sym_bind_address_token1] = ACTIONS(2667), + [aux_sym_bind_interface_token1] = ACTIONS(2667), + [aux_sym_canonical_domains_token1] = ACTIONS(2667), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2667), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2667), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2667), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2667), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2667), + [aux_sym_certificate_file_token1] = ACTIONS(2667), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2667), + [aux_sym_channel_timeout_token1] = ACTIONS(2667), + [aux_sym_check_host_ip_token1] = ACTIONS(2667), + [aux_sym_ciphers_token1] = ACTIONS(2667), + [aux_sym_cipher_token1] = ACTIONS(2669), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2667), + [aux_sym_compression_token1] = ACTIONS(2667), + [aux_sym_connection_attempts_token1] = ACTIONS(2667), + [aux_sym_connect_timeout_token1] = ACTIONS(2667), + [aux_sym_control_master_token1] = ACTIONS(2667), + [aux_sym_control_path_token1] = ACTIONS(2667), + [aux_sym_control_persist_token1] = ACTIONS(2667), + [aux_sym_dynamic_forward_token1] = ACTIONS(2667), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2667), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2667), + [aux_sym_escape_char_token1] = ACTIONS(2667), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2667), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2667), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2667), + [aux_sym_forward_agent_token1] = ACTIONS(2667), + [aux_sym_forward_x11_token1] = ACTIONS(2669), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2667), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2667), + [aux_sym_gateway_ports_token1] = ACTIONS(2667), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2667), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2667), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2667), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2667), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2667), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2667), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2667), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2667), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2667), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2667), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2667), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2667), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2667), + [aux_sym_host_key_alias_token1] = ACTIONS(2667), + [aux_sym_hostname_token1] = ACTIONS(2667), + [aux_sym_identities_only_token1] = ACTIONS(2667), + [aux_sym_identity_agent_token1] = ACTIONS(2667), + [aux_sym_identity_file_token1] = ACTIONS(2667), + [aux_sym_ignore_unknown_token1] = ACTIONS(2667), + [aux_sym_include_token1] = ACTIONS(2667), + [aux_sym_ip_qos_token1] = ACTIONS(2667), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2667), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2667), + [aux_sym_kex_algorithms_token1] = ACTIONS(2667), + [aux_sym_known_hosts_command_token1] = ACTIONS(2667), + [aux_sym_local_command_token1] = ACTIONS(2667), + [aux_sym_local_forward_token1] = ACTIONS(2667), + [aux_sym_log_level_token1] = ACTIONS(2667), + [aux_sym_log_verbose_token1] = ACTIONS(2667), + [aux_sym_macs_token1] = ACTIONS(2667), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2667), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2667), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2667), + [aux_sym_password_authentication_token1] = ACTIONS(2667), + [aux_sym_permit_local_command_token1] = ACTIONS(2667), + [aux_sym_permit_remote_open_token1] = ACTIONS(2667), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2667), + [aux_sym_port_token1] = ACTIONS(2667), + [aux_sym_preferred_authentications_token1] = ACTIONS(2667), + [aux_sym_protocol_token1] = ACTIONS(2667), + [aux_sym_proxy_command_token1] = ACTIONS(2667), + [aux_sym_proxy_jump_token1] = ACTIONS(2667), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2667), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2667), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2667), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2667), + [aux_sym_rekey_limit_token1] = ACTIONS(2667), + [aux_sym_remote_command_token1] = ACTIONS(2667), + [aux_sym_remote_forward_token1] = ACTIONS(2667), + [aux_sym_request_tty_token1] = ACTIONS(2667), + [aux_sym_required_rsa_size_token1] = ACTIONS(2667), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2667), + [aux_sym_security_key_provider_token1] = ACTIONS(2667), + [aux_sym_send_env_token1] = ACTIONS(2667), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2667), + [aux_sym_server_alive_interval_token1] = ACTIONS(2667), + [aux_sym_session_type_token1] = ACTIONS(2667), + [aux_sym_set_env_token1] = ACTIONS(2667), + [aux_sym_stdin_null_token1] = ACTIONS(2667), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2667), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2667), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2667), + [aux_sym_syslog_facility_token1] = ACTIONS(2667), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2667), + [aux_sym_keep_alive_token1] = ACTIONS(2667), + [aux_sym_tag_token1] = ACTIONS(2667), + [aux_sym_tunnel_token1] = ACTIONS(2669), + [aux_sym_tunnel_device_token1] = ACTIONS(2667), + [aux_sym_update_host_keys_token1] = ACTIONS(2667), + [aux_sym_use_keychain_token1] = ACTIONS(2667), + [aux_sym_use_roaming_token1] = ACTIONS(2667), + [aux_sym_user_token1] = ACTIONS(2669), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2667), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2667), + [aux_sym_visual_host_key_token1] = ACTIONS(2667), + [aux_sym_xauth_location_token1] = ACTIONS(2667), }, [375] = { - [ts_builtin_sym_end] = ACTIONS(2662), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2666), - [aux_sym_match_token1] = ACTIONS(2662), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2662), - [aux_sym_address_family_token1] = ACTIONS(2662), - [aux_sym_batch_mode_token1] = ACTIONS(2662), - [aux_sym_bind_address_token1] = ACTIONS(2662), - [aux_sym_bind_interface_token1] = ACTIONS(2662), - [aux_sym_canonical_domains_token1] = ACTIONS(2662), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2662), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2662), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2662), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2662), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2662), - [aux_sym_certificate_file_token1] = ACTIONS(2662), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2662), - [aux_sym_channel_timeout_token1] = ACTIONS(2662), - [aux_sym_check_host_ip_token1] = ACTIONS(2662), - [aux_sym_ciphers_token1] = ACTIONS(2662), - [aux_sym_cipher_token1] = ACTIONS(2664), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2662), - [aux_sym_compression_token1] = ACTIONS(2662), - [aux_sym_connection_attempts_token1] = ACTIONS(2662), - [aux_sym_connect_timeout_token1] = ACTIONS(2662), - [aux_sym_control_master_token1] = ACTIONS(2662), - [aux_sym_control_path_token1] = ACTIONS(2662), - [aux_sym_control_persist_token1] = ACTIONS(2662), - [aux_sym_dynamic_forward_token1] = ACTIONS(2662), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2662), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2662), - [aux_sym_escape_char_token1] = ACTIONS(2662), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2662), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2662), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2662), - [aux_sym_forward_agent_token1] = ACTIONS(2662), - [aux_sym_forward_x11_token1] = ACTIONS(2664), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2662), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2662), - [aux_sym_gateway_ports_token1] = ACTIONS(2662), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2662), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2662), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2662), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2662), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2662), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2662), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2662), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2662), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2662), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2662), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2662), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2662), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2662), - [aux_sym_host_key_alias_token1] = ACTIONS(2662), - [aux_sym_hostname_token1] = ACTIONS(2662), - [aux_sym_identities_only_token1] = ACTIONS(2662), - [aux_sym_identity_agent_token1] = ACTIONS(2662), - [aux_sym_identity_file_token1] = ACTIONS(2662), - [aux_sym_ignore_unknown_token1] = ACTIONS(2662), - [aux_sym_include_token1] = ACTIONS(2662), - [aux_sym_ip_qos_token1] = ACTIONS(2662), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2662), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2662), - [aux_sym_kex_algorithms_token1] = ACTIONS(2662), - [aux_sym_known_hosts_command_token1] = ACTIONS(2662), - [aux_sym_local_command_token1] = ACTIONS(2662), - [aux_sym_local_forward_token1] = ACTIONS(2662), - [aux_sym_log_level_token1] = ACTIONS(2662), - [aux_sym_log_verbose_token1] = ACTIONS(2662), - [aux_sym_macs_token1] = ACTIONS(2662), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2662), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2662), - [aux_sym_password_authentication_token1] = ACTIONS(2662), - [aux_sym_permit_local_command_token1] = ACTIONS(2662), - [aux_sym_permit_remote_open_token1] = ACTIONS(2662), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2662), - [aux_sym_port_token1] = ACTIONS(2662), - [aux_sym_preferred_authentications_token1] = ACTIONS(2662), - [aux_sym_protocol_token1] = ACTIONS(2662), - [aux_sym_proxy_command_token1] = ACTIONS(2662), - [aux_sym_proxy_jump_token1] = ACTIONS(2662), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2662), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2662), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2662), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2662), - [aux_sym_rekey_limit_token1] = ACTIONS(2662), - [aux_sym_remote_command_token1] = ACTIONS(2662), - [aux_sym_remote_forward_token1] = ACTIONS(2662), - [aux_sym_request_tty_token1] = ACTIONS(2662), - [aux_sym_required_rsa_size_token1] = ACTIONS(2662), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2662), - [aux_sym_security_key_provider_token1] = ACTIONS(2662), - [aux_sym_send_env_token1] = ACTIONS(2662), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2662), - [aux_sym_server_alive_interval_token1] = ACTIONS(2662), - [aux_sym_session_type_token1] = ACTIONS(2662), - [aux_sym_set_env_token1] = ACTIONS(2662), - [aux_sym_stdin_null_token1] = ACTIONS(2662), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2662), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2662), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2662), - [aux_sym_syslog_facility_token1] = ACTIONS(2662), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2662), - [aux_sym_keep_alive_token1] = ACTIONS(2662), - [aux_sym_tag_token1] = ACTIONS(2662), - [aux_sym_tunnel_token1] = ACTIONS(2664), - [aux_sym_tunnel_device_token1] = ACTIONS(2662), - [aux_sym_update_host_keys_token1] = ACTIONS(2662), - [aux_sym_use_keychain_token1] = ACTIONS(2662), - [aux_sym_use_roaming_token1] = ACTIONS(2662), - [aux_sym_user_token1] = ACTIONS(2664), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2662), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2662), - [aux_sym_visual_host_key_token1] = ACTIONS(2662), - [aux_sym_xauth_location_token1] = ACTIONS(2662), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2675), + [aux_sym_match_token1] = ACTIONS(2671), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2671), + [aux_sym_address_family_token1] = ACTIONS(2671), + [aux_sym_batch_mode_token1] = ACTIONS(2671), + [aux_sym_bind_address_token1] = ACTIONS(2671), + [aux_sym_bind_interface_token1] = ACTIONS(2671), + [aux_sym_canonical_domains_token1] = ACTIONS(2671), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2671), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2671), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2671), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2671), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2671), + [aux_sym_certificate_file_token1] = ACTIONS(2671), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2671), + [aux_sym_channel_timeout_token1] = ACTIONS(2671), + [aux_sym_check_host_ip_token1] = ACTIONS(2671), + [aux_sym_ciphers_token1] = ACTIONS(2671), + [aux_sym_cipher_token1] = ACTIONS(2673), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2671), + [aux_sym_compression_token1] = ACTIONS(2671), + [aux_sym_connection_attempts_token1] = ACTIONS(2671), + [aux_sym_connect_timeout_token1] = ACTIONS(2671), + [aux_sym_control_master_token1] = ACTIONS(2671), + [aux_sym_control_path_token1] = ACTIONS(2671), + [aux_sym_control_persist_token1] = ACTIONS(2671), + [aux_sym_dynamic_forward_token1] = ACTIONS(2671), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2671), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2671), + [aux_sym_escape_char_token1] = ACTIONS(2671), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2671), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2671), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2671), + [aux_sym_forward_agent_token1] = ACTIONS(2671), + [aux_sym_forward_x11_token1] = ACTIONS(2673), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2671), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2671), + [aux_sym_gateway_ports_token1] = ACTIONS(2671), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2671), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2671), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2671), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2671), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2671), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2671), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2671), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2671), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2671), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2671), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2671), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2671), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2671), + [aux_sym_host_key_alias_token1] = ACTIONS(2671), + [aux_sym_hostname_token1] = ACTIONS(2671), + [aux_sym_identities_only_token1] = ACTIONS(2671), + [aux_sym_identity_agent_token1] = ACTIONS(2671), + [aux_sym_identity_file_token1] = ACTIONS(2671), + [aux_sym_ignore_unknown_token1] = ACTIONS(2671), + [aux_sym_include_token1] = ACTIONS(2671), + [aux_sym_ip_qos_token1] = ACTIONS(2671), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2671), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2671), + [aux_sym_kex_algorithms_token1] = ACTIONS(2671), + [aux_sym_known_hosts_command_token1] = ACTIONS(2671), + [aux_sym_local_command_token1] = ACTIONS(2671), + [aux_sym_local_forward_token1] = ACTIONS(2671), + [aux_sym_log_level_token1] = ACTIONS(2671), + [aux_sym_log_verbose_token1] = ACTIONS(2671), + [aux_sym_macs_token1] = ACTIONS(2671), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2671), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2671), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2671), + [aux_sym_password_authentication_token1] = ACTIONS(2671), + [aux_sym_permit_local_command_token1] = ACTIONS(2671), + [aux_sym_permit_remote_open_token1] = ACTIONS(2671), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2671), + [aux_sym_port_token1] = ACTIONS(2671), + [aux_sym_preferred_authentications_token1] = ACTIONS(2671), + [aux_sym_protocol_token1] = ACTIONS(2671), + [aux_sym_proxy_command_token1] = ACTIONS(2671), + [aux_sym_proxy_jump_token1] = ACTIONS(2671), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2671), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2671), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2671), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2671), + [aux_sym_rekey_limit_token1] = ACTIONS(2671), + [aux_sym_remote_command_token1] = ACTIONS(2671), + [aux_sym_remote_forward_token1] = ACTIONS(2671), + [aux_sym_request_tty_token1] = ACTIONS(2671), + [aux_sym_required_rsa_size_token1] = ACTIONS(2671), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2671), + [aux_sym_security_key_provider_token1] = ACTIONS(2671), + [aux_sym_send_env_token1] = ACTIONS(2671), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2671), + [aux_sym_server_alive_interval_token1] = ACTIONS(2671), + [aux_sym_session_type_token1] = ACTIONS(2671), + [aux_sym_set_env_token1] = ACTIONS(2671), + [aux_sym_stdin_null_token1] = ACTIONS(2671), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2671), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2671), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2671), + [aux_sym_syslog_facility_token1] = ACTIONS(2671), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2671), + [aux_sym_keep_alive_token1] = ACTIONS(2671), + [aux_sym_tag_token1] = ACTIONS(2671), + [aux_sym_tunnel_token1] = ACTIONS(2673), + [aux_sym_tunnel_device_token1] = ACTIONS(2671), + [aux_sym_update_host_keys_token1] = ACTIONS(2671), + [aux_sym_use_keychain_token1] = ACTIONS(2671), + [aux_sym_use_roaming_token1] = ACTIONS(2671), + [aux_sym_user_token1] = ACTIONS(2673), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2671), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2671), + [aux_sym_visual_host_key_token1] = ACTIONS(2671), + [aux_sym_xauth_location_token1] = ACTIONS(2671), }, [376] = { - [ts_builtin_sym_end] = ACTIONS(2668), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2670), - [anon_sym_DQUOTE] = ACTIONS(2668), - [aux_sym_match_token1] = ACTIONS(2668), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2668), - [aux_sym_address_family_token1] = ACTIONS(2668), - [aux_sym_batch_mode_token1] = ACTIONS(2668), - [aux_sym_bind_address_token1] = ACTIONS(2668), - [aux_sym_bind_interface_token1] = ACTIONS(2668), - [aux_sym_canonical_domains_token1] = ACTIONS(2668), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2668), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2668), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2668), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2668), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2668), - [aux_sym_certificate_file_token1] = ACTIONS(2668), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2668), - [aux_sym_channel_timeout_token1] = ACTIONS(2668), - [aux_sym_check_host_ip_token1] = ACTIONS(2668), - [aux_sym_ciphers_token1] = ACTIONS(2668), - [aux_sym_cipher_token1] = ACTIONS(2670), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2668), - [aux_sym_compression_token1] = ACTIONS(2668), - [aux_sym_connection_attempts_token1] = ACTIONS(2668), - [aux_sym_connect_timeout_token1] = ACTIONS(2668), - [aux_sym_control_master_token1] = ACTIONS(2668), - [aux_sym_control_path_token1] = ACTIONS(2668), - [aux_sym_control_persist_token1] = ACTIONS(2668), - [aux_sym_dynamic_forward_token1] = ACTIONS(2668), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2668), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2668), - [aux_sym_escape_char_token1] = ACTIONS(2668), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2668), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2668), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2668), - [aux_sym_forward_agent_token1] = ACTIONS(2668), - [aux_sym_forward_x11_token1] = ACTIONS(2670), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2668), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2668), - [aux_sym_gateway_ports_token1] = ACTIONS(2668), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2668), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2668), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2668), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2668), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2668), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2668), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2668), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2668), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2668), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2668), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2668), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2668), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2668), - [aux_sym_host_key_alias_token1] = ACTIONS(2668), - [aux_sym_hostname_token1] = ACTIONS(2668), - [aux_sym_identities_only_token1] = ACTIONS(2668), - [aux_sym_identity_agent_token1] = ACTIONS(2668), - [aux_sym_identity_file_token1] = ACTIONS(2668), - [aux_sym_ignore_unknown_token1] = ACTIONS(2668), - [aux_sym_include_token1] = ACTIONS(2668), - [aux_sym_ip_qos_token1] = ACTIONS(2668), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2668), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2668), - [aux_sym_kex_algorithms_token1] = ACTIONS(2668), - [aux_sym_known_hosts_command_token1] = ACTIONS(2668), - [aux_sym_local_command_token1] = ACTIONS(2668), - [aux_sym_local_forward_token1] = ACTIONS(2668), - [aux_sym_log_level_token1] = ACTIONS(2668), - [aux_sym_log_verbose_token1] = ACTIONS(2668), - [aux_sym_macs_token1] = ACTIONS(2668), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2668), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2668), - [aux_sym_password_authentication_token1] = ACTIONS(2668), - [aux_sym_permit_local_command_token1] = ACTIONS(2668), - [aux_sym_permit_remote_open_token1] = ACTIONS(2668), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2668), - [aux_sym_port_token1] = ACTIONS(2668), - [aux_sym_preferred_authentications_token1] = ACTIONS(2668), - [aux_sym_protocol_token1] = ACTIONS(2668), - [aux_sym_proxy_command_token1] = ACTIONS(2668), - [aux_sym_proxy_jump_token1] = ACTIONS(2668), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2668), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2668), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2668), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2668), - [aux_sym_rekey_limit_token1] = ACTIONS(2668), - [aux_sym_remote_command_token1] = ACTIONS(2668), - [aux_sym_remote_forward_token1] = ACTIONS(2668), - [aux_sym_request_tty_token1] = ACTIONS(2668), - [aux_sym_required_rsa_size_token1] = ACTIONS(2668), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2668), - [aux_sym_security_key_provider_token1] = ACTIONS(2668), - [aux_sym_send_env_token1] = ACTIONS(2668), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2668), - [aux_sym_server_alive_interval_token1] = ACTIONS(2668), - [aux_sym_session_type_token1] = ACTIONS(2668), - [aux_sym_set_env_token1] = ACTIONS(2668), - [aux_sym_stdin_null_token1] = ACTIONS(2668), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2668), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2668), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2668), - [aux_sym_syslog_facility_token1] = ACTIONS(2668), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2668), - [aux_sym_keep_alive_token1] = ACTIONS(2668), - [aux_sym_tag_token1] = ACTIONS(2668), - [aux_sym_tunnel_token1] = ACTIONS(2670), - [aux_sym_tunnel_device_token1] = ACTIONS(2668), - [aux_sym_update_host_keys_token1] = ACTIONS(2668), - [aux_sym_use_keychain_token1] = ACTIONS(2668), - [aux_sym_use_roaming_token1] = ACTIONS(2668), - [aux_sym_user_token1] = ACTIONS(2670), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2668), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2668), - [aux_sym_visual_host_key_token1] = ACTIONS(2668), - [aux_sym_xauth_location_token1] = ACTIONS(2668), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2679), + [anon_sym_DQUOTE] = ACTIONS(2677), + [aux_sym_match_token1] = ACTIONS(2677), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2677), + [aux_sym_address_family_token1] = ACTIONS(2677), + [aux_sym_batch_mode_token1] = ACTIONS(2677), + [aux_sym_bind_address_token1] = ACTIONS(2677), + [aux_sym_bind_interface_token1] = ACTIONS(2677), + [aux_sym_canonical_domains_token1] = ACTIONS(2677), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2677), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2677), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2677), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2677), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2677), + [aux_sym_certificate_file_token1] = ACTIONS(2677), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2677), + [aux_sym_channel_timeout_token1] = ACTIONS(2677), + [aux_sym_check_host_ip_token1] = ACTIONS(2677), + [aux_sym_ciphers_token1] = ACTIONS(2677), + [aux_sym_cipher_token1] = ACTIONS(2679), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2677), + [aux_sym_compression_token1] = ACTIONS(2677), + [aux_sym_connection_attempts_token1] = ACTIONS(2677), + [aux_sym_connect_timeout_token1] = ACTIONS(2677), + [aux_sym_control_master_token1] = ACTIONS(2677), + [aux_sym_control_path_token1] = ACTIONS(2677), + [aux_sym_control_persist_token1] = ACTIONS(2677), + [aux_sym_dynamic_forward_token1] = ACTIONS(2677), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2677), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2677), + [aux_sym_escape_char_token1] = ACTIONS(2677), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2677), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2677), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2677), + [aux_sym_forward_agent_token1] = ACTIONS(2677), + [aux_sym_forward_x11_token1] = ACTIONS(2679), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2677), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2677), + [aux_sym_gateway_ports_token1] = ACTIONS(2677), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2677), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2677), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2677), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2677), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2677), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2677), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2677), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2677), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2677), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2677), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2677), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2677), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2677), + [aux_sym_host_key_alias_token1] = ACTIONS(2677), + [aux_sym_hostname_token1] = ACTIONS(2677), + [aux_sym_identities_only_token1] = ACTIONS(2677), + [aux_sym_identity_agent_token1] = ACTIONS(2677), + [aux_sym_identity_file_token1] = ACTIONS(2677), + [aux_sym_ignore_unknown_token1] = ACTIONS(2677), + [aux_sym_include_token1] = ACTIONS(2677), + [aux_sym_ip_qos_token1] = ACTIONS(2677), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2677), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2677), + [aux_sym_kex_algorithms_token1] = ACTIONS(2677), + [aux_sym_known_hosts_command_token1] = ACTIONS(2677), + [aux_sym_local_command_token1] = ACTIONS(2677), + [aux_sym_local_forward_token1] = ACTIONS(2677), + [aux_sym_log_level_token1] = ACTIONS(2677), + [aux_sym_log_verbose_token1] = ACTIONS(2677), + [aux_sym_macs_token1] = ACTIONS(2677), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2677), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2677), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2677), + [aux_sym_password_authentication_token1] = ACTIONS(2677), + [aux_sym_permit_local_command_token1] = ACTIONS(2677), + [aux_sym_permit_remote_open_token1] = ACTIONS(2677), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2677), + [aux_sym_port_token1] = ACTIONS(2677), + [aux_sym_preferred_authentications_token1] = ACTIONS(2677), + [aux_sym_protocol_token1] = ACTIONS(2677), + [aux_sym_proxy_command_token1] = ACTIONS(2677), + [aux_sym_proxy_jump_token1] = ACTIONS(2677), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2677), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2677), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2677), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2677), + [aux_sym_rekey_limit_token1] = ACTIONS(2677), + [aux_sym_remote_command_token1] = ACTIONS(2677), + [aux_sym_remote_forward_token1] = ACTIONS(2677), + [aux_sym_request_tty_token1] = ACTIONS(2677), + [aux_sym_required_rsa_size_token1] = ACTIONS(2677), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2677), + [aux_sym_security_key_provider_token1] = ACTIONS(2677), + [aux_sym_send_env_token1] = ACTIONS(2677), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2677), + [aux_sym_server_alive_interval_token1] = ACTIONS(2677), + [aux_sym_session_type_token1] = ACTIONS(2677), + [aux_sym_set_env_token1] = ACTIONS(2677), + [aux_sym_stdin_null_token1] = ACTIONS(2677), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2677), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2677), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2677), + [aux_sym_syslog_facility_token1] = ACTIONS(2677), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2677), + [aux_sym_keep_alive_token1] = ACTIONS(2677), + [aux_sym_tag_token1] = ACTIONS(2677), + [aux_sym_tunnel_token1] = ACTIONS(2679), + [aux_sym_tunnel_device_token1] = ACTIONS(2677), + [aux_sym_update_host_keys_token1] = ACTIONS(2677), + [aux_sym_use_keychain_token1] = ACTIONS(2677), + [aux_sym_use_roaming_token1] = ACTIONS(2677), + [aux_sym_user_token1] = ACTIONS(2679), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2677), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2677), + [aux_sym_visual_host_key_token1] = ACTIONS(2677), + [aux_sym_xauth_location_token1] = ACTIONS(2677), }, [377] = { - [ts_builtin_sym_end] = ACTIONS(2672), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2674), - [anon_sym_DQUOTE] = ACTIONS(2676), - [aux_sym_match_token1] = ACTIONS(2672), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2672), - [aux_sym_address_family_token1] = ACTIONS(2672), - [aux_sym_batch_mode_token1] = ACTIONS(2672), - [aux_sym_bind_address_token1] = ACTIONS(2672), - [aux_sym_bind_interface_token1] = ACTIONS(2672), - [aux_sym_canonical_domains_token1] = ACTIONS(2672), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2672), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2672), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2672), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2672), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2672), - [aux_sym_certificate_file_token1] = ACTIONS(2672), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2672), - [aux_sym_channel_timeout_token1] = ACTIONS(2672), - [aux_sym_check_host_ip_token1] = ACTIONS(2672), - [aux_sym_ciphers_token1] = ACTIONS(2672), - [aux_sym_cipher_token1] = ACTIONS(2674), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2672), - [aux_sym_compression_token1] = ACTIONS(2672), - [aux_sym_connection_attempts_token1] = ACTIONS(2672), - [aux_sym_connect_timeout_token1] = ACTIONS(2672), - [aux_sym_control_master_token1] = ACTIONS(2672), - [aux_sym_control_path_token1] = ACTIONS(2672), - [aux_sym_control_persist_token1] = ACTIONS(2672), - [aux_sym_dynamic_forward_token1] = ACTIONS(2672), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2672), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2672), - [aux_sym_escape_char_token1] = ACTIONS(2672), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2672), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2672), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2672), - [aux_sym_forward_agent_token1] = ACTIONS(2672), - [aux_sym_forward_x11_token1] = ACTIONS(2674), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2672), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2672), - [aux_sym_gateway_ports_token1] = ACTIONS(2672), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2672), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2672), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2672), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2672), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2672), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2672), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2672), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2672), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2672), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2672), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2672), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2672), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2672), - [aux_sym_host_key_alias_token1] = ACTIONS(2672), - [aux_sym_hostname_token1] = ACTIONS(2672), - [aux_sym_identities_only_token1] = ACTIONS(2672), - [aux_sym_identity_agent_token1] = ACTIONS(2672), - [aux_sym_identity_file_token1] = ACTIONS(2672), - [aux_sym_ignore_unknown_token1] = ACTIONS(2672), - [aux_sym_include_token1] = ACTIONS(2672), - [aux_sym_ip_qos_token1] = ACTIONS(2672), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2672), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2672), - [aux_sym_kex_algorithms_token1] = ACTIONS(2672), - [aux_sym_known_hosts_command_token1] = ACTIONS(2672), - [aux_sym_local_command_token1] = ACTIONS(2672), - [aux_sym_local_forward_token1] = ACTIONS(2672), - [aux_sym_log_level_token1] = ACTIONS(2672), - [aux_sym_log_verbose_token1] = ACTIONS(2672), - [aux_sym_macs_token1] = ACTIONS(2672), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2672), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2672), - [aux_sym_password_authentication_token1] = ACTIONS(2672), - [aux_sym_permit_local_command_token1] = ACTIONS(2672), - [aux_sym_permit_remote_open_token1] = ACTIONS(2672), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2672), - [aux_sym_port_token1] = ACTIONS(2672), - [aux_sym_preferred_authentications_token1] = ACTIONS(2672), - [aux_sym_protocol_token1] = ACTIONS(2672), - [aux_sym_proxy_command_token1] = ACTIONS(2672), - [aux_sym_proxy_jump_token1] = ACTIONS(2672), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2672), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2672), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2672), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2672), - [aux_sym_rekey_limit_token1] = ACTIONS(2672), - [aux_sym_remote_command_token1] = ACTIONS(2672), - [aux_sym_remote_forward_token1] = ACTIONS(2672), - [aux_sym_request_tty_token1] = ACTIONS(2672), - [aux_sym_required_rsa_size_token1] = ACTIONS(2672), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2672), - [aux_sym_security_key_provider_token1] = ACTIONS(2672), - [aux_sym_send_env_token1] = ACTIONS(2672), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2672), - [aux_sym_server_alive_interval_token1] = ACTIONS(2672), - [aux_sym_session_type_token1] = ACTIONS(2672), - [aux_sym_set_env_token1] = ACTIONS(2672), - [aux_sym_stdin_null_token1] = ACTIONS(2672), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2672), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2672), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2672), - [aux_sym_syslog_facility_token1] = ACTIONS(2672), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2672), - [aux_sym_keep_alive_token1] = ACTIONS(2672), - [aux_sym_tag_token1] = ACTIONS(2672), - [aux_sym_tunnel_token1] = ACTIONS(2674), - [aux_sym_tunnel_device_token1] = ACTIONS(2672), - [aux_sym_update_host_keys_token1] = ACTIONS(2672), - [aux_sym_use_keychain_token1] = ACTIONS(2672), - [aux_sym_use_roaming_token1] = ACTIONS(2672), - [aux_sym_user_token1] = ACTIONS(2674), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2672), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2672), - [aux_sym_visual_host_key_token1] = ACTIONS(2672), - [aux_sym_xauth_location_token1] = ACTIONS(2672), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2683), + [anon_sym_DQUOTE] = ACTIONS(2685), + [aux_sym_match_token1] = ACTIONS(2681), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2681), + [aux_sym_address_family_token1] = ACTIONS(2681), + [aux_sym_batch_mode_token1] = ACTIONS(2681), + [aux_sym_bind_address_token1] = ACTIONS(2681), + [aux_sym_bind_interface_token1] = ACTIONS(2681), + [aux_sym_canonical_domains_token1] = ACTIONS(2681), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2681), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2681), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2681), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2681), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2681), + [aux_sym_certificate_file_token1] = ACTIONS(2681), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2681), + [aux_sym_channel_timeout_token1] = ACTIONS(2681), + [aux_sym_check_host_ip_token1] = ACTIONS(2681), + [aux_sym_ciphers_token1] = ACTIONS(2681), + [aux_sym_cipher_token1] = ACTIONS(2683), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2681), + [aux_sym_compression_token1] = ACTIONS(2681), + [aux_sym_connection_attempts_token1] = ACTIONS(2681), + [aux_sym_connect_timeout_token1] = ACTIONS(2681), + [aux_sym_control_master_token1] = ACTIONS(2681), + [aux_sym_control_path_token1] = ACTIONS(2681), + [aux_sym_control_persist_token1] = ACTIONS(2681), + [aux_sym_dynamic_forward_token1] = ACTIONS(2681), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2681), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2681), + [aux_sym_escape_char_token1] = ACTIONS(2681), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2681), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2681), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2681), + [aux_sym_forward_agent_token1] = ACTIONS(2681), + [aux_sym_forward_x11_token1] = ACTIONS(2683), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2681), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2681), + [aux_sym_gateway_ports_token1] = ACTIONS(2681), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2681), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2681), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2681), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2681), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2681), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2681), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2681), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2681), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2681), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2681), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2681), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2681), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2681), + [aux_sym_host_key_alias_token1] = ACTIONS(2681), + [aux_sym_hostname_token1] = ACTIONS(2681), + [aux_sym_identities_only_token1] = ACTIONS(2681), + [aux_sym_identity_agent_token1] = ACTIONS(2681), + [aux_sym_identity_file_token1] = ACTIONS(2681), + [aux_sym_ignore_unknown_token1] = ACTIONS(2681), + [aux_sym_include_token1] = ACTIONS(2681), + [aux_sym_ip_qos_token1] = ACTIONS(2681), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2681), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2681), + [aux_sym_kex_algorithms_token1] = ACTIONS(2681), + [aux_sym_known_hosts_command_token1] = ACTIONS(2681), + [aux_sym_local_command_token1] = ACTIONS(2681), + [aux_sym_local_forward_token1] = ACTIONS(2681), + [aux_sym_log_level_token1] = ACTIONS(2681), + [aux_sym_log_verbose_token1] = ACTIONS(2681), + [aux_sym_macs_token1] = ACTIONS(2681), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2681), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2681), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2681), + [aux_sym_password_authentication_token1] = ACTIONS(2681), + [aux_sym_permit_local_command_token1] = ACTIONS(2681), + [aux_sym_permit_remote_open_token1] = ACTIONS(2681), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2681), + [aux_sym_port_token1] = ACTIONS(2681), + [aux_sym_preferred_authentications_token1] = ACTIONS(2681), + [aux_sym_protocol_token1] = ACTIONS(2681), + [aux_sym_proxy_command_token1] = ACTIONS(2681), + [aux_sym_proxy_jump_token1] = ACTIONS(2681), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2681), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2681), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2681), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2681), + [aux_sym_rekey_limit_token1] = ACTIONS(2681), + [aux_sym_remote_command_token1] = ACTIONS(2681), + [aux_sym_remote_forward_token1] = ACTIONS(2681), + [aux_sym_request_tty_token1] = ACTIONS(2681), + [aux_sym_required_rsa_size_token1] = ACTIONS(2681), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2681), + [aux_sym_security_key_provider_token1] = ACTIONS(2681), + [aux_sym_send_env_token1] = ACTIONS(2681), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2681), + [aux_sym_server_alive_interval_token1] = ACTIONS(2681), + [aux_sym_session_type_token1] = ACTIONS(2681), + [aux_sym_set_env_token1] = ACTIONS(2681), + [aux_sym_stdin_null_token1] = ACTIONS(2681), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2681), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2681), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2681), + [aux_sym_syslog_facility_token1] = ACTIONS(2681), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2681), + [aux_sym_keep_alive_token1] = ACTIONS(2681), + [aux_sym_tag_token1] = ACTIONS(2681), + [aux_sym_tunnel_token1] = ACTIONS(2683), + [aux_sym_tunnel_device_token1] = ACTIONS(2681), + [aux_sym_update_host_keys_token1] = ACTIONS(2681), + [aux_sym_use_keychain_token1] = ACTIONS(2681), + [aux_sym_use_roaming_token1] = ACTIONS(2681), + [aux_sym_user_token1] = ACTIONS(2683), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2681), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2681), + [aux_sym_visual_host_key_token1] = ACTIONS(2681), + [aux_sym_xauth_location_token1] = ACTIONS(2681), }, [378] = { - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2680), - [anon_sym_DQUOTE] = ACTIONS(2682), - [aux_sym_match_token1] = ACTIONS(2678), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2678), - [aux_sym_address_family_token1] = ACTIONS(2678), - [aux_sym_batch_mode_token1] = ACTIONS(2678), - [aux_sym_bind_address_token1] = ACTIONS(2678), - [aux_sym_bind_interface_token1] = ACTIONS(2678), - [aux_sym_canonical_domains_token1] = ACTIONS(2678), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2678), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2678), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2678), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2678), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2678), - [aux_sym_certificate_file_token1] = ACTIONS(2678), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2678), - [aux_sym_channel_timeout_token1] = ACTIONS(2678), - [aux_sym_check_host_ip_token1] = ACTIONS(2678), - [aux_sym_ciphers_token1] = ACTIONS(2678), - [aux_sym_cipher_token1] = ACTIONS(2680), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2678), - [aux_sym_compression_token1] = ACTIONS(2678), - [aux_sym_connection_attempts_token1] = ACTIONS(2678), - [aux_sym_connect_timeout_token1] = ACTIONS(2678), - [aux_sym_control_master_token1] = ACTIONS(2678), - [aux_sym_control_path_token1] = ACTIONS(2678), - [aux_sym_control_persist_token1] = ACTIONS(2678), - [aux_sym_dynamic_forward_token1] = ACTIONS(2678), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2678), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2678), - [aux_sym_escape_char_token1] = ACTIONS(2678), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2678), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2678), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2678), - [aux_sym_forward_agent_token1] = ACTIONS(2678), - [aux_sym_forward_x11_token1] = ACTIONS(2680), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2678), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2678), - [aux_sym_gateway_ports_token1] = ACTIONS(2678), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2678), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2678), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2678), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2678), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2678), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2678), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2678), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2678), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2678), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2678), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2678), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2678), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2678), - [aux_sym_host_key_alias_token1] = ACTIONS(2678), - [aux_sym_hostname_token1] = ACTIONS(2678), - [aux_sym_identities_only_token1] = ACTIONS(2678), - [aux_sym_identity_agent_token1] = ACTIONS(2678), - [aux_sym_identity_file_token1] = ACTIONS(2678), - [aux_sym_ignore_unknown_token1] = ACTIONS(2678), - [aux_sym_include_token1] = ACTIONS(2678), - [aux_sym_ip_qos_token1] = ACTIONS(2678), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2678), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2678), - [aux_sym_kex_algorithms_token1] = ACTIONS(2678), - [aux_sym_known_hosts_command_token1] = ACTIONS(2678), - [aux_sym_local_command_token1] = ACTIONS(2678), - [aux_sym_local_forward_token1] = ACTIONS(2678), - [aux_sym_log_level_token1] = ACTIONS(2678), - [aux_sym_log_verbose_token1] = ACTIONS(2678), - [aux_sym_macs_token1] = ACTIONS(2678), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2678), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2678), - [aux_sym_password_authentication_token1] = ACTIONS(2678), - [aux_sym_permit_local_command_token1] = ACTIONS(2678), - [aux_sym_permit_remote_open_token1] = ACTIONS(2678), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2678), - [aux_sym_port_token1] = ACTIONS(2678), - [aux_sym_preferred_authentications_token1] = ACTIONS(2678), - [aux_sym_protocol_token1] = ACTIONS(2678), - [aux_sym_proxy_command_token1] = ACTIONS(2678), - [aux_sym_proxy_jump_token1] = ACTIONS(2678), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2678), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2678), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2678), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2678), - [aux_sym_rekey_limit_token1] = ACTIONS(2678), - [aux_sym_remote_command_token1] = ACTIONS(2678), - [aux_sym_remote_forward_token1] = ACTIONS(2678), - [aux_sym_request_tty_token1] = ACTIONS(2678), - [aux_sym_required_rsa_size_token1] = ACTIONS(2678), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2678), - [aux_sym_security_key_provider_token1] = ACTIONS(2678), - [aux_sym_send_env_token1] = ACTIONS(2678), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2678), - [aux_sym_server_alive_interval_token1] = ACTIONS(2678), - [aux_sym_session_type_token1] = ACTIONS(2678), - [aux_sym_set_env_token1] = ACTIONS(2678), - [aux_sym_stdin_null_token1] = ACTIONS(2678), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2678), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2678), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2678), - [aux_sym_syslog_facility_token1] = ACTIONS(2678), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2678), - [aux_sym_keep_alive_token1] = ACTIONS(2678), - [aux_sym_tag_token1] = ACTIONS(2678), - [aux_sym_tunnel_token1] = ACTIONS(2680), - [aux_sym_tunnel_device_token1] = ACTIONS(2678), - [aux_sym_update_host_keys_token1] = ACTIONS(2678), - [aux_sym_use_keychain_token1] = ACTIONS(2678), - [aux_sym_use_roaming_token1] = ACTIONS(2678), - [aux_sym_user_token1] = ACTIONS(2680), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2678), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2678), - [aux_sym_visual_host_key_token1] = ACTIONS(2678), - [aux_sym_xauth_location_token1] = ACTIONS(2678), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2689), + [anon_sym_DQUOTE] = ACTIONS(2687), + [aux_sym_match_token1] = ACTIONS(2687), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2687), + [aux_sym_address_family_token1] = ACTIONS(2687), + [aux_sym_batch_mode_token1] = ACTIONS(2687), + [aux_sym_bind_address_token1] = ACTIONS(2687), + [aux_sym_bind_interface_token1] = ACTIONS(2687), + [aux_sym_canonical_domains_token1] = ACTIONS(2687), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2687), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2687), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2687), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2687), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2687), + [aux_sym_certificate_file_token1] = ACTIONS(2687), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2687), + [aux_sym_channel_timeout_token1] = ACTIONS(2687), + [aux_sym_check_host_ip_token1] = ACTIONS(2687), + [aux_sym_ciphers_token1] = ACTIONS(2687), + [aux_sym_cipher_token1] = ACTIONS(2689), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2687), + [aux_sym_compression_token1] = ACTIONS(2687), + [aux_sym_connection_attempts_token1] = ACTIONS(2687), + [aux_sym_connect_timeout_token1] = ACTIONS(2687), + [aux_sym_control_master_token1] = ACTIONS(2687), + [aux_sym_control_path_token1] = ACTIONS(2687), + [aux_sym_control_persist_token1] = ACTIONS(2687), + [aux_sym_dynamic_forward_token1] = ACTIONS(2687), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2687), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2687), + [aux_sym_escape_char_token1] = ACTIONS(2687), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2687), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2687), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2687), + [aux_sym_forward_agent_token1] = ACTIONS(2687), + [aux_sym_forward_x11_token1] = ACTIONS(2689), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2687), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2687), + [aux_sym_gateway_ports_token1] = ACTIONS(2687), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2687), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2687), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2687), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2687), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2687), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2687), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2687), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2687), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2687), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2687), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2687), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2687), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2687), + [aux_sym_host_key_alias_token1] = ACTIONS(2687), + [aux_sym_hostname_token1] = ACTIONS(2687), + [aux_sym_identities_only_token1] = ACTIONS(2687), + [aux_sym_identity_agent_token1] = ACTIONS(2687), + [aux_sym_identity_file_token1] = ACTIONS(2687), + [aux_sym_ignore_unknown_token1] = ACTIONS(2687), + [aux_sym_include_token1] = ACTIONS(2687), + [aux_sym_ip_qos_token1] = ACTIONS(2687), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2687), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2687), + [aux_sym_kex_algorithms_token1] = ACTIONS(2687), + [aux_sym_known_hosts_command_token1] = ACTIONS(2687), + [aux_sym_local_command_token1] = ACTIONS(2687), + [aux_sym_local_forward_token1] = ACTIONS(2687), + [aux_sym_log_level_token1] = ACTIONS(2687), + [aux_sym_log_verbose_token1] = ACTIONS(2687), + [aux_sym_macs_token1] = ACTIONS(2687), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2687), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2687), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2687), + [aux_sym_password_authentication_token1] = ACTIONS(2687), + [aux_sym_permit_local_command_token1] = ACTIONS(2687), + [aux_sym_permit_remote_open_token1] = ACTIONS(2687), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2687), + [aux_sym_port_token1] = ACTIONS(2687), + [aux_sym_preferred_authentications_token1] = ACTIONS(2687), + [aux_sym_protocol_token1] = ACTIONS(2687), + [aux_sym_proxy_command_token1] = ACTIONS(2687), + [aux_sym_proxy_jump_token1] = ACTIONS(2687), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2687), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2687), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2687), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2687), + [aux_sym_rekey_limit_token1] = ACTIONS(2687), + [aux_sym_remote_command_token1] = ACTIONS(2687), + [aux_sym_remote_forward_token1] = ACTIONS(2687), + [aux_sym_request_tty_token1] = ACTIONS(2687), + [aux_sym_required_rsa_size_token1] = ACTIONS(2687), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2687), + [aux_sym_security_key_provider_token1] = ACTIONS(2687), + [aux_sym_send_env_token1] = ACTIONS(2687), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2687), + [aux_sym_server_alive_interval_token1] = ACTIONS(2687), + [aux_sym_session_type_token1] = ACTIONS(2687), + [aux_sym_set_env_token1] = ACTIONS(2687), + [aux_sym_stdin_null_token1] = ACTIONS(2687), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2687), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2687), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2687), + [aux_sym_syslog_facility_token1] = ACTIONS(2687), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2687), + [aux_sym_keep_alive_token1] = ACTIONS(2687), + [aux_sym_tag_token1] = ACTIONS(2687), + [aux_sym_tunnel_token1] = ACTIONS(2689), + [aux_sym_tunnel_device_token1] = ACTIONS(2687), + [aux_sym_update_host_keys_token1] = ACTIONS(2687), + [aux_sym_use_keychain_token1] = ACTIONS(2687), + [aux_sym_use_roaming_token1] = ACTIONS(2687), + [aux_sym_user_token1] = ACTIONS(2689), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2687), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2687), + [aux_sym_visual_host_key_token1] = ACTIONS(2687), + [aux_sym_xauth_location_token1] = ACTIONS(2687), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(2684), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2684), - [aux_sym_match_token1] = ACTIONS(2684), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2684), - [aux_sym_address_family_token1] = ACTIONS(2684), - [aux_sym_batch_mode_token1] = ACTIONS(2684), - [aux_sym_bind_address_token1] = ACTIONS(2684), - [aux_sym_bind_interface_token1] = ACTIONS(2684), - [aux_sym_canonical_domains_token1] = ACTIONS(2684), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2684), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2684), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2684), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2684), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2684), - [aux_sym_certificate_file_token1] = ACTIONS(2684), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2684), - [aux_sym_channel_timeout_token1] = ACTIONS(2684), - [aux_sym_check_host_ip_token1] = ACTIONS(2684), - [aux_sym_ciphers_token1] = ACTIONS(2684), - [aux_sym_cipher_token1] = ACTIONS(2686), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2684), - [aux_sym_compression_token1] = ACTIONS(2684), - [aux_sym_connection_attempts_token1] = ACTIONS(2684), - [aux_sym_connect_timeout_token1] = ACTIONS(2684), - [aux_sym_control_master_token1] = ACTIONS(2684), - [aux_sym_control_path_token1] = ACTIONS(2684), - [aux_sym_control_persist_token1] = ACTIONS(2684), - [aux_sym_dynamic_forward_token1] = ACTIONS(2684), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2684), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2684), - [aux_sym_escape_char_token1] = ACTIONS(2684), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2684), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2684), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2684), - [aux_sym_forward_agent_token1] = ACTIONS(2684), - [aux_sym_forward_x11_token1] = ACTIONS(2686), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2684), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2684), - [aux_sym_gateway_ports_token1] = ACTIONS(2684), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2684), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2684), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2684), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2684), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2684), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2684), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2684), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2684), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2684), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2684), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2684), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2684), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2684), - [aux_sym_host_key_alias_token1] = ACTIONS(2684), - [aux_sym_hostname_token1] = ACTIONS(2684), - [aux_sym_identities_only_token1] = ACTIONS(2684), - [aux_sym_identity_agent_token1] = ACTIONS(2684), - [aux_sym_identity_file_token1] = ACTIONS(2684), - [aux_sym_ignore_unknown_token1] = ACTIONS(2684), - [aux_sym_include_token1] = ACTIONS(2684), - [aux_sym_ip_qos_token1] = ACTIONS(2684), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2684), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2684), - [aux_sym_kex_algorithms_token1] = ACTIONS(2684), - [aux_sym_known_hosts_command_token1] = ACTIONS(2684), - [aux_sym_local_command_token1] = ACTIONS(2684), - [aux_sym_local_forward_token1] = ACTIONS(2684), - [aux_sym_log_level_token1] = ACTIONS(2684), - [aux_sym_log_verbose_token1] = ACTIONS(2684), - [aux_sym_macs_token1] = ACTIONS(2684), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2684), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2684), - [aux_sym_password_authentication_token1] = ACTIONS(2684), - [aux_sym_permit_local_command_token1] = ACTIONS(2684), - [aux_sym_permit_remote_open_token1] = ACTIONS(2684), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2684), - [aux_sym_port_token1] = ACTIONS(2684), - [aux_sym_preferred_authentications_token1] = ACTIONS(2684), - [aux_sym_protocol_token1] = ACTIONS(2684), - [aux_sym_proxy_command_token1] = ACTIONS(2684), - [aux_sym_proxy_jump_token1] = ACTIONS(2684), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2684), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2684), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2684), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2684), - [aux_sym_rekey_limit_token1] = ACTIONS(2684), - [aux_sym_remote_command_token1] = ACTIONS(2684), - [aux_sym_remote_forward_token1] = ACTIONS(2684), - [aux_sym_request_tty_token1] = ACTIONS(2684), - [aux_sym_required_rsa_size_token1] = ACTIONS(2684), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2684), - [aux_sym_security_key_provider_token1] = ACTIONS(2684), - [aux_sym_send_env_token1] = ACTIONS(2684), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2684), - [aux_sym_server_alive_interval_token1] = ACTIONS(2684), - [aux_sym_session_type_token1] = ACTIONS(2684), - [aux_sym_set_env_token1] = ACTIONS(2684), - [aux_sym_stdin_null_token1] = ACTIONS(2684), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2684), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2684), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2684), - [aux_sym_syslog_facility_token1] = ACTIONS(2684), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2684), - [aux_sym_keep_alive_token1] = ACTIONS(2684), - [aux_sym_tag_token1] = ACTIONS(2684), - [aux_sym_tunnel_token1] = ACTIONS(2686), - [aux_sym_tunnel_device_token1] = ACTIONS(2684), - [aux_sym_update_host_keys_token1] = ACTIONS(2684), - [aux_sym_use_keychain_token1] = ACTIONS(2684), - [aux_sym_use_roaming_token1] = ACTIONS(2684), - [aux_sym_user_token1] = ACTIONS(2686), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2684), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2684), - [aux_sym_visual_host_key_token1] = ACTIONS(2684), - [aux_sym_xauth_location_token1] = ACTIONS(2684), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2693), + [anon_sym_DQUOTE] = ACTIONS(2695), + [aux_sym_match_token1] = ACTIONS(2691), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2691), + [aux_sym_address_family_token1] = ACTIONS(2691), + [aux_sym_batch_mode_token1] = ACTIONS(2691), + [aux_sym_bind_address_token1] = ACTIONS(2691), + [aux_sym_bind_interface_token1] = ACTIONS(2691), + [aux_sym_canonical_domains_token1] = ACTIONS(2691), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2691), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2691), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2691), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2691), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2691), + [aux_sym_certificate_file_token1] = ACTIONS(2691), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2691), + [aux_sym_channel_timeout_token1] = ACTIONS(2691), + [aux_sym_check_host_ip_token1] = ACTIONS(2691), + [aux_sym_ciphers_token1] = ACTIONS(2691), + [aux_sym_cipher_token1] = ACTIONS(2693), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2691), + [aux_sym_compression_token1] = ACTIONS(2691), + [aux_sym_connection_attempts_token1] = ACTIONS(2691), + [aux_sym_connect_timeout_token1] = ACTIONS(2691), + [aux_sym_control_master_token1] = ACTIONS(2691), + [aux_sym_control_path_token1] = ACTIONS(2691), + [aux_sym_control_persist_token1] = ACTIONS(2691), + [aux_sym_dynamic_forward_token1] = ACTIONS(2691), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2691), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2691), + [aux_sym_escape_char_token1] = ACTIONS(2691), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2691), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2691), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2691), + [aux_sym_forward_agent_token1] = ACTIONS(2691), + [aux_sym_forward_x11_token1] = ACTIONS(2693), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2691), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2691), + [aux_sym_gateway_ports_token1] = ACTIONS(2691), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2691), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2691), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2691), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2691), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2691), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2691), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2691), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2691), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2691), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2691), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2691), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2691), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2691), + [aux_sym_host_key_alias_token1] = ACTIONS(2691), + [aux_sym_hostname_token1] = ACTIONS(2691), + [aux_sym_identities_only_token1] = ACTIONS(2691), + [aux_sym_identity_agent_token1] = ACTIONS(2691), + [aux_sym_identity_file_token1] = ACTIONS(2691), + [aux_sym_ignore_unknown_token1] = ACTIONS(2691), + [aux_sym_include_token1] = ACTIONS(2691), + [aux_sym_ip_qos_token1] = ACTIONS(2691), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2691), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2691), + [aux_sym_kex_algorithms_token1] = ACTIONS(2691), + [aux_sym_known_hosts_command_token1] = ACTIONS(2691), + [aux_sym_local_command_token1] = ACTIONS(2691), + [aux_sym_local_forward_token1] = ACTIONS(2691), + [aux_sym_log_level_token1] = ACTIONS(2691), + [aux_sym_log_verbose_token1] = ACTIONS(2691), + [aux_sym_macs_token1] = ACTIONS(2691), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2691), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2691), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2691), + [aux_sym_password_authentication_token1] = ACTIONS(2691), + [aux_sym_permit_local_command_token1] = ACTIONS(2691), + [aux_sym_permit_remote_open_token1] = ACTIONS(2691), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2691), + [aux_sym_port_token1] = ACTIONS(2691), + [aux_sym_preferred_authentications_token1] = ACTIONS(2691), + [aux_sym_protocol_token1] = ACTIONS(2691), + [aux_sym_proxy_command_token1] = ACTIONS(2691), + [aux_sym_proxy_jump_token1] = ACTIONS(2691), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2691), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2691), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2691), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2691), + [aux_sym_rekey_limit_token1] = ACTIONS(2691), + [aux_sym_remote_command_token1] = ACTIONS(2691), + [aux_sym_remote_forward_token1] = ACTIONS(2691), + [aux_sym_request_tty_token1] = ACTIONS(2691), + [aux_sym_required_rsa_size_token1] = ACTIONS(2691), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2691), + [aux_sym_security_key_provider_token1] = ACTIONS(2691), + [aux_sym_send_env_token1] = ACTIONS(2691), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2691), + [aux_sym_server_alive_interval_token1] = ACTIONS(2691), + [aux_sym_session_type_token1] = ACTIONS(2691), + [aux_sym_set_env_token1] = ACTIONS(2691), + [aux_sym_stdin_null_token1] = ACTIONS(2691), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2691), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2691), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2691), + [aux_sym_syslog_facility_token1] = ACTIONS(2691), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2691), + [aux_sym_keep_alive_token1] = ACTIONS(2691), + [aux_sym_tag_token1] = ACTIONS(2691), + [aux_sym_tunnel_token1] = ACTIONS(2693), + [aux_sym_tunnel_device_token1] = ACTIONS(2691), + [aux_sym_update_host_keys_token1] = ACTIONS(2691), + [aux_sym_use_keychain_token1] = ACTIONS(2691), + [aux_sym_use_roaming_token1] = ACTIONS(2691), + [aux_sym_user_token1] = ACTIONS(2693), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2691), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2691), + [aux_sym_visual_host_key_token1] = ACTIONS(2691), + [aux_sym_xauth_location_token1] = ACTIONS(2691), }, [380] = { - [ts_builtin_sym_end] = ACTIONS(2688), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2688), - [aux_sym_match_token1] = ACTIONS(2688), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2688), - [aux_sym_address_family_token1] = ACTIONS(2688), - [aux_sym_batch_mode_token1] = ACTIONS(2688), - [aux_sym_bind_address_token1] = ACTIONS(2688), - [aux_sym_bind_interface_token1] = ACTIONS(2688), - [aux_sym_canonical_domains_token1] = ACTIONS(2688), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2688), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2688), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2688), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2688), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2688), - [aux_sym_certificate_file_token1] = ACTIONS(2688), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2688), - [aux_sym_channel_timeout_token1] = ACTIONS(2688), - [aux_sym_check_host_ip_token1] = ACTIONS(2688), - [aux_sym_ciphers_token1] = ACTIONS(2688), - [aux_sym_cipher_token1] = ACTIONS(2690), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2688), - [aux_sym_compression_token1] = ACTIONS(2688), - [aux_sym_connection_attempts_token1] = ACTIONS(2688), - [aux_sym_connect_timeout_token1] = ACTIONS(2688), - [aux_sym_control_master_token1] = ACTIONS(2688), - [aux_sym_control_path_token1] = ACTIONS(2688), - [aux_sym_control_persist_token1] = ACTIONS(2688), - [aux_sym_dynamic_forward_token1] = ACTIONS(2688), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2688), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2688), - [aux_sym_escape_char_token1] = ACTIONS(2688), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2688), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2688), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2688), - [aux_sym_forward_agent_token1] = ACTIONS(2688), - [aux_sym_forward_x11_token1] = ACTIONS(2690), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2688), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2688), - [aux_sym_gateway_ports_token1] = ACTIONS(2688), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2688), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2688), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2688), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2688), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2688), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2688), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2688), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2688), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2688), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2688), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2688), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2688), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2688), - [aux_sym_host_key_alias_token1] = ACTIONS(2688), - [aux_sym_hostname_token1] = ACTIONS(2688), - [aux_sym_identities_only_token1] = ACTIONS(2688), - [aux_sym_identity_agent_token1] = ACTIONS(2688), - [aux_sym_identity_file_token1] = ACTIONS(2688), - [aux_sym_ignore_unknown_token1] = ACTIONS(2688), - [aux_sym_include_token1] = ACTIONS(2688), - [aux_sym_ip_qos_token1] = ACTIONS(2688), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2688), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2688), - [aux_sym_kex_algorithms_token1] = ACTIONS(2688), - [aux_sym_known_hosts_command_token1] = ACTIONS(2688), - [aux_sym_local_command_token1] = ACTIONS(2688), - [aux_sym_local_forward_token1] = ACTIONS(2688), - [aux_sym_log_level_token1] = ACTIONS(2688), - [aux_sym_log_verbose_token1] = ACTIONS(2688), - [aux_sym_macs_token1] = ACTIONS(2688), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2688), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2688), - [aux_sym_password_authentication_token1] = ACTIONS(2688), - [aux_sym_permit_local_command_token1] = ACTIONS(2688), - [aux_sym_permit_remote_open_token1] = ACTIONS(2688), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2688), - [aux_sym_port_token1] = ACTIONS(2688), - [aux_sym_preferred_authentications_token1] = ACTIONS(2688), - [aux_sym_protocol_token1] = ACTIONS(2688), - [aux_sym_proxy_command_token1] = ACTIONS(2688), - [aux_sym_proxy_jump_token1] = ACTIONS(2688), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2688), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2688), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2688), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2688), - [aux_sym_rekey_limit_token1] = ACTIONS(2688), - [aux_sym_remote_command_token1] = ACTIONS(2688), - [aux_sym_remote_forward_token1] = ACTIONS(2688), - [aux_sym_request_tty_token1] = ACTIONS(2688), - [aux_sym_required_rsa_size_token1] = ACTIONS(2688), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2688), - [aux_sym_security_key_provider_token1] = ACTIONS(2688), - [aux_sym_send_env_token1] = ACTIONS(2688), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2688), - [aux_sym_server_alive_interval_token1] = ACTIONS(2688), - [aux_sym_session_type_token1] = ACTIONS(2688), - [aux_sym_set_env_token1] = ACTIONS(2688), - [aux_sym_stdin_null_token1] = ACTIONS(2688), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2688), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2688), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2688), - [aux_sym_syslog_facility_token1] = ACTIONS(2688), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2688), - [aux_sym_keep_alive_token1] = ACTIONS(2688), - [aux_sym_tag_token1] = ACTIONS(2688), - [aux_sym_tunnel_token1] = ACTIONS(2690), - [aux_sym_tunnel_device_token1] = ACTIONS(2688), - [aux_sym_update_host_keys_token1] = ACTIONS(2688), - [aux_sym_use_keychain_token1] = ACTIONS(2688), - [aux_sym_use_roaming_token1] = ACTIONS(2688), - [aux_sym_user_token1] = ACTIONS(2690), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2688), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2688), - [aux_sym_visual_host_key_token1] = ACTIONS(2688), - [aux_sym_xauth_location_token1] = ACTIONS(2688), + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2699), + [anon_sym_DQUOTE] = ACTIONS(2701), + [aux_sym_match_token1] = ACTIONS(2697), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2697), + [aux_sym_address_family_token1] = ACTIONS(2697), + [aux_sym_batch_mode_token1] = ACTIONS(2697), + [aux_sym_bind_address_token1] = ACTIONS(2697), + [aux_sym_bind_interface_token1] = ACTIONS(2697), + [aux_sym_canonical_domains_token1] = ACTIONS(2697), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2697), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2697), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2697), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2697), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2697), + [aux_sym_certificate_file_token1] = ACTIONS(2697), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2697), + [aux_sym_channel_timeout_token1] = ACTIONS(2697), + [aux_sym_check_host_ip_token1] = ACTIONS(2697), + [aux_sym_ciphers_token1] = ACTIONS(2697), + [aux_sym_cipher_token1] = ACTIONS(2699), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2697), + [aux_sym_compression_token1] = ACTIONS(2697), + [aux_sym_connection_attempts_token1] = ACTIONS(2697), + [aux_sym_connect_timeout_token1] = ACTIONS(2697), + [aux_sym_control_master_token1] = ACTIONS(2697), + [aux_sym_control_path_token1] = ACTIONS(2697), + [aux_sym_control_persist_token1] = ACTIONS(2697), + [aux_sym_dynamic_forward_token1] = ACTIONS(2697), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2697), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2697), + [aux_sym_escape_char_token1] = ACTIONS(2697), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2697), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2697), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2697), + [aux_sym_forward_agent_token1] = ACTIONS(2697), + [aux_sym_forward_x11_token1] = ACTIONS(2699), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2697), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2697), + [aux_sym_gateway_ports_token1] = ACTIONS(2697), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2697), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2697), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2697), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2697), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2697), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2697), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2697), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2697), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2697), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2697), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2697), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2697), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2697), + [aux_sym_host_key_alias_token1] = ACTIONS(2697), + [aux_sym_hostname_token1] = ACTIONS(2697), + [aux_sym_identities_only_token1] = ACTIONS(2697), + [aux_sym_identity_agent_token1] = ACTIONS(2697), + [aux_sym_identity_file_token1] = ACTIONS(2697), + [aux_sym_ignore_unknown_token1] = ACTIONS(2697), + [aux_sym_include_token1] = ACTIONS(2697), + [aux_sym_ip_qos_token1] = ACTIONS(2697), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2697), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2697), + [aux_sym_kex_algorithms_token1] = ACTIONS(2697), + [aux_sym_known_hosts_command_token1] = ACTIONS(2697), + [aux_sym_local_command_token1] = ACTIONS(2697), + [aux_sym_local_forward_token1] = ACTIONS(2697), + [aux_sym_log_level_token1] = ACTIONS(2697), + [aux_sym_log_verbose_token1] = ACTIONS(2697), + [aux_sym_macs_token1] = ACTIONS(2697), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2697), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2697), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2697), + [aux_sym_password_authentication_token1] = ACTIONS(2697), + [aux_sym_permit_local_command_token1] = ACTIONS(2697), + [aux_sym_permit_remote_open_token1] = ACTIONS(2697), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2697), + [aux_sym_port_token1] = ACTIONS(2697), + [aux_sym_preferred_authentications_token1] = ACTIONS(2697), + [aux_sym_protocol_token1] = ACTIONS(2697), + [aux_sym_proxy_command_token1] = ACTIONS(2697), + [aux_sym_proxy_jump_token1] = ACTIONS(2697), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2697), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2697), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2697), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2697), + [aux_sym_rekey_limit_token1] = ACTIONS(2697), + [aux_sym_remote_command_token1] = ACTIONS(2697), + [aux_sym_remote_forward_token1] = ACTIONS(2697), + [aux_sym_request_tty_token1] = ACTIONS(2697), + [aux_sym_required_rsa_size_token1] = ACTIONS(2697), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2697), + [aux_sym_security_key_provider_token1] = ACTIONS(2697), + [aux_sym_send_env_token1] = ACTIONS(2697), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2697), + [aux_sym_server_alive_interval_token1] = ACTIONS(2697), + [aux_sym_session_type_token1] = ACTIONS(2697), + [aux_sym_set_env_token1] = ACTIONS(2697), + [aux_sym_stdin_null_token1] = ACTIONS(2697), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2697), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2697), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2697), + [aux_sym_syslog_facility_token1] = ACTIONS(2697), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2697), + [aux_sym_keep_alive_token1] = ACTIONS(2697), + [aux_sym_tag_token1] = ACTIONS(2697), + [aux_sym_tunnel_token1] = ACTIONS(2699), + [aux_sym_tunnel_device_token1] = ACTIONS(2697), + [aux_sym_update_host_keys_token1] = ACTIONS(2697), + [aux_sym_use_keychain_token1] = ACTIONS(2697), + [aux_sym_use_roaming_token1] = ACTIONS(2697), + [aux_sym_user_token1] = ACTIONS(2699), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2697), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2697), + [aux_sym_visual_host_key_token1] = ACTIONS(2697), + [aux_sym_xauth_location_token1] = ACTIONS(2697), }, [381] = { - [ts_builtin_sym_end] = ACTIONS(2692), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2694), - [anon_sym_DQUOTE] = ACTIONS(2696), - [aux_sym_match_token1] = ACTIONS(2692), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2692), - [aux_sym_address_family_token1] = ACTIONS(2692), - [aux_sym_batch_mode_token1] = ACTIONS(2692), - [aux_sym_bind_address_token1] = ACTIONS(2692), - [aux_sym_bind_interface_token1] = ACTIONS(2692), - [aux_sym_canonical_domains_token1] = ACTIONS(2692), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2692), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2692), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2692), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2692), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2692), - [aux_sym_certificate_file_token1] = ACTIONS(2692), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2692), - [aux_sym_channel_timeout_token1] = ACTIONS(2692), - [aux_sym_check_host_ip_token1] = ACTIONS(2692), - [aux_sym_ciphers_token1] = ACTIONS(2692), - [aux_sym_cipher_token1] = ACTIONS(2694), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2692), - [aux_sym_compression_token1] = ACTIONS(2692), - [aux_sym_connection_attempts_token1] = ACTIONS(2692), - [aux_sym_connect_timeout_token1] = ACTIONS(2692), - [aux_sym_control_master_token1] = ACTIONS(2692), - [aux_sym_control_path_token1] = ACTIONS(2692), - [aux_sym_control_persist_token1] = ACTIONS(2692), - [aux_sym_dynamic_forward_token1] = ACTIONS(2692), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2692), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2692), - [aux_sym_escape_char_token1] = ACTIONS(2692), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2692), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2692), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2692), - [aux_sym_forward_agent_token1] = ACTIONS(2692), - [aux_sym_forward_x11_token1] = ACTIONS(2694), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2692), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2692), - [aux_sym_gateway_ports_token1] = ACTIONS(2692), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2692), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2692), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2692), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2692), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2692), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2692), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2692), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2692), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2692), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2692), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2692), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2692), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2692), - [aux_sym_host_key_alias_token1] = ACTIONS(2692), - [aux_sym_hostname_token1] = ACTIONS(2692), - [aux_sym_identities_only_token1] = ACTIONS(2692), - [aux_sym_identity_agent_token1] = ACTIONS(2692), - [aux_sym_identity_file_token1] = ACTIONS(2692), - [aux_sym_ignore_unknown_token1] = ACTIONS(2692), - [aux_sym_include_token1] = ACTIONS(2692), - [aux_sym_ip_qos_token1] = ACTIONS(2692), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2692), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2692), - [aux_sym_kex_algorithms_token1] = ACTIONS(2692), - [aux_sym_known_hosts_command_token1] = ACTIONS(2692), - [aux_sym_local_command_token1] = ACTIONS(2692), - [aux_sym_local_forward_token1] = ACTIONS(2692), - [aux_sym_log_level_token1] = ACTIONS(2692), - [aux_sym_log_verbose_token1] = ACTIONS(2692), - [aux_sym_macs_token1] = ACTIONS(2692), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2692), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2692), - [aux_sym_password_authentication_token1] = ACTIONS(2692), - [aux_sym_permit_local_command_token1] = ACTIONS(2692), - [aux_sym_permit_remote_open_token1] = ACTIONS(2692), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2692), - [aux_sym_port_token1] = ACTIONS(2692), - [aux_sym_preferred_authentications_token1] = ACTIONS(2692), - [aux_sym_protocol_token1] = ACTIONS(2692), - [aux_sym_proxy_command_token1] = ACTIONS(2692), - [aux_sym_proxy_jump_token1] = ACTIONS(2692), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2692), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2692), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2692), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2692), - [aux_sym_rekey_limit_token1] = ACTIONS(2692), - [aux_sym_remote_command_token1] = ACTIONS(2692), - [aux_sym_remote_forward_token1] = ACTIONS(2692), - [aux_sym_request_tty_token1] = ACTIONS(2692), - [aux_sym_required_rsa_size_token1] = ACTIONS(2692), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2692), - [aux_sym_security_key_provider_token1] = ACTIONS(2692), - [aux_sym_send_env_token1] = ACTIONS(2692), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2692), - [aux_sym_server_alive_interval_token1] = ACTIONS(2692), - [aux_sym_session_type_token1] = ACTIONS(2692), - [aux_sym_set_env_token1] = ACTIONS(2692), - [aux_sym_stdin_null_token1] = ACTIONS(2692), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2692), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2692), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2692), - [aux_sym_syslog_facility_token1] = ACTIONS(2692), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2692), - [aux_sym_keep_alive_token1] = ACTIONS(2692), - [aux_sym_tag_token1] = ACTIONS(2692), - [aux_sym_tunnel_token1] = ACTIONS(2694), - [aux_sym_tunnel_device_token1] = ACTIONS(2692), - [aux_sym_update_host_keys_token1] = ACTIONS(2692), - [aux_sym_use_keychain_token1] = ACTIONS(2692), - [aux_sym_use_roaming_token1] = ACTIONS(2692), - [aux_sym_user_token1] = ACTIONS(2694), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2692), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2692), - [aux_sym_visual_host_key_token1] = ACTIONS(2692), - [aux_sym_xauth_location_token1] = ACTIONS(2692), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2705), + [anon_sym_DQUOTE] = ACTIONS(2703), + [aux_sym_match_token1] = ACTIONS(2703), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2703), + [aux_sym_address_family_token1] = ACTIONS(2703), + [aux_sym_batch_mode_token1] = ACTIONS(2703), + [aux_sym_bind_address_token1] = ACTIONS(2703), + [aux_sym_bind_interface_token1] = ACTIONS(2703), + [aux_sym_canonical_domains_token1] = ACTIONS(2703), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2703), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2703), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2703), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2703), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2703), + [aux_sym_certificate_file_token1] = ACTIONS(2703), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2703), + [aux_sym_channel_timeout_token1] = ACTIONS(2703), + [aux_sym_check_host_ip_token1] = ACTIONS(2703), + [aux_sym_ciphers_token1] = ACTIONS(2703), + [aux_sym_cipher_token1] = ACTIONS(2705), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2703), + [aux_sym_compression_token1] = ACTIONS(2703), + [aux_sym_connection_attempts_token1] = ACTIONS(2703), + [aux_sym_connect_timeout_token1] = ACTIONS(2703), + [aux_sym_control_master_token1] = ACTIONS(2703), + [aux_sym_control_path_token1] = ACTIONS(2703), + [aux_sym_control_persist_token1] = ACTIONS(2703), + [aux_sym_dynamic_forward_token1] = ACTIONS(2703), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2703), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2703), + [aux_sym_escape_char_token1] = ACTIONS(2703), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2703), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2703), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2703), + [aux_sym_forward_agent_token1] = ACTIONS(2703), + [aux_sym_forward_x11_token1] = ACTIONS(2705), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2703), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2703), + [aux_sym_gateway_ports_token1] = ACTIONS(2703), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2703), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2703), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2703), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2703), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2703), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2703), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2703), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2703), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2703), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2703), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2703), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2703), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2703), + [aux_sym_host_key_alias_token1] = ACTIONS(2703), + [aux_sym_hostname_token1] = ACTIONS(2703), + [aux_sym_identities_only_token1] = ACTIONS(2703), + [aux_sym_identity_agent_token1] = ACTIONS(2703), + [aux_sym_identity_file_token1] = ACTIONS(2703), + [aux_sym_ignore_unknown_token1] = ACTIONS(2703), + [aux_sym_include_token1] = ACTIONS(2703), + [aux_sym_ip_qos_token1] = ACTIONS(2703), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2703), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2703), + [aux_sym_kex_algorithms_token1] = ACTIONS(2703), + [aux_sym_known_hosts_command_token1] = ACTIONS(2703), + [aux_sym_local_command_token1] = ACTIONS(2703), + [aux_sym_local_forward_token1] = ACTIONS(2703), + [aux_sym_log_level_token1] = ACTIONS(2703), + [aux_sym_log_verbose_token1] = ACTIONS(2703), + [aux_sym_macs_token1] = ACTIONS(2703), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2703), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2703), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2703), + [aux_sym_password_authentication_token1] = ACTIONS(2703), + [aux_sym_permit_local_command_token1] = ACTIONS(2703), + [aux_sym_permit_remote_open_token1] = ACTIONS(2703), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2703), + [aux_sym_port_token1] = ACTIONS(2703), + [aux_sym_preferred_authentications_token1] = ACTIONS(2703), + [aux_sym_protocol_token1] = ACTIONS(2703), + [aux_sym_proxy_command_token1] = ACTIONS(2703), + [aux_sym_proxy_jump_token1] = ACTIONS(2703), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2703), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2703), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2703), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2703), + [aux_sym_rekey_limit_token1] = ACTIONS(2703), + [aux_sym_remote_command_token1] = ACTIONS(2703), + [aux_sym_remote_forward_token1] = ACTIONS(2703), + [aux_sym_request_tty_token1] = ACTIONS(2703), + [aux_sym_required_rsa_size_token1] = ACTIONS(2703), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2703), + [aux_sym_security_key_provider_token1] = ACTIONS(2703), + [aux_sym_send_env_token1] = ACTIONS(2703), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2703), + [aux_sym_server_alive_interval_token1] = ACTIONS(2703), + [aux_sym_session_type_token1] = ACTIONS(2703), + [aux_sym_set_env_token1] = ACTIONS(2703), + [aux_sym_stdin_null_token1] = ACTIONS(2703), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2703), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2703), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2703), + [aux_sym_syslog_facility_token1] = ACTIONS(2703), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2703), + [aux_sym_keep_alive_token1] = ACTIONS(2703), + [aux_sym_tag_token1] = ACTIONS(2703), + [aux_sym_tunnel_token1] = ACTIONS(2705), + [aux_sym_tunnel_device_token1] = ACTIONS(2703), + [aux_sym_update_host_keys_token1] = ACTIONS(2703), + [aux_sym_use_keychain_token1] = ACTIONS(2703), + [aux_sym_use_roaming_token1] = ACTIONS(2703), + [aux_sym_user_token1] = ACTIONS(2705), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2703), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2703), + [aux_sym_visual_host_key_token1] = ACTIONS(2703), + [aux_sym_xauth_location_token1] = ACTIONS(2703), }, [382] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2700), - [anon_sym_DQUOTE] = ACTIONS(2702), - [aux_sym_match_token1] = ACTIONS(2698), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2698), - [aux_sym_address_family_token1] = ACTIONS(2698), - [aux_sym_batch_mode_token1] = ACTIONS(2698), - [aux_sym_bind_address_token1] = ACTIONS(2698), - [aux_sym_bind_interface_token1] = ACTIONS(2698), - [aux_sym_canonical_domains_token1] = ACTIONS(2698), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2698), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2698), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2698), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2698), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2698), - [aux_sym_certificate_file_token1] = ACTIONS(2698), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2698), - [aux_sym_channel_timeout_token1] = ACTIONS(2698), - [aux_sym_check_host_ip_token1] = ACTIONS(2698), - [aux_sym_ciphers_token1] = ACTIONS(2698), - [aux_sym_cipher_token1] = ACTIONS(2700), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2698), - [aux_sym_compression_token1] = ACTIONS(2698), - [aux_sym_connection_attempts_token1] = ACTIONS(2698), - [aux_sym_connect_timeout_token1] = ACTIONS(2698), - [aux_sym_control_master_token1] = ACTIONS(2698), - [aux_sym_control_path_token1] = ACTIONS(2698), - [aux_sym_control_persist_token1] = ACTIONS(2698), - [aux_sym_dynamic_forward_token1] = ACTIONS(2698), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2698), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2698), - [aux_sym_escape_char_token1] = ACTIONS(2698), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2698), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2698), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2698), - [aux_sym_forward_agent_token1] = ACTIONS(2698), - [aux_sym_forward_x11_token1] = ACTIONS(2700), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2698), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2698), - [aux_sym_gateway_ports_token1] = ACTIONS(2698), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2698), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2698), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2698), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2698), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2698), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2698), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2698), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2698), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2698), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2698), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2698), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2698), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2698), - [aux_sym_host_key_alias_token1] = ACTIONS(2698), - [aux_sym_hostname_token1] = ACTIONS(2698), - [aux_sym_identities_only_token1] = ACTIONS(2698), - [aux_sym_identity_agent_token1] = ACTIONS(2698), - [aux_sym_identity_file_token1] = ACTIONS(2698), - [aux_sym_ignore_unknown_token1] = ACTIONS(2698), - [aux_sym_include_token1] = ACTIONS(2698), - [aux_sym_ip_qos_token1] = ACTIONS(2698), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2698), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2698), - [aux_sym_kex_algorithms_token1] = ACTIONS(2698), - [aux_sym_known_hosts_command_token1] = ACTIONS(2698), - [aux_sym_local_command_token1] = ACTIONS(2698), - [aux_sym_local_forward_token1] = ACTIONS(2698), - [aux_sym_log_level_token1] = ACTIONS(2698), - [aux_sym_log_verbose_token1] = ACTIONS(2698), - [aux_sym_macs_token1] = ACTIONS(2698), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2698), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2698), - [aux_sym_password_authentication_token1] = ACTIONS(2698), - [aux_sym_permit_local_command_token1] = ACTIONS(2698), - [aux_sym_permit_remote_open_token1] = ACTIONS(2698), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2698), - [aux_sym_port_token1] = ACTIONS(2698), - [aux_sym_preferred_authentications_token1] = ACTIONS(2698), - [aux_sym_protocol_token1] = ACTIONS(2698), - [aux_sym_proxy_command_token1] = ACTIONS(2698), - [aux_sym_proxy_jump_token1] = ACTIONS(2698), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2698), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2698), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2698), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2698), - [aux_sym_rekey_limit_token1] = ACTIONS(2698), - [aux_sym_remote_command_token1] = ACTIONS(2698), - [aux_sym_remote_forward_token1] = ACTIONS(2698), - [aux_sym_request_tty_token1] = ACTIONS(2698), - [aux_sym_required_rsa_size_token1] = ACTIONS(2698), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2698), - [aux_sym_security_key_provider_token1] = ACTIONS(2698), - [aux_sym_send_env_token1] = ACTIONS(2698), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2698), - [aux_sym_server_alive_interval_token1] = ACTIONS(2698), - [aux_sym_session_type_token1] = ACTIONS(2698), - [aux_sym_set_env_token1] = ACTIONS(2698), - [aux_sym_stdin_null_token1] = ACTIONS(2698), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2698), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2698), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2698), - [aux_sym_syslog_facility_token1] = ACTIONS(2698), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2698), - [aux_sym_keep_alive_token1] = ACTIONS(2698), - [aux_sym_tag_token1] = ACTIONS(2698), - [aux_sym_tunnel_token1] = ACTIONS(2700), - [aux_sym_tunnel_device_token1] = ACTIONS(2698), - [aux_sym_update_host_keys_token1] = ACTIONS(2698), - [aux_sym_use_keychain_token1] = ACTIONS(2698), - [aux_sym_use_roaming_token1] = ACTIONS(2698), - [aux_sym_user_token1] = ACTIONS(2700), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2698), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2698), - [aux_sym_visual_host_key_token1] = ACTIONS(2698), - [aux_sym_xauth_location_token1] = ACTIONS(2698), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2709), + [anon_sym_DQUOTE] = ACTIONS(2707), + [aux_sym_match_token1] = ACTIONS(2707), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2707), + [aux_sym_address_family_token1] = ACTIONS(2707), + [aux_sym_batch_mode_token1] = ACTIONS(2707), + [aux_sym_bind_address_token1] = ACTIONS(2707), + [aux_sym_bind_interface_token1] = ACTIONS(2707), + [aux_sym_canonical_domains_token1] = ACTIONS(2707), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2707), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2707), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2707), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2707), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2707), + [aux_sym_certificate_file_token1] = ACTIONS(2707), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2707), + [aux_sym_channel_timeout_token1] = ACTIONS(2707), + [aux_sym_check_host_ip_token1] = ACTIONS(2707), + [aux_sym_ciphers_token1] = ACTIONS(2707), + [aux_sym_cipher_token1] = ACTIONS(2709), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2707), + [aux_sym_compression_token1] = ACTIONS(2707), + [aux_sym_connection_attempts_token1] = ACTIONS(2707), + [aux_sym_connect_timeout_token1] = ACTIONS(2707), + [aux_sym_control_master_token1] = ACTIONS(2707), + [aux_sym_control_path_token1] = ACTIONS(2707), + [aux_sym_control_persist_token1] = ACTIONS(2707), + [aux_sym_dynamic_forward_token1] = ACTIONS(2707), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2707), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2707), + [aux_sym_escape_char_token1] = ACTIONS(2707), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2707), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2707), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2707), + [aux_sym_forward_agent_token1] = ACTIONS(2707), + [aux_sym_forward_x11_token1] = ACTIONS(2709), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2707), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2707), + [aux_sym_gateway_ports_token1] = ACTIONS(2707), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2707), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2707), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2707), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2707), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2707), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2707), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2707), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2707), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2707), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2707), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2707), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2707), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2707), + [aux_sym_host_key_alias_token1] = ACTIONS(2707), + [aux_sym_hostname_token1] = ACTIONS(2707), + [aux_sym_identities_only_token1] = ACTIONS(2707), + [aux_sym_identity_agent_token1] = ACTIONS(2707), + [aux_sym_identity_file_token1] = ACTIONS(2707), + [aux_sym_ignore_unknown_token1] = ACTIONS(2707), + [aux_sym_include_token1] = ACTIONS(2707), + [aux_sym_ip_qos_token1] = ACTIONS(2707), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2707), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2707), + [aux_sym_kex_algorithms_token1] = ACTIONS(2707), + [aux_sym_known_hosts_command_token1] = ACTIONS(2707), + [aux_sym_local_command_token1] = ACTIONS(2707), + [aux_sym_local_forward_token1] = ACTIONS(2707), + [aux_sym_log_level_token1] = ACTIONS(2707), + [aux_sym_log_verbose_token1] = ACTIONS(2707), + [aux_sym_macs_token1] = ACTIONS(2707), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2707), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2707), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2707), + [aux_sym_password_authentication_token1] = ACTIONS(2707), + [aux_sym_permit_local_command_token1] = ACTIONS(2707), + [aux_sym_permit_remote_open_token1] = ACTIONS(2707), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2707), + [aux_sym_port_token1] = ACTIONS(2707), + [aux_sym_preferred_authentications_token1] = ACTIONS(2707), + [aux_sym_protocol_token1] = ACTIONS(2707), + [aux_sym_proxy_command_token1] = ACTIONS(2707), + [aux_sym_proxy_jump_token1] = ACTIONS(2707), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2707), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2707), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2707), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2707), + [aux_sym_rekey_limit_token1] = ACTIONS(2707), + [aux_sym_remote_command_token1] = ACTIONS(2707), + [aux_sym_remote_forward_token1] = ACTIONS(2707), + [aux_sym_request_tty_token1] = ACTIONS(2707), + [aux_sym_required_rsa_size_token1] = ACTIONS(2707), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2707), + [aux_sym_security_key_provider_token1] = ACTIONS(2707), + [aux_sym_send_env_token1] = ACTIONS(2707), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2707), + [aux_sym_server_alive_interval_token1] = ACTIONS(2707), + [aux_sym_session_type_token1] = ACTIONS(2707), + [aux_sym_set_env_token1] = ACTIONS(2707), + [aux_sym_stdin_null_token1] = ACTIONS(2707), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2707), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2707), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2707), + [aux_sym_syslog_facility_token1] = ACTIONS(2707), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2707), + [aux_sym_keep_alive_token1] = ACTIONS(2707), + [aux_sym_tag_token1] = ACTIONS(2707), + [aux_sym_tunnel_token1] = ACTIONS(2709), + [aux_sym_tunnel_device_token1] = ACTIONS(2707), + [aux_sym_update_host_keys_token1] = ACTIONS(2707), + [aux_sym_use_keychain_token1] = ACTIONS(2707), + [aux_sym_use_roaming_token1] = ACTIONS(2707), + [aux_sym_user_token1] = ACTIONS(2709), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2707), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2707), + [aux_sym_visual_host_key_token1] = ACTIONS(2707), + [aux_sym_xauth_location_token1] = ACTIONS(2707), }, [383] = { - [ts_builtin_sym_end] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2706), - [anon_sym_DQUOTE] = ACTIONS(2704), - [aux_sym_match_token1] = ACTIONS(2704), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2704), - [aux_sym_address_family_token1] = ACTIONS(2704), - [aux_sym_batch_mode_token1] = ACTIONS(2704), - [aux_sym_bind_address_token1] = ACTIONS(2704), - [aux_sym_bind_interface_token1] = ACTIONS(2704), - [aux_sym_canonical_domains_token1] = ACTIONS(2704), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2704), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2704), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2704), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2704), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2704), - [aux_sym_certificate_file_token1] = ACTIONS(2704), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2704), - [aux_sym_channel_timeout_token1] = ACTIONS(2704), - [aux_sym_check_host_ip_token1] = ACTIONS(2704), - [aux_sym_ciphers_token1] = ACTIONS(2704), - [aux_sym_cipher_token1] = ACTIONS(2706), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2704), - [aux_sym_compression_token1] = ACTIONS(2704), - [aux_sym_connection_attempts_token1] = ACTIONS(2704), - [aux_sym_connect_timeout_token1] = ACTIONS(2704), - [aux_sym_control_master_token1] = ACTIONS(2704), - [aux_sym_control_path_token1] = ACTIONS(2704), - [aux_sym_control_persist_token1] = ACTIONS(2704), - [aux_sym_dynamic_forward_token1] = ACTIONS(2704), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2704), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2704), - [aux_sym_escape_char_token1] = ACTIONS(2704), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2704), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2704), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2704), - [aux_sym_forward_agent_token1] = ACTIONS(2704), - [aux_sym_forward_x11_token1] = ACTIONS(2706), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2704), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2704), - [aux_sym_gateway_ports_token1] = ACTIONS(2704), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2704), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2704), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2704), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2704), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2704), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2704), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2704), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2704), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2704), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2704), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2704), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2704), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2704), - [aux_sym_host_key_alias_token1] = ACTIONS(2704), - [aux_sym_hostname_token1] = ACTIONS(2704), - [aux_sym_identities_only_token1] = ACTIONS(2704), - [aux_sym_identity_agent_token1] = ACTIONS(2704), - [aux_sym_identity_file_token1] = ACTIONS(2704), - [aux_sym_ignore_unknown_token1] = ACTIONS(2704), - [aux_sym_include_token1] = ACTIONS(2704), - [aux_sym_ip_qos_token1] = ACTIONS(2704), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2704), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2704), - [aux_sym_kex_algorithms_token1] = ACTIONS(2704), - [aux_sym_known_hosts_command_token1] = ACTIONS(2704), - [aux_sym_local_command_token1] = ACTIONS(2704), - [aux_sym_local_forward_token1] = ACTIONS(2704), - [aux_sym_log_level_token1] = ACTIONS(2704), - [aux_sym_log_verbose_token1] = ACTIONS(2704), - [aux_sym_macs_token1] = ACTIONS(2704), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2704), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2704), - [aux_sym_password_authentication_token1] = ACTIONS(2704), - [aux_sym_permit_local_command_token1] = ACTIONS(2704), - [aux_sym_permit_remote_open_token1] = ACTIONS(2704), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2704), - [aux_sym_port_token1] = ACTIONS(2704), - [aux_sym_preferred_authentications_token1] = ACTIONS(2704), - [aux_sym_protocol_token1] = ACTIONS(2704), - [aux_sym_proxy_command_token1] = ACTIONS(2704), - [aux_sym_proxy_jump_token1] = ACTIONS(2704), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2704), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2704), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2704), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2704), - [aux_sym_rekey_limit_token1] = ACTIONS(2704), - [aux_sym_remote_command_token1] = ACTIONS(2704), - [aux_sym_remote_forward_token1] = ACTIONS(2704), - [aux_sym_request_tty_token1] = ACTIONS(2704), - [aux_sym_required_rsa_size_token1] = ACTIONS(2704), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2704), - [aux_sym_security_key_provider_token1] = ACTIONS(2704), - [aux_sym_send_env_token1] = ACTIONS(2704), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2704), - [aux_sym_server_alive_interval_token1] = ACTIONS(2704), - [aux_sym_session_type_token1] = ACTIONS(2704), - [aux_sym_set_env_token1] = ACTIONS(2704), - [aux_sym_stdin_null_token1] = ACTIONS(2704), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2704), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2704), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2704), - [aux_sym_syslog_facility_token1] = ACTIONS(2704), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2704), - [aux_sym_keep_alive_token1] = ACTIONS(2704), - [aux_sym_tag_token1] = ACTIONS(2704), - [aux_sym_tunnel_token1] = ACTIONS(2706), - [aux_sym_tunnel_device_token1] = ACTIONS(2704), - [aux_sym_update_host_keys_token1] = ACTIONS(2704), - [aux_sym_use_keychain_token1] = ACTIONS(2704), - [aux_sym_use_roaming_token1] = ACTIONS(2704), - [aux_sym_user_token1] = ACTIONS(2706), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2704), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2704), - [aux_sym_visual_host_key_token1] = ACTIONS(2704), - [aux_sym_xauth_location_token1] = ACTIONS(2704), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2713), + [anon_sym_DQUOTE] = ACTIONS(2715), + [aux_sym_match_token1] = ACTIONS(2711), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2711), + [aux_sym_address_family_token1] = ACTIONS(2711), + [aux_sym_batch_mode_token1] = ACTIONS(2711), + [aux_sym_bind_address_token1] = ACTIONS(2711), + [aux_sym_bind_interface_token1] = ACTIONS(2711), + [aux_sym_canonical_domains_token1] = ACTIONS(2711), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2711), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2711), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2711), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2711), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2711), + [aux_sym_certificate_file_token1] = ACTIONS(2711), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2711), + [aux_sym_channel_timeout_token1] = ACTIONS(2711), + [aux_sym_check_host_ip_token1] = ACTIONS(2711), + [aux_sym_ciphers_token1] = ACTIONS(2711), + [aux_sym_cipher_token1] = ACTIONS(2713), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2711), + [aux_sym_compression_token1] = ACTIONS(2711), + [aux_sym_connection_attempts_token1] = ACTIONS(2711), + [aux_sym_connect_timeout_token1] = ACTIONS(2711), + [aux_sym_control_master_token1] = ACTIONS(2711), + [aux_sym_control_path_token1] = ACTIONS(2711), + [aux_sym_control_persist_token1] = ACTIONS(2711), + [aux_sym_dynamic_forward_token1] = ACTIONS(2711), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2711), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2711), + [aux_sym_escape_char_token1] = ACTIONS(2711), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2711), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2711), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2711), + [aux_sym_forward_agent_token1] = ACTIONS(2711), + [aux_sym_forward_x11_token1] = ACTIONS(2713), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2711), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2711), + [aux_sym_gateway_ports_token1] = ACTIONS(2711), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2711), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2711), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2711), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2711), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2711), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2711), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2711), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2711), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2711), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2711), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2711), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2711), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2711), + [aux_sym_host_key_alias_token1] = ACTIONS(2711), + [aux_sym_hostname_token1] = ACTIONS(2711), + [aux_sym_identities_only_token1] = ACTIONS(2711), + [aux_sym_identity_agent_token1] = ACTIONS(2711), + [aux_sym_identity_file_token1] = ACTIONS(2711), + [aux_sym_ignore_unknown_token1] = ACTIONS(2711), + [aux_sym_include_token1] = ACTIONS(2711), + [aux_sym_ip_qos_token1] = ACTIONS(2711), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2711), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2711), + [aux_sym_kex_algorithms_token1] = ACTIONS(2711), + [aux_sym_known_hosts_command_token1] = ACTIONS(2711), + [aux_sym_local_command_token1] = ACTIONS(2711), + [aux_sym_local_forward_token1] = ACTIONS(2711), + [aux_sym_log_level_token1] = ACTIONS(2711), + [aux_sym_log_verbose_token1] = ACTIONS(2711), + [aux_sym_macs_token1] = ACTIONS(2711), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2711), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2711), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2711), + [aux_sym_password_authentication_token1] = ACTIONS(2711), + [aux_sym_permit_local_command_token1] = ACTIONS(2711), + [aux_sym_permit_remote_open_token1] = ACTIONS(2711), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2711), + [aux_sym_port_token1] = ACTIONS(2711), + [aux_sym_preferred_authentications_token1] = ACTIONS(2711), + [aux_sym_protocol_token1] = ACTIONS(2711), + [aux_sym_proxy_command_token1] = ACTIONS(2711), + [aux_sym_proxy_jump_token1] = ACTIONS(2711), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2711), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2711), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2711), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2711), + [aux_sym_rekey_limit_token1] = ACTIONS(2711), + [aux_sym_remote_command_token1] = ACTIONS(2711), + [aux_sym_remote_forward_token1] = ACTIONS(2711), + [aux_sym_request_tty_token1] = ACTIONS(2711), + [aux_sym_required_rsa_size_token1] = ACTIONS(2711), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2711), + [aux_sym_security_key_provider_token1] = ACTIONS(2711), + [aux_sym_send_env_token1] = ACTIONS(2711), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2711), + [aux_sym_server_alive_interval_token1] = ACTIONS(2711), + [aux_sym_session_type_token1] = ACTIONS(2711), + [aux_sym_set_env_token1] = ACTIONS(2711), + [aux_sym_stdin_null_token1] = ACTIONS(2711), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2711), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2711), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2711), + [aux_sym_syslog_facility_token1] = ACTIONS(2711), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2711), + [aux_sym_keep_alive_token1] = ACTIONS(2711), + [aux_sym_tag_token1] = ACTIONS(2711), + [aux_sym_tunnel_token1] = ACTIONS(2713), + [aux_sym_tunnel_device_token1] = ACTIONS(2711), + [aux_sym_update_host_keys_token1] = ACTIONS(2711), + [aux_sym_use_keychain_token1] = ACTIONS(2711), + [aux_sym_use_roaming_token1] = ACTIONS(2711), + [aux_sym_user_token1] = ACTIONS(2713), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2711), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2711), + [aux_sym_visual_host_key_token1] = ACTIONS(2711), + [aux_sym_xauth_location_token1] = ACTIONS(2711), }, [384] = { - [ts_builtin_sym_end] = ACTIONS(2708), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2710), - [anon_sym_DQUOTE] = ACTIONS(2708), - [aux_sym_match_token1] = ACTIONS(2708), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2708), - [aux_sym_address_family_token1] = ACTIONS(2708), - [aux_sym_batch_mode_token1] = ACTIONS(2708), - [aux_sym_bind_address_token1] = ACTIONS(2708), - [aux_sym_bind_interface_token1] = ACTIONS(2708), - [aux_sym_canonical_domains_token1] = ACTIONS(2708), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2708), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2708), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2708), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2708), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2708), - [aux_sym_certificate_file_token1] = ACTIONS(2708), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2708), - [aux_sym_channel_timeout_token1] = ACTIONS(2708), - [aux_sym_check_host_ip_token1] = ACTIONS(2708), - [aux_sym_ciphers_token1] = ACTIONS(2708), - [aux_sym_cipher_token1] = ACTIONS(2710), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2708), - [aux_sym_compression_token1] = ACTIONS(2708), - [aux_sym_connection_attempts_token1] = ACTIONS(2708), - [aux_sym_connect_timeout_token1] = ACTIONS(2708), - [aux_sym_control_master_token1] = ACTIONS(2708), - [aux_sym_control_path_token1] = ACTIONS(2708), - [aux_sym_control_persist_token1] = ACTIONS(2708), - [aux_sym_dynamic_forward_token1] = ACTIONS(2708), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2708), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2708), - [aux_sym_escape_char_token1] = ACTIONS(2708), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2708), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2708), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2708), - [aux_sym_forward_agent_token1] = ACTIONS(2708), - [aux_sym_forward_x11_token1] = ACTIONS(2710), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2708), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2708), - [aux_sym_gateway_ports_token1] = ACTIONS(2708), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2708), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2708), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2708), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2708), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2708), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2708), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2708), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2708), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2708), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2708), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2708), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2708), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2708), - [aux_sym_host_key_alias_token1] = ACTIONS(2708), - [aux_sym_hostname_token1] = ACTIONS(2708), - [aux_sym_identities_only_token1] = ACTIONS(2708), - [aux_sym_identity_agent_token1] = ACTIONS(2708), - [aux_sym_identity_file_token1] = ACTIONS(2708), - [aux_sym_ignore_unknown_token1] = ACTIONS(2708), - [aux_sym_include_token1] = ACTIONS(2708), - [aux_sym_ip_qos_token1] = ACTIONS(2708), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2708), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2708), - [aux_sym_kex_algorithms_token1] = ACTIONS(2708), - [aux_sym_known_hosts_command_token1] = ACTIONS(2708), - [aux_sym_local_command_token1] = ACTIONS(2708), - [aux_sym_local_forward_token1] = ACTIONS(2708), - [aux_sym_log_level_token1] = ACTIONS(2708), - [aux_sym_log_verbose_token1] = ACTIONS(2708), - [aux_sym_macs_token1] = ACTIONS(2708), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2708), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2708), - [aux_sym_password_authentication_token1] = ACTIONS(2708), - [aux_sym_permit_local_command_token1] = ACTIONS(2708), - [aux_sym_permit_remote_open_token1] = ACTIONS(2708), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2708), - [aux_sym_port_token1] = ACTIONS(2708), - [aux_sym_preferred_authentications_token1] = ACTIONS(2708), - [aux_sym_protocol_token1] = ACTIONS(2708), - [aux_sym_proxy_command_token1] = ACTIONS(2708), - [aux_sym_proxy_jump_token1] = ACTIONS(2708), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2708), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2708), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2708), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2708), - [aux_sym_rekey_limit_token1] = ACTIONS(2708), - [aux_sym_remote_command_token1] = ACTIONS(2708), - [aux_sym_remote_forward_token1] = ACTIONS(2708), - [aux_sym_request_tty_token1] = ACTIONS(2708), - [aux_sym_required_rsa_size_token1] = ACTIONS(2708), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2708), - [aux_sym_security_key_provider_token1] = ACTIONS(2708), - [aux_sym_send_env_token1] = ACTIONS(2708), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2708), - [aux_sym_server_alive_interval_token1] = ACTIONS(2708), - [aux_sym_session_type_token1] = ACTIONS(2708), - [aux_sym_set_env_token1] = ACTIONS(2708), - [aux_sym_stdin_null_token1] = ACTIONS(2708), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2708), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2708), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2708), - [aux_sym_syslog_facility_token1] = ACTIONS(2708), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2708), - [aux_sym_keep_alive_token1] = ACTIONS(2708), - [aux_sym_tag_token1] = ACTIONS(2708), - [aux_sym_tunnel_token1] = ACTIONS(2710), - [aux_sym_tunnel_device_token1] = ACTIONS(2708), - [aux_sym_update_host_keys_token1] = ACTIONS(2708), - [aux_sym_use_keychain_token1] = ACTIONS(2708), - [aux_sym_use_roaming_token1] = ACTIONS(2708), - [aux_sym_user_token1] = ACTIONS(2710), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2708), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2708), - [aux_sym_visual_host_key_token1] = ACTIONS(2708), - [aux_sym_xauth_location_token1] = ACTIONS(2708), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2719), + [anon_sym_DQUOTE] = ACTIONS(2721), + [aux_sym_match_token1] = ACTIONS(2717), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2717), + [aux_sym_address_family_token1] = ACTIONS(2717), + [aux_sym_batch_mode_token1] = ACTIONS(2717), + [aux_sym_bind_address_token1] = ACTIONS(2717), + [aux_sym_bind_interface_token1] = ACTIONS(2717), + [aux_sym_canonical_domains_token1] = ACTIONS(2717), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2717), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2717), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2717), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2717), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2717), + [aux_sym_certificate_file_token1] = ACTIONS(2717), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2717), + [aux_sym_channel_timeout_token1] = ACTIONS(2717), + [aux_sym_check_host_ip_token1] = ACTIONS(2717), + [aux_sym_ciphers_token1] = ACTIONS(2717), + [aux_sym_cipher_token1] = ACTIONS(2719), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2717), + [aux_sym_compression_token1] = ACTIONS(2717), + [aux_sym_connection_attempts_token1] = ACTIONS(2717), + [aux_sym_connect_timeout_token1] = ACTIONS(2717), + [aux_sym_control_master_token1] = ACTIONS(2717), + [aux_sym_control_path_token1] = ACTIONS(2717), + [aux_sym_control_persist_token1] = ACTIONS(2717), + [aux_sym_dynamic_forward_token1] = ACTIONS(2717), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2717), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2717), + [aux_sym_escape_char_token1] = ACTIONS(2717), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2717), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2717), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2717), + [aux_sym_forward_agent_token1] = ACTIONS(2717), + [aux_sym_forward_x11_token1] = ACTIONS(2719), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2717), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2717), + [aux_sym_gateway_ports_token1] = ACTIONS(2717), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2717), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2717), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2717), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2717), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2717), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2717), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2717), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2717), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2717), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2717), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2717), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2717), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2717), + [aux_sym_host_key_alias_token1] = ACTIONS(2717), + [aux_sym_hostname_token1] = ACTIONS(2717), + [aux_sym_identities_only_token1] = ACTIONS(2717), + [aux_sym_identity_agent_token1] = ACTIONS(2717), + [aux_sym_identity_file_token1] = ACTIONS(2717), + [aux_sym_ignore_unknown_token1] = ACTIONS(2717), + [aux_sym_include_token1] = ACTIONS(2717), + [aux_sym_ip_qos_token1] = ACTIONS(2717), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2717), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2717), + [aux_sym_kex_algorithms_token1] = ACTIONS(2717), + [aux_sym_known_hosts_command_token1] = ACTIONS(2717), + [aux_sym_local_command_token1] = ACTIONS(2717), + [aux_sym_local_forward_token1] = ACTIONS(2717), + [aux_sym_log_level_token1] = ACTIONS(2717), + [aux_sym_log_verbose_token1] = ACTIONS(2717), + [aux_sym_macs_token1] = ACTIONS(2717), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2717), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2717), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2717), + [aux_sym_password_authentication_token1] = ACTIONS(2717), + [aux_sym_permit_local_command_token1] = ACTIONS(2717), + [aux_sym_permit_remote_open_token1] = ACTIONS(2717), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2717), + [aux_sym_port_token1] = ACTIONS(2717), + [aux_sym_preferred_authentications_token1] = ACTIONS(2717), + [aux_sym_protocol_token1] = ACTIONS(2717), + [aux_sym_proxy_command_token1] = ACTIONS(2717), + [aux_sym_proxy_jump_token1] = ACTIONS(2717), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2717), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2717), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2717), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2717), + [aux_sym_rekey_limit_token1] = ACTIONS(2717), + [aux_sym_remote_command_token1] = ACTIONS(2717), + [aux_sym_remote_forward_token1] = ACTIONS(2717), + [aux_sym_request_tty_token1] = ACTIONS(2717), + [aux_sym_required_rsa_size_token1] = ACTIONS(2717), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2717), + [aux_sym_security_key_provider_token1] = ACTIONS(2717), + [aux_sym_send_env_token1] = ACTIONS(2717), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2717), + [aux_sym_server_alive_interval_token1] = ACTIONS(2717), + [aux_sym_session_type_token1] = ACTIONS(2717), + [aux_sym_set_env_token1] = ACTIONS(2717), + [aux_sym_stdin_null_token1] = ACTIONS(2717), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2717), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2717), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2717), + [aux_sym_syslog_facility_token1] = ACTIONS(2717), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2717), + [aux_sym_keep_alive_token1] = ACTIONS(2717), + [aux_sym_tag_token1] = ACTIONS(2717), + [aux_sym_tunnel_token1] = ACTIONS(2719), + [aux_sym_tunnel_device_token1] = ACTIONS(2717), + [aux_sym_update_host_keys_token1] = ACTIONS(2717), + [aux_sym_use_keychain_token1] = ACTIONS(2717), + [aux_sym_use_roaming_token1] = ACTIONS(2717), + [aux_sym_user_token1] = ACTIONS(2719), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2717), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2717), + [aux_sym_visual_host_key_token1] = ACTIONS(2717), + [aux_sym_xauth_location_token1] = ACTIONS(2717), }, [385] = { - [ts_builtin_sym_end] = ACTIONS(2712), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2714), - [anon_sym_DQUOTE] = ACTIONS(2716), - [aux_sym_match_token1] = ACTIONS(2712), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2712), - [aux_sym_address_family_token1] = ACTIONS(2712), - [aux_sym_batch_mode_token1] = ACTIONS(2712), - [aux_sym_bind_address_token1] = ACTIONS(2712), - [aux_sym_bind_interface_token1] = ACTIONS(2712), - [aux_sym_canonical_domains_token1] = ACTIONS(2712), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2712), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2712), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2712), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2712), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2712), - [aux_sym_certificate_file_token1] = ACTIONS(2712), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2712), - [aux_sym_channel_timeout_token1] = ACTIONS(2712), - [aux_sym_check_host_ip_token1] = ACTIONS(2712), - [aux_sym_ciphers_token1] = ACTIONS(2712), - [aux_sym_cipher_token1] = ACTIONS(2714), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2712), - [aux_sym_compression_token1] = ACTIONS(2712), - [aux_sym_connection_attempts_token1] = ACTIONS(2712), - [aux_sym_connect_timeout_token1] = ACTIONS(2712), - [aux_sym_control_master_token1] = ACTIONS(2712), - [aux_sym_control_path_token1] = ACTIONS(2712), - [aux_sym_control_persist_token1] = ACTIONS(2712), - [aux_sym_dynamic_forward_token1] = ACTIONS(2712), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2712), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2712), - [aux_sym_escape_char_token1] = ACTIONS(2712), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2712), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2712), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2712), - [aux_sym_forward_agent_token1] = ACTIONS(2712), - [aux_sym_forward_x11_token1] = ACTIONS(2714), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2712), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2712), - [aux_sym_gateway_ports_token1] = ACTIONS(2712), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2712), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2712), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2712), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2712), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2712), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2712), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2712), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2712), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2712), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2712), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2712), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2712), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2712), - [aux_sym_host_key_alias_token1] = ACTIONS(2712), - [aux_sym_hostname_token1] = ACTIONS(2712), - [aux_sym_identities_only_token1] = ACTIONS(2712), - [aux_sym_identity_agent_token1] = ACTIONS(2712), - [aux_sym_identity_file_token1] = ACTIONS(2712), - [aux_sym_ignore_unknown_token1] = ACTIONS(2712), - [aux_sym_include_token1] = ACTIONS(2712), - [aux_sym_ip_qos_token1] = ACTIONS(2712), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2712), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2712), - [aux_sym_kex_algorithms_token1] = ACTIONS(2712), - [aux_sym_known_hosts_command_token1] = ACTIONS(2712), - [aux_sym_local_command_token1] = ACTIONS(2712), - [aux_sym_local_forward_token1] = ACTIONS(2712), - [aux_sym_log_level_token1] = ACTIONS(2712), - [aux_sym_log_verbose_token1] = ACTIONS(2712), - [aux_sym_macs_token1] = ACTIONS(2712), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2712), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2712), - [aux_sym_password_authentication_token1] = ACTIONS(2712), - [aux_sym_permit_local_command_token1] = ACTIONS(2712), - [aux_sym_permit_remote_open_token1] = ACTIONS(2712), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2712), - [aux_sym_port_token1] = ACTIONS(2712), - [aux_sym_preferred_authentications_token1] = ACTIONS(2712), - [aux_sym_protocol_token1] = ACTIONS(2712), - [aux_sym_proxy_command_token1] = ACTIONS(2712), - [aux_sym_proxy_jump_token1] = ACTIONS(2712), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2712), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2712), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2712), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2712), - [aux_sym_rekey_limit_token1] = ACTIONS(2712), - [aux_sym_remote_command_token1] = ACTIONS(2712), - [aux_sym_remote_forward_token1] = ACTIONS(2712), - [aux_sym_request_tty_token1] = ACTIONS(2712), - [aux_sym_required_rsa_size_token1] = ACTIONS(2712), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2712), - [aux_sym_security_key_provider_token1] = ACTIONS(2712), - [aux_sym_send_env_token1] = ACTIONS(2712), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2712), - [aux_sym_server_alive_interval_token1] = ACTIONS(2712), - [aux_sym_session_type_token1] = ACTIONS(2712), - [aux_sym_set_env_token1] = ACTIONS(2712), - [aux_sym_stdin_null_token1] = ACTIONS(2712), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2712), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2712), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2712), - [aux_sym_syslog_facility_token1] = ACTIONS(2712), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2712), - [aux_sym_keep_alive_token1] = ACTIONS(2712), - [aux_sym_tag_token1] = ACTIONS(2712), - [aux_sym_tunnel_token1] = ACTIONS(2714), - [aux_sym_tunnel_device_token1] = ACTIONS(2712), - [aux_sym_update_host_keys_token1] = ACTIONS(2712), - [aux_sym_use_keychain_token1] = ACTIONS(2712), - [aux_sym_use_roaming_token1] = ACTIONS(2712), - [aux_sym_user_token1] = ACTIONS(2714), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2712), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2712), - [aux_sym_visual_host_key_token1] = ACTIONS(2712), - [aux_sym_xauth_location_token1] = ACTIONS(2712), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2725), + [anon_sym_DQUOTE] = ACTIONS(2723), + [aux_sym_match_token1] = ACTIONS(2723), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2723), + [aux_sym_address_family_token1] = ACTIONS(2723), + [aux_sym_batch_mode_token1] = ACTIONS(2723), + [aux_sym_bind_address_token1] = ACTIONS(2723), + [aux_sym_bind_interface_token1] = ACTIONS(2723), + [aux_sym_canonical_domains_token1] = ACTIONS(2723), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2723), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2723), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2723), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2723), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2723), + [aux_sym_certificate_file_token1] = ACTIONS(2723), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2723), + [aux_sym_channel_timeout_token1] = ACTIONS(2723), + [aux_sym_check_host_ip_token1] = ACTIONS(2723), + [aux_sym_ciphers_token1] = ACTIONS(2723), + [aux_sym_cipher_token1] = ACTIONS(2725), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2723), + [aux_sym_compression_token1] = ACTIONS(2723), + [aux_sym_connection_attempts_token1] = ACTIONS(2723), + [aux_sym_connect_timeout_token1] = ACTIONS(2723), + [aux_sym_control_master_token1] = ACTIONS(2723), + [aux_sym_control_path_token1] = ACTIONS(2723), + [aux_sym_control_persist_token1] = ACTIONS(2723), + [aux_sym_dynamic_forward_token1] = ACTIONS(2723), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2723), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2723), + [aux_sym_escape_char_token1] = ACTIONS(2723), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2723), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2723), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2723), + [aux_sym_forward_agent_token1] = ACTIONS(2723), + [aux_sym_forward_x11_token1] = ACTIONS(2725), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2723), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2723), + [aux_sym_gateway_ports_token1] = ACTIONS(2723), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2723), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2723), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2723), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2723), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2723), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2723), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2723), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2723), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2723), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2723), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2723), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2723), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2723), + [aux_sym_host_key_alias_token1] = ACTIONS(2723), + [aux_sym_hostname_token1] = ACTIONS(2723), + [aux_sym_identities_only_token1] = ACTIONS(2723), + [aux_sym_identity_agent_token1] = ACTIONS(2723), + [aux_sym_identity_file_token1] = ACTIONS(2723), + [aux_sym_ignore_unknown_token1] = ACTIONS(2723), + [aux_sym_include_token1] = ACTIONS(2723), + [aux_sym_ip_qos_token1] = ACTIONS(2723), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2723), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2723), + [aux_sym_kex_algorithms_token1] = ACTIONS(2723), + [aux_sym_known_hosts_command_token1] = ACTIONS(2723), + [aux_sym_local_command_token1] = ACTIONS(2723), + [aux_sym_local_forward_token1] = ACTIONS(2723), + [aux_sym_log_level_token1] = ACTIONS(2723), + [aux_sym_log_verbose_token1] = ACTIONS(2723), + [aux_sym_macs_token1] = ACTIONS(2723), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2723), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2723), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2723), + [aux_sym_password_authentication_token1] = ACTIONS(2723), + [aux_sym_permit_local_command_token1] = ACTIONS(2723), + [aux_sym_permit_remote_open_token1] = ACTIONS(2723), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2723), + [aux_sym_port_token1] = ACTIONS(2723), + [aux_sym_preferred_authentications_token1] = ACTIONS(2723), + [aux_sym_protocol_token1] = ACTIONS(2723), + [aux_sym_proxy_command_token1] = ACTIONS(2723), + [aux_sym_proxy_jump_token1] = ACTIONS(2723), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2723), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2723), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2723), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2723), + [aux_sym_rekey_limit_token1] = ACTIONS(2723), + [aux_sym_remote_command_token1] = ACTIONS(2723), + [aux_sym_remote_forward_token1] = ACTIONS(2723), + [aux_sym_request_tty_token1] = ACTIONS(2723), + [aux_sym_required_rsa_size_token1] = ACTIONS(2723), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2723), + [aux_sym_security_key_provider_token1] = ACTIONS(2723), + [aux_sym_send_env_token1] = ACTIONS(2723), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2723), + [aux_sym_server_alive_interval_token1] = ACTIONS(2723), + [aux_sym_session_type_token1] = ACTIONS(2723), + [aux_sym_set_env_token1] = ACTIONS(2723), + [aux_sym_stdin_null_token1] = ACTIONS(2723), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2723), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2723), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2723), + [aux_sym_syslog_facility_token1] = ACTIONS(2723), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2723), + [aux_sym_keep_alive_token1] = ACTIONS(2723), + [aux_sym_tag_token1] = ACTIONS(2723), + [aux_sym_tunnel_token1] = ACTIONS(2725), + [aux_sym_tunnel_device_token1] = ACTIONS(2723), + [aux_sym_update_host_keys_token1] = ACTIONS(2723), + [aux_sym_use_keychain_token1] = ACTIONS(2723), + [aux_sym_use_roaming_token1] = ACTIONS(2723), + [aux_sym_user_token1] = ACTIONS(2725), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2723), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2723), + [aux_sym_visual_host_key_token1] = ACTIONS(2723), + [aux_sym_xauth_location_token1] = ACTIONS(2723), }, [386] = { - [ts_builtin_sym_end] = ACTIONS(2718), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2720), - [anon_sym_DQUOTE] = ACTIONS(2718), - [aux_sym_match_token1] = ACTIONS(2718), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2718), - [aux_sym_address_family_token1] = ACTIONS(2718), - [aux_sym_batch_mode_token1] = ACTIONS(2718), - [aux_sym_bind_address_token1] = ACTIONS(2718), - [aux_sym_bind_interface_token1] = ACTIONS(2718), - [aux_sym_canonical_domains_token1] = ACTIONS(2718), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2718), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2718), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2718), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2718), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2718), - [aux_sym_certificate_file_token1] = ACTIONS(2718), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2718), - [aux_sym_channel_timeout_token1] = ACTIONS(2718), - [aux_sym_check_host_ip_token1] = ACTIONS(2718), - [aux_sym_ciphers_token1] = ACTIONS(2718), - [aux_sym_cipher_token1] = ACTIONS(2720), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2718), - [aux_sym_compression_token1] = ACTIONS(2718), - [aux_sym_connection_attempts_token1] = ACTIONS(2718), - [aux_sym_connect_timeout_token1] = ACTIONS(2718), - [aux_sym_control_master_token1] = ACTIONS(2718), - [aux_sym_control_path_token1] = ACTIONS(2718), - [aux_sym_control_persist_token1] = ACTIONS(2718), - [aux_sym_dynamic_forward_token1] = ACTIONS(2718), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2718), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2718), - [aux_sym_escape_char_token1] = ACTIONS(2718), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2718), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2718), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2718), - [aux_sym_forward_agent_token1] = ACTIONS(2718), - [aux_sym_forward_x11_token1] = ACTIONS(2720), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2718), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2718), - [aux_sym_gateway_ports_token1] = ACTIONS(2718), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2718), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2718), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2718), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2718), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2718), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2718), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2718), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2718), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2718), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2718), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2718), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2718), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2718), - [aux_sym_host_key_alias_token1] = ACTIONS(2718), - [aux_sym_hostname_token1] = ACTIONS(2718), - [aux_sym_identities_only_token1] = ACTIONS(2718), - [aux_sym_identity_agent_token1] = ACTIONS(2718), - [aux_sym_identity_file_token1] = ACTIONS(2718), - [aux_sym_ignore_unknown_token1] = ACTIONS(2718), - [aux_sym_include_token1] = ACTIONS(2718), - [aux_sym_ip_qos_token1] = ACTIONS(2718), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2718), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2718), - [aux_sym_kex_algorithms_token1] = ACTIONS(2718), - [aux_sym_known_hosts_command_token1] = ACTIONS(2718), - [aux_sym_local_command_token1] = ACTIONS(2718), - [aux_sym_local_forward_token1] = ACTIONS(2718), - [aux_sym_log_level_token1] = ACTIONS(2718), - [aux_sym_log_verbose_token1] = ACTIONS(2718), - [aux_sym_macs_token1] = ACTIONS(2718), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2718), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2718), - [aux_sym_password_authentication_token1] = ACTIONS(2718), - [aux_sym_permit_local_command_token1] = ACTIONS(2718), - [aux_sym_permit_remote_open_token1] = ACTIONS(2718), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2718), - [aux_sym_port_token1] = ACTIONS(2718), - [aux_sym_preferred_authentications_token1] = ACTIONS(2718), - [aux_sym_protocol_token1] = ACTIONS(2718), - [aux_sym_proxy_command_token1] = ACTIONS(2718), - [aux_sym_proxy_jump_token1] = ACTIONS(2718), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2718), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2718), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2718), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2718), - [aux_sym_rekey_limit_token1] = ACTIONS(2718), - [aux_sym_remote_command_token1] = ACTIONS(2718), - [aux_sym_remote_forward_token1] = ACTIONS(2718), - [aux_sym_request_tty_token1] = ACTIONS(2718), - [aux_sym_required_rsa_size_token1] = ACTIONS(2718), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2718), - [aux_sym_security_key_provider_token1] = ACTIONS(2718), - [aux_sym_send_env_token1] = ACTIONS(2718), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2718), - [aux_sym_server_alive_interval_token1] = ACTIONS(2718), - [aux_sym_session_type_token1] = ACTIONS(2718), - [aux_sym_set_env_token1] = ACTIONS(2718), - [aux_sym_stdin_null_token1] = ACTIONS(2718), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2718), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2718), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2718), - [aux_sym_syslog_facility_token1] = ACTIONS(2718), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2718), - [aux_sym_keep_alive_token1] = ACTIONS(2718), - [aux_sym_tag_token1] = ACTIONS(2718), - [aux_sym_tunnel_token1] = ACTIONS(2720), - [aux_sym_tunnel_device_token1] = ACTIONS(2718), - [aux_sym_update_host_keys_token1] = ACTIONS(2718), - [aux_sym_use_keychain_token1] = ACTIONS(2718), - [aux_sym_use_roaming_token1] = ACTIONS(2718), - [aux_sym_user_token1] = ACTIONS(2720), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2718), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2718), - [aux_sym_visual_host_key_token1] = ACTIONS(2718), - [aux_sym_xauth_location_token1] = ACTIONS(2718), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2729), + [anon_sym_DQUOTE] = ACTIONS(2727), + [aux_sym_match_token1] = ACTIONS(2727), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2727), + [aux_sym_address_family_token1] = ACTIONS(2727), + [aux_sym_batch_mode_token1] = ACTIONS(2727), + [aux_sym_bind_address_token1] = ACTIONS(2727), + [aux_sym_bind_interface_token1] = ACTIONS(2727), + [aux_sym_canonical_domains_token1] = ACTIONS(2727), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2727), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2727), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2727), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2727), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2727), + [aux_sym_certificate_file_token1] = ACTIONS(2727), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2727), + [aux_sym_channel_timeout_token1] = ACTIONS(2727), + [aux_sym_check_host_ip_token1] = ACTIONS(2727), + [aux_sym_ciphers_token1] = ACTIONS(2727), + [aux_sym_cipher_token1] = ACTIONS(2729), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2727), + [aux_sym_compression_token1] = ACTIONS(2727), + [aux_sym_connection_attempts_token1] = ACTIONS(2727), + [aux_sym_connect_timeout_token1] = ACTIONS(2727), + [aux_sym_control_master_token1] = ACTIONS(2727), + [aux_sym_control_path_token1] = ACTIONS(2727), + [aux_sym_control_persist_token1] = ACTIONS(2727), + [aux_sym_dynamic_forward_token1] = ACTIONS(2727), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2727), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2727), + [aux_sym_escape_char_token1] = ACTIONS(2727), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2727), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2727), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2727), + [aux_sym_forward_agent_token1] = ACTIONS(2727), + [aux_sym_forward_x11_token1] = ACTIONS(2729), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2727), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2727), + [aux_sym_gateway_ports_token1] = ACTIONS(2727), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2727), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2727), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2727), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2727), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2727), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2727), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2727), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2727), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2727), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2727), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2727), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2727), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2727), + [aux_sym_host_key_alias_token1] = ACTIONS(2727), + [aux_sym_hostname_token1] = ACTIONS(2727), + [aux_sym_identities_only_token1] = ACTIONS(2727), + [aux_sym_identity_agent_token1] = ACTIONS(2727), + [aux_sym_identity_file_token1] = ACTIONS(2727), + [aux_sym_ignore_unknown_token1] = ACTIONS(2727), + [aux_sym_include_token1] = ACTIONS(2727), + [aux_sym_ip_qos_token1] = ACTIONS(2727), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2727), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2727), + [aux_sym_kex_algorithms_token1] = ACTIONS(2727), + [aux_sym_known_hosts_command_token1] = ACTIONS(2727), + [aux_sym_local_command_token1] = ACTIONS(2727), + [aux_sym_local_forward_token1] = ACTIONS(2727), + [aux_sym_log_level_token1] = ACTIONS(2727), + [aux_sym_log_verbose_token1] = ACTIONS(2727), + [aux_sym_macs_token1] = ACTIONS(2727), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2727), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2727), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2727), + [aux_sym_password_authentication_token1] = ACTIONS(2727), + [aux_sym_permit_local_command_token1] = ACTIONS(2727), + [aux_sym_permit_remote_open_token1] = ACTIONS(2727), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2727), + [aux_sym_port_token1] = ACTIONS(2727), + [aux_sym_preferred_authentications_token1] = ACTIONS(2727), + [aux_sym_protocol_token1] = ACTIONS(2727), + [aux_sym_proxy_command_token1] = ACTIONS(2727), + [aux_sym_proxy_jump_token1] = ACTIONS(2727), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2727), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2727), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2727), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2727), + [aux_sym_rekey_limit_token1] = ACTIONS(2727), + [aux_sym_remote_command_token1] = ACTIONS(2727), + [aux_sym_remote_forward_token1] = ACTIONS(2727), + [aux_sym_request_tty_token1] = ACTIONS(2727), + [aux_sym_required_rsa_size_token1] = ACTIONS(2727), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2727), + [aux_sym_security_key_provider_token1] = ACTIONS(2727), + [aux_sym_send_env_token1] = ACTIONS(2727), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2727), + [aux_sym_server_alive_interval_token1] = ACTIONS(2727), + [aux_sym_session_type_token1] = ACTIONS(2727), + [aux_sym_set_env_token1] = ACTIONS(2727), + [aux_sym_stdin_null_token1] = ACTIONS(2727), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2727), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2727), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2727), + [aux_sym_syslog_facility_token1] = ACTIONS(2727), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2727), + [aux_sym_keep_alive_token1] = ACTIONS(2727), + [aux_sym_tag_token1] = ACTIONS(2727), + [aux_sym_tunnel_token1] = ACTIONS(2729), + [aux_sym_tunnel_device_token1] = ACTIONS(2727), + [aux_sym_update_host_keys_token1] = ACTIONS(2727), + [aux_sym_use_keychain_token1] = ACTIONS(2727), + [aux_sym_use_roaming_token1] = ACTIONS(2727), + [aux_sym_user_token1] = ACTIONS(2729), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2727), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2727), + [aux_sym_visual_host_key_token1] = ACTIONS(2727), + [aux_sym_xauth_location_token1] = ACTIONS(2727), }, [387] = { - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(2726), - [aux_sym_match_token1] = ACTIONS(2722), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2722), - [aux_sym_address_family_token1] = ACTIONS(2722), - [aux_sym_batch_mode_token1] = ACTIONS(2722), - [aux_sym_bind_address_token1] = ACTIONS(2722), - [aux_sym_bind_interface_token1] = ACTIONS(2722), - [aux_sym_canonical_domains_token1] = ACTIONS(2722), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2722), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2722), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2722), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2722), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2722), - [aux_sym_certificate_file_token1] = ACTIONS(2722), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2722), - [aux_sym_channel_timeout_token1] = ACTIONS(2722), - [aux_sym_check_host_ip_token1] = ACTIONS(2722), - [aux_sym_ciphers_token1] = ACTIONS(2722), - [aux_sym_cipher_token1] = ACTIONS(2724), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2722), - [aux_sym_compression_token1] = ACTIONS(2722), - [aux_sym_connection_attempts_token1] = ACTIONS(2722), - [aux_sym_connect_timeout_token1] = ACTIONS(2722), - [aux_sym_control_master_token1] = ACTIONS(2722), - [aux_sym_control_path_token1] = ACTIONS(2722), - [aux_sym_control_persist_token1] = ACTIONS(2722), - [aux_sym_dynamic_forward_token1] = ACTIONS(2722), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2722), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2722), - [aux_sym_escape_char_token1] = ACTIONS(2722), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2722), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2722), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2722), - [aux_sym_forward_agent_token1] = ACTIONS(2722), - [aux_sym_forward_x11_token1] = ACTIONS(2724), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2722), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2722), - [aux_sym_gateway_ports_token1] = ACTIONS(2722), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2722), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2722), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2722), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2722), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2722), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2722), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2722), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2722), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2722), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2722), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2722), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2722), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2722), - [aux_sym_host_key_alias_token1] = ACTIONS(2722), - [aux_sym_hostname_token1] = ACTIONS(2722), - [aux_sym_identities_only_token1] = ACTIONS(2722), - [aux_sym_identity_agent_token1] = ACTIONS(2722), - [aux_sym_identity_file_token1] = ACTIONS(2722), - [aux_sym_ignore_unknown_token1] = ACTIONS(2722), - [aux_sym_include_token1] = ACTIONS(2722), - [aux_sym_ip_qos_token1] = ACTIONS(2722), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2722), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2722), - [aux_sym_kex_algorithms_token1] = ACTIONS(2722), - [aux_sym_known_hosts_command_token1] = ACTIONS(2722), - [aux_sym_local_command_token1] = ACTIONS(2722), - [aux_sym_local_forward_token1] = ACTIONS(2722), - [aux_sym_log_level_token1] = ACTIONS(2722), - [aux_sym_log_verbose_token1] = ACTIONS(2722), - [aux_sym_macs_token1] = ACTIONS(2722), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2722), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2722), - [aux_sym_password_authentication_token1] = ACTIONS(2722), - [aux_sym_permit_local_command_token1] = ACTIONS(2722), - [aux_sym_permit_remote_open_token1] = ACTIONS(2722), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2722), - [aux_sym_port_token1] = ACTIONS(2722), - [aux_sym_preferred_authentications_token1] = ACTIONS(2722), - [aux_sym_protocol_token1] = ACTIONS(2722), - [aux_sym_proxy_command_token1] = ACTIONS(2722), - [aux_sym_proxy_jump_token1] = ACTIONS(2722), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2722), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2722), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2722), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2722), - [aux_sym_rekey_limit_token1] = ACTIONS(2722), - [aux_sym_remote_command_token1] = ACTIONS(2722), - [aux_sym_remote_forward_token1] = ACTIONS(2722), - [aux_sym_request_tty_token1] = ACTIONS(2722), - [aux_sym_required_rsa_size_token1] = ACTIONS(2722), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2722), - [aux_sym_security_key_provider_token1] = ACTIONS(2722), - [aux_sym_send_env_token1] = ACTIONS(2722), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2722), - [aux_sym_server_alive_interval_token1] = ACTIONS(2722), - [aux_sym_session_type_token1] = ACTIONS(2722), - [aux_sym_set_env_token1] = ACTIONS(2722), - [aux_sym_stdin_null_token1] = ACTIONS(2722), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2722), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2722), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2722), - [aux_sym_syslog_facility_token1] = ACTIONS(2722), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2722), - [aux_sym_keep_alive_token1] = ACTIONS(2722), - [aux_sym_tag_token1] = ACTIONS(2722), - [aux_sym_tunnel_token1] = ACTIONS(2724), - [aux_sym_tunnel_device_token1] = ACTIONS(2722), - [aux_sym_update_host_keys_token1] = ACTIONS(2722), - [aux_sym_use_keychain_token1] = ACTIONS(2722), - [aux_sym_use_roaming_token1] = ACTIONS(2722), - [aux_sym_user_token1] = ACTIONS(2724), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2722), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2722), - [aux_sym_visual_host_key_token1] = ACTIONS(2722), - [aux_sym_xauth_location_token1] = ACTIONS(2722), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2733), + [anon_sym_DQUOTE] = ACTIONS(2735), + [aux_sym_match_token1] = ACTIONS(2731), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2731), + [aux_sym_address_family_token1] = ACTIONS(2731), + [aux_sym_batch_mode_token1] = ACTIONS(2731), + [aux_sym_bind_address_token1] = ACTIONS(2731), + [aux_sym_bind_interface_token1] = ACTIONS(2731), + [aux_sym_canonical_domains_token1] = ACTIONS(2731), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2731), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2731), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2731), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2731), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2731), + [aux_sym_certificate_file_token1] = ACTIONS(2731), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2731), + [aux_sym_channel_timeout_token1] = ACTIONS(2731), + [aux_sym_check_host_ip_token1] = ACTIONS(2731), + [aux_sym_ciphers_token1] = ACTIONS(2731), + [aux_sym_cipher_token1] = ACTIONS(2733), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2731), + [aux_sym_compression_token1] = ACTIONS(2731), + [aux_sym_connection_attempts_token1] = ACTIONS(2731), + [aux_sym_connect_timeout_token1] = ACTIONS(2731), + [aux_sym_control_master_token1] = ACTIONS(2731), + [aux_sym_control_path_token1] = ACTIONS(2731), + [aux_sym_control_persist_token1] = ACTIONS(2731), + [aux_sym_dynamic_forward_token1] = ACTIONS(2731), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2731), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2731), + [aux_sym_escape_char_token1] = ACTIONS(2731), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2731), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2731), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2731), + [aux_sym_forward_agent_token1] = ACTIONS(2731), + [aux_sym_forward_x11_token1] = ACTIONS(2733), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2731), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2731), + [aux_sym_gateway_ports_token1] = ACTIONS(2731), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2731), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2731), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2731), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2731), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2731), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2731), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2731), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2731), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2731), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2731), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2731), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2731), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2731), + [aux_sym_host_key_alias_token1] = ACTIONS(2731), + [aux_sym_hostname_token1] = ACTIONS(2731), + [aux_sym_identities_only_token1] = ACTIONS(2731), + [aux_sym_identity_agent_token1] = ACTIONS(2731), + [aux_sym_identity_file_token1] = ACTIONS(2731), + [aux_sym_ignore_unknown_token1] = ACTIONS(2731), + [aux_sym_include_token1] = ACTIONS(2731), + [aux_sym_ip_qos_token1] = ACTIONS(2731), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2731), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2731), + [aux_sym_kex_algorithms_token1] = ACTIONS(2731), + [aux_sym_known_hosts_command_token1] = ACTIONS(2731), + [aux_sym_local_command_token1] = ACTIONS(2731), + [aux_sym_local_forward_token1] = ACTIONS(2731), + [aux_sym_log_level_token1] = ACTIONS(2731), + [aux_sym_log_verbose_token1] = ACTIONS(2731), + [aux_sym_macs_token1] = ACTIONS(2731), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2731), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2731), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2731), + [aux_sym_password_authentication_token1] = ACTIONS(2731), + [aux_sym_permit_local_command_token1] = ACTIONS(2731), + [aux_sym_permit_remote_open_token1] = ACTIONS(2731), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2731), + [aux_sym_port_token1] = ACTIONS(2731), + [aux_sym_preferred_authentications_token1] = ACTIONS(2731), + [aux_sym_protocol_token1] = ACTIONS(2731), + [aux_sym_proxy_command_token1] = ACTIONS(2731), + [aux_sym_proxy_jump_token1] = ACTIONS(2731), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2731), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2731), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2731), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2731), + [aux_sym_rekey_limit_token1] = ACTIONS(2731), + [aux_sym_remote_command_token1] = ACTIONS(2731), + [aux_sym_remote_forward_token1] = ACTIONS(2731), + [aux_sym_request_tty_token1] = ACTIONS(2731), + [aux_sym_required_rsa_size_token1] = ACTIONS(2731), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2731), + [aux_sym_security_key_provider_token1] = ACTIONS(2731), + [aux_sym_send_env_token1] = ACTIONS(2731), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2731), + [aux_sym_server_alive_interval_token1] = ACTIONS(2731), + [aux_sym_session_type_token1] = ACTIONS(2731), + [aux_sym_set_env_token1] = ACTIONS(2731), + [aux_sym_stdin_null_token1] = ACTIONS(2731), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2731), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2731), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2731), + [aux_sym_syslog_facility_token1] = ACTIONS(2731), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2731), + [aux_sym_keep_alive_token1] = ACTIONS(2731), + [aux_sym_tag_token1] = ACTIONS(2731), + [aux_sym_tunnel_token1] = ACTIONS(2733), + [aux_sym_tunnel_device_token1] = ACTIONS(2731), + [aux_sym_update_host_keys_token1] = ACTIONS(2731), + [aux_sym_use_keychain_token1] = ACTIONS(2731), + [aux_sym_use_roaming_token1] = ACTIONS(2731), + [aux_sym_user_token1] = ACTIONS(2733), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2731), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2731), + [aux_sym_visual_host_key_token1] = ACTIONS(2731), + [aux_sym_xauth_location_token1] = ACTIONS(2731), }, [388] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2730), - [anon_sym_DQUOTE] = ACTIONS(2728), - [aux_sym_match_token1] = ACTIONS(2728), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2728), - [aux_sym_address_family_token1] = ACTIONS(2728), - [aux_sym_batch_mode_token1] = ACTIONS(2728), - [aux_sym_bind_address_token1] = ACTIONS(2728), - [aux_sym_bind_interface_token1] = ACTIONS(2728), - [aux_sym_canonical_domains_token1] = ACTIONS(2728), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2728), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2728), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2728), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2728), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2728), - [aux_sym_certificate_file_token1] = ACTIONS(2728), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2728), - [aux_sym_channel_timeout_token1] = ACTIONS(2728), - [aux_sym_check_host_ip_token1] = ACTIONS(2728), - [aux_sym_ciphers_token1] = ACTIONS(2728), - [aux_sym_cipher_token1] = ACTIONS(2730), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2728), - [aux_sym_compression_token1] = ACTIONS(2728), - [aux_sym_connection_attempts_token1] = ACTIONS(2728), - [aux_sym_connect_timeout_token1] = ACTIONS(2728), - [aux_sym_control_master_token1] = ACTIONS(2728), - [aux_sym_control_path_token1] = ACTIONS(2728), - [aux_sym_control_persist_token1] = ACTIONS(2728), - [aux_sym_dynamic_forward_token1] = ACTIONS(2728), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2728), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2728), - [aux_sym_escape_char_token1] = ACTIONS(2728), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2728), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2728), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2728), - [aux_sym_forward_agent_token1] = ACTIONS(2728), - [aux_sym_forward_x11_token1] = ACTIONS(2730), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2728), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2728), - [aux_sym_gateway_ports_token1] = ACTIONS(2728), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2728), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2728), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2728), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2728), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2728), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2728), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2728), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2728), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2728), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2728), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2728), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2728), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2728), - [aux_sym_host_key_alias_token1] = ACTIONS(2728), - [aux_sym_hostname_token1] = ACTIONS(2728), - [aux_sym_identities_only_token1] = ACTIONS(2728), - [aux_sym_identity_agent_token1] = ACTIONS(2728), - [aux_sym_identity_file_token1] = ACTIONS(2728), - [aux_sym_ignore_unknown_token1] = ACTIONS(2728), - [aux_sym_include_token1] = ACTIONS(2728), - [aux_sym_ip_qos_token1] = ACTIONS(2728), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2728), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2728), - [aux_sym_kex_algorithms_token1] = ACTIONS(2728), - [aux_sym_known_hosts_command_token1] = ACTIONS(2728), - [aux_sym_local_command_token1] = ACTIONS(2728), - [aux_sym_local_forward_token1] = ACTIONS(2728), - [aux_sym_log_level_token1] = ACTIONS(2728), - [aux_sym_log_verbose_token1] = ACTIONS(2728), - [aux_sym_macs_token1] = ACTIONS(2728), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2728), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2728), - [aux_sym_password_authentication_token1] = ACTIONS(2728), - [aux_sym_permit_local_command_token1] = ACTIONS(2728), - [aux_sym_permit_remote_open_token1] = ACTIONS(2728), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2728), - [aux_sym_port_token1] = ACTIONS(2728), - [aux_sym_preferred_authentications_token1] = ACTIONS(2728), - [aux_sym_protocol_token1] = ACTIONS(2728), - [aux_sym_proxy_command_token1] = ACTIONS(2728), - [aux_sym_proxy_jump_token1] = ACTIONS(2728), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2728), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2728), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2728), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2728), - [aux_sym_rekey_limit_token1] = ACTIONS(2728), - [aux_sym_remote_command_token1] = ACTIONS(2728), - [aux_sym_remote_forward_token1] = ACTIONS(2728), - [aux_sym_request_tty_token1] = ACTIONS(2728), - [aux_sym_required_rsa_size_token1] = ACTIONS(2728), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2728), - [aux_sym_security_key_provider_token1] = ACTIONS(2728), - [aux_sym_send_env_token1] = ACTIONS(2728), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2728), - [aux_sym_server_alive_interval_token1] = ACTIONS(2728), - [aux_sym_session_type_token1] = ACTIONS(2728), - [aux_sym_set_env_token1] = ACTIONS(2728), - [aux_sym_stdin_null_token1] = ACTIONS(2728), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2728), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2728), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2728), - [aux_sym_syslog_facility_token1] = ACTIONS(2728), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2728), - [aux_sym_keep_alive_token1] = ACTIONS(2728), - [aux_sym_tag_token1] = ACTIONS(2728), - [aux_sym_tunnel_token1] = ACTIONS(2730), - [aux_sym_tunnel_device_token1] = ACTIONS(2728), - [aux_sym_update_host_keys_token1] = ACTIONS(2728), - [aux_sym_use_keychain_token1] = ACTIONS(2728), - [aux_sym_use_roaming_token1] = ACTIONS(2728), - [aux_sym_user_token1] = ACTIONS(2730), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2728), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2728), - [aux_sym_visual_host_key_token1] = ACTIONS(2728), - [aux_sym_xauth_location_token1] = ACTIONS(2728), + [ts_builtin_sym_end] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2739), + [anon_sym_DQUOTE] = ACTIONS(2737), + [aux_sym_match_token1] = ACTIONS(2737), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2737), + [aux_sym_address_family_token1] = ACTIONS(2737), + [aux_sym_batch_mode_token1] = ACTIONS(2737), + [aux_sym_bind_address_token1] = ACTIONS(2737), + [aux_sym_bind_interface_token1] = ACTIONS(2737), + [aux_sym_canonical_domains_token1] = ACTIONS(2737), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2737), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2737), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2737), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2737), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2737), + [aux_sym_certificate_file_token1] = ACTIONS(2737), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2737), + [aux_sym_channel_timeout_token1] = ACTIONS(2737), + [aux_sym_check_host_ip_token1] = ACTIONS(2737), + [aux_sym_ciphers_token1] = ACTIONS(2737), + [aux_sym_cipher_token1] = ACTIONS(2739), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2737), + [aux_sym_compression_token1] = ACTIONS(2737), + [aux_sym_connection_attempts_token1] = ACTIONS(2737), + [aux_sym_connect_timeout_token1] = ACTIONS(2737), + [aux_sym_control_master_token1] = ACTIONS(2737), + [aux_sym_control_path_token1] = ACTIONS(2737), + [aux_sym_control_persist_token1] = ACTIONS(2737), + [aux_sym_dynamic_forward_token1] = ACTIONS(2737), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2737), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2737), + [aux_sym_escape_char_token1] = ACTIONS(2737), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2737), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2737), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2737), + [aux_sym_forward_agent_token1] = ACTIONS(2737), + [aux_sym_forward_x11_token1] = ACTIONS(2739), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2737), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2737), + [aux_sym_gateway_ports_token1] = ACTIONS(2737), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2737), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2737), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2737), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2737), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2737), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2737), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2737), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2737), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2737), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2737), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2737), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2737), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2737), + [aux_sym_host_key_alias_token1] = ACTIONS(2737), + [aux_sym_hostname_token1] = ACTIONS(2737), + [aux_sym_identities_only_token1] = ACTIONS(2737), + [aux_sym_identity_agent_token1] = ACTIONS(2737), + [aux_sym_identity_file_token1] = ACTIONS(2737), + [aux_sym_ignore_unknown_token1] = ACTIONS(2737), + [aux_sym_include_token1] = ACTIONS(2737), + [aux_sym_ip_qos_token1] = ACTIONS(2737), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2737), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2737), + [aux_sym_kex_algorithms_token1] = ACTIONS(2737), + [aux_sym_known_hosts_command_token1] = ACTIONS(2737), + [aux_sym_local_command_token1] = ACTIONS(2737), + [aux_sym_local_forward_token1] = ACTIONS(2737), + [aux_sym_log_level_token1] = ACTIONS(2737), + [aux_sym_log_verbose_token1] = ACTIONS(2737), + [aux_sym_macs_token1] = ACTIONS(2737), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2737), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2737), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2737), + [aux_sym_password_authentication_token1] = ACTIONS(2737), + [aux_sym_permit_local_command_token1] = ACTIONS(2737), + [aux_sym_permit_remote_open_token1] = ACTIONS(2737), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2737), + [aux_sym_port_token1] = ACTIONS(2737), + [aux_sym_preferred_authentications_token1] = ACTIONS(2737), + [aux_sym_protocol_token1] = ACTIONS(2737), + [aux_sym_proxy_command_token1] = ACTIONS(2737), + [aux_sym_proxy_jump_token1] = ACTIONS(2737), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2737), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2737), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2737), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2737), + [aux_sym_rekey_limit_token1] = ACTIONS(2737), + [aux_sym_remote_command_token1] = ACTIONS(2737), + [aux_sym_remote_forward_token1] = ACTIONS(2737), + [aux_sym_request_tty_token1] = ACTIONS(2737), + [aux_sym_required_rsa_size_token1] = ACTIONS(2737), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2737), + [aux_sym_security_key_provider_token1] = ACTIONS(2737), + [aux_sym_send_env_token1] = ACTIONS(2737), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2737), + [aux_sym_server_alive_interval_token1] = ACTIONS(2737), + [aux_sym_session_type_token1] = ACTIONS(2737), + [aux_sym_set_env_token1] = ACTIONS(2737), + [aux_sym_stdin_null_token1] = ACTIONS(2737), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2737), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2737), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2737), + [aux_sym_syslog_facility_token1] = ACTIONS(2737), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2737), + [aux_sym_keep_alive_token1] = ACTIONS(2737), + [aux_sym_tag_token1] = ACTIONS(2737), + [aux_sym_tunnel_token1] = ACTIONS(2739), + [aux_sym_tunnel_device_token1] = ACTIONS(2737), + [aux_sym_update_host_keys_token1] = ACTIONS(2737), + [aux_sym_use_keychain_token1] = ACTIONS(2737), + [aux_sym_use_roaming_token1] = ACTIONS(2737), + [aux_sym_user_token1] = ACTIONS(2739), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2737), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2737), + [aux_sym_visual_host_key_token1] = ACTIONS(2737), + [aux_sym_xauth_location_token1] = ACTIONS(2737), }, [389] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2734), - [anon_sym_DQUOTE] = ACTIONS(2736), - [aux_sym_match_token1] = ACTIONS(2732), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2732), - [aux_sym_address_family_token1] = ACTIONS(2732), - [aux_sym_batch_mode_token1] = ACTIONS(2732), - [aux_sym_bind_address_token1] = ACTIONS(2732), - [aux_sym_bind_interface_token1] = ACTIONS(2732), - [aux_sym_canonical_domains_token1] = ACTIONS(2732), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2732), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2732), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2732), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2732), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2732), - [aux_sym_certificate_file_token1] = ACTIONS(2732), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2732), - [aux_sym_channel_timeout_token1] = ACTIONS(2732), - [aux_sym_check_host_ip_token1] = ACTIONS(2732), - [aux_sym_ciphers_token1] = ACTIONS(2732), - [aux_sym_cipher_token1] = ACTIONS(2734), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2732), - [aux_sym_compression_token1] = ACTIONS(2732), - [aux_sym_connection_attempts_token1] = ACTIONS(2732), - [aux_sym_connect_timeout_token1] = ACTIONS(2732), - [aux_sym_control_master_token1] = ACTIONS(2732), - [aux_sym_control_path_token1] = ACTIONS(2732), - [aux_sym_control_persist_token1] = ACTIONS(2732), - [aux_sym_dynamic_forward_token1] = ACTIONS(2732), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2732), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2732), - [aux_sym_escape_char_token1] = ACTIONS(2732), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2732), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2732), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2732), - [aux_sym_forward_agent_token1] = ACTIONS(2732), - [aux_sym_forward_x11_token1] = ACTIONS(2734), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2732), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2732), - [aux_sym_gateway_ports_token1] = ACTIONS(2732), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2732), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2732), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2732), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2732), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2732), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2732), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2732), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2732), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2732), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2732), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2732), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2732), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2732), - [aux_sym_host_key_alias_token1] = ACTIONS(2732), - [aux_sym_hostname_token1] = ACTIONS(2732), - [aux_sym_identities_only_token1] = ACTIONS(2732), - [aux_sym_identity_agent_token1] = ACTIONS(2732), - [aux_sym_identity_file_token1] = ACTIONS(2732), - [aux_sym_ignore_unknown_token1] = ACTIONS(2732), - [aux_sym_include_token1] = ACTIONS(2732), - [aux_sym_ip_qos_token1] = ACTIONS(2732), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2732), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2732), - [aux_sym_kex_algorithms_token1] = ACTIONS(2732), - [aux_sym_known_hosts_command_token1] = ACTIONS(2732), - [aux_sym_local_command_token1] = ACTIONS(2732), - [aux_sym_local_forward_token1] = ACTIONS(2732), - [aux_sym_log_level_token1] = ACTIONS(2732), - [aux_sym_log_verbose_token1] = ACTIONS(2732), - [aux_sym_macs_token1] = ACTIONS(2732), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2732), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2732), - [aux_sym_password_authentication_token1] = ACTIONS(2732), - [aux_sym_permit_local_command_token1] = ACTIONS(2732), - [aux_sym_permit_remote_open_token1] = ACTIONS(2732), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2732), - [aux_sym_port_token1] = ACTIONS(2732), - [aux_sym_preferred_authentications_token1] = ACTIONS(2732), - [aux_sym_protocol_token1] = ACTIONS(2732), - [aux_sym_proxy_command_token1] = ACTIONS(2732), - [aux_sym_proxy_jump_token1] = ACTIONS(2732), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2732), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2732), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2732), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2732), - [aux_sym_rekey_limit_token1] = ACTIONS(2732), - [aux_sym_remote_command_token1] = ACTIONS(2732), - [aux_sym_remote_forward_token1] = ACTIONS(2732), - [aux_sym_request_tty_token1] = ACTIONS(2732), - [aux_sym_required_rsa_size_token1] = ACTIONS(2732), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2732), - [aux_sym_security_key_provider_token1] = ACTIONS(2732), - [aux_sym_send_env_token1] = ACTIONS(2732), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2732), - [aux_sym_server_alive_interval_token1] = ACTIONS(2732), - [aux_sym_session_type_token1] = ACTIONS(2732), - [aux_sym_set_env_token1] = ACTIONS(2732), - [aux_sym_stdin_null_token1] = ACTIONS(2732), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2732), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2732), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2732), - [aux_sym_syslog_facility_token1] = ACTIONS(2732), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2732), - [aux_sym_keep_alive_token1] = ACTIONS(2732), - [aux_sym_tag_token1] = ACTIONS(2732), - [aux_sym_tunnel_token1] = ACTIONS(2734), - [aux_sym_tunnel_device_token1] = ACTIONS(2732), - [aux_sym_update_host_keys_token1] = ACTIONS(2732), - [aux_sym_use_keychain_token1] = ACTIONS(2732), - [aux_sym_use_roaming_token1] = ACTIONS(2732), - [aux_sym_user_token1] = ACTIONS(2734), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2732), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2732), - [aux_sym_visual_host_key_token1] = ACTIONS(2732), - [aux_sym_xauth_location_token1] = ACTIONS(2732), + [ts_builtin_sym_end] = ACTIONS(2741), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2743), + [anon_sym_DQUOTE] = ACTIONS(2745), + [aux_sym_match_token1] = ACTIONS(2741), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2741), + [aux_sym_address_family_token1] = ACTIONS(2741), + [aux_sym_batch_mode_token1] = ACTIONS(2741), + [aux_sym_bind_address_token1] = ACTIONS(2741), + [aux_sym_bind_interface_token1] = ACTIONS(2741), + [aux_sym_canonical_domains_token1] = ACTIONS(2741), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2741), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2741), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2741), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2741), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2741), + [aux_sym_certificate_file_token1] = ACTIONS(2741), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2741), + [aux_sym_channel_timeout_token1] = ACTIONS(2741), + [aux_sym_check_host_ip_token1] = ACTIONS(2741), + [aux_sym_ciphers_token1] = ACTIONS(2741), + [aux_sym_cipher_token1] = ACTIONS(2743), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2741), + [aux_sym_compression_token1] = ACTIONS(2741), + [aux_sym_connection_attempts_token1] = ACTIONS(2741), + [aux_sym_connect_timeout_token1] = ACTIONS(2741), + [aux_sym_control_master_token1] = ACTIONS(2741), + [aux_sym_control_path_token1] = ACTIONS(2741), + [aux_sym_control_persist_token1] = ACTIONS(2741), + [aux_sym_dynamic_forward_token1] = ACTIONS(2741), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2741), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2741), + [aux_sym_escape_char_token1] = ACTIONS(2741), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2741), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2741), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2741), + [aux_sym_forward_agent_token1] = ACTIONS(2741), + [aux_sym_forward_x11_token1] = ACTIONS(2743), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2741), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2741), + [aux_sym_gateway_ports_token1] = ACTIONS(2741), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2741), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2741), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2741), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2741), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2741), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2741), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2741), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2741), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2741), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2741), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2741), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2741), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2741), + [aux_sym_host_key_alias_token1] = ACTIONS(2741), + [aux_sym_hostname_token1] = ACTIONS(2741), + [aux_sym_identities_only_token1] = ACTIONS(2741), + [aux_sym_identity_agent_token1] = ACTIONS(2741), + [aux_sym_identity_file_token1] = ACTIONS(2741), + [aux_sym_ignore_unknown_token1] = ACTIONS(2741), + [aux_sym_include_token1] = ACTIONS(2741), + [aux_sym_ip_qos_token1] = ACTIONS(2741), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2741), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2741), + [aux_sym_kex_algorithms_token1] = ACTIONS(2741), + [aux_sym_known_hosts_command_token1] = ACTIONS(2741), + [aux_sym_local_command_token1] = ACTIONS(2741), + [aux_sym_local_forward_token1] = ACTIONS(2741), + [aux_sym_log_level_token1] = ACTIONS(2741), + [aux_sym_log_verbose_token1] = ACTIONS(2741), + [aux_sym_macs_token1] = ACTIONS(2741), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2741), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2741), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2741), + [aux_sym_password_authentication_token1] = ACTIONS(2741), + [aux_sym_permit_local_command_token1] = ACTIONS(2741), + [aux_sym_permit_remote_open_token1] = ACTIONS(2741), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2741), + [aux_sym_port_token1] = ACTIONS(2741), + [aux_sym_preferred_authentications_token1] = ACTIONS(2741), + [aux_sym_protocol_token1] = ACTIONS(2741), + [aux_sym_proxy_command_token1] = ACTIONS(2741), + [aux_sym_proxy_jump_token1] = ACTIONS(2741), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2741), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2741), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2741), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2741), + [aux_sym_rekey_limit_token1] = ACTIONS(2741), + [aux_sym_remote_command_token1] = ACTIONS(2741), + [aux_sym_remote_forward_token1] = ACTIONS(2741), + [aux_sym_request_tty_token1] = ACTIONS(2741), + [aux_sym_required_rsa_size_token1] = ACTIONS(2741), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2741), + [aux_sym_security_key_provider_token1] = ACTIONS(2741), + [aux_sym_send_env_token1] = ACTIONS(2741), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2741), + [aux_sym_server_alive_interval_token1] = ACTIONS(2741), + [aux_sym_session_type_token1] = ACTIONS(2741), + [aux_sym_set_env_token1] = ACTIONS(2741), + [aux_sym_stdin_null_token1] = ACTIONS(2741), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2741), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2741), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2741), + [aux_sym_syslog_facility_token1] = ACTIONS(2741), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2741), + [aux_sym_keep_alive_token1] = ACTIONS(2741), + [aux_sym_tag_token1] = ACTIONS(2741), + [aux_sym_tunnel_token1] = ACTIONS(2743), + [aux_sym_tunnel_device_token1] = ACTIONS(2741), + [aux_sym_update_host_keys_token1] = ACTIONS(2741), + [aux_sym_use_keychain_token1] = ACTIONS(2741), + [aux_sym_use_roaming_token1] = ACTIONS(2741), + [aux_sym_user_token1] = ACTIONS(2743), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2741), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2741), + [aux_sym_visual_host_key_token1] = ACTIONS(2741), + [aux_sym_xauth_location_token1] = ACTIONS(2741), }, [390] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2742), - [aux_sym_match_token1] = ACTIONS(2738), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2738), - [aux_sym_address_family_token1] = ACTIONS(2738), - [aux_sym_batch_mode_token1] = ACTIONS(2738), - [aux_sym_bind_address_token1] = ACTIONS(2738), - [aux_sym_bind_interface_token1] = ACTIONS(2738), - [aux_sym_canonical_domains_token1] = ACTIONS(2738), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2738), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2738), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2738), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2738), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2738), - [aux_sym_certificate_file_token1] = ACTIONS(2738), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2738), - [aux_sym_channel_timeout_token1] = ACTIONS(2738), - [aux_sym_check_host_ip_token1] = ACTIONS(2738), - [aux_sym_ciphers_token1] = ACTIONS(2738), - [aux_sym_cipher_token1] = ACTIONS(2740), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2738), - [aux_sym_compression_token1] = ACTIONS(2738), - [aux_sym_connection_attempts_token1] = ACTIONS(2738), - [aux_sym_connect_timeout_token1] = ACTIONS(2738), - [aux_sym_control_master_token1] = ACTIONS(2738), - [aux_sym_control_path_token1] = ACTIONS(2738), - [aux_sym_control_persist_token1] = ACTIONS(2738), - [aux_sym_dynamic_forward_token1] = ACTIONS(2738), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2738), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2738), - [aux_sym_escape_char_token1] = ACTIONS(2738), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2738), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2738), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2738), - [aux_sym_forward_agent_token1] = ACTIONS(2738), - [aux_sym_forward_x11_token1] = ACTIONS(2740), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2738), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2738), - [aux_sym_gateway_ports_token1] = ACTIONS(2738), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2738), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2738), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2738), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2738), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2738), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2738), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2738), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2738), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2738), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2738), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2738), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2738), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2738), - [aux_sym_host_key_alias_token1] = ACTIONS(2738), - [aux_sym_hostname_token1] = ACTIONS(2738), - [aux_sym_identities_only_token1] = ACTIONS(2738), - [aux_sym_identity_agent_token1] = ACTIONS(2738), - [aux_sym_identity_file_token1] = ACTIONS(2738), - [aux_sym_ignore_unknown_token1] = ACTIONS(2738), - [aux_sym_include_token1] = ACTIONS(2738), - [aux_sym_ip_qos_token1] = ACTIONS(2738), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2738), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2738), - [aux_sym_kex_algorithms_token1] = ACTIONS(2738), - [aux_sym_known_hosts_command_token1] = ACTIONS(2738), - [aux_sym_local_command_token1] = ACTIONS(2738), - [aux_sym_local_forward_token1] = ACTIONS(2738), - [aux_sym_log_level_token1] = ACTIONS(2738), - [aux_sym_log_verbose_token1] = ACTIONS(2738), - [aux_sym_macs_token1] = ACTIONS(2738), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2738), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2738), - [aux_sym_password_authentication_token1] = ACTIONS(2738), - [aux_sym_permit_local_command_token1] = ACTIONS(2738), - [aux_sym_permit_remote_open_token1] = ACTIONS(2738), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2738), - [aux_sym_port_token1] = ACTIONS(2738), - [aux_sym_preferred_authentications_token1] = ACTIONS(2738), - [aux_sym_protocol_token1] = ACTIONS(2738), - [aux_sym_proxy_command_token1] = ACTIONS(2738), - [aux_sym_proxy_jump_token1] = ACTIONS(2738), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2738), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2738), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2738), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2738), - [aux_sym_rekey_limit_token1] = ACTIONS(2738), - [aux_sym_remote_command_token1] = ACTIONS(2738), - [aux_sym_remote_forward_token1] = ACTIONS(2738), - [aux_sym_request_tty_token1] = ACTIONS(2738), - [aux_sym_required_rsa_size_token1] = ACTIONS(2738), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2738), - [aux_sym_security_key_provider_token1] = ACTIONS(2738), - [aux_sym_send_env_token1] = ACTIONS(2738), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2738), - [aux_sym_server_alive_interval_token1] = ACTIONS(2738), - [aux_sym_session_type_token1] = ACTIONS(2738), - [aux_sym_set_env_token1] = ACTIONS(2738), - [aux_sym_stdin_null_token1] = ACTIONS(2738), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2738), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2738), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2738), - [aux_sym_syslog_facility_token1] = ACTIONS(2738), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2738), - [aux_sym_keep_alive_token1] = ACTIONS(2738), - [aux_sym_tag_token1] = ACTIONS(2738), - [aux_sym_tunnel_token1] = ACTIONS(2740), - [aux_sym_tunnel_device_token1] = ACTIONS(2738), - [aux_sym_update_host_keys_token1] = ACTIONS(2738), - [aux_sym_use_keychain_token1] = ACTIONS(2738), - [aux_sym_use_roaming_token1] = ACTIONS(2738), - [aux_sym_user_token1] = ACTIONS(2740), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2738), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2738), - [aux_sym_visual_host_key_token1] = ACTIONS(2738), - [aux_sym_xauth_location_token1] = ACTIONS(2738), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2749), + [anon_sym_DQUOTE] = ACTIONS(2747), + [aux_sym_match_token1] = ACTIONS(2747), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2747), + [aux_sym_address_family_token1] = ACTIONS(2747), + [aux_sym_batch_mode_token1] = ACTIONS(2747), + [aux_sym_bind_address_token1] = ACTIONS(2747), + [aux_sym_bind_interface_token1] = ACTIONS(2747), + [aux_sym_canonical_domains_token1] = ACTIONS(2747), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2747), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2747), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2747), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2747), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2747), + [aux_sym_certificate_file_token1] = ACTIONS(2747), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2747), + [aux_sym_channel_timeout_token1] = ACTIONS(2747), + [aux_sym_check_host_ip_token1] = ACTIONS(2747), + [aux_sym_ciphers_token1] = ACTIONS(2747), + [aux_sym_cipher_token1] = ACTIONS(2749), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2747), + [aux_sym_compression_token1] = ACTIONS(2747), + [aux_sym_connection_attempts_token1] = ACTIONS(2747), + [aux_sym_connect_timeout_token1] = ACTIONS(2747), + [aux_sym_control_master_token1] = ACTIONS(2747), + [aux_sym_control_path_token1] = ACTIONS(2747), + [aux_sym_control_persist_token1] = ACTIONS(2747), + [aux_sym_dynamic_forward_token1] = ACTIONS(2747), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2747), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2747), + [aux_sym_escape_char_token1] = ACTIONS(2747), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2747), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2747), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2747), + [aux_sym_forward_agent_token1] = ACTIONS(2747), + [aux_sym_forward_x11_token1] = ACTIONS(2749), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2747), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2747), + [aux_sym_gateway_ports_token1] = ACTIONS(2747), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2747), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2747), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2747), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2747), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2747), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2747), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2747), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2747), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2747), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2747), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2747), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2747), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2747), + [aux_sym_host_key_alias_token1] = ACTIONS(2747), + [aux_sym_hostname_token1] = ACTIONS(2747), + [aux_sym_identities_only_token1] = ACTIONS(2747), + [aux_sym_identity_agent_token1] = ACTIONS(2747), + [aux_sym_identity_file_token1] = ACTIONS(2747), + [aux_sym_ignore_unknown_token1] = ACTIONS(2747), + [aux_sym_include_token1] = ACTIONS(2747), + [aux_sym_ip_qos_token1] = ACTIONS(2747), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2747), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2747), + [aux_sym_kex_algorithms_token1] = ACTIONS(2747), + [aux_sym_known_hosts_command_token1] = ACTIONS(2747), + [aux_sym_local_command_token1] = ACTIONS(2747), + [aux_sym_local_forward_token1] = ACTIONS(2747), + [aux_sym_log_level_token1] = ACTIONS(2747), + [aux_sym_log_verbose_token1] = ACTIONS(2747), + [aux_sym_macs_token1] = ACTIONS(2747), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2747), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2747), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2747), + [aux_sym_password_authentication_token1] = ACTIONS(2747), + [aux_sym_permit_local_command_token1] = ACTIONS(2747), + [aux_sym_permit_remote_open_token1] = ACTIONS(2747), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2747), + [aux_sym_port_token1] = ACTIONS(2747), + [aux_sym_preferred_authentications_token1] = ACTIONS(2747), + [aux_sym_protocol_token1] = ACTIONS(2747), + [aux_sym_proxy_command_token1] = ACTIONS(2747), + [aux_sym_proxy_jump_token1] = ACTIONS(2747), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2747), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2747), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2747), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2747), + [aux_sym_rekey_limit_token1] = ACTIONS(2747), + [aux_sym_remote_command_token1] = ACTIONS(2747), + [aux_sym_remote_forward_token1] = ACTIONS(2747), + [aux_sym_request_tty_token1] = ACTIONS(2747), + [aux_sym_required_rsa_size_token1] = ACTIONS(2747), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2747), + [aux_sym_security_key_provider_token1] = ACTIONS(2747), + [aux_sym_send_env_token1] = ACTIONS(2747), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2747), + [aux_sym_server_alive_interval_token1] = ACTIONS(2747), + [aux_sym_session_type_token1] = ACTIONS(2747), + [aux_sym_set_env_token1] = ACTIONS(2747), + [aux_sym_stdin_null_token1] = ACTIONS(2747), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2747), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2747), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2747), + [aux_sym_syslog_facility_token1] = ACTIONS(2747), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2747), + [aux_sym_keep_alive_token1] = ACTIONS(2747), + [aux_sym_tag_token1] = ACTIONS(2747), + [aux_sym_tunnel_token1] = ACTIONS(2749), + [aux_sym_tunnel_device_token1] = ACTIONS(2747), + [aux_sym_update_host_keys_token1] = ACTIONS(2747), + [aux_sym_use_keychain_token1] = ACTIONS(2747), + [aux_sym_use_roaming_token1] = ACTIONS(2747), + [aux_sym_user_token1] = ACTIONS(2749), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2747), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2747), + [aux_sym_visual_host_key_token1] = ACTIONS(2747), + [aux_sym_xauth_location_token1] = ACTIONS(2747), }, [391] = { - [ts_builtin_sym_end] = ACTIONS(2744), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2746), - [anon_sym_DQUOTE] = ACTIONS(2744), - [aux_sym_match_token1] = ACTIONS(2744), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2744), - [aux_sym_address_family_token1] = ACTIONS(2744), - [aux_sym_batch_mode_token1] = ACTIONS(2744), - [aux_sym_bind_address_token1] = ACTIONS(2744), - [aux_sym_bind_interface_token1] = ACTIONS(2744), - [aux_sym_canonical_domains_token1] = ACTIONS(2744), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2744), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2744), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2744), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2744), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2744), - [aux_sym_certificate_file_token1] = ACTIONS(2744), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2744), - [aux_sym_channel_timeout_token1] = ACTIONS(2744), - [aux_sym_check_host_ip_token1] = ACTIONS(2744), - [aux_sym_ciphers_token1] = ACTIONS(2744), - [aux_sym_cipher_token1] = ACTIONS(2746), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2744), - [aux_sym_compression_token1] = ACTIONS(2744), - [aux_sym_connection_attempts_token1] = ACTIONS(2744), - [aux_sym_connect_timeout_token1] = ACTIONS(2744), - [aux_sym_control_master_token1] = ACTIONS(2744), - [aux_sym_control_path_token1] = ACTIONS(2744), - [aux_sym_control_persist_token1] = ACTIONS(2744), - [aux_sym_dynamic_forward_token1] = ACTIONS(2744), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2744), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2744), - [aux_sym_escape_char_token1] = ACTIONS(2744), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2744), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2744), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2744), - [aux_sym_forward_agent_token1] = ACTIONS(2744), - [aux_sym_forward_x11_token1] = ACTIONS(2746), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2744), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2744), - [aux_sym_gateway_ports_token1] = ACTIONS(2744), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2744), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2744), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2744), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2744), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2744), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2744), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2744), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2744), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2744), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2744), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2744), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2744), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2744), - [aux_sym_host_key_alias_token1] = ACTIONS(2744), - [aux_sym_hostname_token1] = ACTIONS(2744), - [aux_sym_identities_only_token1] = ACTIONS(2744), - [aux_sym_identity_agent_token1] = ACTIONS(2744), - [aux_sym_identity_file_token1] = ACTIONS(2744), - [aux_sym_ignore_unknown_token1] = ACTIONS(2744), - [aux_sym_include_token1] = ACTIONS(2744), - [aux_sym_ip_qos_token1] = ACTIONS(2744), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2744), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2744), - [aux_sym_kex_algorithms_token1] = ACTIONS(2744), - [aux_sym_known_hosts_command_token1] = ACTIONS(2744), - [aux_sym_local_command_token1] = ACTIONS(2744), - [aux_sym_local_forward_token1] = ACTIONS(2744), - [aux_sym_log_level_token1] = ACTIONS(2744), - [aux_sym_log_verbose_token1] = ACTIONS(2744), - [aux_sym_macs_token1] = ACTIONS(2744), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2744), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2744), - [aux_sym_password_authentication_token1] = ACTIONS(2744), - [aux_sym_permit_local_command_token1] = ACTIONS(2744), - [aux_sym_permit_remote_open_token1] = ACTIONS(2744), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2744), - [aux_sym_port_token1] = ACTIONS(2744), - [aux_sym_preferred_authentications_token1] = ACTIONS(2744), - [aux_sym_protocol_token1] = ACTIONS(2744), - [aux_sym_proxy_command_token1] = ACTIONS(2744), - [aux_sym_proxy_jump_token1] = ACTIONS(2744), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2744), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2744), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2744), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2744), - [aux_sym_rekey_limit_token1] = ACTIONS(2744), - [aux_sym_remote_command_token1] = ACTIONS(2744), - [aux_sym_remote_forward_token1] = ACTIONS(2744), - [aux_sym_request_tty_token1] = ACTIONS(2744), - [aux_sym_required_rsa_size_token1] = ACTIONS(2744), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2744), - [aux_sym_security_key_provider_token1] = ACTIONS(2744), - [aux_sym_send_env_token1] = ACTIONS(2744), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2744), - [aux_sym_server_alive_interval_token1] = ACTIONS(2744), - [aux_sym_session_type_token1] = ACTIONS(2744), - [aux_sym_set_env_token1] = ACTIONS(2744), - [aux_sym_stdin_null_token1] = ACTIONS(2744), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2744), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2744), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2744), - [aux_sym_syslog_facility_token1] = ACTIONS(2744), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2744), - [aux_sym_keep_alive_token1] = ACTIONS(2744), - [aux_sym_tag_token1] = ACTIONS(2744), - [aux_sym_tunnel_token1] = ACTIONS(2746), - [aux_sym_tunnel_device_token1] = ACTIONS(2744), - [aux_sym_update_host_keys_token1] = ACTIONS(2744), - [aux_sym_use_keychain_token1] = ACTIONS(2744), - [aux_sym_use_roaming_token1] = ACTIONS(2744), - [aux_sym_user_token1] = ACTIONS(2746), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2744), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2744), - [aux_sym_visual_host_key_token1] = ACTIONS(2744), - [aux_sym_xauth_location_token1] = ACTIONS(2744), + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2753), + [anon_sym_DQUOTE] = ACTIONS(2755), + [aux_sym_match_token1] = ACTIONS(2751), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2751), + [aux_sym_address_family_token1] = ACTIONS(2751), + [aux_sym_batch_mode_token1] = ACTIONS(2751), + [aux_sym_bind_address_token1] = ACTIONS(2751), + [aux_sym_bind_interface_token1] = ACTIONS(2751), + [aux_sym_canonical_domains_token1] = ACTIONS(2751), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2751), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2751), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2751), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2751), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2751), + [aux_sym_certificate_file_token1] = ACTIONS(2751), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2751), + [aux_sym_channel_timeout_token1] = ACTIONS(2751), + [aux_sym_check_host_ip_token1] = ACTIONS(2751), + [aux_sym_ciphers_token1] = ACTIONS(2751), + [aux_sym_cipher_token1] = ACTIONS(2753), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2751), + [aux_sym_compression_token1] = ACTIONS(2751), + [aux_sym_connection_attempts_token1] = ACTIONS(2751), + [aux_sym_connect_timeout_token1] = ACTIONS(2751), + [aux_sym_control_master_token1] = ACTIONS(2751), + [aux_sym_control_path_token1] = ACTIONS(2751), + [aux_sym_control_persist_token1] = ACTIONS(2751), + [aux_sym_dynamic_forward_token1] = ACTIONS(2751), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2751), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2751), + [aux_sym_escape_char_token1] = ACTIONS(2751), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2751), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2751), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2751), + [aux_sym_forward_agent_token1] = ACTIONS(2751), + [aux_sym_forward_x11_token1] = ACTIONS(2753), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2751), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2751), + [aux_sym_gateway_ports_token1] = ACTIONS(2751), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2751), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2751), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2751), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2751), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2751), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2751), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2751), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2751), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2751), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2751), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2751), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2751), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2751), + [aux_sym_host_key_alias_token1] = ACTIONS(2751), + [aux_sym_hostname_token1] = ACTIONS(2751), + [aux_sym_identities_only_token1] = ACTIONS(2751), + [aux_sym_identity_agent_token1] = ACTIONS(2751), + [aux_sym_identity_file_token1] = ACTIONS(2751), + [aux_sym_ignore_unknown_token1] = ACTIONS(2751), + [aux_sym_include_token1] = ACTIONS(2751), + [aux_sym_ip_qos_token1] = ACTIONS(2751), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2751), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2751), + [aux_sym_kex_algorithms_token1] = ACTIONS(2751), + [aux_sym_known_hosts_command_token1] = ACTIONS(2751), + [aux_sym_local_command_token1] = ACTIONS(2751), + [aux_sym_local_forward_token1] = ACTIONS(2751), + [aux_sym_log_level_token1] = ACTIONS(2751), + [aux_sym_log_verbose_token1] = ACTIONS(2751), + [aux_sym_macs_token1] = ACTIONS(2751), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2751), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2751), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2751), + [aux_sym_password_authentication_token1] = ACTIONS(2751), + [aux_sym_permit_local_command_token1] = ACTIONS(2751), + [aux_sym_permit_remote_open_token1] = ACTIONS(2751), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2751), + [aux_sym_port_token1] = ACTIONS(2751), + [aux_sym_preferred_authentications_token1] = ACTIONS(2751), + [aux_sym_protocol_token1] = ACTIONS(2751), + [aux_sym_proxy_command_token1] = ACTIONS(2751), + [aux_sym_proxy_jump_token1] = ACTIONS(2751), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2751), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2751), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2751), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2751), + [aux_sym_rekey_limit_token1] = ACTIONS(2751), + [aux_sym_remote_command_token1] = ACTIONS(2751), + [aux_sym_remote_forward_token1] = ACTIONS(2751), + [aux_sym_request_tty_token1] = ACTIONS(2751), + [aux_sym_required_rsa_size_token1] = ACTIONS(2751), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2751), + [aux_sym_security_key_provider_token1] = ACTIONS(2751), + [aux_sym_send_env_token1] = ACTIONS(2751), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2751), + [aux_sym_server_alive_interval_token1] = ACTIONS(2751), + [aux_sym_session_type_token1] = ACTIONS(2751), + [aux_sym_set_env_token1] = ACTIONS(2751), + [aux_sym_stdin_null_token1] = ACTIONS(2751), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2751), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2751), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2751), + [aux_sym_syslog_facility_token1] = ACTIONS(2751), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2751), + [aux_sym_keep_alive_token1] = ACTIONS(2751), + [aux_sym_tag_token1] = ACTIONS(2751), + [aux_sym_tunnel_token1] = ACTIONS(2753), + [aux_sym_tunnel_device_token1] = ACTIONS(2751), + [aux_sym_update_host_keys_token1] = ACTIONS(2751), + [aux_sym_use_keychain_token1] = ACTIONS(2751), + [aux_sym_use_roaming_token1] = ACTIONS(2751), + [aux_sym_user_token1] = ACTIONS(2753), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2751), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2751), + [aux_sym_visual_host_key_token1] = ACTIONS(2751), + [aux_sym_xauth_location_token1] = ACTIONS(2751), }, [392] = { - [ts_builtin_sym_end] = ACTIONS(2748), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2750), - [anon_sym_DQUOTE] = ACTIONS(2748), - [aux_sym_match_token1] = ACTIONS(2748), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2748), - [aux_sym_address_family_token1] = ACTIONS(2748), - [aux_sym_batch_mode_token1] = ACTIONS(2748), - [aux_sym_bind_address_token1] = ACTIONS(2748), - [aux_sym_bind_interface_token1] = ACTIONS(2748), - [aux_sym_canonical_domains_token1] = ACTIONS(2748), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2748), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2748), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2748), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2748), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2748), - [aux_sym_certificate_file_token1] = ACTIONS(2748), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2748), - [aux_sym_channel_timeout_token1] = ACTIONS(2748), - [aux_sym_check_host_ip_token1] = ACTIONS(2748), - [aux_sym_ciphers_token1] = ACTIONS(2748), - [aux_sym_cipher_token1] = ACTIONS(2750), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2748), - [aux_sym_compression_token1] = ACTIONS(2748), - [aux_sym_connection_attempts_token1] = ACTIONS(2748), - [aux_sym_connect_timeout_token1] = ACTIONS(2748), - [aux_sym_control_master_token1] = ACTIONS(2748), - [aux_sym_control_path_token1] = ACTIONS(2748), - [aux_sym_control_persist_token1] = ACTIONS(2748), - [aux_sym_dynamic_forward_token1] = ACTIONS(2748), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2748), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2748), - [aux_sym_escape_char_token1] = ACTIONS(2748), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2748), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2748), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2748), - [aux_sym_forward_agent_token1] = ACTIONS(2748), - [aux_sym_forward_x11_token1] = ACTIONS(2750), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2748), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2748), - [aux_sym_gateway_ports_token1] = ACTIONS(2748), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2748), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2748), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2748), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2748), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2748), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2748), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2748), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2748), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2748), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2748), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2748), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2748), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2748), - [aux_sym_host_key_alias_token1] = ACTIONS(2748), - [aux_sym_hostname_token1] = ACTIONS(2748), - [aux_sym_identities_only_token1] = ACTIONS(2748), - [aux_sym_identity_agent_token1] = ACTIONS(2748), - [aux_sym_identity_file_token1] = ACTIONS(2748), - [aux_sym_ignore_unknown_token1] = ACTIONS(2748), - [aux_sym_include_token1] = ACTIONS(2748), - [aux_sym_ip_qos_token1] = ACTIONS(2748), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2748), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2748), - [aux_sym_kex_algorithms_token1] = ACTIONS(2748), - [aux_sym_known_hosts_command_token1] = ACTIONS(2748), - [aux_sym_local_command_token1] = ACTIONS(2748), - [aux_sym_local_forward_token1] = ACTIONS(2748), - [aux_sym_log_level_token1] = ACTIONS(2748), - [aux_sym_log_verbose_token1] = ACTIONS(2748), - [aux_sym_macs_token1] = ACTIONS(2748), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2748), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2748), - [aux_sym_password_authentication_token1] = ACTIONS(2748), - [aux_sym_permit_local_command_token1] = ACTIONS(2748), - [aux_sym_permit_remote_open_token1] = ACTIONS(2748), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2748), - [aux_sym_port_token1] = ACTIONS(2748), - [aux_sym_preferred_authentications_token1] = ACTIONS(2748), - [aux_sym_protocol_token1] = ACTIONS(2748), - [aux_sym_proxy_command_token1] = ACTIONS(2748), - [aux_sym_proxy_jump_token1] = ACTIONS(2748), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2748), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2748), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2748), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2748), - [aux_sym_rekey_limit_token1] = ACTIONS(2748), - [aux_sym_remote_command_token1] = ACTIONS(2748), - [aux_sym_remote_forward_token1] = ACTIONS(2748), - [aux_sym_request_tty_token1] = ACTIONS(2748), - [aux_sym_required_rsa_size_token1] = ACTIONS(2748), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2748), - [aux_sym_security_key_provider_token1] = ACTIONS(2748), - [aux_sym_send_env_token1] = ACTIONS(2748), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2748), - [aux_sym_server_alive_interval_token1] = ACTIONS(2748), - [aux_sym_session_type_token1] = ACTIONS(2748), - [aux_sym_set_env_token1] = ACTIONS(2748), - [aux_sym_stdin_null_token1] = ACTIONS(2748), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2748), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2748), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2748), - [aux_sym_syslog_facility_token1] = ACTIONS(2748), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2748), - [aux_sym_keep_alive_token1] = ACTIONS(2748), - [aux_sym_tag_token1] = ACTIONS(2748), - [aux_sym_tunnel_token1] = ACTIONS(2750), - [aux_sym_tunnel_device_token1] = ACTIONS(2748), - [aux_sym_update_host_keys_token1] = ACTIONS(2748), - [aux_sym_use_keychain_token1] = ACTIONS(2748), - [aux_sym_use_roaming_token1] = ACTIONS(2748), - [aux_sym_user_token1] = ACTIONS(2750), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2748), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2748), - [aux_sym_visual_host_key_token1] = ACTIONS(2748), - [aux_sym_xauth_location_token1] = ACTIONS(2748), + [ts_builtin_sym_end] = ACTIONS(2757), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2759), + [anon_sym_DQUOTE] = ACTIONS(2761), + [aux_sym_match_token1] = ACTIONS(2757), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2757), + [aux_sym_address_family_token1] = ACTIONS(2757), + [aux_sym_batch_mode_token1] = ACTIONS(2757), + [aux_sym_bind_address_token1] = ACTIONS(2757), + [aux_sym_bind_interface_token1] = ACTIONS(2757), + [aux_sym_canonical_domains_token1] = ACTIONS(2757), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2757), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2757), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2757), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2757), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2757), + [aux_sym_certificate_file_token1] = ACTIONS(2757), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2757), + [aux_sym_channel_timeout_token1] = ACTIONS(2757), + [aux_sym_check_host_ip_token1] = ACTIONS(2757), + [aux_sym_ciphers_token1] = ACTIONS(2757), + [aux_sym_cipher_token1] = ACTIONS(2759), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2757), + [aux_sym_compression_token1] = ACTIONS(2757), + [aux_sym_connection_attempts_token1] = ACTIONS(2757), + [aux_sym_connect_timeout_token1] = ACTIONS(2757), + [aux_sym_control_master_token1] = ACTIONS(2757), + [aux_sym_control_path_token1] = ACTIONS(2757), + [aux_sym_control_persist_token1] = ACTIONS(2757), + [aux_sym_dynamic_forward_token1] = ACTIONS(2757), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2757), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2757), + [aux_sym_escape_char_token1] = ACTIONS(2757), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2757), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2757), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2757), + [aux_sym_forward_agent_token1] = ACTIONS(2757), + [aux_sym_forward_x11_token1] = ACTIONS(2759), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2757), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2757), + [aux_sym_gateway_ports_token1] = ACTIONS(2757), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2757), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2757), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2757), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2757), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2757), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2757), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2757), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2757), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2757), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2757), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2757), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2757), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2757), + [aux_sym_host_key_alias_token1] = ACTIONS(2757), + [aux_sym_hostname_token1] = ACTIONS(2757), + [aux_sym_identities_only_token1] = ACTIONS(2757), + [aux_sym_identity_agent_token1] = ACTIONS(2757), + [aux_sym_identity_file_token1] = ACTIONS(2757), + [aux_sym_ignore_unknown_token1] = ACTIONS(2757), + [aux_sym_include_token1] = ACTIONS(2757), + [aux_sym_ip_qos_token1] = ACTIONS(2757), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2757), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2757), + [aux_sym_kex_algorithms_token1] = ACTIONS(2757), + [aux_sym_known_hosts_command_token1] = ACTIONS(2757), + [aux_sym_local_command_token1] = ACTIONS(2757), + [aux_sym_local_forward_token1] = ACTIONS(2757), + [aux_sym_log_level_token1] = ACTIONS(2757), + [aux_sym_log_verbose_token1] = ACTIONS(2757), + [aux_sym_macs_token1] = ACTIONS(2757), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2757), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2757), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2757), + [aux_sym_password_authentication_token1] = ACTIONS(2757), + [aux_sym_permit_local_command_token1] = ACTIONS(2757), + [aux_sym_permit_remote_open_token1] = ACTIONS(2757), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2757), + [aux_sym_port_token1] = ACTIONS(2757), + [aux_sym_preferred_authentications_token1] = ACTIONS(2757), + [aux_sym_protocol_token1] = ACTIONS(2757), + [aux_sym_proxy_command_token1] = ACTIONS(2757), + [aux_sym_proxy_jump_token1] = ACTIONS(2757), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2757), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2757), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2757), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2757), + [aux_sym_rekey_limit_token1] = ACTIONS(2757), + [aux_sym_remote_command_token1] = ACTIONS(2757), + [aux_sym_remote_forward_token1] = ACTIONS(2757), + [aux_sym_request_tty_token1] = ACTIONS(2757), + [aux_sym_required_rsa_size_token1] = ACTIONS(2757), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2757), + [aux_sym_security_key_provider_token1] = ACTIONS(2757), + [aux_sym_send_env_token1] = ACTIONS(2757), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2757), + [aux_sym_server_alive_interval_token1] = ACTIONS(2757), + [aux_sym_session_type_token1] = ACTIONS(2757), + [aux_sym_set_env_token1] = ACTIONS(2757), + [aux_sym_stdin_null_token1] = ACTIONS(2757), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2757), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2757), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2757), + [aux_sym_syslog_facility_token1] = ACTIONS(2757), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2757), + [aux_sym_keep_alive_token1] = ACTIONS(2757), + [aux_sym_tag_token1] = ACTIONS(2757), + [aux_sym_tunnel_token1] = ACTIONS(2759), + [aux_sym_tunnel_device_token1] = ACTIONS(2757), + [aux_sym_update_host_keys_token1] = ACTIONS(2757), + [aux_sym_use_keychain_token1] = ACTIONS(2757), + [aux_sym_use_roaming_token1] = ACTIONS(2757), + [aux_sym_user_token1] = ACTIONS(2759), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2757), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2757), + [aux_sym_visual_host_key_token1] = ACTIONS(2757), + [aux_sym_xauth_location_token1] = ACTIONS(2757), }, [393] = { - [ts_builtin_sym_end] = ACTIONS(2752), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2754), - [anon_sym_DQUOTE] = ACTIONS(2756), - [aux_sym_match_token1] = ACTIONS(2752), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2752), - [aux_sym_address_family_token1] = ACTIONS(2752), - [aux_sym_batch_mode_token1] = ACTIONS(2752), - [aux_sym_bind_address_token1] = ACTIONS(2752), - [aux_sym_bind_interface_token1] = ACTIONS(2752), - [aux_sym_canonical_domains_token1] = ACTIONS(2752), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2752), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2752), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2752), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2752), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2752), - [aux_sym_certificate_file_token1] = ACTIONS(2752), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2752), - [aux_sym_channel_timeout_token1] = ACTIONS(2752), - [aux_sym_check_host_ip_token1] = ACTIONS(2752), - [aux_sym_ciphers_token1] = ACTIONS(2752), - [aux_sym_cipher_token1] = ACTIONS(2754), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2752), - [aux_sym_compression_token1] = ACTIONS(2752), - [aux_sym_connection_attempts_token1] = ACTIONS(2752), - [aux_sym_connect_timeout_token1] = ACTIONS(2752), - [aux_sym_control_master_token1] = ACTIONS(2752), - [aux_sym_control_path_token1] = ACTIONS(2752), - [aux_sym_control_persist_token1] = ACTIONS(2752), - [aux_sym_dynamic_forward_token1] = ACTIONS(2752), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2752), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2752), - [aux_sym_escape_char_token1] = ACTIONS(2752), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2752), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2752), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2752), - [aux_sym_forward_agent_token1] = ACTIONS(2752), - [aux_sym_forward_x11_token1] = ACTIONS(2754), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2752), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2752), - [aux_sym_gateway_ports_token1] = ACTIONS(2752), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2752), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2752), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2752), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2752), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2752), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2752), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2752), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2752), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2752), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2752), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2752), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2752), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2752), - [aux_sym_host_key_alias_token1] = ACTIONS(2752), - [aux_sym_hostname_token1] = ACTIONS(2752), - [aux_sym_identities_only_token1] = ACTIONS(2752), - [aux_sym_identity_agent_token1] = ACTIONS(2752), - [aux_sym_identity_file_token1] = ACTIONS(2752), - [aux_sym_ignore_unknown_token1] = ACTIONS(2752), - [aux_sym_include_token1] = ACTIONS(2752), - [aux_sym_ip_qos_token1] = ACTIONS(2752), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2752), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2752), - [aux_sym_kex_algorithms_token1] = ACTIONS(2752), - [aux_sym_known_hosts_command_token1] = ACTIONS(2752), - [aux_sym_local_command_token1] = ACTIONS(2752), - [aux_sym_local_forward_token1] = ACTIONS(2752), - [aux_sym_log_level_token1] = ACTIONS(2752), - [aux_sym_log_verbose_token1] = ACTIONS(2752), - [aux_sym_macs_token1] = ACTIONS(2752), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2752), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2752), - [aux_sym_password_authentication_token1] = ACTIONS(2752), - [aux_sym_permit_local_command_token1] = ACTIONS(2752), - [aux_sym_permit_remote_open_token1] = ACTIONS(2752), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2752), - [aux_sym_port_token1] = ACTIONS(2752), - [aux_sym_preferred_authentications_token1] = ACTIONS(2752), - [aux_sym_protocol_token1] = ACTIONS(2752), - [aux_sym_proxy_command_token1] = ACTIONS(2752), - [aux_sym_proxy_jump_token1] = ACTIONS(2752), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2752), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2752), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2752), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2752), - [aux_sym_rekey_limit_token1] = ACTIONS(2752), - [aux_sym_remote_command_token1] = ACTIONS(2752), - [aux_sym_remote_forward_token1] = ACTIONS(2752), - [aux_sym_request_tty_token1] = ACTIONS(2752), - [aux_sym_required_rsa_size_token1] = ACTIONS(2752), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2752), - [aux_sym_security_key_provider_token1] = ACTIONS(2752), - [aux_sym_send_env_token1] = ACTIONS(2752), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2752), - [aux_sym_server_alive_interval_token1] = ACTIONS(2752), - [aux_sym_session_type_token1] = ACTIONS(2752), - [aux_sym_set_env_token1] = ACTIONS(2752), - [aux_sym_stdin_null_token1] = ACTIONS(2752), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2752), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2752), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2752), - [aux_sym_syslog_facility_token1] = ACTIONS(2752), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2752), - [aux_sym_keep_alive_token1] = ACTIONS(2752), - [aux_sym_tag_token1] = ACTIONS(2752), - [aux_sym_tunnel_token1] = ACTIONS(2754), - [aux_sym_tunnel_device_token1] = ACTIONS(2752), - [aux_sym_update_host_keys_token1] = ACTIONS(2752), - [aux_sym_use_keychain_token1] = ACTIONS(2752), - [aux_sym_use_roaming_token1] = ACTIONS(2752), - [aux_sym_user_token1] = ACTIONS(2754), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2752), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2752), - [aux_sym_visual_host_key_token1] = ACTIONS(2752), - [aux_sym_xauth_location_token1] = ACTIONS(2752), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2763), + [aux_sym_match_token1] = ACTIONS(2763), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2763), + [aux_sym_address_family_token1] = ACTIONS(2763), + [aux_sym_batch_mode_token1] = ACTIONS(2763), + [aux_sym_bind_address_token1] = ACTIONS(2763), + [aux_sym_bind_interface_token1] = ACTIONS(2763), + [aux_sym_canonical_domains_token1] = ACTIONS(2763), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2763), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2763), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2763), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2763), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2763), + [aux_sym_certificate_file_token1] = ACTIONS(2763), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2763), + [aux_sym_channel_timeout_token1] = ACTIONS(2763), + [aux_sym_check_host_ip_token1] = ACTIONS(2763), + [aux_sym_ciphers_token1] = ACTIONS(2763), + [aux_sym_cipher_token1] = ACTIONS(2765), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2763), + [aux_sym_compression_token1] = ACTIONS(2763), + [aux_sym_connection_attempts_token1] = ACTIONS(2763), + [aux_sym_connect_timeout_token1] = ACTIONS(2763), + [aux_sym_control_master_token1] = ACTIONS(2763), + [aux_sym_control_path_token1] = ACTIONS(2763), + [aux_sym_control_persist_token1] = ACTIONS(2763), + [aux_sym_dynamic_forward_token1] = ACTIONS(2763), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2763), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2763), + [aux_sym_escape_char_token1] = ACTIONS(2763), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2763), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2763), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2763), + [aux_sym_forward_agent_token1] = ACTIONS(2763), + [aux_sym_forward_x11_token1] = ACTIONS(2765), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2763), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2763), + [aux_sym_gateway_ports_token1] = ACTIONS(2763), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2763), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2763), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2763), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2763), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2763), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2763), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2763), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2763), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2763), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2763), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2763), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2763), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2763), + [aux_sym_host_key_alias_token1] = ACTIONS(2763), + [aux_sym_hostname_token1] = ACTIONS(2763), + [aux_sym_identities_only_token1] = ACTIONS(2763), + [aux_sym_identity_agent_token1] = ACTIONS(2763), + [aux_sym_identity_file_token1] = ACTIONS(2763), + [aux_sym_ignore_unknown_token1] = ACTIONS(2763), + [aux_sym_include_token1] = ACTIONS(2763), + [aux_sym_ip_qos_token1] = ACTIONS(2763), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2763), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2763), + [aux_sym_kex_algorithms_token1] = ACTIONS(2763), + [aux_sym_known_hosts_command_token1] = ACTIONS(2763), + [aux_sym_local_command_token1] = ACTIONS(2763), + [aux_sym_local_forward_token1] = ACTIONS(2763), + [aux_sym_log_level_token1] = ACTIONS(2763), + [aux_sym_log_verbose_token1] = ACTIONS(2763), + [aux_sym_macs_token1] = ACTIONS(2763), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2763), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2763), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2763), + [aux_sym_password_authentication_token1] = ACTIONS(2763), + [aux_sym_permit_local_command_token1] = ACTIONS(2763), + [aux_sym_permit_remote_open_token1] = ACTIONS(2763), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2763), + [aux_sym_port_token1] = ACTIONS(2763), + [aux_sym_preferred_authentications_token1] = ACTIONS(2763), + [aux_sym_protocol_token1] = ACTIONS(2763), + [aux_sym_proxy_command_token1] = ACTIONS(2763), + [aux_sym_proxy_jump_token1] = ACTIONS(2763), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2763), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2763), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2763), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2763), + [aux_sym_rekey_limit_token1] = ACTIONS(2763), + [aux_sym_remote_command_token1] = ACTIONS(2763), + [aux_sym_remote_forward_token1] = ACTIONS(2763), + [aux_sym_request_tty_token1] = ACTIONS(2763), + [aux_sym_required_rsa_size_token1] = ACTIONS(2763), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2763), + [aux_sym_security_key_provider_token1] = ACTIONS(2763), + [aux_sym_send_env_token1] = ACTIONS(2763), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2763), + [aux_sym_server_alive_interval_token1] = ACTIONS(2763), + [aux_sym_session_type_token1] = ACTIONS(2763), + [aux_sym_set_env_token1] = ACTIONS(2763), + [aux_sym_stdin_null_token1] = ACTIONS(2763), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2763), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2763), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2763), + [aux_sym_syslog_facility_token1] = ACTIONS(2763), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2763), + [aux_sym_keep_alive_token1] = ACTIONS(2763), + [aux_sym_tag_token1] = ACTIONS(2763), + [aux_sym_tunnel_token1] = ACTIONS(2765), + [aux_sym_tunnel_device_token1] = ACTIONS(2763), + [aux_sym_update_host_keys_token1] = ACTIONS(2763), + [aux_sym_use_keychain_token1] = ACTIONS(2763), + [aux_sym_use_roaming_token1] = ACTIONS(2763), + [aux_sym_user_token1] = ACTIONS(2765), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2763), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2763), + [aux_sym_visual_host_key_token1] = ACTIONS(2763), + [aux_sym_xauth_location_token1] = ACTIONS(2763), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(2758), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2760), - [anon_sym_DQUOTE] = ACTIONS(2758), - [aux_sym_match_token1] = ACTIONS(2758), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2758), - [aux_sym_address_family_token1] = ACTIONS(2758), - [aux_sym_batch_mode_token1] = ACTIONS(2758), - [aux_sym_bind_address_token1] = ACTIONS(2758), - [aux_sym_bind_interface_token1] = ACTIONS(2758), - [aux_sym_canonical_domains_token1] = ACTIONS(2758), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2758), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2758), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2758), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2758), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2758), - [aux_sym_certificate_file_token1] = ACTIONS(2758), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2758), - [aux_sym_channel_timeout_token1] = ACTIONS(2758), - [aux_sym_check_host_ip_token1] = ACTIONS(2758), - [aux_sym_ciphers_token1] = ACTIONS(2758), - [aux_sym_cipher_token1] = ACTIONS(2760), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2758), - [aux_sym_compression_token1] = ACTIONS(2758), - [aux_sym_connection_attempts_token1] = ACTIONS(2758), - [aux_sym_connect_timeout_token1] = ACTIONS(2758), - [aux_sym_control_master_token1] = ACTIONS(2758), - [aux_sym_control_path_token1] = ACTIONS(2758), - [aux_sym_control_persist_token1] = ACTIONS(2758), - [aux_sym_dynamic_forward_token1] = ACTIONS(2758), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2758), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2758), - [aux_sym_escape_char_token1] = ACTIONS(2758), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2758), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2758), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2758), - [aux_sym_forward_agent_token1] = ACTIONS(2758), - [aux_sym_forward_x11_token1] = ACTIONS(2760), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2758), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2758), - [aux_sym_gateway_ports_token1] = ACTIONS(2758), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2758), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2758), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2758), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2758), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2758), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2758), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2758), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2758), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2758), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2758), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2758), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2758), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2758), - [aux_sym_host_key_alias_token1] = ACTIONS(2758), - [aux_sym_hostname_token1] = ACTIONS(2758), - [aux_sym_identities_only_token1] = ACTIONS(2758), - [aux_sym_identity_agent_token1] = ACTIONS(2758), - [aux_sym_identity_file_token1] = ACTIONS(2758), - [aux_sym_ignore_unknown_token1] = ACTIONS(2758), - [aux_sym_include_token1] = ACTIONS(2758), - [aux_sym_ip_qos_token1] = ACTIONS(2758), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2758), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2758), - [aux_sym_kex_algorithms_token1] = ACTIONS(2758), - [aux_sym_known_hosts_command_token1] = ACTIONS(2758), - [aux_sym_local_command_token1] = ACTIONS(2758), - [aux_sym_local_forward_token1] = ACTIONS(2758), - [aux_sym_log_level_token1] = ACTIONS(2758), - [aux_sym_log_verbose_token1] = ACTIONS(2758), - [aux_sym_macs_token1] = ACTIONS(2758), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2758), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2758), - [aux_sym_password_authentication_token1] = ACTIONS(2758), - [aux_sym_permit_local_command_token1] = ACTIONS(2758), - [aux_sym_permit_remote_open_token1] = ACTIONS(2758), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2758), - [aux_sym_port_token1] = ACTIONS(2758), - [aux_sym_preferred_authentications_token1] = ACTIONS(2758), - [aux_sym_protocol_token1] = ACTIONS(2758), - [aux_sym_proxy_command_token1] = ACTIONS(2758), - [aux_sym_proxy_jump_token1] = ACTIONS(2758), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2758), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2758), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2758), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2758), - [aux_sym_rekey_limit_token1] = ACTIONS(2758), - [aux_sym_remote_command_token1] = ACTIONS(2758), - [aux_sym_remote_forward_token1] = ACTIONS(2758), - [aux_sym_request_tty_token1] = ACTIONS(2758), - [aux_sym_required_rsa_size_token1] = ACTIONS(2758), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2758), - [aux_sym_security_key_provider_token1] = ACTIONS(2758), - [aux_sym_send_env_token1] = ACTIONS(2758), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2758), - [aux_sym_server_alive_interval_token1] = ACTIONS(2758), - [aux_sym_session_type_token1] = ACTIONS(2758), - [aux_sym_set_env_token1] = ACTIONS(2758), - [aux_sym_stdin_null_token1] = ACTIONS(2758), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2758), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2758), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2758), - [aux_sym_syslog_facility_token1] = ACTIONS(2758), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2758), - [aux_sym_keep_alive_token1] = ACTIONS(2758), - [aux_sym_tag_token1] = ACTIONS(2758), - [aux_sym_tunnel_token1] = ACTIONS(2760), - [aux_sym_tunnel_device_token1] = ACTIONS(2758), - [aux_sym_update_host_keys_token1] = ACTIONS(2758), - [aux_sym_use_keychain_token1] = ACTIONS(2758), - [aux_sym_use_roaming_token1] = ACTIONS(2758), - [aux_sym_user_token1] = ACTIONS(2760), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2758), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2758), - [aux_sym_visual_host_key_token1] = ACTIONS(2758), - [aux_sym_xauth_location_token1] = ACTIONS(2758), + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2769), + [anon_sym_DQUOTE] = ACTIONS(2767), + [aux_sym_match_token1] = ACTIONS(2767), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2767), + [aux_sym_address_family_token1] = ACTIONS(2767), + [aux_sym_batch_mode_token1] = ACTIONS(2767), + [aux_sym_bind_address_token1] = ACTIONS(2767), + [aux_sym_bind_interface_token1] = ACTIONS(2767), + [aux_sym_canonical_domains_token1] = ACTIONS(2767), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2767), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2767), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2767), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2767), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2767), + [aux_sym_certificate_file_token1] = ACTIONS(2767), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2767), + [aux_sym_channel_timeout_token1] = ACTIONS(2767), + [aux_sym_check_host_ip_token1] = ACTIONS(2767), + [aux_sym_ciphers_token1] = ACTIONS(2767), + [aux_sym_cipher_token1] = ACTIONS(2769), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2767), + [aux_sym_compression_token1] = ACTIONS(2767), + [aux_sym_connection_attempts_token1] = ACTIONS(2767), + [aux_sym_connect_timeout_token1] = ACTIONS(2767), + [aux_sym_control_master_token1] = ACTIONS(2767), + [aux_sym_control_path_token1] = ACTIONS(2767), + [aux_sym_control_persist_token1] = ACTIONS(2767), + [aux_sym_dynamic_forward_token1] = ACTIONS(2767), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2767), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2767), + [aux_sym_escape_char_token1] = ACTIONS(2767), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2767), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2767), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2767), + [aux_sym_forward_agent_token1] = ACTIONS(2767), + [aux_sym_forward_x11_token1] = ACTIONS(2769), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2767), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2767), + [aux_sym_gateway_ports_token1] = ACTIONS(2767), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2767), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2767), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2767), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2767), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2767), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2767), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2767), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2767), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2767), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2767), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2767), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2767), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2767), + [aux_sym_host_key_alias_token1] = ACTIONS(2767), + [aux_sym_hostname_token1] = ACTIONS(2767), + [aux_sym_identities_only_token1] = ACTIONS(2767), + [aux_sym_identity_agent_token1] = ACTIONS(2767), + [aux_sym_identity_file_token1] = ACTIONS(2767), + [aux_sym_ignore_unknown_token1] = ACTIONS(2767), + [aux_sym_include_token1] = ACTIONS(2767), + [aux_sym_ip_qos_token1] = ACTIONS(2767), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2767), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2767), + [aux_sym_kex_algorithms_token1] = ACTIONS(2767), + [aux_sym_known_hosts_command_token1] = ACTIONS(2767), + [aux_sym_local_command_token1] = ACTIONS(2767), + [aux_sym_local_forward_token1] = ACTIONS(2767), + [aux_sym_log_level_token1] = ACTIONS(2767), + [aux_sym_log_verbose_token1] = ACTIONS(2767), + [aux_sym_macs_token1] = ACTIONS(2767), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2767), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2767), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2767), + [aux_sym_password_authentication_token1] = ACTIONS(2767), + [aux_sym_permit_local_command_token1] = ACTIONS(2767), + [aux_sym_permit_remote_open_token1] = ACTIONS(2767), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2767), + [aux_sym_port_token1] = ACTIONS(2767), + [aux_sym_preferred_authentications_token1] = ACTIONS(2767), + [aux_sym_protocol_token1] = ACTIONS(2767), + [aux_sym_proxy_command_token1] = ACTIONS(2767), + [aux_sym_proxy_jump_token1] = ACTIONS(2767), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2767), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2767), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2767), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2767), + [aux_sym_rekey_limit_token1] = ACTIONS(2767), + [aux_sym_remote_command_token1] = ACTIONS(2767), + [aux_sym_remote_forward_token1] = ACTIONS(2767), + [aux_sym_request_tty_token1] = ACTIONS(2767), + [aux_sym_required_rsa_size_token1] = ACTIONS(2767), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2767), + [aux_sym_security_key_provider_token1] = ACTIONS(2767), + [aux_sym_send_env_token1] = ACTIONS(2767), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2767), + [aux_sym_server_alive_interval_token1] = ACTIONS(2767), + [aux_sym_session_type_token1] = ACTIONS(2767), + [aux_sym_set_env_token1] = ACTIONS(2767), + [aux_sym_stdin_null_token1] = ACTIONS(2767), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2767), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2767), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2767), + [aux_sym_syslog_facility_token1] = ACTIONS(2767), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2767), + [aux_sym_keep_alive_token1] = ACTIONS(2767), + [aux_sym_tag_token1] = ACTIONS(2767), + [aux_sym_tunnel_token1] = ACTIONS(2769), + [aux_sym_tunnel_device_token1] = ACTIONS(2767), + [aux_sym_update_host_keys_token1] = ACTIONS(2767), + [aux_sym_use_keychain_token1] = ACTIONS(2767), + [aux_sym_use_roaming_token1] = ACTIONS(2767), + [aux_sym_user_token1] = ACTIONS(2769), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2767), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2767), + [aux_sym_visual_host_key_token1] = ACTIONS(2767), + [aux_sym_xauth_location_token1] = ACTIONS(2767), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2764), - [anon_sym_DQUOTE] = ACTIONS(2766), - [aux_sym_match_token1] = ACTIONS(2762), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2762), - [aux_sym_address_family_token1] = ACTIONS(2762), - [aux_sym_batch_mode_token1] = ACTIONS(2762), - [aux_sym_bind_address_token1] = ACTIONS(2762), - [aux_sym_bind_interface_token1] = ACTIONS(2762), - [aux_sym_canonical_domains_token1] = ACTIONS(2762), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2762), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2762), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2762), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2762), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2762), - [aux_sym_certificate_file_token1] = ACTIONS(2762), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2762), - [aux_sym_channel_timeout_token1] = ACTIONS(2762), - [aux_sym_check_host_ip_token1] = ACTIONS(2762), - [aux_sym_ciphers_token1] = ACTIONS(2762), - [aux_sym_cipher_token1] = ACTIONS(2764), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2762), - [aux_sym_compression_token1] = ACTIONS(2762), - [aux_sym_connection_attempts_token1] = ACTIONS(2762), - [aux_sym_connect_timeout_token1] = ACTIONS(2762), - [aux_sym_control_master_token1] = ACTIONS(2762), - [aux_sym_control_path_token1] = ACTIONS(2762), - [aux_sym_control_persist_token1] = ACTIONS(2762), - [aux_sym_dynamic_forward_token1] = ACTIONS(2762), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2762), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2762), - [aux_sym_escape_char_token1] = ACTIONS(2762), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2762), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2762), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2762), - [aux_sym_forward_agent_token1] = ACTIONS(2762), - [aux_sym_forward_x11_token1] = ACTIONS(2764), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2762), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2762), - [aux_sym_gateway_ports_token1] = ACTIONS(2762), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2762), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2762), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2762), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2762), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2762), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2762), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2762), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2762), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2762), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2762), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2762), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2762), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2762), - [aux_sym_host_key_alias_token1] = ACTIONS(2762), - [aux_sym_hostname_token1] = ACTIONS(2762), - [aux_sym_identities_only_token1] = ACTIONS(2762), - [aux_sym_identity_agent_token1] = ACTIONS(2762), - [aux_sym_identity_file_token1] = ACTIONS(2762), - [aux_sym_ignore_unknown_token1] = ACTIONS(2762), - [aux_sym_include_token1] = ACTIONS(2762), - [aux_sym_ip_qos_token1] = ACTIONS(2762), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2762), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2762), - [aux_sym_kex_algorithms_token1] = ACTIONS(2762), - [aux_sym_known_hosts_command_token1] = ACTIONS(2762), - [aux_sym_local_command_token1] = ACTIONS(2762), - [aux_sym_local_forward_token1] = ACTIONS(2762), - [aux_sym_log_level_token1] = ACTIONS(2762), - [aux_sym_log_verbose_token1] = ACTIONS(2762), - [aux_sym_macs_token1] = ACTIONS(2762), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2762), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2762), - [aux_sym_password_authentication_token1] = ACTIONS(2762), - [aux_sym_permit_local_command_token1] = ACTIONS(2762), - [aux_sym_permit_remote_open_token1] = ACTIONS(2762), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2762), - [aux_sym_port_token1] = ACTIONS(2762), - [aux_sym_preferred_authentications_token1] = ACTIONS(2762), - [aux_sym_protocol_token1] = ACTIONS(2762), - [aux_sym_proxy_command_token1] = ACTIONS(2762), - [aux_sym_proxy_jump_token1] = ACTIONS(2762), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2762), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2762), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2762), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2762), - [aux_sym_rekey_limit_token1] = ACTIONS(2762), - [aux_sym_remote_command_token1] = ACTIONS(2762), - [aux_sym_remote_forward_token1] = ACTIONS(2762), - [aux_sym_request_tty_token1] = ACTIONS(2762), - [aux_sym_required_rsa_size_token1] = ACTIONS(2762), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2762), - [aux_sym_security_key_provider_token1] = ACTIONS(2762), - [aux_sym_send_env_token1] = ACTIONS(2762), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2762), - [aux_sym_server_alive_interval_token1] = ACTIONS(2762), - [aux_sym_session_type_token1] = ACTIONS(2762), - [aux_sym_set_env_token1] = ACTIONS(2762), - [aux_sym_stdin_null_token1] = ACTIONS(2762), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2762), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2762), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2762), - [aux_sym_syslog_facility_token1] = ACTIONS(2762), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2762), - [aux_sym_keep_alive_token1] = ACTIONS(2762), - [aux_sym_tag_token1] = ACTIONS(2762), - [aux_sym_tunnel_token1] = ACTIONS(2764), - [aux_sym_tunnel_device_token1] = ACTIONS(2762), - [aux_sym_update_host_keys_token1] = ACTIONS(2762), - [aux_sym_use_keychain_token1] = ACTIONS(2762), - [aux_sym_use_roaming_token1] = ACTIONS(2762), - [aux_sym_user_token1] = ACTIONS(2764), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2762), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2762), - [aux_sym_visual_host_key_token1] = ACTIONS(2762), - [aux_sym_xauth_location_token1] = ACTIONS(2762), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2773), + [anon_sym_DQUOTE] = ACTIONS(2775), + [aux_sym_match_token1] = ACTIONS(2771), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2771), + [aux_sym_address_family_token1] = ACTIONS(2771), + [aux_sym_batch_mode_token1] = ACTIONS(2771), + [aux_sym_bind_address_token1] = ACTIONS(2771), + [aux_sym_bind_interface_token1] = ACTIONS(2771), + [aux_sym_canonical_domains_token1] = ACTIONS(2771), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2771), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2771), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2771), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2771), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2771), + [aux_sym_certificate_file_token1] = ACTIONS(2771), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2771), + [aux_sym_channel_timeout_token1] = ACTIONS(2771), + [aux_sym_check_host_ip_token1] = ACTIONS(2771), + [aux_sym_ciphers_token1] = ACTIONS(2771), + [aux_sym_cipher_token1] = ACTIONS(2773), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2771), + [aux_sym_compression_token1] = ACTIONS(2771), + [aux_sym_connection_attempts_token1] = ACTIONS(2771), + [aux_sym_connect_timeout_token1] = ACTIONS(2771), + [aux_sym_control_master_token1] = ACTIONS(2771), + [aux_sym_control_path_token1] = ACTIONS(2771), + [aux_sym_control_persist_token1] = ACTIONS(2771), + [aux_sym_dynamic_forward_token1] = ACTIONS(2771), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2771), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2771), + [aux_sym_escape_char_token1] = ACTIONS(2771), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2771), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2771), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2771), + [aux_sym_forward_agent_token1] = ACTIONS(2771), + [aux_sym_forward_x11_token1] = ACTIONS(2773), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2771), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2771), + [aux_sym_gateway_ports_token1] = ACTIONS(2771), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2771), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2771), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2771), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2771), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2771), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2771), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2771), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2771), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2771), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2771), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2771), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2771), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2771), + [aux_sym_host_key_alias_token1] = ACTIONS(2771), + [aux_sym_hostname_token1] = ACTIONS(2771), + [aux_sym_identities_only_token1] = ACTIONS(2771), + [aux_sym_identity_agent_token1] = ACTIONS(2771), + [aux_sym_identity_file_token1] = ACTIONS(2771), + [aux_sym_ignore_unknown_token1] = ACTIONS(2771), + [aux_sym_include_token1] = ACTIONS(2771), + [aux_sym_ip_qos_token1] = ACTIONS(2771), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2771), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2771), + [aux_sym_kex_algorithms_token1] = ACTIONS(2771), + [aux_sym_known_hosts_command_token1] = ACTIONS(2771), + [aux_sym_local_command_token1] = ACTIONS(2771), + [aux_sym_local_forward_token1] = ACTIONS(2771), + [aux_sym_log_level_token1] = ACTIONS(2771), + [aux_sym_log_verbose_token1] = ACTIONS(2771), + [aux_sym_macs_token1] = ACTIONS(2771), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2771), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2771), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2771), + [aux_sym_password_authentication_token1] = ACTIONS(2771), + [aux_sym_permit_local_command_token1] = ACTIONS(2771), + [aux_sym_permit_remote_open_token1] = ACTIONS(2771), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2771), + [aux_sym_port_token1] = ACTIONS(2771), + [aux_sym_preferred_authentications_token1] = ACTIONS(2771), + [aux_sym_protocol_token1] = ACTIONS(2771), + [aux_sym_proxy_command_token1] = ACTIONS(2771), + [aux_sym_proxy_jump_token1] = ACTIONS(2771), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2771), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2771), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2771), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2771), + [aux_sym_rekey_limit_token1] = ACTIONS(2771), + [aux_sym_remote_command_token1] = ACTIONS(2771), + [aux_sym_remote_forward_token1] = ACTIONS(2771), + [aux_sym_request_tty_token1] = ACTIONS(2771), + [aux_sym_required_rsa_size_token1] = ACTIONS(2771), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2771), + [aux_sym_security_key_provider_token1] = ACTIONS(2771), + [aux_sym_send_env_token1] = ACTIONS(2771), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2771), + [aux_sym_server_alive_interval_token1] = ACTIONS(2771), + [aux_sym_session_type_token1] = ACTIONS(2771), + [aux_sym_set_env_token1] = ACTIONS(2771), + [aux_sym_stdin_null_token1] = ACTIONS(2771), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2771), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2771), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2771), + [aux_sym_syslog_facility_token1] = ACTIONS(2771), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2771), + [aux_sym_keep_alive_token1] = ACTIONS(2771), + [aux_sym_tag_token1] = ACTIONS(2771), + [aux_sym_tunnel_token1] = ACTIONS(2773), + [aux_sym_tunnel_device_token1] = ACTIONS(2771), + [aux_sym_update_host_keys_token1] = ACTIONS(2771), + [aux_sym_use_keychain_token1] = ACTIONS(2771), + [aux_sym_use_roaming_token1] = ACTIONS(2771), + [aux_sym_user_token1] = ACTIONS(2773), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2771), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2771), + [aux_sym_visual_host_key_token1] = ACTIONS(2771), + [aux_sym_xauth_location_token1] = ACTIONS(2771), }, [396] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2772), - [aux_sym_match_token1] = ACTIONS(2768), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2768), - [aux_sym_address_family_token1] = ACTIONS(2768), - [aux_sym_batch_mode_token1] = ACTIONS(2768), - [aux_sym_bind_address_token1] = ACTIONS(2768), - [aux_sym_bind_interface_token1] = ACTIONS(2768), - [aux_sym_canonical_domains_token1] = ACTIONS(2768), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2768), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2768), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2768), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2768), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2768), - [aux_sym_certificate_file_token1] = ACTIONS(2768), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2768), - [aux_sym_channel_timeout_token1] = ACTIONS(2768), - [aux_sym_check_host_ip_token1] = ACTIONS(2768), - [aux_sym_ciphers_token1] = ACTIONS(2768), - [aux_sym_cipher_token1] = ACTIONS(2770), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2768), - [aux_sym_compression_token1] = ACTIONS(2768), - [aux_sym_connection_attempts_token1] = ACTIONS(2768), - [aux_sym_connect_timeout_token1] = ACTIONS(2768), - [aux_sym_control_master_token1] = ACTIONS(2768), - [aux_sym_control_path_token1] = ACTIONS(2768), - [aux_sym_control_persist_token1] = ACTIONS(2768), - [aux_sym_dynamic_forward_token1] = ACTIONS(2768), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2768), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2768), - [aux_sym_escape_char_token1] = ACTIONS(2768), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2768), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2768), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2768), - [aux_sym_forward_agent_token1] = ACTIONS(2768), - [aux_sym_forward_x11_token1] = ACTIONS(2770), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2768), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2768), - [aux_sym_gateway_ports_token1] = ACTIONS(2768), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2768), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2768), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2768), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2768), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2768), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2768), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2768), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2768), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2768), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2768), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2768), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2768), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2768), - [aux_sym_host_key_alias_token1] = ACTIONS(2768), - [aux_sym_hostname_token1] = ACTIONS(2768), - [aux_sym_identities_only_token1] = ACTIONS(2768), - [aux_sym_identity_agent_token1] = ACTIONS(2768), - [aux_sym_identity_file_token1] = ACTIONS(2768), - [aux_sym_ignore_unknown_token1] = ACTIONS(2768), - [aux_sym_include_token1] = ACTIONS(2768), - [aux_sym_ip_qos_token1] = ACTIONS(2768), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2768), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2768), - [aux_sym_kex_algorithms_token1] = ACTIONS(2768), - [aux_sym_known_hosts_command_token1] = ACTIONS(2768), - [aux_sym_local_command_token1] = ACTIONS(2768), - [aux_sym_local_forward_token1] = ACTIONS(2768), - [aux_sym_log_level_token1] = ACTIONS(2768), - [aux_sym_log_verbose_token1] = ACTIONS(2768), - [aux_sym_macs_token1] = ACTIONS(2768), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2768), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2768), - [aux_sym_password_authentication_token1] = ACTIONS(2768), - [aux_sym_permit_local_command_token1] = ACTIONS(2768), - [aux_sym_permit_remote_open_token1] = ACTIONS(2768), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2768), - [aux_sym_port_token1] = ACTIONS(2768), - [aux_sym_preferred_authentications_token1] = ACTIONS(2768), - [aux_sym_protocol_token1] = ACTIONS(2768), - [aux_sym_proxy_command_token1] = ACTIONS(2768), - [aux_sym_proxy_jump_token1] = ACTIONS(2768), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2768), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2768), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2768), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2768), - [aux_sym_rekey_limit_token1] = ACTIONS(2768), - [aux_sym_remote_command_token1] = ACTIONS(2768), - [aux_sym_remote_forward_token1] = ACTIONS(2768), - [aux_sym_request_tty_token1] = ACTIONS(2768), - [aux_sym_required_rsa_size_token1] = ACTIONS(2768), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2768), - [aux_sym_security_key_provider_token1] = ACTIONS(2768), - [aux_sym_send_env_token1] = ACTIONS(2768), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2768), - [aux_sym_server_alive_interval_token1] = ACTIONS(2768), - [aux_sym_session_type_token1] = ACTIONS(2768), - [aux_sym_set_env_token1] = ACTIONS(2768), - [aux_sym_stdin_null_token1] = ACTIONS(2768), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2768), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2768), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2768), - [aux_sym_syslog_facility_token1] = ACTIONS(2768), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2768), - [aux_sym_keep_alive_token1] = ACTIONS(2768), - [aux_sym_tag_token1] = ACTIONS(2768), - [aux_sym_tunnel_token1] = ACTIONS(2770), - [aux_sym_tunnel_device_token1] = ACTIONS(2768), - [aux_sym_update_host_keys_token1] = ACTIONS(2768), - [aux_sym_use_keychain_token1] = ACTIONS(2768), - [aux_sym_use_roaming_token1] = ACTIONS(2768), - [aux_sym_user_token1] = ACTIONS(2770), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2768), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2768), - [aux_sym_visual_host_key_token1] = ACTIONS(2768), - [aux_sym_xauth_location_token1] = ACTIONS(2768), + [ts_builtin_sym_end] = ACTIONS(2777), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2779), + [anon_sym_DQUOTE] = ACTIONS(2777), + [aux_sym_match_token1] = ACTIONS(2777), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2777), + [aux_sym_address_family_token1] = ACTIONS(2777), + [aux_sym_batch_mode_token1] = ACTIONS(2777), + [aux_sym_bind_address_token1] = ACTIONS(2777), + [aux_sym_bind_interface_token1] = ACTIONS(2777), + [aux_sym_canonical_domains_token1] = ACTIONS(2777), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2777), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2777), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2777), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2777), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2777), + [aux_sym_certificate_file_token1] = ACTIONS(2777), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2777), + [aux_sym_channel_timeout_token1] = ACTIONS(2777), + [aux_sym_check_host_ip_token1] = ACTIONS(2777), + [aux_sym_ciphers_token1] = ACTIONS(2777), + [aux_sym_cipher_token1] = ACTIONS(2779), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2777), + [aux_sym_compression_token1] = ACTIONS(2777), + [aux_sym_connection_attempts_token1] = ACTIONS(2777), + [aux_sym_connect_timeout_token1] = ACTIONS(2777), + [aux_sym_control_master_token1] = ACTIONS(2777), + [aux_sym_control_path_token1] = ACTIONS(2777), + [aux_sym_control_persist_token1] = ACTIONS(2777), + [aux_sym_dynamic_forward_token1] = ACTIONS(2777), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2777), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2777), + [aux_sym_escape_char_token1] = ACTIONS(2777), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2777), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2777), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2777), + [aux_sym_forward_agent_token1] = ACTIONS(2777), + [aux_sym_forward_x11_token1] = ACTIONS(2779), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2777), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2777), + [aux_sym_gateway_ports_token1] = ACTIONS(2777), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2777), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2777), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2777), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2777), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2777), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2777), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2777), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2777), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2777), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2777), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2777), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2777), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2777), + [aux_sym_host_key_alias_token1] = ACTIONS(2777), + [aux_sym_hostname_token1] = ACTIONS(2777), + [aux_sym_identities_only_token1] = ACTIONS(2777), + [aux_sym_identity_agent_token1] = ACTIONS(2777), + [aux_sym_identity_file_token1] = ACTIONS(2777), + [aux_sym_ignore_unknown_token1] = ACTIONS(2777), + [aux_sym_include_token1] = ACTIONS(2777), + [aux_sym_ip_qos_token1] = ACTIONS(2777), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2777), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2777), + [aux_sym_kex_algorithms_token1] = ACTIONS(2777), + [aux_sym_known_hosts_command_token1] = ACTIONS(2777), + [aux_sym_local_command_token1] = ACTIONS(2777), + [aux_sym_local_forward_token1] = ACTIONS(2777), + [aux_sym_log_level_token1] = ACTIONS(2777), + [aux_sym_log_verbose_token1] = ACTIONS(2777), + [aux_sym_macs_token1] = ACTIONS(2777), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2777), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2777), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2777), + [aux_sym_password_authentication_token1] = ACTIONS(2777), + [aux_sym_permit_local_command_token1] = ACTIONS(2777), + [aux_sym_permit_remote_open_token1] = ACTIONS(2777), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2777), + [aux_sym_port_token1] = ACTIONS(2777), + [aux_sym_preferred_authentications_token1] = ACTIONS(2777), + [aux_sym_protocol_token1] = ACTIONS(2777), + [aux_sym_proxy_command_token1] = ACTIONS(2777), + [aux_sym_proxy_jump_token1] = ACTIONS(2777), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2777), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2777), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2777), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2777), + [aux_sym_rekey_limit_token1] = ACTIONS(2777), + [aux_sym_remote_command_token1] = ACTIONS(2777), + [aux_sym_remote_forward_token1] = ACTIONS(2777), + [aux_sym_request_tty_token1] = ACTIONS(2777), + [aux_sym_required_rsa_size_token1] = ACTIONS(2777), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2777), + [aux_sym_security_key_provider_token1] = ACTIONS(2777), + [aux_sym_send_env_token1] = ACTIONS(2777), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2777), + [aux_sym_server_alive_interval_token1] = ACTIONS(2777), + [aux_sym_session_type_token1] = ACTIONS(2777), + [aux_sym_set_env_token1] = ACTIONS(2777), + [aux_sym_stdin_null_token1] = ACTIONS(2777), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2777), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2777), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2777), + [aux_sym_syslog_facility_token1] = ACTIONS(2777), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2777), + [aux_sym_keep_alive_token1] = ACTIONS(2777), + [aux_sym_tag_token1] = ACTIONS(2777), + [aux_sym_tunnel_token1] = ACTIONS(2779), + [aux_sym_tunnel_device_token1] = ACTIONS(2777), + [aux_sym_update_host_keys_token1] = ACTIONS(2777), + [aux_sym_use_keychain_token1] = ACTIONS(2777), + [aux_sym_use_roaming_token1] = ACTIONS(2777), + [aux_sym_user_token1] = ACTIONS(2779), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2777), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2777), + [aux_sym_visual_host_key_token1] = ACTIONS(2777), + [aux_sym_xauth_location_token1] = ACTIONS(2777), }, [397] = { - [ts_builtin_sym_end] = ACTIONS(2774), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2776), - [anon_sym_DQUOTE] = ACTIONS(2778), - [aux_sym_match_token1] = ACTIONS(2774), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2774), - [aux_sym_address_family_token1] = ACTIONS(2774), - [aux_sym_batch_mode_token1] = ACTIONS(2774), - [aux_sym_bind_address_token1] = ACTIONS(2774), - [aux_sym_bind_interface_token1] = ACTIONS(2774), - [aux_sym_canonical_domains_token1] = ACTIONS(2774), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2774), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2774), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2774), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2774), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2774), - [aux_sym_certificate_file_token1] = ACTIONS(2774), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2774), - [aux_sym_channel_timeout_token1] = ACTIONS(2774), - [aux_sym_check_host_ip_token1] = ACTIONS(2774), - [aux_sym_ciphers_token1] = ACTIONS(2774), - [aux_sym_cipher_token1] = ACTIONS(2776), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2774), - [aux_sym_compression_token1] = ACTIONS(2774), - [aux_sym_connection_attempts_token1] = ACTIONS(2774), - [aux_sym_connect_timeout_token1] = ACTIONS(2774), - [aux_sym_control_master_token1] = ACTIONS(2774), - [aux_sym_control_path_token1] = ACTIONS(2774), - [aux_sym_control_persist_token1] = ACTIONS(2774), - [aux_sym_dynamic_forward_token1] = ACTIONS(2774), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2774), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2774), - [aux_sym_escape_char_token1] = ACTIONS(2774), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2774), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2774), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2774), - [aux_sym_forward_agent_token1] = ACTIONS(2774), - [aux_sym_forward_x11_token1] = ACTIONS(2776), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2774), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2774), - [aux_sym_gateway_ports_token1] = ACTIONS(2774), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2774), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2774), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2774), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2774), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2774), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2774), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2774), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2774), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2774), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2774), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2774), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2774), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2774), - [aux_sym_host_key_alias_token1] = ACTIONS(2774), - [aux_sym_hostname_token1] = ACTIONS(2774), - [aux_sym_identities_only_token1] = ACTIONS(2774), - [aux_sym_identity_agent_token1] = ACTIONS(2774), - [aux_sym_identity_file_token1] = ACTIONS(2774), - [aux_sym_ignore_unknown_token1] = ACTIONS(2774), - [aux_sym_include_token1] = ACTIONS(2774), - [aux_sym_ip_qos_token1] = ACTIONS(2774), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2774), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2774), - [aux_sym_kex_algorithms_token1] = ACTIONS(2774), - [aux_sym_known_hosts_command_token1] = ACTIONS(2774), - [aux_sym_local_command_token1] = ACTIONS(2774), - [aux_sym_local_forward_token1] = ACTIONS(2774), - [aux_sym_log_level_token1] = ACTIONS(2774), - [aux_sym_log_verbose_token1] = ACTIONS(2774), - [aux_sym_macs_token1] = ACTIONS(2774), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2774), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2774), - [aux_sym_password_authentication_token1] = ACTIONS(2774), - [aux_sym_permit_local_command_token1] = ACTIONS(2774), - [aux_sym_permit_remote_open_token1] = ACTIONS(2774), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2774), - [aux_sym_port_token1] = ACTIONS(2774), - [aux_sym_preferred_authentications_token1] = ACTIONS(2774), - [aux_sym_protocol_token1] = ACTIONS(2774), - [aux_sym_proxy_command_token1] = ACTIONS(2774), - [aux_sym_proxy_jump_token1] = ACTIONS(2774), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2774), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2774), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2774), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2774), - [aux_sym_rekey_limit_token1] = ACTIONS(2774), - [aux_sym_remote_command_token1] = ACTIONS(2774), - [aux_sym_remote_forward_token1] = ACTIONS(2774), - [aux_sym_request_tty_token1] = ACTIONS(2774), - [aux_sym_required_rsa_size_token1] = ACTIONS(2774), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2774), - [aux_sym_security_key_provider_token1] = ACTIONS(2774), - [aux_sym_send_env_token1] = ACTIONS(2774), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2774), - [aux_sym_server_alive_interval_token1] = ACTIONS(2774), - [aux_sym_session_type_token1] = ACTIONS(2774), - [aux_sym_set_env_token1] = ACTIONS(2774), - [aux_sym_stdin_null_token1] = ACTIONS(2774), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2774), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2774), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2774), - [aux_sym_syslog_facility_token1] = ACTIONS(2774), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2774), - [aux_sym_keep_alive_token1] = ACTIONS(2774), - [aux_sym_tag_token1] = ACTIONS(2774), - [aux_sym_tunnel_token1] = ACTIONS(2776), - [aux_sym_tunnel_device_token1] = ACTIONS(2774), - [aux_sym_update_host_keys_token1] = ACTIONS(2774), - [aux_sym_use_keychain_token1] = ACTIONS(2774), - [aux_sym_use_roaming_token1] = ACTIONS(2774), - [aux_sym_user_token1] = ACTIONS(2776), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2774), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2774), - [aux_sym_visual_host_key_token1] = ACTIONS(2774), - [aux_sym_xauth_location_token1] = ACTIONS(2774), + [ts_builtin_sym_end] = ACTIONS(2781), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2783), + [anon_sym_DQUOTE] = ACTIONS(2785), + [aux_sym_match_token1] = ACTIONS(2781), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2781), + [aux_sym_address_family_token1] = ACTIONS(2781), + [aux_sym_batch_mode_token1] = ACTIONS(2781), + [aux_sym_bind_address_token1] = ACTIONS(2781), + [aux_sym_bind_interface_token1] = ACTIONS(2781), + [aux_sym_canonical_domains_token1] = ACTIONS(2781), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2781), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2781), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2781), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2781), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2781), + [aux_sym_certificate_file_token1] = ACTIONS(2781), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2781), + [aux_sym_channel_timeout_token1] = ACTIONS(2781), + [aux_sym_check_host_ip_token1] = ACTIONS(2781), + [aux_sym_ciphers_token1] = ACTIONS(2781), + [aux_sym_cipher_token1] = ACTIONS(2783), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2781), + [aux_sym_compression_token1] = ACTIONS(2781), + [aux_sym_connection_attempts_token1] = ACTIONS(2781), + [aux_sym_connect_timeout_token1] = ACTIONS(2781), + [aux_sym_control_master_token1] = ACTIONS(2781), + [aux_sym_control_path_token1] = ACTIONS(2781), + [aux_sym_control_persist_token1] = ACTIONS(2781), + [aux_sym_dynamic_forward_token1] = ACTIONS(2781), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2781), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2781), + [aux_sym_escape_char_token1] = ACTIONS(2781), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2781), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2781), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2781), + [aux_sym_forward_agent_token1] = ACTIONS(2781), + [aux_sym_forward_x11_token1] = ACTIONS(2783), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2781), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2781), + [aux_sym_gateway_ports_token1] = ACTIONS(2781), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2781), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2781), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2781), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2781), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2781), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2781), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2781), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2781), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2781), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2781), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2781), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2781), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2781), + [aux_sym_host_key_alias_token1] = ACTIONS(2781), + [aux_sym_hostname_token1] = ACTIONS(2781), + [aux_sym_identities_only_token1] = ACTIONS(2781), + [aux_sym_identity_agent_token1] = ACTIONS(2781), + [aux_sym_identity_file_token1] = ACTIONS(2781), + [aux_sym_ignore_unknown_token1] = ACTIONS(2781), + [aux_sym_include_token1] = ACTIONS(2781), + [aux_sym_ip_qos_token1] = ACTIONS(2781), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2781), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2781), + [aux_sym_kex_algorithms_token1] = ACTIONS(2781), + [aux_sym_known_hosts_command_token1] = ACTIONS(2781), + [aux_sym_local_command_token1] = ACTIONS(2781), + [aux_sym_local_forward_token1] = ACTIONS(2781), + [aux_sym_log_level_token1] = ACTIONS(2781), + [aux_sym_log_verbose_token1] = ACTIONS(2781), + [aux_sym_macs_token1] = ACTIONS(2781), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2781), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2781), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2781), + [aux_sym_password_authentication_token1] = ACTIONS(2781), + [aux_sym_permit_local_command_token1] = ACTIONS(2781), + [aux_sym_permit_remote_open_token1] = ACTIONS(2781), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2781), + [aux_sym_port_token1] = ACTIONS(2781), + [aux_sym_preferred_authentications_token1] = ACTIONS(2781), + [aux_sym_protocol_token1] = ACTIONS(2781), + [aux_sym_proxy_command_token1] = ACTIONS(2781), + [aux_sym_proxy_jump_token1] = ACTIONS(2781), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2781), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2781), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2781), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2781), + [aux_sym_rekey_limit_token1] = ACTIONS(2781), + [aux_sym_remote_command_token1] = ACTIONS(2781), + [aux_sym_remote_forward_token1] = ACTIONS(2781), + [aux_sym_request_tty_token1] = ACTIONS(2781), + [aux_sym_required_rsa_size_token1] = ACTIONS(2781), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2781), + [aux_sym_security_key_provider_token1] = ACTIONS(2781), + [aux_sym_send_env_token1] = ACTIONS(2781), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2781), + [aux_sym_server_alive_interval_token1] = ACTIONS(2781), + [aux_sym_session_type_token1] = ACTIONS(2781), + [aux_sym_set_env_token1] = ACTIONS(2781), + [aux_sym_stdin_null_token1] = ACTIONS(2781), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2781), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2781), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2781), + [aux_sym_syslog_facility_token1] = ACTIONS(2781), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2781), + [aux_sym_keep_alive_token1] = ACTIONS(2781), + [aux_sym_tag_token1] = ACTIONS(2781), + [aux_sym_tunnel_token1] = ACTIONS(2783), + [aux_sym_tunnel_device_token1] = ACTIONS(2781), + [aux_sym_update_host_keys_token1] = ACTIONS(2781), + [aux_sym_use_keychain_token1] = ACTIONS(2781), + [aux_sym_use_roaming_token1] = ACTIONS(2781), + [aux_sym_user_token1] = ACTIONS(2783), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2781), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2781), + [aux_sym_visual_host_key_token1] = ACTIONS(2781), + [aux_sym_xauth_location_token1] = ACTIONS(2781), }, [398] = { - [ts_builtin_sym_end] = ACTIONS(2780), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2782), - [anon_sym_DQUOTE] = ACTIONS(2784), - [aux_sym_match_token1] = ACTIONS(2780), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2780), - [aux_sym_address_family_token1] = ACTIONS(2780), - [aux_sym_batch_mode_token1] = ACTIONS(2780), - [aux_sym_bind_address_token1] = ACTIONS(2780), - [aux_sym_bind_interface_token1] = ACTIONS(2780), - [aux_sym_canonical_domains_token1] = ACTIONS(2780), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2780), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2780), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2780), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2780), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2780), - [aux_sym_certificate_file_token1] = ACTIONS(2780), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2780), - [aux_sym_channel_timeout_token1] = ACTIONS(2780), - [aux_sym_check_host_ip_token1] = ACTIONS(2780), - [aux_sym_ciphers_token1] = ACTIONS(2780), - [aux_sym_cipher_token1] = ACTIONS(2782), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2780), - [aux_sym_compression_token1] = ACTIONS(2780), - [aux_sym_connection_attempts_token1] = ACTIONS(2780), - [aux_sym_connect_timeout_token1] = ACTIONS(2780), - [aux_sym_control_master_token1] = ACTIONS(2780), - [aux_sym_control_path_token1] = ACTIONS(2780), - [aux_sym_control_persist_token1] = ACTIONS(2780), - [aux_sym_dynamic_forward_token1] = ACTIONS(2780), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2780), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2780), - [aux_sym_escape_char_token1] = ACTIONS(2780), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2780), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2780), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2780), - [aux_sym_forward_agent_token1] = ACTIONS(2780), - [aux_sym_forward_x11_token1] = ACTIONS(2782), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2780), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2780), - [aux_sym_gateway_ports_token1] = ACTIONS(2780), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2780), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2780), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2780), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2780), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2780), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2780), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2780), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2780), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2780), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2780), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2780), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2780), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2780), - [aux_sym_host_key_alias_token1] = ACTIONS(2780), - [aux_sym_hostname_token1] = ACTIONS(2780), - [aux_sym_identities_only_token1] = ACTIONS(2780), - [aux_sym_identity_agent_token1] = ACTIONS(2780), - [aux_sym_identity_file_token1] = ACTIONS(2780), - [aux_sym_ignore_unknown_token1] = ACTIONS(2780), - [aux_sym_include_token1] = ACTIONS(2780), - [aux_sym_ip_qos_token1] = ACTIONS(2780), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2780), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2780), - [aux_sym_kex_algorithms_token1] = ACTIONS(2780), - [aux_sym_known_hosts_command_token1] = ACTIONS(2780), - [aux_sym_local_command_token1] = ACTIONS(2780), - [aux_sym_local_forward_token1] = ACTIONS(2780), - [aux_sym_log_level_token1] = ACTIONS(2780), - [aux_sym_log_verbose_token1] = ACTIONS(2780), - [aux_sym_macs_token1] = ACTIONS(2780), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2780), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2780), - [aux_sym_password_authentication_token1] = ACTIONS(2780), - [aux_sym_permit_local_command_token1] = ACTIONS(2780), - [aux_sym_permit_remote_open_token1] = ACTIONS(2780), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2780), - [aux_sym_port_token1] = ACTIONS(2780), - [aux_sym_preferred_authentications_token1] = ACTIONS(2780), - [aux_sym_protocol_token1] = ACTIONS(2780), - [aux_sym_proxy_command_token1] = ACTIONS(2780), - [aux_sym_proxy_jump_token1] = ACTIONS(2780), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2780), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2780), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2780), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2780), - [aux_sym_rekey_limit_token1] = ACTIONS(2780), - [aux_sym_remote_command_token1] = ACTIONS(2780), - [aux_sym_remote_forward_token1] = ACTIONS(2780), - [aux_sym_request_tty_token1] = ACTIONS(2780), - [aux_sym_required_rsa_size_token1] = ACTIONS(2780), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2780), - [aux_sym_security_key_provider_token1] = ACTIONS(2780), - [aux_sym_send_env_token1] = ACTIONS(2780), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2780), - [aux_sym_server_alive_interval_token1] = ACTIONS(2780), - [aux_sym_session_type_token1] = ACTIONS(2780), - [aux_sym_set_env_token1] = ACTIONS(2780), - [aux_sym_stdin_null_token1] = ACTIONS(2780), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2780), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2780), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2780), - [aux_sym_syslog_facility_token1] = ACTIONS(2780), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2780), - [aux_sym_keep_alive_token1] = ACTIONS(2780), - [aux_sym_tag_token1] = ACTIONS(2780), - [aux_sym_tunnel_token1] = ACTIONS(2782), - [aux_sym_tunnel_device_token1] = ACTIONS(2780), - [aux_sym_update_host_keys_token1] = ACTIONS(2780), - [aux_sym_use_keychain_token1] = ACTIONS(2780), - [aux_sym_use_roaming_token1] = ACTIONS(2780), - [aux_sym_user_token1] = ACTIONS(2782), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2780), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2780), - [aux_sym_visual_host_key_token1] = ACTIONS(2780), - [aux_sym_xauth_location_token1] = ACTIONS(2780), + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2789), + [anon_sym_DQUOTE] = ACTIONS(2787), + [aux_sym_match_token1] = ACTIONS(2787), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2787), + [aux_sym_address_family_token1] = ACTIONS(2787), + [aux_sym_batch_mode_token1] = ACTIONS(2787), + [aux_sym_bind_address_token1] = ACTIONS(2787), + [aux_sym_bind_interface_token1] = ACTIONS(2787), + [aux_sym_canonical_domains_token1] = ACTIONS(2787), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2787), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2787), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2787), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2787), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2787), + [aux_sym_certificate_file_token1] = ACTIONS(2787), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2787), + [aux_sym_channel_timeout_token1] = ACTIONS(2787), + [aux_sym_check_host_ip_token1] = ACTIONS(2787), + [aux_sym_ciphers_token1] = ACTIONS(2787), + [aux_sym_cipher_token1] = ACTIONS(2789), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2787), + [aux_sym_compression_token1] = ACTIONS(2787), + [aux_sym_connection_attempts_token1] = ACTIONS(2787), + [aux_sym_connect_timeout_token1] = ACTIONS(2787), + [aux_sym_control_master_token1] = ACTIONS(2787), + [aux_sym_control_path_token1] = ACTIONS(2787), + [aux_sym_control_persist_token1] = ACTIONS(2787), + [aux_sym_dynamic_forward_token1] = ACTIONS(2787), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2787), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2787), + [aux_sym_escape_char_token1] = ACTIONS(2787), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2787), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2787), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2787), + [aux_sym_forward_agent_token1] = ACTIONS(2787), + [aux_sym_forward_x11_token1] = ACTIONS(2789), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2787), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2787), + [aux_sym_gateway_ports_token1] = ACTIONS(2787), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2787), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2787), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2787), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2787), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2787), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2787), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2787), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2787), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2787), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2787), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2787), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2787), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2787), + [aux_sym_host_key_alias_token1] = ACTIONS(2787), + [aux_sym_hostname_token1] = ACTIONS(2787), + [aux_sym_identities_only_token1] = ACTIONS(2787), + [aux_sym_identity_agent_token1] = ACTIONS(2787), + [aux_sym_identity_file_token1] = ACTIONS(2787), + [aux_sym_ignore_unknown_token1] = ACTIONS(2787), + [aux_sym_include_token1] = ACTIONS(2787), + [aux_sym_ip_qos_token1] = ACTIONS(2787), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2787), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2787), + [aux_sym_kex_algorithms_token1] = ACTIONS(2787), + [aux_sym_known_hosts_command_token1] = ACTIONS(2787), + [aux_sym_local_command_token1] = ACTIONS(2787), + [aux_sym_local_forward_token1] = ACTIONS(2787), + [aux_sym_log_level_token1] = ACTIONS(2787), + [aux_sym_log_verbose_token1] = ACTIONS(2787), + [aux_sym_macs_token1] = ACTIONS(2787), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2787), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2787), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2787), + [aux_sym_password_authentication_token1] = ACTIONS(2787), + [aux_sym_permit_local_command_token1] = ACTIONS(2787), + [aux_sym_permit_remote_open_token1] = ACTIONS(2787), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2787), + [aux_sym_port_token1] = ACTIONS(2787), + [aux_sym_preferred_authentications_token1] = ACTIONS(2787), + [aux_sym_protocol_token1] = ACTIONS(2787), + [aux_sym_proxy_command_token1] = ACTIONS(2787), + [aux_sym_proxy_jump_token1] = ACTIONS(2787), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2787), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2787), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2787), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2787), + [aux_sym_rekey_limit_token1] = ACTIONS(2787), + [aux_sym_remote_command_token1] = ACTIONS(2787), + [aux_sym_remote_forward_token1] = ACTIONS(2787), + [aux_sym_request_tty_token1] = ACTIONS(2787), + [aux_sym_required_rsa_size_token1] = ACTIONS(2787), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2787), + [aux_sym_security_key_provider_token1] = ACTIONS(2787), + [aux_sym_send_env_token1] = ACTIONS(2787), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2787), + [aux_sym_server_alive_interval_token1] = ACTIONS(2787), + [aux_sym_session_type_token1] = ACTIONS(2787), + [aux_sym_set_env_token1] = ACTIONS(2787), + [aux_sym_stdin_null_token1] = ACTIONS(2787), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2787), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2787), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2787), + [aux_sym_syslog_facility_token1] = ACTIONS(2787), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2787), + [aux_sym_keep_alive_token1] = ACTIONS(2787), + [aux_sym_tag_token1] = ACTIONS(2787), + [aux_sym_tunnel_token1] = ACTIONS(2789), + [aux_sym_tunnel_device_token1] = ACTIONS(2787), + [aux_sym_update_host_keys_token1] = ACTIONS(2787), + [aux_sym_use_keychain_token1] = ACTIONS(2787), + [aux_sym_use_roaming_token1] = ACTIONS(2787), + [aux_sym_user_token1] = ACTIONS(2789), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2787), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2787), + [aux_sym_visual_host_key_token1] = ACTIONS(2787), + [aux_sym_xauth_location_token1] = ACTIONS(2787), }, [399] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2788), - [anon_sym_DQUOTE] = ACTIONS(2786), - [aux_sym_match_token1] = ACTIONS(2786), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2786), - [aux_sym_address_family_token1] = ACTIONS(2786), - [aux_sym_batch_mode_token1] = ACTIONS(2786), - [aux_sym_bind_address_token1] = ACTIONS(2786), - [aux_sym_bind_interface_token1] = ACTIONS(2786), - [aux_sym_canonical_domains_token1] = ACTIONS(2786), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2786), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2786), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2786), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2786), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2786), - [aux_sym_certificate_file_token1] = ACTIONS(2786), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2786), - [aux_sym_channel_timeout_token1] = ACTIONS(2786), - [aux_sym_check_host_ip_token1] = ACTIONS(2786), - [aux_sym_ciphers_token1] = ACTIONS(2786), - [aux_sym_cipher_token1] = ACTIONS(2788), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2786), - [aux_sym_compression_token1] = ACTIONS(2786), - [aux_sym_connection_attempts_token1] = ACTIONS(2786), - [aux_sym_connect_timeout_token1] = ACTIONS(2786), - [aux_sym_control_master_token1] = ACTIONS(2786), - [aux_sym_control_path_token1] = ACTIONS(2786), - [aux_sym_control_persist_token1] = ACTIONS(2786), - [aux_sym_dynamic_forward_token1] = ACTIONS(2786), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2786), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2786), - [aux_sym_escape_char_token1] = ACTIONS(2786), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2786), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2786), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2786), - [aux_sym_forward_agent_token1] = ACTIONS(2786), - [aux_sym_forward_x11_token1] = ACTIONS(2788), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2786), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2786), - [aux_sym_gateway_ports_token1] = ACTIONS(2786), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2786), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2786), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2786), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2786), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2786), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2786), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2786), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2786), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2786), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2786), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2786), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2786), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2786), - [aux_sym_host_key_alias_token1] = ACTIONS(2786), - [aux_sym_hostname_token1] = ACTIONS(2786), - [aux_sym_identities_only_token1] = ACTIONS(2786), - [aux_sym_identity_agent_token1] = ACTIONS(2786), - [aux_sym_identity_file_token1] = ACTIONS(2786), - [aux_sym_ignore_unknown_token1] = ACTIONS(2786), - [aux_sym_include_token1] = ACTIONS(2786), - [aux_sym_ip_qos_token1] = ACTIONS(2786), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2786), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2786), - [aux_sym_kex_algorithms_token1] = ACTIONS(2786), - [aux_sym_known_hosts_command_token1] = ACTIONS(2786), - [aux_sym_local_command_token1] = ACTIONS(2786), - [aux_sym_local_forward_token1] = ACTIONS(2786), - [aux_sym_log_level_token1] = ACTIONS(2786), - [aux_sym_log_verbose_token1] = ACTIONS(2786), - [aux_sym_macs_token1] = ACTIONS(2786), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2786), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2786), - [aux_sym_password_authentication_token1] = ACTIONS(2786), - [aux_sym_permit_local_command_token1] = ACTIONS(2786), - [aux_sym_permit_remote_open_token1] = ACTIONS(2786), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2786), - [aux_sym_port_token1] = ACTIONS(2786), - [aux_sym_preferred_authentications_token1] = ACTIONS(2786), - [aux_sym_protocol_token1] = ACTIONS(2786), - [aux_sym_proxy_command_token1] = ACTIONS(2786), - [aux_sym_proxy_jump_token1] = ACTIONS(2786), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2786), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2786), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2786), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2786), - [aux_sym_rekey_limit_token1] = ACTIONS(2786), - [aux_sym_remote_command_token1] = ACTIONS(2786), - [aux_sym_remote_forward_token1] = ACTIONS(2786), - [aux_sym_request_tty_token1] = ACTIONS(2786), - [aux_sym_required_rsa_size_token1] = ACTIONS(2786), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2786), - [aux_sym_security_key_provider_token1] = ACTIONS(2786), - [aux_sym_send_env_token1] = ACTIONS(2786), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2786), - [aux_sym_server_alive_interval_token1] = ACTIONS(2786), - [aux_sym_session_type_token1] = ACTIONS(2786), - [aux_sym_set_env_token1] = ACTIONS(2786), - [aux_sym_stdin_null_token1] = ACTIONS(2786), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2786), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2786), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2786), - [aux_sym_syslog_facility_token1] = ACTIONS(2786), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2786), - [aux_sym_keep_alive_token1] = ACTIONS(2786), - [aux_sym_tag_token1] = ACTIONS(2786), - [aux_sym_tunnel_token1] = ACTIONS(2788), - [aux_sym_tunnel_device_token1] = ACTIONS(2786), - [aux_sym_update_host_keys_token1] = ACTIONS(2786), - [aux_sym_use_keychain_token1] = ACTIONS(2786), - [aux_sym_use_roaming_token1] = ACTIONS(2786), - [aux_sym_user_token1] = ACTIONS(2788), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2786), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2786), - [aux_sym_visual_host_key_token1] = ACTIONS(2786), - [aux_sym_xauth_location_token1] = ACTIONS(2786), + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2793), + [anon_sym_DQUOTE] = ACTIONS(2795), + [aux_sym_match_token1] = ACTIONS(2791), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2791), + [aux_sym_address_family_token1] = ACTIONS(2791), + [aux_sym_batch_mode_token1] = ACTIONS(2791), + [aux_sym_bind_address_token1] = ACTIONS(2791), + [aux_sym_bind_interface_token1] = ACTIONS(2791), + [aux_sym_canonical_domains_token1] = ACTIONS(2791), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2791), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2791), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2791), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2791), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2791), + [aux_sym_certificate_file_token1] = ACTIONS(2791), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2791), + [aux_sym_channel_timeout_token1] = ACTIONS(2791), + [aux_sym_check_host_ip_token1] = ACTIONS(2791), + [aux_sym_ciphers_token1] = ACTIONS(2791), + [aux_sym_cipher_token1] = ACTIONS(2793), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2791), + [aux_sym_compression_token1] = ACTIONS(2791), + [aux_sym_connection_attempts_token1] = ACTIONS(2791), + [aux_sym_connect_timeout_token1] = ACTIONS(2791), + [aux_sym_control_master_token1] = ACTIONS(2791), + [aux_sym_control_path_token1] = ACTIONS(2791), + [aux_sym_control_persist_token1] = ACTIONS(2791), + [aux_sym_dynamic_forward_token1] = ACTIONS(2791), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2791), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2791), + [aux_sym_escape_char_token1] = ACTIONS(2791), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2791), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2791), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2791), + [aux_sym_forward_agent_token1] = ACTIONS(2791), + [aux_sym_forward_x11_token1] = ACTIONS(2793), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2791), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2791), + [aux_sym_gateway_ports_token1] = ACTIONS(2791), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2791), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2791), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2791), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2791), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2791), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2791), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2791), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2791), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2791), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2791), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2791), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2791), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2791), + [aux_sym_host_key_alias_token1] = ACTIONS(2791), + [aux_sym_hostname_token1] = ACTIONS(2791), + [aux_sym_identities_only_token1] = ACTIONS(2791), + [aux_sym_identity_agent_token1] = ACTIONS(2791), + [aux_sym_identity_file_token1] = ACTIONS(2791), + [aux_sym_ignore_unknown_token1] = ACTIONS(2791), + [aux_sym_include_token1] = ACTIONS(2791), + [aux_sym_ip_qos_token1] = ACTIONS(2791), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2791), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2791), + [aux_sym_kex_algorithms_token1] = ACTIONS(2791), + [aux_sym_known_hosts_command_token1] = ACTIONS(2791), + [aux_sym_local_command_token1] = ACTIONS(2791), + [aux_sym_local_forward_token1] = ACTIONS(2791), + [aux_sym_log_level_token1] = ACTIONS(2791), + [aux_sym_log_verbose_token1] = ACTIONS(2791), + [aux_sym_macs_token1] = ACTIONS(2791), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2791), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2791), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2791), + [aux_sym_password_authentication_token1] = ACTIONS(2791), + [aux_sym_permit_local_command_token1] = ACTIONS(2791), + [aux_sym_permit_remote_open_token1] = ACTIONS(2791), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2791), + [aux_sym_port_token1] = ACTIONS(2791), + [aux_sym_preferred_authentications_token1] = ACTIONS(2791), + [aux_sym_protocol_token1] = ACTIONS(2791), + [aux_sym_proxy_command_token1] = ACTIONS(2791), + [aux_sym_proxy_jump_token1] = ACTIONS(2791), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2791), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2791), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2791), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2791), + [aux_sym_rekey_limit_token1] = ACTIONS(2791), + [aux_sym_remote_command_token1] = ACTIONS(2791), + [aux_sym_remote_forward_token1] = ACTIONS(2791), + [aux_sym_request_tty_token1] = ACTIONS(2791), + [aux_sym_required_rsa_size_token1] = ACTIONS(2791), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2791), + [aux_sym_security_key_provider_token1] = ACTIONS(2791), + [aux_sym_send_env_token1] = ACTIONS(2791), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2791), + [aux_sym_server_alive_interval_token1] = ACTIONS(2791), + [aux_sym_session_type_token1] = ACTIONS(2791), + [aux_sym_set_env_token1] = ACTIONS(2791), + [aux_sym_stdin_null_token1] = ACTIONS(2791), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2791), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2791), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2791), + [aux_sym_syslog_facility_token1] = ACTIONS(2791), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2791), + [aux_sym_keep_alive_token1] = ACTIONS(2791), + [aux_sym_tag_token1] = ACTIONS(2791), + [aux_sym_tunnel_token1] = ACTIONS(2793), + [aux_sym_tunnel_device_token1] = ACTIONS(2791), + [aux_sym_update_host_keys_token1] = ACTIONS(2791), + [aux_sym_use_keychain_token1] = ACTIONS(2791), + [aux_sym_use_roaming_token1] = ACTIONS(2791), + [aux_sym_user_token1] = ACTIONS(2793), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2791), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2791), + [aux_sym_visual_host_key_token1] = ACTIONS(2791), + [aux_sym_xauth_location_token1] = ACTIONS(2791), }, [400] = { - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2792), - [anon_sym_DQUOTE] = ACTIONS(2790), - [aux_sym_match_token1] = ACTIONS(2790), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2790), - [aux_sym_address_family_token1] = ACTIONS(2790), - [aux_sym_batch_mode_token1] = ACTIONS(2790), - [aux_sym_bind_address_token1] = ACTIONS(2790), - [aux_sym_bind_interface_token1] = ACTIONS(2790), - [aux_sym_canonical_domains_token1] = ACTIONS(2790), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2790), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2790), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2790), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2790), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2790), - [aux_sym_certificate_file_token1] = ACTIONS(2790), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2790), - [aux_sym_channel_timeout_token1] = ACTIONS(2790), - [aux_sym_check_host_ip_token1] = ACTIONS(2790), - [aux_sym_ciphers_token1] = ACTIONS(2790), - [aux_sym_cipher_token1] = ACTIONS(2792), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2790), - [aux_sym_compression_token1] = ACTIONS(2790), - [aux_sym_connection_attempts_token1] = ACTIONS(2790), - [aux_sym_connect_timeout_token1] = ACTIONS(2790), - [aux_sym_control_master_token1] = ACTIONS(2790), - [aux_sym_control_path_token1] = ACTIONS(2790), - [aux_sym_control_persist_token1] = ACTIONS(2790), - [aux_sym_dynamic_forward_token1] = ACTIONS(2790), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2790), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2790), - [aux_sym_escape_char_token1] = ACTIONS(2790), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2790), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2790), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2790), - [aux_sym_forward_agent_token1] = ACTIONS(2790), - [aux_sym_forward_x11_token1] = ACTIONS(2792), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2790), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2790), - [aux_sym_gateway_ports_token1] = ACTIONS(2790), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2790), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2790), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2790), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2790), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2790), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2790), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2790), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2790), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2790), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2790), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2790), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2790), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2790), - [aux_sym_host_key_alias_token1] = ACTIONS(2790), - [aux_sym_hostname_token1] = ACTIONS(2790), - [aux_sym_identities_only_token1] = ACTIONS(2790), - [aux_sym_identity_agent_token1] = ACTIONS(2790), - [aux_sym_identity_file_token1] = ACTIONS(2790), - [aux_sym_ignore_unknown_token1] = ACTIONS(2790), - [aux_sym_include_token1] = ACTIONS(2790), - [aux_sym_ip_qos_token1] = ACTIONS(2790), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2790), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2790), - [aux_sym_kex_algorithms_token1] = ACTIONS(2790), - [aux_sym_known_hosts_command_token1] = ACTIONS(2790), - [aux_sym_local_command_token1] = ACTIONS(2790), - [aux_sym_local_forward_token1] = ACTIONS(2790), - [aux_sym_log_level_token1] = ACTIONS(2790), - [aux_sym_log_verbose_token1] = ACTIONS(2790), - [aux_sym_macs_token1] = ACTIONS(2790), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2790), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2790), - [aux_sym_password_authentication_token1] = ACTIONS(2790), - [aux_sym_permit_local_command_token1] = ACTIONS(2790), - [aux_sym_permit_remote_open_token1] = ACTIONS(2790), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2790), - [aux_sym_port_token1] = ACTIONS(2790), - [aux_sym_preferred_authentications_token1] = ACTIONS(2790), - [aux_sym_protocol_token1] = ACTIONS(2790), - [aux_sym_proxy_command_token1] = ACTIONS(2790), - [aux_sym_proxy_jump_token1] = ACTIONS(2790), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2790), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2790), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2790), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2790), - [aux_sym_rekey_limit_token1] = ACTIONS(2790), - [aux_sym_remote_command_token1] = ACTIONS(2790), - [aux_sym_remote_forward_token1] = ACTIONS(2790), - [aux_sym_request_tty_token1] = ACTIONS(2790), - [aux_sym_required_rsa_size_token1] = ACTIONS(2790), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2790), - [aux_sym_security_key_provider_token1] = ACTIONS(2790), - [aux_sym_send_env_token1] = ACTIONS(2790), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2790), - [aux_sym_server_alive_interval_token1] = ACTIONS(2790), - [aux_sym_session_type_token1] = ACTIONS(2790), - [aux_sym_set_env_token1] = ACTIONS(2790), - [aux_sym_stdin_null_token1] = ACTIONS(2790), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2790), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2790), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2790), - [aux_sym_syslog_facility_token1] = ACTIONS(2790), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2790), - [aux_sym_keep_alive_token1] = ACTIONS(2790), - [aux_sym_tag_token1] = ACTIONS(2790), - [aux_sym_tunnel_token1] = ACTIONS(2792), - [aux_sym_tunnel_device_token1] = ACTIONS(2790), - [aux_sym_update_host_keys_token1] = ACTIONS(2790), - [aux_sym_use_keychain_token1] = ACTIONS(2790), - [aux_sym_use_roaming_token1] = ACTIONS(2790), - [aux_sym_user_token1] = ACTIONS(2792), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2790), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2790), - [aux_sym_visual_host_key_token1] = ACTIONS(2790), - [aux_sym_xauth_location_token1] = ACTIONS(2790), + [ts_builtin_sym_end] = ACTIONS(2797), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2799), + [anon_sym_DQUOTE] = ACTIONS(2801), + [aux_sym_match_token1] = ACTIONS(2797), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2797), + [aux_sym_address_family_token1] = ACTIONS(2797), + [aux_sym_batch_mode_token1] = ACTIONS(2797), + [aux_sym_bind_address_token1] = ACTIONS(2797), + [aux_sym_bind_interface_token1] = ACTIONS(2797), + [aux_sym_canonical_domains_token1] = ACTIONS(2797), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2797), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2797), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2797), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2797), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2797), + [aux_sym_certificate_file_token1] = ACTIONS(2797), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2797), + [aux_sym_channel_timeout_token1] = ACTIONS(2797), + [aux_sym_check_host_ip_token1] = ACTIONS(2797), + [aux_sym_ciphers_token1] = ACTIONS(2797), + [aux_sym_cipher_token1] = ACTIONS(2799), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2797), + [aux_sym_compression_token1] = ACTIONS(2797), + [aux_sym_connection_attempts_token1] = ACTIONS(2797), + [aux_sym_connect_timeout_token1] = ACTIONS(2797), + [aux_sym_control_master_token1] = ACTIONS(2797), + [aux_sym_control_path_token1] = ACTIONS(2797), + [aux_sym_control_persist_token1] = ACTIONS(2797), + [aux_sym_dynamic_forward_token1] = ACTIONS(2797), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2797), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2797), + [aux_sym_escape_char_token1] = ACTIONS(2797), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2797), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2797), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2797), + [aux_sym_forward_agent_token1] = ACTIONS(2797), + [aux_sym_forward_x11_token1] = ACTIONS(2799), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2797), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2797), + [aux_sym_gateway_ports_token1] = ACTIONS(2797), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2797), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2797), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2797), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2797), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2797), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2797), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2797), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2797), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2797), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2797), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2797), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2797), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2797), + [aux_sym_host_key_alias_token1] = ACTIONS(2797), + [aux_sym_hostname_token1] = ACTIONS(2797), + [aux_sym_identities_only_token1] = ACTIONS(2797), + [aux_sym_identity_agent_token1] = ACTIONS(2797), + [aux_sym_identity_file_token1] = ACTIONS(2797), + [aux_sym_ignore_unknown_token1] = ACTIONS(2797), + [aux_sym_include_token1] = ACTIONS(2797), + [aux_sym_ip_qos_token1] = ACTIONS(2797), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2797), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2797), + [aux_sym_kex_algorithms_token1] = ACTIONS(2797), + [aux_sym_known_hosts_command_token1] = ACTIONS(2797), + [aux_sym_local_command_token1] = ACTIONS(2797), + [aux_sym_local_forward_token1] = ACTIONS(2797), + [aux_sym_log_level_token1] = ACTIONS(2797), + [aux_sym_log_verbose_token1] = ACTIONS(2797), + [aux_sym_macs_token1] = ACTIONS(2797), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2797), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2797), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2797), + [aux_sym_password_authentication_token1] = ACTIONS(2797), + [aux_sym_permit_local_command_token1] = ACTIONS(2797), + [aux_sym_permit_remote_open_token1] = ACTIONS(2797), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2797), + [aux_sym_port_token1] = ACTIONS(2797), + [aux_sym_preferred_authentications_token1] = ACTIONS(2797), + [aux_sym_protocol_token1] = ACTIONS(2797), + [aux_sym_proxy_command_token1] = ACTIONS(2797), + [aux_sym_proxy_jump_token1] = ACTIONS(2797), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2797), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2797), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2797), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2797), + [aux_sym_rekey_limit_token1] = ACTIONS(2797), + [aux_sym_remote_command_token1] = ACTIONS(2797), + [aux_sym_remote_forward_token1] = ACTIONS(2797), + [aux_sym_request_tty_token1] = ACTIONS(2797), + [aux_sym_required_rsa_size_token1] = ACTIONS(2797), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2797), + [aux_sym_security_key_provider_token1] = ACTIONS(2797), + [aux_sym_send_env_token1] = ACTIONS(2797), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2797), + [aux_sym_server_alive_interval_token1] = ACTIONS(2797), + [aux_sym_session_type_token1] = ACTIONS(2797), + [aux_sym_set_env_token1] = ACTIONS(2797), + [aux_sym_stdin_null_token1] = ACTIONS(2797), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2797), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2797), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2797), + [aux_sym_syslog_facility_token1] = ACTIONS(2797), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2797), + [aux_sym_keep_alive_token1] = ACTIONS(2797), + [aux_sym_tag_token1] = ACTIONS(2797), + [aux_sym_tunnel_token1] = ACTIONS(2799), + [aux_sym_tunnel_device_token1] = ACTIONS(2797), + [aux_sym_update_host_keys_token1] = ACTIONS(2797), + [aux_sym_use_keychain_token1] = ACTIONS(2797), + [aux_sym_use_roaming_token1] = ACTIONS(2797), + [aux_sym_user_token1] = ACTIONS(2799), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2797), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2797), + [aux_sym_visual_host_key_token1] = ACTIONS(2797), + [aux_sym_xauth_location_token1] = ACTIONS(2797), }, [401] = { - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2796), - [anon_sym_DQUOTE] = ACTIONS(2798), - [aux_sym_match_token1] = ACTIONS(2794), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2794), - [aux_sym_address_family_token1] = ACTIONS(2794), - [aux_sym_batch_mode_token1] = ACTIONS(2794), - [aux_sym_bind_address_token1] = ACTIONS(2794), - [aux_sym_bind_interface_token1] = ACTIONS(2794), - [aux_sym_canonical_domains_token1] = ACTIONS(2794), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2794), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2794), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2794), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2794), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2794), - [aux_sym_certificate_file_token1] = ACTIONS(2794), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2794), - [aux_sym_channel_timeout_token1] = ACTIONS(2794), - [aux_sym_check_host_ip_token1] = ACTIONS(2794), - [aux_sym_ciphers_token1] = ACTIONS(2794), - [aux_sym_cipher_token1] = ACTIONS(2796), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2794), - [aux_sym_compression_token1] = ACTIONS(2794), - [aux_sym_connection_attempts_token1] = ACTIONS(2794), - [aux_sym_connect_timeout_token1] = ACTIONS(2794), - [aux_sym_control_master_token1] = ACTIONS(2794), - [aux_sym_control_path_token1] = ACTIONS(2794), - [aux_sym_control_persist_token1] = ACTIONS(2794), - [aux_sym_dynamic_forward_token1] = ACTIONS(2794), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2794), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2794), - [aux_sym_escape_char_token1] = ACTIONS(2794), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2794), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2794), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2794), - [aux_sym_forward_agent_token1] = ACTIONS(2794), - [aux_sym_forward_x11_token1] = ACTIONS(2796), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2794), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2794), - [aux_sym_gateway_ports_token1] = ACTIONS(2794), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2794), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2794), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2794), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2794), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2794), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2794), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2794), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2794), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2794), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2794), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2794), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2794), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2794), - [aux_sym_host_key_alias_token1] = ACTIONS(2794), - [aux_sym_hostname_token1] = ACTIONS(2794), - [aux_sym_identities_only_token1] = ACTIONS(2794), - [aux_sym_identity_agent_token1] = ACTIONS(2794), - [aux_sym_identity_file_token1] = ACTIONS(2794), - [aux_sym_ignore_unknown_token1] = ACTIONS(2794), - [aux_sym_include_token1] = ACTIONS(2794), - [aux_sym_ip_qos_token1] = ACTIONS(2794), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2794), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2794), - [aux_sym_kex_algorithms_token1] = ACTIONS(2794), - [aux_sym_known_hosts_command_token1] = ACTIONS(2794), - [aux_sym_local_command_token1] = ACTIONS(2794), - [aux_sym_local_forward_token1] = ACTIONS(2794), - [aux_sym_log_level_token1] = ACTIONS(2794), - [aux_sym_log_verbose_token1] = ACTIONS(2794), - [aux_sym_macs_token1] = ACTIONS(2794), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2794), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2794), - [aux_sym_password_authentication_token1] = ACTIONS(2794), - [aux_sym_permit_local_command_token1] = ACTIONS(2794), - [aux_sym_permit_remote_open_token1] = ACTIONS(2794), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2794), - [aux_sym_port_token1] = ACTIONS(2794), - [aux_sym_preferred_authentications_token1] = ACTIONS(2794), - [aux_sym_protocol_token1] = ACTIONS(2794), - [aux_sym_proxy_command_token1] = ACTIONS(2794), - [aux_sym_proxy_jump_token1] = ACTIONS(2794), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2794), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2794), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2794), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2794), - [aux_sym_rekey_limit_token1] = ACTIONS(2794), - [aux_sym_remote_command_token1] = ACTIONS(2794), - [aux_sym_remote_forward_token1] = ACTIONS(2794), - [aux_sym_request_tty_token1] = ACTIONS(2794), - [aux_sym_required_rsa_size_token1] = ACTIONS(2794), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2794), - [aux_sym_security_key_provider_token1] = ACTIONS(2794), - [aux_sym_send_env_token1] = ACTIONS(2794), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2794), - [aux_sym_server_alive_interval_token1] = ACTIONS(2794), - [aux_sym_session_type_token1] = ACTIONS(2794), - [aux_sym_set_env_token1] = ACTIONS(2794), - [aux_sym_stdin_null_token1] = ACTIONS(2794), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2794), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2794), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2794), - [aux_sym_syslog_facility_token1] = ACTIONS(2794), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2794), - [aux_sym_keep_alive_token1] = ACTIONS(2794), - [aux_sym_tag_token1] = ACTIONS(2794), - [aux_sym_tunnel_token1] = ACTIONS(2796), - [aux_sym_tunnel_device_token1] = ACTIONS(2794), - [aux_sym_update_host_keys_token1] = ACTIONS(2794), - [aux_sym_use_keychain_token1] = ACTIONS(2794), - [aux_sym_use_roaming_token1] = ACTIONS(2794), - [aux_sym_user_token1] = ACTIONS(2796), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2794), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2794), - [aux_sym_visual_host_key_token1] = ACTIONS(2794), - [aux_sym_xauth_location_token1] = ACTIONS(2794), + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2805), + [anon_sym_DQUOTE] = ACTIONS(2803), + [aux_sym_match_token1] = ACTIONS(2803), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2803), + [aux_sym_address_family_token1] = ACTIONS(2803), + [aux_sym_batch_mode_token1] = ACTIONS(2803), + [aux_sym_bind_address_token1] = ACTIONS(2803), + [aux_sym_bind_interface_token1] = ACTIONS(2803), + [aux_sym_canonical_domains_token1] = ACTIONS(2803), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2803), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2803), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2803), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2803), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2803), + [aux_sym_certificate_file_token1] = ACTIONS(2803), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2803), + [aux_sym_channel_timeout_token1] = ACTIONS(2803), + [aux_sym_check_host_ip_token1] = ACTIONS(2803), + [aux_sym_ciphers_token1] = ACTIONS(2803), + [aux_sym_cipher_token1] = ACTIONS(2805), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2803), + [aux_sym_compression_token1] = ACTIONS(2803), + [aux_sym_connection_attempts_token1] = ACTIONS(2803), + [aux_sym_connect_timeout_token1] = ACTIONS(2803), + [aux_sym_control_master_token1] = ACTIONS(2803), + [aux_sym_control_path_token1] = ACTIONS(2803), + [aux_sym_control_persist_token1] = ACTIONS(2803), + [aux_sym_dynamic_forward_token1] = ACTIONS(2803), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2803), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2803), + [aux_sym_escape_char_token1] = ACTIONS(2803), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2803), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2803), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2803), + [aux_sym_forward_agent_token1] = ACTIONS(2803), + [aux_sym_forward_x11_token1] = ACTIONS(2805), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2803), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2803), + [aux_sym_gateway_ports_token1] = ACTIONS(2803), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2803), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2803), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2803), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2803), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2803), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2803), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2803), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2803), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2803), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2803), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2803), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2803), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2803), + [aux_sym_host_key_alias_token1] = ACTIONS(2803), + [aux_sym_hostname_token1] = ACTIONS(2803), + [aux_sym_identities_only_token1] = ACTIONS(2803), + [aux_sym_identity_agent_token1] = ACTIONS(2803), + [aux_sym_identity_file_token1] = ACTIONS(2803), + [aux_sym_ignore_unknown_token1] = ACTIONS(2803), + [aux_sym_include_token1] = ACTIONS(2803), + [aux_sym_ip_qos_token1] = ACTIONS(2803), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2803), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2803), + [aux_sym_kex_algorithms_token1] = ACTIONS(2803), + [aux_sym_known_hosts_command_token1] = ACTIONS(2803), + [aux_sym_local_command_token1] = ACTIONS(2803), + [aux_sym_local_forward_token1] = ACTIONS(2803), + [aux_sym_log_level_token1] = ACTIONS(2803), + [aux_sym_log_verbose_token1] = ACTIONS(2803), + [aux_sym_macs_token1] = ACTIONS(2803), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2803), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2803), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2803), + [aux_sym_password_authentication_token1] = ACTIONS(2803), + [aux_sym_permit_local_command_token1] = ACTIONS(2803), + [aux_sym_permit_remote_open_token1] = ACTIONS(2803), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2803), + [aux_sym_port_token1] = ACTIONS(2803), + [aux_sym_preferred_authentications_token1] = ACTIONS(2803), + [aux_sym_protocol_token1] = ACTIONS(2803), + [aux_sym_proxy_command_token1] = ACTIONS(2803), + [aux_sym_proxy_jump_token1] = ACTIONS(2803), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2803), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2803), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2803), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2803), + [aux_sym_rekey_limit_token1] = ACTIONS(2803), + [aux_sym_remote_command_token1] = ACTIONS(2803), + [aux_sym_remote_forward_token1] = ACTIONS(2803), + [aux_sym_request_tty_token1] = ACTIONS(2803), + [aux_sym_required_rsa_size_token1] = ACTIONS(2803), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2803), + [aux_sym_security_key_provider_token1] = ACTIONS(2803), + [aux_sym_send_env_token1] = ACTIONS(2803), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2803), + [aux_sym_server_alive_interval_token1] = ACTIONS(2803), + [aux_sym_session_type_token1] = ACTIONS(2803), + [aux_sym_set_env_token1] = ACTIONS(2803), + [aux_sym_stdin_null_token1] = ACTIONS(2803), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2803), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2803), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2803), + [aux_sym_syslog_facility_token1] = ACTIONS(2803), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2803), + [aux_sym_keep_alive_token1] = ACTIONS(2803), + [aux_sym_tag_token1] = ACTIONS(2803), + [aux_sym_tunnel_token1] = ACTIONS(2805), + [aux_sym_tunnel_device_token1] = ACTIONS(2803), + [aux_sym_update_host_keys_token1] = ACTIONS(2803), + [aux_sym_use_keychain_token1] = ACTIONS(2803), + [aux_sym_use_roaming_token1] = ACTIONS(2803), + [aux_sym_user_token1] = ACTIONS(2805), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2803), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2803), + [aux_sym_visual_host_key_token1] = ACTIONS(2803), + [aux_sym_xauth_location_token1] = ACTIONS(2803), }, [402] = { - [ts_builtin_sym_end] = ACTIONS(2800), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2802), - [anon_sym_DQUOTE] = ACTIONS(2804), - [aux_sym_match_token1] = ACTIONS(2800), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2800), - [aux_sym_address_family_token1] = ACTIONS(2800), - [aux_sym_batch_mode_token1] = ACTIONS(2800), - [aux_sym_bind_address_token1] = ACTIONS(2800), - [aux_sym_bind_interface_token1] = ACTIONS(2800), - [aux_sym_canonical_domains_token1] = ACTIONS(2800), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2800), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2800), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2800), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2800), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2800), - [aux_sym_certificate_file_token1] = ACTIONS(2800), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2800), - [aux_sym_channel_timeout_token1] = ACTIONS(2800), - [aux_sym_check_host_ip_token1] = ACTIONS(2800), - [aux_sym_ciphers_token1] = ACTIONS(2800), - [aux_sym_cipher_token1] = ACTIONS(2802), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2800), - [aux_sym_compression_token1] = ACTIONS(2800), - [aux_sym_connection_attempts_token1] = ACTIONS(2800), - [aux_sym_connect_timeout_token1] = ACTIONS(2800), - [aux_sym_control_master_token1] = ACTIONS(2800), - [aux_sym_control_path_token1] = ACTIONS(2800), - [aux_sym_control_persist_token1] = ACTIONS(2800), - [aux_sym_dynamic_forward_token1] = ACTIONS(2800), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2800), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2800), - [aux_sym_escape_char_token1] = ACTIONS(2800), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2800), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2800), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2800), - [aux_sym_forward_agent_token1] = ACTIONS(2800), - [aux_sym_forward_x11_token1] = ACTIONS(2802), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2800), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2800), - [aux_sym_gateway_ports_token1] = ACTIONS(2800), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2800), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2800), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2800), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2800), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2800), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2800), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2800), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2800), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2800), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2800), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2800), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2800), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2800), - [aux_sym_host_key_alias_token1] = ACTIONS(2800), - [aux_sym_hostname_token1] = ACTIONS(2800), - [aux_sym_identities_only_token1] = ACTIONS(2800), - [aux_sym_identity_agent_token1] = ACTIONS(2800), - [aux_sym_identity_file_token1] = ACTIONS(2800), - [aux_sym_ignore_unknown_token1] = ACTIONS(2800), - [aux_sym_include_token1] = ACTIONS(2800), - [aux_sym_ip_qos_token1] = ACTIONS(2800), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2800), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2800), - [aux_sym_kex_algorithms_token1] = ACTIONS(2800), - [aux_sym_known_hosts_command_token1] = ACTIONS(2800), - [aux_sym_local_command_token1] = ACTIONS(2800), - [aux_sym_local_forward_token1] = ACTIONS(2800), - [aux_sym_log_level_token1] = ACTIONS(2800), - [aux_sym_log_verbose_token1] = ACTIONS(2800), - [aux_sym_macs_token1] = ACTIONS(2800), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2800), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2800), - [aux_sym_password_authentication_token1] = ACTIONS(2800), - [aux_sym_permit_local_command_token1] = ACTIONS(2800), - [aux_sym_permit_remote_open_token1] = ACTIONS(2800), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2800), - [aux_sym_port_token1] = ACTIONS(2800), - [aux_sym_preferred_authentications_token1] = ACTIONS(2800), - [aux_sym_protocol_token1] = ACTIONS(2800), - [aux_sym_proxy_command_token1] = ACTIONS(2800), - [aux_sym_proxy_jump_token1] = ACTIONS(2800), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2800), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2800), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2800), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2800), - [aux_sym_rekey_limit_token1] = ACTIONS(2800), - [aux_sym_remote_command_token1] = ACTIONS(2800), - [aux_sym_remote_forward_token1] = ACTIONS(2800), - [aux_sym_request_tty_token1] = ACTIONS(2800), - [aux_sym_required_rsa_size_token1] = ACTIONS(2800), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2800), - [aux_sym_security_key_provider_token1] = ACTIONS(2800), - [aux_sym_send_env_token1] = ACTIONS(2800), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2800), - [aux_sym_server_alive_interval_token1] = ACTIONS(2800), - [aux_sym_session_type_token1] = ACTIONS(2800), - [aux_sym_set_env_token1] = ACTIONS(2800), - [aux_sym_stdin_null_token1] = ACTIONS(2800), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2800), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2800), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2800), - [aux_sym_syslog_facility_token1] = ACTIONS(2800), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2800), - [aux_sym_keep_alive_token1] = ACTIONS(2800), - [aux_sym_tag_token1] = ACTIONS(2800), - [aux_sym_tunnel_token1] = ACTIONS(2802), - [aux_sym_tunnel_device_token1] = ACTIONS(2800), - [aux_sym_update_host_keys_token1] = ACTIONS(2800), - [aux_sym_use_keychain_token1] = ACTIONS(2800), - [aux_sym_use_roaming_token1] = ACTIONS(2800), - [aux_sym_user_token1] = ACTIONS(2802), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2800), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2800), - [aux_sym_visual_host_key_token1] = ACTIONS(2800), - [aux_sym_xauth_location_token1] = ACTIONS(2800), + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2809), + [anon_sym_DQUOTE] = ACTIONS(2807), + [aux_sym_match_token1] = ACTIONS(2807), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2807), + [aux_sym_address_family_token1] = ACTIONS(2807), + [aux_sym_batch_mode_token1] = ACTIONS(2807), + [aux_sym_bind_address_token1] = ACTIONS(2807), + [aux_sym_bind_interface_token1] = ACTIONS(2807), + [aux_sym_canonical_domains_token1] = ACTIONS(2807), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2807), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2807), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2807), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2807), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2807), + [aux_sym_certificate_file_token1] = ACTIONS(2807), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2807), + [aux_sym_channel_timeout_token1] = ACTIONS(2807), + [aux_sym_check_host_ip_token1] = ACTIONS(2807), + [aux_sym_ciphers_token1] = ACTIONS(2807), + [aux_sym_cipher_token1] = ACTIONS(2809), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2807), + [aux_sym_compression_token1] = ACTIONS(2807), + [aux_sym_connection_attempts_token1] = ACTIONS(2807), + [aux_sym_connect_timeout_token1] = ACTIONS(2807), + [aux_sym_control_master_token1] = ACTIONS(2807), + [aux_sym_control_path_token1] = ACTIONS(2807), + [aux_sym_control_persist_token1] = ACTIONS(2807), + [aux_sym_dynamic_forward_token1] = ACTIONS(2807), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2807), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2807), + [aux_sym_escape_char_token1] = ACTIONS(2807), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2807), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2807), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2807), + [aux_sym_forward_agent_token1] = ACTIONS(2807), + [aux_sym_forward_x11_token1] = ACTIONS(2809), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2807), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2807), + [aux_sym_gateway_ports_token1] = ACTIONS(2807), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2807), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2807), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2807), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2807), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2807), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2807), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2807), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2807), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2807), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2807), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2807), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2807), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2807), + [aux_sym_host_key_alias_token1] = ACTIONS(2807), + [aux_sym_hostname_token1] = ACTIONS(2807), + [aux_sym_identities_only_token1] = ACTIONS(2807), + [aux_sym_identity_agent_token1] = ACTIONS(2807), + [aux_sym_identity_file_token1] = ACTIONS(2807), + [aux_sym_ignore_unknown_token1] = ACTIONS(2807), + [aux_sym_include_token1] = ACTIONS(2807), + [aux_sym_ip_qos_token1] = ACTIONS(2807), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2807), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2807), + [aux_sym_kex_algorithms_token1] = ACTIONS(2807), + [aux_sym_known_hosts_command_token1] = ACTIONS(2807), + [aux_sym_local_command_token1] = ACTIONS(2807), + [aux_sym_local_forward_token1] = ACTIONS(2807), + [aux_sym_log_level_token1] = ACTIONS(2807), + [aux_sym_log_verbose_token1] = ACTIONS(2807), + [aux_sym_macs_token1] = ACTIONS(2807), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2807), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2807), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2807), + [aux_sym_password_authentication_token1] = ACTIONS(2807), + [aux_sym_permit_local_command_token1] = ACTIONS(2807), + [aux_sym_permit_remote_open_token1] = ACTIONS(2807), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2807), + [aux_sym_port_token1] = ACTIONS(2807), + [aux_sym_preferred_authentications_token1] = ACTIONS(2807), + [aux_sym_protocol_token1] = ACTIONS(2807), + [aux_sym_proxy_command_token1] = ACTIONS(2807), + [aux_sym_proxy_jump_token1] = ACTIONS(2807), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2807), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2807), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2807), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2807), + [aux_sym_rekey_limit_token1] = ACTIONS(2807), + [aux_sym_remote_command_token1] = ACTIONS(2807), + [aux_sym_remote_forward_token1] = ACTIONS(2807), + [aux_sym_request_tty_token1] = ACTIONS(2807), + [aux_sym_required_rsa_size_token1] = ACTIONS(2807), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2807), + [aux_sym_security_key_provider_token1] = ACTIONS(2807), + [aux_sym_send_env_token1] = ACTIONS(2807), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2807), + [aux_sym_server_alive_interval_token1] = ACTIONS(2807), + [aux_sym_session_type_token1] = ACTIONS(2807), + [aux_sym_set_env_token1] = ACTIONS(2807), + [aux_sym_stdin_null_token1] = ACTIONS(2807), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2807), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2807), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2807), + [aux_sym_syslog_facility_token1] = ACTIONS(2807), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2807), + [aux_sym_keep_alive_token1] = ACTIONS(2807), + [aux_sym_tag_token1] = ACTIONS(2807), + [aux_sym_tunnel_token1] = ACTIONS(2809), + [aux_sym_tunnel_device_token1] = ACTIONS(2807), + [aux_sym_update_host_keys_token1] = ACTIONS(2807), + [aux_sym_use_keychain_token1] = ACTIONS(2807), + [aux_sym_use_roaming_token1] = ACTIONS(2807), + [aux_sym_user_token1] = ACTIONS(2809), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2807), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2807), + [aux_sym_visual_host_key_token1] = ACTIONS(2807), + [aux_sym_xauth_location_token1] = ACTIONS(2807), }, [403] = { - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2808), - [anon_sym_DQUOTE] = ACTIONS(2806), - [aux_sym_match_token1] = ACTIONS(2806), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2806), - [aux_sym_address_family_token1] = ACTIONS(2806), - [aux_sym_batch_mode_token1] = ACTIONS(2806), - [aux_sym_bind_address_token1] = ACTIONS(2806), - [aux_sym_bind_interface_token1] = ACTIONS(2806), - [aux_sym_canonical_domains_token1] = ACTIONS(2806), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2806), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2806), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2806), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2806), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2806), - [aux_sym_certificate_file_token1] = ACTIONS(2806), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2806), - [aux_sym_channel_timeout_token1] = ACTIONS(2806), - [aux_sym_check_host_ip_token1] = ACTIONS(2806), - [aux_sym_ciphers_token1] = ACTIONS(2806), - [aux_sym_cipher_token1] = ACTIONS(2808), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2806), - [aux_sym_compression_token1] = ACTIONS(2806), - [aux_sym_connection_attempts_token1] = ACTIONS(2806), - [aux_sym_connect_timeout_token1] = ACTIONS(2806), - [aux_sym_control_master_token1] = ACTIONS(2806), - [aux_sym_control_path_token1] = ACTIONS(2806), - [aux_sym_control_persist_token1] = ACTIONS(2806), - [aux_sym_dynamic_forward_token1] = ACTIONS(2806), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2806), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2806), - [aux_sym_escape_char_token1] = ACTIONS(2806), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2806), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2806), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2806), - [aux_sym_forward_agent_token1] = ACTIONS(2806), - [aux_sym_forward_x11_token1] = ACTIONS(2808), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2806), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2806), - [aux_sym_gateway_ports_token1] = ACTIONS(2806), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2806), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2806), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2806), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2806), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2806), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2806), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2806), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2806), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2806), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2806), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2806), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2806), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2806), - [aux_sym_host_key_alias_token1] = ACTIONS(2806), - [aux_sym_hostname_token1] = ACTIONS(2806), - [aux_sym_identities_only_token1] = ACTIONS(2806), - [aux_sym_identity_agent_token1] = ACTIONS(2806), - [aux_sym_identity_file_token1] = ACTIONS(2806), - [aux_sym_ignore_unknown_token1] = ACTIONS(2806), - [aux_sym_include_token1] = ACTIONS(2806), - [aux_sym_ip_qos_token1] = ACTIONS(2806), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2806), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2806), - [aux_sym_kex_algorithms_token1] = ACTIONS(2806), - [aux_sym_known_hosts_command_token1] = ACTIONS(2806), - [aux_sym_local_command_token1] = ACTIONS(2806), - [aux_sym_local_forward_token1] = ACTIONS(2806), - [aux_sym_log_level_token1] = ACTIONS(2806), - [aux_sym_log_verbose_token1] = ACTIONS(2806), - [aux_sym_macs_token1] = ACTIONS(2806), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2806), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2806), - [aux_sym_password_authentication_token1] = ACTIONS(2806), - [aux_sym_permit_local_command_token1] = ACTIONS(2806), - [aux_sym_permit_remote_open_token1] = ACTIONS(2806), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2806), - [aux_sym_port_token1] = ACTIONS(2806), - [aux_sym_preferred_authentications_token1] = ACTIONS(2806), - [aux_sym_protocol_token1] = ACTIONS(2806), - [aux_sym_proxy_command_token1] = ACTIONS(2806), - [aux_sym_proxy_jump_token1] = ACTIONS(2806), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2806), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2806), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2806), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2806), - [aux_sym_rekey_limit_token1] = ACTIONS(2806), - [aux_sym_remote_command_token1] = ACTIONS(2806), - [aux_sym_remote_forward_token1] = ACTIONS(2806), - [aux_sym_request_tty_token1] = ACTIONS(2806), - [aux_sym_required_rsa_size_token1] = ACTIONS(2806), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2806), - [aux_sym_security_key_provider_token1] = ACTIONS(2806), - [aux_sym_send_env_token1] = ACTIONS(2806), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2806), - [aux_sym_server_alive_interval_token1] = ACTIONS(2806), - [aux_sym_session_type_token1] = ACTIONS(2806), - [aux_sym_set_env_token1] = ACTIONS(2806), - [aux_sym_stdin_null_token1] = ACTIONS(2806), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2806), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2806), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2806), - [aux_sym_syslog_facility_token1] = ACTIONS(2806), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2806), - [aux_sym_keep_alive_token1] = ACTIONS(2806), - [aux_sym_tag_token1] = ACTIONS(2806), - [aux_sym_tunnel_token1] = ACTIONS(2808), - [aux_sym_tunnel_device_token1] = ACTIONS(2806), - [aux_sym_update_host_keys_token1] = ACTIONS(2806), - [aux_sym_use_keychain_token1] = ACTIONS(2806), - [aux_sym_use_roaming_token1] = ACTIONS(2806), - [aux_sym_user_token1] = ACTIONS(2808), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2806), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2806), - [aux_sym_visual_host_key_token1] = ACTIONS(2806), - [aux_sym_xauth_location_token1] = ACTIONS(2806), + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2813), + [anon_sym_DQUOTE] = ACTIONS(2815), + [aux_sym_match_token1] = ACTIONS(2811), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2811), + [aux_sym_address_family_token1] = ACTIONS(2811), + [aux_sym_batch_mode_token1] = ACTIONS(2811), + [aux_sym_bind_address_token1] = ACTIONS(2811), + [aux_sym_bind_interface_token1] = ACTIONS(2811), + [aux_sym_canonical_domains_token1] = ACTIONS(2811), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2811), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2811), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2811), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2811), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2811), + [aux_sym_certificate_file_token1] = ACTIONS(2811), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2811), + [aux_sym_channel_timeout_token1] = ACTIONS(2811), + [aux_sym_check_host_ip_token1] = ACTIONS(2811), + [aux_sym_ciphers_token1] = ACTIONS(2811), + [aux_sym_cipher_token1] = ACTIONS(2813), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2811), + [aux_sym_compression_token1] = ACTIONS(2811), + [aux_sym_connection_attempts_token1] = ACTIONS(2811), + [aux_sym_connect_timeout_token1] = ACTIONS(2811), + [aux_sym_control_master_token1] = ACTIONS(2811), + [aux_sym_control_path_token1] = ACTIONS(2811), + [aux_sym_control_persist_token1] = ACTIONS(2811), + [aux_sym_dynamic_forward_token1] = ACTIONS(2811), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2811), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2811), + [aux_sym_escape_char_token1] = ACTIONS(2811), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2811), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2811), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2811), + [aux_sym_forward_agent_token1] = ACTIONS(2811), + [aux_sym_forward_x11_token1] = ACTIONS(2813), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2811), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2811), + [aux_sym_gateway_ports_token1] = ACTIONS(2811), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2811), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2811), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2811), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2811), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2811), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2811), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2811), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2811), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2811), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2811), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2811), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2811), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2811), + [aux_sym_host_key_alias_token1] = ACTIONS(2811), + [aux_sym_hostname_token1] = ACTIONS(2811), + [aux_sym_identities_only_token1] = ACTIONS(2811), + [aux_sym_identity_agent_token1] = ACTIONS(2811), + [aux_sym_identity_file_token1] = ACTIONS(2811), + [aux_sym_ignore_unknown_token1] = ACTIONS(2811), + [aux_sym_include_token1] = ACTIONS(2811), + [aux_sym_ip_qos_token1] = ACTIONS(2811), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2811), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2811), + [aux_sym_kex_algorithms_token1] = ACTIONS(2811), + [aux_sym_known_hosts_command_token1] = ACTIONS(2811), + [aux_sym_local_command_token1] = ACTIONS(2811), + [aux_sym_local_forward_token1] = ACTIONS(2811), + [aux_sym_log_level_token1] = ACTIONS(2811), + [aux_sym_log_verbose_token1] = ACTIONS(2811), + [aux_sym_macs_token1] = ACTIONS(2811), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2811), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2811), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2811), + [aux_sym_password_authentication_token1] = ACTIONS(2811), + [aux_sym_permit_local_command_token1] = ACTIONS(2811), + [aux_sym_permit_remote_open_token1] = ACTIONS(2811), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2811), + [aux_sym_port_token1] = ACTIONS(2811), + [aux_sym_preferred_authentications_token1] = ACTIONS(2811), + [aux_sym_protocol_token1] = ACTIONS(2811), + [aux_sym_proxy_command_token1] = ACTIONS(2811), + [aux_sym_proxy_jump_token1] = ACTIONS(2811), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2811), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2811), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2811), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2811), + [aux_sym_rekey_limit_token1] = ACTIONS(2811), + [aux_sym_remote_command_token1] = ACTIONS(2811), + [aux_sym_remote_forward_token1] = ACTIONS(2811), + [aux_sym_request_tty_token1] = ACTIONS(2811), + [aux_sym_required_rsa_size_token1] = ACTIONS(2811), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2811), + [aux_sym_security_key_provider_token1] = ACTIONS(2811), + [aux_sym_send_env_token1] = ACTIONS(2811), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2811), + [aux_sym_server_alive_interval_token1] = ACTIONS(2811), + [aux_sym_session_type_token1] = ACTIONS(2811), + [aux_sym_set_env_token1] = ACTIONS(2811), + [aux_sym_stdin_null_token1] = ACTIONS(2811), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2811), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2811), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2811), + [aux_sym_syslog_facility_token1] = ACTIONS(2811), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2811), + [aux_sym_keep_alive_token1] = ACTIONS(2811), + [aux_sym_tag_token1] = ACTIONS(2811), + [aux_sym_tunnel_token1] = ACTIONS(2813), + [aux_sym_tunnel_device_token1] = ACTIONS(2811), + [aux_sym_update_host_keys_token1] = ACTIONS(2811), + [aux_sym_use_keychain_token1] = ACTIONS(2811), + [aux_sym_use_roaming_token1] = ACTIONS(2811), + [aux_sym_user_token1] = ACTIONS(2813), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2811), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2811), + [aux_sym_visual_host_key_token1] = ACTIONS(2811), + [aux_sym_xauth_location_token1] = ACTIONS(2811), }, [404] = { - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2812), - [anon_sym_DQUOTE] = ACTIONS(2810), - [aux_sym_match_token1] = ACTIONS(2810), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2810), - [aux_sym_address_family_token1] = ACTIONS(2810), - [aux_sym_batch_mode_token1] = ACTIONS(2810), - [aux_sym_bind_address_token1] = ACTIONS(2810), - [aux_sym_bind_interface_token1] = ACTIONS(2810), - [aux_sym_canonical_domains_token1] = ACTIONS(2810), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2810), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2810), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2810), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2810), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2810), - [aux_sym_certificate_file_token1] = ACTIONS(2810), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2810), - [aux_sym_channel_timeout_token1] = ACTIONS(2810), - [aux_sym_check_host_ip_token1] = ACTIONS(2810), - [aux_sym_ciphers_token1] = ACTIONS(2810), - [aux_sym_cipher_token1] = ACTIONS(2812), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2810), - [aux_sym_compression_token1] = ACTIONS(2810), - [aux_sym_connection_attempts_token1] = ACTIONS(2810), - [aux_sym_connect_timeout_token1] = ACTIONS(2810), - [aux_sym_control_master_token1] = ACTIONS(2810), - [aux_sym_control_path_token1] = ACTIONS(2810), - [aux_sym_control_persist_token1] = ACTIONS(2810), - [aux_sym_dynamic_forward_token1] = ACTIONS(2810), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2810), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2810), - [aux_sym_escape_char_token1] = ACTIONS(2810), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2810), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2810), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2810), - [aux_sym_forward_agent_token1] = ACTIONS(2810), - [aux_sym_forward_x11_token1] = ACTIONS(2812), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2810), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2810), - [aux_sym_gateway_ports_token1] = ACTIONS(2810), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2810), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2810), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2810), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2810), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2810), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2810), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2810), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2810), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2810), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2810), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2810), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2810), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2810), - [aux_sym_host_key_alias_token1] = ACTIONS(2810), - [aux_sym_hostname_token1] = ACTIONS(2810), - [aux_sym_identities_only_token1] = ACTIONS(2810), - [aux_sym_identity_agent_token1] = ACTIONS(2810), - [aux_sym_identity_file_token1] = ACTIONS(2810), - [aux_sym_ignore_unknown_token1] = ACTIONS(2810), - [aux_sym_include_token1] = ACTIONS(2810), - [aux_sym_ip_qos_token1] = ACTIONS(2810), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2810), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2810), - [aux_sym_kex_algorithms_token1] = ACTIONS(2810), - [aux_sym_known_hosts_command_token1] = ACTIONS(2810), - [aux_sym_local_command_token1] = ACTIONS(2810), - [aux_sym_local_forward_token1] = ACTIONS(2810), - [aux_sym_log_level_token1] = ACTIONS(2810), - [aux_sym_log_verbose_token1] = ACTIONS(2810), - [aux_sym_macs_token1] = ACTIONS(2810), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2810), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2810), - [aux_sym_password_authentication_token1] = ACTIONS(2810), - [aux_sym_permit_local_command_token1] = ACTIONS(2810), - [aux_sym_permit_remote_open_token1] = ACTIONS(2810), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2810), - [aux_sym_port_token1] = ACTIONS(2810), - [aux_sym_preferred_authentications_token1] = ACTIONS(2810), - [aux_sym_protocol_token1] = ACTIONS(2810), - [aux_sym_proxy_command_token1] = ACTIONS(2810), - [aux_sym_proxy_jump_token1] = ACTIONS(2810), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2810), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2810), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2810), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2810), - [aux_sym_rekey_limit_token1] = ACTIONS(2810), - [aux_sym_remote_command_token1] = ACTIONS(2810), - [aux_sym_remote_forward_token1] = ACTIONS(2810), - [aux_sym_request_tty_token1] = ACTIONS(2810), - [aux_sym_required_rsa_size_token1] = ACTIONS(2810), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2810), - [aux_sym_security_key_provider_token1] = ACTIONS(2810), - [aux_sym_send_env_token1] = ACTIONS(2810), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2810), - [aux_sym_server_alive_interval_token1] = ACTIONS(2810), - [aux_sym_session_type_token1] = ACTIONS(2810), - [aux_sym_set_env_token1] = ACTIONS(2810), - [aux_sym_stdin_null_token1] = ACTIONS(2810), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2810), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2810), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2810), - [aux_sym_syslog_facility_token1] = ACTIONS(2810), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2810), - [aux_sym_keep_alive_token1] = ACTIONS(2810), - [aux_sym_tag_token1] = ACTIONS(2810), - [aux_sym_tunnel_token1] = ACTIONS(2812), - [aux_sym_tunnel_device_token1] = ACTIONS(2810), - [aux_sym_update_host_keys_token1] = ACTIONS(2810), - [aux_sym_use_keychain_token1] = ACTIONS(2810), - [aux_sym_use_roaming_token1] = ACTIONS(2810), - [aux_sym_user_token1] = ACTIONS(2812), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2810), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2810), - [aux_sym_visual_host_key_token1] = ACTIONS(2810), - [aux_sym_xauth_location_token1] = ACTIONS(2810), + [ts_builtin_sym_end] = ACTIONS(2817), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2819), + [anon_sym_DQUOTE] = ACTIONS(2821), + [aux_sym_match_token1] = ACTIONS(2817), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2817), + [aux_sym_address_family_token1] = ACTIONS(2817), + [aux_sym_batch_mode_token1] = ACTIONS(2817), + [aux_sym_bind_address_token1] = ACTIONS(2817), + [aux_sym_bind_interface_token1] = ACTIONS(2817), + [aux_sym_canonical_domains_token1] = ACTIONS(2817), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2817), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2817), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2817), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2817), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2817), + [aux_sym_certificate_file_token1] = ACTIONS(2817), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2817), + [aux_sym_channel_timeout_token1] = ACTIONS(2817), + [aux_sym_check_host_ip_token1] = ACTIONS(2817), + [aux_sym_ciphers_token1] = ACTIONS(2817), + [aux_sym_cipher_token1] = ACTIONS(2819), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2817), + [aux_sym_compression_token1] = ACTIONS(2817), + [aux_sym_connection_attempts_token1] = ACTIONS(2817), + [aux_sym_connect_timeout_token1] = ACTIONS(2817), + [aux_sym_control_master_token1] = ACTIONS(2817), + [aux_sym_control_path_token1] = ACTIONS(2817), + [aux_sym_control_persist_token1] = ACTIONS(2817), + [aux_sym_dynamic_forward_token1] = ACTIONS(2817), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2817), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2817), + [aux_sym_escape_char_token1] = ACTIONS(2817), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2817), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2817), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2817), + [aux_sym_forward_agent_token1] = ACTIONS(2817), + [aux_sym_forward_x11_token1] = ACTIONS(2819), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2817), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2817), + [aux_sym_gateway_ports_token1] = ACTIONS(2817), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2817), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2817), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2817), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2817), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2817), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2817), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2817), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2817), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2817), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2817), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2817), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2817), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2817), + [aux_sym_host_key_alias_token1] = ACTIONS(2817), + [aux_sym_hostname_token1] = ACTIONS(2817), + [aux_sym_identities_only_token1] = ACTIONS(2817), + [aux_sym_identity_agent_token1] = ACTIONS(2817), + [aux_sym_identity_file_token1] = ACTIONS(2817), + [aux_sym_ignore_unknown_token1] = ACTIONS(2817), + [aux_sym_include_token1] = ACTIONS(2817), + [aux_sym_ip_qos_token1] = ACTIONS(2817), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2817), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2817), + [aux_sym_kex_algorithms_token1] = ACTIONS(2817), + [aux_sym_known_hosts_command_token1] = ACTIONS(2817), + [aux_sym_local_command_token1] = ACTIONS(2817), + [aux_sym_local_forward_token1] = ACTIONS(2817), + [aux_sym_log_level_token1] = ACTIONS(2817), + [aux_sym_log_verbose_token1] = ACTIONS(2817), + [aux_sym_macs_token1] = ACTIONS(2817), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2817), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2817), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2817), + [aux_sym_password_authentication_token1] = ACTIONS(2817), + [aux_sym_permit_local_command_token1] = ACTIONS(2817), + [aux_sym_permit_remote_open_token1] = ACTIONS(2817), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2817), + [aux_sym_port_token1] = ACTIONS(2817), + [aux_sym_preferred_authentications_token1] = ACTIONS(2817), + [aux_sym_protocol_token1] = ACTIONS(2817), + [aux_sym_proxy_command_token1] = ACTIONS(2817), + [aux_sym_proxy_jump_token1] = ACTIONS(2817), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2817), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2817), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2817), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2817), + [aux_sym_rekey_limit_token1] = ACTIONS(2817), + [aux_sym_remote_command_token1] = ACTIONS(2817), + [aux_sym_remote_forward_token1] = ACTIONS(2817), + [aux_sym_request_tty_token1] = ACTIONS(2817), + [aux_sym_required_rsa_size_token1] = ACTIONS(2817), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2817), + [aux_sym_security_key_provider_token1] = ACTIONS(2817), + [aux_sym_send_env_token1] = ACTIONS(2817), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2817), + [aux_sym_server_alive_interval_token1] = ACTIONS(2817), + [aux_sym_session_type_token1] = ACTIONS(2817), + [aux_sym_set_env_token1] = ACTIONS(2817), + [aux_sym_stdin_null_token1] = ACTIONS(2817), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2817), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2817), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2817), + [aux_sym_syslog_facility_token1] = ACTIONS(2817), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2817), + [aux_sym_keep_alive_token1] = ACTIONS(2817), + [aux_sym_tag_token1] = ACTIONS(2817), + [aux_sym_tunnel_token1] = ACTIONS(2819), + [aux_sym_tunnel_device_token1] = ACTIONS(2817), + [aux_sym_update_host_keys_token1] = ACTIONS(2817), + [aux_sym_use_keychain_token1] = ACTIONS(2817), + [aux_sym_use_roaming_token1] = ACTIONS(2817), + [aux_sym_user_token1] = ACTIONS(2819), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2817), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2817), + [aux_sym_visual_host_key_token1] = ACTIONS(2817), + [aux_sym_xauth_location_token1] = ACTIONS(2817), }, [405] = { - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2816), - [anon_sym_DQUOTE] = ACTIONS(2818), - [aux_sym_match_token1] = ACTIONS(2814), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2814), - [aux_sym_address_family_token1] = ACTIONS(2814), - [aux_sym_batch_mode_token1] = ACTIONS(2814), - [aux_sym_bind_address_token1] = ACTIONS(2814), - [aux_sym_bind_interface_token1] = ACTIONS(2814), - [aux_sym_canonical_domains_token1] = ACTIONS(2814), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2814), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2814), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2814), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2814), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2814), - [aux_sym_certificate_file_token1] = ACTIONS(2814), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2814), - [aux_sym_channel_timeout_token1] = ACTIONS(2814), - [aux_sym_check_host_ip_token1] = ACTIONS(2814), - [aux_sym_ciphers_token1] = ACTIONS(2814), - [aux_sym_cipher_token1] = ACTIONS(2816), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2814), - [aux_sym_compression_token1] = ACTIONS(2814), - [aux_sym_connection_attempts_token1] = ACTIONS(2814), - [aux_sym_connect_timeout_token1] = ACTIONS(2814), - [aux_sym_control_master_token1] = ACTIONS(2814), - [aux_sym_control_path_token1] = ACTIONS(2814), - [aux_sym_control_persist_token1] = ACTIONS(2814), - [aux_sym_dynamic_forward_token1] = ACTIONS(2814), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2814), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2814), - [aux_sym_escape_char_token1] = ACTIONS(2814), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2814), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2814), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2814), - [aux_sym_forward_agent_token1] = ACTIONS(2814), - [aux_sym_forward_x11_token1] = ACTIONS(2816), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2814), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2814), - [aux_sym_gateway_ports_token1] = ACTIONS(2814), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2814), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2814), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2814), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2814), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2814), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2814), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2814), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2814), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2814), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2814), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2814), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2814), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2814), - [aux_sym_host_key_alias_token1] = ACTIONS(2814), - [aux_sym_hostname_token1] = ACTIONS(2814), - [aux_sym_identities_only_token1] = ACTIONS(2814), - [aux_sym_identity_agent_token1] = ACTIONS(2814), - [aux_sym_identity_file_token1] = ACTIONS(2814), - [aux_sym_ignore_unknown_token1] = ACTIONS(2814), - [aux_sym_include_token1] = ACTIONS(2814), - [aux_sym_ip_qos_token1] = ACTIONS(2814), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2814), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2814), - [aux_sym_kex_algorithms_token1] = ACTIONS(2814), - [aux_sym_known_hosts_command_token1] = ACTIONS(2814), - [aux_sym_local_command_token1] = ACTIONS(2814), - [aux_sym_local_forward_token1] = ACTIONS(2814), - [aux_sym_log_level_token1] = ACTIONS(2814), - [aux_sym_log_verbose_token1] = ACTIONS(2814), - [aux_sym_macs_token1] = ACTIONS(2814), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2814), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2814), - [aux_sym_password_authentication_token1] = ACTIONS(2814), - [aux_sym_permit_local_command_token1] = ACTIONS(2814), - [aux_sym_permit_remote_open_token1] = ACTIONS(2814), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2814), - [aux_sym_port_token1] = ACTIONS(2814), - [aux_sym_preferred_authentications_token1] = ACTIONS(2814), - [aux_sym_protocol_token1] = ACTIONS(2814), - [aux_sym_proxy_command_token1] = ACTIONS(2814), - [aux_sym_proxy_jump_token1] = ACTIONS(2814), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2814), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2814), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2814), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2814), - [aux_sym_rekey_limit_token1] = ACTIONS(2814), - [aux_sym_remote_command_token1] = ACTIONS(2814), - [aux_sym_remote_forward_token1] = ACTIONS(2814), - [aux_sym_request_tty_token1] = ACTIONS(2814), - [aux_sym_required_rsa_size_token1] = ACTIONS(2814), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2814), - [aux_sym_security_key_provider_token1] = ACTIONS(2814), - [aux_sym_send_env_token1] = ACTIONS(2814), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2814), - [aux_sym_server_alive_interval_token1] = ACTIONS(2814), - [aux_sym_session_type_token1] = ACTIONS(2814), - [aux_sym_set_env_token1] = ACTIONS(2814), - [aux_sym_stdin_null_token1] = ACTIONS(2814), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2814), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2814), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2814), - [aux_sym_syslog_facility_token1] = ACTIONS(2814), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2814), - [aux_sym_keep_alive_token1] = ACTIONS(2814), - [aux_sym_tag_token1] = ACTIONS(2814), - [aux_sym_tunnel_token1] = ACTIONS(2816), - [aux_sym_tunnel_device_token1] = ACTIONS(2814), - [aux_sym_update_host_keys_token1] = ACTIONS(2814), - [aux_sym_use_keychain_token1] = ACTIONS(2814), - [aux_sym_use_roaming_token1] = ACTIONS(2814), - [aux_sym_user_token1] = ACTIONS(2816), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2814), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2814), - [aux_sym_visual_host_key_token1] = ACTIONS(2814), - [aux_sym_xauth_location_token1] = ACTIONS(2814), + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2825), + [anon_sym_DQUOTE] = ACTIONS(2823), + [aux_sym_match_token1] = ACTIONS(2823), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2823), + [aux_sym_address_family_token1] = ACTIONS(2823), + [aux_sym_batch_mode_token1] = ACTIONS(2823), + [aux_sym_bind_address_token1] = ACTIONS(2823), + [aux_sym_bind_interface_token1] = ACTIONS(2823), + [aux_sym_canonical_domains_token1] = ACTIONS(2823), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2823), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2823), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2823), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2823), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2823), + [aux_sym_certificate_file_token1] = ACTIONS(2823), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2823), + [aux_sym_channel_timeout_token1] = ACTIONS(2823), + [aux_sym_check_host_ip_token1] = ACTIONS(2823), + [aux_sym_ciphers_token1] = ACTIONS(2823), + [aux_sym_cipher_token1] = ACTIONS(2825), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2823), + [aux_sym_compression_token1] = ACTIONS(2823), + [aux_sym_connection_attempts_token1] = ACTIONS(2823), + [aux_sym_connect_timeout_token1] = ACTIONS(2823), + [aux_sym_control_master_token1] = ACTIONS(2823), + [aux_sym_control_path_token1] = ACTIONS(2823), + [aux_sym_control_persist_token1] = ACTIONS(2823), + [aux_sym_dynamic_forward_token1] = ACTIONS(2823), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2823), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2823), + [aux_sym_escape_char_token1] = ACTIONS(2823), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2823), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2823), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2823), + [aux_sym_forward_agent_token1] = ACTIONS(2823), + [aux_sym_forward_x11_token1] = ACTIONS(2825), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2823), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2823), + [aux_sym_gateway_ports_token1] = ACTIONS(2823), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2823), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2823), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2823), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2823), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2823), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2823), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2823), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2823), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2823), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2823), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2823), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2823), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2823), + [aux_sym_host_key_alias_token1] = ACTIONS(2823), + [aux_sym_hostname_token1] = ACTIONS(2823), + [aux_sym_identities_only_token1] = ACTIONS(2823), + [aux_sym_identity_agent_token1] = ACTIONS(2823), + [aux_sym_identity_file_token1] = ACTIONS(2823), + [aux_sym_ignore_unknown_token1] = ACTIONS(2823), + [aux_sym_include_token1] = ACTIONS(2823), + [aux_sym_ip_qos_token1] = ACTIONS(2823), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2823), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2823), + [aux_sym_kex_algorithms_token1] = ACTIONS(2823), + [aux_sym_known_hosts_command_token1] = ACTIONS(2823), + [aux_sym_local_command_token1] = ACTIONS(2823), + [aux_sym_local_forward_token1] = ACTIONS(2823), + [aux_sym_log_level_token1] = ACTIONS(2823), + [aux_sym_log_verbose_token1] = ACTIONS(2823), + [aux_sym_macs_token1] = ACTIONS(2823), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2823), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2823), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2823), + [aux_sym_password_authentication_token1] = ACTIONS(2823), + [aux_sym_permit_local_command_token1] = ACTIONS(2823), + [aux_sym_permit_remote_open_token1] = ACTIONS(2823), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2823), + [aux_sym_port_token1] = ACTIONS(2823), + [aux_sym_preferred_authentications_token1] = ACTIONS(2823), + [aux_sym_protocol_token1] = ACTIONS(2823), + [aux_sym_proxy_command_token1] = ACTIONS(2823), + [aux_sym_proxy_jump_token1] = ACTIONS(2823), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2823), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2823), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2823), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2823), + [aux_sym_rekey_limit_token1] = ACTIONS(2823), + [aux_sym_remote_command_token1] = ACTIONS(2823), + [aux_sym_remote_forward_token1] = ACTIONS(2823), + [aux_sym_request_tty_token1] = ACTIONS(2823), + [aux_sym_required_rsa_size_token1] = ACTIONS(2823), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2823), + [aux_sym_security_key_provider_token1] = ACTIONS(2823), + [aux_sym_send_env_token1] = ACTIONS(2823), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2823), + [aux_sym_server_alive_interval_token1] = ACTIONS(2823), + [aux_sym_session_type_token1] = ACTIONS(2823), + [aux_sym_set_env_token1] = ACTIONS(2823), + [aux_sym_stdin_null_token1] = ACTIONS(2823), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2823), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2823), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2823), + [aux_sym_syslog_facility_token1] = ACTIONS(2823), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2823), + [aux_sym_keep_alive_token1] = ACTIONS(2823), + [aux_sym_tag_token1] = ACTIONS(2823), + [aux_sym_tunnel_token1] = ACTIONS(2825), + [aux_sym_tunnel_device_token1] = ACTIONS(2823), + [aux_sym_update_host_keys_token1] = ACTIONS(2823), + [aux_sym_use_keychain_token1] = ACTIONS(2823), + [aux_sym_use_roaming_token1] = ACTIONS(2823), + [aux_sym_user_token1] = ACTIONS(2825), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2823), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2823), + [aux_sym_visual_host_key_token1] = ACTIONS(2823), + [aux_sym_xauth_location_token1] = ACTIONS(2823), }, [406] = { - [ts_builtin_sym_end] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2822), - [anon_sym_DQUOTE] = ACTIONS(2824), - [aux_sym_match_token1] = ACTIONS(2820), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2820), - [aux_sym_address_family_token1] = ACTIONS(2820), - [aux_sym_batch_mode_token1] = ACTIONS(2820), - [aux_sym_bind_address_token1] = ACTIONS(2820), - [aux_sym_bind_interface_token1] = ACTIONS(2820), - [aux_sym_canonical_domains_token1] = ACTIONS(2820), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2820), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2820), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2820), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2820), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2820), - [aux_sym_certificate_file_token1] = ACTIONS(2820), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2820), - [aux_sym_channel_timeout_token1] = ACTIONS(2820), - [aux_sym_check_host_ip_token1] = ACTIONS(2820), - [aux_sym_ciphers_token1] = ACTIONS(2820), - [aux_sym_cipher_token1] = ACTIONS(2822), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2820), - [aux_sym_compression_token1] = ACTIONS(2820), - [aux_sym_connection_attempts_token1] = ACTIONS(2820), - [aux_sym_connect_timeout_token1] = ACTIONS(2820), - [aux_sym_control_master_token1] = ACTIONS(2820), - [aux_sym_control_path_token1] = ACTIONS(2820), - [aux_sym_control_persist_token1] = ACTIONS(2820), - [aux_sym_dynamic_forward_token1] = ACTIONS(2820), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2820), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2820), - [aux_sym_escape_char_token1] = ACTIONS(2820), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2820), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2820), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2820), - [aux_sym_forward_agent_token1] = ACTIONS(2820), - [aux_sym_forward_x11_token1] = ACTIONS(2822), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2820), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2820), - [aux_sym_gateway_ports_token1] = ACTIONS(2820), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2820), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2820), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2820), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2820), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2820), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2820), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2820), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2820), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2820), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2820), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2820), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2820), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2820), - [aux_sym_host_key_alias_token1] = ACTIONS(2820), - [aux_sym_hostname_token1] = ACTIONS(2820), - [aux_sym_identities_only_token1] = ACTIONS(2820), - [aux_sym_identity_agent_token1] = ACTIONS(2820), - [aux_sym_identity_file_token1] = ACTIONS(2820), - [aux_sym_ignore_unknown_token1] = ACTIONS(2820), - [aux_sym_include_token1] = ACTIONS(2820), - [aux_sym_ip_qos_token1] = ACTIONS(2820), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2820), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2820), - [aux_sym_kex_algorithms_token1] = ACTIONS(2820), - [aux_sym_known_hosts_command_token1] = ACTIONS(2820), - [aux_sym_local_command_token1] = ACTIONS(2820), - [aux_sym_local_forward_token1] = ACTIONS(2820), - [aux_sym_log_level_token1] = ACTIONS(2820), - [aux_sym_log_verbose_token1] = ACTIONS(2820), - [aux_sym_macs_token1] = ACTIONS(2820), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2820), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2820), - [aux_sym_password_authentication_token1] = ACTIONS(2820), - [aux_sym_permit_local_command_token1] = ACTIONS(2820), - [aux_sym_permit_remote_open_token1] = ACTIONS(2820), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2820), - [aux_sym_port_token1] = ACTIONS(2820), - [aux_sym_preferred_authentications_token1] = ACTIONS(2820), - [aux_sym_protocol_token1] = ACTIONS(2820), - [aux_sym_proxy_command_token1] = ACTIONS(2820), - [aux_sym_proxy_jump_token1] = ACTIONS(2820), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2820), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2820), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2820), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2820), - [aux_sym_rekey_limit_token1] = ACTIONS(2820), - [aux_sym_remote_command_token1] = ACTIONS(2820), - [aux_sym_remote_forward_token1] = ACTIONS(2820), - [aux_sym_request_tty_token1] = ACTIONS(2820), - [aux_sym_required_rsa_size_token1] = ACTIONS(2820), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2820), - [aux_sym_security_key_provider_token1] = ACTIONS(2820), - [aux_sym_send_env_token1] = ACTIONS(2820), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2820), - [aux_sym_server_alive_interval_token1] = ACTIONS(2820), - [aux_sym_session_type_token1] = ACTIONS(2820), - [aux_sym_set_env_token1] = ACTIONS(2820), - [aux_sym_stdin_null_token1] = ACTIONS(2820), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2820), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2820), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2820), - [aux_sym_syslog_facility_token1] = ACTIONS(2820), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2820), - [aux_sym_keep_alive_token1] = ACTIONS(2820), - [aux_sym_tag_token1] = ACTIONS(2820), - [aux_sym_tunnel_token1] = ACTIONS(2822), - [aux_sym_tunnel_device_token1] = ACTIONS(2820), - [aux_sym_update_host_keys_token1] = ACTIONS(2820), - [aux_sym_use_keychain_token1] = ACTIONS(2820), - [aux_sym_use_roaming_token1] = ACTIONS(2820), - [aux_sym_user_token1] = ACTIONS(2822), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2820), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2820), - [aux_sym_visual_host_key_token1] = ACTIONS(2820), - [aux_sym_xauth_location_token1] = ACTIONS(2820), + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2829), + [anon_sym_DQUOTE] = ACTIONS(2827), + [aux_sym_match_token1] = ACTIONS(2827), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2827), + [aux_sym_address_family_token1] = ACTIONS(2827), + [aux_sym_batch_mode_token1] = ACTIONS(2827), + [aux_sym_bind_address_token1] = ACTIONS(2827), + [aux_sym_bind_interface_token1] = ACTIONS(2827), + [aux_sym_canonical_domains_token1] = ACTIONS(2827), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2827), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2827), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2827), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2827), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2827), + [aux_sym_certificate_file_token1] = ACTIONS(2827), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2827), + [aux_sym_channel_timeout_token1] = ACTIONS(2827), + [aux_sym_check_host_ip_token1] = ACTIONS(2827), + [aux_sym_ciphers_token1] = ACTIONS(2827), + [aux_sym_cipher_token1] = ACTIONS(2829), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2827), + [aux_sym_compression_token1] = ACTIONS(2827), + [aux_sym_connection_attempts_token1] = ACTIONS(2827), + [aux_sym_connect_timeout_token1] = ACTIONS(2827), + [aux_sym_control_master_token1] = ACTIONS(2827), + [aux_sym_control_path_token1] = ACTIONS(2827), + [aux_sym_control_persist_token1] = ACTIONS(2827), + [aux_sym_dynamic_forward_token1] = ACTIONS(2827), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2827), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2827), + [aux_sym_escape_char_token1] = ACTIONS(2827), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2827), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2827), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2827), + [aux_sym_forward_agent_token1] = ACTIONS(2827), + [aux_sym_forward_x11_token1] = ACTIONS(2829), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2827), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2827), + [aux_sym_gateway_ports_token1] = ACTIONS(2827), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2827), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2827), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2827), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2827), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2827), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2827), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2827), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2827), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2827), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2827), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2827), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2827), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2827), + [aux_sym_host_key_alias_token1] = ACTIONS(2827), + [aux_sym_hostname_token1] = ACTIONS(2827), + [aux_sym_identities_only_token1] = ACTIONS(2827), + [aux_sym_identity_agent_token1] = ACTIONS(2827), + [aux_sym_identity_file_token1] = ACTIONS(2827), + [aux_sym_ignore_unknown_token1] = ACTIONS(2827), + [aux_sym_include_token1] = ACTIONS(2827), + [aux_sym_ip_qos_token1] = ACTIONS(2827), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2827), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2827), + [aux_sym_kex_algorithms_token1] = ACTIONS(2827), + [aux_sym_known_hosts_command_token1] = ACTIONS(2827), + [aux_sym_local_command_token1] = ACTIONS(2827), + [aux_sym_local_forward_token1] = ACTIONS(2827), + [aux_sym_log_level_token1] = ACTIONS(2827), + [aux_sym_log_verbose_token1] = ACTIONS(2827), + [aux_sym_macs_token1] = ACTIONS(2827), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2827), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2827), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2827), + [aux_sym_password_authentication_token1] = ACTIONS(2827), + [aux_sym_permit_local_command_token1] = ACTIONS(2827), + [aux_sym_permit_remote_open_token1] = ACTIONS(2827), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2827), + [aux_sym_port_token1] = ACTIONS(2827), + [aux_sym_preferred_authentications_token1] = ACTIONS(2827), + [aux_sym_protocol_token1] = ACTIONS(2827), + [aux_sym_proxy_command_token1] = ACTIONS(2827), + [aux_sym_proxy_jump_token1] = ACTIONS(2827), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2827), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2827), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2827), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2827), + [aux_sym_rekey_limit_token1] = ACTIONS(2827), + [aux_sym_remote_command_token1] = ACTIONS(2827), + [aux_sym_remote_forward_token1] = ACTIONS(2827), + [aux_sym_request_tty_token1] = ACTIONS(2827), + [aux_sym_required_rsa_size_token1] = ACTIONS(2827), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2827), + [aux_sym_security_key_provider_token1] = ACTIONS(2827), + [aux_sym_send_env_token1] = ACTIONS(2827), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2827), + [aux_sym_server_alive_interval_token1] = ACTIONS(2827), + [aux_sym_session_type_token1] = ACTIONS(2827), + [aux_sym_set_env_token1] = ACTIONS(2827), + [aux_sym_stdin_null_token1] = ACTIONS(2827), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2827), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2827), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2827), + [aux_sym_syslog_facility_token1] = ACTIONS(2827), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2827), + [aux_sym_keep_alive_token1] = ACTIONS(2827), + [aux_sym_tag_token1] = ACTIONS(2827), + [aux_sym_tunnel_token1] = ACTIONS(2829), + [aux_sym_tunnel_device_token1] = ACTIONS(2827), + [aux_sym_update_host_keys_token1] = ACTIONS(2827), + [aux_sym_use_keychain_token1] = ACTIONS(2827), + [aux_sym_use_roaming_token1] = ACTIONS(2827), + [aux_sym_user_token1] = ACTIONS(2829), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2827), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2827), + [aux_sym_visual_host_key_token1] = ACTIONS(2827), + [aux_sym_xauth_location_token1] = ACTIONS(2827), }, [407] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2828), - [anon_sym_DQUOTE] = ACTIONS(2826), - [aux_sym_match_token1] = ACTIONS(2826), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2826), - [aux_sym_address_family_token1] = ACTIONS(2826), - [aux_sym_batch_mode_token1] = ACTIONS(2826), - [aux_sym_bind_address_token1] = ACTIONS(2826), - [aux_sym_bind_interface_token1] = ACTIONS(2826), - [aux_sym_canonical_domains_token1] = ACTIONS(2826), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2826), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2826), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2826), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2826), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2826), - [aux_sym_certificate_file_token1] = ACTIONS(2826), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2826), - [aux_sym_channel_timeout_token1] = ACTIONS(2826), - [aux_sym_check_host_ip_token1] = ACTIONS(2826), - [aux_sym_ciphers_token1] = ACTIONS(2826), - [aux_sym_cipher_token1] = ACTIONS(2828), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2826), - [aux_sym_compression_token1] = ACTIONS(2826), - [aux_sym_connection_attempts_token1] = ACTIONS(2826), - [aux_sym_connect_timeout_token1] = ACTIONS(2826), - [aux_sym_control_master_token1] = ACTIONS(2826), - [aux_sym_control_path_token1] = ACTIONS(2826), - [aux_sym_control_persist_token1] = ACTIONS(2826), - [aux_sym_dynamic_forward_token1] = ACTIONS(2826), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2826), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2826), - [aux_sym_escape_char_token1] = ACTIONS(2826), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2826), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2826), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2826), - [aux_sym_forward_agent_token1] = ACTIONS(2826), - [aux_sym_forward_x11_token1] = ACTIONS(2828), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2826), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2826), - [aux_sym_gateway_ports_token1] = ACTIONS(2826), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2826), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2826), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2826), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2826), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2826), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2826), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2826), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2826), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2826), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2826), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2826), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2826), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2826), - [aux_sym_host_key_alias_token1] = ACTIONS(2826), - [aux_sym_hostname_token1] = ACTIONS(2826), - [aux_sym_identities_only_token1] = ACTIONS(2826), - [aux_sym_identity_agent_token1] = ACTIONS(2826), - [aux_sym_identity_file_token1] = ACTIONS(2826), - [aux_sym_ignore_unknown_token1] = ACTIONS(2826), - [aux_sym_include_token1] = ACTIONS(2826), - [aux_sym_ip_qos_token1] = ACTIONS(2826), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2826), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2826), - [aux_sym_kex_algorithms_token1] = ACTIONS(2826), - [aux_sym_known_hosts_command_token1] = ACTIONS(2826), - [aux_sym_local_command_token1] = ACTIONS(2826), - [aux_sym_local_forward_token1] = ACTIONS(2826), - [aux_sym_log_level_token1] = ACTIONS(2826), - [aux_sym_log_verbose_token1] = ACTIONS(2826), - [aux_sym_macs_token1] = ACTIONS(2826), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2826), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2826), - [aux_sym_password_authentication_token1] = ACTIONS(2826), - [aux_sym_permit_local_command_token1] = ACTIONS(2826), - [aux_sym_permit_remote_open_token1] = ACTIONS(2826), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2826), - [aux_sym_port_token1] = ACTIONS(2826), - [aux_sym_preferred_authentications_token1] = ACTIONS(2826), - [aux_sym_protocol_token1] = ACTIONS(2826), - [aux_sym_proxy_command_token1] = ACTIONS(2826), - [aux_sym_proxy_jump_token1] = ACTIONS(2826), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2826), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2826), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2826), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2826), - [aux_sym_rekey_limit_token1] = ACTIONS(2826), - [aux_sym_remote_command_token1] = ACTIONS(2826), - [aux_sym_remote_forward_token1] = ACTIONS(2826), - [aux_sym_request_tty_token1] = ACTIONS(2826), - [aux_sym_required_rsa_size_token1] = ACTIONS(2826), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2826), - [aux_sym_security_key_provider_token1] = ACTIONS(2826), - [aux_sym_send_env_token1] = ACTIONS(2826), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2826), - [aux_sym_server_alive_interval_token1] = ACTIONS(2826), - [aux_sym_session_type_token1] = ACTIONS(2826), - [aux_sym_set_env_token1] = ACTIONS(2826), - [aux_sym_stdin_null_token1] = ACTIONS(2826), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2826), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2826), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2826), - [aux_sym_syslog_facility_token1] = ACTIONS(2826), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2826), - [aux_sym_keep_alive_token1] = ACTIONS(2826), - [aux_sym_tag_token1] = ACTIONS(2826), - [aux_sym_tunnel_token1] = ACTIONS(2828), - [aux_sym_tunnel_device_token1] = ACTIONS(2826), - [aux_sym_update_host_keys_token1] = ACTIONS(2826), - [aux_sym_use_keychain_token1] = ACTIONS(2826), - [aux_sym_use_roaming_token1] = ACTIONS(2826), - [aux_sym_user_token1] = ACTIONS(2828), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2826), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2826), - [aux_sym_visual_host_key_token1] = ACTIONS(2826), - [aux_sym_xauth_location_token1] = ACTIONS(2826), + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2833), + [anon_sym_DQUOTE] = ACTIONS(2835), + [aux_sym_match_token1] = ACTIONS(2831), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2831), + [aux_sym_address_family_token1] = ACTIONS(2831), + [aux_sym_batch_mode_token1] = ACTIONS(2831), + [aux_sym_bind_address_token1] = ACTIONS(2831), + [aux_sym_bind_interface_token1] = ACTIONS(2831), + [aux_sym_canonical_domains_token1] = ACTIONS(2831), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2831), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2831), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2831), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2831), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2831), + [aux_sym_certificate_file_token1] = ACTIONS(2831), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2831), + [aux_sym_channel_timeout_token1] = ACTIONS(2831), + [aux_sym_check_host_ip_token1] = ACTIONS(2831), + [aux_sym_ciphers_token1] = ACTIONS(2831), + [aux_sym_cipher_token1] = ACTIONS(2833), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2831), + [aux_sym_compression_token1] = ACTIONS(2831), + [aux_sym_connection_attempts_token1] = ACTIONS(2831), + [aux_sym_connect_timeout_token1] = ACTIONS(2831), + [aux_sym_control_master_token1] = ACTIONS(2831), + [aux_sym_control_path_token1] = ACTIONS(2831), + [aux_sym_control_persist_token1] = ACTIONS(2831), + [aux_sym_dynamic_forward_token1] = ACTIONS(2831), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2831), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2831), + [aux_sym_escape_char_token1] = ACTIONS(2831), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2831), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2831), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2831), + [aux_sym_forward_agent_token1] = ACTIONS(2831), + [aux_sym_forward_x11_token1] = ACTIONS(2833), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2831), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2831), + [aux_sym_gateway_ports_token1] = ACTIONS(2831), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2831), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2831), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2831), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2831), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2831), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2831), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2831), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2831), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2831), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2831), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2831), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2831), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2831), + [aux_sym_host_key_alias_token1] = ACTIONS(2831), + [aux_sym_hostname_token1] = ACTIONS(2831), + [aux_sym_identities_only_token1] = ACTIONS(2831), + [aux_sym_identity_agent_token1] = ACTIONS(2831), + [aux_sym_identity_file_token1] = ACTIONS(2831), + [aux_sym_ignore_unknown_token1] = ACTIONS(2831), + [aux_sym_include_token1] = ACTIONS(2831), + [aux_sym_ip_qos_token1] = ACTIONS(2831), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2831), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2831), + [aux_sym_kex_algorithms_token1] = ACTIONS(2831), + [aux_sym_known_hosts_command_token1] = ACTIONS(2831), + [aux_sym_local_command_token1] = ACTIONS(2831), + [aux_sym_local_forward_token1] = ACTIONS(2831), + [aux_sym_log_level_token1] = ACTIONS(2831), + [aux_sym_log_verbose_token1] = ACTIONS(2831), + [aux_sym_macs_token1] = ACTIONS(2831), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2831), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2831), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2831), + [aux_sym_password_authentication_token1] = ACTIONS(2831), + [aux_sym_permit_local_command_token1] = ACTIONS(2831), + [aux_sym_permit_remote_open_token1] = ACTIONS(2831), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2831), + [aux_sym_port_token1] = ACTIONS(2831), + [aux_sym_preferred_authentications_token1] = ACTIONS(2831), + [aux_sym_protocol_token1] = ACTIONS(2831), + [aux_sym_proxy_command_token1] = ACTIONS(2831), + [aux_sym_proxy_jump_token1] = ACTIONS(2831), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2831), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2831), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2831), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2831), + [aux_sym_rekey_limit_token1] = ACTIONS(2831), + [aux_sym_remote_command_token1] = ACTIONS(2831), + [aux_sym_remote_forward_token1] = ACTIONS(2831), + [aux_sym_request_tty_token1] = ACTIONS(2831), + [aux_sym_required_rsa_size_token1] = ACTIONS(2831), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2831), + [aux_sym_security_key_provider_token1] = ACTIONS(2831), + [aux_sym_send_env_token1] = ACTIONS(2831), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2831), + [aux_sym_server_alive_interval_token1] = ACTIONS(2831), + [aux_sym_session_type_token1] = ACTIONS(2831), + [aux_sym_set_env_token1] = ACTIONS(2831), + [aux_sym_stdin_null_token1] = ACTIONS(2831), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2831), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2831), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2831), + [aux_sym_syslog_facility_token1] = ACTIONS(2831), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2831), + [aux_sym_keep_alive_token1] = ACTIONS(2831), + [aux_sym_tag_token1] = ACTIONS(2831), + [aux_sym_tunnel_token1] = ACTIONS(2833), + [aux_sym_tunnel_device_token1] = ACTIONS(2831), + [aux_sym_update_host_keys_token1] = ACTIONS(2831), + [aux_sym_use_keychain_token1] = ACTIONS(2831), + [aux_sym_use_roaming_token1] = ACTIONS(2831), + [aux_sym_user_token1] = ACTIONS(2833), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2831), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2831), + [aux_sym_visual_host_key_token1] = ACTIONS(2831), + [aux_sym_xauth_location_token1] = ACTIONS(2831), }, [408] = { - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2832), - [anon_sym_DQUOTE] = ACTIONS(2830), - [aux_sym_match_token1] = ACTIONS(2830), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2830), - [aux_sym_address_family_token1] = ACTIONS(2830), - [aux_sym_batch_mode_token1] = ACTIONS(2830), - [aux_sym_bind_address_token1] = ACTIONS(2830), - [aux_sym_bind_interface_token1] = ACTIONS(2830), - [aux_sym_canonical_domains_token1] = ACTIONS(2830), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2830), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2830), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2830), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2830), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2830), - [aux_sym_certificate_file_token1] = ACTIONS(2830), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2830), - [aux_sym_channel_timeout_token1] = ACTIONS(2830), - [aux_sym_check_host_ip_token1] = ACTIONS(2830), - [aux_sym_ciphers_token1] = ACTIONS(2830), - [aux_sym_cipher_token1] = ACTIONS(2832), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2830), - [aux_sym_compression_token1] = ACTIONS(2830), - [aux_sym_connection_attempts_token1] = ACTIONS(2830), - [aux_sym_connect_timeout_token1] = ACTIONS(2830), - [aux_sym_control_master_token1] = ACTIONS(2830), - [aux_sym_control_path_token1] = ACTIONS(2830), - [aux_sym_control_persist_token1] = ACTIONS(2830), - [aux_sym_dynamic_forward_token1] = ACTIONS(2830), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2830), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2830), - [aux_sym_escape_char_token1] = ACTIONS(2830), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2830), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2830), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2830), - [aux_sym_forward_agent_token1] = ACTIONS(2830), - [aux_sym_forward_x11_token1] = ACTIONS(2832), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2830), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2830), - [aux_sym_gateway_ports_token1] = ACTIONS(2830), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2830), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2830), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2830), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2830), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2830), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2830), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2830), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2830), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2830), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2830), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2830), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2830), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2830), - [aux_sym_host_key_alias_token1] = ACTIONS(2830), - [aux_sym_hostname_token1] = ACTIONS(2830), - [aux_sym_identities_only_token1] = ACTIONS(2830), - [aux_sym_identity_agent_token1] = ACTIONS(2830), - [aux_sym_identity_file_token1] = ACTIONS(2830), - [aux_sym_ignore_unknown_token1] = ACTIONS(2830), - [aux_sym_include_token1] = ACTIONS(2830), - [aux_sym_ip_qos_token1] = ACTIONS(2830), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2830), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2830), - [aux_sym_kex_algorithms_token1] = ACTIONS(2830), - [aux_sym_known_hosts_command_token1] = ACTIONS(2830), - [aux_sym_local_command_token1] = ACTIONS(2830), - [aux_sym_local_forward_token1] = ACTIONS(2830), - [aux_sym_log_level_token1] = ACTIONS(2830), - [aux_sym_log_verbose_token1] = ACTIONS(2830), - [aux_sym_macs_token1] = ACTIONS(2830), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2830), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2830), - [aux_sym_password_authentication_token1] = ACTIONS(2830), - [aux_sym_permit_local_command_token1] = ACTIONS(2830), - [aux_sym_permit_remote_open_token1] = ACTIONS(2830), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2830), - [aux_sym_port_token1] = ACTIONS(2830), - [aux_sym_preferred_authentications_token1] = ACTIONS(2830), - [aux_sym_protocol_token1] = ACTIONS(2830), - [aux_sym_proxy_command_token1] = ACTIONS(2830), - [aux_sym_proxy_jump_token1] = ACTIONS(2830), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2830), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2830), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2830), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2830), - [aux_sym_rekey_limit_token1] = ACTIONS(2830), - [aux_sym_remote_command_token1] = ACTIONS(2830), - [aux_sym_remote_forward_token1] = ACTIONS(2830), - [aux_sym_request_tty_token1] = ACTIONS(2830), - [aux_sym_required_rsa_size_token1] = ACTIONS(2830), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2830), - [aux_sym_security_key_provider_token1] = ACTIONS(2830), - [aux_sym_send_env_token1] = ACTIONS(2830), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2830), - [aux_sym_server_alive_interval_token1] = ACTIONS(2830), - [aux_sym_session_type_token1] = ACTIONS(2830), - [aux_sym_set_env_token1] = ACTIONS(2830), - [aux_sym_stdin_null_token1] = ACTIONS(2830), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2830), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2830), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2830), - [aux_sym_syslog_facility_token1] = ACTIONS(2830), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2830), - [aux_sym_keep_alive_token1] = ACTIONS(2830), - [aux_sym_tag_token1] = ACTIONS(2830), - [aux_sym_tunnel_token1] = ACTIONS(2832), - [aux_sym_tunnel_device_token1] = ACTIONS(2830), - [aux_sym_update_host_keys_token1] = ACTIONS(2830), - [aux_sym_use_keychain_token1] = ACTIONS(2830), - [aux_sym_use_roaming_token1] = ACTIONS(2830), - [aux_sym_user_token1] = ACTIONS(2832), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2830), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2830), - [aux_sym_visual_host_key_token1] = ACTIONS(2830), - [aux_sym_xauth_location_token1] = ACTIONS(2830), + [ts_builtin_sym_end] = ACTIONS(2837), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2839), + [anon_sym_DQUOTE] = ACTIONS(2841), + [aux_sym_match_token1] = ACTIONS(2837), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2837), + [aux_sym_address_family_token1] = ACTIONS(2837), + [aux_sym_batch_mode_token1] = ACTIONS(2837), + [aux_sym_bind_address_token1] = ACTIONS(2837), + [aux_sym_bind_interface_token1] = ACTIONS(2837), + [aux_sym_canonical_domains_token1] = ACTIONS(2837), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2837), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2837), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2837), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2837), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2837), + [aux_sym_certificate_file_token1] = ACTIONS(2837), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2837), + [aux_sym_channel_timeout_token1] = ACTIONS(2837), + [aux_sym_check_host_ip_token1] = ACTIONS(2837), + [aux_sym_ciphers_token1] = ACTIONS(2837), + [aux_sym_cipher_token1] = ACTIONS(2839), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2837), + [aux_sym_compression_token1] = ACTIONS(2837), + [aux_sym_connection_attempts_token1] = ACTIONS(2837), + [aux_sym_connect_timeout_token1] = ACTIONS(2837), + [aux_sym_control_master_token1] = ACTIONS(2837), + [aux_sym_control_path_token1] = ACTIONS(2837), + [aux_sym_control_persist_token1] = ACTIONS(2837), + [aux_sym_dynamic_forward_token1] = ACTIONS(2837), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2837), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2837), + [aux_sym_escape_char_token1] = ACTIONS(2837), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2837), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2837), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2837), + [aux_sym_forward_agent_token1] = ACTIONS(2837), + [aux_sym_forward_x11_token1] = ACTIONS(2839), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2837), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2837), + [aux_sym_gateway_ports_token1] = ACTIONS(2837), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2837), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2837), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2837), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2837), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2837), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2837), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2837), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2837), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2837), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2837), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2837), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2837), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2837), + [aux_sym_host_key_alias_token1] = ACTIONS(2837), + [aux_sym_hostname_token1] = ACTIONS(2837), + [aux_sym_identities_only_token1] = ACTIONS(2837), + [aux_sym_identity_agent_token1] = ACTIONS(2837), + [aux_sym_identity_file_token1] = ACTIONS(2837), + [aux_sym_ignore_unknown_token1] = ACTIONS(2837), + [aux_sym_include_token1] = ACTIONS(2837), + [aux_sym_ip_qos_token1] = ACTIONS(2837), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2837), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2837), + [aux_sym_kex_algorithms_token1] = ACTIONS(2837), + [aux_sym_known_hosts_command_token1] = ACTIONS(2837), + [aux_sym_local_command_token1] = ACTIONS(2837), + [aux_sym_local_forward_token1] = ACTIONS(2837), + [aux_sym_log_level_token1] = ACTIONS(2837), + [aux_sym_log_verbose_token1] = ACTIONS(2837), + [aux_sym_macs_token1] = ACTIONS(2837), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2837), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2837), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2837), + [aux_sym_password_authentication_token1] = ACTIONS(2837), + [aux_sym_permit_local_command_token1] = ACTIONS(2837), + [aux_sym_permit_remote_open_token1] = ACTIONS(2837), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2837), + [aux_sym_port_token1] = ACTIONS(2837), + [aux_sym_preferred_authentications_token1] = ACTIONS(2837), + [aux_sym_protocol_token1] = ACTIONS(2837), + [aux_sym_proxy_command_token1] = ACTIONS(2837), + [aux_sym_proxy_jump_token1] = ACTIONS(2837), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2837), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2837), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2837), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2837), + [aux_sym_rekey_limit_token1] = ACTIONS(2837), + [aux_sym_remote_command_token1] = ACTIONS(2837), + [aux_sym_remote_forward_token1] = ACTIONS(2837), + [aux_sym_request_tty_token1] = ACTIONS(2837), + [aux_sym_required_rsa_size_token1] = ACTIONS(2837), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2837), + [aux_sym_security_key_provider_token1] = ACTIONS(2837), + [aux_sym_send_env_token1] = ACTIONS(2837), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2837), + [aux_sym_server_alive_interval_token1] = ACTIONS(2837), + [aux_sym_session_type_token1] = ACTIONS(2837), + [aux_sym_set_env_token1] = ACTIONS(2837), + [aux_sym_stdin_null_token1] = ACTIONS(2837), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2837), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2837), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2837), + [aux_sym_syslog_facility_token1] = ACTIONS(2837), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2837), + [aux_sym_keep_alive_token1] = ACTIONS(2837), + [aux_sym_tag_token1] = ACTIONS(2837), + [aux_sym_tunnel_token1] = ACTIONS(2839), + [aux_sym_tunnel_device_token1] = ACTIONS(2837), + [aux_sym_update_host_keys_token1] = ACTIONS(2837), + [aux_sym_use_keychain_token1] = ACTIONS(2837), + [aux_sym_use_roaming_token1] = ACTIONS(2837), + [aux_sym_user_token1] = ACTIONS(2839), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2837), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2837), + [aux_sym_visual_host_key_token1] = ACTIONS(2837), + [aux_sym_xauth_location_token1] = ACTIONS(2837), }, [409] = { - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2836), - [anon_sym_DQUOTE] = ACTIONS(2838), - [aux_sym_match_token1] = ACTIONS(2834), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2834), - [aux_sym_address_family_token1] = ACTIONS(2834), - [aux_sym_batch_mode_token1] = ACTIONS(2834), - [aux_sym_bind_address_token1] = ACTIONS(2834), - [aux_sym_bind_interface_token1] = ACTIONS(2834), - [aux_sym_canonical_domains_token1] = ACTIONS(2834), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2834), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2834), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2834), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2834), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2834), - [aux_sym_certificate_file_token1] = ACTIONS(2834), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2834), - [aux_sym_channel_timeout_token1] = ACTIONS(2834), - [aux_sym_check_host_ip_token1] = ACTIONS(2834), - [aux_sym_ciphers_token1] = ACTIONS(2834), - [aux_sym_cipher_token1] = ACTIONS(2836), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2834), - [aux_sym_compression_token1] = ACTIONS(2834), - [aux_sym_connection_attempts_token1] = ACTIONS(2834), - [aux_sym_connect_timeout_token1] = ACTIONS(2834), - [aux_sym_control_master_token1] = ACTIONS(2834), - [aux_sym_control_path_token1] = ACTIONS(2834), - [aux_sym_control_persist_token1] = ACTIONS(2834), - [aux_sym_dynamic_forward_token1] = ACTIONS(2834), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2834), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2834), - [aux_sym_escape_char_token1] = ACTIONS(2834), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2834), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2834), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2834), - [aux_sym_forward_agent_token1] = ACTIONS(2834), - [aux_sym_forward_x11_token1] = ACTIONS(2836), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2834), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2834), - [aux_sym_gateway_ports_token1] = ACTIONS(2834), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2834), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2834), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2834), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2834), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2834), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2834), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2834), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2834), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2834), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2834), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2834), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2834), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2834), - [aux_sym_host_key_alias_token1] = ACTIONS(2834), - [aux_sym_hostname_token1] = ACTIONS(2834), - [aux_sym_identities_only_token1] = ACTIONS(2834), - [aux_sym_identity_agent_token1] = ACTIONS(2834), - [aux_sym_identity_file_token1] = ACTIONS(2834), - [aux_sym_ignore_unknown_token1] = ACTIONS(2834), - [aux_sym_include_token1] = ACTIONS(2834), - [aux_sym_ip_qos_token1] = ACTIONS(2834), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2834), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2834), - [aux_sym_kex_algorithms_token1] = ACTIONS(2834), - [aux_sym_known_hosts_command_token1] = ACTIONS(2834), - [aux_sym_local_command_token1] = ACTIONS(2834), - [aux_sym_local_forward_token1] = ACTIONS(2834), - [aux_sym_log_level_token1] = ACTIONS(2834), - [aux_sym_log_verbose_token1] = ACTIONS(2834), - [aux_sym_macs_token1] = ACTIONS(2834), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2834), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2834), - [aux_sym_password_authentication_token1] = ACTIONS(2834), - [aux_sym_permit_local_command_token1] = ACTIONS(2834), - [aux_sym_permit_remote_open_token1] = ACTIONS(2834), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2834), - [aux_sym_port_token1] = ACTIONS(2834), - [aux_sym_preferred_authentications_token1] = ACTIONS(2834), - [aux_sym_protocol_token1] = ACTIONS(2834), - [aux_sym_proxy_command_token1] = ACTIONS(2834), - [aux_sym_proxy_jump_token1] = ACTIONS(2834), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2834), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2834), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2834), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2834), - [aux_sym_rekey_limit_token1] = ACTIONS(2834), - [aux_sym_remote_command_token1] = ACTIONS(2834), - [aux_sym_remote_forward_token1] = ACTIONS(2834), - [aux_sym_request_tty_token1] = ACTIONS(2834), - [aux_sym_required_rsa_size_token1] = ACTIONS(2834), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2834), - [aux_sym_security_key_provider_token1] = ACTIONS(2834), - [aux_sym_send_env_token1] = ACTIONS(2834), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2834), - [aux_sym_server_alive_interval_token1] = ACTIONS(2834), - [aux_sym_session_type_token1] = ACTIONS(2834), - [aux_sym_set_env_token1] = ACTIONS(2834), - [aux_sym_stdin_null_token1] = ACTIONS(2834), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2834), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2834), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2834), - [aux_sym_syslog_facility_token1] = ACTIONS(2834), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2834), - [aux_sym_keep_alive_token1] = ACTIONS(2834), - [aux_sym_tag_token1] = ACTIONS(2834), - [aux_sym_tunnel_token1] = ACTIONS(2836), - [aux_sym_tunnel_device_token1] = ACTIONS(2834), - [aux_sym_update_host_keys_token1] = ACTIONS(2834), - [aux_sym_use_keychain_token1] = ACTIONS(2834), - [aux_sym_use_roaming_token1] = ACTIONS(2834), - [aux_sym_user_token1] = ACTIONS(2836), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2834), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2834), - [aux_sym_visual_host_key_token1] = ACTIONS(2834), - [aux_sym_xauth_location_token1] = ACTIONS(2834), + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2845), + [anon_sym_DQUOTE] = ACTIONS(2843), + [aux_sym_match_token1] = ACTIONS(2843), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2843), + [aux_sym_address_family_token1] = ACTIONS(2843), + [aux_sym_batch_mode_token1] = ACTIONS(2843), + [aux_sym_bind_address_token1] = ACTIONS(2843), + [aux_sym_bind_interface_token1] = ACTIONS(2843), + [aux_sym_canonical_domains_token1] = ACTIONS(2843), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2843), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2843), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2843), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2843), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2843), + [aux_sym_certificate_file_token1] = ACTIONS(2843), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2843), + [aux_sym_channel_timeout_token1] = ACTIONS(2843), + [aux_sym_check_host_ip_token1] = ACTIONS(2843), + [aux_sym_ciphers_token1] = ACTIONS(2843), + [aux_sym_cipher_token1] = ACTIONS(2845), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2843), + [aux_sym_compression_token1] = ACTIONS(2843), + [aux_sym_connection_attempts_token1] = ACTIONS(2843), + [aux_sym_connect_timeout_token1] = ACTIONS(2843), + [aux_sym_control_master_token1] = ACTIONS(2843), + [aux_sym_control_path_token1] = ACTIONS(2843), + [aux_sym_control_persist_token1] = ACTIONS(2843), + [aux_sym_dynamic_forward_token1] = ACTIONS(2843), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2843), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2843), + [aux_sym_escape_char_token1] = ACTIONS(2843), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2843), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2843), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2843), + [aux_sym_forward_agent_token1] = ACTIONS(2843), + [aux_sym_forward_x11_token1] = ACTIONS(2845), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2843), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2843), + [aux_sym_gateway_ports_token1] = ACTIONS(2843), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2843), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2843), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2843), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2843), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2843), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2843), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2843), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2843), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2843), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2843), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2843), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2843), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2843), + [aux_sym_host_key_alias_token1] = ACTIONS(2843), + [aux_sym_hostname_token1] = ACTIONS(2843), + [aux_sym_identities_only_token1] = ACTIONS(2843), + [aux_sym_identity_agent_token1] = ACTIONS(2843), + [aux_sym_identity_file_token1] = ACTIONS(2843), + [aux_sym_ignore_unknown_token1] = ACTIONS(2843), + [aux_sym_include_token1] = ACTIONS(2843), + [aux_sym_ip_qos_token1] = ACTIONS(2843), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2843), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2843), + [aux_sym_kex_algorithms_token1] = ACTIONS(2843), + [aux_sym_known_hosts_command_token1] = ACTIONS(2843), + [aux_sym_local_command_token1] = ACTIONS(2843), + [aux_sym_local_forward_token1] = ACTIONS(2843), + [aux_sym_log_level_token1] = ACTIONS(2843), + [aux_sym_log_verbose_token1] = ACTIONS(2843), + [aux_sym_macs_token1] = ACTIONS(2843), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2843), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2843), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2843), + [aux_sym_password_authentication_token1] = ACTIONS(2843), + [aux_sym_permit_local_command_token1] = ACTIONS(2843), + [aux_sym_permit_remote_open_token1] = ACTIONS(2843), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2843), + [aux_sym_port_token1] = ACTIONS(2843), + [aux_sym_preferred_authentications_token1] = ACTIONS(2843), + [aux_sym_protocol_token1] = ACTIONS(2843), + [aux_sym_proxy_command_token1] = ACTIONS(2843), + [aux_sym_proxy_jump_token1] = ACTIONS(2843), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2843), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2843), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2843), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2843), + [aux_sym_rekey_limit_token1] = ACTIONS(2843), + [aux_sym_remote_command_token1] = ACTIONS(2843), + [aux_sym_remote_forward_token1] = ACTIONS(2843), + [aux_sym_request_tty_token1] = ACTIONS(2843), + [aux_sym_required_rsa_size_token1] = ACTIONS(2843), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2843), + [aux_sym_security_key_provider_token1] = ACTIONS(2843), + [aux_sym_send_env_token1] = ACTIONS(2843), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2843), + [aux_sym_server_alive_interval_token1] = ACTIONS(2843), + [aux_sym_session_type_token1] = ACTIONS(2843), + [aux_sym_set_env_token1] = ACTIONS(2843), + [aux_sym_stdin_null_token1] = ACTIONS(2843), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2843), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2843), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2843), + [aux_sym_syslog_facility_token1] = ACTIONS(2843), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2843), + [aux_sym_keep_alive_token1] = ACTIONS(2843), + [aux_sym_tag_token1] = ACTIONS(2843), + [aux_sym_tunnel_token1] = ACTIONS(2845), + [aux_sym_tunnel_device_token1] = ACTIONS(2843), + [aux_sym_update_host_keys_token1] = ACTIONS(2843), + [aux_sym_use_keychain_token1] = ACTIONS(2843), + [aux_sym_use_roaming_token1] = ACTIONS(2843), + [aux_sym_user_token1] = ACTIONS(2845), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2843), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2843), + [aux_sym_visual_host_key_token1] = ACTIONS(2843), + [aux_sym_xauth_location_token1] = ACTIONS(2843), }, [410] = { - [ts_builtin_sym_end] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2842), - [anon_sym_DQUOTE] = ACTIONS(2840), - [aux_sym_match_token1] = ACTIONS(2840), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2840), - [aux_sym_address_family_token1] = ACTIONS(2840), - [aux_sym_batch_mode_token1] = ACTIONS(2840), - [aux_sym_bind_address_token1] = ACTIONS(2840), - [aux_sym_bind_interface_token1] = ACTIONS(2840), - [aux_sym_canonical_domains_token1] = ACTIONS(2840), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2840), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2840), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2840), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2840), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2840), - [aux_sym_certificate_file_token1] = ACTIONS(2840), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2840), - [aux_sym_channel_timeout_token1] = ACTIONS(2840), - [aux_sym_check_host_ip_token1] = ACTIONS(2840), - [aux_sym_ciphers_token1] = ACTIONS(2840), - [aux_sym_cipher_token1] = ACTIONS(2842), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2840), - [aux_sym_compression_token1] = ACTIONS(2840), - [aux_sym_connection_attempts_token1] = ACTIONS(2840), - [aux_sym_connect_timeout_token1] = ACTIONS(2840), - [aux_sym_control_master_token1] = ACTIONS(2840), - [aux_sym_control_path_token1] = ACTIONS(2840), - [aux_sym_control_persist_token1] = ACTIONS(2840), - [aux_sym_dynamic_forward_token1] = ACTIONS(2840), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2840), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2840), - [aux_sym_escape_char_token1] = ACTIONS(2840), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2840), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2840), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2840), - [aux_sym_forward_agent_token1] = ACTIONS(2840), - [aux_sym_forward_x11_token1] = ACTIONS(2842), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2840), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2840), - [aux_sym_gateway_ports_token1] = ACTIONS(2840), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2840), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2840), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2840), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2840), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2840), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2840), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2840), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2840), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2840), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2840), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2840), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2840), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2840), - [aux_sym_host_key_alias_token1] = ACTIONS(2840), - [aux_sym_hostname_token1] = ACTIONS(2840), - [aux_sym_identities_only_token1] = ACTIONS(2840), - [aux_sym_identity_agent_token1] = ACTIONS(2840), - [aux_sym_identity_file_token1] = ACTIONS(2840), - [aux_sym_ignore_unknown_token1] = ACTIONS(2840), - [aux_sym_include_token1] = ACTIONS(2840), - [aux_sym_ip_qos_token1] = ACTIONS(2840), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2840), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2840), - [aux_sym_kex_algorithms_token1] = ACTIONS(2840), - [aux_sym_known_hosts_command_token1] = ACTIONS(2840), - [aux_sym_local_command_token1] = ACTIONS(2840), - [aux_sym_local_forward_token1] = ACTIONS(2840), - [aux_sym_log_level_token1] = ACTIONS(2840), - [aux_sym_log_verbose_token1] = ACTIONS(2840), - [aux_sym_macs_token1] = ACTIONS(2840), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2840), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2840), - [aux_sym_password_authentication_token1] = ACTIONS(2840), - [aux_sym_permit_local_command_token1] = ACTIONS(2840), - [aux_sym_permit_remote_open_token1] = ACTIONS(2840), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2840), - [aux_sym_port_token1] = ACTIONS(2840), - [aux_sym_preferred_authentications_token1] = ACTIONS(2840), - [aux_sym_protocol_token1] = ACTIONS(2840), - [aux_sym_proxy_command_token1] = ACTIONS(2840), - [aux_sym_proxy_jump_token1] = ACTIONS(2840), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2840), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2840), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2840), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2840), - [aux_sym_rekey_limit_token1] = ACTIONS(2840), - [aux_sym_remote_command_token1] = ACTIONS(2840), - [aux_sym_remote_forward_token1] = ACTIONS(2840), - [aux_sym_request_tty_token1] = ACTIONS(2840), - [aux_sym_required_rsa_size_token1] = ACTIONS(2840), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2840), - [aux_sym_security_key_provider_token1] = ACTIONS(2840), - [aux_sym_send_env_token1] = ACTIONS(2840), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2840), - [aux_sym_server_alive_interval_token1] = ACTIONS(2840), - [aux_sym_session_type_token1] = ACTIONS(2840), - [aux_sym_set_env_token1] = ACTIONS(2840), - [aux_sym_stdin_null_token1] = ACTIONS(2840), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2840), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2840), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2840), - [aux_sym_syslog_facility_token1] = ACTIONS(2840), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2840), - [aux_sym_keep_alive_token1] = ACTIONS(2840), - [aux_sym_tag_token1] = ACTIONS(2840), - [aux_sym_tunnel_token1] = ACTIONS(2842), - [aux_sym_tunnel_device_token1] = ACTIONS(2840), - [aux_sym_update_host_keys_token1] = ACTIONS(2840), - [aux_sym_use_keychain_token1] = ACTIONS(2840), - [aux_sym_use_roaming_token1] = ACTIONS(2840), - [aux_sym_user_token1] = ACTIONS(2842), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2840), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2840), - [aux_sym_visual_host_key_token1] = ACTIONS(2840), - [aux_sym_xauth_location_token1] = ACTIONS(2840), + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2849), + [anon_sym_DQUOTE] = ACTIONS(2847), + [aux_sym_match_token1] = ACTIONS(2847), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2847), + [aux_sym_address_family_token1] = ACTIONS(2847), + [aux_sym_batch_mode_token1] = ACTIONS(2847), + [aux_sym_bind_address_token1] = ACTIONS(2847), + [aux_sym_bind_interface_token1] = ACTIONS(2847), + [aux_sym_canonical_domains_token1] = ACTIONS(2847), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2847), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2847), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2847), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2847), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2847), + [aux_sym_certificate_file_token1] = ACTIONS(2847), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2847), + [aux_sym_channel_timeout_token1] = ACTIONS(2847), + [aux_sym_check_host_ip_token1] = ACTIONS(2847), + [aux_sym_ciphers_token1] = ACTIONS(2847), + [aux_sym_cipher_token1] = ACTIONS(2849), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2847), + [aux_sym_compression_token1] = ACTIONS(2847), + [aux_sym_connection_attempts_token1] = ACTIONS(2847), + [aux_sym_connect_timeout_token1] = ACTIONS(2847), + [aux_sym_control_master_token1] = ACTIONS(2847), + [aux_sym_control_path_token1] = ACTIONS(2847), + [aux_sym_control_persist_token1] = ACTIONS(2847), + [aux_sym_dynamic_forward_token1] = ACTIONS(2847), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2847), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2847), + [aux_sym_escape_char_token1] = ACTIONS(2847), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2847), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2847), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2847), + [aux_sym_forward_agent_token1] = ACTIONS(2847), + [aux_sym_forward_x11_token1] = ACTIONS(2849), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2847), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2847), + [aux_sym_gateway_ports_token1] = ACTIONS(2847), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2847), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2847), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2847), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2847), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2847), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2847), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2847), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2847), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2847), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2847), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2847), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2847), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2847), + [aux_sym_host_key_alias_token1] = ACTIONS(2847), + [aux_sym_hostname_token1] = ACTIONS(2847), + [aux_sym_identities_only_token1] = ACTIONS(2847), + [aux_sym_identity_agent_token1] = ACTIONS(2847), + [aux_sym_identity_file_token1] = ACTIONS(2847), + [aux_sym_ignore_unknown_token1] = ACTIONS(2847), + [aux_sym_include_token1] = ACTIONS(2847), + [aux_sym_ip_qos_token1] = ACTIONS(2847), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2847), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2847), + [aux_sym_kex_algorithms_token1] = ACTIONS(2847), + [aux_sym_known_hosts_command_token1] = ACTIONS(2847), + [aux_sym_local_command_token1] = ACTIONS(2847), + [aux_sym_local_forward_token1] = ACTIONS(2847), + [aux_sym_log_level_token1] = ACTIONS(2847), + [aux_sym_log_verbose_token1] = ACTIONS(2847), + [aux_sym_macs_token1] = ACTIONS(2847), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2847), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2847), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2847), + [aux_sym_password_authentication_token1] = ACTIONS(2847), + [aux_sym_permit_local_command_token1] = ACTIONS(2847), + [aux_sym_permit_remote_open_token1] = ACTIONS(2847), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2847), + [aux_sym_port_token1] = ACTIONS(2847), + [aux_sym_preferred_authentications_token1] = ACTIONS(2847), + [aux_sym_protocol_token1] = ACTIONS(2847), + [aux_sym_proxy_command_token1] = ACTIONS(2847), + [aux_sym_proxy_jump_token1] = ACTIONS(2847), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2847), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2847), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2847), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2847), + [aux_sym_rekey_limit_token1] = ACTIONS(2847), + [aux_sym_remote_command_token1] = ACTIONS(2847), + [aux_sym_remote_forward_token1] = ACTIONS(2847), + [aux_sym_request_tty_token1] = ACTIONS(2847), + [aux_sym_required_rsa_size_token1] = ACTIONS(2847), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2847), + [aux_sym_security_key_provider_token1] = ACTIONS(2847), + [aux_sym_send_env_token1] = ACTIONS(2847), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2847), + [aux_sym_server_alive_interval_token1] = ACTIONS(2847), + [aux_sym_session_type_token1] = ACTIONS(2847), + [aux_sym_set_env_token1] = ACTIONS(2847), + [aux_sym_stdin_null_token1] = ACTIONS(2847), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2847), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2847), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2847), + [aux_sym_syslog_facility_token1] = ACTIONS(2847), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2847), + [aux_sym_keep_alive_token1] = ACTIONS(2847), + [aux_sym_tag_token1] = ACTIONS(2847), + [aux_sym_tunnel_token1] = ACTIONS(2849), + [aux_sym_tunnel_device_token1] = ACTIONS(2847), + [aux_sym_update_host_keys_token1] = ACTIONS(2847), + [aux_sym_use_keychain_token1] = ACTIONS(2847), + [aux_sym_use_roaming_token1] = ACTIONS(2847), + [aux_sym_user_token1] = ACTIONS(2849), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2847), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2847), + [aux_sym_visual_host_key_token1] = ACTIONS(2847), + [aux_sym_xauth_location_token1] = ACTIONS(2847), }, [411] = { - [ts_builtin_sym_end] = ACTIONS(2844), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2846), - [anon_sym_DQUOTE] = ACTIONS(2848), - [aux_sym_match_token1] = ACTIONS(2844), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2844), - [aux_sym_address_family_token1] = ACTIONS(2844), - [aux_sym_batch_mode_token1] = ACTIONS(2844), - [aux_sym_bind_address_token1] = ACTIONS(2844), - [aux_sym_bind_interface_token1] = ACTIONS(2844), - [aux_sym_canonical_domains_token1] = ACTIONS(2844), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2844), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2844), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2844), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2844), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2844), - [aux_sym_certificate_file_token1] = ACTIONS(2844), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2844), - [aux_sym_channel_timeout_token1] = ACTIONS(2844), - [aux_sym_check_host_ip_token1] = ACTIONS(2844), - [aux_sym_ciphers_token1] = ACTIONS(2844), - [aux_sym_cipher_token1] = ACTIONS(2846), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2844), - [aux_sym_compression_token1] = ACTIONS(2844), - [aux_sym_connection_attempts_token1] = ACTIONS(2844), - [aux_sym_connect_timeout_token1] = ACTIONS(2844), - [aux_sym_control_master_token1] = ACTIONS(2844), - [aux_sym_control_path_token1] = ACTIONS(2844), - [aux_sym_control_persist_token1] = ACTIONS(2844), - [aux_sym_dynamic_forward_token1] = ACTIONS(2844), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2844), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2844), - [aux_sym_escape_char_token1] = ACTIONS(2844), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2844), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2844), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2844), - [aux_sym_forward_agent_token1] = ACTIONS(2844), - [aux_sym_forward_x11_token1] = ACTIONS(2846), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2844), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2844), - [aux_sym_gateway_ports_token1] = ACTIONS(2844), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2844), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2844), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2844), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2844), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2844), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2844), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2844), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2844), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2844), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2844), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2844), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2844), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2844), - [aux_sym_host_key_alias_token1] = ACTIONS(2844), - [aux_sym_hostname_token1] = ACTIONS(2844), - [aux_sym_identities_only_token1] = ACTIONS(2844), - [aux_sym_identity_agent_token1] = ACTIONS(2844), - [aux_sym_identity_file_token1] = ACTIONS(2844), - [aux_sym_ignore_unknown_token1] = ACTIONS(2844), - [aux_sym_include_token1] = ACTIONS(2844), - [aux_sym_ip_qos_token1] = ACTIONS(2844), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2844), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2844), - [aux_sym_kex_algorithms_token1] = ACTIONS(2844), - [aux_sym_known_hosts_command_token1] = ACTIONS(2844), - [aux_sym_local_command_token1] = ACTIONS(2844), - [aux_sym_local_forward_token1] = ACTIONS(2844), - [aux_sym_log_level_token1] = ACTIONS(2844), - [aux_sym_log_verbose_token1] = ACTIONS(2844), - [aux_sym_macs_token1] = ACTIONS(2844), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2844), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2844), - [aux_sym_password_authentication_token1] = ACTIONS(2844), - [aux_sym_permit_local_command_token1] = ACTIONS(2844), - [aux_sym_permit_remote_open_token1] = ACTIONS(2844), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2844), - [aux_sym_port_token1] = ACTIONS(2844), - [aux_sym_preferred_authentications_token1] = ACTIONS(2844), - [aux_sym_protocol_token1] = ACTIONS(2844), - [aux_sym_proxy_command_token1] = ACTIONS(2844), - [aux_sym_proxy_jump_token1] = ACTIONS(2844), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2844), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2844), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2844), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2844), - [aux_sym_rekey_limit_token1] = ACTIONS(2844), - [aux_sym_remote_command_token1] = ACTIONS(2844), - [aux_sym_remote_forward_token1] = ACTIONS(2844), - [aux_sym_request_tty_token1] = ACTIONS(2844), - [aux_sym_required_rsa_size_token1] = ACTIONS(2844), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2844), - [aux_sym_security_key_provider_token1] = ACTIONS(2844), - [aux_sym_send_env_token1] = ACTIONS(2844), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2844), - [aux_sym_server_alive_interval_token1] = ACTIONS(2844), - [aux_sym_session_type_token1] = ACTIONS(2844), - [aux_sym_set_env_token1] = ACTIONS(2844), - [aux_sym_stdin_null_token1] = ACTIONS(2844), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2844), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2844), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2844), - [aux_sym_syslog_facility_token1] = ACTIONS(2844), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2844), - [aux_sym_keep_alive_token1] = ACTIONS(2844), - [aux_sym_tag_token1] = ACTIONS(2844), - [aux_sym_tunnel_token1] = ACTIONS(2846), - [aux_sym_tunnel_device_token1] = ACTIONS(2844), - [aux_sym_update_host_keys_token1] = ACTIONS(2844), - [aux_sym_use_keychain_token1] = ACTIONS(2844), - [aux_sym_use_roaming_token1] = ACTIONS(2844), - [aux_sym_user_token1] = ACTIONS(2846), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2844), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2844), - [aux_sym_visual_host_key_token1] = ACTIONS(2844), - [aux_sym_xauth_location_token1] = ACTIONS(2844), + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2853), + [anon_sym_DQUOTE] = ACTIONS(2855), + [aux_sym_match_token1] = ACTIONS(2851), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2851), + [aux_sym_address_family_token1] = ACTIONS(2851), + [aux_sym_batch_mode_token1] = ACTIONS(2851), + [aux_sym_bind_address_token1] = ACTIONS(2851), + [aux_sym_bind_interface_token1] = ACTIONS(2851), + [aux_sym_canonical_domains_token1] = ACTIONS(2851), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2851), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2851), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2851), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2851), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2851), + [aux_sym_certificate_file_token1] = ACTIONS(2851), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2851), + [aux_sym_channel_timeout_token1] = ACTIONS(2851), + [aux_sym_check_host_ip_token1] = ACTIONS(2851), + [aux_sym_ciphers_token1] = ACTIONS(2851), + [aux_sym_cipher_token1] = ACTIONS(2853), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2851), + [aux_sym_compression_token1] = ACTIONS(2851), + [aux_sym_connection_attempts_token1] = ACTIONS(2851), + [aux_sym_connect_timeout_token1] = ACTIONS(2851), + [aux_sym_control_master_token1] = ACTIONS(2851), + [aux_sym_control_path_token1] = ACTIONS(2851), + [aux_sym_control_persist_token1] = ACTIONS(2851), + [aux_sym_dynamic_forward_token1] = ACTIONS(2851), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2851), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2851), + [aux_sym_escape_char_token1] = ACTIONS(2851), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2851), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2851), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2851), + [aux_sym_forward_agent_token1] = ACTIONS(2851), + [aux_sym_forward_x11_token1] = ACTIONS(2853), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2851), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2851), + [aux_sym_gateway_ports_token1] = ACTIONS(2851), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2851), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2851), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2851), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2851), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2851), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2851), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2851), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2851), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2851), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2851), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2851), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2851), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2851), + [aux_sym_host_key_alias_token1] = ACTIONS(2851), + [aux_sym_hostname_token1] = ACTIONS(2851), + [aux_sym_identities_only_token1] = ACTIONS(2851), + [aux_sym_identity_agent_token1] = ACTIONS(2851), + [aux_sym_identity_file_token1] = ACTIONS(2851), + [aux_sym_ignore_unknown_token1] = ACTIONS(2851), + [aux_sym_include_token1] = ACTIONS(2851), + [aux_sym_ip_qos_token1] = ACTIONS(2851), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2851), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2851), + [aux_sym_kex_algorithms_token1] = ACTIONS(2851), + [aux_sym_known_hosts_command_token1] = ACTIONS(2851), + [aux_sym_local_command_token1] = ACTIONS(2851), + [aux_sym_local_forward_token1] = ACTIONS(2851), + [aux_sym_log_level_token1] = ACTIONS(2851), + [aux_sym_log_verbose_token1] = ACTIONS(2851), + [aux_sym_macs_token1] = ACTIONS(2851), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2851), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2851), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2851), + [aux_sym_password_authentication_token1] = ACTIONS(2851), + [aux_sym_permit_local_command_token1] = ACTIONS(2851), + [aux_sym_permit_remote_open_token1] = ACTIONS(2851), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2851), + [aux_sym_port_token1] = ACTIONS(2851), + [aux_sym_preferred_authentications_token1] = ACTIONS(2851), + [aux_sym_protocol_token1] = ACTIONS(2851), + [aux_sym_proxy_command_token1] = ACTIONS(2851), + [aux_sym_proxy_jump_token1] = ACTIONS(2851), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2851), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2851), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2851), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2851), + [aux_sym_rekey_limit_token1] = ACTIONS(2851), + [aux_sym_remote_command_token1] = ACTIONS(2851), + [aux_sym_remote_forward_token1] = ACTIONS(2851), + [aux_sym_request_tty_token1] = ACTIONS(2851), + [aux_sym_required_rsa_size_token1] = ACTIONS(2851), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2851), + [aux_sym_security_key_provider_token1] = ACTIONS(2851), + [aux_sym_send_env_token1] = ACTIONS(2851), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2851), + [aux_sym_server_alive_interval_token1] = ACTIONS(2851), + [aux_sym_session_type_token1] = ACTIONS(2851), + [aux_sym_set_env_token1] = ACTIONS(2851), + [aux_sym_stdin_null_token1] = ACTIONS(2851), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2851), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2851), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2851), + [aux_sym_syslog_facility_token1] = ACTIONS(2851), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2851), + [aux_sym_keep_alive_token1] = ACTIONS(2851), + [aux_sym_tag_token1] = ACTIONS(2851), + [aux_sym_tunnel_token1] = ACTIONS(2853), + [aux_sym_tunnel_device_token1] = ACTIONS(2851), + [aux_sym_update_host_keys_token1] = ACTIONS(2851), + [aux_sym_use_keychain_token1] = ACTIONS(2851), + [aux_sym_use_roaming_token1] = ACTIONS(2851), + [aux_sym_user_token1] = ACTIONS(2853), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2851), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2851), + [aux_sym_visual_host_key_token1] = ACTIONS(2851), + [aux_sym_xauth_location_token1] = ACTIONS(2851), }, [412] = { - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2852), - [anon_sym_DQUOTE] = ACTIONS(2850), - [aux_sym_match_token1] = ACTIONS(2850), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2850), - [aux_sym_address_family_token1] = ACTIONS(2850), - [aux_sym_batch_mode_token1] = ACTIONS(2850), - [aux_sym_bind_address_token1] = ACTIONS(2850), - [aux_sym_bind_interface_token1] = ACTIONS(2850), - [aux_sym_canonical_domains_token1] = ACTIONS(2850), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2850), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2850), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2850), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2850), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2850), - [aux_sym_certificate_file_token1] = ACTIONS(2850), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2850), - [aux_sym_channel_timeout_token1] = ACTIONS(2850), - [aux_sym_check_host_ip_token1] = ACTIONS(2850), - [aux_sym_ciphers_token1] = ACTIONS(2850), - [aux_sym_cipher_token1] = ACTIONS(2852), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2850), - [aux_sym_compression_token1] = ACTIONS(2850), - [aux_sym_connection_attempts_token1] = ACTIONS(2850), - [aux_sym_connect_timeout_token1] = ACTIONS(2850), - [aux_sym_control_master_token1] = ACTIONS(2850), - [aux_sym_control_path_token1] = ACTIONS(2850), - [aux_sym_control_persist_token1] = ACTIONS(2850), - [aux_sym_dynamic_forward_token1] = ACTIONS(2850), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2850), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2850), - [aux_sym_escape_char_token1] = ACTIONS(2850), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2850), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2850), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2850), - [aux_sym_forward_agent_token1] = ACTIONS(2850), - [aux_sym_forward_x11_token1] = ACTIONS(2852), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2850), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2850), - [aux_sym_gateway_ports_token1] = ACTIONS(2850), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2850), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2850), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2850), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2850), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2850), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2850), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2850), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2850), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2850), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2850), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2850), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2850), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2850), - [aux_sym_host_key_alias_token1] = ACTIONS(2850), - [aux_sym_hostname_token1] = ACTIONS(2850), - [aux_sym_identities_only_token1] = ACTIONS(2850), - [aux_sym_identity_agent_token1] = ACTIONS(2850), - [aux_sym_identity_file_token1] = ACTIONS(2850), - [aux_sym_ignore_unknown_token1] = ACTIONS(2850), - [aux_sym_include_token1] = ACTIONS(2850), - [aux_sym_ip_qos_token1] = ACTIONS(2850), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2850), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2850), - [aux_sym_kex_algorithms_token1] = ACTIONS(2850), - [aux_sym_known_hosts_command_token1] = ACTIONS(2850), - [aux_sym_local_command_token1] = ACTIONS(2850), - [aux_sym_local_forward_token1] = ACTIONS(2850), - [aux_sym_log_level_token1] = ACTIONS(2850), - [aux_sym_log_verbose_token1] = ACTIONS(2850), - [aux_sym_macs_token1] = ACTIONS(2850), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2850), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2850), - [aux_sym_password_authentication_token1] = ACTIONS(2850), - [aux_sym_permit_local_command_token1] = ACTIONS(2850), - [aux_sym_permit_remote_open_token1] = ACTIONS(2850), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2850), - [aux_sym_port_token1] = ACTIONS(2850), - [aux_sym_preferred_authentications_token1] = ACTIONS(2850), - [aux_sym_protocol_token1] = ACTIONS(2850), - [aux_sym_proxy_command_token1] = ACTIONS(2850), - [aux_sym_proxy_jump_token1] = ACTIONS(2850), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2850), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2850), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2850), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2850), - [aux_sym_rekey_limit_token1] = ACTIONS(2850), - [aux_sym_remote_command_token1] = ACTIONS(2850), - [aux_sym_remote_forward_token1] = ACTIONS(2850), - [aux_sym_request_tty_token1] = ACTIONS(2850), - [aux_sym_required_rsa_size_token1] = ACTIONS(2850), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2850), - [aux_sym_security_key_provider_token1] = ACTIONS(2850), - [aux_sym_send_env_token1] = ACTIONS(2850), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2850), - [aux_sym_server_alive_interval_token1] = ACTIONS(2850), - [aux_sym_session_type_token1] = ACTIONS(2850), - [aux_sym_set_env_token1] = ACTIONS(2850), - [aux_sym_stdin_null_token1] = ACTIONS(2850), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2850), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2850), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2850), - [aux_sym_syslog_facility_token1] = ACTIONS(2850), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2850), - [aux_sym_keep_alive_token1] = ACTIONS(2850), - [aux_sym_tag_token1] = ACTIONS(2850), - [aux_sym_tunnel_token1] = ACTIONS(2852), - [aux_sym_tunnel_device_token1] = ACTIONS(2850), - [aux_sym_update_host_keys_token1] = ACTIONS(2850), - [aux_sym_use_keychain_token1] = ACTIONS(2850), - [aux_sym_use_roaming_token1] = ACTIONS(2850), - [aux_sym_user_token1] = ACTIONS(2852), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2850), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2850), - [aux_sym_visual_host_key_token1] = ACTIONS(2850), - [aux_sym_xauth_location_token1] = ACTIONS(2850), + [ts_builtin_sym_end] = ACTIONS(2857), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2859), + [anon_sym_DQUOTE] = ACTIONS(2857), + [aux_sym_match_token1] = ACTIONS(2857), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2857), + [aux_sym_address_family_token1] = ACTIONS(2857), + [aux_sym_batch_mode_token1] = ACTIONS(2857), + [aux_sym_bind_address_token1] = ACTIONS(2857), + [aux_sym_bind_interface_token1] = ACTIONS(2857), + [aux_sym_canonical_domains_token1] = ACTIONS(2857), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2857), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2857), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2857), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2857), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2857), + [aux_sym_certificate_file_token1] = ACTIONS(2857), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2857), + [aux_sym_channel_timeout_token1] = ACTIONS(2857), + [aux_sym_check_host_ip_token1] = ACTIONS(2857), + [aux_sym_ciphers_token1] = ACTIONS(2857), + [aux_sym_cipher_token1] = ACTIONS(2859), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2857), + [aux_sym_compression_token1] = ACTIONS(2857), + [aux_sym_connection_attempts_token1] = ACTIONS(2857), + [aux_sym_connect_timeout_token1] = ACTIONS(2857), + [aux_sym_control_master_token1] = ACTIONS(2857), + [aux_sym_control_path_token1] = ACTIONS(2857), + [aux_sym_control_persist_token1] = ACTIONS(2857), + [aux_sym_dynamic_forward_token1] = ACTIONS(2857), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2857), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2857), + [aux_sym_escape_char_token1] = ACTIONS(2857), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2857), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2857), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2857), + [aux_sym_forward_agent_token1] = ACTIONS(2857), + [aux_sym_forward_x11_token1] = ACTIONS(2859), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2857), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2857), + [aux_sym_gateway_ports_token1] = ACTIONS(2857), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2857), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2857), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2857), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2857), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2857), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2857), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2857), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2857), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2857), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2857), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2857), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2857), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2857), + [aux_sym_host_key_alias_token1] = ACTIONS(2857), + [aux_sym_hostname_token1] = ACTIONS(2857), + [aux_sym_identities_only_token1] = ACTIONS(2857), + [aux_sym_identity_agent_token1] = ACTIONS(2857), + [aux_sym_identity_file_token1] = ACTIONS(2857), + [aux_sym_ignore_unknown_token1] = ACTIONS(2857), + [aux_sym_include_token1] = ACTIONS(2857), + [aux_sym_ip_qos_token1] = ACTIONS(2857), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2857), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2857), + [aux_sym_kex_algorithms_token1] = ACTIONS(2857), + [aux_sym_known_hosts_command_token1] = ACTIONS(2857), + [aux_sym_local_command_token1] = ACTIONS(2857), + [aux_sym_local_forward_token1] = ACTIONS(2857), + [aux_sym_log_level_token1] = ACTIONS(2857), + [aux_sym_log_verbose_token1] = ACTIONS(2857), + [aux_sym_macs_token1] = ACTIONS(2857), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2857), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2857), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2857), + [aux_sym_password_authentication_token1] = ACTIONS(2857), + [aux_sym_permit_local_command_token1] = ACTIONS(2857), + [aux_sym_permit_remote_open_token1] = ACTIONS(2857), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2857), + [aux_sym_port_token1] = ACTIONS(2857), + [aux_sym_preferred_authentications_token1] = ACTIONS(2857), + [aux_sym_protocol_token1] = ACTIONS(2857), + [aux_sym_proxy_command_token1] = ACTIONS(2857), + [aux_sym_proxy_jump_token1] = ACTIONS(2857), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2857), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2857), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2857), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2857), + [aux_sym_rekey_limit_token1] = ACTIONS(2857), + [aux_sym_remote_command_token1] = ACTIONS(2857), + [aux_sym_remote_forward_token1] = ACTIONS(2857), + [aux_sym_request_tty_token1] = ACTIONS(2857), + [aux_sym_required_rsa_size_token1] = ACTIONS(2857), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2857), + [aux_sym_security_key_provider_token1] = ACTIONS(2857), + [aux_sym_send_env_token1] = ACTIONS(2857), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2857), + [aux_sym_server_alive_interval_token1] = ACTIONS(2857), + [aux_sym_session_type_token1] = ACTIONS(2857), + [aux_sym_set_env_token1] = ACTIONS(2857), + [aux_sym_stdin_null_token1] = ACTIONS(2857), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2857), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2857), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2857), + [aux_sym_syslog_facility_token1] = ACTIONS(2857), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2857), + [aux_sym_keep_alive_token1] = ACTIONS(2857), + [aux_sym_tag_token1] = ACTIONS(2857), + [aux_sym_tunnel_token1] = ACTIONS(2859), + [aux_sym_tunnel_device_token1] = ACTIONS(2857), + [aux_sym_update_host_keys_token1] = ACTIONS(2857), + [aux_sym_use_keychain_token1] = ACTIONS(2857), + [aux_sym_use_roaming_token1] = ACTIONS(2857), + [aux_sym_user_token1] = ACTIONS(2859), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2857), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2857), + [aux_sym_visual_host_key_token1] = ACTIONS(2857), + [aux_sym_xauth_location_token1] = ACTIONS(2857), }, [413] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2856), - [anon_sym_DQUOTE] = ACTIONS(2858), - [aux_sym_match_token1] = ACTIONS(2854), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2854), - [aux_sym_address_family_token1] = ACTIONS(2854), - [aux_sym_batch_mode_token1] = ACTIONS(2854), - [aux_sym_bind_address_token1] = ACTIONS(2854), - [aux_sym_bind_interface_token1] = ACTIONS(2854), - [aux_sym_canonical_domains_token1] = ACTIONS(2854), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2854), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2854), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2854), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2854), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2854), - [aux_sym_certificate_file_token1] = ACTIONS(2854), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2854), - [aux_sym_channel_timeout_token1] = ACTIONS(2854), - [aux_sym_check_host_ip_token1] = ACTIONS(2854), - [aux_sym_ciphers_token1] = ACTIONS(2854), - [aux_sym_cipher_token1] = ACTIONS(2856), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2854), - [aux_sym_compression_token1] = ACTIONS(2854), - [aux_sym_connection_attempts_token1] = ACTIONS(2854), - [aux_sym_connect_timeout_token1] = ACTIONS(2854), - [aux_sym_control_master_token1] = ACTIONS(2854), - [aux_sym_control_path_token1] = ACTIONS(2854), - [aux_sym_control_persist_token1] = ACTIONS(2854), - [aux_sym_dynamic_forward_token1] = ACTIONS(2854), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2854), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2854), - [aux_sym_escape_char_token1] = ACTIONS(2854), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2854), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2854), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2854), - [aux_sym_forward_agent_token1] = ACTIONS(2854), - [aux_sym_forward_x11_token1] = ACTIONS(2856), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2854), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2854), - [aux_sym_gateway_ports_token1] = ACTIONS(2854), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2854), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2854), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2854), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2854), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2854), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2854), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2854), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2854), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2854), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2854), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2854), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2854), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2854), - [aux_sym_host_key_alias_token1] = ACTIONS(2854), - [aux_sym_hostname_token1] = ACTIONS(2854), - [aux_sym_identities_only_token1] = ACTIONS(2854), - [aux_sym_identity_agent_token1] = ACTIONS(2854), - [aux_sym_identity_file_token1] = ACTIONS(2854), - [aux_sym_ignore_unknown_token1] = ACTIONS(2854), - [aux_sym_include_token1] = ACTIONS(2854), - [aux_sym_ip_qos_token1] = ACTIONS(2854), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2854), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2854), - [aux_sym_kex_algorithms_token1] = ACTIONS(2854), - [aux_sym_known_hosts_command_token1] = ACTIONS(2854), - [aux_sym_local_command_token1] = ACTIONS(2854), - [aux_sym_local_forward_token1] = ACTIONS(2854), - [aux_sym_log_level_token1] = ACTIONS(2854), - [aux_sym_log_verbose_token1] = ACTIONS(2854), - [aux_sym_macs_token1] = ACTIONS(2854), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2854), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2854), - [aux_sym_password_authentication_token1] = ACTIONS(2854), - [aux_sym_permit_local_command_token1] = ACTIONS(2854), - [aux_sym_permit_remote_open_token1] = ACTIONS(2854), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2854), - [aux_sym_port_token1] = ACTIONS(2854), - [aux_sym_preferred_authentications_token1] = ACTIONS(2854), - [aux_sym_protocol_token1] = ACTIONS(2854), - [aux_sym_proxy_command_token1] = ACTIONS(2854), - [aux_sym_proxy_jump_token1] = ACTIONS(2854), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2854), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2854), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2854), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2854), - [aux_sym_rekey_limit_token1] = ACTIONS(2854), - [aux_sym_remote_command_token1] = ACTIONS(2854), - [aux_sym_remote_forward_token1] = ACTIONS(2854), - [aux_sym_request_tty_token1] = ACTIONS(2854), - [aux_sym_required_rsa_size_token1] = ACTIONS(2854), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2854), - [aux_sym_security_key_provider_token1] = ACTIONS(2854), - [aux_sym_send_env_token1] = ACTIONS(2854), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2854), - [aux_sym_server_alive_interval_token1] = ACTIONS(2854), - [aux_sym_session_type_token1] = ACTIONS(2854), - [aux_sym_set_env_token1] = ACTIONS(2854), - [aux_sym_stdin_null_token1] = ACTIONS(2854), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2854), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2854), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2854), - [aux_sym_syslog_facility_token1] = ACTIONS(2854), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2854), - [aux_sym_keep_alive_token1] = ACTIONS(2854), - [aux_sym_tag_token1] = ACTIONS(2854), - [aux_sym_tunnel_token1] = ACTIONS(2856), - [aux_sym_tunnel_device_token1] = ACTIONS(2854), - [aux_sym_update_host_keys_token1] = ACTIONS(2854), - [aux_sym_use_keychain_token1] = ACTIONS(2854), - [aux_sym_use_roaming_token1] = ACTIONS(2854), - [aux_sym_user_token1] = ACTIONS(2856), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2854), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2854), - [aux_sym_visual_host_key_token1] = ACTIONS(2854), - [aux_sym_xauth_location_token1] = ACTIONS(2854), + [ts_builtin_sym_end] = ACTIONS(2861), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2863), + [anon_sym_DQUOTE] = ACTIONS(2865), + [aux_sym_match_token1] = ACTIONS(2861), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2861), + [aux_sym_address_family_token1] = ACTIONS(2861), + [aux_sym_batch_mode_token1] = ACTIONS(2861), + [aux_sym_bind_address_token1] = ACTIONS(2861), + [aux_sym_bind_interface_token1] = ACTIONS(2861), + [aux_sym_canonical_domains_token1] = ACTIONS(2861), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2861), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2861), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2861), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2861), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2861), + [aux_sym_certificate_file_token1] = ACTIONS(2861), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2861), + [aux_sym_channel_timeout_token1] = ACTIONS(2861), + [aux_sym_check_host_ip_token1] = ACTIONS(2861), + [aux_sym_ciphers_token1] = ACTIONS(2861), + [aux_sym_cipher_token1] = ACTIONS(2863), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2861), + [aux_sym_compression_token1] = ACTIONS(2861), + [aux_sym_connection_attempts_token1] = ACTIONS(2861), + [aux_sym_connect_timeout_token1] = ACTIONS(2861), + [aux_sym_control_master_token1] = ACTIONS(2861), + [aux_sym_control_path_token1] = ACTIONS(2861), + [aux_sym_control_persist_token1] = ACTIONS(2861), + [aux_sym_dynamic_forward_token1] = ACTIONS(2861), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2861), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2861), + [aux_sym_escape_char_token1] = ACTIONS(2861), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2861), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2861), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2861), + [aux_sym_forward_agent_token1] = ACTIONS(2861), + [aux_sym_forward_x11_token1] = ACTIONS(2863), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2861), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2861), + [aux_sym_gateway_ports_token1] = ACTIONS(2861), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2861), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2861), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2861), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2861), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2861), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2861), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2861), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2861), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2861), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2861), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2861), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2861), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2861), + [aux_sym_host_key_alias_token1] = ACTIONS(2861), + [aux_sym_hostname_token1] = ACTIONS(2861), + [aux_sym_identities_only_token1] = ACTIONS(2861), + [aux_sym_identity_agent_token1] = ACTIONS(2861), + [aux_sym_identity_file_token1] = ACTIONS(2861), + [aux_sym_ignore_unknown_token1] = ACTIONS(2861), + [aux_sym_include_token1] = ACTIONS(2861), + [aux_sym_ip_qos_token1] = ACTIONS(2861), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2861), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2861), + [aux_sym_kex_algorithms_token1] = ACTIONS(2861), + [aux_sym_known_hosts_command_token1] = ACTIONS(2861), + [aux_sym_local_command_token1] = ACTIONS(2861), + [aux_sym_local_forward_token1] = ACTIONS(2861), + [aux_sym_log_level_token1] = ACTIONS(2861), + [aux_sym_log_verbose_token1] = ACTIONS(2861), + [aux_sym_macs_token1] = ACTIONS(2861), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2861), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2861), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2861), + [aux_sym_password_authentication_token1] = ACTIONS(2861), + [aux_sym_permit_local_command_token1] = ACTIONS(2861), + [aux_sym_permit_remote_open_token1] = ACTIONS(2861), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2861), + [aux_sym_port_token1] = ACTIONS(2861), + [aux_sym_preferred_authentications_token1] = ACTIONS(2861), + [aux_sym_protocol_token1] = ACTIONS(2861), + [aux_sym_proxy_command_token1] = ACTIONS(2861), + [aux_sym_proxy_jump_token1] = ACTIONS(2861), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2861), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2861), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2861), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2861), + [aux_sym_rekey_limit_token1] = ACTIONS(2861), + [aux_sym_remote_command_token1] = ACTIONS(2861), + [aux_sym_remote_forward_token1] = ACTIONS(2861), + [aux_sym_request_tty_token1] = ACTIONS(2861), + [aux_sym_required_rsa_size_token1] = ACTIONS(2861), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2861), + [aux_sym_security_key_provider_token1] = ACTIONS(2861), + [aux_sym_send_env_token1] = ACTIONS(2861), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2861), + [aux_sym_server_alive_interval_token1] = ACTIONS(2861), + [aux_sym_session_type_token1] = ACTIONS(2861), + [aux_sym_set_env_token1] = ACTIONS(2861), + [aux_sym_stdin_null_token1] = ACTIONS(2861), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2861), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2861), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2861), + [aux_sym_syslog_facility_token1] = ACTIONS(2861), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2861), + [aux_sym_keep_alive_token1] = ACTIONS(2861), + [aux_sym_tag_token1] = ACTIONS(2861), + [aux_sym_tunnel_token1] = ACTIONS(2863), + [aux_sym_tunnel_device_token1] = ACTIONS(2861), + [aux_sym_update_host_keys_token1] = ACTIONS(2861), + [aux_sym_use_keychain_token1] = ACTIONS(2861), + [aux_sym_use_roaming_token1] = ACTIONS(2861), + [aux_sym_user_token1] = ACTIONS(2863), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2861), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2861), + [aux_sym_visual_host_key_token1] = ACTIONS(2861), + [aux_sym_xauth_location_token1] = ACTIONS(2861), }, [414] = { - [ts_builtin_sym_end] = ACTIONS(2860), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2862), - [anon_sym_DQUOTE] = ACTIONS(2864), - [aux_sym_match_token1] = ACTIONS(2860), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2860), - [aux_sym_address_family_token1] = ACTIONS(2860), - [aux_sym_batch_mode_token1] = ACTIONS(2860), - [aux_sym_bind_address_token1] = ACTIONS(2860), - [aux_sym_bind_interface_token1] = ACTIONS(2860), - [aux_sym_canonical_domains_token1] = ACTIONS(2860), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2860), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2860), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2860), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2860), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2860), - [aux_sym_certificate_file_token1] = ACTIONS(2860), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2860), - [aux_sym_channel_timeout_token1] = ACTIONS(2860), - [aux_sym_check_host_ip_token1] = ACTIONS(2860), - [aux_sym_ciphers_token1] = ACTIONS(2860), - [aux_sym_cipher_token1] = ACTIONS(2862), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2860), - [aux_sym_compression_token1] = ACTIONS(2860), - [aux_sym_connection_attempts_token1] = ACTIONS(2860), - [aux_sym_connect_timeout_token1] = ACTIONS(2860), - [aux_sym_control_master_token1] = ACTIONS(2860), - [aux_sym_control_path_token1] = ACTIONS(2860), - [aux_sym_control_persist_token1] = ACTIONS(2860), - [aux_sym_dynamic_forward_token1] = ACTIONS(2860), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2860), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2860), - [aux_sym_escape_char_token1] = ACTIONS(2860), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2860), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2860), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2860), - [aux_sym_forward_agent_token1] = ACTIONS(2860), - [aux_sym_forward_x11_token1] = ACTIONS(2862), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2860), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2860), - [aux_sym_gateway_ports_token1] = ACTIONS(2860), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2860), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2860), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2860), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2860), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2860), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2860), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2860), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2860), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2860), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2860), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2860), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2860), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2860), - [aux_sym_host_key_alias_token1] = ACTIONS(2860), - [aux_sym_hostname_token1] = ACTIONS(2860), - [aux_sym_identities_only_token1] = ACTIONS(2860), - [aux_sym_identity_agent_token1] = ACTIONS(2860), - [aux_sym_identity_file_token1] = ACTIONS(2860), - [aux_sym_ignore_unknown_token1] = ACTIONS(2860), - [aux_sym_include_token1] = ACTIONS(2860), - [aux_sym_ip_qos_token1] = ACTIONS(2860), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2860), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2860), - [aux_sym_kex_algorithms_token1] = ACTIONS(2860), - [aux_sym_known_hosts_command_token1] = ACTIONS(2860), - [aux_sym_local_command_token1] = ACTIONS(2860), - [aux_sym_local_forward_token1] = ACTIONS(2860), - [aux_sym_log_level_token1] = ACTIONS(2860), - [aux_sym_log_verbose_token1] = ACTIONS(2860), - [aux_sym_macs_token1] = ACTIONS(2860), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2860), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2860), - [aux_sym_password_authentication_token1] = ACTIONS(2860), - [aux_sym_permit_local_command_token1] = ACTIONS(2860), - [aux_sym_permit_remote_open_token1] = ACTIONS(2860), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2860), - [aux_sym_port_token1] = ACTIONS(2860), - [aux_sym_preferred_authentications_token1] = ACTIONS(2860), - [aux_sym_protocol_token1] = ACTIONS(2860), - [aux_sym_proxy_command_token1] = ACTIONS(2860), - [aux_sym_proxy_jump_token1] = ACTIONS(2860), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2860), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2860), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2860), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2860), - [aux_sym_rekey_limit_token1] = ACTIONS(2860), - [aux_sym_remote_command_token1] = ACTIONS(2860), - [aux_sym_remote_forward_token1] = ACTIONS(2860), - [aux_sym_request_tty_token1] = ACTIONS(2860), - [aux_sym_required_rsa_size_token1] = ACTIONS(2860), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2860), - [aux_sym_security_key_provider_token1] = ACTIONS(2860), - [aux_sym_send_env_token1] = ACTIONS(2860), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2860), - [aux_sym_server_alive_interval_token1] = ACTIONS(2860), - [aux_sym_session_type_token1] = ACTIONS(2860), - [aux_sym_set_env_token1] = ACTIONS(2860), - [aux_sym_stdin_null_token1] = ACTIONS(2860), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2860), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2860), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2860), - [aux_sym_syslog_facility_token1] = ACTIONS(2860), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2860), - [aux_sym_keep_alive_token1] = ACTIONS(2860), - [aux_sym_tag_token1] = ACTIONS(2860), - [aux_sym_tunnel_token1] = ACTIONS(2862), - [aux_sym_tunnel_device_token1] = ACTIONS(2860), - [aux_sym_update_host_keys_token1] = ACTIONS(2860), - [aux_sym_use_keychain_token1] = ACTIONS(2860), - [aux_sym_use_roaming_token1] = ACTIONS(2860), - [aux_sym_user_token1] = ACTIONS(2862), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2860), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2860), - [aux_sym_visual_host_key_token1] = ACTIONS(2860), - [aux_sym_xauth_location_token1] = ACTIONS(2860), + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2869), + [anon_sym_DQUOTE] = ACTIONS(2867), + [aux_sym_match_token1] = ACTIONS(2867), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2867), + [aux_sym_address_family_token1] = ACTIONS(2867), + [aux_sym_batch_mode_token1] = ACTIONS(2867), + [aux_sym_bind_address_token1] = ACTIONS(2867), + [aux_sym_bind_interface_token1] = ACTIONS(2867), + [aux_sym_canonical_domains_token1] = ACTIONS(2867), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2867), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2867), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2867), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2867), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2867), + [aux_sym_certificate_file_token1] = ACTIONS(2867), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2867), + [aux_sym_channel_timeout_token1] = ACTIONS(2867), + [aux_sym_check_host_ip_token1] = ACTIONS(2867), + [aux_sym_ciphers_token1] = ACTIONS(2867), + [aux_sym_cipher_token1] = ACTIONS(2869), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2867), + [aux_sym_compression_token1] = ACTIONS(2867), + [aux_sym_connection_attempts_token1] = ACTIONS(2867), + [aux_sym_connect_timeout_token1] = ACTIONS(2867), + [aux_sym_control_master_token1] = ACTIONS(2867), + [aux_sym_control_path_token1] = ACTIONS(2867), + [aux_sym_control_persist_token1] = ACTIONS(2867), + [aux_sym_dynamic_forward_token1] = ACTIONS(2867), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2867), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2867), + [aux_sym_escape_char_token1] = ACTIONS(2867), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2867), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2867), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2867), + [aux_sym_forward_agent_token1] = ACTIONS(2867), + [aux_sym_forward_x11_token1] = ACTIONS(2869), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2867), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2867), + [aux_sym_gateway_ports_token1] = ACTIONS(2867), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2867), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2867), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2867), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2867), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2867), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2867), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2867), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2867), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2867), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2867), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2867), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2867), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2867), + [aux_sym_host_key_alias_token1] = ACTIONS(2867), + [aux_sym_hostname_token1] = ACTIONS(2867), + [aux_sym_identities_only_token1] = ACTIONS(2867), + [aux_sym_identity_agent_token1] = ACTIONS(2867), + [aux_sym_identity_file_token1] = ACTIONS(2867), + [aux_sym_ignore_unknown_token1] = ACTIONS(2867), + [aux_sym_include_token1] = ACTIONS(2867), + [aux_sym_ip_qos_token1] = ACTIONS(2867), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2867), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2867), + [aux_sym_kex_algorithms_token1] = ACTIONS(2867), + [aux_sym_known_hosts_command_token1] = ACTIONS(2867), + [aux_sym_local_command_token1] = ACTIONS(2867), + [aux_sym_local_forward_token1] = ACTIONS(2867), + [aux_sym_log_level_token1] = ACTIONS(2867), + [aux_sym_log_verbose_token1] = ACTIONS(2867), + [aux_sym_macs_token1] = ACTIONS(2867), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2867), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2867), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2867), + [aux_sym_password_authentication_token1] = ACTIONS(2867), + [aux_sym_permit_local_command_token1] = ACTIONS(2867), + [aux_sym_permit_remote_open_token1] = ACTIONS(2867), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2867), + [aux_sym_port_token1] = ACTIONS(2867), + [aux_sym_preferred_authentications_token1] = ACTIONS(2867), + [aux_sym_protocol_token1] = ACTIONS(2867), + [aux_sym_proxy_command_token1] = ACTIONS(2867), + [aux_sym_proxy_jump_token1] = ACTIONS(2867), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2867), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2867), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2867), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2867), + [aux_sym_rekey_limit_token1] = ACTIONS(2867), + [aux_sym_remote_command_token1] = ACTIONS(2867), + [aux_sym_remote_forward_token1] = ACTIONS(2867), + [aux_sym_request_tty_token1] = ACTIONS(2867), + [aux_sym_required_rsa_size_token1] = ACTIONS(2867), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2867), + [aux_sym_security_key_provider_token1] = ACTIONS(2867), + [aux_sym_send_env_token1] = ACTIONS(2867), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2867), + [aux_sym_server_alive_interval_token1] = ACTIONS(2867), + [aux_sym_session_type_token1] = ACTIONS(2867), + [aux_sym_set_env_token1] = ACTIONS(2867), + [aux_sym_stdin_null_token1] = ACTIONS(2867), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2867), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2867), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2867), + [aux_sym_syslog_facility_token1] = ACTIONS(2867), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2867), + [aux_sym_keep_alive_token1] = ACTIONS(2867), + [aux_sym_tag_token1] = ACTIONS(2867), + [aux_sym_tunnel_token1] = ACTIONS(2869), + [aux_sym_tunnel_device_token1] = ACTIONS(2867), + [aux_sym_update_host_keys_token1] = ACTIONS(2867), + [aux_sym_use_keychain_token1] = ACTIONS(2867), + [aux_sym_use_roaming_token1] = ACTIONS(2867), + [aux_sym_user_token1] = ACTIONS(2869), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2867), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2867), + [aux_sym_visual_host_key_token1] = ACTIONS(2867), + [aux_sym_xauth_location_token1] = ACTIONS(2867), }, [415] = { - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2868), - [anon_sym_DQUOTE] = ACTIONS(2866), - [aux_sym_match_token1] = ACTIONS(2866), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2866), - [aux_sym_address_family_token1] = ACTIONS(2866), - [aux_sym_batch_mode_token1] = ACTIONS(2866), - [aux_sym_bind_address_token1] = ACTIONS(2866), - [aux_sym_bind_interface_token1] = ACTIONS(2866), - [aux_sym_canonical_domains_token1] = ACTIONS(2866), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2866), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2866), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2866), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2866), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2866), - [aux_sym_certificate_file_token1] = ACTIONS(2866), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2866), - [aux_sym_channel_timeout_token1] = ACTIONS(2866), - [aux_sym_check_host_ip_token1] = ACTIONS(2866), - [aux_sym_ciphers_token1] = ACTIONS(2866), - [aux_sym_cipher_token1] = ACTIONS(2868), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2866), - [aux_sym_compression_token1] = ACTIONS(2866), - [aux_sym_connection_attempts_token1] = ACTIONS(2866), - [aux_sym_connect_timeout_token1] = ACTIONS(2866), - [aux_sym_control_master_token1] = ACTIONS(2866), - [aux_sym_control_path_token1] = ACTIONS(2866), - [aux_sym_control_persist_token1] = ACTIONS(2866), - [aux_sym_dynamic_forward_token1] = ACTIONS(2866), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2866), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2866), - [aux_sym_escape_char_token1] = ACTIONS(2866), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2866), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2866), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2866), - [aux_sym_forward_agent_token1] = ACTIONS(2866), - [aux_sym_forward_x11_token1] = ACTIONS(2868), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2866), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2866), - [aux_sym_gateway_ports_token1] = ACTIONS(2866), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2866), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2866), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2866), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2866), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2866), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2866), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2866), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2866), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2866), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2866), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2866), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2866), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2866), - [aux_sym_host_key_alias_token1] = ACTIONS(2866), - [aux_sym_hostname_token1] = ACTIONS(2866), - [aux_sym_identities_only_token1] = ACTIONS(2866), - [aux_sym_identity_agent_token1] = ACTIONS(2866), - [aux_sym_identity_file_token1] = ACTIONS(2866), - [aux_sym_ignore_unknown_token1] = ACTIONS(2866), - [aux_sym_include_token1] = ACTIONS(2866), - [aux_sym_ip_qos_token1] = ACTIONS(2866), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2866), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2866), - [aux_sym_kex_algorithms_token1] = ACTIONS(2866), - [aux_sym_known_hosts_command_token1] = ACTIONS(2866), - [aux_sym_local_command_token1] = ACTIONS(2866), - [aux_sym_local_forward_token1] = ACTIONS(2866), - [aux_sym_log_level_token1] = ACTIONS(2866), - [aux_sym_log_verbose_token1] = ACTIONS(2866), - [aux_sym_macs_token1] = ACTIONS(2866), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2866), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2866), - [aux_sym_password_authentication_token1] = ACTIONS(2866), - [aux_sym_permit_local_command_token1] = ACTIONS(2866), - [aux_sym_permit_remote_open_token1] = ACTIONS(2866), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2866), - [aux_sym_port_token1] = ACTIONS(2866), - [aux_sym_preferred_authentications_token1] = ACTIONS(2866), - [aux_sym_protocol_token1] = ACTIONS(2866), - [aux_sym_proxy_command_token1] = ACTIONS(2866), - [aux_sym_proxy_jump_token1] = ACTIONS(2866), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2866), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2866), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2866), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2866), - [aux_sym_rekey_limit_token1] = ACTIONS(2866), - [aux_sym_remote_command_token1] = ACTIONS(2866), - [aux_sym_remote_forward_token1] = ACTIONS(2866), - [aux_sym_request_tty_token1] = ACTIONS(2866), - [aux_sym_required_rsa_size_token1] = ACTIONS(2866), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2866), - [aux_sym_security_key_provider_token1] = ACTIONS(2866), - [aux_sym_send_env_token1] = ACTIONS(2866), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2866), - [aux_sym_server_alive_interval_token1] = ACTIONS(2866), - [aux_sym_session_type_token1] = ACTIONS(2866), - [aux_sym_set_env_token1] = ACTIONS(2866), - [aux_sym_stdin_null_token1] = ACTIONS(2866), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2866), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2866), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2866), - [aux_sym_syslog_facility_token1] = ACTIONS(2866), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2866), - [aux_sym_keep_alive_token1] = ACTIONS(2866), - [aux_sym_tag_token1] = ACTIONS(2866), - [aux_sym_tunnel_token1] = ACTIONS(2868), - [aux_sym_tunnel_device_token1] = ACTIONS(2866), - [aux_sym_update_host_keys_token1] = ACTIONS(2866), - [aux_sym_use_keychain_token1] = ACTIONS(2866), - [aux_sym_use_roaming_token1] = ACTIONS(2866), - [aux_sym_user_token1] = ACTIONS(2868), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2866), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2866), - [aux_sym_visual_host_key_token1] = ACTIONS(2866), - [aux_sym_xauth_location_token1] = ACTIONS(2866), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2873), + [anon_sym_DQUOTE] = ACTIONS(2875), + [aux_sym_match_token1] = ACTIONS(2871), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2871), + [aux_sym_address_family_token1] = ACTIONS(2871), + [aux_sym_batch_mode_token1] = ACTIONS(2871), + [aux_sym_bind_address_token1] = ACTIONS(2871), + [aux_sym_bind_interface_token1] = ACTIONS(2871), + [aux_sym_canonical_domains_token1] = ACTIONS(2871), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2871), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2871), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2871), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2871), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2871), + [aux_sym_certificate_file_token1] = ACTIONS(2871), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2871), + [aux_sym_channel_timeout_token1] = ACTIONS(2871), + [aux_sym_check_host_ip_token1] = ACTIONS(2871), + [aux_sym_ciphers_token1] = ACTIONS(2871), + [aux_sym_cipher_token1] = ACTIONS(2873), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2871), + [aux_sym_compression_token1] = ACTIONS(2871), + [aux_sym_connection_attempts_token1] = ACTIONS(2871), + [aux_sym_connect_timeout_token1] = ACTIONS(2871), + [aux_sym_control_master_token1] = ACTIONS(2871), + [aux_sym_control_path_token1] = ACTIONS(2871), + [aux_sym_control_persist_token1] = ACTIONS(2871), + [aux_sym_dynamic_forward_token1] = ACTIONS(2871), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2871), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2871), + [aux_sym_escape_char_token1] = ACTIONS(2871), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2871), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2871), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2871), + [aux_sym_forward_agent_token1] = ACTIONS(2871), + [aux_sym_forward_x11_token1] = ACTIONS(2873), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2871), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2871), + [aux_sym_gateway_ports_token1] = ACTIONS(2871), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2871), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2871), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2871), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2871), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2871), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2871), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2871), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2871), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2871), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2871), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2871), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2871), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2871), + [aux_sym_host_key_alias_token1] = ACTIONS(2871), + [aux_sym_hostname_token1] = ACTIONS(2871), + [aux_sym_identities_only_token1] = ACTIONS(2871), + [aux_sym_identity_agent_token1] = ACTIONS(2871), + [aux_sym_identity_file_token1] = ACTIONS(2871), + [aux_sym_ignore_unknown_token1] = ACTIONS(2871), + [aux_sym_include_token1] = ACTIONS(2871), + [aux_sym_ip_qos_token1] = ACTIONS(2871), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2871), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2871), + [aux_sym_kex_algorithms_token1] = ACTIONS(2871), + [aux_sym_known_hosts_command_token1] = ACTIONS(2871), + [aux_sym_local_command_token1] = ACTIONS(2871), + [aux_sym_local_forward_token1] = ACTIONS(2871), + [aux_sym_log_level_token1] = ACTIONS(2871), + [aux_sym_log_verbose_token1] = ACTIONS(2871), + [aux_sym_macs_token1] = ACTIONS(2871), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2871), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2871), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2871), + [aux_sym_password_authentication_token1] = ACTIONS(2871), + [aux_sym_permit_local_command_token1] = ACTIONS(2871), + [aux_sym_permit_remote_open_token1] = ACTIONS(2871), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2871), + [aux_sym_port_token1] = ACTIONS(2871), + [aux_sym_preferred_authentications_token1] = ACTIONS(2871), + [aux_sym_protocol_token1] = ACTIONS(2871), + [aux_sym_proxy_command_token1] = ACTIONS(2871), + [aux_sym_proxy_jump_token1] = ACTIONS(2871), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2871), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2871), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2871), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2871), + [aux_sym_rekey_limit_token1] = ACTIONS(2871), + [aux_sym_remote_command_token1] = ACTIONS(2871), + [aux_sym_remote_forward_token1] = ACTIONS(2871), + [aux_sym_request_tty_token1] = ACTIONS(2871), + [aux_sym_required_rsa_size_token1] = ACTIONS(2871), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2871), + [aux_sym_security_key_provider_token1] = ACTIONS(2871), + [aux_sym_send_env_token1] = ACTIONS(2871), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2871), + [aux_sym_server_alive_interval_token1] = ACTIONS(2871), + [aux_sym_session_type_token1] = ACTIONS(2871), + [aux_sym_set_env_token1] = ACTIONS(2871), + [aux_sym_stdin_null_token1] = ACTIONS(2871), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2871), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2871), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2871), + [aux_sym_syslog_facility_token1] = ACTIONS(2871), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2871), + [aux_sym_keep_alive_token1] = ACTIONS(2871), + [aux_sym_tag_token1] = ACTIONS(2871), + [aux_sym_tunnel_token1] = ACTIONS(2873), + [aux_sym_tunnel_device_token1] = ACTIONS(2871), + [aux_sym_update_host_keys_token1] = ACTIONS(2871), + [aux_sym_use_keychain_token1] = ACTIONS(2871), + [aux_sym_use_roaming_token1] = ACTIONS(2871), + [aux_sym_user_token1] = ACTIONS(2873), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2871), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2871), + [aux_sym_visual_host_key_token1] = ACTIONS(2871), + [aux_sym_xauth_location_token1] = ACTIONS(2871), }, [416] = { - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2872), - [anon_sym_DQUOTE] = ACTIONS(2870), - [aux_sym_match_token1] = ACTIONS(2870), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2870), - [aux_sym_address_family_token1] = ACTIONS(2870), - [aux_sym_batch_mode_token1] = ACTIONS(2870), - [aux_sym_bind_address_token1] = ACTIONS(2870), - [aux_sym_bind_interface_token1] = ACTIONS(2870), - [aux_sym_canonical_domains_token1] = ACTIONS(2870), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2870), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2870), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2870), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2870), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2870), - [aux_sym_certificate_file_token1] = ACTIONS(2870), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2870), - [aux_sym_channel_timeout_token1] = ACTIONS(2870), - [aux_sym_check_host_ip_token1] = ACTIONS(2870), - [aux_sym_ciphers_token1] = ACTIONS(2870), - [aux_sym_cipher_token1] = ACTIONS(2872), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2870), - [aux_sym_compression_token1] = ACTIONS(2870), - [aux_sym_connection_attempts_token1] = ACTIONS(2870), - [aux_sym_connect_timeout_token1] = ACTIONS(2870), - [aux_sym_control_master_token1] = ACTIONS(2870), - [aux_sym_control_path_token1] = ACTIONS(2870), - [aux_sym_control_persist_token1] = ACTIONS(2870), - [aux_sym_dynamic_forward_token1] = ACTIONS(2870), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2870), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2870), - [aux_sym_escape_char_token1] = ACTIONS(2870), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2870), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2870), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2870), - [aux_sym_forward_agent_token1] = ACTIONS(2870), - [aux_sym_forward_x11_token1] = ACTIONS(2872), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2870), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2870), - [aux_sym_gateway_ports_token1] = ACTIONS(2870), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2870), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2870), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2870), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2870), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2870), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2870), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2870), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2870), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2870), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2870), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2870), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2870), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2870), - [aux_sym_host_key_alias_token1] = ACTIONS(2870), - [aux_sym_hostname_token1] = ACTIONS(2870), - [aux_sym_identities_only_token1] = ACTIONS(2870), - [aux_sym_identity_agent_token1] = ACTIONS(2870), - [aux_sym_identity_file_token1] = ACTIONS(2870), - [aux_sym_ignore_unknown_token1] = ACTIONS(2870), - [aux_sym_include_token1] = ACTIONS(2870), - [aux_sym_ip_qos_token1] = ACTIONS(2870), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2870), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2870), - [aux_sym_kex_algorithms_token1] = ACTIONS(2870), - [aux_sym_known_hosts_command_token1] = ACTIONS(2870), - [aux_sym_local_command_token1] = ACTIONS(2870), - [aux_sym_local_forward_token1] = ACTIONS(2870), - [aux_sym_log_level_token1] = ACTIONS(2870), - [aux_sym_log_verbose_token1] = ACTIONS(2870), - [aux_sym_macs_token1] = ACTIONS(2870), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2870), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2870), - [aux_sym_password_authentication_token1] = ACTIONS(2870), - [aux_sym_permit_local_command_token1] = ACTIONS(2870), - [aux_sym_permit_remote_open_token1] = ACTIONS(2870), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2870), - [aux_sym_port_token1] = ACTIONS(2870), - [aux_sym_preferred_authentications_token1] = ACTIONS(2870), - [aux_sym_protocol_token1] = ACTIONS(2870), - [aux_sym_proxy_command_token1] = ACTIONS(2870), - [aux_sym_proxy_jump_token1] = ACTIONS(2870), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2870), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2870), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2870), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2870), - [aux_sym_rekey_limit_token1] = ACTIONS(2870), - [aux_sym_remote_command_token1] = ACTIONS(2870), - [aux_sym_remote_forward_token1] = ACTIONS(2870), - [aux_sym_request_tty_token1] = ACTIONS(2870), - [aux_sym_required_rsa_size_token1] = ACTIONS(2870), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2870), - [aux_sym_security_key_provider_token1] = ACTIONS(2870), - [aux_sym_send_env_token1] = ACTIONS(2870), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2870), - [aux_sym_server_alive_interval_token1] = ACTIONS(2870), - [aux_sym_session_type_token1] = ACTIONS(2870), - [aux_sym_set_env_token1] = ACTIONS(2870), - [aux_sym_stdin_null_token1] = ACTIONS(2870), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2870), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2870), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2870), - [aux_sym_syslog_facility_token1] = ACTIONS(2870), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2870), - [aux_sym_keep_alive_token1] = ACTIONS(2870), - [aux_sym_tag_token1] = ACTIONS(2870), - [aux_sym_tunnel_token1] = ACTIONS(2872), - [aux_sym_tunnel_device_token1] = ACTIONS(2870), - [aux_sym_update_host_keys_token1] = ACTIONS(2870), - [aux_sym_use_keychain_token1] = ACTIONS(2870), - [aux_sym_use_roaming_token1] = ACTIONS(2870), - [aux_sym_user_token1] = ACTIONS(2872), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2870), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2870), - [aux_sym_visual_host_key_token1] = ACTIONS(2870), - [aux_sym_xauth_location_token1] = ACTIONS(2870), + [ts_builtin_sym_end] = ACTIONS(2877), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2879), + [anon_sym_DQUOTE] = ACTIONS(2881), + [aux_sym_match_token1] = ACTIONS(2877), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2877), + [aux_sym_address_family_token1] = ACTIONS(2877), + [aux_sym_batch_mode_token1] = ACTIONS(2877), + [aux_sym_bind_address_token1] = ACTIONS(2877), + [aux_sym_bind_interface_token1] = ACTIONS(2877), + [aux_sym_canonical_domains_token1] = ACTIONS(2877), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2877), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2877), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2877), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2877), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2877), + [aux_sym_certificate_file_token1] = ACTIONS(2877), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2877), + [aux_sym_channel_timeout_token1] = ACTIONS(2877), + [aux_sym_check_host_ip_token1] = ACTIONS(2877), + [aux_sym_ciphers_token1] = ACTIONS(2877), + [aux_sym_cipher_token1] = ACTIONS(2879), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2877), + [aux_sym_compression_token1] = ACTIONS(2877), + [aux_sym_connection_attempts_token1] = ACTIONS(2877), + [aux_sym_connect_timeout_token1] = ACTIONS(2877), + [aux_sym_control_master_token1] = ACTIONS(2877), + [aux_sym_control_path_token1] = ACTIONS(2877), + [aux_sym_control_persist_token1] = ACTIONS(2877), + [aux_sym_dynamic_forward_token1] = ACTIONS(2877), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2877), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2877), + [aux_sym_escape_char_token1] = ACTIONS(2877), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2877), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2877), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2877), + [aux_sym_forward_agent_token1] = ACTIONS(2877), + [aux_sym_forward_x11_token1] = ACTIONS(2879), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2877), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2877), + [aux_sym_gateway_ports_token1] = ACTIONS(2877), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2877), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2877), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2877), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2877), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2877), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2877), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2877), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2877), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2877), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2877), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2877), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2877), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2877), + [aux_sym_host_key_alias_token1] = ACTIONS(2877), + [aux_sym_hostname_token1] = ACTIONS(2877), + [aux_sym_identities_only_token1] = ACTIONS(2877), + [aux_sym_identity_agent_token1] = ACTIONS(2877), + [aux_sym_identity_file_token1] = ACTIONS(2877), + [aux_sym_ignore_unknown_token1] = ACTIONS(2877), + [aux_sym_include_token1] = ACTIONS(2877), + [aux_sym_ip_qos_token1] = ACTIONS(2877), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2877), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2877), + [aux_sym_kex_algorithms_token1] = ACTIONS(2877), + [aux_sym_known_hosts_command_token1] = ACTIONS(2877), + [aux_sym_local_command_token1] = ACTIONS(2877), + [aux_sym_local_forward_token1] = ACTIONS(2877), + [aux_sym_log_level_token1] = ACTIONS(2877), + [aux_sym_log_verbose_token1] = ACTIONS(2877), + [aux_sym_macs_token1] = ACTIONS(2877), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2877), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2877), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2877), + [aux_sym_password_authentication_token1] = ACTIONS(2877), + [aux_sym_permit_local_command_token1] = ACTIONS(2877), + [aux_sym_permit_remote_open_token1] = ACTIONS(2877), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2877), + [aux_sym_port_token1] = ACTIONS(2877), + [aux_sym_preferred_authentications_token1] = ACTIONS(2877), + [aux_sym_protocol_token1] = ACTIONS(2877), + [aux_sym_proxy_command_token1] = ACTIONS(2877), + [aux_sym_proxy_jump_token1] = ACTIONS(2877), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2877), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2877), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2877), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2877), + [aux_sym_rekey_limit_token1] = ACTIONS(2877), + [aux_sym_remote_command_token1] = ACTIONS(2877), + [aux_sym_remote_forward_token1] = ACTIONS(2877), + [aux_sym_request_tty_token1] = ACTIONS(2877), + [aux_sym_required_rsa_size_token1] = ACTIONS(2877), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2877), + [aux_sym_security_key_provider_token1] = ACTIONS(2877), + [aux_sym_send_env_token1] = ACTIONS(2877), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2877), + [aux_sym_server_alive_interval_token1] = ACTIONS(2877), + [aux_sym_session_type_token1] = ACTIONS(2877), + [aux_sym_set_env_token1] = ACTIONS(2877), + [aux_sym_stdin_null_token1] = ACTIONS(2877), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2877), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2877), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2877), + [aux_sym_syslog_facility_token1] = ACTIONS(2877), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2877), + [aux_sym_keep_alive_token1] = ACTIONS(2877), + [aux_sym_tag_token1] = ACTIONS(2877), + [aux_sym_tunnel_token1] = ACTIONS(2879), + [aux_sym_tunnel_device_token1] = ACTIONS(2877), + [aux_sym_update_host_keys_token1] = ACTIONS(2877), + [aux_sym_use_keychain_token1] = ACTIONS(2877), + [aux_sym_use_roaming_token1] = ACTIONS(2877), + [aux_sym_user_token1] = ACTIONS(2879), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2877), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2877), + [aux_sym_visual_host_key_token1] = ACTIONS(2877), + [aux_sym_xauth_location_token1] = ACTIONS(2877), }, [417] = { - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2876), - [anon_sym_DQUOTE] = ACTIONS(2878), - [aux_sym_match_token1] = ACTIONS(2874), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2874), - [aux_sym_address_family_token1] = ACTIONS(2874), - [aux_sym_batch_mode_token1] = ACTIONS(2874), - [aux_sym_bind_address_token1] = ACTIONS(2874), - [aux_sym_bind_interface_token1] = ACTIONS(2874), - [aux_sym_canonical_domains_token1] = ACTIONS(2874), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2874), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2874), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2874), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2874), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2874), - [aux_sym_certificate_file_token1] = ACTIONS(2874), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2874), - [aux_sym_channel_timeout_token1] = ACTIONS(2874), - [aux_sym_check_host_ip_token1] = ACTIONS(2874), - [aux_sym_ciphers_token1] = ACTIONS(2874), - [aux_sym_cipher_token1] = ACTIONS(2876), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2874), - [aux_sym_compression_token1] = ACTIONS(2874), - [aux_sym_connection_attempts_token1] = ACTIONS(2874), - [aux_sym_connect_timeout_token1] = ACTIONS(2874), - [aux_sym_control_master_token1] = ACTIONS(2874), - [aux_sym_control_path_token1] = ACTIONS(2874), - [aux_sym_control_persist_token1] = ACTIONS(2874), - [aux_sym_dynamic_forward_token1] = ACTIONS(2874), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2874), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2874), - [aux_sym_escape_char_token1] = ACTIONS(2874), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2874), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2874), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2874), - [aux_sym_forward_agent_token1] = ACTIONS(2874), - [aux_sym_forward_x11_token1] = ACTIONS(2876), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2874), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2874), - [aux_sym_gateway_ports_token1] = ACTIONS(2874), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2874), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2874), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2874), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2874), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2874), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2874), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2874), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2874), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2874), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2874), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2874), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2874), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2874), - [aux_sym_host_key_alias_token1] = ACTIONS(2874), - [aux_sym_hostname_token1] = ACTIONS(2874), - [aux_sym_identities_only_token1] = ACTIONS(2874), - [aux_sym_identity_agent_token1] = ACTIONS(2874), - [aux_sym_identity_file_token1] = ACTIONS(2874), - [aux_sym_ignore_unknown_token1] = ACTIONS(2874), - [aux_sym_include_token1] = ACTIONS(2874), - [aux_sym_ip_qos_token1] = ACTIONS(2874), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2874), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2874), - [aux_sym_kex_algorithms_token1] = ACTIONS(2874), - [aux_sym_known_hosts_command_token1] = ACTIONS(2874), - [aux_sym_local_command_token1] = ACTIONS(2874), - [aux_sym_local_forward_token1] = ACTIONS(2874), - [aux_sym_log_level_token1] = ACTIONS(2874), - [aux_sym_log_verbose_token1] = ACTIONS(2874), - [aux_sym_macs_token1] = ACTIONS(2874), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2874), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2874), - [aux_sym_password_authentication_token1] = ACTIONS(2874), - [aux_sym_permit_local_command_token1] = ACTIONS(2874), - [aux_sym_permit_remote_open_token1] = ACTIONS(2874), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2874), - [aux_sym_port_token1] = ACTIONS(2874), - [aux_sym_preferred_authentications_token1] = ACTIONS(2874), - [aux_sym_protocol_token1] = ACTIONS(2874), - [aux_sym_proxy_command_token1] = ACTIONS(2874), - [aux_sym_proxy_jump_token1] = ACTIONS(2874), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2874), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2874), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2874), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2874), - [aux_sym_rekey_limit_token1] = ACTIONS(2874), - [aux_sym_remote_command_token1] = ACTIONS(2874), - [aux_sym_remote_forward_token1] = ACTIONS(2874), - [aux_sym_request_tty_token1] = ACTIONS(2874), - [aux_sym_required_rsa_size_token1] = ACTIONS(2874), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2874), - [aux_sym_security_key_provider_token1] = ACTIONS(2874), - [aux_sym_send_env_token1] = ACTIONS(2874), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2874), - [aux_sym_server_alive_interval_token1] = ACTIONS(2874), - [aux_sym_session_type_token1] = ACTIONS(2874), - [aux_sym_set_env_token1] = ACTIONS(2874), - [aux_sym_stdin_null_token1] = ACTIONS(2874), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2874), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2874), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2874), - [aux_sym_syslog_facility_token1] = ACTIONS(2874), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2874), - [aux_sym_keep_alive_token1] = ACTIONS(2874), - [aux_sym_tag_token1] = ACTIONS(2874), - [aux_sym_tunnel_token1] = ACTIONS(2876), - [aux_sym_tunnel_device_token1] = ACTIONS(2874), - [aux_sym_update_host_keys_token1] = ACTIONS(2874), - [aux_sym_use_keychain_token1] = ACTIONS(2874), - [aux_sym_use_roaming_token1] = ACTIONS(2874), - [aux_sym_user_token1] = ACTIONS(2876), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2874), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2874), - [aux_sym_visual_host_key_token1] = ACTIONS(2874), - [aux_sym_xauth_location_token1] = ACTIONS(2874), + [ts_builtin_sym_end] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2885), + [anon_sym_DQUOTE] = ACTIONS(2883), + [aux_sym_match_token1] = ACTIONS(2883), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2883), + [aux_sym_address_family_token1] = ACTIONS(2883), + [aux_sym_batch_mode_token1] = ACTIONS(2883), + [aux_sym_bind_address_token1] = ACTIONS(2883), + [aux_sym_bind_interface_token1] = ACTIONS(2883), + [aux_sym_canonical_domains_token1] = ACTIONS(2883), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2883), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2883), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2883), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2883), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2883), + [aux_sym_certificate_file_token1] = ACTIONS(2883), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2883), + [aux_sym_channel_timeout_token1] = ACTIONS(2883), + [aux_sym_check_host_ip_token1] = ACTIONS(2883), + [aux_sym_ciphers_token1] = ACTIONS(2883), + [aux_sym_cipher_token1] = ACTIONS(2885), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2883), + [aux_sym_compression_token1] = ACTIONS(2883), + [aux_sym_connection_attempts_token1] = ACTIONS(2883), + [aux_sym_connect_timeout_token1] = ACTIONS(2883), + [aux_sym_control_master_token1] = ACTIONS(2883), + [aux_sym_control_path_token1] = ACTIONS(2883), + [aux_sym_control_persist_token1] = ACTIONS(2883), + [aux_sym_dynamic_forward_token1] = ACTIONS(2883), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2883), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2883), + [aux_sym_escape_char_token1] = ACTIONS(2883), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2883), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2883), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2883), + [aux_sym_forward_agent_token1] = ACTIONS(2883), + [aux_sym_forward_x11_token1] = ACTIONS(2885), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2883), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2883), + [aux_sym_gateway_ports_token1] = ACTIONS(2883), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2883), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2883), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2883), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2883), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2883), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2883), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2883), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2883), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2883), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2883), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2883), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2883), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2883), + [aux_sym_host_key_alias_token1] = ACTIONS(2883), + [aux_sym_hostname_token1] = ACTIONS(2883), + [aux_sym_identities_only_token1] = ACTIONS(2883), + [aux_sym_identity_agent_token1] = ACTIONS(2883), + [aux_sym_identity_file_token1] = ACTIONS(2883), + [aux_sym_ignore_unknown_token1] = ACTIONS(2883), + [aux_sym_include_token1] = ACTIONS(2883), + [aux_sym_ip_qos_token1] = ACTIONS(2883), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2883), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2883), + [aux_sym_kex_algorithms_token1] = ACTIONS(2883), + [aux_sym_known_hosts_command_token1] = ACTIONS(2883), + [aux_sym_local_command_token1] = ACTIONS(2883), + [aux_sym_local_forward_token1] = ACTIONS(2883), + [aux_sym_log_level_token1] = ACTIONS(2883), + [aux_sym_log_verbose_token1] = ACTIONS(2883), + [aux_sym_macs_token1] = ACTIONS(2883), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2883), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2883), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2883), + [aux_sym_password_authentication_token1] = ACTIONS(2883), + [aux_sym_permit_local_command_token1] = ACTIONS(2883), + [aux_sym_permit_remote_open_token1] = ACTIONS(2883), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2883), + [aux_sym_port_token1] = ACTIONS(2883), + [aux_sym_preferred_authentications_token1] = ACTIONS(2883), + [aux_sym_protocol_token1] = ACTIONS(2883), + [aux_sym_proxy_command_token1] = ACTIONS(2883), + [aux_sym_proxy_jump_token1] = ACTIONS(2883), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2883), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2883), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2883), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2883), + [aux_sym_rekey_limit_token1] = ACTIONS(2883), + [aux_sym_remote_command_token1] = ACTIONS(2883), + [aux_sym_remote_forward_token1] = ACTIONS(2883), + [aux_sym_request_tty_token1] = ACTIONS(2883), + [aux_sym_required_rsa_size_token1] = ACTIONS(2883), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2883), + [aux_sym_security_key_provider_token1] = ACTIONS(2883), + [aux_sym_send_env_token1] = ACTIONS(2883), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2883), + [aux_sym_server_alive_interval_token1] = ACTIONS(2883), + [aux_sym_session_type_token1] = ACTIONS(2883), + [aux_sym_set_env_token1] = ACTIONS(2883), + [aux_sym_stdin_null_token1] = ACTIONS(2883), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2883), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2883), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2883), + [aux_sym_syslog_facility_token1] = ACTIONS(2883), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2883), + [aux_sym_keep_alive_token1] = ACTIONS(2883), + [aux_sym_tag_token1] = ACTIONS(2883), + [aux_sym_tunnel_token1] = ACTIONS(2885), + [aux_sym_tunnel_device_token1] = ACTIONS(2883), + [aux_sym_update_host_keys_token1] = ACTIONS(2883), + [aux_sym_use_keychain_token1] = ACTIONS(2883), + [aux_sym_use_roaming_token1] = ACTIONS(2883), + [aux_sym_user_token1] = ACTIONS(2885), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2883), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2883), + [aux_sym_visual_host_key_token1] = ACTIONS(2883), + [aux_sym_xauth_location_token1] = ACTIONS(2883), }, [418] = { - [ts_builtin_sym_end] = ACTIONS(2880), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2882), - [anon_sym_DQUOTE] = ACTIONS(2880), - [aux_sym_match_token1] = ACTIONS(2880), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2880), - [aux_sym_address_family_token1] = ACTIONS(2880), - [aux_sym_batch_mode_token1] = ACTIONS(2880), - [aux_sym_bind_address_token1] = ACTIONS(2880), - [aux_sym_bind_interface_token1] = ACTIONS(2880), - [aux_sym_canonical_domains_token1] = ACTIONS(2880), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2880), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2880), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2880), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2880), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2880), - [aux_sym_certificate_file_token1] = ACTIONS(2880), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2880), - [aux_sym_channel_timeout_token1] = ACTIONS(2880), - [aux_sym_check_host_ip_token1] = ACTIONS(2880), - [aux_sym_ciphers_token1] = ACTIONS(2880), - [aux_sym_cipher_token1] = ACTIONS(2882), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2880), - [aux_sym_compression_token1] = ACTIONS(2880), - [aux_sym_connection_attempts_token1] = ACTIONS(2880), - [aux_sym_connect_timeout_token1] = ACTIONS(2880), - [aux_sym_control_master_token1] = ACTIONS(2880), - [aux_sym_control_path_token1] = ACTIONS(2880), - [aux_sym_control_persist_token1] = ACTIONS(2880), - [aux_sym_dynamic_forward_token1] = ACTIONS(2880), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2880), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2880), - [aux_sym_escape_char_token1] = ACTIONS(2880), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2880), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2880), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2880), - [aux_sym_forward_agent_token1] = ACTIONS(2880), - [aux_sym_forward_x11_token1] = ACTIONS(2882), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2880), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2880), - [aux_sym_gateway_ports_token1] = ACTIONS(2880), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2880), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2880), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2880), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2880), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2880), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2880), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2880), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2880), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2880), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2880), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2880), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2880), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2880), - [aux_sym_host_key_alias_token1] = ACTIONS(2880), - [aux_sym_hostname_token1] = ACTIONS(2880), - [aux_sym_identities_only_token1] = ACTIONS(2880), - [aux_sym_identity_agent_token1] = ACTIONS(2880), - [aux_sym_identity_file_token1] = ACTIONS(2880), - [aux_sym_ignore_unknown_token1] = ACTIONS(2880), - [aux_sym_include_token1] = ACTIONS(2880), - [aux_sym_ip_qos_token1] = ACTIONS(2880), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2880), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2880), - [aux_sym_kex_algorithms_token1] = ACTIONS(2880), - [aux_sym_known_hosts_command_token1] = ACTIONS(2880), - [aux_sym_local_command_token1] = ACTIONS(2880), - [aux_sym_local_forward_token1] = ACTIONS(2880), - [aux_sym_log_level_token1] = ACTIONS(2880), - [aux_sym_log_verbose_token1] = ACTIONS(2880), - [aux_sym_macs_token1] = ACTIONS(2880), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2880), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2880), - [aux_sym_password_authentication_token1] = ACTIONS(2880), - [aux_sym_permit_local_command_token1] = ACTIONS(2880), - [aux_sym_permit_remote_open_token1] = ACTIONS(2880), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2880), - [aux_sym_port_token1] = ACTIONS(2880), - [aux_sym_preferred_authentications_token1] = ACTIONS(2880), - [aux_sym_protocol_token1] = ACTIONS(2880), - [aux_sym_proxy_command_token1] = ACTIONS(2880), - [aux_sym_proxy_jump_token1] = ACTIONS(2880), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2880), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2880), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2880), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2880), - [aux_sym_rekey_limit_token1] = ACTIONS(2880), - [aux_sym_remote_command_token1] = ACTIONS(2880), - [aux_sym_remote_forward_token1] = ACTIONS(2880), - [aux_sym_request_tty_token1] = ACTIONS(2880), - [aux_sym_required_rsa_size_token1] = ACTIONS(2880), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2880), - [aux_sym_security_key_provider_token1] = ACTIONS(2880), - [aux_sym_send_env_token1] = ACTIONS(2880), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2880), - [aux_sym_server_alive_interval_token1] = ACTIONS(2880), - [aux_sym_session_type_token1] = ACTIONS(2880), - [aux_sym_set_env_token1] = ACTIONS(2880), - [aux_sym_stdin_null_token1] = ACTIONS(2880), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2880), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2880), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2880), - [aux_sym_syslog_facility_token1] = ACTIONS(2880), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2880), - [aux_sym_keep_alive_token1] = ACTIONS(2880), - [aux_sym_tag_token1] = ACTIONS(2880), - [aux_sym_tunnel_token1] = ACTIONS(2882), - [aux_sym_tunnel_device_token1] = ACTIONS(2880), - [aux_sym_update_host_keys_token1] = ACTIONS(2880), - [aux_sym_use_keychain_token1] = ACTIONS(2880), - [aux_sym_use_roaming_token1] = ACTIONS(2880), - [aux_sym_user_token1] = ACTIONS(2882), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2880), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2880), - [aux_sym_visual_host_key_token1] = ACTIONS(2880), - [aux_sym_xauth_location_token1] = ACTIONS(2880), + [ts_builtin_sym_end] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2887), + [aux_sym_match_token1] = ACTIONS(2887), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2887), + [aux_sym_address_family_token1] = ACTIONS(2887), + [aux_sym_batch_mode_token1] = ACTIONS(2887), + [aux_sym_bind_address_token1] = ACTIONS(2887), + [aux_sym_bind_interface_token1] = ACTIONS(2887), + [aux_sym_canonical_domains_token1] = ACTIONS(2887), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2887), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2887), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2887), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2887), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2887), + [aux_sym_certificate_file_token1] = ACTIONS(2887), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2887), + [aux_sym_channel_timeout_token1] = ACTIONS(2887), + [aux_sym_check_host_ip_token1] = ACTIONS(2887), + [aux_sym_ciphers_token1] = ACTIONS(2887), + [aux_sym_cipher_token1] = ACTIONS(2889), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2887), + [aux_sym_compression_token1] = ACTIONS(2887), + [aux_sym_connection_attempts_token1] = ACTIONS(2887), + [aux_sym_connect_timeout_token1] = ACTIONS(2887), + [aux_sym_control_master_token1] = ACTIONS(2887), + [aux_sym_control_path_token1] = ACTIONS(2887), + [aux_sym_control_persist_token1] = ACTIONS(2887), + [aux_sym_dynamic_forward_token1] = ACTIONS(2887), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2887), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2887), + [aux_sym_escape_char_token1] = ACTIONS(2887), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2887), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2887), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2887), + [aux_sym_forward_agent_token1] = ACTIONS(2887), + [aux_sym_forward_x11_token1] = ACTIONS(2889), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2887), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2887), + [aux_sym_gateway_ports_token1] = ACTIONS(2887), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2887), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2887), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2887), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2887), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2887), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2887), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2887), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2887), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2887), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2887), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2887), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2887), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2887), + [aux_sym_host_key_alias_token1] = ACTIONS(2887), + [aux_sym_hostname_token1] = ACTIONS(2887), + [aux_sym_identities_only_token1] = ACTIONS(2887), + [aux_sym_identity_agent_token1] = ACTIONS(2887), + [aux_sym_identity_file_token1] = ACTIONS(2887), + [aux_sym_ignore_unknown_token1] = ACTIONS(2887), + [aux_sym_include_token1] = ACTIONS(2887), + [aux_sym_ip_qos_token1] = ACTIONS(2887), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2887), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2887), + [aux_sym_kex_algorithms_token1] = ACTIONS(2887), + [aux_sym_known_hosts_command_token1] = ACTIONS(2887), + [aux_sym_local_command_token1] = ACTIONS(2887), + [aux_sym_local_forward_token1] = ACTIONS(2887), + [aux_sym_log_level_token1] = ACTIONS(2887), + [aux_sym_log_verbose_token1] = ACTIONS(2887), + [aux_sym_macs_token1] = ACTIONS(2887), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2887), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2887), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2887), + [aux_sym_password_authentication_token1] = ACTIONS(2887), + [aux_sym_permit_local_command_token1] = ACTIONS(2887), + [aux_sym_permit_remote_open_token1] = ACTIONS(2887), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2887), + [aux_sym_port_token1] = ACTIONS(2887), + [aux_sym_preferred_authentications_token1] = ACTIONS(2887), + [aux_sym_protocol_token1] = ACTIONS(2887), + [aux_sym_proxy_command_token1] = ACTIONS(2887), + [aux_sym_proxy_jump_token1] = ACTIONS(2887), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2887), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2887), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2887), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2887), + [aux_sym_rekey_limit_token1] = ACTIONS(2887), + [aux_sym_remote_command_token1] = ACTIONS(2887), + [aux_sym_remote_forward_token1] = ACTIONS(2887), + [aux_sym_request_tty_token1] = ACTIONS(2887), + [aux_sym_required_rsa_size_token1] = ACTIONS(2887), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2887), + [aux_sym_security_key_provider_token1] = ACTIONS(2887), + [aux_sym_send_env_token1] = ACTIONS(2887), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2887), + [aux_sym_server_alive_interval_token1] = ACTIONS(2887), + [aux_sym_session_type_token1] = ACTIONS(2887), + [aux_sym_set_env_token1] = ACTIONS(2887), + [aux_sym_stdin_null_token1] = ACTIONS(2887), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2887), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2887), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2887), + [aux_sym_syslog_facility_token1] = ACTIONS(2887), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2887), + [aux_sym_keep_alive_token1] = ACTIONS(2887), + [aux_sym_tag_token1] = ACTIONS(2887), + [aux_sym_tunnel_token1] = ACTIONS(2889), + [aux_sym_tunnel_device_token1] = ACTIONS(2887), + [aux_sym_update_host_keys_token1] = ACTIONS(2887), + [aux_sym_use_keychain_token1] = ACTIONS(2887), + [aux_sym_use_roaming_token1] = ACTIONS(2887), + [aux_sym_user_token1] = ACTIONS(2889), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2887), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2887), + [aux_sym_visual_host_key_token1] = ACTIONS(2887), + [aux_sym_xauth_location_token1] = ACTIONS(2887), }, [419] = { - [ts_builtin_sym_end] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2886), - [anon_sym_DQUOTE] = ACTIONS(2888), - [aux_sym_match_token1] = ACTIONS(2884), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2884), - [aux_sym_address_family_token1] = ACTIONS(2884), - [aux_sym_batch_mode_token1] = ACTIONS(2884), - [aux_sym_bind_address_token1] = ACTIONS(2884), - [aux_sym_bind_interface_token1] = ACTIONS(2884), - [aux_sym_canonical_domains_token1] = ACTIONS(2884), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2884), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2884), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2884), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2884), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2884), - [aux_sym_certificate_file_token1] = ACTIONS(2884), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2884), - [aux_sym_channel_timeout_token1] = ACTIONS(2884), - [aux_sym_check_host_ip_token1] = ACTIONS(2884), - [aux_sym_ciphers_token1] = ACTIONS(2884), - [aux_sym_cipher_token1] = ACTIONS(2886), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2884), - [aux_sym_compression_token1] = ACTIONS(2884), - [aux_sym_connection_attempts_token1] = ACTIONS(2884), - [aux_sym_connect_timeout_token1] = ACTIONS(2884), - [aux_sym_control_master_token1] = ACTIONS(2884), - [aux_sym_control_path_token1] = ACTIONS(2884), - [aux_sym_control_persist_token1] = ACTIONS(2884), - [aux_sym_dynamic_forward_token1] = ACTIONS(2884), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2884), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2884), - [aux_sym_escape_char_token1] = ACTIONS(2884), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2884), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2884), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2884), - [aux_sym_forward_agent_token1] = ACTIONS(2884), - [aux_sym_forward_x11_token1] = ACTIONS(2886), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2884), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2884), - [aux_sym_gateway_ports_token1] = ACTIONS(2884), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2884), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2884), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2884), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2884), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2884), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2884), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2884), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2884), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2884), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2884), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2884), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2884), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2884), - [aux_sym_host_key_alias_token1] = ACTIONS(2884), - [aux_sym_hostname_token1] = ACTIONS(2884), - [aux_sym_identities_only_token1] = ACTIONS(2884), - [aux_sym_identity_agent_token1] = ACTIONS(2884), - [aux_sym_identity_file_token1] = ACTIONS(2884), - [aux_sym_ignore_unknown_token1] = ACTIONS(2884), - [aux_sym_include_token1] = ACTIONS(2884), - [aux_sym_ip_qos_token1] = ACTIONS(2884), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2884), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2884), - [aux_sym_kex_algorithms_token1] = ACTIONS(2884), - [aux_sym_known_hosts_command_token1] = ACTIONS(2884), - [aux_sym_local_command_token1] = ACTIONS(2884), - [aux_sym_local_forward_token1] = ACTIONS(2884), - [aux_sym_log_level_token1] = ACTIONS(2884), - [aux_sym_log_verbose_token1] = ACTIONS(2884), - [aux_sym_macs_token1] = ACTIONS(2884), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2884), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2884), - [aux_sym_password_authentication_token1] = ACTIONS(2884), - [aux_sym_permit_local_command_token1] = ACTIONS(2884), - [aux_sym_permit_remote_open_token1] = ACTIONS(2884), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2884), - [aux_sym_port_token1] = ACTIONS(2884), - [aux_sym_preferred_authentications_token1] = ACTIONS(2884), - [aux_sym_protocol_token1] = ACTIONS(2884), - [aux_sym_proxy_command_token1] = ACTIONS(2884), - [aux_sym_proxy_jump_token1] = ACTIONS(2884), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2884), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2884), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2884), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2884), - [aux_sym_rekey_limit_token1] = ACTIONS(2884), - [aux_sym_remote_command_token1] = ACTIONS(2884), - [aux_sym_remote_forward_token1] = ACTIONS(2884), - [aux_sym_request_tty_token1] = ACTIONS(2884), - [aux_sym_required_rsa_size_token1] = ACTIONS(2884), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2884), - [aux_sym_security_key_provider_token1] = ACTIONS(2884), - [aux_sym_send_env_token1] = ACTIONS(2884), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2884), - [aux_sym_server_alive_interval_token1] = ACTIONS(2884), - [aux_sym_session_type_token1] = ACTIONS(2884), - [aux_sym_set_env_token1] = ACTIONS(2884), - [aux_sym_stdin_null_token1] = ACTIONS(2884), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2884), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2884), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2884), - [aux_sym_syslog_facility_token1] = ACTIONS(2884), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2884), - [aux_sym_keep_alive_token1] = ACTIONS(2884), - [aux_sym_tag_token1] = ACTIONS(2884), - [aux_sym_tunnel_token1] = ACTIONS(2886), - [aux_sym_tunnel_device_token1] = ACTIONS(2884), - [aux_sym_update_host_keys_token1] = ACTIONS(2884), - [aux_sym_use_keychain_token1] = ACTIONS(2884), - [aux_sym_use_roaming_token1] = ACTIONS(2884), - [aux_sym_user_token1] = ACTIONS(2886), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2884), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2884), - [aux_sym_visual_host_key_token1] = ACTIONS(2884), - [aux_sym_xauth_location_token1] = ACTIONS(2884), + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2893), + [anon_sym_DQUOTE] = ACTIONS(2895), + [aux_sym_match_token1] = ACTIONS(2891), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2891), + [aux_sym_address_family_token1] = ACTIONS(2891), + [aux_sym_batch_mode_token1] = ACTIONS(2891), + [aux_sym_bind_address_token1] = ACTIONS(2891), + [aux_sym_bind_interface_token1] = ACTIONS(2891), + [aux_sym_canonical_domains_token1] = ACTIONS(2891), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2891), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2891), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2891), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2891), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2891), + [aux_sym_certificate_file_token1] = ACTIONS(2891), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2891), + [aux_sym_channel_timeout_token1] = ACTIONS(2891), + [aux_sym_check_host_ip_token1] = ACTIONS(2891), + [aux_sym_ciphers_token1] = ACTIONS(2891), + [aux_sym_cipher_token1] = ACTIONS(2893), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2891), + [aux_sym_compression_token1] = ACTIONS(2891), + [aux_sym_connection_attempts_token1] = ACTIONS(2891), + [aux_sym_connect_timeout_token1] = ACTIONS(2891), + [aux_sym_control_master_token1] = ACTIONS(2891), + [aux_sym_control_path_token1] = ACTIONS(2891), + [aux_sym_control_persist_token1] = ACTIONS(2891), + [aux_sym_dynamic_forward_token1] = ACTIONS(2891), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2891), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2891), + [aux_sym_escape_char_token1] = ACTIONS(2891), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2891), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2891), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2891), + [aux_sym_forward_agent_token1] = ACTIONS(2891), + [aux_sym_forward_x11_token1] = ACTIONS(2893), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2891), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2891), + [aux_sym_gateway_ports_token1] = ACTIONS(2891), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2891), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2891), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2891), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2891), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2891), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2891), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2891), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2891), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2891), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2891), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2891), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2891), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2891), + [aux_sym_host_key_alias_token1] = ACTIONS(2891), + [aux_sym_hostname_token1] = ACTIONS(2891), + [aux_sym_identities_only_token1] = ACTIONS(2891), + [aux_sym_identity_agent_token1] = ACTIONS(2891), + [aux_sym_identity_file_token1] = ACTIONS(2891), + [aux_sym_ignore_unknown_token1] = ACTIONS(2891), + [aux_sym_include_token1] = ACTIONS(2891), + [aux_sym_ip_qos_token1] = ACTIONS(2891), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2891), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2891), + [aux_sym_kex_algorithms_token1] = ACTIONS(2891), + [aux_sym_known_hosts_command_token1] = ACTIONS(2891), + [aux_sym_local_command_token1] = ACTIONS(2891), + [aux_sym_local_forward_token1] = ACTIONS(2891), + [aux_sym_log_level_token1] = ACTIONS(2891), + [aux_sym_log_verbose_token1] = ACTIONS(2891), + [aux_sym_macs_token1] = ACTIONS(2891), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2891), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2891), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2891), + [aux_sym_password_authentication_token1] = ACTIONS(2891), + [aux_sym_permit_local_command_token1] = ACTIONS(2891), + [aux_sym_permit_remote_open_token1] = ACTIONS(2891), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2891), + [aux_sym_port_token1] = ACTIONS(2891), + [aux_sym_preferred_authentications_token1] = ACTIONS(2891), + [aux_sym_protocol_token1] = ACTIONS(2891), + [aux_sym_proxy_command_token1] = ACTIONS(2891), + [aux_sym_proxy_jump_token1] = ACTIONS(2891), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2891), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2891), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2891), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2891), + [aux_sym_rekey_limit_token1] = ACTIONS(2891), + [aux_sym_remote_command_token1] = ACTIONS(2891), + [aux_sym_remote_forward_token1] = ACTIONS(2891), + [aux_sym_request_tty_token1] = ACTIONS(2891), + [aux_sym_required_rsa_size_token1] = ACTIONS(2891), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2891), + [aux_sym_security_key_provider_token1] = ACTIONS(2891), + [aux_sym_send_env_token1] = ACTIONS(2891), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2891), + [aux_sym_server_alive_interval_token1] = ACTIONS(2891), + [aux_sym_session_type_token1] = ACTIONS(2891), + [aux_sym_set_env_token1] = ACTIONS(2891), + [aux_sym_stdin_null_token1] = ACTIONS(2891), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2891), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2891), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2891), + [aux_sym_syslog_facility_token1] = ACTIONS(2891), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2891), + [aux_sym_keep_alive_token1] = ACTIONS(2891), + [aux_sym_tag_token1] = ACTIONS(2891), + [aux_sym_tunnel_token1] = ACTIONS(2893), + [aux_sym_tunnel_device_token1] = ACTIONS(2891), + [aux_sym_update_host_keys_token1] = ACTIONS(2891), + [aux_sym_use_keychain_token1] = ACTIONS(2891), + [aux_sym_use_roaming_token1] = ACTIONS(2891), + [aux_sym_user_token1] = ACTIONS(2893), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2891), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2891), + [aux_sym_visual_host_key_token1] = ACTIONS(2891), + [aux_sym_xauth_location_token1] = ACTIONS(2891), }, [420] = { - [ts_builtin_sym_end] = ACTIONS(2890), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2890), - [aux_sym_match_token1] = ACTIONS(2890), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2890), - [aux_sym_address_family_token1] = ACTIONS(2890), - [aux_sym_batch_mode_token1] = ACTIONS(2890), - [aux_sym_bind_address_token1] = ACTIONS(2890), - [aux_sym_bind_interface_token1] = ACTIONS(2890), - [aux_sym_canonical_domains_token1] = ACTIONS(2890), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2890), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2890), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2890), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2890), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2890), - [aux_sym_certificate_file_token1] = ACTIONS(2890), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2890), - [aux_sym_channel_timeout_token1] = ACTIONS(2890), - [aux_sym_check_host_ip_token1] = ACTIONS(2890), - [aux_sym_ciphers_token1] = ACTIONS(2890), - [aux_sym_cipher_token1] = ACTIONS(2892), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2890), - [aux_sym_compression_token1] = ACTIONS(2890), - [aux_sym_connection_attempts_token1] = ACTIONS(2890), - [aux_sym_connect_timeout_token1] = ACTIONS(2890), - [aux_sym_control_master_token1] = ACTIONS(2890), - [aux_sym_control_path_token1] = ACTIONS(2890), - [aux_sym_control_persist_token1] = ACTIONS(2890), - [aux_sym_dynamic_forward_token1] = ACTIONS(2890), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2890), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2890), - [aux_sym_escape_char_token1] = ACTIONS(2890), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2890), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2890), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2890), - [aux_sym_forward_agent_token1] = ACTIONS(2890), - [aux_sym_forward_x11_token1] = ACTIONS(2892), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2890), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2890), - [aux_sym_gateway_ports_token1] = ACTIONS(2890), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2890), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2890), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2890), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2890), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2890), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2890), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2890), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2890), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2890), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2890), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2890), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2890), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2890), - [aux_sym_host_key_alias_token1] = ACTIONS(2890), - [aux_sym_hostname_token1] = ACTIONS(2890), - [aux_sym_identities_only_token1] = ACTIONS(2890), - [aux_sym_identity_agent_token1] = ACTIONS(2890), - [aux_sym_identity_file_token1] = ACTIONS(2890), - [aux_sym_ignore_unknown_token1] = ACTIONS(2890), - [aux_sym_include_token1] = ACTIONS(2890), - [aux_sym_ip_qos_token1] = ACTIONS(2890), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2890), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2890), - [aux_sym_kex_algorithms_token1] = ACTIONS(2890), - [aux_sym_known_hosts_command_token1] = ACTIONS(2890), - [aux_sym_local_command_token1] = ACTIONS(2890), - [aux_sym_local_forward_token1] = ACTIONS(2890), - [aux_sym_log_level_token1] = ACTIONS(2890), - [aux_sym_log_verbose_token1] = ACTIONS(2890), - [aux_sym_macs_token1] = ACTIONS(2890), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2890), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2890), - [aux_sym_password_authentication_token1] = ACTIONS(2890), - [aux_sym_permit_local_command_token1] = ACTIONS(2890), - [aux_sym_permit_remote_open_token1] = ACTIONS(2890), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2890), - [aux_sym_port_token1] = ACTIONS(2890), - [aux_sym_preferred_authentications_token1] = ACTIONS(2890), - [aux_sym_protocol_token1] = ACTIONS(2890), - [aux_sym_proxy_command_token1] = ACTIONS(2890), - [aux_sym_proxy_jump_token1] = ACTIONS(2890), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2890), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2890), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2890), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2890), - [aux_sym_rekey_limit_token1] = ACTIONS(2890), - [aux_sym_remote_command_token1] = ACTIONS(2890), - [aux_sym_remote_forward_token1] = ACTIONS(2890), - [aux_sym_request_tty_token1] = ACTIONS(2890), - [aux_sym_required_rsa_size_token1] = ACTIONS(2890), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2890), - [aux_sym_security_key_provider_token1] = ACTIONS(2890), - [aux_sym_send_env_token1] = ACTIONS(2890), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2890), - [aux_sym_server_alive_interval_token1] = ACTIONS(2890), - [aux_sym_session_type_token1] = ACTIONS(2890), - [aux_sym_set_env_token1] = ACTIONS(2890), - [aux_sym_stdin_null_token1] = ACTIONS(2890), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2890), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2890), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2890), - [aux_sym_syslog_facility_token1] = ACTIONS(2890), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2890), - [aux_sym_keep_alive_token1] = ACTIONS(2890), - [aux_sym_tag_token1] = ACTIONS(2890), - [aux_sym_tunnel_token1] = ACTIONS(2892), - [aux_sym_tunnel_device_token1] = ACTIONS(2890), - [aux_sym_update_host_keys_token1] = ACTIONS(2890), - [aux_sym_use_keychain_token1] = ACTIONS(2890), - [aux_sym_use_roaming_token1] = ACTIONS(2890), - [aux_sym_user_token1] = ACTIONS(2892), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2890), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2890), - [aux_sym_visual_host_key_token1] = ACTIONS(2890), - [aux_sym_xauth_location_token1] = ACTIONS(2890), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(2897), + [aux_sym_match_token1] = ACTIONS(2897), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2897), + [aux_sym_address_family_token1] = ACTIONS(2897), + [aux_sym_batch_mode_token1] = ACTIONS(2897), + [aux_sym_bind_address_token1] = ACTIONS(2897), + [aux_sym_bind_interface_token1] = ACTIONS(2897), + [aux_sym_canonical_domains_token1] = ACTIONS(2897), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2897), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2897), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2897), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2897), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2897), + [aux_sym_certificate_file_token1] = ACTIONS(2897), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2897), + [aux_sym_channel_timeout_token1] = ACTIONS(2897), + [aux_sym_check_host_ip_token1] = ACTIONS(2897), + [aux_sym_ciphers_token1] = ACTIONS(2897), + [aux_sym_cipher_token1] = ACTIONS(2899), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2897), + [aux_sym_compression_token1] = ACTIONS(2897), + [aux_sym_connection_attempts_token1] = ACTIONS(2897), + [aux_sym_connect_timeout_token1] = ACTIONS(2897), + [aux_sym_control_master_token1] = ACTIONS(2897), + [aux_sym_control_path_token1] = ACTIONS(2897), + [aux_sym_control_persist_token1] = ACTIONS(2897), + [aux_sym_dynamic_forward_token1] = ACTIONS(2897), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2897), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2897), + [aux_sym_escape_char_token1] = ACTIONS(2897), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2897), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2897), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2897), + [aux_sym_forward_agent_token1] = ACTIONS(2897), + [aux_sym_forward_x11_token1] = ACTIONS(2899), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2897), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2897), + [aux_sym_gateway_ports_token1] = ACTIONS(2897), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2897), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2897), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2897), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2897), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2897), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2897), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2897), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2897), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2897), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2897), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2897), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2897), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2897), + [aux_sym_host_key_alias_token1] = ACTIONS(2897), + [aux_sym_hostname_token1] = ACTIONS(2897), + [aux_sym_identities_only_token1] = ACTIONS(2897), + [aux_sym_identity_agent_token1] = ACTIONS(2897), + [aux_sym_identity_file_token1] = ACTIONS(2897), + [aux_sym_ignore_unknown_token1] = ACTIONS(2897), + [aux_sym_include_token1] = ACTIONS(2897), + [aux_sym_ip_qos_token1] = ACTIONS(2897), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2897), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2897), + [aux_sym_kex_algorithms_token1] = ACTIONS(2897), + [aux_sym_known_hosts_command_token1] = ACTIONS(2897), + [aux_sym_local_command_token1] = ACTIONS(2897), + [aux_sym_local_forward_token1] = ACTIONS(2897), + [aux_sym_log_level_token1] = ACTIONS(2897), + [aux_sym_log_verbose_token1] = ACTIONS(2897), + [aux_sym_macs_token1] = ACTIONS(2897), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2897), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2897), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2897), + [aux_sym_password_authentication_token1] = ACTIONS(2897), + [aux_sym_permit_local_command_token1] = ACTIONS(2897), + [aux_sym_permit_remote_open_token1] = ACTIONS(2897), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2897), + [aux_sym_port_token1] = ACTIONS(2897), + [aux_sym_preferred_authentications_token1] = ACTIONS(2897), + [aux_sym_protocol_token1] = ACTIONS(2897), + [aux_sym_proxy_command_token1] = ACTIONS(2897), + [aux_sym_proxy_jump_token1] = ACTIONS(2897), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2897), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2897), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2897), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2897), + [aux_sym_rekey_limit_token1] = ACTIONS(2897), + [aux_sym_remote_command_token1] = ACTIONS(2897), + [aux_sym_remote_forward_token1] = ACTIONS(2897), + [aux_sym_request_tty_token1] = ACTIONS(2897), + [aux_sym_required_rsa_size_token1] = ACTIONS(2897), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2897), + [aux_sym_security_key_provider_token1] = ACTIONS(2897), + [aux_sym_send_env_token1] = ACTIONS(2897), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2897), + [aux_sym_server_alive_interval_token1] = ACTIONS(2897), + [aux_sym_session_type_token1] = ACTIONS(2897), + [aux_sym_set_env_token1] = ACTIONS(2897), + [aux_sym_stdin_null_token1] = ACTIONS(2897), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2897), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2897), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2897), + [aux_sym_syslog_facility_token1] = ACTIONS(2897), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2897), + [aux_sym_keep_alive_token1] = ACTIONS(2897), + [aux_sym_tag_token1] = ACTIONS(2897), + [aux_sym_tunnel_token1] = ACTIONS(2899), + [aux_sym_tunnel_device_token1] = ACTIONS(2897), + [aux_sym_update_host_keys_token1] = ACTIONS(2897), + [aux_sym_use_keychain_token1] = ACTIONS(2897), + [aux_sym_use_roaming_token1] = ACTIONS(2897), + [aux_sym_user_token1] = ACTIONS(2899), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2897), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2897), + [aux_sym_visual_host_key_token1] = ACTIONS(2897), + [aux_sym_xauth_location_token1] = ACTIONS(2897), }, [421] = { - [ts_builtin_sym_end] = ACTIONS(2894), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2898), - [aux_sym_match_token1] = ACTIONS(2894), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2894), - [aux_sym_address_family_token1] = ACTIONS(2894), - [aux_sym_batch_mode_token1] = ACTIONS(2894), - [aux_sym_bind_address_token1] = ACTIONS(2894), - [aux_sym_bind_interface_token1] = ACTIONS(2894), - [aux_sym_canonical_domains_token1] = ACTIONS(2894), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2894), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2894), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2894), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2894), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2894), - [aux_sym_certificate_file_token1] = ACTIONS(2894), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2894), - [aux_sym_channel_timeout_token1] = ACTIONS(2894), - [aux_sym_check_host_ip_token1] = ACTIONS(2894), - [aux_sym_ciphers_token1] = ACTIONS(2894), - [aux_sym_cipher_token1] = ACTIONS(2896), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2894), - [aux_sym_compression_token1] = ACTIONS(2894), - [aux_sym_connection_attempts_token1] = ACTIONS(2894), - [aux_sym_connect_timeout_token1] = ACTIONS(2894), - [aux_sym_control_master_token1] = ACTIONS(2894), - [aux_sym_control_path_token1] = ACTIONS(2894), - [aux_sym_control_persist_token1] = ACTIONS(2894), - [aux_sym_dynamic_forward_token1] = ACTIONS(2894), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2894), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2894), - [aux_sym_escape_char_token1] = ACTIONS(2894), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2894), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2894), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2894), - [aux_sym_forward_agent_token1] = ACTIONS(2894), - [aux_sym_forward_x11_token1] = ACTIONS(2896), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2894), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2894), - [aux_sym_gateway_ports_token1] = ACTIONS(2894), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2894), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2894), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2894), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2894), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2894), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2894), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2894), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2894), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2894), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2894), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2894), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2894), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2894), - [aux_sym_host_key_alias_token1] = ACTIONS(2894), - [aux_sym_hostname_token1] = ACTIONS(2894), - [aux_sym_identities_only_token1] = ACTIONS(2894), - [aux_sym_identity_agent_token1] = ACTIONS(2894), - [aux_sym_identity_file_token1] = ACTIONS(2894), - [aux_sym_ignore_unknown_token1] = ACTIONS(2894), - [aux_sym_include_token1] = ACTIONS(2894), - [aux_sym_ip_qos_token1] = ACTIONS(2894), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2894), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2894), - [aux_sym_kex_algorithms_token1] = ACTIONS(2894), - [aux_sym_known_hosts_command_token1] = ACTIONS(2894), - [aux_sym_local_command_token1] = ACTIONS(2894), - [aux_sym_local_forward_token1] = ACTIONS(2894), - [aux_sym_log_level_token1] = ACTIONS(2894), - [aux_sym_log_verbose_token1] = ACTIONS(2894), - [aux_sym_macs_token1] = ACTIONS(2894), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2894), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2894), - [aux_sym_password_authentication_token1] = ACTIONS(2894), - [aux_sym_permit_local_command_token1] = ACTIONS(2894), - [aux_sym_permit_remote_open_token1] = ACTIONS(2894), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2894), - [aux_sym_port_token1] = ACTIONS(2894), - [aux_sym_preferred_authentications_token1] = ACTIONS(2894), - [aux_sym_protocol_token1] = ACTIONS(2894), - [aux_sym_proxy_command_token1] = ACTIONS(2894), - [aux_sym_proxy_jump_token1] = ACTIONS(2894), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2894), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2894), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2894), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2894), - [aux_sym_rekey_limit_token1] = ACTIONS(2894), - [aux_sym_remote_command_token1] = ACTIONS(2894), - [aux_sym_remote_forward_token1] = ACTIONS(2894), - [aux_sym_request_tty_token1] = ACTIONS(2894), - [aux_sym_required_rsa_size_token1] = ACTIONS(2894), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2894), - [aux_sym_security_key_provider_token1] = ACTIONS(2894), - [aux_sym_send_env_token1] = ACTIONS(2894), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2894), - [aux_sym_server_alive_interval_token1] = ACTIONS(2894), - [aux_sym_session_type_token1] = ACTIONS(2894), - [aux_sym_set_env_token1] = ACTIONS(2894), - [aux_sym_stdin_null_token1] = ACTIONS(2894), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2894), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2894), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2894), - [aux_sym_syslog_facility_token1] = ACTIONS(2894), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2894), - [aux_sym_keep_alive_token1] = ACTIONS(2894), - [aux_sym_tag_token1] = ACTIONS(2894), - [aux_sym_tunnel_token1] = ACTIONS(2896), - [aux_sym_tunnel_device_token1] = ACTIONS(2894), - [aux_sym_update_host_keys_token1] = ACTIONS(2894), - [aux_sym_use_keychain_token1] = ACTIONS(2894), - [aux_sym_use_roaming_token1] = ACTIONS(2894), - [aux_sym_user_token1] = ACTIONS(2896), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2894), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2894), - [aux_sym_visual_host_key_token1] = ACTIONS(2894), - [aux_sym_xauth_location_token1] = ACTIONS(2894), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2903), + [anon_sym_DQUOTE] = ACTIONS(2905), + [aux_sym_match_token1] = ACTIONS(2901), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2901), + [aux_sym_address_family_token1] = ACTIONS(2901), + [aux_sym_batch_mode_token1] = ACTIONS(2901), + [aux_sym_bind_address_token1] = ACTIONS(2901), + [aux_sym_bind_interface_token1] = ACTIONS(2901), + [aux_sym_canonical_domains_token1] = ACTIONS(2901), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2901), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2901), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2901), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2901), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2901), + [aux_sym_certificate_file_token1] = ACTIONS(2901), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2901), + [aux_sym_channel_timeout_token1] = ACTIONS(2901), + [aux_sym_check_host_ip_token1] = ACTIONS(2901), + [aux_sym_ciphers_token1] = ACTIONS(2901), + [aux_sym_cipher_token1] = ACTIONS(2903), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2901), + [aux_sym_compression_token1] = ACTIONS(2901), + [aux_sym_connection_attempts_token1] = ACTIONS(2901), + [aux_sym_connect_timeout_token1] = ACTIONS(2901), + [aux_sym_control_master_token1] = ACTIONS(2901), + [aux_sym_control_path_token1] = ACTIONS(2901), + [aux_sym_control_persist_token1] = ACTIONS(2901), + [aux_sym_dynamic_forward_token1] = ACTIONS(2901), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2901), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2901), + [aux_sym_escape_char_token1] = ACTIONS(2901), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2901), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2901), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2901), + [aux_sym_forward_agent_token1] = ACTIONS(2901), + [aux_sym_forward_x11_token1] = ACTIONS(2903), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2901), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2901), + [aux_sym_gateway_ports_token1] = ACTIONS(2901), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2901), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2901), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2901), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2901), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2901), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2901), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2901), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2901), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2901), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2901), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2901), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2901), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2901), + [aux_sym_host_key_alias_token1] = ACTIONS(2901), + [aux_sym_hostname_token1] = ACTIONS(2901), + [aux_sym_identities_only_token1] = ACTIONS(2901), + [aux_sym_identity_agent_token1] = ACTIONS(2901), + [aux_sym_identity_file_token1] = ACTIONS(2901), + [aux_sym_ignore_unknown_token1] = ACTIONS(2901), + [aux_sym_include_token1] = ACTIONS(2901), + [aux_sym_ip_qos_token1] = ACTIONS(2901), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2901), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2901), + [aux_sym_kex_algorithms_token1] = ACTIONS(2901), + [aux_sym_known_hosts_command_token1] = ACTIONS(2901), + [aux_sym_local_command_token1] = ACTIONS(2901), + [aux_sym_local_forward_token1] = ACTIONS(2901), + [aux_sym_log_level_token1] = ACTIONS(2901), + [aux_sym_log_verbose_token1] = ACTIONS(2901), + [aux_sym_macs_token1] = ACTIONS(2901), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2901), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2901), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2901), + [aux_sym_password_authentication_token1] = ACTIONS(2901), + [aux_sym_permit_local_command_token1] = ACTIONS(2901), + [aux_sym_permit_remote_open_token1] = ACTIONS(2901), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2901), + [aux_sym_port_token1] = ACTIONS(2901), + [aux_sym_preferred_authentications_token1] = ACTIONS(2901), + [aux_sym_protocol_token1] = ACTIONS(2901), + [aux_sym_proxy_command_token1] = ACTIONS(2901), + [aux_sym_proxy_jump_token1] = ACTIONS(2901), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2901), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2901), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2901), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2901), + [aux_sym_rekey_limit_token1] = ACTIONS(2901), + [aux_sym_remote_command_token1] = ACTIONS(2901), + [aux_sym_remote_forward_token1] = ACTIONS(2901), + [aux_sym_request_tty_token1] = ACTIONS(2901), + [aux_sym_required_rsa_size_token1] = ACTIONS(2901), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2901), + [aux_sym_security_key_provider_token1] = ACTIONS(2901), + [aux_sym_send_env_token1] = ACTIONS(2901), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2901), + [aux_sym_server_alive_interval_token1] = ACTIONS(2901), + [aux_sym_session_type_token1] = ACTIONS(2901), + [aux_sym_set_env_token1] = ACTIONS(2901), + [aux_sym_stdin_null_token1] = ACTIONS(2901), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2901), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2901), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2901), + [aux_sym_syslog_facility_token1] = ACTIONS(2901), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2901), + [aux_sym_keep_alive_token1] = ACTIONS(2901), + [aux_sym_tag_token1] = ACTIONS(2901), + [aux_sym_tunnel_token1] = ACTIONS(2903), + [aux_sym_tunnel_device_token1] = ACTIONS(2901), + [aux_sym_update_host_keys_token1] = ACTIONS(2901), + [aux_sym_use_keychain_token1] = ACTIONS(2901), + [aux_sym_use_roaming_token1] = ACTIONS(2901), + [aux_sym_user_token1] = ACTIONS(2903), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2901), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2901), + [aux_sym_visual_host_key_token1] = ACTIONS(2901), + [aux_sym_xauth_location_token1] = ACTIONS(2901), }, [422] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2902), - [anon_sym_DQUOTE] = ACTIONS(2904), - [aux_sym_match_token1] = ACTIONS(2900), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2900), - [aux_sym_address_family_token1] = ACTIONS(2900), - [aux_sym_batch_mode_token1] = ACTIONS(2900), - [aux_sym_bind_address_token1] = ACTIONS(2900), - [aux_sym_bind_interface_token1] = ACTIONS(2900), - [aux_sym_canonical_domains_token1] = ACTIONS(2900), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2900), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2900), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2900), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2900), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2900), - [aux_sym_certificate_file_token1] = ACTIONS(2900), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2900), - [aux_sym_channel_timeout_token1] = ACTIONS(2900), - [aux_sym_check_host_ip_token1] = ACTIONS(2900), - [aux_sym_ciphers_token1] = ACTIONS(2900), - [aux_sym_cipher_token1] = ACTIONS(2902), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2900), - [aux_sym_compression_token1] = ACTIONS(2900), - [aux_sym_connection_attempts_token1] = ACTIONS(2900), - [aux_sym_connect_timeout_token1] = ACTIONS(2900), - [aux_sym_control_master_token1] = ACTIONS(2900), - [aux_sym_control_path_token1] = ACTIONS(2900), - [aux_sym_control_persist_token1] = ACTIONS(2900), - [aux_sym_dynamic_forward_token1] = ACTIONS(2900), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2900), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2900), - [aux_sym_escape_char_token1] = ACTIONS(2900), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2900), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2900), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2900), - [aux_sym_forward_agent_token1] = ACTIONS(2900), - [aux_sym_forward_x11_token1] = ACTIONS(2902), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2900), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2900), - [aux_sym_gateway_ports_token1] = ACTIONS(2900), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2900), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2900), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2900), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2900), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2900), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2900), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2900), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2900), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2900), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2900), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2900), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2900), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2900), - [aux_sym_host_key_alias_token1] = ACTIONS(2900), - [aux_sym_hostname_token1] = ACTIONS(2900), - [aux_sym_identities_only_token1] = ACTIONS(2900), - [aux_sym_identity_agent_token1] = ACTIONS(2900), - [aux_sym_identity_file_token1] = ACTIONS(2900), - [aux_sym_ignore_unknown_token1] = ACTIONS(2900), - [aux_sym_include_token1] = ACTIONS(2900), - [aux_sym_ip_qos_token1] = ACTIONS(2900), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2900), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2900), - [aux_sym_kex_algorithms_token1] = ACTIONS(2900), - [aux_sym_known_hosts_command_token1] = ACTIONS(2900), - [aux_sym_local_command_token1] = ACTIONS(2900), - [aux_sym_local_forward_token1] = ACTIONS(2900), - [aux_sym_log_level_token1] = ACTIONS(2900), - [aux_sym_log_verbose_token1] = ACTIONS(2900), - [aux_sym_macs_token1] = ACTIONS(2900), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2900), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2900), - [aux_sym_password_authentication_token1] = ACTIONS(2900), - [aux_sym_permit_local_command_token1] = ACTIONS(2900), - [aux_sym_permit_remote_open_token1] = ACTIONS(2900), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2900), - [aux_sym_port_token1] = ACTIONS(2900), - [aux_sym_preferred_authentications_token1] = ACTIONS(2900), - [aux_sym_protocol_token1] = ACTIONS(2900), - [aux_sym_proxy_command_token1] = ACTIONS(2900), - [aux_sym_proxy_jump_token1] = ACTIONS(2900), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2900), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2900), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2900), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2900), - [aux_sym_rekey_limit_token1] = ACTIONS(2900), - [aux_sym_remote_command_token1] = ACTIONS(2900), - [aux_sym_remote_forward_token1] = ACTIONS(2900), - [aux_sym_request_tty_token1] = ACTIONS(2900), - [aux_sym_required_rsa_size_token1] = ACTIONS(2900), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2900), - [aux_sym_security_key_provider_token1] = ACTIONS(2900), - [aux_sym_send_env_token1] = ACTIONS(2900), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2900), - [aux_sym_server_alive_interval_token1] = ACTIONS(2900), - [aux_sym_session_type_token1] = ACTIONS(2900), - [aux_sym_set_env_token1] = ACTIONS(2900), - [aux_sym_stdin_null_token1] = ACTIONS(2900), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2900), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2900), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2900), - [aux_sym_syslog_facility_token1] = ACTIONS(2900), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2900), - [aux_sym_keep_alive_token1] = ACTIONS(2900), - [aux_sym_tag_token1] = ACTIONS(2900), - [aux_sym_tunnel_token1] = ACTIONS(2902), - [aux_sym_tunnel_device_token1] = ACTIONS(2900), - [aux_sym_update_host_keys_token1] = ACTIONS(2900), - [aux_sym_use_keychain_token1] = ACTIONS(2900), - [aux_sym_use_roaming_token1] = ACTIONS(2900), - [aux_sym_user_token1] = ACTIONS(2902), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2900), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2900), - [aux_sym_visual_host_key_token1] = ACTIONS(2900), - [aux_sym_xauth_location_token1] = ACTIONS(2900), + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2909), + [anon_sym_DQUOTE] = ACTIONS(2907), + [aux_sym_match_token1] = ACTIONS(2907), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2907), + [aux_sym_address_family_token1] = ACTIONS(2907), + [aux_sym_batch_mode_token1] = ACTIONS(2907), + [aux_sym_bind_address_token1] = ACTIONS(2907), + [aux_sym_bind_interface_token1] = ACTIONS(2907), + [aux_sym_canonical_domains_token1] = ACTIONS(2907), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2907), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2907), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2907), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2907), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2907), + [aux_sym_certificate_file_token1] = ACTIONS(2907), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2907), + [aux_sym_channel_timeout_token1] = ACTIONS(2907), + [aux_sym_check_host_ip_token1] = ACTIONS(2907), + [aux_sym_ciphers_token1] = ACTIONS(2907), + [aux_sym_cipher_token1] = ACTIONS(2909), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2907), + [aux_sym_compression_token1] = ACTIONS(2907), + [aux_sym_connection_attempts_token1] = ACTIONS(2907), + [aux_sym_connect_timeout_token1] = ACTIONS(2907), + [aux_sym_control_master_token1] = ACTIONS(2907), + [aux_sym_control_path_token1] = ACTIONS(2907), + [aux_sym_control_persist_token1] = ACTIONS(2907), + [aux_sym_dynamic_forward_token1] = ACTIONS(2907), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2907), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2907), + [aux_sym_escape_char_token1] = ACTIONS(2907), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2907), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2907), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2907), + [aux_sym_forward_agent_token1] = ACTIONS(2907), + [aux_sym_forward_x11_token1] = ACTIONS(2909), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2907), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2907), + [aux_sym_gateway_ports_token1] = ACTIONS(2907), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2907), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2907), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2907), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2907), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2907), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2907), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2907), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2907), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2907), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2907), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2907), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2907), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2907), + [aux_sym_host_key_alias_token1] = ACTIONS(2907), + [aux_sym_hostname_token1] = ACTIONS(2907), + [aux_sym_identities_only_token1] = ACTIONS(2907), + [aux_sym_identity_agent_token1] = ACTIONS(2907), + [aux_sym_identity_file_token1] = ACTIONS(2907), + [aux_sym_ignore_unknown_token1] = ACTIONS(2907), + [aux_sym_include_token1] = ACTIONS(2907), + [aux_sym_ip_qos_token1] = ACTIONS(2907), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2907), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2907), + [aux_sym_kex_algorithms_token1] = ACTIONS(2907), + [aux_sym_known_hosts_command_token1] = ACTIONS(2907), + [aux_sym_local_command_token1] = ACTIONS(2907), + [aux_sym_local_forward_token1] = ACTIONS(2907), + [aux_sym_log_level_token1] = ACTIONS(2907), + [aux_sym_log_verbose_token1] = ACTIONS(2907), + [aux_sym_macs_token1] = ACTIONS(2907), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2907), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2907), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2907), + [aux_sym_password_authentication_token1] = ACTIONS(2907), + [aux_sym_permit_local_command_token1] = ACTIONS(2907), + [aux_sym_permit_remote_open_token1] = ACTIONS(2907), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2907), + [aux_sym_port_token1] = ACTIONS(2907), + [aux_sym_preferred_authentications_token1] = ACTIONS(2907), + [aux_sym_protocol_token1] = ACTIONS(2907), + [aux_sym_proxy_command_token1] = ACTIONS(2907), + [aux_sym_proxy_jump_token1] = ACTIONS(2907), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2907), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2907), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2907), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2907), + [aux_sym_rekey_limit_token1] = ACTIONS(2907), + [aux_sym_remote_command_token1] = ACTIONS(2907), + [aux_sym_remote_forward_token1] = ACTIONS(2907), + [aux_sym_request_tty_token1] = ACTIONS(2907), + [aux_sym_required_rsa_size_token1] = ACTIONS(2907), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2907), + [aux_sym_security_key_provider_token1] = ACTIONS(2907), + [aux_sym_send_env_token1] = ACTIONS(2907), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2907), + [aux_sym_server_alive_interval_token1] = ACTIONS(2907), + [aux_sym_session_type_token1] = ACTIONS(2907), + [aux_sym_set_env_token1] = ACTIONS(2907), + [aux_sym_stdin_null_token1] = ACTIONS(2907), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2907), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2907), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2907), + [aux_sym_syslog_facility_token1] = ACTIONS(2907), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2907), + [aux_sym_keep_alive_token1] = ACTIONS(2907), + [aux_sym_tag_token1] = ACTIONS(2907), + [aux_sym_tunnel_token1] = ACTIONS(2909), + [aux_sym_tunnel_device_token1] = ACTIONS(2907), + [aux_sym_update_host_keys_token1] = ACTIONS(2907), + [aux_sym_use_keychain_token1] = ACTIONS(2907), + [aux_sym_use_roaming_token1] = ACTIONS(2907), + [aux_sym_user_token1] = ACTIONS(2909), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2907), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2907), + [aux_sym_visual_host_key_token1] = ACTIONS(2907), + [aux_sym_xauth_location_token1] = ACTIONS(2907), }, [423] = { - [ts_builtin_sym_end] = ACTIONS(2906), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2906), - [aux_sym_match_token1] = ACTIONS(2906), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2906), - [aux_sym_address_family_token1] = ACTIONS(2906), - [aux_sym_batch_mode_token1] = ACTIONS(2906), - [aux_sym_bind_address_token1] = ACTIONS(2906), - [aux_sym_bind_interface_token1] = ACTIONS(2906), - [aux_sym_canonical_domains_token1] = ACTIONS(2906), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2906), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2906), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2906), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2906), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2906), - [aux_sym_certificate_file_token1] = ACTIONS(2906), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2906), - [aux_sym_channel_timeout_token1] = ACTIONS(2906), - [aux_sym_check_host_ip_token1] = ACTIONS(2906), - [aux_sym_ciphers_token1] = ACTIONS(2906), - [aux_sym_cipher_token1] = ACTIONS(2908), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2906), - [aux_sym_compression_token1] = ACTIONS(2906), - [aux_sym_connection_attempts_token1] = ACTIONS(2906), - [aux_sym_connect_timeout_token1] = ACTIONS(2906), - [aux_sym_control_master_token1] = ACTIONS(2906), - [aux_sym_control_path_token1] = ACTIONS(2906), - [aux_sym_control_persist_token1] = ACTIONS(2906), - [aux_sym_dynamic_forward_token1] = ACTIONS(2906), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2906), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2906), - [aux_sym_escape_char_token1] = ACTIONS(2906), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2906), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2906), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2906), - [aux_sym_forward_agent_token1] = ACTIONS(2906), - [aux_sym_forward_x11_token1] = ACTIONS(2908), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2906), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2906), - [aux_sym_gateway_ports_token1] = ACTIONS(2906), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2906), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2906), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2906), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2906), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2906), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2906), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2906), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2906), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2906), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2906), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2906), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2906), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2906), - [aux_sym_host_key_alias_token1] = ACTIONS(2906), - [aux_sym_hostname_token1] = ACTIONS(2906), - [aux_sym_identities_only_token1] = ACTIONS(2906), - [aux_sym_identity_agent_token1] = ACTIONS(2906), - [aux_sym_identity_file_token1] = ACTIONS(2906), - [aux_sym_ignore_unknown_token1] = ACTIONS(2906), - [aux_sym_include_token1] = ACTIONS(2906), - [aux_sym_ip_qos_token1] = ACTIONS(2906), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2906), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2906), - [aux_sym_kex_algorithms_token1] = ACTIONS(2906), - [aux_sym_known_hosts_command_token1] = ACTIONS(2906), - [aux_sym_local_command_token1] = ACTIONS(2906), - [aux_sym_local_forward_token1] = ACTIONS(2906), - [aux_sym_log_level_token1] = ACTIONS(2906), - [aux_sym_log_verbose_token1] = ACTIONS(2906), - [aux_sym_macs_token1] = ACTIONS(2906), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2906), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2906), - [aux_sym_password_authentication_token1] = ACTIONS(2906), - [aux_sym_permit_local_command_token1] = ACTIONS(2906), - [aux_sym_permit_remote_open_token1] = ACTIONS(2906), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2906), - [aux_sym_port_token1] = ACTIONS(2906), - [aux_sym_preferred_authentications_token1] = ACTIONS(2906), - [aux_sym_protocol_token1] = ACTIONS(2906), - [aux_sym_proxy_command_token1] = ACTIONS(2906), - [aux_sym_proxy_jump_token1] = ACTIONS(2906), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2906), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2906), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2906), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2906), - [aux_sym_rekey_limit_token1] = ACTIONS(2906), - [aux_sym_remote_command_token1] = ACTIONS(2906), - [aux_sym_remote_forward_token1] = ACTIONS(2906), - [aux_sym_request_tty_token1] = ACTIONS(2906), - [aux_sym_required_rsa_size_token1] = ACTIONS(2906), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2906), - [aux_sym_security_key_provider_token1] = ACTIONS(2906), - [aux_sym_send_env_token1] = ACTIONS(2906), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2906), - [aux_sym_server_alive_interval_token1] = ACTIONS(2906), - [aux_sym_session_type_token1] = ACTIONS(2906), - [aux_sym_set_env_token1] = ACTIONS(2906), - [aux_sym_stdin_null_token1] = ACTIONS(2906), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2906), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2906), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2906), - [aux_sym_syslog_facility_token1] = ACTIONS(2906), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2906), - [aux_sym_keep_alive_token1] = ACTIONS(2906), - [aux_sym_tag_token1] = ACTIONS(2906), - [aux_sym_tunnel_token1] = ACTIONS(2908), - [aux_sym_tunnel_device_token1] = ACTIONS(2906), - [aux_sym_update_host_keys_token1] = ACTIONS(2906), - [aux_sym_use_keychain_token1] = ACTIONS(2906), - [aux_sym_use_roaming_token1] = ACTIONS(2906), - [aux_sym_user_token1] = ACTIONS(2908), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2906), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2906), - [aux_sym_visual_host_key_token1] = ACTIONS(2906), - [aux_sym_xauth_location_token1] = ACTIONS(2906), + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2913), + [anon_sym_DQUOTE] = ACTIONS(2915), + [aux_sym_match_token1] = ACTIONS(2911), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2911), + [aux_sym_address_family_token1] = ACTIONS(2911), + [aux_sym_batch_mode_token1] = ACTIONS(2911), + [aux_sym_bind_address_token1] = ACTIONS(2911), + [aux_sym_bind_interface_token1] = ACTIONS(2911), + [aux_sym_canonical_domains_token1] = ACTIONS(2911), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2911), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2911), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2911), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2911), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2911), + [aux_sym_certificate_file_token1] = ACTIONS(2911), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2911), + [aux_sym_channel_timeout_token1] = ACTIONS(2911), + [aux_sym_check_host_ip_token1] = ACTIONS(2911), + [aux_sym_ciphers_token1] = ACTIONS(2911), + [aux_sym_cipher_token1] = ACTIONS(2913), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2911), + [aux_sym_compression_token1] = ACTIONS(2911), + [aux_sym_connection_attempts_token1] = ACTIONS(2911), + [aux_sym_connect_timeout_token1] = ACTIONS(2911), + [aux_sym_control_master_token1] = ACTIONS(2911), + [aux_sym_control_path_token1] = ACTIONS(2911), + [aux_sym_control_persist_token1] = ACTIONS(2911), + [aux_sym_dynamic_forward_token1] = ACTIONS(2911), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2911), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2911), + [aux_sym_escape_char_token1] = ACTIONS(2911), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2911), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2911), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2911), + [aux_sym_forward_agent_token1] = ACTIONS(2911), + [aux_sym_forward_x11_token1] = ACTIONS(2913), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2911), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2911), + [aux_sym_gateway_ports_token1] = ACTIONS(2911), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2911), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2911), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2911), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2911), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2911), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2911), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2911), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2911), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2911), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2911), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2911), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2911), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2911), + [aux_sym_host_key_alias_token1] = ACTIONS(2911), + [aux_sym_hostname_token1] = ACTIONS(2911), + [aux_sym_identities_only_token1] = ACTIONS(2911), + [aux_sym_identity_agent_token1] = ACTIONS(2911), + [aux_sym_identity_file_token1] = ACTIONS(2911), + [aux_sym_ignore_unknown_token1] = ACTIONS(2911), + [aux_sym_include_token1] = ACTIONS(2911), + [aux_sym_ip_qos_token1] = ACTIONS(2911), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2911), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2911), + [aux_sym_kex_algorithms_token1] = ACTIONS(2911), + [aux_sym_known_hosts_command_token1] = ACTIONS(2911), + [aux_sym_local_command_token1] = ACTIONS(2911), + [aux_sym_local_forward_token1] = ACTIONS(2911), + [aux_sym_log_level_token1] = ACTIONS(2911), + [aux_sym_log_verbose_token1] = ACTIONS(2911), + [aux_sym_macs_token1] = ACTIONS(2911), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2911), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2911), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2911), + [aux_sym_password_authentication_token1] = ACTIONS(2911), + [aux_sym_permit_local_command_token1] = ACTIONS(2911), + [aux_sym_permit_remote_open_token1] = ACTIONS(2911), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2911), + [aux_sym_port_token1] = ACTIONS(2911), + [aux_sym_preferred_authentications_token1] = ACTIONS(2911), + [aux_sym_protocol_token1] = ACTIONS(2911), + [aux_sym_proxy_command_token1] = ACTIONS(2911), + [aux_sym_proxy_jump_token1] = ACTIONS(2911), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2911), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2911), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2911), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2911), + [aux_sym_rekey_limit_token1] = ACTIONS(2911), + [aux_sym_remote_command_token1] = ACTIONS(2911), + [aux_sym_remote_forward_token1] = ACTIONS(2911), + [aux_sym_request_tty_token1] = ACTIONS(2911), + [aux_sym_required_rsa_size_token1] = ACTIONS(2911), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2911), + [aux_sym_security_key_provider_token1] = ACTIONS(2911), + [aux_sym_send_env_token1] = ACTIONS(2911), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2911), + [aux_sym_server_alive_interval_token1] = ACTIONS(2911), + [aux_sym_session_type_token1] = ACTIONS(2911), + [aux_sym_set_env_token1] = ACTIONS(2911), + [aux_sym_stdin_null_token1] = ACTIONS(2911), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2911), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2911), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2911), + [aux_sym_syslog_facility_token1] = ACTIONS(2911), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2911), + [aux_sym_keep_alive_token1] = ACTIONS(2911), + [aux_sym_tag_token1] = ACTIONS(2911), + [aux_sym_tunnel_token1] = ACTIONS(2913), + [aux_sym_tunnel_device_token1] = ACTIONS(2911), + [aux_sym_update_host_keys_token1] = ACTIONS(2911), + [aux_sym_use_keychain_token1] = ACTIONS(2911), + [aux_sym_use_roaming_token1] = ACTIONS(2911), + [aux_sym_user_token1] = ACTIONS(2913), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2911), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2911), + [aux_sym_visual_host_key_token1] = ACTIONS(2911), + [aux_sym_xauth_location_token1] = ACTIONS(2911), }, [424] = { - [ts_builtin_sym_end] = ACTIONS(2910), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2912), - [anon_sym_DQUOTE] = ACTIONS(2910), - [aux_sym_match_token1] = ACTIONS(2910), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2910), - [aux_sym_address_family_token1] = ACTIONS(2910), - [aux_sym_batch_mode_token1] = ACTIONS(2910), - [aux_sym_bind_address_token1] = ACTIONS(2910), - [aux_sym_bind_interface_token1] = ACTIONS(2910), - [aux_sym_canonical_domains_token1] = ACTIONS(2910), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2910), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2910), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2910), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2910), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2910), - [aux_sym_certificate_file_token1] = ACTIONS(2910), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2910), - [aux_sym_channel_timeout_token1] = ACTIONS(2910), - [aux_sym_check_host_ip_token1] = ACTIONS(2910), - [aux_sym_ciphers_token1] = ACTIONS(2910), - [aux_sym_cipher_token1] = ACTIONS(2912), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2910), - [aux_sym_compression_token1] = ACTIONS(2910), - [aux_sym_connection_attempts_token1] = ACTIONS(2910), - [aux_sym_connect_timeout_token1] = ACTIONS(2910), - [aux_sym_control_master_token1] = ACTIONS(2910), - [aux_sym_control_path_token1] = ACTIONS(2910), - [aux_sym_control_persist_token1] = ACTIONS(2910), - [aux_sym_dynamic_forward_token1] = ACTIONS(2910), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2910), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2910), - [aux_sym_escape_char_token1] = ACTIONS(2910), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2910), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2910), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2910), - [aux_sym_forward_agent_token1] = ACTIONS(2910), - [aux_sym_forward_x11_token1] = ACTIONS(2912), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2910), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2910), - [aux_sym_gateway_ports_token1] = ACTIONS(2910), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2910), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2910), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2910), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2910), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2910), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2910), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2910), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2910), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2910), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2910), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2910), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2910), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2910), - [aux_sym_host_key_alias_token1] = ACTIONS(2910), - [aux_sym_hostname_token1] = ACTIONS(2910), - [aux_sym_identities_only_token1] = ACTIONS(2910), - [aux_sym_identity_agent_token1] = ACTIONS(2910), - [aux_sym_identity_file_token1] = ACTIONS(2910), - [aux_sym_ignore_unknown_token1] = ACTIONS(2910), - [aux_sym_include_token1] = ACTIONS(2910), - [aux_sym_ip_qos_token1] = ACTIONS(2910), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2910), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2910), - [aux_sym_kex_algorithms_token1] = ACTIONS(2910), - [aux_sym_known_hosts_command_token1] = ACTIONS(2910), - [aux_sym_local_command_token1] = ACTIONS(2910), - [aux_sym_local_forward_token1] = ACTIONS(2910), - [aux_sym_log_level_token1] = ACTIONS(2910), - [aux_sym_log_verbose_token1] = ACTIONS(2910), - [aux_sym_macs_token1] = ACTIONS(2910), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2910), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2910), - [aux_sym_password_authentication_token1] = ACTIONS(2910), - [aux_sym_permit_local_command_token1] = ACTIONS(2910), - [aux_sym_permit_remote_open_token1] = ACTIONS(2910), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2910), - [aux_sym_port_token1] = ACTIONS(2910), - [aux_sym_preferred_authentications_token1] = ACTIONS(2910), - [aux_sym_protocol_token1] = ACTIONS(2910), - [aux_sym_proxy_command_token1] = ACTIONS(2910), - [aux_sym_proxy_jump_token1] = ACTIONS(2910), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2910), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2910), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2910), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2910), - [aux_sym_rekey_limit_token1] = ACTIONS(2910), - [aux_sym_remote_command_token1] = ACTIONS(2910), - [aux_sym_remote_forward_token1] = ACTIONS(2910), - [aux_sym_request_tty_token1] = ACTIONS(2910), - [aux_sym_required_rsa_size_token1] = ACTIONS(2910), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2910), - [aux_sym_security_key_provider_token1] = ACTIONS(2910), - [aux_sym_send_env_token1] = ACTIONS(2910), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2910), - [aux_sym_server_alive_interval_token1] = ACTIONS(2910), - [aux_sym_session_type_token1] = ACTIONS(2910), - [aux_sym_set_env_token1] = ACTIONS(2910), - [aux_sym_stdin_null_token1] = ACTIONS(2910), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2910), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2910), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2910), - [aux_sym_syslog_facility_token1] = ACTIONS(2910), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2910), - [aux_sym_keep_alive_token1] = ACTIONS(2910), - [aux_sym_tag_token1] = ACTIONS(2910), - [aux_sym_tunnel_token1] = ACTIONS(2912), - [aux_sym_tunnel_device_token1] = ACTIONS(2910), - [aux_sym_update_host_keys_token1] = ACTIONS(2910), - [aux_sym_use_keychain_token1] = ACTIONS(2910), - [aux_sym_use_roaming_token1] = ACTIONS(2910), - [aux_sym_user_token1] = ACTIONS(2912), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2910), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2910), - [aux_sym_visual_host_key_token1] = ACTIONS(2910), - [aux_sym_xauth_location_token1] = ACTIONS(2910), + [ts_builtin_sym_end] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2919), + [anon_sym_DQUOTE] = ACTIONS(2921), + [aux_sym_match_token1] = ACTIONS(2917), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2917), + [aux_sym_address_family_token1] = ACTIONS(2917), + [aux_sym_batch_mode_token1] = ACTIONS(2917), + [aux_sym_bind_address_token1] = ACTIONS(2917), + [aux_sym_bind_interface_token1] = ACTIONS(2917), + [aux_sym_canonical_domains_token1] = ACTIONS(2917), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2917), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2917), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2917), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2917), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2917), + [aux_sym_certificate_file_token1] = ACTIONS(2917), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2917), + [aux_sym_channel_timeout_token1] = ACTIONS(2917), + [aux_sym_check_host_ip_token1] = ACTIONS(2917), + [aux_sym_ciphers_token1] = ACTIONS(2917), + [aux_sym_cipher_token1] = ACTIONS(2919), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2917), + [aux_sym_compression_token1] = ACTIONS(2917), + [aux_sym_connection_attempts_token1] = ACTIONS(2917), + [aux_sym_connect_timeout_token1] = ACTIONS(2917), + [aux_sym_control_master_token1] = ACTIONS(2917), + [aux_sym_control_path_token1] = ACTIONS(2917), + [aux_sym_control_persist_token1] = ACTIONS(2917), + [aux_sym_dynamic_forward_token1] = ACTIONS(2917), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2917), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2917), + [aux_sym_escape_char_token1] = ACTIONS(2917), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2917), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2917), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2917), + [aux_sym_forward_agent_token1] = ACTIONS(2917), + [aux_sym_forward_x11_token1] = ACTIONS(2919), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2917), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2917), + [aux_sym_gateway_ports_token1] = ACTIONS(2917), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2917), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2917), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2917), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2917), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2917), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2917), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2917), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2917), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2917), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2917), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2917), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2917), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2917), + [aux_sym_host_key_alias_token1] = ACTIONS(2917), + [aux_sym_hostname_token1] = ACTIONS(2917), + [aux_sym_identities_only_token1] = ACTIONS(2917), + [aux_sym_identity_agent_token1] = ACTIONS(2917), + [aux_sym_identity_file_token1] = ACTIONS(2917), + [aux_sym_ignore_unknown_token1] = ACTIONS(2917), + [aux_sym_include_token1] = ACTIONS(2917), + [aux_sym_ip_qos_token1] = ACTIONS(2917), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2917), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2917), + [aux_sym_kex_algorithms_token1] = ACTIONS(2917), + [aux_sym_known_hosts_command_token1] = ACTIONS(2917), + [aux_sym_local_command_token1] = ACTIONS(2917), + [aux_sym_local_forward_token1] = ACTIONS(2917), + [aux_sym_log_level_token1] = ACTIONS(2917), + [aux_sym_log_verbose_token1] = ACTIONS(2917), + [aux_sym_macs_token1] = ACTIONS(2917), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2917), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2917), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2917), + [aux_sym_password_authentication_token1] = ACTIONS(2917), + [aux_sym_permit_local_command_token1] = ACTIONS(2917), + [aux_sym_permit_remote_open_token1] = ACTIONS(2917), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2917), + [aux_sym_port_token1] = ACTIONS(2917), + [aux_sym_preferred_authentications_token1] = ACTIONS(2917), + [aux_sym_protocol_token1] = ACTIONS(2917), + [aux_sym_proxy_command_token1] = ACTIONS(2917), + [aux_sym_proxy_jump_token1] = ACTIONS(2917), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2917), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2917), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2917), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2917), + [aux_sym_rekey_limit_token1] = ACTIONS(2917), + [aux_sym_remote_command_token1] = ACTIONS(2917), + [aux_sym_remote_forward_token1] = ACTIONS(2917), + [aux_sym_request_tty_token1] = ACTIONS(2917), + [aux_sym_required_rsa_size_token1] = ACTIONS(2917), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2917), + [aux_sym_security_key_provider_token1] = ACTIONS(2917), + [aux_sym_send_env_token1] = ACTIONS(2917), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2917), + [aux_sym_server_alive_interval_token1] = ACTIONS(2917), + [aux_sym_session_type_token1] = ACTIONS(2917), + [aux_sym_set_env_token1] = ACTIONS(2917), + [aux_sym_stdin_null_token1] = ACTIONS(2917), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2917), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2917), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2917), + [aux_sym_syslog_facility_token1] = ACTIONS(2917), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2917), + [aux_sym_keep_alive_token1] = ACTIONS(2917), + [aux_sym_tag_token1] = ACTIONS(2917), + [aux_sym_tunnel_token1] = ACTIONS(2919), + [aux_sym_tunnel_device_token1] = ACTIONS(2917), + [aux_sym_update_host_keys_token1] = ACTIONS(2917), + [aux_sym_use_keychain_token1] = ACTIONS(2917), + [aux_sym_use_roaming_token1] = ACTIONS(2917), + [aux_sym_user_token1] = ACTIONS(2919), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2917), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2917), + [aux_sym_visual_host_key_token1] = ACTIONS(2917), + [aux_sym_xauth_location_token1] = ACTIONS(2917), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(2914), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2918), - [aux_sym_match_token1] = ACTIONS(2914), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2914), - [aux_sym_address_family_token1] = ACTIONS(2914), - [aux_sym_batch_mode_token1] = ACTIONS(2914), - [aux_sym_bind_address_token1] = ACTIONS(2914), - [aux_sym_bind_interface_token1] = ACTIONS(2914), - [aux_sym_canonical_domains_token1] = ACTIONS(2914), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2914), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2914), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2914), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2914), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2914), - [aux_sym_certificate_file_token1] = ACTIONS(2914), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2914), - [aux_sym_channel_timeout_token1] = ACTIONS(2914), - [aux_sym_check_host_ip_token1] = ACTIONS(2914), - [aux_sym_ciphers_token1] = ACTIONS(2914), - [aux_sym_cipher_token1] = ACTIONS(2916), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2914), - [aux_sym_compression_token1] = ACTIONS(2914), - [aux_sym_connection_attempts_token1] = ACTIONS(2914), - [aux_sym_connect_timeout_token1] = ACTIONS(2914), - [aux_sym_control_master_token1] = ACTIONS(2914), - [aux_sym_control_path_token1] = ACTIONS(2914), - [aux_sym_control_persist_token1] = ACTIONS(2914), - [aux_sym_dynamic_forward_token1] = ACTIONS(2914), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2914), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2914), - [aux_sym_escape_char_token1] = ACTIONS(2914), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2914), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2914), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2914), - [aux_sym_forward_agent_token1] = ACTIONS(2914), - [aux_sym_forward_x11_token1] = ACTIONS(2916), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2914), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2914), - [aux_sym_gateway_ports_token1] = ACTIONS(2914), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2914), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2914), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2914), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2914), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2914), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2914), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2914), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2914), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2914), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2914), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2914), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2914), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2914), - [aux_sym_host_key_alias_token1] = ACTIONS(2914), - [aux_sym_hostname_token1] = ACTIONS(2914), - [aux_sym_identities_only_token1] = ACTIONS(2914), - [aux_sym_identity_agent_token1] = ACTIONS(2914), - [aux_sym_identity_file_token1] = ACTIONS(2914), - [aux_sym_ignore_unknown_token1] = ACTIONS(2914), - [aux_sym_include_token1] = ACTIONS(2914), - [aux_sym_ip_qos_token1] = ACTIONS(2914), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2914), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2914), - [aux_sym_kex_algorithms_token1] = ACTIONS(2914), - [aux_sym_known_hosts_command_token1] = ACTIONS(2914), - [aux_sym_local_command_token1] = ACTIONS(2914), - [aux_sym_local_forward_token1] = ACTIONS(2914), - [aux_sym_log_level_token1] = ACTIONS(2914), - [aux_sym_log_verbose_token1] = ACTIONS(2914), - [aux_sym_macs_token1] = ACTIONS(2914), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2914), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2914), - [aux_sym_password_authentication_token1] = ACTIONS(2914), - [aux_sym_permit_local_command_token1] = ACTIONS(2914), - [aux_sym_permit_remote_open_token1] = ACTIONS(2914), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2914), - [aux_sym_port_token1] = ACTIONS(2914), - [aux_sym_preferred_authentications_token1] = ACTIONS(2914), - [aux_sym_protocol_token1] = ACTIONS(2914), - [aux_sym_proxy_command_token1] = ACTIONS(2914), - [aux_sym_proxy_jump_token1] = ACTIONS(2914), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2914), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2914), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2914), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2914), - [aux_sym_rekey_limit_token1] = ACTIONS(2914), - [aux_sym_remote_command_token1] = ACTIONS(2914), - [aux_sym_remote_forward_token1] = ACTIONS(2914), - [aux_sym_request_tty_token1] = ACTIONS(2914), - [aux_sym_required_rsa_size_token1] = ACTIONS(2914), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2914), - [aux_sym_security_key_provider_token1] = ACTIONS(2914), - [aux_sym_send_env_token1] = ACTIONS(2914), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2914), - [aux_sym_server_alive_interval_token1] = ACTIONS(2914), - [aux_sym_session_type_token1] = ACTIONS(2914), - [aux_sym_set_env_token1] = ACTIONS(2914), - [aux_sym_stdin_null_token1] = ACTIONS(2914), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2914), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2914), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2914), - [aux_sym_syslog_facility_token1] = ACTIONS(2914), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2914), - [aux_sym_keep_alive_token1] = ACTIONS(2914), - [aux_sym_tag_token1] = ACTIONS(2914), - [aux_sym_tunnel_token1] = ACTIONS(2916), - [aux_sym_tunnel_device_token1] = ACTIONS(2914), - [aux_sym_update_host_keys_token1] = ACTIONS(2914), - [aux_sym_use_keychain_token1] = ACTIONS(2914), - [aux_sym_use_roaming_token1] = ACTIONS(2914), - [aux_sym_user_token1] = ACTIONS(2916), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2914), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2914), - [aux_sym_visual_host_key_token1] = ACTIONS(2914), - [aux_sym_xauth_location_token1] = ACTIONS(2914), + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2925), + [anon_sym_DQUOTE] = ACTIONS(2923), + [aux_sym_match_token1] = ACTIONS(2923), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2923), + [aux_sym_address_family_token1] = ACTIONS(2923), + [aux_sym_batch_mode_token1] = ACTIONS(2923), + [aux_sym_bind_address_token1] = ACTIONS(2923), + [aux_sym_bind_interface_token1] = ACTIONS(2923), + [aux_sym_canonical_domains_token1] = ACTIONS(2923), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2923), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2923), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2923), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2923), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2923), + [aux_sym_certificate_file_token1] = ACTIONS(2923), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2923), + [aux_sym_channel_timeout_token1] = ACTIONS(2923), + [aux_sym_check_host_ip_token1] = ACTIONS(2923), + [aux_sym_ciphers_token1] = ACTIONS(2923), + [aux_sym_cipher_token1] = ACTIONS(2925), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2923), + [aux_sym_compression_token1] = ACTIONS(2923), + [aux_sym_connection_attempts_token1] = ACTIONS(2923), + [aux_sym_connect_timeout_token1] = ACTIONS(2923), + [aux_sym_control_master_token1] = ACTIONS(2923), + [aux_sym_control_path_token1] = ACTIONS(2923), + [aux_sym_control_persist_token1] = ACTIONS(2923), + [aux_sym_dynamic_forward_token1] = ACTIONS(2923), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2923), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2923), + [aux_sym_escape_char_token1] = ACTIONS(2923), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2923), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2923), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2923), + [aux_sym_forward_agent_token1] = ACTIONS(2923), + [aux_sym_forward_x11_token1] = ACTIONS(2925), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2923), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2923), + [aux_sym_gateway_ports_token1] = ACTIONS(2923), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2923), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2923), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2923), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2923), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2923), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2923), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2923), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2923), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2923), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2923), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2923), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2923), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2923), + [aux_sym_host_key_alias_token1] = ACTIONS(2923), + [aux_sym_hostname_token1] = ACTIONS(2923), + [aux_sym_identities_only_token1] = ACTIONS(2923), + [aux_sym_identity_agent_token1] = ACTIONS(2923), + [aux_sym_identity_file_token1] = ACTIONS(2923), + [aux_sym_ignore_unknown_token1] = ACTIONS(2923), + [aux_sym_include_token1] = ACTIONS(2923), + [aux_sym_ip_qos_token1] = ACTIONS(2923), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2923), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2923), + [aux_sym_kex_algorithms_token1] = ACTIONS(2923), + [aux_sym_known_hosts_command_token1] = ACTIONS(2923), + [aux_sym_local_command_token1] = ACTIONS(2923), + [aux_sym_local_forward_token1] = ACTIONS(2923), + [aux_sym_log_level_token1] = ACTIONS(2923), + [aux_sym_log_verbose_token1] = ACTIONS(2923), + [aux_sym_macs_token1] = ACTIONS(2923), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2923), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2923), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2923), + [aux_sym_password_authentication_token1] = ACTIONS(2923), + [aux_sym_permit_local_command_token1] = ACTIONS(2923), + [aux_sym_permit_remote_open_token1] = ACTIONS(2923), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2923), + [aux_sym_port_token1] = ACTIONS(2923), + [aux_sym_preferred_authentications_token1] = ACTIONS(2923), + [aux_sym_protocol_token1] = ACTIONS(2923), + [aux_sym_proxy_command_token1] = ACTIONS(2923), + [aux_sym_proxy_jump_token1] = ACTIONS(2923), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2923), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2923), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2923), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2923), + [aux_sym_rekey_limit_token1] = ACTIONS(2923), + [aux_sym_remote_command_token1] = ACTIONS(2923), + [aux_sym_remote_forward_token1] = ACTIONS(2923), + [aux_sym_request_tty_token1] = ACTIONS(2923), + [aux_sym_required_rsa_size_token1] = ACTIONS(2923), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2923), + [aux_sym_security_key_provider_token1] = ACTIONS(2923), + [aux_sym_send_env_token1] = ACTIONS(2923), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2923), + [aux_sym_server_alive_interval_token1] = ACTIONS(2923), + [aux_sym_session_type_token1] = ACTIONS(2923), + [aux_sym_set_env_token1] = ACTIONS(2923), + [aux_sym_stdin_null_token1] = ACTIONS(2923), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2923), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2923), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2923), + [aux_sym_syslog_facility_token1] = ACTIONS(2923), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2923), + [aux_sym_keep_alive_token1] = ACTIONS(2923), + [aux_sym_tag_token1] = ACTIONS(2923), + [aux_sym_tunnel_token1] = ACTIONS(2925), + [aux_sym_tunnel_device_token1] = ACTIONS(2923), + [aux_sym_update_host_keys_token1] = ACTIONS(2923), + [aux_sym_use_keychain_token1] = ACTIONS(2923), + [aux_sym_use_roaming_token1] = ACTIONS(2923), + [aux_sym_user_token1] = ACTIONS(2925), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2923), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2923), + [aux_sym_visual_host_key_token1] = ACTIONS(2923), + [aux_sym_xauth_location_token1] = ACTIONS(2923), }, [426] = { - [ts_builtin_sym_end] = ACTIONS(2920), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2922), - [anon_sym_DQUOTE] = ACTIONS(2920), - [aux_sym_match_token1] = ACTIONS(2920), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2920), - [aux_sym_address_family_token1] = ACTIONS(2920), - [aux_sym_batch_mode_token1] = ACTIONS(2920), - [aux_sym_bind_address_token1] = ACTIONS(2920), - [aux_sym_bind_interface_token1] = ACTIONS(2920), - [aux_sym_canonical_domains_token1] = ACTIONS(2920), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2920), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2920), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2920), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2920), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2920), - [aux_sym_certificate_file_token1] = ACTIONS(2920), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2920), - [aux_sym_channel_timeout_token1] = ACTIONS(2920), - [aux_sym_check_host_ip_token1] = ACTIONS(2920), - [aux_sym_ciphers_token1] = ACTIONS(2920), - [aux_sym_cipher_token1] = ACTIONS(2922), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2920), - [aux_sym_compression_token1] = ACTIONS(2920), - [aux_sym_connection_attempts_token1] = ACTIONS(2920), - [aux_sym_connect_timeout_token1] = ACTIONS(2920), - [aux_sym_control_master_token1] = ACTIONS(2920), - [aux_sym_control_path_token1] = ACTIONS(2920), - [aux_sym_control_persist_token1] = ACTIONS(2920), - [aux_sym_dynamic_forward_token1] = ACTIONS(2920), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2920), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2920), - [aux_sym_escape_char_token1] = ACTIONS(2920), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2920), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2920), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2920), - [aux_sym_forward_agent_token1] = ACTIONS(2920), - [aux_sym_forward_x11_token1] = ACTIONS(2922), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2920), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2920), - [aux_sym_gateway_ports_token1] = ACTIONS(2920), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2920), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2920), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2920), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2920), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2920), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2920), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2920), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2920), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2920), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2920), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2920), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2920), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2920), - [aux_sym_host_key_alias_token1] = ACTIONS(2920), - [aux_sym_hostname_token1] = ACTIONS(2920), - [aux_sym_identities_only_token1] = ACTIONS(2920), - [aux_sym_identity_agent_token1] = ACTIONS(2920), - [aux_sym_identity_file_token1] = ACTIONS(2920), - [aux_sym_ignore_unknown_token1] = ACTIONS(2920), - [aux_sym_include_token1] = ACTIONS(2920), - [aux_sym_ip_qos_token1] = ACTIONS(2920), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2920), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2920), - [aux_sym_kex_algorithms_token1] = ACTIONS(2920), - [aux_sym_known_hosts_command_token1] = ACTIONS(2920), - [aux_sym_local_command_token1] = ACTIONS(2920), - [aux_sym_local_forward_token1] = ACTIONS(2920), - [aux_sym_log_level_token1] = ACTIONS(2920), - [aux_sym_log_verbose_token1] = ACTIONS(2920), - [aux_sym_macs_token1] = ACTIONS(2920), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2920), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2920), - [aux_sym_password_authentication_token1] = ACTIONS(2920), - [aux_sym_permit_local_command_token1] = ACTIONS(2920), - [aux_sym_permit_remote_open_token1] = ACTIONS(2920), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2920), - [aux_sym_port_token1] = ACTIONS(2920), - [aux_sym_preferred_authentications_token1] = ACTIONS(2920), - [aux_sym_protocol_token1] = ACTIONS(2920), - [aux_sym_proxy_command_token1] = ACTIONS(2920), - [aux_sym_proxy_jump_token1] = ACTIONS(2920), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2920), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2920), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2920), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2920), - [aux_sym_rekey_limit_token1] = ACTIONS(2920), - [aux_sym_remote_command_token1] = ACTIONS(2920), - [aux_sym_remote_forward_token1] = ACTIONS(2920), - [aux_sym_request_tty_token1] = ACTIONS(2920), - [aux_sym_required_rsa_size_token1] = ACTIONS(2920), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2920), - [aux_sym_security_key_provider_token1] = ACTIONS(2920), - [aux_sym_send_env_token1] = ACTIONS(2920), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2920), - [aux_sym_server_alive_interval_token1] = ACTIONS(2920), - [aux_sym_session_type_token1] = ACTIONS(2920), - [aux_sym_set_env_token1] = ACTIONS(2920), - [aux_sym_stdin_null_token1] = ACTIONS(2920), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2920), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2920), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2920), - [aux_sym_syslog_facility_token1] = ACTIONS(2920), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2920), - [aux_sym_keep_alive_token1] = ACTIONS(2920), - [aux_sym_tag_token1] = ACTIONS(2920), - [aux_sym_tunnel_token1] = ACTIONS(2922), - [aux_sym_tunnel_device_token1] = ACTIONS(2920), - [aux_sym_update_host_keys_token1] = ACTIONS(2920), - [aux_sym_use_keychain_token1] = ACTIONS(2920), - [aux_sym_use_roaming_token1] = ACTIONS(2920), - [aux_sym_user_token1] = ACTIONS(2922), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2920), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2920), - [aux_sym_visual_host_key_token1] = ACTIONS(2920), - [aux_sym_xauth_location_token1] = ACTIONS(2920), + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2929), + [anon_sym_DQUOTE] = ACTIONS(2927), + [aux_sym_match_token1] = ACTIONS(2927), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2927), + [aux_sym_address_family_token1] = ACTIONS(2927), + [aux_sym_batch_mode_token1] = ACTIONS(2927), + [aux_sym_bind_address_token1] = ACTIONS(2927), + [aux_sym_bind_interface_token1] = ACTIONS(2927), + [aux_sym_canonical_domains_token1] = ACTIONS(2927), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2927), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2927), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2927), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2927), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2927), + [aux_sym_certificate_file_token1] = ACTIONS(2927), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2927), + [aux_sym_channel_timeout_token1] = ACTIONS(2927), + [aux_sym_check_host_ip_token1] = ACTIONS(2927), + [aux_sym_ciphers_token1] = ACTIONS(2927), + [aux_sym_cipher_token1] = ACTIONS(2929), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2927), + [aux_sym_compression_token1] = ACTIONS(2927), + [aux_sym_connection_attempts_token1] = ACTIONS(2927), + [aux_sym_connect_timeout_token1] = ACTIONS(2927), + [aux_sym_control_master_token1] = ACTIONS(2927), + [aux_sym_control_path_token1] = ACTIONS(2927), + [aux_sym_control_persist_token1] = ACTIONS(2927), + [aux_sym_dynamic_forward_token1] = ACTIONS(2927), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2927), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2927), + [aux_sym_escape_char_token1] = ACTIONS(2927), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2927), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2927), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2927), + [aux_sym_forward_agent_token1] = ACTIONS(2927), + [aux_sym_forward_x11_token1] = ACTIONS(2929), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2927), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2927), + [aux_sym_gateway_ports_token1] = ACTIONS(2927), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2927), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2927), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2927), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2927), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2927), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2927), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2927), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2927), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2927), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2927), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2927), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2927), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2927), + [aux_sym_host_key_alias_token1] = ACTIONS(2927), + [aux_sym_hostname_token1] = ACTIONS(2927), + [aux_sym_identities_only_token1] = ACTIONS(2927), + [aux_sym_identity_agent_token1] = ACTIONS(2927), + [aux_sym_identity_file_token1] = ACTIONS(2927), + [aux_sym_ignore_unknown_token1] = ACTIONS(2927), + [aux_sym_include_token1] = ACTIONS(2927), + [aux_sym_ip_qos_token1] = ACTIONS(2927), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2927), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2927), + [aux_sym_kex_algorithms_token1] = ACTIONS(2927), + [aux_sym_known_hosts_command_token1] = ACTIONS(2927), + [aux_sym_local_command_token1] = ACTIONS(2927), + [aux_sym_local_forward_token1] = ACTIONS(2927), + [aux_sym_log_level_token1] = ACTIONS(2927), + [aux_sym_log_verbose_token1] = ACTIONS(2927), + [aux_sym_macs_token1] = ACTIONS(2927), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2927), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2927), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2927), + [aux_sym_password_authentication_token1] = ACTIONS(2927), + [aux_sym_permit_local_command_token1] = ACTIONS(2927), + [aux_sym_permit_remote_open_token1] = ACTIONS(2927), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2927), + [aux_sym_port_token1] = ACTIONS(2927), + [aux_sym_preferred_authentications_token1] = ACTIONS(2927), + [aux_sym_protocol_token1] = ACTIONS(2927), + [aux_sym_proxy_command_token1] = ACTIONS(2927), + [aux_sym_proxy_jump_token1] = ACTIONS(2927), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2927), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2927), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2927), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2927), + [aux_sym_rekey_limit_token1] = ACTIONS(2927), + [aux_sym_remote_command_token1] = ACTIONS(2927), + [aux_sym_remote_forward_token1] = ACTIONS(2927), + [aux_sym_request_tty_token1] = ACTIONS(2927), + [aux_sym_required_rsa_size_token1] = ACTIONS(2927), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2927), + [aux_sym_security_key_provider_token1] = ACTIONS(2927), + [aux_sym_send_env_token1] = ACTIONS(2927), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2927), + [aux_sym_server_alive_interval_token1] = ACTIONS(2927), + [aux_sym_session_type_token1] = ACTIONS(2927), + [aux_sym_set_env_token1] = ACTIONS(2927), + [aux_sym_stdin_null_token1] = ACTIONS(2927), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2927), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2927), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2927), + [aux_sym_syslog_facility_token1] = ACTIONS(2927), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2927), + [aux_sym_keep_alive_token1] = ACTIONS(2927), + [aux_sym_tag_token1] = ACTIONS(2927), + [aux_sym_tunnel_token1] = ACTIONS(2929), + [aux_sym_tunnel_device_token1] = ACTIONS(2927), + [aux_sym_update_host_keys_token1] = ACTIONS(2927), + [aux_sym_use_keychain_token1] = ACTIONS(2927), + [aux_sym_use_roaming_token1] = ACTIONS(2927), + [aux_sym_user_token1] = ACTIONS(2929), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2927), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2927), + [aux_sym_visual_host_key_token1] = ACTIONS(2927), + [aux_sym_xauth_location_token1] = ACTIONS(2927), }, [427] = { - [ts_builtin_sym_end] = ACTIONS(2924), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2924), - [aux_sym_match_token1] = ACTIONS(2924), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2924), - [aux_sym_address_family_token1] = ACTIONS(2924), - [aux_sym_batch_mode_token1] = ACTIONS(2924), - [aux_sym_bind_address_token1] = ACTIONS(2924), - [aux_sym_bind_interface_token1] = ACTIONS(2924), - [aux_sym_canonical_domains_token1] = ACTIONS(2924), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2924), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2924), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2924), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2924), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2924), - [aux_sym_certificate_file_token1] = ACTIONS(2924), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2924), - [aux_sym_channel_timeout_token1] = ACTIONS(2924), - [aux_sym_check_host_ip_token1] = ACTIONS(2924), - [aux_sym_ciphers_token1] = ACTIONS(2924), - [aux_sym_cipher_token1] = ACTIONS(2926), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2924), - [aux_sym_compression_token1] = ACTIONS(2924), - [aux_sym_connection_attempts_token1] = ACTIONS(2924), - [aux_sym_connect_timeout_token1] = ACTIONS(2924), - [aux_sym_control_master_token1] = ACTIONS(2924), - [aux_sym_control_path_token1] = ACTIONS(2924), - [aux_sym_control_persist_token1] = ACTIONS(2924), - [aux_sym_dynamic_forward_token1] = ACTIONS(2924), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2924), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2924), - [aux_sym_escape_char_token1] = ACTIONS(2924), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2924), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2924), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2924), - [aux_sym_forward_agent_token1] = ACTIONS(2924), - [aux_sym_forward_x11_token1] = ACTIONS(2926), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2924), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2924), - [aux_sym_gateway_ports_token1] = ACTIONS(2924), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2924), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2924), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2924), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2924), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2924), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2924), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2924), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2924), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2924), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2924), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2924), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2924), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2924), - [aux_sym_host_key_alias_token1] = ACTIONS(2924), - [aux_sym_hostname_token1] = ACTIONS(2924), - [aux_sym_identities_only_token1] = ACTIONS(2924), - [aux_sym_identity_agent_token1] = ACTIONS(2924), - [aux_sym_identity_file_token1] = ACTIONS(2924), - [aux_sym_ignore_unknown_token1] = ACTIONS(2924), - [aux_sym_include_token1] = ACTIONS(2924), - [aux_sym_ip_qos_token1] = ACTIONS(2924), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2924), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2924), - [aux_sym_kex_algorithms_token1] = ACTIONS(2924), - [aux_sym_known_hosts_command_token1] = ACTIONS(2924), - [aux_sym_local_command_token1] = ACTIONS(2924), - [aux_sym_local_forward_token1] = ACTIONS(2924), - [aux_sym_log_level_token1] = ACTIONS(2924), - [aux_sym_log_verbose_token1] = ACTIONS(2924), - [aux_sym_macs_token1] = ACTIONS(2924), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2924), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2924), - [aux_sym_password_authentication_token1] = ACTIONS(2924), - [aux_sym_permit_local_command_token1] = ACTIONS(2924), - [aux_sym_permit_remote_open_token1] = ACTIONS(2924), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2924), - [aux_sym_port_token1] = ACTIONS(2924), - [aux_sym_preferred_authentications_token1] = ACTIONS(2924), - [aux_sym_protocol_token1] = ACTIONS(2924), - [aux_sym_proxy_command_token1] = ACTIONS(2924), - [aux_sym_proxy_jump_token1] = ACTIONS(2924), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2924), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2924), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2924), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2924), - [aux_sym_rekey_limit_token1] = ACTIONS(2924), - [aux_sym_remote_command_token1] = ACTIONS(2924), - [aux_sym_remote_forward_token1] = ACTIONS(2924), - [aux_sym_request_tty_token1] = ACTIONS(2924), - [aux_sym_required_rsa_size_token1] = ACTIONS(2924), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2924), - [aux_sym_security_key_provider_token1] = ACTIONS(2924), - [aux_sym_send_env_token1] = ACTIONS(2924), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2924), - [aux_sym_server_alive_interval_token1] = ACTIONS(2924), - [aux_sym_session_type_token1] = ACTIONS(2924), - [aux_sym_set_env_token1] = ACTIONS(2924), - [aux_sym_stdin_null_token1] = ACTIONS(2924), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2924), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2924), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2924), - [aux_sym_syslog_facility_token1] = ACTIONS(2924), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2924), - [aux_sym_keep_alive_token1] = ACTIONS(2924), - [aux_sym_tag_token1] = ACTIONS(2924), - [aux_sym_tunnel_token1] = ACTIONS(2926), - [aux_sym_tunnel_device_token1] = ACTIONS(2924), - [aux_sym_update_host_keys_token1] = ACTIONS(2924), - [aux_sym_use_keychain_token1] = ACTIONS(2924), - [aux_sym_use_roaming_token1] = ACTIONS(2924), - [aux_sym_user_token1] = ACTIONS(2926), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2924), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2924), - [aux_sym_visual_host_key_token1] = ACTIONS(2924), - [aux_sym_xauth_location_token1] = ACTIONS(2924), + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2933), + [anon_sym_DQUOTE] = ACTIONS(2935), + [aux_sym_match_token1] = ACTIONS(2931), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2931), + [aux_sym_address_family_token1] = ACTIONS(2931), + [aux_sym_batch_mode_token1] = ACTIONS(2931), + [aux_sym_bind_address_token1] = ACTIONS(2931), + [aux_sym_bind_interface_token1] = ACTIONS(2931), + [aux_sym_canonical_domains_token1] = ACTIONS(2931), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2931), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2931), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2931), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2931), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2931), + [aux_sym_certificate_file_token1] = ACTIONS(2931), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2931), + [aux_sym_channel_timeout_token1] = ACTIONS(2931), + [aux_sym_check_host_ip_token1] = ACTIONS(2931), + [aux_sym_ciphers_token1] = ACTIONS(2931), + [aux_sym_cipher_token1] = ACTIONS(2933), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2931), + [aux_sym_compression_token1] = ACTIONS(2931), + [aux_sym_connection_attempts_token1] = ACTIONS(2931), + [aux_sym_connect_timeout_token1] = ACTIONS(2931), + [aux_sym_control_master_token1] = ACTIONS(2931), + [aux_sym_control_path_token1] = ACTIONS(2931), + [aux_sym_control_persist_token1] = ACTIONS(2931), + [aux_sym_dynamic_forward_token1] = ACTIONS(2931), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2931), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2931), + [aux_sym_escape_char_token1] = ACTIONS(2931), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2931), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2931), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2931), + [aux_sym_forward_agent_token1] = ACTIONS(2931), + [aux_sym_forward_x11_token1] = ACTIONS(2933), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2931), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2931), + [aux_sym_gateway_ports_token1] = ACTIONS(2931), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2931), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2931), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2931), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2931), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2931), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2931), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2931), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2931), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2931), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2931), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2931), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2931), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2931), + [aux_sym_host_key_alias_token1] = ACTIONS(2931), + [aux_sym_hostname_token1] = ACTIONS(2931), + [aux_sym_identities_only_token1] = ACTIONS(2931), + [aux_sym_identity_agent_token1] = ACTIONS(2931), + [aux_sym_identity_file_token1] = ACTIONS(2931), + [aux_sym_ignore_unknown_token1] = ACTIONS(2931), + [aux_sym_include_token1] = ACTIONS(2931), + [aux_sym_ip_qos_token1] = ACTIONS(2931), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2931), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2931), + [aux_sym_kex_algorithms_token1] = ACTIONS(2931), + [aux_sym_known_hosts_command_token1] = ACTIONS(2931), + [aux_sym_local_command_token1] = ACTIONS(2931), + [aux_sym_local_forward_token1] = ACTIONS(2931), + [aux_sym_log_level_token1] = ACTIONS(2931), + [aux_sym_log_verbose_token1] = ACTIONS(2931), + [aux_sym_macs_token1] = ACTIONS(2931), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2931), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2931), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2931), + [aux_sym_password_authentication_token1] = ACTIONS(2931), + [aux_sym_permit_local_command_token1] = ACTIONS(2931), + [aux_sym_permit_remote_open_token1] = ACTIONS(2931), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2931), + [aux_sym_port_token1] = ACTIONS(2931), + [aux_sym_preferred_authentications_token1] = ACTIONS(2931), + [aux_sym_protocol_token1] = ACTIONS(2931), + [aux_sym_proxy_command_token1] = ACTIONS(2931), + [aux_sym_proxy_jump_token1] = ACTIONS(2931), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2931), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2931), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2931), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2931), + [aux_sym_rekey_limit_token1] = ACTIONS(2931), + [aux_sym_remote_command_token1] = ACTIONS(2931), + [aux_sym_remote_forward_token1] = ACTIONS(2931), + [aux_sym_request_tty_token1] = ACTIONS(2931), + [aux_sym_required_rsa_size_token1] = ACTIONS(2931), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2931), + [aux_sym_security_key_provider_token1] = ACTIONS(2931), + [aux_sym_send_env_token1] = ACTIONS(2931), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2931), + [aux_sym_server_alive_interval_token1] = ACTIONS(2931), + [aux_sym_session_type_token1] = ACTIONS(2931), + [aux_sym_set_env_token1] = ACTIONS(2931), + [aux_sym_stdin_null_token1] = ACTIONS(2931), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2931), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2931), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2931), + [aux_sym_syslog_facility_token1] = ACTIONS(2931), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2931), + [aux_sym_keep_alive_token1] = ACTIONS(2931), + [aux_sym_tag_token1] = ACTIONS(2931), + [aux_sym_tunnel_token1] = ACTIONS(2933), + [aux_sym_tunnel_device_token1] = ACTIONS(2931), + [aux_sym_update_host_keys_token1] = ACTIONS(2931), + [aux_sym_use_keychain_token1] = ACTIONS(2931), + [aux_sym_use_roaming_token1] = ACTIONS(2931), + [aux_sym_user_token1] = ACTIONS(2933), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2931), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2931), + [aux_sym_visual_host_key_token1] = ACTIONS(2931), + [aux_sym_xauth_location_token1] = ACTIONS(2931), }, [428] = { - [ts_builtin_sym_end] = ACTIONS(2928), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2930), - [anon_sym_DQUOTE] = ACTIONS(2928), - [aux_sym_match_token1] = ACTIONS(2928), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2928), - [aux_sym_address_family_token1] = ACTIONS(2928), - [aux_sym_batch_mode_token1] = ACTIONS(2928), - [aux_sym_bind_address_token1] = ACTIONS(2928), - [aux_sym_bind_interface_token1] = ACTIONS(2928), - [aux_sym_canonical_domains_token1] = ACTIONS(2928), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2928), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2928), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2928), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2928), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2928), - [aux_sym_certificate_file_token1] = ACTIONS(2928), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2928), - [aux_sym_channel_timeout_token1] = ACTIONS(2928), - [aux_sym_check_host_ip_token1] = ACTIONS(2928), - [aux_sym_ciphers_token1] = ACTIONS(2928), - [aux_sym_cipher_token1] = ACTIONS(2930), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2928), - [aux_sym_compression_token1] = ACTIONS(2928), - [aux_sym_connection_attempts_token1] = ACTIONS(2928), - [aux_sym_connect_timeout_token1] = ACTIONS(2928), - [aux_sym_control_master_token1] = ACTIONS(2928), - [aux_sym_control_path_token1] = ACTIONS(2928), - [aux_sym_control_persist_token1] = ACTIONS(2928), - [aux_sym_dynamic_forward_token1] = ACTIONS(2928), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2928), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2928), - [aux_sym_escape_char_token1] = ACTIONS(2928), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2928), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2928), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2928), - [aux_sym_forward_agent_token1] = ACTIONS(2928), - [aux_sym_forward_x11_token1] = ACTIONS(2930), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2928), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2928), - [aux_sym_gateway_ports_token1] = ACTIONS(2928), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2928), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2928), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2928), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2928), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2928), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2928), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2928), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2928), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2928), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2928), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2928), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2928), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2928), - [aux_sym_host_key_alias_token1] = ACTIONS(2928), - [aux_sym_hostname_token1] = ACTIONS(2928), - [aux_sym_identities_only_token1] = ACTIONS(2928), - [aux_sym_identity_agent_token1] = ACTIONS(2928), - [aux_sym_identity_file_token1] = ACTIONS(2928), - [aux_sym_ignore_unknown_token1] = ACTIONS(2928), - [aux_sym_include_token1] = ACTIONS(2928), - [aux_sym_ip_qos_token1] = ACTIONS(2928), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2928), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2928), - [aux_sym_kex_algorithms_token1] = ACTIONS(2928), - [aux_sym_known_hosts_command_token1] = ACTIONS(2928), - [aux_sym_local_command_token1] = ACTIONS(2928), - [aux_sym_local_forward_token1] = ACTIONS(2928), - [aux_sym_log_level_token1] = ACTIONS(2928), - [aux_sym_log_verbose_token1] = ACTIONS(2928), - [aux_sym_macs_token1] = ACTIONS(2928), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2928), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2928), - [aux_sym_password_authentication_token1] = ACTIONS(2928), - [aux_sym_permit_local_command_token1] = ACTIONS(2928), - [aux_sym_permit_remote_open_token1] = ACTIONS(2928), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2928), - [aux_sym_port_token1] = ACTIONS(2928), - [aux_sym_preferred_authentications_token1] = ACTIONS(2928), - [aux_sym_protocol_token1] = ACTIONS(2928), - [aux_sym_proxy_command_token1] = ACTIONS(2928), - [aux_sym_proxy_jump_token1] = ACTIONS(2928), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2928), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2928), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2928), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2928), - [aux_sym_rekey_limit_token1] = ACTIONS(2928), - [aux_sym_remote_command_token1] = ACTIONS(2928), - [aux_sym_remote_forward_token1] = ACTIONS(2928), - [aux_sym_request_tty_token1] = ACTIONS(2928), - [aux_sym_required_rsa_size_token1] = ACTIONS(2928), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2928), - [aux_sym_security_key_provider_token1] = ACTIONS(2928), - [aux_sym_send_env_token1] = ACTIONS(2928), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2928), - [aux_sym_server_alive_interval_token1] = ACTIONS(2928), - [aux_sym_session_type_token1] = ACTIONS(2928), - [aux_sym_set_env_token1] = ACTIONS(2928), - [aux_sym_stdin_null_token1] = ACTIONS(2928), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2928), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2928), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2928), - [aux_sym_syslog_facility_token1] = ACTIONS(2928), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2928), - [aux_sym_keep_alive_token1] = ACTIONS(2928), - [aux_sym_tag_token1] = ACTIONS(2928), - [aux_sym_tunnel_token1] = ACTIONS(2930), - [aux_sym_tunnel_device_token1] = ACTIONS(2928), - [aux_sym_update_host_keys_token1] = ACTIONS(2928), - [aux_sym_use_keychain_token1] = ACTIONS(2928), - [aux_sym_use_roaming_token1] = ACTIONS(2928), - [aux_sym_user_token1] = ACTIONS(2930), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2928), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2928), - [aux_sym_visual_host_key_token1] = ACTIONS(2928), - [aux_sym_xauth_location_token1] = ACTIONS(2928), + [ts_builtin_sym_end] = ACTIONS(2937), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2939), + [anon_sym_DQUOTE] = ACTIONS(2937), + [aux_sym_match_token1] = ACTIONS(2937), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2937), + [aux_sym_address_family_token1] = ACTIONS(2937), + [aux_sym_batch_mode_token1] = ACTIONS(2937), + [aux_sym_bind_address_token1] = ACTIONS(2937), + [aux_sym_bind_interface_token1] = ACTIONS(2937), + [aux_sym_canonical_domains_token1] = ACTIONS(2937), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2937), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2937), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2937), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2937), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2937), + [aux_sym_certificate_file_token1] = ACTIONS(2937), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2937), + [aux_sym_channel_timeout_token1] = ACTIONS(2937), + [aux_sym_check_host_ip_token1] = ACTIONS(2937), + [aux_sym_ciphers_token1] = ACTIONS(2937), + [aux_sym_cipher_token1] = ACTIONS(2939), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2937), + [aux_sym_compression_token1] = ACTIONS(2937), + [aux_sym_connection_attempts_token1] = ACTIONS(2937), + [aux_sym_connect_timeout_token1] = ACTIONS(2937), + [aux_sym_control_master_token1] = ACTIONS(2937), + [aux_sym_control_path_token1] = ACTIONS(2937), + [aux_sym_control_persist_token1] = ACTIONS(2937), + [aux_sym_dynamic_forward_token1] = ACTIONS(2937), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2937), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2937), + [aux_sym_escape_char_token1] = ACTIONS(2937), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2937), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2937), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2937), + [aux_sym_forward_agent_token1] = ACTIONS(2937), + [aux_sym_forward_x11_token1] = ACTIONS(2939), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2937), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2937), + [aux_sym_gateway_ports_token1] = ACTIONS(2937), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2937), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2937), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2937), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2937), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2937), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2937), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2937), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2937), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2937), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2937), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2937), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2937), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2937), + [aux_sym_host_key_alias_token1] = ACTIONS(2937), + [aux_sym_hostname_token1] = ACTIONS(2937), + [aux_sym_identities_only_token1] = ACTIONS(2937), + [aux_sym_identity_agent_token1] = ACTIONS(2937), + [aux_sym_identity_file_token1] = ACTIONS(2937), + [aux_sym_ignore_unknown_token1] = ACTIONS(2937), + [aux_sym_include_token1] = ACTIONS(2937), + [aux_sym_ip_qos_token1] = ACTIONS(2937), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2937), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2937), + [aux_sym_kex_algorithms_token1] = ACTIONS(2937), + [aux_sym_known_hosts_command_token1] = ACTIONS(2937), + [aux_sym_local_command_token1] = ACTIONS(2937), + [aux_sym_local_forward_token1] = ACTIONS(2937), + [aux_sym_log_level_token1] = ACTIONS(2937), + [aux_sym_log_verbose_token1] = ACTIONS(2937), + [aux_sym_macs_token1] = ACTIONS(2937), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2937), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2937), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2937), + [aux_sym_password_authentication_token1] = ACTIONS(2937), + [aux_sym_permit_local_command_token1] = ACTIONS(2937), + [aux_sym_permit_remote_open_token1] = ACTIONS(2937), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2937), + [aux_sym_port_token1] = ACTIONS(2937), + [aux_sym_preferred_authentications_token1] = ACTIONS(2937), + [aux_sym_protocol_token1] = ACTIONS(2937), + [aux_sym_proxy_command_token1] = ACTIONS(2937), + [aux_sym_proxy_jump_token1] = ACTIONS(2937), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2937), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2937), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2937), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2937), + [aux_sym_rekey_limit_token1] = ACTIONS(2937), + [aux_sym_remote_command_token1] = ACTIONS(2937), + [aux_sym_remote_forward_token1] = ACTIONS(2937), + [aux_sym_request_tty_token1] = ACTIONS(2937), + [aux_sym_required_rsa_size_token1] = ACTIONS(2937), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2937), + [aux_sym_security_key_provider_token1] = ACTIONS(2937), + [aux_sym_send_env_token1] = ACTIONS(2937), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2937), + [aux_sym_server_alive_interval_token1] = ACTIONS(2937), + [aux_sym_session_type_token1] = ACTIONS(2937), + [aux_sym_set_env_token1] = ACTIONS(2937), + [aux_sym_stdin_null_token1] = ACTIONS(2937), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2937), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2937), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2937), + [aux_sym_syslog_facility_token1] = ACTIONS(2937), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2937), + [aux_sym_keep_alive_token1] = ACTIONS(2937), + [aux_sym_tag_token1] = ACTIONS(2937), + [aux_sym_tunnel_token1] = ACTIONS(2939), + [aux_sym_tunnel_device_token1] = ACTIONS(2937), + [aux_sym_update_host_keys_token1] = ACTIONS(2937), + [aux_sym_use_keychain_token1] = ACTIONS(2937), + [aux_sym_use_roaming_token1] = ACTIONS(2937), + [aux_sym_user_token1] = ACTIONS(2939), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2937), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2937), + [aux_sym_visual_host_key_token1] = ACTIONS(2937), + [aux_sym_xauth_location_token1] = ACTIONS(2937), }, [429] = { - [ts_builtin_sym_end] = ACTIONS(2932), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2934), - [anon_sym_DQUOTE] = ACTIONS(2936), - [aux_sym_match_token1] = ACTIONS(2932), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2932), - [aux_sym_address_family_token1] = ACTIONS(2932), - [aux_sym_batch_mode_token1] = ACTIONS(2932), - [aux_sym_bind_address_token1] = ACTIONS(2932), - [aux_sym_bind_interface_token1] = ACTIONS(2932), - [aux_sym_canonical_domains_token1] = ACTIONS(2932), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2932), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2932), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2932), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2932), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2932), - [aux_sym_certificate_file_token1] = ACTIONS(2932), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2932), - [aux_sym_channel_timeout_token1] = ACTIONS(2932), - [aux_sym_check_host_ip_token1] = ACTIONS(2932), - [aux_sym_ciphers_token1] = ACTIONS(2932), - [aux_sym_cipher_token1] = ACTIONS(2934), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2932), - [aux_sym_compression_token1] = ACTIONS(2932), - [aux_sym_connection_attempts_token1] = ACTIONS(2932), - [aux_sym_connect_timeout_token1] = ACTIONS(2932), - [aux_sym_control_master_token1] = ACTIONS(2932), - [aux_sym_control_path_token1] = ACTIONS(2932), - [aux_sym_control_persist_token1] = ACTIONS(2932), - [aux_sym_dynamic_forward_token1] = ACTIONS(2932), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2932), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2932), - [aux_sym_escape_char_token1] = ACTIONS(2932), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2932), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2932), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2932), - [aux_sym_forward_agent_token1] = ACTIONS(2932), - [aux_sym_forward_x11_token1] = ACTIONS(2934), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2932), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2932), - [aux_sym_gateway_ports_token1] = ACTIONS(2932), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2932), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2932), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2932), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2932), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2932), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2932), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2932), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2932), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2932), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2932), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2932), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2932), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2932), - [aux_sym_host_key_alias_token1] = ACTIONS(2932), - [aux_sym_hostname_token1] = ACTIONS(2932), - [aux_sym_identities_only_token1] = ACTIONS(2932), - [aux_sym_identity_agent_token1] = ACTIONS(2932), - [aux_sym_identity_file_token1] = ACTIONS(2932), - [aux_sym_ignore_unknown_token1] = ACTIONS(2932), - [aux_sym_include_token1] = ACTIONS(2932), - [aux_sym_ip_qos_token1] = ACTIONS(2932), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2932), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2932), - [aux_sym_kex_algorithms_token1] = ACTIONS(2932), - [aux_sym_known_hosts_command_token1] = ACTIONS(2932), - [aux_sym_local_command_token1] = ACTIONS(2932), - [aux_sym_local_forward_token1] = ACTIONS(2932), - [aux_sym_log_level_token1] = ACTIONS(2932), - [aux_sym_log_verbose_token1] = ACTIONS(2932), - [aux_sym_macs_token1] = ACTIONS(2932), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2932), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2932), - [aux_sym_password_authentication_token1] = ACTIONS(2932), - [aux_sym_permit_local_command_token1] = ACTIONS(2932), - [aux_sym_permit_remote_open_token1] = ACTIONS(2932), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2932), - [aux_sym_port_token1] = ACTIONS(2932), - [aux_sym_preferred_authentications_token1] = ACTIONS(2932), - [aux_sym_protocol_token1] = ACTIONS(2932), - [aux_sym_proxy_command_token1] = ACTIONS(2932), - [aux_sym_proxy_jump_token1] = ACTIONS(2932), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2932), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2932), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2932), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2932), - [aux_sym_rekey_limit_token1] = ACTIONS(2932), - [aux_sym_remote_command_token1] = ACTIONS(2932), - [aux_sym_remote_forward_token1] = ACTIONS(2932), - [aux_sym_request_tty_token1] = ACTIONS(2932), - [aux_sym_required_rsa_size_token1] = ACTIONS(2932), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2932), - [aux_sym_security_key_provider_token1] = ACTIONS(2932), - [aux_sym_send_env_token1] = ACTIONS(2932), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2932), - [aux_sym_server_alive_interval_token1] = ACTIONS(2932), - [aux_sym_session_type_token1] = ACTIONS(2932), - [aux_sym_set_env_token1] = ACTIONS(2932), - [aux_sym_stdin_null_token1] = ACTIONS(2932), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2932), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2932), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2932), - [aux_sym_syslog_facility_token1] = ACTIONS(2932), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2932), - [aux_sym_keep_alive_token1] = ACTIONS(2932), - [aux_sym_tag_token1] = ACTIONS(2932), - [aux_sym_tunnel_token1] = ACTIONS(2934), - [aux_sym_tunnel_device_token1] = ACTIONS(2932), - [aux_sym_update_host_keys_token1] = ACTIONS(2932), - [aux_sym_use_keychain_token1] = ACTIONS(2932), - [aux_sym_use_roaming_token1] = ACTIONS(2932), - [aux_sym_user_token1] = ACTIONS(2934), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2932), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2932), - [aux_sym_visual_host_key_token1] = ACTIONS(2932), - [aux_sym_xauth_location_token1] = ACTIONS(2932), + [ts_builtin_sym_end] = ACTIONS(2941), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2943), + [anon_sym_DQUOTE] = ACTIONS(2945), + [aux_sym_match_token1] = ACTIONS(2941), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2941), + [aux_sym_address_family_token1] = ACTIONS(2941), + [aux_sym_batch_mode_token1] = ACTIONS(2941), + [aux_sym_bind_address_token1] = ACTIONS(2941), + [aux_sym_bind_interface_token1] = ACTIONS(2941), + [aux_sym_canonical_domains_token1] = ACTIONS(2941), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2941), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2941), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2941), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2941), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2941), + [aux_sym_certificate_file_token1] = ACTIONS(2941), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2941), + [aux_sym_channel_timeout_token1] = ACTIONS(2941), + [aux_sym_check_host_ip_token1] = ACTIONS(2941), + [aux_sym_ciphers_token1] = ACTIONS(2941), + [aux_sym_cipher_token1] = ACTIONS(2943), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2941), + [aux_sym_compression_token1] = ACTIONS(2941), + [aux_sym_connection_attempts_token1] = ACTIONS(2941), + [aux_sym_connect_timeout_token1] = ACTIONS(2941), + [aux_sym_control_master_token1] = ACTIONS(2941), + [aux_sym_control_path_token1] = ACTIONS(2941), + [aux_sym_control_persist_token1] = ACTIONS(2941), + [aux_sym_dynamic_forward_token1] = ACTIONS(2941), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2941), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2941), + [aux_sym_escape_char_token1] = ACTIONS(2941), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2941), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2941), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2941), + [aux_sym_forward_agent_token1] = ACTIONS(2941), + [aux_sym_forward_x11_token1] = ACTIONS(2943), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2941), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2941), + [aux_sym_gateway_ports_token1] = ACTIONS(2941), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2941), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2941), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2941), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2941), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2941), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2941), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2941), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2941), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2941), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2941), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2941), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2941), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2941), + [aux_sym_host_key_alias_token1] = ACTIONS(2941), + [aux_sym_hostname_token1] = ACTIONS(2941), + [aux_sym_identities_only_token1] = ACTIONS(2941), + [aux_sym_identity_agent_token1] = ACTIONS(2941), + [aux_sym_identity_file_token1] = ACTIONS(2941), + [aux_sym_ignore_unknown_token1] = ACTIONS(2941), + [aux_sym_include_token1] = ACTIONS(2941), + [aux_sym_ip_qos_token1] = ACTIONS(2941), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2941), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2941), + [aux_sym_kex_algorithms_token1] = ACTIONS(2941), + [aux_sym_known_hosts_command_token1] = ACTIONS(2941), + [aux_sym_local_command_token1] = ACTIONS(2941), + [aux_sym_local_forward_token1] = ACTIONS(2941), + [aux_sym_log_level_token1] = ACTIONS(2941), + [aux_sym_log_verbose_token1] = ACTIONS(2941), + [aux_sym_macs_token1] = ACTIONS(2941), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2941), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2941), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2941), + [aux_sym_password_authentication_token1] = ACTIONS(2941), + [aux_sym_permit_local_command_token1] = ACTIONS(2941), + [aux_sym_permit_remote_open_token1] = ACTIONS(2941), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2941), + [aux_sym_port_token1] = ACTIONS(2941), + [aux_sym_preferred_authentications_token1] = ACTIONS(2941), + [aux_sym_protocol_token1] = ACTIONS(2941), + [aux_sym_proxy_command_token1] = ACTIONS(2941), + [aux_sym_proxy_jump_token1] = ACTIONS(2941), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2941), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2941), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2941), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2941), + [aux_sym_rekey_limit_token1] = ACTIONS(2941), + [aux_sym_remote_command_token1] = ACTIONS(2941), + [aux_sym_remote_forward_token1] = ACTIONS(2941), + [aux_sym_request_tty_token1] = ACTIONS(2941), + [aux_sym_required_rsa_size_token1] = ACTIONS(2941), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2941), + [aux_sym_security_key_provider_token1] = ACTIONS(2941), + [aux_sym_send_env_token1] = ACTIONS(2941), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2941), + [aux_sym_server_alive_interval_token1] = ACTIONS(2941), + [aux_sym_session_type_token1] = ACTIONS(2941), + [aux_sym_set_env_token1] = ACTIONS(2941), + [aux_sym_stdin_null_token1] = ACTIONS(2941), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2941), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2941), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2941), + [aux_sym_syslog_facility_token1] = ACTIONS(2941), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2941), + [aux_sym_keep_alive_token1] = ACTIONS(2941), + [aux_sym_tag_token1] = ACTIONS(2941), + [aux_sym_tunnel_token1] = ACTIONS(2943), + [aux_sym_tunnel_device_token1] = ACTIONS(2941), + [aux_sym_update_host_keys_token1] = ACTIONS(2941), + [aux_sym_use_keychain_token1] = ACTIONS(2941), + [aux_sym_use_roaming_token1] = ACTIONS(2941), + [aux_sym_user_token1] = ACTIONS(2943), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2941), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2941), + [aux_sym_visual_host_key_token1] = ACTIONS(2941), + [aux_sym_xauth_location_token1] = ACTIONS(2941), }, [430] = { - [ts_builtin_sym_end] = ACTIONS(2938), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2940), - [anon_sym_DQUOTE] = ACTIONS(2942), - [aux_sym_match_token1] = ACTIONS(2938), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2938), - [aux_sym_address_family_token1] = ACTIONS(2938), - [aux_sym_batch_mode_token1] = ACTIONS(2938), - [aux_sym_bind_address_token1] = ACTIONS(2938), - [aux_sym_bind_interface_token1] = ACTIONS(2938), - [aux_sym_canonical_domains_token1] = ACTIONS(2938), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2938), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2938), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2938), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2938), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2938), - [aux_sym_certificate_file_token1] = ACTIONS(2938), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2938), - [aux_sym_channel_timeout_token1] = ACTIONS(2938), - [aux_sym_check_host_ip_token1] = ACTIONS(2938), - [aux_sym_ciphers_token1] = ACTIONS(2938), - [aux_sym_cipher_token1] = ACTIONS(2940), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2938), - [aux_sym_compression_token1] = ACTIONS(2938), - [aux_sym_connection_attempts_token1] = ACTIONS(2938), - [aux_sym_connect_timeout_token1] = ACTIONS(2938), - [aux_sym_control_master_token1] = ACTIONS(2938), - [aux_sym_control_path_token1] = ACTIONS(2938), - [aux_sym_control_persist_token1] = ACTIONS(2938), - [aux_sym_dynamic_forward_token1] = ACTIONS(2938), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2938), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2938), - [aux_sym_escape_char_token1] = ACTIONS(2938), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2938), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2938), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2938), - [aux_sym_forward_agent_token1] = ACTIONS(2938), - [aux_sym_forward_x11_token1] = ACTIONS(2940), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2938), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2938), - [aux_sym_gateway_ports_token1] = ACTIONS(2938), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2938), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2938), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2938), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2938), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2938), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2938), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2938), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2938), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2938), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2938), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2938), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2938), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2938), - [aux_sym_host_key_alias_token1] = ACTIONS(2938), - [aux_sym_hostname_token1] = ACTIONS(2938), - [aux_sym_identities_only_token1] = ACTIONS(2938), - [aux_sym_identity_agent_token1] = ACTIONS(2938), - [aux_sym_identity_file_token1] = ACTIONS(2938), - [aux_sym_ignore_unknown_token1] = ACTIONS(2938), - [aux_sym_include_token1] = ACTIONS(2938), - [aux_sym_ip_qos_token1] = ACTIONS(2938), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2938), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2938), - [aux_sym_kex_algorithms_token1] = ACTIONS(2938), - [aux_sym_known_hosts_command_token1] = ACTIONS(2938), - [aux_sym_local_command_token1] = ACTIONS(2938), - [aux_sym_local_forward_token1] = ACTIONS(2938), - [aux_sym_log_level_token1] = ACTIONS(2938), - [aux_sym_log_verbose_token1] = ACTIONS(2938), - [aux_sym_macs_token1] = ACTIONS(2938), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2938), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2938), - [aux_sym_password_authentication_token1] = ACTIONS(2938), - [aux_sym_permit_local_command_token1] = ACTIONS(2938), - [aux_sym_permit_remote_open_token1] = ACTIONS(2938), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2938), - [aux_sym_port_token1] = ACTIONS(2938), - [aux_sym_preferred_authentications_token1] = ACTIONS(2938), - [aux_sym_protocol_token1] = ACTIONS(2938), - [aux_sym_proxy_command_token1] = ACTIONS(2938), - [aux_sym_proxy_jump_token1] = ACTIONS(2938), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2938), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2938), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2938), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2938), - [aux_sym_rekey_limit_token1] = ACTIONS(2938), - [aux_sym_remote_command_token1] = ACTIONS(2938), - [aux_sym_remote_forward_token1] = ACTIONS(2938), - [aux_sym_request_tty_token1] = ACTIONS(2938), - [aux_sym_required_rsa_size_token1] = ACTIONS(2938), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2938), - [aux_sym_security_key_provider_token1] = ACTIONS(2938), - [aux_sym_send_env_token1] = ACTIONS(2938), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2938), - [aux_sym_server_alive_interval_token1] = ACTIONS(2938), - [aux_sym_session_type_token1] = ACTIONS(2938), - [aux_sym_set_env_token1] = ACTIONS(2938), - [aux_sym_stdin_null_token1] = ACTIONS(2938), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2938), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2938), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2938), - [aux_sym_syslog_facility_token1] = ACTIONS(2938), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2938), - [aux_sym_keep_alive_token1] = ACTIONS(2938), - [aux_sym_tag_token1] = ACTIONS(2938), - [aux_sym_tunnel_token1] = ACTIONS(2940), - [aux_sym_tunnel_device_token1] = ACTIONS(2938), - [aux_sym_update_host_keys_token1] = ACTIONS(2938), - [aux_sym_use_keychain_token1] = ACTIONS(2938), - [aux_sym_use_roaming_token1] = ACTIONS(2938), - [aux_sym_user_token1] = ACTIONS(2940), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2938), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2938), - [aux_sym_visual_host_key_token1] = ACTIONS(2938), - [aux_sym_xauth_location_token1] = ACTIONS(2938), + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2949), + [anon_sym_DQUOTE] = ACTIONS(2947), + [aux_sym_match_token1] = ACTIONS(2947), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2947), + [aux_sym_address_family_token1] = ACTIONS(2947), + [aux_sym_batch_mode_token1] = ACTIONS(2947), + [aux_sym_bind_address_token1] = ACTIONS(2947), + [aux_sym_bind_interface_token1] = ACTIONS(2947), + [aux_sym_canonical_domains_token1] = ACTIONS(2947), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2947), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2947), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2947), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2947), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2947), + [aux_sym_certificate_file_token1] = ACTIONS(2947), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2947), + [aux_sym_channel_timeout_token1] = ACTIONS(2947), + [aux_sym_check_host_ip_token1] = ACTIONS(2947), + [aux_sym_ciphers_token1] = ACTIONS(2947), + [aux_sym_cipher_token1] = ACTIONS(2949), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2947), + [aux_sym_compression_token1] = ACTIONS(2947), + [aux_sym_connection_attempts_token1] = ACTIONS(2947), + [aux_sym_connect_timeout_token1] = ACTIONS(2947), + [aux_sym_control_master_token1] = ACTIONS(2947), + [aux_sym_control_path_token1] = ACTIONS(2947), + [aux_sym_control_persist_token1] = ACTIONS(2947), + [aux_sym_dynamic_forward_token1] = ACTIONS(2947), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2947), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2947), + [aux_sym_escape_char_token1] = ACTIONS(2947), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2947), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2947), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2947), + [aux_sym_forward_agent_token1] = ACTIONS(2947), + [aux_sym_forward_x11_token1] = ACTIONS(2949), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2947), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2947), + [aux_sym_gateway_ports_token1] = ACTIONS(2947), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2947), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2947), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2947), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2947), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2947), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2947), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2947), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2947), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2947), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2947), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2947), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2947), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2947), + [aux_sym_host_key_alias_token1] = ACTIONS(2947), + [aux_sym_hostname_token1] = ACTIONS(2947), + [aux_sym_identities_only_token1] = ACTIONS(2947), + [aux_sym_identity_agent_token1] = ACTIONS(2947), + [aux_sym_identity_file_token1] = ACTIONS(2947), + [aux_sym_ignore_unknown_token1] = ACTIONS(2947), + [aux_sym_include_token1] = ACTIONS(2947), + [aux_sym_ip_qos_token1] = ACTIONS(2947), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2947), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2947), + [aux_sym_kex_algorithms_token1] = ACTIONS(2947), + [aux_sym_known_hosts_command_token1] = ACTIONS(2947), + [aux_sym_local_command_token1] = ACTIONS(2947), + [aux_sym_local_forward_token1] = ACTIONS(2947), + [aux_sym_log_level_token1] = ACTIONS(2947), + [aux_sym_log_verbose_token1] = ACTIONS(2947), + [aux_sym_macs_token1] = ACTIONS(2947), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2947), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2947), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2947), + [aux_sym_password_authentication_token1] = ACTIONS(2947), + [aux_sym_permit_local_command_token1] = ACTIONS(2947), + [aux_sym_permit_remote_open_token1] = ACTIONS(2947), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2947), + [aux_sym_port_token1] = ACTIONS(2947), + [aux_sym_preferred_authentications_token1] = ACTIONS(2947), + [aux_sym_protocol_token1] = ACTIONS(2947), + [aux_sym_proxy_command_token1] = ACTIONS(2947), + [aux_sym_proxy_jump_token1] = ACTIONS(2947), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2947), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2947), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2947), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2947), + [aux_sym_rekey_limit_token1] = ACTIONS(2947), + [aux_sym_remote_command_token1] = ACTIONS(2947), + [aux_sym_remote_forward_token1] = ACTIONS(2947), + [aux_sym_request_tty_token1] = ACTIONS(2947), + [aux_sym_required_rsa_size_token1] = ACTIONS(2947), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2947), + [aux_sym_security_key_provider_token1] = ACTIONS(2947), + [aux_sym_send_env_token1] = ACTIONS(2947), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2947), + [aux_sym_server_alive_interval_token1] = ACTIONS(2947), + [aux_sym_session_type_token1] = ACTIONS(2947), + [aux_sym_set_env_token1] = ACTIONS(2947), + [aux_sym_stdin_null_token1] = ACTIONS(2947), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2947), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2947), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2947), + [aux_sym_syslog_facility_token1] = ACTIONS(2947), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2947), + [aux_sym_keep_alive_token1] = ACTIONS(2947), + [aux_sym_tag_token1] = ACTIONS(2947), + [aux_sym_tunnel_token1] = ACTIONS(2949), + [aux_sym_tunnel_device_token1] = ACTIONS(2947), + [aux_sym_update_host_keys_token1] = ACTIONS(2947), + [aux_sym_use_keychain_token1] = ACTIONS(2947), + [aux_sym_use_roaming_token1] = ACTIONS(2947), + [aux_sym_user_token1] = ACTIONS(2949), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2947), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2947), + [aux_sym_visual_host_key_token1] = ACTIONS(2947), + [aux_sym_xauth_location_token1] = ACTIONS(2947), }, [431] = { - [ts_builtin_sym_end] = ACTIONS(2944), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2946), - [anon_sym_DQUOTE] = ACTIONS(2944), - [aux_sym_match_token1] = ACTIONS(2944), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2944), - [aux_sym_address_family_token1] = ACTIONS(2944), - [aux_sym_batch_mode_token1] = ACTIONS(2944), - [aux_sym_bind_address_token1] = ACTIONS(2944), - [aux_sym_bind_interface_token1] = ACTIONS(2944), - [aux_sym_canonical_domains_token1] = ACTIONS(2944), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2944), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2944), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2944), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2944), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2944), - [aux_sym_certificate_file_token1] = ACTIONS(2944), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2944), - [aux_sym_channel_timeout_token1] = ACTIONS(2944), - [aux_sym_check_host_ip_token1] = ACTIONS(2944), - [aux_sym_ciphers_token1] = ACTIONS(2944), - [aux_sym_cipher_token1] = ACTIONS(2946), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2944), - [aux_sym_compression_token1] = ACTIONS(2944), - [aux_sym_connection_attempts_token1] = ACTIONS(2944), - [aux_sym_connect_timeout_token1] = ACTIONS(2944), - [aux_sym_control_master_token1] = ACTIONS(2944), - [aux_sym_control_path_token1] = ACTIONS(2944), - [aux_sym_control_persist_token1] = ACTIONS(2944), - [aux_sym_dynamic_forward_token1] = ACTIONS(2944), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2944), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2944), - [aux_sym_escape_char_token1] = ACTIONS(2944), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2944), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2944), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2944), - [aux_sym_forward_agent_token1] = ACTIONS(2944), - [aux_sym_forward_x11_token1] = ACTIONS(2946), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2944), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2944), - [aux_sym_gateway_ports_token1] = ACTIONS(2944), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2944), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2944), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2944), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2944), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2944), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2944), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2944), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2944), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2944), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2944), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2944), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2944), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2944), - [aux_sym_host_key_alias_token1] = ACTIONS(2944), - [aux_sym_hostname_token1] = ACTIONS(2944), - [aux_sym_identities_only_token1] = ACTIONS(2944), - [aux_sym_identity_agent_token1] = ACTIONS(2944), - [aux_sym_identity_file_token1] = ACTIONS(2944), - [aux_sym_ignore_unknown_token1] = ACTIONS(2944), - [aux_sym_include_token1] = ACTIONS(2944), - [aux_sym_ip_qos_token1] = ACTIONS(2944), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2944), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2944), - [aux_sym_kex_algorithms_token1] = ACTIONS(2944), - [aux_sym_known_hosts_command_token1] = ACTIONS(2944), - [aux_sym_local_command_token1] = ACTIONS(2944), - [aux_sym_local_forward_token1] = ACTIONS(2944), - [aux_sym_log_level_token1] = ACTIONS(2944), - [aux_sym_log_verbose_token1] = ACTIONS(2944), - [aux_sym_macs_token1] = ACTIONS(2944), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2944), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2944), - [aux_sym_password_authentication_token1] = ACTIONS(2944), - [aux_sym_permit_local_command_token1] = ACTIONS(2944), - [aux_sym_permit_remote_open_token1] = ACTIONS(2944), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2944), - [aux_sym_port_token1] = ACTIONS(2944), - [aux_sym_preferred_authentications_token1] = ACTIONS(2944), - [aux_sym_protocol_token1] = ACTIONS(2944), - [aux_sym_proxy_command_token1] = ACTIONS(2944), - [aux_sym_proxy_jump_token1] = ACTIONS(2944), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2944), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2944), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2944), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2944), - [aux_sym_rekey_limit_token1] = ACTIONS(2944), - [aux_sym_remote_command_token1] = ACTIONS(2944), - [aux_sym_remote_forward_token1] = ACTIONS(2944), - [aux_sym_request_tty_token1] = ACTIONS(2944), - [aux_sym_required_rsa_size_token1] = ACTIONS(2944), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2944), - [aux_sym_security_key_provider_token1] = ACTIONS(2944), - [aux_sym_send_env_token1] = ACTIONS(2944), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2944), - [aux_sym_server_alive_interval_token1] = ACTIONS(2944), - [aux_sym_session_type_token1] = ACTIONS(2944), - [aux_sym_set_env_token1] = ACTIONS(2944), - [aux_sym_stdin_null_token1] = ACTIONS(2944), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2944), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2944), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2944), - [aux_sym_syslog_facility_token1] = ACTIONS(2944), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2944), - [aux_sym_keep_alive_token1] = ACTIONS(2944), - [aux_sym_tag_token1] = ACTIONS(2944), - [aux_sym_tunnel_token1] = ACTIONS(2946), - [aux_sym_tunnel_device_token1] = ACTIONS(2944), - [aux_sym_update_host_keys_token1] = ACTIONS(2944), - [aux_sym_use_keychain_token1] = ACTIONS(2944), - [aux_sym_use_roaming_token1] = ACTIONS(2944), - [aux_sym_user_token1] = ACTIONS(2946), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2944), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2944), - [aux_sym_visual_host_key_token1] = ACTIONS(2944), - [aux_sym_xauth_location_token1] = ACTIONS(2944), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2953), + [anon_sym_DQUOTE] = ACTIONS(2955), + [aux_sym_match_token1] = ACTIONS(2951), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2951), + [aux_sym_address_family_token1] = ACTIONS(2951), + [aux_sym_batch_mode_token1] = ACTIONS(2951), + [aux_sym_bind_address_token1] = ACTIONS(2951), + [aux_sym_bind_interface_token1] = ACTIONS(2951), + [aux_sym_canonical_domains_token1] = ACTIONS(2951), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2951), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2951), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2951), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2951), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2951), + [aux_sym_certificate_file_token1] = ACTIONS(2951), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2951), + [aux_sym_channel_timeout_token1] = ACTIONS(2951), + [aux_sym_check_host_ip_token1] = ACTIONS(2951), + [aux_sym_ciphers_token1] = ACTIONS(2951), + [aux_sym_cipher_token1] = ACTIONS(2953), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2951), + [aux_sym_compression_token1] = ACTIONS(2951), + [aux_sym_connection_attempts_token1] = ACTIONS(2951), + [aux_sym_connect_timeout_token1] = ACTIONS(2951), + [aux_sym_control_master_token1] = ACTIONS(2951), + [aux_sym_control_path_token1] = ACTIONS(2951), + [aux_sym_control_persist_token1] = ACTIONS(2951), + [aux_sym_dynamic_forward_token1] = ACTIONS(2951), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2951), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2951), + [aux_sym_escape_char_token1] = ACTIONS(2951), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2951), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2951), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2951), + [aux_sym_forward_agent_token1] = ACTIONS(2951), + [aux_sym_forward_x11_token1] = ACTIONS(2953), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2951), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2951), + [aux_sym_gateway_ports_token1] = ACTIONS(2951), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2951), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2951), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2951), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2951), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2951), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2951), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2951), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2951), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2951), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2951), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2951), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2951), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2951), + [aux_sym_host_key_alias_token1] = ACTIONS(2951), + [aux_sym_hostname_token1] = ACTIONS(2951), + [aux_sym_identities_only_token1] = ACTIONS(2951), + [aux_sym_identity_agent_token1] = ACTIONS(2951), + [aux_sym_identity_file_token1] = ACTIONS(2951), + [aux_sym_ignore_unknown_token1] = ACTIONS(2951), + [aux_sym_include_token1] = ACTIONS(2951), + [aux_sym_ip_qos_token1] = ACTIONS(2951), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2951), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2951), + [aux_sym_kex_algorithms_token1] = ACTIONS(2951), + [aux_sym_known_hosts_command_token1] = ACTIONS(2951), + [aux_sym_local_command_token1] = ACTIONS(2951), + [aux_sym_local_forward_token1] = ACTIONS(2951), + [aux_sym_log_level_token1] = ACTIONS(2951), + [aux_sym_log_verbose_token1] = ACTIONS(2951), + [aux_sym_macs_token1] = ACTIONS(2951), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2951), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2951), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2951), + [aux_sym_password_authentication_token1] = ACTIONS(2951), + [aux_sym_permit_local_command_token1] = ACTIONS(2951), + [aux_sym_permit_remote_open_token1] = ACTIONS(2951), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2951), + [aux_sym_port_token1] = ACTIONS(2951), + [aux_sym_preferred_authentications_token1] = ACTIONS(2951), + [aux_sym_protocol_token1] = ACTIONS(2951), + [aux_sym_proxy_command_token1] = ACTIONS(2951), + [aux_sym_proxy_jump_token1] = ACTIONS(2951), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2951), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2951), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2951), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2951), + [aux_sym_rekey_limit_token1] = ACTIONS(2951), + [aux_sym_remote_command_token1] = ACTIONS(2951), + [aux_sym_remote_forward_token1] = ACTIONS(2951), + [aux_sym_request_tty_token1] = ACTIONS(2951), + [aux_sym_required_rsa_size_token1] = ACTIONS(2951), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2951), + [aux_sym_security_key_provider_token1] = ACTIONS(2951), + [aux_sym_send_env_token1] = ACTIONS(2951), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2951), + [aux_sym_server_alive_interval_token1] = ACTIONS(2951), + [aux_sym_session_type_token1] = ACTIONS(2951), + [aux_sym_set_env_token1] = ACTIONS(2951), + [aux_sym_stdin_null_token1] = ACTIONS(2951), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2951), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2951), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2951), + [aux_sym_syslog_facility_token1] = ACTIONS(2951), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2951), + [aux_sym_keep_alive_token1] = ACTIONS(2951), + [aux_sym_tag_token1] = ACTIONS(2951), + [aux_sym_tunnel_token1] = ACTIONS(2953), + [aux_sym_tunnel_device_token1] = ACTIONS(2951), + [aux_sym_update_host_keys_token1] = ACTIONS(2951), + [aux_sym_use_keychain_token1] = ACTIONS(2951), + [aux_sym_use_roaming_token1] = ACTIONS(2951), + [aux_sym_user_token1] = ACTIONS(2953), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2951), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2951), + [aux_sym_visual_host_key_token1] = ACTIONS(2951), + [aux_sym_xauth_location_token1] = ACTIONS(2951), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2948), - [aux_sym_match_token1] = ACTIONS(2948), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2948), - [aux_sym_address_family_token1] = ACTIONS(2948), - [aux_sym_batch_mode_token1] = ACTIONS(2948), - [aux_sym_bind_address_token1] = ACTIONS(2948), - [aux_sym_bind_interface_token1] = ACTIONS(2948), - [aux_sym_canonical_domains_token1] = ACTIONS(2948), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2948), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2948), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2948), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2948), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2948), - [aux_sym_certificate_file_token1] = ACTIONS(2948), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2948), - [aux_sym_channel_timeout_token1] = ACTIONS(2948), - [aux_sym_check_host_ip_token1] = ACTIONS(2948), - [aux_sym_ciphers_token1] = ACTIONS(2948), - [aux_sym_cipher_token1] = ACTIONS(2950), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2948), - [aux_sym_compression_token1] = ACTIONS(2948), - [aux_sym_connection_attempts_token1] = ACTIONS(2948), - [aux_sym_connect_timeout_token1] = ACTIONS(2948), - [aux_sym_control_master_token1] = ACTIONS(2948), - [aux_sym_control_path_token1] = ACTIONS(2948), - [aux_sym_control_persist_token1] = ACTIONS(2948), - [aux_sym_dynamic_forward_token1] = ACTIONS(2948), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2948), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2948), - [aux_sym_escape_char_token1] = ACTIONS(2948), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2948), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2948), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2948), - [aux_sym_forward_agent_token1] = ACTIONS(2948), - [aux_sym_forward_x11_token1] = ACTIONS(2950), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2948), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2948), - [aux_sym_gateway_ports_token1] = ACTIONS(2948), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2948), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2948), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2948), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2948), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2948), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2948), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2948), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2948), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2948), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2948), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2948), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2948), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2948), - [aux_sym_host_key_alias_token1] = ACTIONS(2948), - [aux_sym_hostname_token1] = ACTIONS(2948), - [aux_sym_identities_only_token1] = ACTIONS(2948), - [aux_sym_identity_agent_token1] = ACTIONS(2948), - [aux_sym_identity_file_token1] = ACTIONS(2948), - [aux_sym_ignore_unknown_token1] = ACTIONS(2948), - [aux_sym_include_token1] = ACTIONS(2948), - [aux_sym_ip_qos_token1] = ACTIONS(2948), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2948), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2948), - [aux_sym_kex_algorithms_token1] = ACTIONS(2948), - [aux_sym_known_hosts_command_token1] = ACTIONS(2948), - [aux_sym_local_command_token1] = ACTIONS(2948), - [aux_sym_local_forward_token1] = ACTIONS(2948), - [aux_sym_log_level_token1] = ACTIONS(2948), - [aux_sym_log_verbose_token1] = ACTIONS(2948), - [aux_sym_macs_token1] = ACTIONS(2948), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2948), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2948), - [aux_sym_password_authentication_token1] = ACTIONS(2948), - [aux_sym_permit_local_command_token1] = ACTIONS(2948), - [aux_sym_permit_remote_open_token1] = ACTIONS(2948), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2948), - [aux_sym_port_token1] = ACTIONS(2948), - [aux_sym_preferred_authentications_token1] = ACTIONS(2948), - [aux_sym_protocol_token1] = ACTIONS(2948), - [aux_sym_proxy_command_token1] = ACTIONS(2948), - [aux_sym_proxy_jump_token1] = ACTIONS(2948), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2948), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2948), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2948), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2948), - [aux_sym_rekey_limit_token1] = ACTIONS(2948), - [aux_sym_remote_command_token1] = ACTIONS(2948), - [aux_sym_remote_forward_token1] = ACTIONS(2948), - [aux_sym_request_tty_token1] = ACTIONS(2948), - [aux_sym_required_rsa_size_token1] = ACTIONS(2948), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2948), - [aux_sym_security_key_provider_token1] = ACTIONS(2948), - [aux_sym_send_env_token1] = ACTIONS(2948), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2948), - [aux_sym_server_alive_interval_token1] = ACTIONS(2948), - [aux_sym_session_type_token1] = ACTIONS(2948), - [aux_sym_set_env_token1] = ACTIONS(2948), - [aux_sym_stdin_null_token1] = ACTIONS(2948), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2948), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2948), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2948), - [aux_sym_syslog_facility_token1] = ACTIONS(2948), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2948), - [aux_sym_keep_alive_token1] = ACTIONS(2948), - [aux_sym_tag_token1] = ACTIONS(2948), - [aux_sym_tunnel_token1] = ACTIONS(2950), - [aux_sym_tunnel_device_token1] = ACTIONS(2948), - [aux_sym_update_host_keys_token1] = ACTIONS(2948), - [aux_sym_use_keychain_token1] = ACTIONS(2948), - [aux_sym_use_roaming_token1] = ACTIONS(2948), - [aux_sym_user_token1] = ACTIONS(2950), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2948), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2948), - [aux_sym_visual_host_key_token1] = ACTIONS(2948), - [aux_sym_xauth_location_token1] = ACTIONS(2948), + [ts_builtin_sym_end] = ACTIONS(2957), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2959), + [anon_sym_DQUOTE] = ACTIONS(2957), + [aux_sym_match_token1] = ACTIONS(2957), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2957), + [aux_sym_address_family_token1] = ACTIONS(2957), + [aux_sym_batch_mode_token1] = ACTIONS(2957), + [aux_sym_bind_address_token1] = ACTIONS(2957), + [aux_sym_bind_interface_token1] = ACTIONS(2957), + [aux_sym_canonical_domains_token1] = ACTIONS(2957), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2957), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2957), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2957), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2957), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2957), + [aux_sym_certificate_file_token1] = ACTIONS(2957), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2957), + [aux_sym_channel_timeout_token1] = ACTIONS(2957), + [aux_sym_check_host_ip_token1] = ACTIONS(2957), + [aux_sym_ciphers_token1] = ACTIONS(2957), + [aux_sym_cipher_token1] = ACTIONS(2959), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2957), + [aux_sym_compression_token1] = ACTIONS(2957), + [aux_sym_connection_attempts_token1] = ACTIONS(2957), + [aux_sym_connect_timeout_token1] = ACTIONS(2957), + [aux_sym_control_master_token1] = ACTIONS(2957), + [aux_sym_control_path_token1] = ACTIONS(2957), + [aux_sym_control_persist_token1] = ACTIONS(2957), + [aux_sym_dynamic_forward_token1] = ACTIONS(2957), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2957), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2957), + [aux_sym_escape_char_token1] = ACTIONS(2957), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2957), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2957), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2957), + [aux_sym_forward_agent_token1] = ACTIONS(2957), + [aux_sym_forward_x11_token1] = ACTIONS(2959), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2957), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2957), + [aux_sym_gateway_ports_token1] = ACTIONS(2957), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2957), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2957), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2957), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2957), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2957), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2957), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2957), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2957), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2957), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2957), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2957), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2957), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2957), + [aux_sym_host_key_alias_token1] = ACTIONS(2957), + [aux_sym_hostname_token1] = ACTIONS(2957), + [aux_sym_identities_only_token1] = ACTIONS(2957), + [aux_sym_identity_agent_token1] = ACTIONS(2957), + [aux_sym_identity_file_token1] = ACTIONS(2957), + [aux_sym_ignore_unknown_token1] = ACTIONS(2957), + [aux_sym_include_token1] = ACTIONS(2957), + [aux_sym_ip_qos_token1] = ACTIONS(2957), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2957), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2957), + [aux_sym_kex_algorithms_token1] = ACTIONS(2957), + [aux_sym_known_hosts_command_token1] = ACTIONS(2957), + [aux_sym_local_command_token1] = ACTIONS(2957), + [aux_sym_local_forward_token1] = ACTIONS(2957), + [aux_sym_log_level_token1] = ACTIONS(2957), + [aux_sym_log_verbose_token1] = ACTIONS(2957), + [aux_sym_macs_token1] = ACTIONS(2957), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2957), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2957), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2957), + [aux_sym_password_authentication_token1] = ACTIONS(2957), + [aux_sym_permit_local_command_token1] = ACTIONS(2957), + [aux_sym_permit_remote_open_token1] = ACTIONS(2957), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2957), + [aux_sym_port_token1] = ACTIONS(2957), + [aux_sym_preferred_authentications_token1] = ACTIONS(2957), + [aux_sym_protocol_token1] = ACTIONS(2957), + [aux_sym_proxy_command_token1] = ACTIONS(2957), + [aux_sym_proxy_jump_token1] = ACTIONS(2957), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2957), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2957), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2957), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2957), + [aux_sym_rekey_limit_token1] = ACTIONS(2957), + [aux_sym_remote_command_token1] = ACTIONS(2957), + [aux_sym_remote_forward_token1] = ACTIONS(2957), + [aux_sym_request_tty_token1] = ACTIONS(2957), + [aux_sym_required_rsa_size_token1] = ACTIONS(2957), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2957), + [aux_sym_security_key_provider_token1] = ACTIONS(2957), + [aux_sym_send_env_token1] = ACTIONS(2957), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2957), + [aux_sym_server_alive_interval_token1] = ACTIONS(2957), + [aux_sym_session_type_token1] = ACTIONS(2957), + [aux_sym_set_env_token1] = ACTIONS(2957), + [aux_sym_stdin_null_token1] = ACTIONS(2957), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2957), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2957), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2957), + [aux_sym_syslog_facility_token1] = ACTIONS(2957), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2957), + [aux_sym_keep_alive_token1] = ACTIONS(2957), + [aux_sym_tag_token1] = ACTIONS(2957), + [aux_sym_tunnel_token1] = ACTIONS(2959), + [aux_sym_tunnel_device_token1] = ACTIONS(2957), + [aux_sym_update_host_keys_token1] = ACTIONS(2957), + [aux_sym_use_keychain_token1] = ACTIONS(2957), + [aux_sym_use_roaming_token1] = ACTIONS(2957), + [aux_sym_user_token1] = ACTIONS(2959), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2957), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2957), + [aux_sym_visual_host_key_token1] = ACTIONS(2957), + [aux_sym_xauth_location_token1] = ACTIONS(2957), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(2952), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2954), - [anon_sym_DQUOTE] = ACTIONS(2956), - [aux_sym_match_token1] = ACTIONS(2952), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2952), - [aux_sym_address_family_token1] = ACTIONS(2952), - [aux_sym_batch_mode_token1] = ACTIONS(2952), - [aux_sym_bind_address_token1] = ACTIONS(2952), - [aux_sym_bind_interface_token1] = ACTIONS(2952), - [aux_sym_canonical_domains_token1] = ACTIONS(2952), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2952), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2952), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2952), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2952), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2952), - [aux_sym_certificate_file_token1] = ACTIONS(2952), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2952), - [aux_sym_channel_timeout_token1] = ACTIONS(2952), - [aux_sym_check_host_ip_token1] = ACTIONS(2952), - [aux_sym_ciphers_token1] = ACTIONS(2952), - [aux_sym_cipher_token1] = ACTIONS(2954), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2952), - [aux_sym_compression_token1] = ACTIONS(2952), - [aux_sym_connection_attempts_token1] = ACTIONS(2952), - [aux_sym_connect_timeout_token1] = ACTIONS(2952), - [aux_sym_control_master_token1] = ACTIONS(2952), - [aux_sym_control_path_token1] = ACTIONS(2952), - [aux_sym_control_persist_token1] = ACTIONS(2952), - [aux_sym_dynamic_forward_token1] = ACTIONS(2952), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2952), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2952), - [aux_sym_escape_char_token1] = ACTIONS(2952), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2952), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2952), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2952), - [aux_sym_forward_agent_token1] = ACTIONS(2952), - [aux_sym_forward_x11_token1] = ACTIONS(2954), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2952), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2952), - [aux_sym_gateway_ports_token1] = ACTIONS(2952), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2952), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2952), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2952), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2952), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2952), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2952), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2952), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2952), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2952), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2952), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2952), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2952), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2952), - [aux_sym_host_key_alias_token1] = ACTIONS(2952), - [aux_sym_hostname_token1] = ACTIONS(2952), - [aux_sym_identities_only_token1] = ACTIONS(2952), - [aux_sym_identity_agent_token1] = ACTIONS(2952), - [aux_sym_identity_file_token1] = ACTIONS(2952), - [aux_sym_ignore_unknown_token1] = ACTIONS(2952), - [aux_sym_include_token1] = ACTIONS(2952), - [aux_sym_ip_qos_token1] = ACTIONS(2952), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2952), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2952), - [aux_sym_kex_algorithms_token1] = ACTIONS(2952), - [aux_sym_known_hosts_command_token1] = ACTIONS(2952), - [aux_sym_local_command_token1] = ACTIONS(2952), - [aux_sym_local_forward_token1] = ACTIONS(2952), - [aux_sym_log_level_token1] = ACTIONS(2952), - [aux_sym_log_verbose_token1] = ACTIONS(2952), - [aux_sym_macs_token1] = ACTIONS(2952), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2952), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2952), - [aux_sym_password_authentication_token1] = ACTIONS(2952), - [aux_sym_permit_local_command_token1] = ACTIONS(2952), - [aux_sym_permit_remote_open_token1] = ACTIONS(2952), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2952), - [aux_sym_port_token1] = ACTIONS(2952), - [aux_sym_preferred_authentications_token1] = ACTIONS(2952), - [aux_sym_protocol_token1] = ACTIONS(2952), - [aux_sym_proxy_command_token1] = ACTIONS(2952), - [aux_sym_proxy_jump_token1] = ACTIONS(2952), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2952), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2952), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2952), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2952), - [aux_sym_rekey_limit_token1] = ACTIONS(2952), - [aux_sym_remote_command_token1] = ACTIONS(2952), - [aux_sym_remote_forward_token1] = ACTIONS(2952), - [aux_sym_request_tty_token1] = ACTIONS(2952), - [aux_sym_required_rsa_size_token1] = ACTIONS(2952), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2952), - [aux_sym_security_key_provider_token1] = ACTIONS(2952), - [aux_sym_send_env_token1] = ACTIONS(2952), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2952), - [aux_sym_server_alive_interval_token1] = ACTIONS(2952), - [aux_sym_session_type_token1] = ACTIONS(2952), - [aux_sym_set_env_token1] = ACTIONS(2952), - [aux_sym_stdin_null_token1] = ACTIONS(2952), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2952), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2952), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2952), - [aux_sym_syslog_facility_token1] = ACTIONS(2952), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2952), - [aux_sym_keep_alive_token1] = ACTIONS(2952), - [aux_sym_tag_token1] = ACTIONS(2952), - [aux_sym_tunnel_token1] = ACTIONS(2954), - [aux_sym_tunnel_device_token1] = ACTIONS(2952), - [aux_sym_update_host_keys_token1] = ACTIONS(2952), - [aux_sym_use_keychain_token1] = ACTIONS(2952), - [aux_sym_use_roaming_token1] = ACTIONS(2952), - [aux_sym_user_token1] = ACTIONS(2954), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2952), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2952), - [aux_sym_visual_host_key_token1] = ACTIONS(2952), - [aux_sym_xauth_location_token1] = ACTIONS(2952), + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2963), + [anon_sym_DQUOTE] = ACTIONS(2961), + [aux_sym_match_token1] = ACTIONS(2961), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2961), + [aux_sym_address_family_token1] = ACTIONS(2961), + [aux_sym_batch_mode_token1] = ACTIONS(2961), + [aux_sym_bind_address_token1] = ACTIONS(2961), + [aux_sym_bind_interface_token1] = ACTIONS(2961), + [aux_sym_canonical_domains_token1] = ACTIONS(2961), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2961), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2961), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2961), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2961), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2961), + [aux_sym_certificate_file_token1] = ACTIONS(2961), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2961), + [aux_sym_channel_timeout_token1] = ACTIONS(2961), + [aux_sym_check_host_ip_token1] = ACTIONS(2961), + [aux_sym_ciphers_token1] = ACTIONS(2961), + [aux_sym_cipher_token1] = ACTIONS(2963), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2961), + [aux_sym_compression_token1] = ACTIONS(2961), + [aux_sym_connection_attempts_token1] = ACTIONS(2961), + [aux_sym_connect_timeout_token1] = ACTIONS(2961), + [aux_sym_control_master_token1] = ACTIONS(2961), + [aux_sym_control_path_token1] = ACTIONS(2961), + [aux_sym_control_persist_token1] = ACTIONS(2961), + [aux_sym_dynamic_forward_token1] = ACTIONS(2961), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2961), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2961), + [aux_sym_escape_char_token1] = ACTIONS(2961), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2961), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2961), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2961), + [aux_sym_forward_agent_token1] = ACTIONS(2961), + [aux_sym_forward_x11_token1] = ACTIONS(2963), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2961), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2961), + [aux_sym_gateway_ports_token1] = ACTIONS(2961), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2961), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2961), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2961), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2961), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2961), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2961), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2961), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2961), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2961), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2961), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2961), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2961), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2961), + [aux_sym_host_key_alias_token1] = ACTIONS(2961), + [aux_sym_hostname_token1] = ACTIONS(2961), + [aux_sym_identities_only_token1] = ACTIONS(2961), + [aux_sym_identity_agent_token1] = ACTIONS(2961), + [aux_sym_identity_file_token1] = ACTIONS(2961), + [aux_sym_ignore_unknown_token1] = ACTIONS(2961), + [aux_sym_include_token1] = ACTIONS(2961), + [aux_sym_ip_qos_token1] = ACTIONS(2961), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2961), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2961), + [aux_sym_kex_algorithms_token1] = ACTIONS(2961), + [aux_sym_known_hosts_command_token1] = ACTIONS(2961), + [aux_sym_local_command_token1] = ACTIONS(2961), + [aux_sym_local_forward_token1] = ACTIONS(2961), + [aux_sym_log_level_token1] = ACTIONS(2961), + [aux_sym_log_verbose_token1] = ACTIONS(2961), + [aux_sym_macs_token1] = ACTIONS(2961), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2961), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2961), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2961), + [aux_sym_password_authentication_token1] = ACTIONS(2961), + [aux_sym_permit_local_command_token1] = ACTIONS(2961), + [aux_sym_permit_remote_open_token1] = ACTIONS(2961), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2961), + [aux_sym_port_token1] = ACTIONS(2961), + [aux_sym_preferred_authentications_token1] = ACTIONS(2961), + [aux_sym_protocol_token1] = ACTIONS(2961), + [aux_sym_proxy_command_token1] = ACTIONS(2961), + [aux_sym_proxy_jump_token1] = ACTIONS(2961), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2961), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2961), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2961), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2961), + [aux_sym_rekey_limit_token1] = ACTIONS(2961), + [aux_sym_remote_command_token1] = ACTIONS(2961), + [aux_sym_remote_forward_token1] = ACTIONS(2961), + [aux_sym_request_tty_token1] = ACTIONS(2961), + [aux_sym_required_rsa_size_token1] = ACTIONS(2961), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2961), + [aux_sym_security_key_provider_token1] = ACTIONS(2961), + [aux_sym_send_env_token1] = ACTIONS(2961), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2961), + [aux_sym_server_alive_interval_token1] = ACTIONS(2961), + [aux_sym_session_type_token1] = ACTIONS(2961), + [aux_sym_set_env_token1] = ACTIONS(2961), + [aux_sym_stdin_null_token1] = ACTIONS(2961), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2961), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2961), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2961), + [aux_sym_syslog_facility_token1] = ACTIONS(2961), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2961), + [aux_sym_keep_alive_token1] = ACTIONS(2961), + [aux_sym_tag_token1] = ACTIONS(2961), + [aux_sym_tunnel_token1] = ACTIONS(2963), + [aux_sym_tunnel_device_token1] = ACTIONS(2961), + [aux_sym_update_host_keys_token1] = ACTIONS(2961), + [aux_sym_use_keychain_token1] = ACTIONS(2961), + [aux_sym_use_roaming_token1] = ACTIONS(2961), + [aux_sym_user_token1] = ACTIONS(2963), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2961), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2961), + [aux_sym_visual_host_key_token1] = ACTIONS(2961), + [aux_sym_xauth_location_token1] = ACTIONS(2961), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(2958), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2958), - [aux_sym_match_token1] = ACTIONS(2958), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2958), - [aux_sym_address_family_token1] = ACTIONS(2958), - [aux_sym_batch_mode_token1] = ACTIONS(2958), - [aux_sym_bind_address_token1] = ACTIONS(2958), - [aux_sym_bind_interface_token1] = ACTIONS(2958), - [aux_sym_canonical_domains_token1] = ACTIONS(2958), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2958), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2958), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2958), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2958), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2958), - [aux_sym_certificate_file_token1] = ACTIONS(2958), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2958), - [aux_sym_channel_timeout_token1] = ACTIONS(2958), - [aux_sym_check_host_ip_token1] = ACTIONS(2958), - [aux_sym_ciphers_token1] = ACTIONS(2958), - [aux_sym_cipher_token1] = ACTIONS(2960), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2958), - [aux_sym_compression_token1] = ACTIONS(2958), - [aux_sym_connection_attempts_token1] = ACTIONS(2958), - [aux_sym_connect_timeout_token1] = ACTIONS(2958), - [aux_sym_control_master_token1] = ACTIONS(2958), - [aux_sym_control_path_token1] = ACTIONS(2958), - [aux_sym_control_persist_token1] = ACTIONS(2958), - [aux_sym_dynamic_forward_token1] = ACTIONS(2958), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2958), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2958), - [aux_sym_escape_char_token1] = ACTIONS(2958), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2958), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2958), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2958), - [aux_sym_forward_agent_token1] = ACTIONS(2958), - [aux_sym_forward_x11_token1] = ACTIONS(2960), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2958), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2958), - [aux_sym_gateway_ports_token1] = ACTIONS(2958), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2958), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2958), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2958), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2958), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2958), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2958), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2958), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2958), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2958), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2958), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2958), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2958), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2958), - [aux_sym_host_key_alias_token1] = ACTIONS(2958), - [aux_sym_hostname_token1] = ACTIONS(2958), - [aux_sym_identities_only_token1] = ACTIONS(2958), - [aux_sym_identity_agent_token1] = ACTIONS(2958), - [aux_sym_identity_file_token1] = ACTIONS(2958), - [aux_sym_ignore_unknown_token1] = ACTIONS(2958), - [aux_sym_include_token1] = ACTIONS(2958), - [aux_sym_ip_qos_token1] = ACTIONS(2958), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2958), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2958), - [aux_sym_kex_algorithms_token1] = ACTIONS(2958), - [aux_sym_known_hosts_command_token1] = ACTIONS(2958), - [aux_sym_local_command_token1] = ACTIONS(2958), - [aux_sym_local_forward_token1] = ACTIONS(2958), - [aux_sym_log_level_token1] = ACTIONS(2958), - [aux_sym_log_verbose_token1] = ACTIONS(2958), - [aux_sym_macs_token1] = ACTIONS(2958), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2958), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2958), - [aux_sym_password_authentication_token1] = ACTIONS(2958), - [aux_sym_permit_local_command_token1] = ACTIONS(2958), - [aux_sym_permit_remote_open_token1] = ACTIONS(2958), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2958), - [aux_sym_port_token1] = ACTIONS(2958), - [aux_sym_preferred_authentications_token1] = ACTIONS(2958), - [aux_sym_protocol_token1] = ACTIONS(2958), - [aux_sym_proxy_command_token1] = ACTIONS(2958), - [aux_sym_proxy_jump_token1] = ACTIONS(2958), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2958), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2958), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2958), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2958), - [aux_sym_rekey_limit_token1] = ACTIONS(2958), - [aux_sym_remote_command_token1] = ACTIONS(2958), - [aux_sym_remote_forward_token1] = ACTIONS(2958), - [aux_sym_request_tty_token1] = ACTIONS(2958), - [aux_sym_required_rsa_size_token1] = ACTIONS(2958), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2958), - [aux_sym_security_key_provider_token1] = ACTIONS(2958), - [aux_sym_send_env_token1] = ACTIONS(2958), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2958), - [aux_sym_server_alive_interval_token1] = ACTIONS(2958), - [aux_sym_session_type_token1] = ACTIONS(2958), - [aux_sym_set_env_token1] = ACTIONS(2958), - [aux_sym_stdin_null_token1] = ACTIONS(2958), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2958), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2958), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2958), - [aux_sym_syslog_facility_token1] = ACTIONS(2958), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2958), - [aux_sym_keep_alive_token1] = ACTIONS(2958), - [aux_sym_tag_token1] = ACTIONS(2958), - [aux_sym_tunnel_token1] = ACTIONS(2960), - [aux_sym_tunnel_device_token1] = ACTIONS(2958), - [aux_sym_update_host_keys_token1] = ACTIONS(2958), - [aux_sym_use_keychain_token1] = ACTIONS(2958), - [aux_sym_use_roaming_token1] = ACTIONS(2958), - [aux_sym_user_token1] = ACTIONS(2960), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2958), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2958), - [aux_sym_visual_host_key_token1] = ACTIONS(2958), - [aux_sym_xauth_location_token1] = ACTIONS(2958), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2967), + [anon_sym_DQUOTE] = ACTIONS(2965), + [aux_sym_match_token1] = ACTIONS(2965), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2965), + [aux_sym_address_family_token1] = ACTIONS(2965), + [aux_sym_batch_mode_token1] = ACTIONS(2965), + [aux_sym_bind_address_token1] = ACTIONS(2965), + [aux_sym_bind_interface_token1] = ACTIONS(2965), + [aux_sym_canonical_domains_token1] = ACTIONS(2965), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2965), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2965), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2965), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2965), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2965), + [aux_sym_certificate_file_token1] = ACTIONS(2965), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2965), + [aux_sym_channel_timeout_token1] = ACTIONS(2965), + [aux_sym_check_host_ip_token1] = ACTIONS(2965), + [aux_sym_ciphers_token1] = ACTIONS(2965), + [aux_sym_cipher_token1] = ACTIONS(2967), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2965), + [aux_sym_compression_token1] = ACTIONS(2965), + [aux_sym_connection_attempts_token1] = ACTIONS(2965), + [aux_sym_connect_timeout_token1] = ACTIONS(2965), + [aux_sym_control_master_token1] = ACTIONS(2965), + [aux_sym_control_path_token1] = ACTIONS(2965), + [aux_sym_control_persist_token1] = ACTIONS(2965), + [aux_sym_dynamic_forward_token1] = ACTIONS(2965), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2965), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2965), + [aux_sym_escape_char_token1] = ACTIONS(2965), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2965), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2965), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2965), + [aux_sym_forward_agent_token1] = ACTIONS(2965), + [aux_sym_forward_x11_token1] = ACTIONS(2967), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2965), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2965), + [aux_sym_gateway_ports_token1] = ACTIONS(2965), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2965), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2965), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2965), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2965), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2965), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2965), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2965), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2965), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2965), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2965), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2965), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2965), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2965), + [aux_sym_host_key_alias_token1] = ACTIONS(2965), + [aux_sym_hostname_token1] = ACTIONS(2965), + [aux_sym_identities_only_token1] = ACTIONS(2965), + [aux_sym_identity_agent_token1] = ACTIONS(2965), + [aux_sym_identity_file_token1] = ACTIONS(2965), + [aux_sym_ignore_unknown_token1] = ACTIONS(2965), + [aux_sym_include_token1] = ACTIONS(2965), + [aux_sym_ip_qos_token1] = ACTIONS(2965), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2965), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2965), + [aux_sym_kex_algorithms_token1] = ACTIONS(2965), + [aux_sym_known_hosts_command_token1] = ACTIONS(2965), + [aux_sym_local_command_token1] = ACTIONS(2965), + [aux_sym_local_forward_token1] = ACTIONS(2965), + [aux_sym_log_level_token1] = ACTIONS(2965), + [aux_sym_log_verbose_token1] = ACTIONS(2965), + [aux_sym_macs_token1] = ACTIONS(2965), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2965), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2965), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2965), + [aux_sym_password_authentication_token1] = ACTIONS(2965), + [aux_sym_permit_local_command_token1] = ACTIONS(2965), + [aux_sym_permit_remote_open_token1] = ACTIONS(2965), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2965), + [aux_sym_port_token1] = ACTIONS(2965), + [aux_sym_preferred_authentications_token1] = ACTIONS(2965), + [aux_sym_protocol_token1] = ACTIONS(2965), + [aux_sym_proxy_command_token1] = ACTIONS(2965), + [aux_sym_proxy_jump_token1] = ACTIONS(2965), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2965), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2965), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2965), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2965), + [aux_sym_rekey_limit_token1] = ACTIONS(2965), + [aux_sym_remote_command_token1] = ACTIONS(2965), + [aux_sym_remote_forward_token1] = ACTIONS(2965), + [aux_sym_request_tty_token1] = ACTIONS(2965), + [aux_sym_required_rsa_size_token1] = ACTIONS(2965), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2965), + [aux_sym_security_key_provider_token1] = ACTIONS(2965), + [aux_sym_send_env_token1] = ACTIONS(2965), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2965), + [aux_sym_server_alive_interval_token1] = ACTIONS(2965), + [aux_sym_session_type_token1] = ACTIONS(2965), + [aux_sym_set_env_token1] = ACTIONS(2965), + [aux_sym_stdin_null_token1] = ACTIONS(2965), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2965), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2965), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2965), + [aux_sym_syslog_facility_token1] = ACTIONS(2965), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2965), + [aux_sym_keep_alive_token1] = ACTIONS(2965), + [aux_sym_tag_token1] = ACTIONS(2965), + [aux_sym_tunnel_token1] = ACTIONS(2967), + [aux_sym_tunnel_device_token1] = ACTIONS(2965), + [aux_sym_update_host_keys_token1] = ACTIONS(2965), + [aux_sym_use_keychain_token1] = ACTIONS(2965), + [aux_sym_use_roaming_token1] = ACTIONS(2965), + [aux_sym_user_token1] = ACTIONS(2967), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2965), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2965), + [aux_sym_visual_host_key_token1] = ACTIONS(2965), + [aux_sym_xauth_location_token1] = ACTIONS(2965), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(2962), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2966), - [aux_sym_match_token1] = ACTIONS(2962), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2962), - [aux_sym_address_family_token1] = ACTIONS(2962), - [aux_sym_batch_mode_token1] = ACTIONS(2962), - [aux_sym_bind_address_token1] = ACTIONS(2962), - [aux_sym_bind_interface_token1] = ACTIONS(2962), - [aux_sym_canonical_domains_token1] = ACTIONS(2962), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2962), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2962), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2962), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2962), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2962), - [aux_sym_certificate_file_token1] = ACTIONS(2962), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2962), - [aux_sym_channel_timeout_token1] = ACTIONS(2962), - [aux_sym_check_host_ip_token1] = ACTIONS(2962), - [aux_sym_ciphers_token1] = ACTIONS(2962), - [aux_sym_cipher_token1] = ACTIONS(2964), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2962), - [aux_sym_compression_token1] = ACTIONS(2962), - [aux_sym_connection_attempts_token1] = ACTIONS(2962), - [aux_sym_connect_timeout_token1] = ACTIONS(2962), - [aux_sym_control_master_token1] = ACTIONS(2962), - [aux_sym_control_path_token1] = ACTIONS(2962), - [aux_sym_control_persist_token1] = ACTIONS(2962), - [aux_sym_dynamic_forward_token1] = ACTIONS(2962), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2962), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2962), - [aux_sym_escape_char_token1] = ACTIONS(2962), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2962), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2962), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2962), - [aux_sym_forward_agent_token1] = ACTIONS(2962), - [aux_sym_forward_x11_token1] = ACTIONS(2964), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2962), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2962), - [aux_sym_gateway_ports_token1] = ACTIONS(2962), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2962), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2962), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2962), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2962), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2962), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2962), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2962), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2962), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2962), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2962), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2962), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2962), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2962), - [aux_sym_host_key_alias_token1] = ACTIONS(2962), - [aux_sym_hostname_token1] = ACTIONS(2962), - [aux_sym_identities_only_token1] = ACTIONS(2962), - [aux_sym_identity_agent_token1] = ACTIONS(2962), - [aux_sym_identity_file_token1] = ACTIONS(2962), - [aux_sym_ignore_unknown_token1] = ACTIONS(2962), - [aux_sym_include_token1] = ACTIONS(2962), - [aux_sym_ip_qos_token1] = ACTIONS(2962), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2962), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2962), - [aux_sym_kex_algorithms_token1] = ACTIONS(2962), - [aux_sym_known_hosts_command_token1] = ACTIONS(2962), - [aux_sym_local_command_token1] = ACTIONS(2962), - [aux_sym_local_forward_token1] = ACTIONS(2962), - [aux_sym_log_level_token1] = ACTIONS(2962), - [aux_sym_log_verbose_token1] = ACTIONS(2962), - [aux_sym_macs_token1] = ACTIONS(2962), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2962), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2962), - [aux_sym_password_authentication_token1] = ACTIONS(2962), - [aux_sym_permit_local_command_token1] = ACTIONS(2962), - [aux_sym_permit_remote_open_token1] = ACTIONS(2962), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2962), - [aux_sym_port_token1] = ACTIONS(2962), - [aux_sym_preferred_authentications_token1] = ACTIONS(2962), - [aux_sym_protocol_token1] = ACTIONS(2962), - [aux_sym_proxy_command_token1] = ACTIONS(2962), - [aux_sym_proxy_jump_token1] = ACTIONS(2962), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2962), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2962), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2962), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2962), - [aux_sym_rekey_limit_token1] = ACTIONS(2962), - [aux_sym_remote_command_token1] = ACTIONS(2962), - [aux_sym_remote_forward_token1] = ACTIONS(2962), - [aux_sym_request_tty_token1] = ACTIONS(2962), - [aux_sym_required_rsa_size_token1] = ACTIONS(2962), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2962), - [aux_sym_security_key_provider_token1] = ACTIONS(2962), - [aux_sym_send_env_token1] = ACTIONS(2962), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2962), - [aux_sym_server_alive_interval_token1] = ACTIONS(2962), - [aux_sym_session_type_token1] = ACTIONS(2962), - [aux_sym_set_env_token1] = ACTIONS(2962), - [aux_sym_stdin_null_token1] = ACTIONS(2962), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2962), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2962), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2962), - [aux_sym_syslog_facility_token1] = ACTIONS(2962), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2962), - [aux_sym_keep_alive_token1] = ACTIONS(2962), - [aux_sym_tag_token1] = ACTIONS(2962), - [aux_sym_tunnel_token1] = ACTIONS(2964), - [aux_sym_tunnel_device_token1] = ACTIONS(2962), - [aux_sym_update_host_keys_token1] = ACTIONS(2962), - [aux_sym_use_keychain_token1] = ACTIONS(2962), - [aux_sym_use_roaming_token1] = ACTIONS(2962), - [aux_sym_user_token1] = ACTIONS(2964), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2962), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2962), - [aux_sym_visual_host_key_token1] = ACTIONS(2962), - [aux_sym_xauth_location_token1] = ACTIONS(2962), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2971), + [anon_sym_DQUOTE] = ACTIONS(2973), + [aux_sym_match_token1] = ACTIONS(2969), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2969), + [aux_sym_address_family_token1] = ACTIONS(2969), + [aux_sym_batch_mode_token1] = ACTIONS(2969), + [aux_sym_bind_address_token1] = ACTIONS(2969), + [aux_sym_bind_interface_token1] = ACTIONS(2969), + [aux_sym_canonical_domains_token1] = ACTIONS(2969), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2969), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2969), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2969), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2969), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2969), + [aux_sym_certificate_file_token1] = ACTIONS(2969), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2969), + [aux_sym_channel_timeout_token1] = ACTIONS(2969), + [aux_sym_check_host_ip_token1] = ACTIONS(2969), + [aux_sym_ciphers_token1] = ACTIONS(2969), + [aux_sym_cipher_token1] = ACTIONS(2971), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2969), + [aux_sym_compression_token1] = ACTIONS(2969), + [aux_sym_connection_attempts_token1] = ACTIONS(2969), + [aux_sym_connect_timeout_token1] = ACTIONS(2969), + [aux_sym_control_master_token1] = ACTIONS(2969), + [aux_sym_control_path_token1] = ACTIONS(2969), + [aux_sym_control_persist_token1] = ACTIONS(2969), + [aux_sym_dynamic_forward_token1] = ACTIONS(2969), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2969), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2969), + [aux_sym_escape_char_token1] = ACTIONS(2969), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2969), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2969), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2969), + [aux_sym_forward_agent_token1] = ACTIONS(2969), + [aux_sym_forward_x11_token1] = ACTIONS(2971), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2969), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2969), + [aux_sym_gateway_ports_token1] = ACTIONS(2969), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2969), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2969), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2969), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2969), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2969), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2969), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2969), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2969), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2969), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2969), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2969), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2969), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2969), + [aux_sym_host_key_alias_token1] = ACTIONS(2969), + [aux_sym_hostname_token1] = ACTIONS(2969), + [aux_sym_identities_only_token1] = ACTIONS(2969), + [aux_sym_identity_agent_token1] = ACTIONS(2969), + [aux_sym_identity_file_token1] = ACTIONS(2969), + [aux_sym_ignore_unknown_token1] = ACTIONS(2969), + [aux_sym_include_token1] = ACTIONS(2969), + [aux_sym_ip_qos_token1] = ACTIONS(2969), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2969), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2969), + [aux_sym_kex_algorithms_token1] = ACTIONS(2969), + [aux_sym_known_hosts_command_token1] = ACTIONS(2969), + [aux_sym_local_command_token1] = ACTIONS(2969), + [aux_sym_local_forward_token1] = ACTIONS(2969), + [aux_sym_log_level_token1] = ACTIONS(2969), + [aux_sym_log_verbose_token1] = ACTIONS(2969), + [aux_sym_macs_token1] = ACTIONS(2969), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2969), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2969), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2969), + [aux_sym_password_authentication_token1] = ACTIONS(2969), + [aux_sym_permit_local_command_token1] = ACTIONS(2969), + [aux_sym_permit_remote_open_token1] = ACTIONS(2969), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2969), + [aux_sym_port_token1] = ACTIONS(2969), + [aux_sym_preferred_authentications_token1] = ACTIONS(2969), + [aux_sym_protocol_token1] = ACTIONS(2969), + [aux_sym_proxy_command_token1] = ACTIONS(2969), + [aux_sym_proxy_jump_token1] = ACTIONS(2969), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2969), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2969), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2969), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2969), + [aux_sym_rekey_limit_token1] = ACTIONS(2969), + [aux_sym_remote_command_token1] = ACTIONS(2969), + [aux_sym_remote_forward_token1] = ACTIONS(2969), + [aux_sym_request_tty_token1] = ACTIONS(2969), + [aux_sym_required_rsa_size_token1] = ACTIONS(2969), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2969), + [aux_sym_security_key_provider_token1] = ACTIONS(2969), + [aux_sym_send_env_token1] = ACTIONS(2969), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2969), + [aux_sym_server_alive_interval_token1] = ACTIONS(2969), + [aux_sym_session_type_token1] = ACTIONS(2969), + [aux_sym_set_env_token1] = ACTIONS(2969), + [aux_sym_stdin_null_token1] = ACTIONS(2969), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2969), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2969), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2969), + [aux_sym_syslog_facility_token1] = ACTIONS(2969), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2969), + [aux_sym_keep_alive_token1] = ACTIONS(2969), + [aux_sym_tag_token1] = ACTIONS(2969), + [aux_sym_tunnel_token1] = ACTIONS(2971), + [aux_sym_tunnel_device_token1] = ACTIONS(2969), + [aux_sym_update_host_keys_token1] = ACTIONS(2969), + [aux_sym_use_keychain_token1] = ACTIONS(2969), + [aux_sym_use_roaming_token1] = ACTIONS(2969), + [aux_sym_user_token1] = ACTIONS(2971), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2969), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2969), + [aux_sym_visual_host_key_token1] = ACTIONS(2969), + [aux_sym_xauth_location_token1] = ACTIONS(2969), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2970), - [anon_sym_DQUOTE] = ACTIONS(2968), - [aux_sym_match_token1] = ACTIONS(2968), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2968), - [aux_sym_address_family_token1] = ACTIONS(2968), - [aux_sym_batch_mode_token1] = ACTIONS(2968), - [aux_sym_bind_address_token1] = ACTIONS(2968), - [aux_sym_bind_interface_token1] = ACTIONS(2968), - [aux_sym_canonical_domains_token1] = ACTIONS(2968), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2968), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2968), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2968), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2968), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2968), - [aux_sym_certificate_file_token1] = ACTIONS(2968), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2968), - [aux_sym_channel_timeout_token1] = ACTIONS(2968), - [aux_sym_check_host_ip_token1] = ACTIONS(2968), - [aux_sym_ciphers_token1] = ACTIONS(2968), - [aux_sym_cipher_token1] = ACTIONS(2970), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2968), - [aux_sym_compression_token1] = ACTIONS(2968), - [aux_sym_connection_attempts_token1] = ACTIONS(2968), - [aux_sym_connect_timeout_token1] = ACTIONS(2968), - [aux_sym_control_master_token1] = ACTIONS(2968), - [aux_sym_control_path_token1] = ACTIONS(2968), - [aux_sym_control_persist_token1] = ACTIONS(2968), - [aux_sym_dynamic_forward_token1] = ACTIONS(2968), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2968), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2968), - [aux_sym_escape_char_token1] = ACTIONS(2968), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2968), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2968), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2968), - [aux_sym_forward_agent_token1] = ACTIONS(2968), - [aux_sym_forward_x11_token1] = ACTIONS(2970), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2968), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2968), - [aux_sym_gateway_ports_token1] = ACTIONS(2968), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2968), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2968), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2968), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2968), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2968), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2968), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2968), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2968), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2968), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2968), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2968), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2968), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2968), - [aux_sym_host_key_alias_token1] = ACTIONS(2968), - [aux_sym_hostname_token1] = ACTIONS(2968), - [aux_sym_identities_only_token1] = ACTIONS(2968), - [aux_sym_identity_agent_token1] = ACTIONS(2968), - [aux_sym_identity_file_token1] = ACTIONS(2968), - [aux_sym_ignore_unknown_token1] = ACTIONS(2968), - [aux_sym_include_token1] = ACTIONS(2968), - [aux_sym_ip_qos_token1] = ACTIONS(2968), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2968), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2968), - [aux_sym_kex_algorithms_token1] = ACTIONS(2968), - [aux_sym_known_hosts_command_token1] = ACTIONS(2968), - [aux_sym_local_command_token1] = ACTIONS(2968), - [aux_sym_local_forward_token1] = ACTIONS(2968), - [aux_sym_log_level_token1] = ACTIONS(2968), - [aux_sym_log_verbose_token1] = ACTIONS(2968), - [aux_sym_macs_token1] = ACTIONS(2968), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2968), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2968), - [aux_sym_password_authentication_token1] = ACTIONS(2968), - [aux_sym_permit_local_command_token1] = ACTIONS(2968), - [aux_sym_permit_remote_open_token1] = ACTIONS(2968), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2968), - [aux_sym_port_token1] = ACTIONS(2968), - [aux_sym_preferred_authentications_token1] = ACTIONS(2968), - [aux_sym_protocol_token1] = ACTIONS(2968), - [aux_sym_proxy_command_token1] = ACTIONS(2968), - [aux_sym_proxy_jump_token1] = ACTIONS(2968), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2968), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2968), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2968), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2968), - [aux_sym_rekey_limit_token1] = ACTIONS(2968), - [aux_sym_remote_command_token1] = ACTIONS(2968), - [aux_sym_remote_forward_token1] = ACTIONS(2968), - [aux_sym_request_tty_token1] = ACTIONS(2968), - [aux_sym_required_rsa_size_token1] = ACTIONS(2968), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2968), - [aux_sym_security_key_provider_token1] = ACTIONS(2968), - [aux_sym_send_env_token1] = ACTIONS(2968), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2968), - [aux_sym_server_alive_interval_token1] = ACTIONS(2968), - [aux_sym_session_type_token1] = ACTIONS(2968), - [aux_sym_set_env_token1] = ACTIONS(2968), - [aux_sym_stdin_null_token1] = ACTIONS(2968), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2968), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2968), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2968), - [aux_sym_syslog_facility_token1] = ACTIONS(2968), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2968), - [aux_sym_keep_alive_token1] = ACTIONS(2968), - [aux_sym_tag_token1] = ACTIONS(2968), - [aux_sym_tunnel_token1] = ACTIONS(2970), - [aux_sym_tunnel_device_token1] = ACTIONS(2968), - [aux_sym_update_host_keys_token1] = ACTIONS(2968), - [aux_sym_use_keychain_token1] = ACTIONS(2968), - [aux_sym_use_roaming_token1] = ACTIONS(2968), - [aux_sym_user_token1] = ACTIONS(2970), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2968), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2968), - [aux_sym_visual_host_key_token1] = ACTIONS(2968), - [aux_sym_xauth_location_token1] = ACTIONS(2968), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2977), + [anon_sym_DQUOTE] = ACTIONS(2975), + [aux_sym_match_token1] = ACTIONS(2975), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2975), + [aux_sym_address_family_token1] = ACTIONS(2975), + [aux_sym_batch_mode_token1] = ACTIONS(2975), + [aux_sym_bind_address_token1] = ACTIONS(2975), + [aux_sym_bind_interface_token1] = ACTIONS(2975), + [aux_sym_canonical_domains_token1] = ACTIONS(2975), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2975), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2975), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2975), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2975), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2975), + [aux_sym_certificate_file_token1] = ACTIONS(2975), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2975), + [aux_sym_channel_timeout_token1] = ACTIONS(2975), + [aux_sym_check_host_ip_token1] = ACTIONS(2975), + [aux_sym_ciphers_token1] = ACTIONS(2975), + [aux_sym_cipher_token1] = ACTIONS(2977), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2975), + [aux_sym_compression_token1] = ACTIONS(2975), + [aux_sym_connection_attempts_token1] = ACTIONS(2975), + [aux_sym_connect_timeout_token1] = ACTIONS(2975), + [aux_sym_control_master_token1] = ACTIONS(2975), + [aux_sym_control_path_token1] = ACTIONS(2975), + [aux_sym_control_persist_token1] = ACTIONS(2975), + [aux_sym_dynamic_forward_token1] = ACTIONS(2975), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2975), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2975), + [aux_sym_escape_char_token1] = ACTIONS(2975), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2975), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2975), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2975), + [aux_sym_forward_agent_token1] = ACTIONS(2975), + [aux_sym_forward_x11_token1] = ACTIONS(2977), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2975), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2975), + [aux_sym_gateway_ports_token1] = ACTIONS(2975), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2975), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2975), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2975), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2975), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2975), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2975), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2975), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2975), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2975), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2975), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2975), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2975), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2975), + [aux_sym_host_key_alias_token1] = ACTIONS(2975), + [aux_sym_hostname_token1] = ACTIONS(2975), + [aux_sym_identities_only_token1] = ACTIONS(2975), + [aux_sym_identity_agent_token1] = ACTIONS(2975), + [aux_sym_identity_file_token1] = ACTIONS(2975), + [aux_sym_ignore_unknown_token1] = ACTIONS(2975), + [aux_sym_include_token1] = ACTIONS(2975), + [aux_sym_ip_qos_token1] = ACTIONS(2975), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2975), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2975), + [aux_sym_kex_algorithms_token1] = ACTIONS(2975), + [aux_sym_known_hosts_command_token1] = ACTIONS(2975), + [aux_sym_local_command_token1] = ACTIONS(2975), + [aux_sym_local_forward_token1] = ACTIONS(2975), + [aux_sym_log_level_token1] = ACTIONS(2975), + [aux_sym_log_verbose_token1] = ACTIONS(2975), + [aux_sym_macs_token1] = ACTIONS(2975), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2975), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2975), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2975), + [aux_sym_password_authentication_token1] = ACTIONS(2975), + [aux_sym_permit_local_command_token1] = ACTIONS(2975), + [aux_sym_permit_remote_open_token1] = ACTIONS(2975), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2975), + [aux_sym_port_token1] = ACTIONS(2975), + [aux_sym_preferred_authentications_token1] = ACTIONS(2975), + [aux_sym_protocol_token1] = ACTIONS(2975), + [aux_sym_proxy_command_token1] = ACTIONS(2975), + [aux_sym_proxy_jump_token1] = ACTIONS(2975), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2975), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2975), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2975), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2975), + [aux_sym_rekey_limit_token1] = ACTIONS(2975), + [aux_sym_remote_command_token1] = ACTIONS(2975), + [aux_sym_remote_forward_token1] = ACTIONS(2975), + [aux_sym_request_tty_token1] = ACTIONS(2975), + [aux_sym_required_rsa_size_token1] = ACTIONS(2975), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2975), + [aux_sym_security_key_provider_token1] = ACTIONS(2975), + [aux_sym_send_env_token1] = ACTIONS(2975), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2975), + [aux_sym_server_alive_interval_token1] = ACTIONS(2975), + [aux_sym_session_type_token1] = ACTIONS(2975), + [aux_sym_set_env_token1] = ACTIONS(2975), + [aux_sym_stdin_null_token1] = ACTIONS(2975), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2975), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2975), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2975), + [aux_sym_syslog_facility_token1] = ACTIONS(2975), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2975), + [aux_sym_keep_alive_token1] = ACTIONS(2975), + [aux_sym_tag_token1] = ACTIONS(2975), + [aux_sym_tunnel_token1] = ACTIONS(2977), + [aux_sym_tunnel_device_token1] = ACTIONS(2975), + [aux_sym_update_host_keys_token1] = ACTIONS(2975), + [aux_sym_use_keychain_token1] = ACTIONS(2975), + [aux_sym_use_roaming_token1] = ACTIONS(2975), + [aux_sym_user_token1] = ACTIONS(2977), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2975), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2975), + [aux_sym_visual_host_key_token1] = ACTIONS(2975), + [aux_sym_xauth_location_token1] = ACTIONS(2975), }, [437] = { - [ts_builtin_sym_end] = ACTIONS(2972), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2974), - [anon_sym_DQUOTE] = ACTIONS(2976), - [aux_sym_match_token1] = ACTIONS(2972), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2972), - [aux_sym_address_family_token1] = ACTIONS(2972), - [aux_sym_batch_mode_token1] = ACTIONS(2972), - [aux_sym_bind_address_token1] = ACTIONS(2972), - [aux_sym_bind_interface_token1] = ACTIONS(2972), - [aux_sym_canonical_domains_token1] = ACTIONS(2972), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2972), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2972), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2972), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2972), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2972), - [aux_sym_certificate_file_token1] = ACTIONS(2972), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2972), - [aux_sym_channel_timeout_token1] = ACTIONS(2972), - [aux_sym_check_host_ip_token1] = ACTIONS(2972), - [aux_sym_ciphers_token1] = ACTIONS(2972), - [aux_sym_cipher_token1] = ACTIONS(2974), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2972), - [aux_sym_compression_token1] = ACTIONS(2972), - [aux_sym_connection_attempts_token1] = ACTIONS(2972), - [aux_sym_connect_timeout_token1] = ACTIONS(2972), - [aux_sym_control_master_token1] = ACTIONS(2972), - [aux_sym_control_path_token1] = ACTIONS(2972), - [aux_sym_control_persist_token1] = ACTIONS(2972), - [aux_sym_dynamic_forward_token1] = ACTIONS(2972), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2972), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2972), - [aux_sym_escape_char_token1] = ACTIONS(2972), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2972), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2972), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2972), - [aux_sym_forward_agent_token1] = ACTIONS(2972), - [aux_sym_forward_x11_token1] = ACTIONS(2974), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2972), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2972), - [aux_sym_gateway_ports_token1] = ACTIONS(2972), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2972), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2972), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2972), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2972), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2972), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2972), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2972), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2972), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2972), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2972), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2972), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2972), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2972), - [aux_sym_host_key_alias_token1] = ACTIONS(2972), - [aux_sym_hostname_token1] = ACTIONS(2972), - [aux_sym_identities_only_token1] = ACTIONS(2972), - [aux_sym_identity_agent_token1] = ACTIONS(2972), - [aux_sym_identity_file_token1] = ACTIONS(2972), - [aux_sym_ignore_unknown_token1] = ACTIONS(2972), - [aux_sym_include_token1] = ACTIONS(2972), - [aux_sym_ip_qos_token1] = ACTIONS(2972), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2972), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2972), - [aux_sym_kex_algorithms_token1] = ACTIONS(2972), - [aux_sym_known_hosts_command_token1] = ACTIONS(2972), - [aux_sym_local_command_token1] = ACTIONS(2972), - [aux_sym_local_forward_token1] = ACTIONS(2972), - [aux_sym_log_level_token1] = ACTIONS(2972), - [aux_sym_log_verbose_token1] = ACTIONS(2972), - [aux_sym_macs_token1] = ACTIONS(2972), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2972), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2972), - [aux_sym_password_authentication_token1] = ACTIONS(2972), - [aux_sym_permit_local_command_token1] = ACTIONS(2972), - [aux_sym_permit_remote_open_token1] = ACTIONS(2972), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2972), - [aux_sym_port_token1] = ACTIONS(2972), - [aux_sym_preferred_authentications_token1] = ACTIONS(2972), - [aux_sym_protocol_token1] = ACTIONS(2972), - [aux_sym_proxy_command_token1] = ACTIONS(2972), - [aux_sym_proxy_jump_token1] = ACTIONS(2972), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2972), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2972), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2972), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2972), - [aux_sym_rekey_limit_token1] = ACTIONS(2972), - [aux_sym_remote_command_token1] = ACTIONS(2972), - [aux_sym_remote_forward_token1] = ACTIONS(2972), - [aux_sym_request_tty_token1] = ACTIONS(2972), - [aux_sym_required_rsa_size_token1] = ACTIONS(2972), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2972), - [aux_sym_security_key_provider_token1] = ACTIONS(2972), - [aux_sym_send_env_token1] = ACTIONS(2972), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2972), - [aux_sym_server_alive_interval_token1] = ACTIONS(2972), - [aux_sym_session_type_token1] = ACTIONS(2972), - [aux_sym_set_env_token1] = ACTIONS(2972), - [aux_sym_stdin_null_token1] = ACTIONS(2972), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2972), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2972), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2972), - [aux_sym_syslog_facility_token1] = ACTIONS(2972), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2972), - [aux_sym_keep_alive_token1] = ACTIONS(2972), - [aux_sym_tag_token1] = ACTIONS(2972), - [aux_sym_tunnel_token1] = ACTIONS(2974), - [aux_sym_tunnel_device_token1] = ACTIONS(2972), - [aux_sym_update_host_keys_token1] = ACTIONS(2972), - [aux_sym_use_keychain_token1] = ACTIONS(2972), - [aux_sym_use_roaming_token1] = ACTIONS(2972), - [aux_sym_user_token1] = ACTIONS(2974), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2972), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2972), - [aux_sym_visual_host_key_token1] = ACTIONS(2972), - [aux_sym_xauth_location_token1] = ACTIONS(2972), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2981), + [anon_sym_DQUOTE] = ACTIONS(2979), + [aux_sym_match_token1] = ACTIONS(2979), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2979), + [aux_sym_address_family_token1] = ACTIONS(2979), + [aux_sym_batch_mode_token1] = ACTIONS(2979), + [aux_sym_bind_address_token1] = ACTIONS(2979), + [aux_sym_bind_interface_token1] = ACTIONS(2979), + [aux_sym_canonical_domains_token1] = ACTIONS(2979), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2979), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2979), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2979), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2979), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2979), + [aux_sym_certificate_file_token1] = ACTIONS(2979), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2979), + [aux_sym_channel_timeout_token1] = ACTIONS(2979), + [aux_sym_check_host_ip_token1] = ACTIONS(2979), + [aux_sym_ciphers_token1] = ACTIONS(2979), + [aux_sym_cipher_token1] = ACTIONS(2981), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2979), + [aux_sym_compression_token1] = ACTIONS(2979), + [aux_sym_connection_attempts_token1] = ACTIONS(2979), + [aux_sym_connect_timeout_token1] = ACTIONS(2979), + [aux_sym_control_master_token1] = ACTIONS(2979), + [aux_sym_control_path_token1] = ACTIONS(2979), + [aux_sym_control_persist_token1] = ACTIONS(2979), + [aux_sym_dynamic_forward_token1] = ACTIONS(2979), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2979), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2979), + [aux_sym_escape_char_token1] = ACTIONS(2979), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2979), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2979), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2979), + [aux_sym_forward_agent_token1] = ACTIONS(2979), + [aux_sym_forward_x11_token1] = ACTIONS(2981), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2979), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2979), + [aux_sym_gateway_ports_token1] = ACTIONS(2979), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2979), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2979), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2979), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2979), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2979), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2979), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2979), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2979), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2979), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2979), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2979), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2979), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2979), + [aux_sym_host_key_alias_token1] = ACTIONS(2979), + [aux_sym_hostname_token1] = ACTIONS(2979), + [aux_sym_identities_only_token1] = ACTIONS(2979), + [aux_sym_identity_agent_token1] = ACTIONS(2979), + [aux_sym_identity_file_token1] = ACTIONS(2979), + [aux_sym_ignore_unknown_token1] = ACTIONS(2979), + [aux_sym_include_token1] = ACTIONS(2979), + [aux_sym_ip_qos_token1] = ACTIONS(2979), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2979), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2979), + [aux_sym_kex_algorithms_token1] = ACTIONS(2979), + [aux_sym_known_hosts_command_token1] = ACTIONS(2979), + [aux_sym_local_command_token1] = ACTIONS(2979), + [aux_sym_local_forward_token1] = ACTIONS(2979), + [aux_sym_log_level_token1] = ACTIONS(2979), + [aux_sym_log_verbose_token1] = ACTIONS(2979), + [aux_sym_macs_token1] = ACTIONS(2979), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2979), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2979), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2979), + [aux_sym_password_authentication_token1] = ACTIONS(2979), + [aux_sym_permit_local_command_token1] = ACTIONS(2979), + [aux_sym_permit_remote_open_token1] = ACTIONS(2979), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2979), + [aux_sym_port_token1] = ACTIONS(2979), + [aux_sym_preferred_authentications_token1] = ACTIONS(2979), + [aux_sym_protocol_token1] = ACTIONS(2979), + [aux_sym_proxy_command_token1] = ACTIONS(2979), + [aux_sym_proxy_jump_token1] = ACTIONS(2979), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2979), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2979), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2979), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2979), + [aux_sym_rekey_limit_token1] = ACTIONS(2979), + [aux_sym_remote_command_token1] = ACTIONS(2979), + [aux_sym_remote_forward_token1] = ACTIONS(2979), + [aux_sym_request_tty_token1] = ACTIONS(2979), + [aux_sym_required_rsa_size_token1] = ACTIONS(2979), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2979), + [aux_sym_security_key_provider_token1] = ACTIONS(2979), + [aux_sym_send_env_token1] = ACTIONS(2979), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2979), + [aux_sym_server_alive_interval_token1] = ACTIONS(2979), + [aux_sym_session_type_token1] = ACTIONS(2979), + [aux_sym_set_env_token1] = ACTIONS(2979), + [aux_sym_stdin_null_token1] = ACTIONS(2979), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2979), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2979), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2979), + [aux_sym_syslog_facility_token1] = ACTIONS(2979), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2979), + [aux_sym_keep_alive_token1] = ACTIONS(2979), + [aux_sym_tag_token1] = ACTIONS(2979), + [aux_sym_tunnel_token1] = ACTIONS(2981), + [aux_sym_tunnel_device_token1] = ACTIONS(2979), + [aux_sym_update_host_keys_token1] = ACTIONS(2979), + [aux_sym_use_keychain_token1] = ACTIONS(2979), + [aux_sym_use_roaming_token1] = ACTIONS(2979), + [aux_sym_user_token1] = ACTIONS(2981), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2979), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2979), + [aux_sym_visual_host_key_token1] = ACTIONS(2979), + [aux_sym_xauth_location_token1] = ACTIONS(2979), }, [438] = { - [ts_builtin_sym_end] = ACTIONS(2978), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2980), - [anon_sym_DQUOTE] = ACTIONS(2978), - [aux_sym_match_token1] = ACTIONS(2978), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2978), - [aux_sym_address_family_token1] = ACTIONS(2978), - [aux_sym_batch_mode_token1] = ACTIONS(2978), - [aux_sym_bind_address_token1] = ACTIONS(2978), - [aux_sym_bind_interface_token1] = ACTIONS(2978), - [aux_sym_canonical_domains_token1] = ACTIONS(2978), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2978), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2978), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2978), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2978), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2978), - [aux_sym_certificate_file_token1] = ACTIONS(2978), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2978), - [aux_sym_channel_timeout_token1] = ACTIONS(2978), - [aux_sym_check_host_ip_token1] = ACTIONS(2978), - [aux_sym_ciphers_token1] = ACTIONS(2978), - [aux_sym_cipher_token1] = ACTIONS(2980), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2978), - [aux_sym_compression_token1] = ACTIONS(2978), - [aux_sym_connection_attempts_token1] = ACTIONS(2978), - [aux_sym_connect_timeout_token1] = ACTIONS(2978), - [aux_sym_control_master_token1] = ACTIONS(2978), - [aux_sym_control_path_token1] = ACTIONS(2978), - [aux_sym_control_persist_token1] = ACTIONS(2978), - [aux_sym_dynamic_forward_token1] = ACTIONS(2978), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2978), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2978), - [aux_sym_escape_char_token1] = ACTIONS(2978), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2978), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2978), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2978), - [aux_sym_forward_agent_token1] = ACTIONS(2978), - [aux_sym_forward_x11_token1] = ACTIONS(2980), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2978), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2978), - [aux_sym_gateway_ports_token1] = ACTIONS(2978), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2978), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2978), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2978), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2978), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2978), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2978), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2978), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2978), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2978), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2978), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2978), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2978), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2978), - [aux_sym_host_key_alias_token1] = ACTIONS(2978), - [aux_sym_hostname_token1] = ACTIONS(2978), - [aux_sym_identities_only_token1] = ACTIONS(2978), - [aux_sym_identity_agent_token1] = ACTIONS(2978), - [aux_sym_identity_file_token1] = ACTIONS(2978), - [aux_sym_ignore_unknown_token1] = ACTIONS(2978), - [aux_sym_include_token1] = ACTIONS(2978), - [aux_sym_ip_qos_token1] = ACTIONS(2978), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2978), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2978), - [aux_sym_kex_algorithms_token1] = ACTIONS(2978), - [aux_sym_known_hosts_command_token1] = ACTIONS(2978), - [aux_sym_local_command_token1] = ACTIONS(2978), - [aux_sym_local_forward_token1] = ACTIONS(2978), - [aux_sym_log_level_token1] = ACTIONS(2978), - [aux_sym_log_verbose_token1] = ACTIONS(2978), - [aux_sym_macs_token1] = ACTIONS(2978), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2978), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2978), - [aux_sym_password_authentication_token1] = ACTIONS(2978), - [aux_sym_permit_local_command_token1] = ACTIONS(2978), - [aux_sym_permit_remote_open_token1] = ACTIONS(2978), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2978), - [aux_sym_port_token1] = ACTIONS(2978), - [aux_sym_preferred_authentications_token1] = ACTIONS(2978), - [aux_sym_protocol_token1] = ACTIONS(2978), - [aux_sym_proxy_command_token1] = ACTIONS(2978), - [aux_sym_proxy_jump_token1] = ACTIONS(2978), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2978), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2978), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2978), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2978), - [aux_sym_rekey_limit_token1] = ACTIONS(2978), - [aux_sym_remote_command_token1] = ACTIONS(2978), - [aux_sym_remote_forward_token1] = ACTIONS(2978), - [aux_sym_request_tty_token1] = ACTIONS(2978), - [aux_sym_required_rsa_size_token1] = ACTIONS(2978), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2978), - [aux_sym_security_key_provider_token1] = ACTIONS(2978), - [aux_sym_send_env_token1] = ACTIONS(2978), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2978), - [aux_sym_server_alive_interval_token1] = ACTIONS(2978), - [aux_sym_session_type_token1] = ACTIONS(2978), - [aux_sym_set_env_token1] = ACTIONS(2978), - [aux_sym_stdin_null_token1] = ACTIONS(2978), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2978), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2978), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2978), - [aux_sym_syslog_facility_token1] = ACTIONS(2978), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2978), - [aux_sym_keep_alive_token1] = ACTIONS(2978), - [aux_sym_tag_token1] = ACTIONS(2978), - [aux_sym_tunnel_token1] = ACTIONS(2980), - [aux_sym_tunnel_device_token1] = ACTIONS(2978), - [aux_sym_update_host_keys_token1] = ACTIONS(2978), - [aux_sym_use_keychain_token1] = ACTIONS(2978), - [aux_sym_use_roaming_token1] = ACTIONS(2978), - [aux_sym_user_token1] = ACTIONS(2980), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2978), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2978), - [aux_sym_visual_host_key_token1] = ACTIONS(2978), - [aux_sym_xauth_location_token1] = ACTIONS(2978), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2985), + [anon_sym_DQUOTE] = ACTIONS(2987), + [aux_sym_match_token1] = ACTIONS(2983), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2983), + [aux_sym_address_family_token1] = ACTIONS(2983), + [aux_sym_batch_mode_token1] = ACTIONS(2983), + [aux_sym_bind_address_token1] = ACTIONS(2983), + [aux_sym_bind_interface_token1] = ACTIONS(2983), + [aux_sym_canonical_domains_token1] = ACTIONS(2983), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2983), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2983), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2983), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2983), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2983), + [aux_sym_certificate_file_token1] = ACTIONS(2983), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2983), + [aux_sym_channel_timeout_token1] = ACTIONS(2983), + [aux_sym_check_host_ip_token1] = ACTIONS(2983), + [aux_sym_ciphers_token1] = ACTIONS(2983), + [aux_sym_cipher_token1] = ACTIONS(2985), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2983), + [aux_sym_compression_token1] = ACTIONS(2983), + [aux_sym_connection_attempts_token1] = ACTIONS(2983), + [aux_sym_connect_timeout_token1] = ACTIONS(2983), + [aux_sym_control_master_token1] = ACTIONS(2983), + [aux_sym_control_path_token1] = ACTIONS(2983), + [aux_sym_control_persist_token1] = ACTIONS(2983), + [aux_sym_dynamic_forward_token1] = ACTIONS(2983), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2983), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2983), + [aux_sym_escape_char_token1] = ACTIONS(2983), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2983), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2983), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2983), + [aux_sym_forward_agent_token1] = ACTIONS(2983), + [aux_sym_forward_x11_token1] = ACTIONS(2985), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2983), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2983), + [aux_sym_gateway_ports_token1] = ACTIONS(2983), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2983), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2983), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2983), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2983), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2983), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2983), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2983), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2983), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2983), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2983), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2983), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2983), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2983), + [aux_sym_host_key_alias_token1] = ACTIONS(2983), + [aux_sym_hostname_token1] = ACTIONS(2983), + [aux_sym_identities_only_token1] = ACTIONS(2983), + [aux_sym_identity_agent_token1] = ACTIONS(2983), + [aux_sym_identity_file_token1] = ACTIONS(2983), + [aux_sym_ignore_unknown_token1] = ACTIONS(2983), + [aux_sym_include_token1] = ACTIONS(2983), + [aux_sym_ip_qos_token1] = ACTIONS(2983), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2983), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2983), + [aux_sym_kex_algorithms_token1] = ACTIONS(2983), + [aux_sym_known_hosts_command_token1] = ACTIONS(2983), + [aux_sym_local_command_token1] = ACTIONS(2983), + [aux_sym_local_forward_token1] = ACTIONS(2983), + [aux_sym_log_level_token1] = ACTIONS(2983), + [aux_sym_log_verbose_token1] = ACTIONS(2983), + [aux_sym_macs_token1] = ACTIONS(2983), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2983), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2983), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2983), + [aux_sym_password_authentication_token1] = ACTIONS(2983), + [aux_sym_permit_local_command_token1] = ACTIONS(2983), + [aux_sym_permit_remote_open_token1] = ACTIONS(2983), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2983), + [aux_sym_port_token1] = ACTIONS(2983), + [aux_sym_preferred_authentications_token1] = ACTIONS(2983), + [aux_sym_protocol_token1] = ACTIONS(2983), + [aux_sym_proxy_command_token1] = ACTIONS(2983), + [aux_sym_proxy_jump_token1] = ACTIONS(2983), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2983), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2983), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2983), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2983), + [aux_sym_rekey_limit_token1] = ACTIONS(2983), + [aux_sym_remote_command_token1] = ACTIONS(2983), + [aux_sym_remote_forward_token1] = ACTIONS(2983), + [aux_sym_request_tty_token1] = ACTIONS(2983), + [aux_sym_required_rsa_size_token1] = ACTIONS(2983), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2983), + [aux_sym_security_key_provider_token1] = ACTIONS(2983), + [aux_sym_send_env_token1] = ACTIONS(2983), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2983), + [aux_sym_server_alive_interval_token1] = ACTIONS(2983), + [aux_sym_session_type_token1] = ACTIONS(2983), + [aux_sym_set_env_token1] = ACTIONS(2983), + [aux_sym_stdin_null_token1] = ACTIONS(2983), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2983), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2983), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2983), + [aux_sym_syslog_facility_token1] = ACTIONS(2983), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2983), + [aux_sym_keep_alive_token1] = ACTIONS(2983), + [aux_sym_tag_token1] = ACTIONS(2983), + [aux_sym_tunnel_token1] = ACTIONS(2985), + [aux_sym_tunnel_device_token1] = ACTIONS(2983), + [aux_sym_update_host_keys_token1] = ACTIONS(2983), + [aux_sym_use_keychain_token1] = ACTIONS(2983), + [aux_sym_use_roaming_token1] = ACTIONS(2983), + [aux_sym_user_token1] = ACTIONS(2985), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2983), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2983), + [aux_sym_visual_host_key_token1] = ACTIONS(2983), + [aux_sym_xauth_location_token1] = ACTIONS(2983), }, [439] = { - [ts_builtin_sym_end] = ACTIONS(2982), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2984), - [anon_sym_DQUOTE] = ACTIONS(2986), - [aux_sym_match_token1] = ACTIONS(2982), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2982), - [aux_sym_address_family_token1] = ACTIONS(2982), - [aux_sym_batch_mode_token1] = ACTIONS(2982), - [aux_sym_bind_address_token1] = ACTIONS(2982), - [aux_sym_bind_interface_token1] = ACTIONS(2982), - [aux_sym_canonical_domains_token1] = ACTIONS(2982), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2982), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2982), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2982), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2982), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2982), - [aux_sym_certificate_file_token1] = ACTIONS(2982), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2982), - [aux_sym_channel_timeout_token1] = ACTIONS(2982), - [aux_sym_check_host_ip_token1] = ACTIONS(2982), - [aux_sym_ciphers_token1] = ACTIONS(2982), - [aux_sym_cipher_token1] = ACTIONS(2984), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2982), - [aux_sym_compression_token1] = ACTIONS(2982), - [aux_sym_connection_attempts_token1] = ACTIONS(2982), - [aux_sym_connect_timeout_token1] = ACTIONS(2982), - [aux_sym_control_master_token1] = ACTIONS(2982), - [aux_sym_control_path_token1] = ACTIONS(2982), - [aux_sym_control_persist_token1] = ACTIONS(2982), - [aux_sym_dynamic_forward_token1] = ACTIONS(2982), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2982), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2982), - [aux_sym_escape_char_token1] = ACTIONS(2982), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2982), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2982), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2982), - [aux_sym_forward_agent_token1] = ACTIONS(2982), - [aux_sym_forward_x11_token1] = ACTIONS(2984), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2982), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2982), - [aux_sym_gateway_ports_token1] = ACTIONS(2982), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2982), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2982), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2982), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2982), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2982), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2982), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2982), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2982), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2982), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2982), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2982), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2982), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2982), - [aux_sym_host_key_alias_token1] = ACTIONS(2982), - [aux_sym_hostname_token1] = ACTIONS(2982), - [aux_sym_identities_only_token1] = ACTIONS(2982), - [aux_sym_identity_agent_token1] = ACTIONS(2982), - [aux_sym_identity_file_token1] = ACTIONS(2982), - [aux_sym_ignore_unknown_token1] = ACTIONS(2982), - [aux_sym_include_token1] = ACTIONS(2982), - [aux_sym_ip_qos_token1] = ACTIONS(2982), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2982), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2982), - [aux_sym_kex_algorithms_token1] = ACTIONS(2982), - [aux_sym_known_hosts_command_token1] = ACTIONS(2982), - [aux_sym_local_command_token1] = ACTIONS(2982), - [aux_sym_local_forward_token1] = ACTIONS(2982), - [aux_sym_log_level_token1] = ACTIONS(2982), - [aux_sym_log_verbose_token1] = ACTIONS(2982), - [aux_sym_macs_token1] = ACTIONS(2982), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2982), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2982), - [aux_sym_password_authentication_token1] = ACTIONS(2982), - [aux_sym_permit_local_command_token1] = ACTIONS(2982), - [aux_sym_permit_remote_open_token1] = ACTIONS(2982), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2982), - [aux_sym_port_token1] = ACTIONS(2982), - [aux_sym_preferred_authentications_token1] = ACTIONS(2982), - [aux_sym_protocol_token1] = ACTIONS(2982), - [aux_sym_proxy_command_token1] = ACTIONS(2982), - [aux_sym_proxy_jump_token1] = ACTIONS(2982), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2982), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2982), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2982), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2982), - [aux_sym_rekey_limit_token1] = ACTIONS(2982), - [aux_sym_remote_command_token1] = ACTIONS(2982), - [aux_sym_remote_forward_token1] = ACTIONS(2982), - [aux_sym_request_tty_token1] = ACTIONS(2982), - [aux_sym_required_rsa_size_token1] = ACTIONS(2982), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2982), - [aux_sym_security_key_provider_token1] = ACTIONS(2982), - [aux_sym_send_env_token1] = ACTIONS(2982), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2982), - [aux_sym_server_alive_interval_token1] = ACTIONS(2982), - [aux_sym_session_type_token1] = ACTIONS(2982), - [aux_sym_set_env_token1] = ACTIONS(2982), - [aux_sym_stdin_null_token1] = ACTIONS(2982), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2982), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2982), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2982), - [aux_sym_syslog_facility_token1] = ACTIONS(2982), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2982), - [aux_sym_keep_alive_token1] = ACTIONS(2982), - [aux_sym_tag_token1] = ACTIONS(2982), - [aux_sym_tunnel_token1] = ACTIONS(2984), - [aux_sym_tunnel_device_token1] = ACTIONS(2982), - [aux_sym_update_host_keys_token1] = ACTIONS(2982), - [aux_sym_use_keychain_token1] = ACTIONS(2982), - [aux_sym_use_roaming_token1] = ACTIONS(2982), - [aux_sym_user_token1] = ACTIONS(2984), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2982), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2982), - [aux_sym_visual_host_key_token1] = ACTIONS(2982), - [aux_sym_xauth_location_token1] = ACTIONS(2982), + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2991), + [anon_sym_DQUOTE] = ACTIONS(2993), + [aux_sym_match_token1] = ACTIONS(2989), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2989), + [aux_sym_address_family_token1] = ACTIONS(2989), + [aux_sym_batch_mode_token1] = ACTIONS(2989), + [aux_sym_bind_address_token1] = ACTIONS(2989), + [aux_sym_bind_interface_token1] = ACTIONS(2989), + [aux_sym_canonical_domains_token1] = ACTIONS(2989), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2989), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2989), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2989), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2989), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2989), + [aux_sym_certificate_file_token1] = ACTIONS(2989), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2989), + [aux_sym_channel_timeout_token1] = ACTIONS(2989), + [aux_sym_check_host_ip_token1] = ACTIONS(2989), + [aux_sym_ciphers_token1] = ACTIONS(2989), + [aux_sym_cipher_token1] = ACTIONS(2991), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2989), + [aux_sym_compression_token1] = ACTIONS(2989), + [aux_sym_connection_attempts_token1] = ACTIONS(2989), + [aux_sym_connect_timeout_token1] = ACTIONS(2989), + [aux_sym_control_master_token1] = ACTIONS(2989), + [aux_sym_control_path_token1] = ACTIONS(2989), + [aux_sym_control_persist_token1] = ACTIONS(2989), + [aux_sym_dynamic_forward_token1] = ACTIONS(2989), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2989), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2989), + [aux_sym_escape_char_token1] = ACTIONS(2989), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2989), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2989), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2989), + [aux_sym_forward_agent_token1] = ACTIONS(2989), + [aux_sym_forward_x11_token1] = ACTIONS(2991), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2989), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2989), + [aux_sym_gateway_ports_token1] = ACTIONS(2989), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2989), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2989), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2989), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2989), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2989), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2989), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2989), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2989), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2989), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2989), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2989), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2989), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2989), + [aux_sym_host_key_alias_token1] = ACTIONS(2989), + [aux_sym_hostname_token1] = ACTIONS(2989), + [aux_sym_identities_only_token1] = ACTIONS(2989), + [aux_sym_identity_agent_token1] = ACTIONS(2989), + [aux_sym_identity_file_token1] = ACTIONS(2989), + [aux_sym_ignore_unknown_token1] = ACTIONS(2989), + [aux_sym_include_token1] = ACTIONS(2989), + [aux_sym_ip_qos_token1] = ACTIONS(2989), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2989), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2989), + [aux_sym_kex_algorithms_token1] = ACTIONS(2989), + [aux_sym_known_hosts_command_token1] = ACTIONS(2989), + [aux_sym_local_command_token1] = ACTIONS(2989), + [aux_sym_local_forward_token1] = ACTIONS(2989), + [aux_sym_log_level_token1] = ACTIONS(2989), + [aux_sym_log_verbose_token1] = ACTIONS(2989), + [aux_sym_macs_token1] = ACTIONS(2989), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2989), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2989), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2989), + [aux_sym_password_authentication_token1] = ACTIONS(2989), + [aux_sym_permit_local_command_token1] = ACTIONS(2989), + [aux_sym_permit_remote_open_token1] = ACTIONS(2989), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2989), + [aux_sym_port_token1] = ACTIONS(2989), + [aux_sym_preferred_authentications_token1] = ACTIONS(2989), + [aux_sym_protocol_token1] = ACTIONS(2989), + [aux_sym_proxy_command_token1] = ACTIONS(2989), + [aux_sym_proxy_jump_token1] = ACTIONS(2989), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2989), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2989), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2989), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2989), + [aux_sym_rekey_limit_token1] = ACTIONS(2989), + [aux_sym_remote_command_token1] = ACTIONS(2989), + [aux_sym_remote_forward_token1] = ACTIONS(2989), + [aux_sym_request_tty_token1] = ACTIONS(2989), + [aux_sym_required_rsa_size_token1] = ACTIONS(2989), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2989), + [aux_sym_security_key_provider_token1] = ACTIONS(2989), + [aux_sym_send_env_token1] = ACTIONS(2989), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2989), + [aux_sym_server_alive_interval_token1] = ACTIONS(2989), + [aux_sym_session_type_token1] = ACTIONS(2989), + [aux_sym_set_env_token1] = ACTIONS(2989), + [aux_sym_stdin_null_token1] = ACTIONS(2989), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2989), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2989), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2989), + [aux_sym_syslog_facility_token1] = ACTIONS(2989), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2989), + [aux_sym_keep_alive_token1] = ACTIONS(2989), + [aux_sym_tag_token1] = ACTIONS(2989), + [aux_sym_tunnel_token1] = ACTIONS(2991), + [aux_sym_tunnel_device_token1] = ACTIONS(2989), + [aux_sym_update_host_keys_token1] = ACTIONS(2989), + [aux_sym_use_keychain_token1] = ACTIONS(2989), + [aux_sym_use_roaming_token1] = ACTIONS(2989), + [aux_sym_user_token1] = ACTIONS(2991), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2989), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2989), + [aux_sym_visual_host_key_token1] = ACTIONS(2989), + [aux_sym_xauth_location_token1] = ACTIONS(2989), }, [440] = { - [ts_builtin_sym_end] = ACTIONS(2988), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(2988), - [aux_sym_match_token1] = ACTIONS(2988), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2988), - [aux_sym_address_family_token1] = ACTIONS(2988), - [aux_sym_batch_mode_token1] = ACTIONS(2988), - [aux_sym_bind_address_token1] = ACTIONS(2988), - [aux_sym_bind_interface_token1] = ACTIONS(2988), - [aux_sym_canonical_domains_token1] = ACTIONS(2988), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2988), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2988), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2988), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2988), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2988), - [aux_sym_certificate_file_token1] = ACTIONS(2988), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2988), - [aux_sym_channel_timeout_token1] = ACTIONS(2988), - [aux_sym_check_host_ip_token1] = ACTIONS(2988), - [aux_sym_ciphers_token1] = ACTIONS(2988), - [aux_sym_cipher_token1] = ACTIONS(2990), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2988), - [aux_sym_compression_token1] = ACTIONS(2988), - [aux_sym_connection_attempts_token1] = ACTIONS(2988), - [aux_sym_connect_timeout_token1] = ACTIONS(2988), - [aux_sym_control_master_token1] = ACTIONS(2988), - [aux_sym_control_path_token1] = ACTIONS(2988), - [aux_sym_control_persist_token1] = ACTIONS(2988), - [aux_sym_dynamic_forward_token1] = ACTIONS(2988), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2988), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2988), - [aux_sym_escape_char_token1] = ACTIONS(2988), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2988), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2988), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2988), - [aux_sym_forward_agent_token1] = ACTIONS(2988), - [aux_sym_forward_x11_token1] = ACTIONS(2990), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2988), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2988), - [aux_sym_gateway_ports_token1] = ACTIONS(2988), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2988), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2988), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2988), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2988), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2988), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2988), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2988), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2988), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2988), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2988), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2988), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2988), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2988), - [aux_sym_host_key_alias_token1] = ACTIONS(2988), - [aux_sym_hostname_token1] = ACTIONS(2988), - [aux_sym_identities_only_token1] = ACTIONS(2988), - [aux_sym_identity_agent_token1] = ACTIONS(2988), - [aux_sym_identity_file_token1] = ACTIONS(2988), - [aux_sym_ignore_unknown_token1] = ACTIONS(2988), - [aux_sym_include_token1] = ACTIONS(2988), - [aux_sym_ip_qos_token1] = ACTIONS(2988), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2988), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2988), - [aux_sym_kex_algorithms_token1] = ACTIONS(2988), - [aux_sym_known_hosts_command_token1] = ACTIONS(2988), - [aux_sym_local_command_token1] = ACTIONS(2988), - [aux_sym_local_forward_token1] = ACTIONS(2988), - [aux_sym_log_level_token1] = ACTIONS(2988), - [aux_sym_log_verbose_token1] = ACTIONS(2988), - [aux_sym_macs_token1] = ACTIONS(2988), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2988), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2988), - [aux_sym_password_authentication_token1] = ACTIONS(2988), - [aux_sym_permit_local_command_token1] = ACTIONS(2988), - [aux_sym_permit_remote_open_token1] = ACTIONS(2988), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2988), - [aux_sym_port_token1] = ACTIONS(2988), - [aux_sym_preferred_authentications_token1] = ACTIONS(2988), - [aux_sym_protocol_token1] = ACTIONS(2988), - [aux_sym_proxy_command_token1] = ACTIONS(2988), - [aux_sym_proxy_jump_token1] = ACTIONS(2988), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2988), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2988), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2988), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2988), - [aux_sym_rekey_limit_token1] = ACTIONS(2988), - [aux_sym_remote_command_token1] = ACTIONS(2988), - [aux_sym_remote_forward_token1] = ACTIONS(2988), - [aux_sym_request_tty_token1] = ACTIONS(2988), - [aux_sym_required_rsa_size_token1] = ACTIONS(2988), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2988), - [aux_sym_security_key_provider_token1] = ACTIONS(2988), - [aux_sym_send_env_token1] = ACTIONS(2988), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2988), - [aux_sym_server_alive_interval_token1] = ACTIONS(2988), - [aux_sym_session_type_token1] = ACTIONS(2988), - [aux_sym_set_env_token1] = ACTIONS(2988), - [aux_sym_stdin_null_token1] = ACTIONS(2988), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2988), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2988), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2988), - [aux_sym_syslog_facility_token1] = ACTIONS(2988), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2988), - [aux_sym_keep_alive_token1] = ACTIONS(2988), - [aux_sym_tag_token1] = ACTIONS(2988), - [aux_sym_tunnel_token1] = ACTIONS(2990), - [aux_sym_tunnel_device_token1] = ACTIONS(2988), - [aux_sym_update_host_keys_token1] = ACTIONS(2988), - [aux_sym_use_keychain_token1] = ACTIONS(2988), - [aux_sym_use_roaming_token1] = ACTIONS(2988), - [aux_sym_user_token1] = ACTIONS(2990), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2988), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2988), - [aux_sym_visual_host_key_token1] = ACTIONS(2988), - [aux_sym_xauth_location_token1] = ACTIONS(2988), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2997), + [anon_sym_DQUOTE] = ACTIONS(2995), + [aux_sym_match_token1] = ACTIONS(2995), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2995), + [aux_sym_address_family_token1] = ACTIONS(2995), + [aux_sym_batch_mode_token1] = ACTIONS(2995), + [aux_sym_bind_address_token1] = ACTIONS(2995), + [aux_sym_bind_interface_token1] = ACTIONS(2995), + [aux_sym_canonical_domains_token1] = ACTIONS(2995), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2995), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2995), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2995), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2995), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2995), + [aux_sym_certificate_file_token1] = ACTIONS(2995), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2995), + [aux_sym_channel_timeout_token1] = ACTIONS(2995), + [aux_sym_check_host_ip_token1] = ACTIONS(2995), + [aux_sym_ciphers_token1] = ACTIONS(2995), + [aux_sym_cipher_token1] = ACTIONS(2997), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2995), + [aux_sym_compression_token1] = ACTIONS(2995), + [aux_sym_connection_attempts_token1] = ACTIONS(2995), + [aux_sym_connect_timeout_token1] = ACTIONS(2995), + [aux_sym_control_master_token1] = ACTIONS(2995), + [aux_sym_control_path_token1] = ACTIONS(2995), + [aux_sym_control_persist_token1] = ACTIONS(2995), + [aux_sym_dynamic_forward_token1] = ACTIONS(2995), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2995), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2995), + [aux_sym_escape_char_token1] = ACTIONS(2995), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2995), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2995), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2995), + [aux_sym_forward_agent_token1] = ACTIONS(2995), + [aux_sym_forward_x11_token1] = ACTIONS(2997), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2995), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2995), + [aux_sym_gateway_ports_token1] = ACTIONS(2995), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2995), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2995), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2995), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2995), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2995), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2995), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2995), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2995), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2995), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2995), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2995), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2995), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2995), + [aux_sym_host_key_alias_token1] = ACTIONS(2995), + [aux_sym_hostname_token1] = ACTIONS(2995), + [aux_sym_identities_only_token1] = ACTIONS(2995), + [aux_sym_identity_agent_token1] = ACTIONS(2995), + [aux_sym_identity_file_token1] = ACTIONS(2995), + [aux_sym_ignore_unknown_token1] = ACTIONS(2995), + [aux_sym_include_token1] = ACTIONS(2995), + [aux_sym_ip_qos_token1] = ACTIONS(2995), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2995), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2995), + [aux_sym_kex_algorithms_token1] = ACTIONS(2995), + [aux_sym_known_hosts_command_token1] = ACTIONS(2995), + [aux_sym_local_command_token1] = ACTIONS(2995), + [aux_sym_local_forward_token1] = ACTIONS(2995), + [aux_sym_log_level_token1] = ACTIONS(2995), + [aux_sym_log_verbose_token1] = ACTIONS(2995), + [aux_sym_macs_token1] = ACTIONS(2995), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2995), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2995), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2995), + [aux_sym_password_authentication_token1] = ACTIONS(2995), + [aux_sym_permit_local_command_token1] = ACTIONS(2995), + [aux_sym_permit_remote_open_token1] = ACTIONS(2995), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2995), + [aux_sym_port_token1] = ACTIONS(2995), + [aux_sym_preferred_authentications_token1] = ACTIONS(2995), + [aux_sym_protocol_token1] = ACTIONS(2995), + [aux_sym_proxy_command_token1] = ACTIONS(2995), + [aux_sym_proxy_jump_token1] = ACTIONS(2995), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2995), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2995), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2995), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2995), + [aux_sym_rekey_limit_token1] = ACTIONS(2995), + [aux_sym_remote_command_token1] = ACTIONS(2995), + [aux_sym_remote_forward_token1] = ACTIONS(2995), + [aux_sym_request_tty_token1] = ACTIONS(2995), + [aux_sym_required_rsa_size_token1] = ACTIONS(2995), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2995), + [aux_sym_security_key_provider_token1] = ACTIONS(2995), + [aux_sym_send_env_token1] = ACTIONS(2995), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2995), + [aux_sym_server_alive_interval_token1] = ACTIONS(2995), + [aux_sym_session_type_token1] = ACTIONS(2995), + [aux_sym_set_env_token1] = ACTIONS(2995), + [aux_sym_stdin_null_token1] = ACTIONS(2995), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2995), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2995), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2995), + [aux_sym_syslog_facility_token1] = ACTIONS(2995), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2995), + [aux_sym_keep_alive_token1] = ACTIONS(2995), + [aux_sym_tag_token1] = ACTIONS(2995), + [aux_sym_tunnel_token1] = ACTIONS(2997), + [aux_sym_tunnel_device_token1] = ACTIONS(2995), + [aux_sym_update_host_keys_token1] = ACTIONS(2995), + [aux_sym_use_keychain_token1] = ACTIONS(2995), + [aux_sym_use_roaming_token1] = ACTIONS(2995), + [aux_sym_user_token1] = ACTIONS(2997), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2995), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2995), + [aux_sym_visual_host_key_token1] = ACTIONS(2995), + [aux_sym_xauth_location_token1] = ACTIONS(2995), }, [441] = { - [ts_builtin_sym_end] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2994), - [anon_sym_DQUOTE] = ACTIONS(2996), - [aux_sym_match_token1] = ACTIONS(2992), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2992), - [aux_sym_address_family_token1] = ACTIONS(2992), - [aux_sym_batch_mode_token1] = ACTIONS(2992), - [aux_sym_bind_address_token1] = ACTIONS(2992), - [aux_sym_bind_interface_token1] = ACTIONS(2992), - [aux_sym_canonical_domains_token1] = ACTIONS(2992), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2992), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2992), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2992), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2992), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2992), - [aux_sym_certificate_file_token1] = ACTIONS(2992), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2992), - [aux_sym_channel_timeout_token1] = ACTIONS(2992), - [aux_sym_check_host_ip_token1] = ACTIONS(2992), - [aux_sym_ciphers_token1] = ACTIONS(2992), - [aux_sym_cipher_token1] = ACTIONS(2994), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2992), - [aux_sym_compression_token1] = ACTIONS(2992), - [aux_sym_connection_attempts_token1] = ACTIONS(2992), - [aux_sym_connect_timeout_token1] = ACTIONS(2992), - [aux_sym_control_master_token1] = ACTIONS(2992), - [aux_sym_control_path_token1] = ACTIONS(2992), - [aux_sym_control_persist_token1] = ACTIONS(2992), - [aux_sym_dynamic_forward_token1] = ACTIONS(2992), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2992), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2992), - [aux_sym_escape_char_token1] = ACTIONS(2992), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2992), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2992), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2992), - [aux_sym_forward_agent_token1] = ACTIONS(2992), - [aux_sym_forward_x11_token1] = ACTIONS(2994), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2992), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2992), - [aux_sym_gateway_ports_token1] = ACTIONS(2992), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2992), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2992), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2992), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2992), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2992), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2992), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2992), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2992), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2992), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2992), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2992), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2992), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2992), - [aux_sym_host_key_alias_token1] = ACTIONS(2992), - [aux_sym_hostname_token1] = ACTIONS(2992), - [aux_sym_identities_only_token1] = ACTIONS(2992), - [aux_sym_identity_agent_token1] = ACTIONS(2992), - [aux_sym_identity_file_token1] = ACTIONS(2992), - [aux_sym_ignore_unknown_token1] = ACTIONS(2992), - [aux_sym_include_token1] = ACTIONS(2992), - [aux_sym_ip_qos_token1] = ACTIONS(2992), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2992), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2992), - [aux_sym_kex_algorithms_token1] = ACTIONS(2992), - [aux_sym_known_hosts_command_token1] = ACTIONS(2992), - [aux_sym_local_command_token1] = ACTIONS(2992), - [aux_sym_local_forward_token1] = ACTIONS(2992), - [aux_sym_log_level_token1] = ACTIONS(2992), - [aux_sym_log_verbose_token1] = ACTIONS(2992), - [aux_sym_macs_token1] = ACTIONS(2992), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2992), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2992), - [aux_sym_password_authentication_token1] = ACTIONS(2992), - [aux_sym_permit_local_command_token1] = ACTIONS(2992), - [aux_sym_permit_remote_open_token1] = ACTIONS(2992), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2992), - [aux_sym_port_token1] = ACTIONS(2992), - [aux_sym_preferred_authentications_token1] = ACTIONS(2992), - [aux_sym_protocol_token1] = ACTIONS(2992), - [aux_sym_proxy_command_token1] = ACTIONS(2992), - [aux_sym_proxy_jump_token1] = ACTIONS(2992), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2992), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2992), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2992), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2992), - [aux_sym_rekey_limit_token1] = ACTIONS(2992), - [aux_sym_remote_command_token1] = ACTIONS(2992), - [aux_sym_remote_forward_token1] = ACTIONS(2992), - [aux_sym_request_tty_token1] = ACTIONS(2992), - [aux_sym_required_rsa_size_token1] = ACTIONS(2992), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2992), - [aux_sym_security_key_provider_token1] = ACTIONS(2992), - [aux_sym_send_env_token1] = ACTIONS(2992), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2992), - [aux_sym_server_alive_interval_token1] = ACTIONS(2992), - [aux_sym_session_type_token1] = ACTIONS(2992), - [aux_sym_set_env_token1] = ACTIONS(2992), - [aux_sym_stdin_null_token1] = ACTIONS(2992), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2992), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2992), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2992), - [aux_sym_syslog_facility_token1] = ACTIONS(2992), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2992), - [aux_sym_keep_alive_token1] = ACTIONS(2992), - [aux_sym_tag_token1] = ACTIONS(2992), - [aux_sym_tunnel_token1] = ACTIONS(2994), - [aux_sym_tunnel_device_token1] = ACTIONS(2992), - [aux_sym_update_host_keys_token1] = ACTIONS(2992), - [aux_sym_use_keychain_token1] = ACTIONS(2992), - [aux_sym_use_roaming_token1] = ACTIONS(2992), - [aux_sym_user_token1] = ACTIONS(2994), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2992), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2992), - [aux_sym_visual_host_key_token1] = ACTIONS(2992), - [aux_sym_xauth_location_token1] = ACTIONS(2992), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3001), + [anon_sym_DQUOTE] = ACTIONS(2999), + [aux_sym_match_token1] = ACTIONS(2999), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2999), + [aux_sym_address_family_token1] = ACTIONS(2999), + [aux_sym_batch_mode_token1] = ACTIONS(2999), + [aux_sym_bind_address_token1] = ACTIONS(2999), + [aux_sym_bind_interface_token1] = ACTIONS(2999), + [aux_sym_canonical_domains_token1] = ACTIONS(2999), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2999), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2999), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2999), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2999), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2999), + [aux_sym_certificate_file_token1] = ACTIONS(2999), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2999), + [aux_sym_channel_timeout_token1] = ACTIONS(2999), + [aux_sym_check_host_ip_token1] = ACTIONS(2999), + [aux_sym_ciphers_token1] = ACTIONS(2999), + [aux_sym_cipher_token1] = ACTIONS(3001), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2999), + [aux_sym_compression_token1] = ACTIONS(2999), + [aux_sym_connection_attempts_token1] = ACTIONS(2999), + [aux_sym_connect_timeout_token1] = ACTIONS(2999), + [aux_sym_control_master_token1] = ACTIONS(2999), + [aux_sym_control_path_token1] = ACTIONS(2999), + [aux_sym_control_persist_token1] = ACTIONS(2999), + [aux_sym_dynamic_forward_token1] = ACTIONS(2999), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2999), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2999), + [aux_sym_escape_char_token1] = ACTIONS(2999), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2999), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2999), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2999), + [aux_sym_forward_agent_token1] = ACTIONS(2999), + [aux_sym_forward_x11_token1] = ACTIONS(3001), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2999), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2999), + [aux_sym_gateway_ports_token1] = ACTIONS(2999), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2999), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2999), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2999), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2999), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2999), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2999), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2999), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2999), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2999), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2999), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2999), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2999), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2999), + [aux_sym_host_key_alias_token1] = ACTIONS(2999), + [aux_sym_hostname_token1] = ACTIONS(2999), + [aux_sym_identities_only_token1] = ACTIONS(2999), + [aux_sym_identity_agent_token1] = ACTIONS(2999), + [aux_sym_identity_file_token1] = ACTIONS(2999), + [aux_sym_ignore_unknown_token1] = ACTIONS(2999), + [aux_sym_include_token1] = ACTIONS(2999), + [aux_sym_ip_qos_token1] = ACTIONS(2999), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2999), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2999), + [aux_sym_kex_algorithms_token1] = ACTIONS(2999), + [aux_sym_known_hosts_command_token1] = ACTIONS(2999), + [aux_sym_local_command_token1] = ACTIONS(2999), + [aux_sym_local_forward_token1] = ACTIONS(2999), + [aux_sym_log_level_token1] = ACTIONS(2999), + [aux_sym_log_verbose_token1] = ACTIONS(2999), + [aux_sym_macs_token1] = ACTIONS(2999), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2999), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2999), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2999), + [aux_sym_password_authentication_token1] = ACTIONS(2999), + [aux_sym_permit_local_command_token1] = ACTIONS(2999), + [aux_sym_permit_remote_open_token1] = ACTIONS(2999), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2999), + [aux_sym_port_token1] = ACTIONS(2999), + [aux_sym_preferred_authentications_token1] = ACTIONS(2999), + [aux_sym_protocol_token1] = ACTIONS(2999), + [aux_sym_proxy_command_token1] = ACTIONS(2999), + [aux_sym_proxy_jump_token1] = ACTIONS(2999), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2999), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2999), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2999), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2999), + [aux_sym_rekey_limit_token1] = ACTIONS(2999), + [aux_sym_remote_command_token1] = ACTIONS(2999), + [aux_sym_remote_forward_token1] = ACTIONS(2999), + [aux_sym_request_tty_token1] = ACTIONS(2999), + [aux_sym_required_rsa_size_token1] = ACTIONS(2999), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2999), + [aux_sym_security_key_provider_token1] = ACTIONS(2999), + [aux_sym_send_env_token1] = ACTIONS(2999), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2999), + [aux_sym_server_alive_interval_token1] = ACTIONS(2999), + [aux_sym_session_type_token1] = ACTIONS(2999), + [aux_sym_set_env_token1] = ACTIONS(2999), + [aux_sym_stdin_null_token1] = ACTIONS(2999), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2999), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2999), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2999), + [aux_sym_syslog_facility_token1] = ACTIONS(2999), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2999), + [aux_sym_keep_alive_token1] = ACTIONS(2999), + [aux_sym_tag_token1] = ACTIONS(2999), + [aux_sym_tunnel_token1] = ACTIONS(3001), + [aux_sym_tunnel_device_token1] = ACTIONS(2999), + [aux_sym_update_host_keys_token1] = ACTIONS(2999), + [aux_sym_use_keychain_token1] = ACTIONS(2999), + [aux_sym_use_roaming_token1] = ACTIONS(2999), + [aux_sym_user_token1] = ACTIONS(3001), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2999), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2999), + [aux_sym_visual_host_key_token1] = ACTIONS(2999), + [aux_sym_xauth_location_token1] = ACTIONS(2999), }, [442] = { - [ts_builtin_sym_end] = ACTIONS(2998), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3000), - [anon_sym_DQUOTE] = ACTIONS(2998), - [aux_sym_match_token1] = ACTIONS(2998), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2998), - [aux_sym_address_family_token1] = ACTIONS(2998), - [aux_sym_batch_mode_token1] = ACTIONS(2998), - [aux_sym_bind_address_token1] = ACTIONS(2998), - [aux_sym_bind_interface_token1] = ACTIONS(2998), - [aux_sym_canonical_domains_token1] = ACTIONS(2998), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2998), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2998), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2998), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2998), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2998), - [aux_sym_certificate_file_token1] = ACTIONS(2998), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2998), - [aux_sym_channel_timeout_token1] = ACTIONS(2998), - [aux_sym_check_host_ip_token1] = ACTIONS(2998), - [aux_sym_ciphers_token1] = ACTIONS(2998), - [aux_sym_cipher_token1] = ACTIONS(3000), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2998), - [aux_sym_compression_token1] = ACTIONS(2998), - [aux_sym_connection_attempts_token1] = ACTIONS(2998), - [aux_sym_connect_timeout_token1] = ACTIONS(2998), - [aux_sym_control_master_token1] = ACTIONS(2998), - [aux_sym_control_path_token1] = ACTIONS(2998), - [aux_sym_control_persist_token1] = ACTIONS(2998), - [aux_sym_dynamic_forward_token1] = ACTIONS(2998), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2998), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2998), - [aux_sym_escape_char_token1] = ACTIONS(2998), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2998), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2998), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2998), - [aux_sym_forward_agent_token1] = ACTIONS(2998), - [aux_sym_forward_x11_token1] = ACTIONS(3000), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2998), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2998), - [aux_sym_gateway_ports_token1] = ACTIONS(2998), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2998), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2998), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2998), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2998), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2998), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2998), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2998), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2998), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2998), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2998), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2998), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2998), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2998), - [aux_sym_host_key_alias_token1] = ACTIONS(2998), - [aux_sym_hostname_token1] = ACTIONS(2998), - [aux_sym_identities_only_token1] = ACTIONS(2998), - [aux_sym_identity_agent_token1] = ACTIONS(2998), - [aux_sym_identity_file_token1] = ACTIONS(2998), - [aux_sym_ignore_unknown_token1] = ACTIONS(2998), - [aux_sym_include_token1] = ACTIONS(2998), - [aux_sym_ip_qos_token1] = ACTIONS(2998), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2998), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2998), - [aux_sym_kex_algorithms_token1] = ACTIONS(2998), - [aux_sym_known_hosts_command_token1] = ACTIONS(2998), - [aux_sym_local_command_token1] = ACTIONS(2998), - [aux_sym_local_forward_token1] = ACTIONS(2998), - [aux_sym_log_level_token1] = ACTIONS(2998), - [aux_sym_log_verbose_token1] = ACTIONS(2998), - [aux_sym_macs_token1] = ACTIONS(2998), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2998), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2998), - [aux_sym_password_authentication_token1] = ACTIONS(2998), - [aux_sym_permit_local_command_token1] = ACTIONS(2998), - [aux_sym_permit_remote_open_token1] = ACTIONS(2998), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2998), - [aux_sym_port_token1] = ACTIONS(2998), - [aux_sym_preferred_authentications_token1] = ACTIONS(2998), - [aux_sym_protocol_token1] = ACTIONS(2998), - [aux_sym_proxy_command_token1] = ACTIONS(2998), - [aux_sym_proxy_jump_token1] = ACTIONS(2998), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2998), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2998), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2998), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2998), - [aux_sym_rekey_limit_token1] = ACTIONS(2998), - [aux_sym_remote_command_token1] = ACTIONS(2998), - [aux_sym_remote_forward_token1] = ACTIONS(2998), - [aux_sym_request_tty_token1] = ACTIONS(2998), - [aux_sym_required_rsa_size_token1] = ACTIONS(2998), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2998), - [aux_sym_security_key_provider_token1] = ACTIONS(2998), - [aux_sym_send_env_token1] = ACTIONS(2998), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2998), - [aux_sym_server_alive_interval_token1] = ACTIONS(2998), - [aux_sym_session_type_token1] = ACTIONS(2998), - [aux_sym_set_env_token1] = ACTIONS(2998), - [aux_sym_stdin_null_token1] = ACTIONS(2998), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2998), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2998), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2998), - [aux_sym_syslog_facility_token1] = ACTIONS(2998), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2998), - [aux_sym_keep_alive_token1] = ACTIONS(2998), - [aux_sym_tag_token1] = ACTIONS(2998), - [aux_sym_tunnel_token1] = ACTIONS(3000), - [aux_sym_tunnel_device_token1] = ACTIONS(2998), - [aux_sym_update_host_keys_token1] = ACTIONS(2998), - [aux_sym_use_keychain_token1] = ACTIONS(2998), - [aux_sym_use_roaming_token1] = ACTIONS(2998), - [aux_sym_user_token1] = ACTIONS(3000), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2998), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2998), - [aux_sym_visual_host_key_token1] = ACTIONS(2998), - [aux_sym_xauth_location_token1] = ACTIONS(2998), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3005), + [anon_sym_DQUOTE] = ACTIONS(3003), + [aux_sym_match_token1] = ACTIONS(3003), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3003), + [aux_sym_address_family_token1] = ACTIONS(3003), + [aux_sym_batch_mode_token1] = ACTIONS(3003), + [aux_sym_bind_address_token1] = ACTIONS(3003), + [aux_sym_bind_interface_token1] = ACTIONS(3003), + [aux_sym_canonical_domains_token1] = ACTIONS(3003), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3003), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3003), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3003), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3003), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3003), + [aux_sym_certificate_file_token1] = ACTIONS(3003), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3003), + [aux_sym_channel_timeout_token1] = ACTIONS(3003), + [aux_sym_check_host_ip_token1] = ACTIONS(3003), + [aux_sym_ciphers_token1] = ACTIONS(3003), + [aux_sym_cipher_token1] = ACTIONS(3005), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3003), + [aux_sym_compression_token1] = ACTIONS(3003), + [aux_sym_connection_attempts_token1] = ACTIONS(3003), + [aux_sym_connect_timeout_token1] = ACTIONS(3003), + [aux_sym_control_master_token1] = ACTIONS(3003), + [aux_sym_control_path_token1] = ACTIONS(3003), + [aux_sym_control_persist_token1] = ACTIONS(3003), + [aux_sym_dynamic_forward_token1] = ACTIONS(3003), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3003), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3003), + [aux_sym_escape_char_token1] = ACTIONS(3003), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3003), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3003), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3003), + [aux_sym_forward_agent_token1] = ACTIONS(3003), + [aux_sym_forward_x11_token1] = ACTIONS(3005), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3003), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3003), + [aux_sym_gateway_ports_token1] = ACTIONS(3003), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3003), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3003), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3003), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3003), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3003), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3003), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3003), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3003), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3003), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3003), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3003), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3003), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3003), + [aux_sym_host_key_alias_token1] = ACTIONS(3003), + [aux_sym_hostname_token1] = ACTIONS(3003), + [aux_sym_identities_only_token1] = ACTIONS(3003), + [aux_sym_identity_agent_token1] = ACTIONS(3003), + [aux_sym_identity_file_token1] = ACTIONS(3003), + [aux_sym_ignore_unknown_token1] = ACTIONS(3003), + [aux_sym_include_token1] = ACTIONS(3003), + [aux_sym_ip_qos_token1] = ACTIONS(3003), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3003), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3003), + [aux_sym_kex_algorithms_token1] = ACTIONS(3003), + [aux_sym_known_hosts_command_token1] = ACTIONS(3003), + [aux_sym_local_command_token1] = ACTIONS(3003), + [aux_sym_local_forward_token1] = ACTIONS(3003), + [aux_sym_log_level_token1] = ACTIONS(3003), + [aux_sym_log_verbose_token1] = ACTIONS(3003), + [aux_sym_macs_token1] = ACTIONS(3003), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3003), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3003), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3003), + [aux_sym_password_authentication_token1] = ACTIONS(3003), + [aux_sym_permit_local_command_token1] = ACTIONS(3003), + [aux_sym_permit_remote_open_token1] = ACTIONS(3003), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3003), + [aux_sym_port_token1] = ACTIONS(3003), + [aux_sym_preferred_authentications_token1] = ACTIONS(3003), + [aux_sym_protocol_token1] = ACTIONS(3003), + [aux_sym_proxy_command_token1] = ACTIONS(3003), + [aux_sym_proxy_jump_token1] = ACTIONS(3003), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3003), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3003), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3003), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3003), + [aux_sym_rekey_limit_token1] = ACTIONS(3003), + [aux_sym_remote_command_token1] = ACTIONS(3003), + [aux_sym_remote_forward_token1] = ACTIONS(3003), + [aux_sym_request_tty_token1] = ACTIONS(3003), + [aux_sym_required_rsa_size_token1] = ACTIONS(3003), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3003), + [aux_sym_security_key_provider_token1] = ACTIONS(3003), + [aux_sym_send_env_token1] = ACTIONS(3003), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3003), + [aux_sym_server_alive_interval_token1] = ACTIONS(3003), + [aux_sym_session_type_token1] = ACTIONS(3003), + [aux_sym_set_env_token1] = ACTIONS(3003), + [aux_sym_stdin_null_token1] = ACTIONS(3003), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3003), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3003), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3003), + [aux_sym_syslog_facility_token1] = ACTIONS(3003), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3003), + [aux_sym_keep_alive_token1] = ACTIONS(3003), + [aux_sym_tag_token1] = ACTIONS(3003), + [aux_sym_tunnel_token1] = ACTIONS(3005), + [aux_sym_tunnel_device_token1] = ACTIONS(3003), + [aux_sym_update_host_keys_token1] = ACTIONS(3003), + [aux_sym_use_keychain_token1] = ACTIONS(3003), + [aux_sym_use_roaming_token1] = ACTIONS(3003), + [aux_sym_user_token1] = ACTIONS(3005), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3003), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3003), + [aux_sym_visual_host_key_token1] = ACTIONS(3003), + [aux_sym_xauth_location_token1] = ACTIONS(3003), }, [443] = { - [ts_builtin_sym_end] = ACTIONS(3002), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3004), - [anon_sym_DQUOTE] = ACTIONS(3006), - [aux_sym_match_token1] = ACTIONS(3002), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3002), - [aux_sym_address_family_token1] = ACTIONS(3002), - [aux_sym_batch_mode_token1] = ACTIONS(3002), - [aux_sym_bind_address_token1] = ACTIONS(3002), - [aux_sym_bind_interface_token1] = ACTIONS(3002), - [aux_sym_canonical_domains_token1] = ACTIONS(3002), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3002), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3002), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3002), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3002), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3002), - [aux_sym_certificate_file_token1] = ACTIONS(3002), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3002), - [aux_sym_channel_timeout_token1] = ACTIONS(3002), - [aux_sym_check_host_ip_token1] = ACTIONS(3002), - [aux_sym_ciphers_token1] = ACTIONS(3002), - [aux_sym_cipher_token1] = ACTIONS(3004), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3002), - [aux_sym_compression_token1] = ACTIONS(3002), - [aux_sym_connection_attempts_token1] = ACTIONS(3002), - [aux_sym_connect_timeout_token1] = ACTIONS(3002), - [aux_sym_control_master_token1] = ACTIONS(3002), - [aux_sym_control_path_token1] = ACTIONS(3002), - [aux_sym_control_persist_token1] = ACTIONS(3002), - [aux_sym_dynamic_forward_token1] = ACTIONS(3002), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3002), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3002), - [aux_sym_escape_char_token1] = ACTIONS(3002), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3002), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3002), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3002), - [aux_sym_forward_agent_token1] = ACTIONS(3002), - [aux_sym_forward_x11_token1] = ACTIONS(3004), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3002), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3002), - [aux_sym_gateway_ports_token1] = ACTIONS(3002), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3002), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3002), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3002), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3002), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3002), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3002), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3002), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3002), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3002), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3002), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3002), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3002), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3002), - [aux_sym_host_key_alias_token1] = ACTIONS(3002), - [aux_sym_hostname_token1] = ACTIONS(3002), - [aux_sym_identities_only_token1] = ACTIONS(3002), - [aux_sym_identity_agent_token1] = ACTIONS(3002), - [aux_sym_identity_file_token1] = ACTIONS(3002), - [aux_sym_ignore_unknown_token1] = ACTIONS(3002), - [aux_sym_include_token1] = ACTIONS(3002), - [aux_sym_ip_qos_token1] = ACTIONS(3002), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3002), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3002), - [aux_sym_kex_algorithms_token1] = ACTIONS(3002), - [aux_sym_known_hosts_command_token1] = ACTIONS(3002), - [aux_sym_local_command_token1] = ACTIONS(3002), - [aux_sym_local_forward_token1] = ACTIONS(3002), - [aux_sym_log_level_token1] = ACTIONS(3002), - [aux_sym_log_verbose_token1] = ACTIONS(3002), - [aux_sym_macs_token1] = ACTIONS(3002), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3002), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3002), - [aux_sym_password_authentication_token1] = ACTIONS(3002), - [aux_sym_permit_local_command_token1] = ACTIONS(3002), - [aux_sym_permit_remote_open_token1] = ACTIONS(3002), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3002), - [aux_sym_port_token1] = ACTIONS(3002), - [aux_sym_preferred_authentications_token1] = ACTIONS(3002), - [aux_sym_protocol_token1] = ACTIONS(3002), - [aux_sym_proxy_command_token1] = ACTIONS(3002), - [aux_sym_proxy_jump_token1] = ACTIONS(3002), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3002), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3002), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3002), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3002), - [aux_sym_rekey_limit_token1] = ACTIONS(3002), - [aux_sym_remote_command_token1] = ACTIONS(3002), - [aux_sym_remote_forward_token1] = ACTIONS(3002), - [aux_sym_request_tty_token1] = ACTIONS(3002), - [aux_sym_required_rsa_size_token1] = ACTIONS(3002), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3002), - [aux_sym_security_key_provider_token1] = ACTIONS(3002), - [aux_sym_send_env_token1] = ACTIONS(3002), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3002), - [aux_sym_server_alive_interval_token1] = ACTIONS(3002), - [aux_sym_session_type_token1] = ACTIONS(3002), - [aux_sym_set_env_token1] = ACTIONS(3002), - [aux_sym_stdin_null_token1] = ACTIONS(3002), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3002), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3002), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3002), - [aux_sym_syslog_facility_token1] = ACTIONS(3002), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3002), - [aux_sym_keep_alive_token1] = ACTIONS(3002), - [aux_sym_tag_token1] = ACTIONS(3002), - [aux_sym_tunnel_token1] = ACTIONS(3004), - [aux_sym_tunnel_device_token1] = ACTIONS(3002), - [aux_sym_update_host_keys_token1] = ACTIONS(3002), - [aux_sym_use_keychain_token1] = ACTIONS(3002), - [aux_sym_use_roaming_token1] = ACTIONS(3002), - [aux_sym_user_token1] = ACTIONS(3004), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3002), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3002), - [aux_sym_visual_host_key_token1] = ACTIONS(3002), - [aux_sym_xauth_location_token1] = ACTIONS(3002), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3009), + [anon_sym_DQUOTE] = ACTIONS(3011), + [aux_sym_match_token1] = ACTIONS(3007), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3007), + [aux_sym_address_family_token1] = ACTIONS(3007), + [aux_sym_batch_mode_token1] = ACTIONS(3007), + [aux_sym_bind_address_token1] = ACTIONS(3007), + [aux_sym_bind_interface_token1] = ACTIONS(3007), + [aux_sym_canonical_domains_token1] = ACTIONS(3007), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3007), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3007), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3007), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3007), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3007), + [aux_sym_certificate_file_token1] = ACTIONS(3007), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3007), + [aux_sym_channel_timeout_token1] = ACTIONS(3007), + [aux_sym_check_host_ip_token1] = ACTIONS(3007), + [aux_sym_ciphers_token1] = ACTIONS(3007), + [aux_sym_cipher_token1] = ACTIONS(3009), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3007), + [aux_sym_compression_token1] = ACTIONS(3007), + [aux_sym_connection_attempts_token1] = ACTIONS(3007), + [aux_sym_connect_timeout_token1] = ACTIONS(3007), + [aux_sym_control_master_token1] = ACTIONS(3007), + [aux_sym_control_path_token1] = ACTIONS(3007), + [aux_sym_control_persist_token1] = ACTIONS(3007), + [aux_sym_dynamic_forward_token1] = ACTIONS(3007), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3007), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3007), + [aux_sym_escape_char_token1] = ACTIONS(3007), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3007), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3007), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3007), + [aux_sym_forward_agent_token1] = ACTIONS(3007), + [aux_sym_forward_x11_token1] = ACTIONS(3009), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3007), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3007), + [aux_sym_gateway_ports_token1] = ACTIONS(3007), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3007), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3007), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3007), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3007), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3007), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3007), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3007), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3007), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3007), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3007), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3007), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3007), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3007), + [aux_sym_host_key_alias_token1] = ACTIONS(3007), + [aux_sym_hostname_token1] = ACTIONS(3007), + [aux_sym_identities_only_token1] = ACTIONS(3007), + [aux_sym_identity_agent_token1] = ACTIONS(3007), + [aux_sym_identity_file_token1] = ACTIONS(3007), + [aux_sym_ignore_unknown_token1] = ACTIONS(3007), + [aux_sym_include_token1] = ACTIONS(3007), + [aux_sym_ip_qos_token1] = ACTIONS(3007), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3007), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3007), + [aux_sym_kex_algorithms_token1] = ACTIONS(3007), + [aux_sym_known_hosts_command_token1] = ACTIONS(3007), + [aux_sym_local_command_token1] = ACTIONS(3007), + [aux_sym_local_forward_token1] = ACTIONS(3007), + [aux_sym_log_level_token1] = ACTIONS(3007), + [aux_sym_log_verbose_token1] = ACTIONS(3007), + [aux_sym_macs_token1] = ACTIONS(3007), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3007), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3007), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3007), + [aux_sym_password_authentication_token1] = ACTIONS(3007), + [aux_sym_permit_local_command_token1] = ACTIONS(3007), + [aux_sym_permit_remote_open_token1] = ACTIONS(3007), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3007), + [aux_sym_port_token1] = ACTIONS(3007), + [aux_sym_preferred_authentications_token1] = ACTIONS(3007), + [aux_sym_protocol_token1] = ACTIONS(3007), + [aux_sym_proxy_command_token1] = ACTIONS(3007), + [aux_sym_proxy_jump_token1] = ACTIONS(3007), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3007), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3007), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3007), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3007), + [aux_sym_rekey_limit_token1] = ACTIONS(3007), + [aux_sym_remote_command_token1] = ACTIONS(3007), + [aux_sym_remote_forward_token1] = ACTIONS(3007), + [aux_sym_request_tty_token1] = ACTIONS(3007), + [aux_sym_required_rsa_size_token1] = ACTIONS(3007), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3007), + [aux_sym_security_key_provider_token1] = ACTIONS(3007), + [aux_sym_send_env_token1] = ACTIONS(3007), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3007), + [aux_sym_server_alive_interval_token1] = ACTIONS(3007), + [aux_sym_session_type_token1] = ACTIONS(3007), + [aux_sym_set_env_token1] = ACTIONS(3007), + [aux_sym_stdin_null_token1] = ACTIONS(3007), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3007), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3007), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3007), + [aux_sym_syslog_facility_token1] = ACTIONS(3007), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3007), + [aux_sym_keep_alive_token1] = ACTIONS(3007), + [aux_sym_tag_token1] = ACTIONS(3007), + [aux_sym_tunnel_token1] = ACTIONS(3009), + [aux_sym_tunnel_device_token1] = ACTIONS(3007), + [aux_sym_update_host_keys_token1] = ACTIONS(3007), + [aux_sym_use_keychain_token1] = ACTIONS(3007), + [aux_sym_use_roaming_token1] = ACTIONS(3007), + [aux_sym_user_token1] = ACTIONS(3009), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3007), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3007), + [aux_sym_visual_host_key_token1] = ACTIONS(3007), + [aux_sym_xauth_location_token1] = ACTIONS(3007), }, [444] = { - [ts_builtin_sym_end] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3010), - [anon_sym_DQUOTE] = ACTIONS(3008), - [aux_sym_match_token1] = ACTIONS(3008), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3008), - [aux_sym_address_family_token1] = ACTIONS(3008), - [aux_sym_batch_mode_token1] = ACTIONS(3008), - [aux_sym_bind_address_token1] = ACTIONS(3008), - [aux_sym_bind_interface_token1] = ACTIONS(3008), - [aux_sym_canonical_domains_token1] = ACTIONS(3008), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3008), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3008), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3008), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3008), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3008), - [aux_sym_certificate_file_token1] = ACTIONS(3008), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3008), - [aux_sym_channel_timeout_token1] = ACTIONS(3008), - [aux_sym_check_host_ip_token1] = ACTIONS(3008), - [aux_sym_ciphers_token1] = ACTIONS(3008), - [aux_sym_cipher_token1] = ACTIONS(3010), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3008), - [aux_sym_compression_token1] = ACTIONS(3008), - [aux_sym_connection_attempts_token1] = ACTIONS(3008), - [aux_sym_connect_timeout_token1] = ACTIONS(3008), - [aux_sym_control_master_token1] = ACTIONS(3008), - [aux_sym_control_path_token1] = ACTIONS(3008), - [aux_sym_control_persist_token1] = ACTIONS(3008), - [aux_sym_dynamic_forward_token1] = ACTIONS(3008), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3008), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3008), - [aux_sym_escape_char_token1] = ACTIONS(3008), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3008), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3008), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3008), - [aux_sym_forward_agent_token1] = ACTIONS(3008), - [aux_sym_forward_x11_token1] = ACTIONS(3010), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3008), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3008), - [aux_sym_gateway_ports_token1] = ACTIONS(3008), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3008), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3008), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3008), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3008), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3008), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3008), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3008), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3008), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3008), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3008), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3008), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3008), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3008), - [aux_sym_host_key_alias_token1] = ACTIONS(3008), - [aux_sym_hostname_token1] = ACTIONS(3008), - [aux_sym_identities_only_token1] = ACTIONS(3008), - [aux_sym_identity_agent_token1] = ACTIONS(3008), - [aux_sym_identity_file_token1] = ACTIONS(3008), - [aux_sym_ignore_unknown_token1] = ACTIONS(3008), - [aux_sym_include_token1] = ACTIONS(3008), - [aux_sym_ip_qos_token1] = ACTIONS(3008), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3008), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3008), - [aux_sym_kex_algorithms_token1] = ACTIONS(3008), - [aux_sym_known_hosts_command_token1] = ACTIONS(3008), - [aux_sym_local_command_token1] = ACTIONS(3008), - [aux_sym_local_forward_token1] = ACTIONS(3008), - [aux_sym_log_level_token1] = ACTIONS(3008), - [aux_sym_log_verbose_token1] = ACTIONS(3008), - [aux_sym_macs_token1] = ACTIONS(3008), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3008), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3008), - [aux_sym_password_authentication_token1] = ACTIONS(3008), - [aux_sym_permit_local_command_token1] = ACTIONS(3008), - [aux_sym_permit_remote_open_token1] = ACTIONS(3008), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3008), - [aux_sym_port_token1] = ACTIONS(3008), - [aux_sym_preferred_authentications_token1] = ACTIONS(3008), - [aux_sym_protocol_token1] = ACTIONS(3008), - [aux_sym_proxy_command_token1] = ACTIONS(3008), - [aux_sym_proxy_jump_token1] = ACTIONS(3008), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3008), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3008), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3008), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3008), - [aux_sym_rekey_limit_token1] = ACTIONS(3008), - [aux_sym_remote_command_token1] = ACTIONS(3008), - [aux_sym_remote_forward_token1] = ACTIONS(3008), - [aux_sym_request_tty_token1] = ACTIONS(3008), - [aux_sym_required_rsa_size_token1] = ACTIONS(3008), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3008), - [aux_sym_security_key_provider_token1] = ACTIONS(3008), - [aux_sym_send_env_token1] = ACTIONS(3008), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3008), - [aux_sym_server_alive_interval_token1] = ACTIONS(3008), - [aux_sym_session_type_token1] = ACTIONS(3008), - [aux_sym_set_env_token1] = ACTIONS(3008), - [aux_sym_stdin_null_token1] = ACTIONS(3008), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3008), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3008), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3008), - [aux_sym_syslog_facility_token1] = ACTIONS(3008), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3008), - [aux_sym_keep_alive_token1] = ACTIONS(3008), - [aux_sym_tag_token1] = ACTIONS(3008), - [aux_sym_tunnel_token1] = ACTIONS(3010), - [aux_sym_tunnel_device_token1] = ACTIONS(3008), - [aux_sym_update_host_keys_token1] = ACTIONS(3008), - [aux_sym_use_keychain_token1] = ACTIONS(3008), - [aux_sym_use_roaming_token1] = ACTIONS(3008), - [aux_sym_user_token1] = ACTIONS(3010), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3008), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3008), - [aux_sym_visual_host_key_token1] = ACTIONS(3008), - [aux_sym_xauth_location_token1] = ACTIONS(3008), + [ts_builtin_sym_end] = ACTIONS(3013), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3015), + [anon_sym_DQUOTE] = ACTIONS(3013), + [aux_sym_match_token1] = ACTIONS(3013), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3013), + [aux_sym_address_family_token1] = ACTIONS(3013), + [aux_sym_batch_mode_token1] = ACTIONS(3013), + [aux_sym_bind_address_token1] = ACTIONS(3013), + [aux_sym_bind_interface_token1] = ACTIONS(3013), + [aux_sym_canonical_domains_token1] = ACTIONS(3013), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3013), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3013), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3013), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3013), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3013), + [aux_sym_certificate_file_token1] = ACTIONS(3013), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3013), + [aux_sym_channel_timeout_token1] = ACTIONS(3013), + [aux_sym_check_host_ip_token1] = ACTIONS(3013), + [aux_sym_ciphers_token1] = ACTIONS(3013), + [aux_sym_cipher_token1] = ACTIONS(3015), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3013), + [aux_sym_compression_token1] = ACTIONS(3013), + [aux_sym_connection_attempts_token1] = ACTIONS(3013), + [aux_sym_connect_timeout_token1] = ACTIONS(3013), + [aux_sym_control_master_token1] = ACTIONS(3013), + [aux_sym_control_path_token1] = ACTIONS(3013), + [aux_sym_control_persist_token1] = ACTIONS(3013), + [aux_sym_dynamic_forward_token1] = ACTIONS(3013), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3013), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3013), + [aux_sym_escape_char_token1] = ACTIONS(3013), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3013), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3013), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3013), + [aux_sym_forward_agent_token1] = ACTIONS(3013), + [aux_sym_forward_x11_token1] = ACTIONS(3015), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3013), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3013), + [aux_sym_gateway_ports_token1] = ACTIONS(3013), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3013), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3013), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3013), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3013), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3013), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3013), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3013), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3013), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3013), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3013), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3013), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3013), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3013), + [aux_sym_host_key_alias_token1] = ACTIONS(3013), + [aux_sym_hostname_token1] = ACTIONS(3013), + [aux_sym_identities_only_token1] = ACTIONS(3013), + [aux_sym_identity_agent_token1] = ACTIONS(3013), + [aux_sym_identity_file_token1] = ACTIONS(3013), + [aux_sym_ignore_unknown_token1] = ACTIONS(3013), + [aux_sym_include_token1] = ACTIONS(3013), + [aux_sym_ip_qos_token1] = ACTIONS(3013), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3013), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3013), + [aux_sym_kex_algorithms_token1] = ACTIONS(3013), + [aux_sym_known_hosts_command_token1] = ACTIONS(3013), + [aux_sym_local_command_token1] = ACTIONS(3013), + [aux_sym_local_forward_token1] = ACTIONS(3013), + [aux_sym_log_level_token1] = ACTIONS(3013), + [aux_sym_log_verbose_token1] = ACTIONS(3013), + [aux_sym_macs_token1] = ACTIONS(3013), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3013), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3013), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3013), + [aux_sym_password_authentication_token1] = ACTIONS(3013), + [aux_sym_permit_local_command_token1] = ACTIONS(3013), + [aux_sym_permit_remote_open_token1] = ACTIONS(3013), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3013), + [aux_sym_port_token1] = ACTIONS(3013), + [aux_sym_preferred_authentications_token1] = ACTIONS(3013), + [aux_sym_protocol_token1] = ACTIONS(3013), + [aux_sym_proxy_command_token1] = ACTIONS(3013), + [aux_sym_proxy_jump_token1] = ACTIONS(3013), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3013), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3013), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3013), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3013), + [aux_sym_rekey_limit_token1] = ACTIONS(3013), + [aux_sym_remote_command_token1] = ACTIONS(3013), + [aux_sym_remote_forward_token1] = ACTIONS(3013), + [aux_sym_request_tty_token1] = ACTIONS(3013), + [aux_sym_required_rsa_size_token1] = ACTIONS(3013), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3013), + [aux_sym_security_key_provider_token1] = ACTIONS(3013), + [aux_sym_send_env_token1] = ACTIONS(3013), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3013), + [aux_sym_server_alive_interval_token1] = ACTIONS(3013), + [aux_sym_session_type_token1] = ACTIONS(3013), + [aux_sym_set_env_token1] = ACTIONS(3013), + [aux_sym_stdin_null_token1] = ACTIONS(3013), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3013), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3013), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3013), + [aux_sym_syslog_facility_token1] = ACTIONS(3013), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3013), + [aux_sym_keep_alive_token1] = ACTIONS(3013), + [aux_sym_tag_token1] = ACTIONS(3013), + [aux_sym_tunnel_token1] = ACTIONS(3015), + [aux_sym_tunnel_device_token1] = ACTIONS(3013), + [aux_sym_update_host_keys_token1] = ACTIONS(3013), + [aux_sym_use_keychain_token1] = ACTIONS(3013), + [aux_sym_use_roaming_token1] = ACTIONS(3013), + [aux_sym_user_token1] = ACTIONS(3015), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3013), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3013), + [aux_sym_visual_host_key_token1] = ACTIONS(3013), + [aux_sym_xauth_location_token1] = ACTIONS(3013), }, [445] = { - [ts_builtin_sym_end] = ACTIONS(3012), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3014), - [anon_sym_DQUOTE] = ACTIONS(3016), - [aux_sym_match_token1] = ACTIONS(3012), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3012), - [aux_sym_address_family_token1] = ACTIONS(3012), - [aux_sym_batch_mode_token1] = ACTIONS(3012), - [aux_sym_bind_address_token1] = ACTIONS(3012), - [aux_sym_bind_interface_token1] = ACTIONS(3012), - [aux_sym_canonical_domains_token1] = ACTIONS(3012), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3012), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3012), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3012), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3012), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3012), - [aux_sym_certificate_file_token1] = ACTIONS(3012), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3012), - [aux_sym_channel_timeout_token1] = ACTIONS(3012), - [aux_sym_check_host_ip_token1] = ACTIONS(3012), - [aux_sym_ciphers_token1] = ACTIONS(3012), - [aux_sym_cipher_token1] = ACTIONS(3014), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3012), - [aux_sym_compression_token1] = ACTIONS(3012), - [aux_sym_connection_attempts_token1] = ACTIONS(3012), - [aux_sym_connect_timeout_token1] = ACTIONS(3012), - [aux_sym_control_master_token1] = ACTIONS(3012), - [aux_sym_control_path_token1] = ACTIONS(3012), - [aux_sym_control_persist_token1] = ACTIONS(3012), - [aux_sym_dynamic_forward_token1] = ACTIONS(3012), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3012), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3012), - [aux_sym_escape_char_token1] = ACTIONS(3012), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3012), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3012), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3012), - [aux_sym_forward_agent_token1] = ACTIONS(3012), - [aux_sym_forward_x11_token1] = ACTIONS(3014), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3012), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3012), - [aux_sym_gateway_ports_token1] = ACTIONS(3012), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3012), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3012), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3012), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3012), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3012), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3012), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3012), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3012), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3012), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3012), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3012), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3012), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3012), - [aux_sym_host_key_alias_token1] = ACTIONS(3012), - [aux_sym_hostname_token1] = ACTIONS(3012), - [aux_sym_identities_only_token1] = ACTIONS(3012), - [aux_sym_identity_agent_token1] = ACTIONS(3012), - [aux_sym_identity_file_token1] = ACTIONS(3012), - [aux_sym_ignore_unknown_token1] = ACTIONS(3012), - [aux_sym_include_token1] = ACTIONS(3012), - [aux_sym_ip_qos_token1] = ACTIONS(3012), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3012), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3012), - [aux_sym_kex_algorithms_token1] = ACTIONS(3012), - [aux_sym_known_hosts_command_token1] = ACTIONS(3012), - [aux_sym_local_command_token1] = ACTIONS(3012), - [aux_sym_local_forward_token1] = ACTIONS(3012), - [aux_sym_log_level_token1] = ACTIONS(3012), - [aux_sym_log_verbose_token1] = ACTIONS(3012), - [aux_sym_macs_token1] = ACTIONS(3012), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3012), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3012), - [aux_sym_password_authentication_token1] = ACTIONS(3012), - [aux_sym_permit_local_command_token1] = ACTIONS(3012), - [aux_sym_permit_remote_open_token1] = ACTIONS(3012), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3012), - [aux_sym_port_token1] = ACTIONS(3012), - [aux_sym_preferred_authentications_token1] = ACTIONS(3012), - [aux_sym_protocol_token1] = ACTIONS(3012), - [aux_sym_proxy_command_token1] = ACTIONS(3012), - [aux_sym_proxy_jump_token1] = ACTIONS(3012), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3012), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3012), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3012), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3012), - [aux_sym_rekey_limit_token1] = ACTIONS(3012), - [aux_sym_remote_command_token1] = ACTIONS(3012), - [aux_sym_remote_forward_token1] = ACTIONS(3012), - [aux_sym_request_tty_token1] = ACTIONS(3012), - [aux_sym_required_rsa_size_token1] = ACTIONS(3012), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3012), - [aux_sym_security_key_provider_token1] = ACTIONS(3012), - [aux_sym_send_env_token1] = ACTIONS(3012), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3012), - [aux_sym_server_alive_interval_token1] = ACTIONS(3012), - [aux_sym_session_type_token1] = ACTIONS(3012), - [aux_sym_set_env_token1] = ACTIONS(3012), - [aux_sym_stdin_null_token1] = ACTIONS(3012), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3012), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3012), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3012), - [aux_sym_syslog_facility_token1] = ACTIONS(3012), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3012), - [aux_sym_keep_alive_token1] = ACTIONS(3012), - [aux_sym_tag_token1] = ACTIONS(3012), - [aux_sym_tunnel_token1] = ACTIONS(3014), - [aux_sym_tunnel_device_token1] = ACTIONS(3012), - [aux_sym_update_host_keys_token1] = ACTIONS(3012), - [aux_sym_use_keychain_token1] = ACTIONS(3012), - [aux_sym_use_roaming_token1] = ACTIONS(3012), - [aux_sym_user_token1] = ACTIONS(3014), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3012), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3012), - [aux_sym_visual_host_key_token1] = ACTIONS(3012), - [aux_sym_xauth_location_token1] = ACTIONS(3012), + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3019), + [anon_sym_DQUOTE] = ACTIONS(3021), + [aux_sym_match_token1] = ACTIONS(3017), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3017), + [aux_sym_address_family_token1] = ACTIONS(3017), + [aux_sym_batch_mode_token1] = ACTIONS(3017), + [aux_sym_bind_address_token1] = ACTIONS(3017), + [aux_sym_bind_interface_token1] = ACTIONS(3017), + [aux_sym_canonical_domains_token1] = ACTIONS(3017), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3017), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3017), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3017), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3017), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3017), + [aux_sym_certificate_file_token1] = ACTIONS(3017), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3017), + [aux_sym_channel_timeout_token1] = ACTIONS(3017), + [aux_sym_check_host_ip_token1] = ACTIONS(3017), + [aux_sym_ciphers_token1] = ACTIONS(3017), + [aux_sym_cipher_token1] = ACTIONS(3019), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3017), + [aux_sym_compression_token1] = ACTIONS(3017), + [aux_sym_connection_attempts_token1] = ACTIONS(3017), + [aux_sym_connect_timeout_token1] = ACTIONS(3017), + [aux_sym_control_master_token1] = ACTIONS(3017), + [aux_sym_control_path_token1] = ACTIONS(3017), + [aux_sym_control_persist_token1] = ACTIONS(3017), + [aux_sym_dynamic_forward_token1] = ACTIONS(3017), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3017), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3017), + [aux_sym_escape_char_token1] = ACTIONS(3017), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3017), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3017), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3017), + [aux_sym_forward_agent_token1] = ACTIONS(3017), + [aux_sym_forward_x11_token1] = ACTIONS(3019), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3017), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3017), + [aux_sym_gateway_ports_token1] = ACTIONS(3017), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3017), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3017), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3017), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3017), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3017), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3017), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3017), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3017), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3017), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3017), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3017), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3017), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3017), + [aux_sym_host_key_alias_token1] = ACTIONS(3017), + [aux_sym_hostname_token1] = ACTIONS(3017), + [aux_sym_identities_only_token1] = ACTIONS(3017), + [aux_sym_identity_agent_token1] = ACTIONS(3017), + [aux_sym_identity_file_token1] = ACTIONS(3017), + [aux_sym_ignore_unknown_token1] = ACTIONS(3017), + [aux_sym_include_token1] = ACTIONS(3017), + [aux_sym_ip_qos_token1] = ACTIONS(3017), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3017), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3017), + [aux_sym_kex_algorithms_token1] = ACTIONS(3017), + [aux_sym_known_hosts_command_token1] = ACTIONS(3017), + [aux_sym_local_command_token1] = ACTIONS(3017), + [aux_sym_local_forward_token1] = ACTIONS(3017), + [aux_sym_log_level_token1] = ACTIONS(3017), + [aux_sym_log_verbose_token1] = ACTIONS(3017), + [aux_sym_macs_token1] = ACTIONS(3017), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3017), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3017), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3017), + [aux_sym_password_authentication_token1] = ACTIONS(3017), + [aux_sym_permit_local_command_token1] = ACTIONS(3017), + [aux_sym_permit_remote_open_token1] = ACTIONS(3017), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3017), + [aux_sym_port_token1] = ACTIONS(3017), + [aux_sym_preferred_authentications_token1] = ACTIONS(3017), + [aux_sym_protocol_token1] = ACTIONS(3017), + [aux_sym_proxy_command_token1] = ACTIONS(3017), + [aux_sym_proxy_jump_token1] = ACTIONS(3017), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3017), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3017), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3017), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3017), + [aux_sym_rekey_limit_token1] = ACTIONS(3017), + [aux_sym_remote_command_token1] = ACTIONS(3017), + [aux_sym_remote_forward_token1] = ACTIONS(3017), + [aux_sym_request_tty_token1] = ACTIONS(3017), + [aux_sym_required_rsa_size_token1] = ACTIONS(3017), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3017), + [aux_sym_security_key_provider_token1] = ACTIONS(3017), + [aux_sym_send_env_token1] = ACTIONS(3017), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3017), + [aux_sym_server_alive_interval_token1] = ACTIONS(3017), + [aux_sym_session_type_token1] = ACTIONS(3017), + [aux_sym_set_env_token1] = ACTIONS(3017), + [aux_sym_stdin_null_token1] = ACTIONS(3017), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3017), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3017), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3017), + [aux_sym_syslog_facility_token1] = ACTIONS(3017), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3017), + [aux_sym_keep_alive_token1] = ACTIONS(3017), + [aux_sym_tag_token1] = ACTIONS(3017), + [aux_sym_tunnel_token1] = ACTIONS(3019), + [aux_sym_tunnel_device_token1] = ACTIONS(3017), + [aux_sym_update_host_keys_token1] = ACTIONS(3017), + [aux_sym_use_keychain_token1] = ACTIONS(3017), + [aux_sym_use_roaming_token1] = ACTIONS(3017), + [aux_sym_user_token1] = ACTIONS(3019), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3017), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3017), + [aux_sym_visual_host_key_token1] = ACTIONS(3017), + [aux_sym_xauth_location_token1] = ACTIONS(3017), }, [446] = { - [ts_builtin_sym_end] = ACTIONS(3018), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3020), - [anon_sym_DQUOTE] = ACTIONS(3022), - [aux_sym_match_token1] = ACTIONS(3018), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3018), - [aux_sym_address_family_token1] = ACTIONS(3018), - [aux_sym_batch_mode_token1] = ACTIONS(3018), - [aux_sym_bind_address_token1] = ACTIONS(3018), - [aux_sym_bind_interface_token1] = ACTIONS(3018), - [aux_sym_canonical_domains_token1] = ACTIONS(3018), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3018), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3018), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3018), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3018), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3018), - [aux_sym_certificate_file_token1] = ACTIONS(3018), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3018), - [aux_sym_channel_timeout_token1] = ACTIONS(3018), - [aux_sym_check_host_ip_token1] = ACTIONS(3018), - [aux_sym_ciphers_token1] = ACTIONS(3018), - [aux_sym_cipher_token1] = ACTIONS(3020), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3018), - [aux_sym_compression_token1] = ACTIONS(3018), - [aux_sym_connection_attempts_token1] = ACTIONS(3018), - [aux_sym_connect_timeout_token1] = ACTIONS(3018), - [aux_sym_control_master_token1] = ACTIONS(3018), - [aux_sym_control_path_token1] = ACTIONS(3018), - [aux_sym_control_persist_token1] = ACTIONS(3018), - [aux_sym_dynamic_forward_token1] = ACTIONS(3018), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3018), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3018), - [aux_sym_escape_char_token1] = ACTIONS(3018), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3018), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3018), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3018), - [aux_sym_forward_agent_token1] = ACTIONS(3018), - [aux_sym_forward_x11_token1] = ACTIONS(3020), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3018), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3018), - [aux_sym_gateway_ports_token1] = ACTIONS(3018), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3018), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3018), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3018), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3018), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3018), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3018), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3018), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3018), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3018), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3018), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3018), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3018), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3018), - [aux_sym_host_key_alias_token1] = ACTIONS(3018), - [aux_sym_hostname_token1] = ACTIONS(3018), - [aux_sym_identities_only_token1] = ACTIONS(3018), - [aux_sym_identity_agent_token1] = ACTIONS(3018), - [aux_sym_identity_file_token1] = ACTIONS(3018), - [aux_sym_ignore_unknown_token1] = ACTIONS(3018), - [aux_sym_include_token1] = ACTIONS(3018), - [aux_sym_ip_qos_token1] = ACTIONS(3018), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3018), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3018), - [aux_sym_kex_algorithms_token1] = ACTIONS(3018), - [aux_sym_known_hosts_command_token1] = ACTIONS(3018), - [aux_sym_local_command_token1] = ACTIONS(3018), - [aux_sym_local_forward_token1] = ACTIONS(3018), - [aux_sym_log_level_token1] = ACTIONS(3018), - [aux_sym_log_verbose_token1] = ACTIONS(3018), - [aux_sym_macs_token1] = ACTIONS(3018), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3018), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3018), - [aux_sym_password_authentication_token1] = ACTIONS(3018), - [aux_sym_permit_local_command_token1] = ACTIONS(3018), - [aux_sym_permit_remote_open_token1] = ACTIONS(3018), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3018), - [aux_sym_port_token1] = ACTIONS(3018), - [aux_sym_preferred_authentications_token1] = ACTIONS(3018), - [aux_sym_protocol_token1] = ACTIONS(3018), - [aux_sym_proxy_command_token1] = ACTIONS(3018), - [aux_sym_proxy_jump_token1] = ACTIONS(3018), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3018), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3018), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3018), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3018), - [aux_sym_rekey_limit_token1] = ACTIONS(3018), - [aux_sym_remote_command_token1] = ACTIONS(3018), - [aux_sym_remote_forward_token1] = ACTIONS(3018), - [aux_sym_request_tty_token1] = ACTIONS(3018), - [aux_sym_required_rsa_size_token1] = ACTIONS(3018), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3018), - [aux_sym_security_key_provider_token1] = ACTIONS(3018), - [aux_sym_send_env_token1] = ACTIONS(3018), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3018), - [aux_sym_server_alive_interval_token1] = ACTIONS(3018), - [aux_sym_session_type_token1] = ACTIONS(3018), - [aux_sym_set_env_token1] = ACTIONS(3018), - [aux_sym_stdin_null_token1] = ACTIONS(3018), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3018), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3018), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3018), - [aux_sym_syslog_facility_token1] = ACTIONS(3018), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3018), - [aux_sym_keep_alive_token1] = ACTIONS(3018), - [aux_sym_tag_token1] = ACTIONS(3018), - [aux_sym_tunnel_token1] = ACTIONS(3020), - [aux_sym_tunnel_device_token1] = ACTIONS(3018), - [aux_sym_update_host_keys_token1] = ACTIONS(3018), - [aux_sym_use_keychain_token1] = ACTIONS(3018), - [aux_sym_use_roaming_token1] = ACTIONS(3018), - [aux_sym_user_token1] = ACTIONS(3020), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3018), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3018), - [aux_sym_visual_host_key_token1] = ACTIONS(3018), - [aux_sym_xauth_location_token1] = ACTIONS(3018), + [ts_builtin_sym_end] = ACTIONS(3023), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3025), + [anon_sym_DQUOTE] = ACTIONS(3027), + [aux_sym_match_token1] = ACTIONS(3023), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3023), + [aux_sym_address_family_token1] = ACTIONS(3023), + [aux_sym_batch_mode_token1] = ACTIONS(3023), + [aux_sym_bind_address_token1] = ACTIONS(3023), + [aux_sym_bind_interface_token1] = ACTIONS(3023), + [aux_sym_canonical_domains_token1] = ACTIONS(3023), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3023), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3023), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3023), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3023), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3023), + [aux_sym_certificate_file_token1] = ACTIONS(3023), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3023), + [aux_sym_channel_timeout_token1] = ACTIONS(3023), + [aux_sym_check_host_ip_token1] = ACTIONS(3023), + [aux_sym_ciphers_token1] = ACTIONS(3023), + [aux_sym_cipher_token1] = ACTIONS(3025), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3023), + [aux_sym_compression_token1] = ACTIONS(3023), + [aux_sym_connection_attempts_token1] = ACTIONS(3023), + [aux_sym_connect_timeout_token1] = ACTIONS(3023), + [aux_sym_control_master_token1] = ACTIONS(3023), + [aux_sym_control_path_token1] = ACTIONS(3023), + [aux_sym_control_persist_token1] = ACTIONS(3023), + [aux_sym_dynamic_forward_token1] = ACTIONS(3023), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3023), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3023), + [aux_sym_escape_char_token1] = ACTIONS(3023), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3023), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3023), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3023), + [aux_sym_forward_agent_token1] = ACTIONS(3023), + [aux_sym_forward_x11_token1] = ACTIONS(3025), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3023), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3023), + [aux_sym_gateway_ports_token1] = ACTIONS(3023), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3023), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3023), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3023), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3023), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3023), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3023), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3023), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3023), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3023), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3023), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3023), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3023), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3023), + [aux_sym_host_key_alias_token1] = ACTIONS(3023), + [aux_sym_hostname_token1] = ACTIONS(3023), + [aux_sym_identities_only_token1] = ACTIONS(3023), + [aux_sym_identity_agent_token1] = ACTIONS(3023), + [aux_sym_identity_file_token1] = ACTIONS(3023), + [aux_sym_ignore_unknown_token1] = ACTIONS(3023), + [aux_sym_include_token1] = ACTIONS(3023), + [aux_sym_ip_qos_token1] = ACTIONS(3023), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3023), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3023), + [aux_sym_kex_algorithms_token1] = ACTIONS(3023), + [aux_sym_known_hosts_command_token1] = ACTIONS(3023), + [aux_sym_local_command_token1] = ACTIONS(3023), + [aux_sym_local_forward_token1] = ACTIONS(3023), + [aux_sym_log_level_token1] = ACTIONS(3023), + [aux_sym_log_verbose_token1] = ACTIONS(3023), + [aux_sym_macs_token1] = ACTIONS(3023), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3023), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3023), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3023), + [aux_sym_password_authentication_token1] = ACTIONS(3023), + [aux_sym_permit_local_command_token1] = ACTIONS(3023), + [aux_sym_permit_remote_open_token1] = ACTIONS(3023), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3023), + [aux_sym_port_token1] = ACTIONS(3023), + [aux_sym_preferred_authentications_token1] = ACTIONS(3023), + [aux_sym_protocol_token1] = ACTIONS(3023), + [aux_sym_proxy_command_token1] = ACTIONS(3023), + [aux_sym_proxy_jump_token1] = ACTIONS(3023), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3023), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3023), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3023), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3023), + [aux_sym_rekey_limit_token1] = ACTIONS(3023), + [aux_sym_remote_command_token1] = ACTIONS(3023), + [aux_sym_remote_forward_token1] = ACTIONS(3023), + [aux_sym_request_tty_token1] = ACTIONS(3023), + [aux_sym_required_rsa_size_token1] = ACTIONS(3023), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3023), + [aux_sym_security_key_provider_token1] = ACTIONS(3023), + [aux_sym_send_env_token1] = ACTIONS(3023), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3023), + [aux_sym_server_alive_interval_token1] = ACTIONS(3023), + [aux_sym_session_type_token1] = ACTIONS(3023), + [aux_sym_set_env_token1] = ACTIONS(3023), + [aux_sym_stdin_null_token1] = ACTIONS(3023), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3023), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3023), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3023), + [aux_sym_syslog_facility_token1] = ACTIONS(3023), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3023), + [aux_sym_keep_alive_token1] = ACTIONS(3023), + [aux_sym_tag_token1] = ACTIONS(3023), + [aux_sym_tunnel_token1] = ACTIONS(3025), + [aux_sym_tunnel_device_token1] = ACTIONS(3023), + [aux_sym_update_host_keys_token1] = ACTIONS(3023), + [aux_sym_use_keychain_token1] = ACTIONS(3023), + [aux_sym_use_roaming_token1] = ACTIONS(3023), + [aux_sym_user_token1] = ACTIONS(3025), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3023), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3023), + [aux_sym_visual_host_key_token1] = ACTIONS(3023), + [aux_sym_xauth_location_token1] = ACTIONS(3023), }, [447] = { - [ts_builtin_sym_end] = ACTIONS(3024), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3026), - [anon_sym_DQUOTE] = ACTIONS(3024), - [aux_sym_match_token1] = ACTIONS(3024), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3024), - [aux_sym_address_family_token1] = ACTIONS(3024), - [aux_sym_batch_mode_token1] = ACTIONS(3024), - [aux_sym_bind_address_token1] = ACTIONS(3024), - [aux_sym_bind_interface_token1] = ACTIONS(3024), - [aux_sym_canonical_domains_token1] = ACTIONS(3024), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3024), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3024), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3024), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3024), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3024), - [aux_sym_certificate_file_token1] = ACTIONS(3024), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3024), - [aux_sym_channel_timeout_token1] = ACTIONS(3024), - [aux_sym_check_host_ip_token1] = ACTIONS(3024), - [aux_sym_ciphers_token1] = ACTIONS(3024), - [aux_sym_cipher_token1] = ACTIONS(3026), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3024), - [aux_sym_compression_token1] = ACTIONS(3024), - [aux_sym_connection_attempts_token1] = ACTIONS(3024), - [aux_sym_connect_timeout_token1] = ACTIONS(3024), - [aux_sym_control_master_token1] = ACTIONS(3024), - [aux_sym_control_path_token1] = ACTIONS(3024), - [aux_sym_control_persist_token1] = ACTIONS(3024), - [aux_sym_dynamic_forward_token1] = ACTIONS(3024), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3024), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3024), - [aux_sym_escape_char_token1] = ACTIONS(3024), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3024), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3024), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3024), - [aux_sym_forward_agent_token1] = ACTIONS(3024), - [aux_sym_forward_x11_token1] = ACTIONS(3026), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3024), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3024), - [aux_sym_gateway_ports_token1] = ACTIONS(3024), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3024), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3024), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3024), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3024), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3024), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3024), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3024), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3024), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3024), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3024), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3024), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3024), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3024), - [aux_sym_host_key_alias_token1] = ACTIONS(3024), - [aux_sym_hostname_token1] = ACTIONS(3024), - [aux_sym_identities_only_token1] = ACTIONS(3024), - [aux_sym_identity_agent_token1] = ACTIONS(3024), - [aux_sym_identity_file_token1] = ACTIONS(3024), - [aux_sym_ignore_unknown_token1] = ACTIONS(3024), - [aux_sym_include_token1] = ACTIONS(3024), - [aux_sym_ip_qos_token1] = ACTIONS(3024), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3024), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3024), - [aux_sym_kex_algorithms_token1] = ACTIONS(3024), - [aux_sym_known_hosts_command_token1] = ACTIONS(3024), - [aux_sym_local_command_token1] = ACTIONS(3024), - [aux_sym_local_forward_token1] = ACTIONS(3024), - [aux_sym_log_level_token1] = ACTIONS(3024), - [aux_sym_log_verbose_token1] = ACTIONS(3024), - [aux_sym_macs_token1] = ACTIONS(3024), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3024), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3024), - [aux_sym_password_authentication_token1] = ACTIONS(3024), - [aux_sym_permit_local_command_token1] = ACTIONS(3024), - [aux_sym_permit_remote_open_token1] = ACTIONS(3024), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3024), - [aux_sym_port_token1] = ACTIONS(3024), - [aux_sym_preferred_authentications_token1] = ACTIONS(3024), - [aux_sym_protocol_token1] = ACTIONS(3024), - [aux_sym_proxy_command_token1] = ACTIONS(3024), - [aux_sym_proxy_jump_token1] = ACTIONS(3024), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3024), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3024), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3024), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3024), - [aux_sym_rekey_limit_token1] = ACTIONS(3024), - [aux_sym_remote_command_token1] = ACTIONS(3024), - [aux_sym_remote_forward_token1] = ACTIONS(3024), - [aux_sym_request_tty_token1] = ACTIONS(3024), - [aux_sym_required_rsa_size_token1] = ACTIONS(3024), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3024), - [aux_sym_security_key_provider_token1] = ACTIONS(3024), - [aux_sym_send_env_token1] = ACTIONS(3024), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3024), - [aux_sym_server_alive_interval_token1] = ACTIONS(3024), - [aux_sym_session_type_token1] = ACTIONS(3024), - [aux_sym_set_env_token1] = ACTIONS(3024), - [aux_sym_stdin_null_token1] = ACTIONS(3024), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3024), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3024), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3024), - [aux_sym_syslog_facility_token1] = ACTIONS(3024), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3024), - [aux_sym_keep_alive_token1] = ACTIONS(3024), - [aux_sym_tag_token1] = ACTIONS(3024), - [aux_sym_tunnel_token1] = ACTIONS(3026), - [aux_sym_tunnel_device_token1] = ACTIONS(3024), - [aux_sym_update_host_keys_token1] = ACTIONS(3024), - [aux_sym_use_keychain_token1] = ACTIONS(3024), - [aux_sym_use_roaming_token1] = ACTIONS(3024), - [aux_sym_user_token1] = ACTIONS(3026), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3024), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3024), - [aux_sym_visual_host_key_token1] = ACTIONS(3024), - [aux_sym_xauth_location_token1] = ACTIONS(3024), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3031), + [anon_sym_DQUOTE] = ACTIONS(3033), + [aux_sym_match_token1] = ACTIONS(3029), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3029), + [aux_sym_address_family_token1] = ACTIONS(3029), + [aux_sym_batch_mode_token1] = ACTIONS(3029), + [aux_sym_bind_address_token1] = ACTIONS(3029), + [aux_sym_bind_interface_token1] = ACTIONS(3029), + [aux_sym_canonical_domains_token1] = ACTIONS(3029), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3029), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3029), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3029), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3029), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3029), + [aux_sym_certificate_file_token1] = ACTIONS(3029), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3029), + [aux_sym_channel_timeout_token1] = ACTIONS(3029), + [aux_sym_check_host_ip_token1] = ACTIONS(3029), + [aux_sym_ciphers_token1] = ACTIONS(3029), + [aux_sym_cipher_token1] = ACTIONS(3031), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3029), + [aux_sym_compression_token1] = ACTIONS(3029), + [aux_sym_connection_attempts_token1] = ACTIONS(3029), + [aux_sym_connect_timeout_token1] = ACTIONS(3029), + [aux_sym_control_master_token1] = ACTIONS(3029), + [aux_sym_control_path_token1] = ACTIONS(3029), + [aux_sym_control_persist_token1] = ACTIONS(3029), + [aux_sym_dynamic_forward_token1] = ACTIONS(3029), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3029), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3029), + [aux_sym_escape_char_token1] = ACTIONS(3029), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3029), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3029), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3029), + [aux_sym_forward_agent_token1] = ACTIONS(3029), + [aux_sym_forward_x11_token1] = ACTIONS(3031), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3029), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3029), + [aux_sym_gateway_ports_token1] = ACTIONS(3029), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3029), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3029), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3029), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3029), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3029), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3029), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3029), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3029), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3029), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3029), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3029), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3029), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3029), + [aux_sym_host_key_alias_token1] = ACTIONS(3029), + [aux_sym_hostname_token1] = ACTIONS(3029), + [aux_sym_identities_only_token1] = ACTIONS(3029), + [aux_sym_identity_agent_token1] = ACTIONS(3029), + [aux_sym_identity_file_token1] = ACTIONS(3029), + [aux_sym_ignore_unknown_token1] = ACTIONS(3029), + [aux_sym_include_token1] = ACTIONS(3029), + [aux_sym_ip_qos_token1] = ACTIONS(3029), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3029), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3029), + [aux_sym_kex_algorithms_token1] = ACTIONS(3029), + [aux_sym_known_hosts_command_token1] = ACTIONS(3029), + [aux_sym_local_command_token1] = ACTIONS(3029), + [aux_sym_local_forward_token1] = ACTIONS(3029), + [aux_sym_log_level_token1] = ACTIONS(3029), + [aux_sym_log_verbose_token1] = ACTIONS(3029), + [aux_sym_macs_token1] = ACTIONS(3029), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3029), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3029), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3029), + [aux_sym_password_authentication_token1] = ACTIONS(3029), + [aux_sym_permit_local_command_token1] = ACTIONS(3029), + [aux_sym_permit_remote_open_token1] = ACTIONS(3029), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3029), + [aux_sym_port_token1] = ACTIONS(3029), + [aux_sym_preferred_authentications_token1] = ACTIONS(3029), + [aux_sym_protocol_token1] = ACTIONS(3029), + [aux_sym_proxy_command_token1] = ACTIONS(3029), + [aux_sym_proxy_jump_token1] = ACTIONS(3029), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3029), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3029), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3029), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3029), + [aux_sym_rekey_limit_token1] = ACTIONS(3029), + [aux_sym_remote_command_token1] = ACTIONS(3029), + [aux_sym_remote_forward_token1] = ACTIONS(3029), + [aux_sym_request_tty_token1] = ACTIONS(3029), + [aux_sym_required_rsa_size_token1] = ACTIONS(3029), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3029), + [aux_sym_security_key_provider_token1] = ACTIONS(3029), + [aux_sym_send_env_token1] = ACTIONS(3029), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3029), + [aux_sym_server_alive_interval_token1] = ACTIONS(3029), + [aux_sym_session_type_token1] = ACTIONS(3029), + [aux_sym_set_env_token1] = ACTIONS(3029), + [aux_sym_stdin_null_token1] = ACTIONS(3029), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3029), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3029), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3029), + [aux_sym_syslog_facility_token1] = ACTIONS(3029), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3029), + [aux_sym_keep_alive_token1] = ACTIONS(3029), + [aux_sym_tag_token1] = ACTIONS(3029), + [aux_sym_tunnel_token1] = ACTIONS(3031), + [aux_sym_tunnel_device_token1] = ACTIONS(3029), + [aux_sym_update_host_keys_token1] = ACTIONS(3029), + [aux_sym_use_keychain_token1] = ACTIONS(3029), + [aux_sym_use_roaming_token1] = ACTIONS(3029), + [aux_sym_user_token1] = ACTIONS(3031), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3029), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3029), + [aux_sym_visual_host_key_token1] = ACTIONS(3029), + [aux_sym_xauth_location_token1] = ACTIONS(3029), }, [448] = { - [ts_builtin_sym_end] = ACTIONS(3028), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3028), - [aux_sym_match_token1] = ACTIONS(3028), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3028), - [aux_sym_address_family_token1] = ACTIONS(3028), - [aux_sym_batch_mode_token1] = ACTIONS(3028), - [aux_sym_bind_address_token1] = ACTIONS(3028), - [aux_sym_bind_interface_token1] = ACTIONS(3028), - [aux_sym_canonical_domains_token1] = ACTIONS(3028), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3028), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3028), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3028), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3028), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3028), - [aux_sym_certificate_file_token1] = ACTIONS(3028), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3028), - [aux_sym_channel_timeout_token1] = ACTIONS(3028), - [aux_sym_check_host_ip_token1] = ACTIONS(3028), - [aux_sym_ciphers_token1] = ACTIONS(3028), - [aux_sym_cipher_token1] = ACTIONS(3030), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3028), - [aux_sym_compression_token1] = ACTIONS(3028), - [aux_sym_connection_attempts_token1] = ACTIONS(3028), - [aux_sym_connect_timeout_token1] = ACTIONS(3028), - [aux_sym_control_master_token1] = ACTIONS(3028), - [aux_sym_control_path_token1] = ACTIONS(3028), - [aux_sym_control_persist_token1] = ACTIONS(3028), - [aux_sym_dynamic_forward_token1] = ACTIONS(3028), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3028), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3028), - [aux_sym_escape_char_token1] = ACTIONS(3028), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3028), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3028), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3028), - [aux_sym_forward_agent_token1] = ACTIONS(3028), - [aux_sym_forward_x11_token1] = ACTIONS(3030), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3028), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3028), - [aux_sym_gateway_ports_token1] = ACTIONS(3028), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3028), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3028), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3028), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3028), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3028), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3028), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3028), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3028), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3028), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3028), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3028), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3028), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3028), - [aux_sym_host_key_alias_token1] = ACTIONS(3028), - [aux_sym_hostname_token1] = ACTIONS(3028), - [aux_sym_identities_only_token1] = ACTIONS(3028), - [aux_sym_identity_agent_token1] = ACTIONS(3028), - [aux_sym_identity_file_token1] = ACTIONS(3028), - [aux_sym_ignore_unknown_token1] = ACTIONS(3028), - [aux_sym_include_token1] = ACTIONS(3028), - [aux_sym_ip_qos_token1] = ACTIONS(3028), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3028), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3028), - [aux_sym_kex_algorithms_token1] = ACTIONS(3028), - [aux_sym_known_hosts_command_token1] = ACTIONS(3028), - [aux_sym_local_command_token1] = ACTIONS(3028), - [aux_sym_local_forward_token1] = ACTIONS(3028), - [aux_sym_log_level_token1] = ACTIONS(3028), - [aux_sym_log_verbose_token1] = ACTIONS(3028), - [aux_sym_macs_token1] = ACTIONS(3028), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3028), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3028), - [aux_sym_password_authentication_token1] = ACTIONS(3028), - [aux_sym_permit_local_command_token1] = ACTIONS(3028), - [aux_sym_permit_remote_open_token1] = ACTIONS(3028), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3028), - [aux_sym_port_token1] = ACTIONS(3028), - [aux_sym_preferred_authentications_token1] = ACTIONS(3028), - [aux_sym_protocol_token1] = ACTIONS(3028), - [aux_sym_proxy_command_token1] = ACTIONS(3028), - [aux_sym_proxy_jump_token1] = ACTIONS(3028), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3028), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3028), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3028), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3028), - [aux_sym_rekey_limit_token1] = ACTIONS(3028), - [aux_sym_remote_command_token1] = ACTIONS(3028), - [aux_sym_remote_forward_token1] = ACTIONS(3028), - [aux_sym_request_tty_token1] = ACTIONS(3028), - [aux_sym_required_rsa_size_token1] = ACTIONS(3028), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3028), - [aux_sym_security_key_provider_token1] = ACTIONS(3028), - [aux_sym_send_env_token1] = ACTIONS(3028), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3028), - [aux_sym_server_alive_interval_token1] = ACTIONS(3028), - [aux_sym_session_type_token1] = ACTIONS(3028), - [aux_sym_set_env_token1] = ACTIONS(3028), - [aux_sym_stdin_null_token1] = ACTIONS(3028), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3028), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3028), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3028), - [aux_sym_syslog_facility_token1] = ACTIONS(3028), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3028), - [aux_sym_keep_alive_token1] = ACTIONS(3028), - [aux_sym_tag_token1] = ACTIONS(3028), - [aux_sym_tunnel_token1] = ACTIONS(3030), - [aux_sym_tunnel_device_token1] = ACTIONS(3028), - [aux_sym_update_host_keys_token1] = ACTIONS(3028), - [aux_sym_use_keychain_token1] = ACTIONS(3028), - [aux_sym_use_roaming_token1] = ACTIONS(3028), - [aux_sym_user_token1] = ACTIONS(3030), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3028), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3028), - [aux_sym_visual_host_key_token1] = ACTIONS(3028), - [aux_sym_xauth_location_token1] = ACTIONS(3028), + [ts_builtin_sym_end] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3037), + [anon_sym_DQUOTE] = ACTIONS(3035), + [aux_sym_match_token1] = ACTIONS(3035), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3035), + [aux_sym_address_family_token1] = ACTIONS(3035), + [aux_sym_batch_mode_token1] = ACTIONS(3035), + [aux_sym_bind_address_token1] = ACTIONS(3035), + [aux_sym_bind_interface_token1] = ACTIONS(3035), + [aux_sym_canonical_domains_token1] = ACTIONS(3035), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3035), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3035), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3035), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3035), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3035), + [aux_sym_certificate_file_token1] = ACTIONS(3035), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3035), + [aux_sym_channel_timeout_token1] = ACTIONS(3035), + [aux_sym_check_host_ip_token1] = ACTIONS(3035), + [aux_sym_ciphers_token1] = ACTIONS(3035), + [aux_sym_cipher_token1] = ACTIONS(3037), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3035), + [aux_sym_compression_token1] = ACTIONS(3035), + [aux_sym_connection_attempts_token1] = ACTIONS(3035), + [aux_sym_connect_timeout_token1] = ACTIONS(3035), + [aux_sym_control_master_token1] = ACTIONS(3035), + [aux_sym_control_path_token1] = ACTIONS(3035), + [aux_sym_control_persist_token1] = ACTIONS(3035), + [aux_sym_dynamic_forward_token1] = ACTIONS(3035), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3035), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3035), + [aux_sym_escape_char_token1] = ACTIONS(3035), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3035), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3035), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3035), + [aux_sym_forward_agent_token1] = ACTIONS(3035), + [aux_sym_forward_x11_token1] = ACTIONS(3037), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3035), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3035), + [aux_sym_gateway_ports_token1] = ACTIONS(3035), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3035), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3035), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3035), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3035), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3035), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3035), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3035), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3035), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3035), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3035), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3035), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3035), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3035), + [aux_sym_host_key_alias_token1] = ACTIONS(3035), + [aux_sym_hostname_token1] = ACTIONS(3035), + [aux_sym_identities_only_token1] = ACTIONS(3035), + [aux_sym_identity_agent_token1] = ACTIONS(3035), + [aux_sym_identity_file_token1] = ACTIONS(3035), + [aux_sym_ignore_unknown_token1] = ACTIONS(3035), + [aux_sym_include_token1] = ACTIONS(3035), + [aux_sym_ip_qos_token1] = ACTIONS(3035), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3035), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3035), + [aux_sym_kex_algorithms_token1] = ACTIONS(3035), + [aux_sym_known_hosts_command_token1] = ACTIONS(3035), + [aux_sym_local_command_token1] = ACTIONS(3035), + [aux_sym_local_forward_token1] = ACTIONS(3035), + [aux_sym_log_level_token1] = ACTIONS(3035), + [aux_sym_log_verbose_token1] = ACTIONS(3035), + [aux_sym_macs_token1] = ACTIONS(3035), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3035), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3035), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3035), + [aux_sym_password_authentication_token1] = ACTIONS(3035), + [aux_sym_permit_local_command_token1] = ACTIONS(3035), + [aux_sym_permit_remote_open_token1] = ACTIONS(3035), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3035), + [aux_sym_port_token1] = ACTIONS(3035), + [aux_sym_preferred_authentications_token1] = ACTIONS(3035), + [aux_sym_protocol_token1] = ACTIONS(3035), + [aux_sym_proxy_command_token1] = ACTIONS(3035), + [aux_sym_proxy_jump_token1] = ACTIONS(3035), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3035), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3035), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3035), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3035), + [aux_sym_rekey_limit_token1] = ACTIONS(3035), + [aux_sym_remote_command_token1] = ACTIONS(3035), + [aux_sym_remote_forward_token1] = ACTIONS(3035), + [aux_sym_request_tty_token1] = ACTIONS(3035), + [aux_sym_required_rsa_size_token1] = ACTIONS(3035), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3035), + [aux_sym_security_key_provider_token1] = ACTIONS(3035), + [aux_sym_send_env_token1] = ACTIONS(3035), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3035), + [aux_sym_server_alive_interval_token1] = ACTIONS(3035), + [aux_sym_session_type_token1] = ACTIONS(3035), + [aux_sym_set_env_token1] = ACTIONS(3035), + [aux_sym_stdin_null_token1] = ACTIONS(3035), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3035), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3035), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3035), + [aux_sym_syslog_facility_token1] = ACTIONS(3035), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3035), + [aux_sym_keep_alive_token1] = ACTIONS(3035), + [aux_sym_tag_token1] = ACTIONS(3035), + [aux_sym_tunnel_token1] = ACTIONS(3037), + [aux_sym_tunnel_device_token1] = ACTIONS(3035), + [aux_sym_update_host_keys_token1] = ACTIONS(3035), + [aux_sym_use_keychain_token1] = ACTIONS(3035), + [aux_sym_use_roaming_token1] = ACTIONS(3035), + [aux_sym_user_token1] = ACTIONS(3037), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3035), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3035), + [aux_sym_visual_host_key_token1] = ACTIONS(3035), + [aux_sym_xauth_location_token1] = ACTIONS(3035), }, [449] = { - [ts_builtin_sym_end] = ACTIONS(3032), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3034), - [anon_sym_DQUOTE] = ACTIONS(3036), - [aux_sym_match_token1] = ACTIONS(3032), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3032), - [aux_sym_address_family_token1] = ACTIONS(3032), - [aux_sym_batch_mode_token1] = ACTIONS(3032), - [aux_sym_bind_address_token1] = ACTIONS(3032), - [aux_sym_bind_interface_token1] = ACTIONS(3032), - [aux_sym_canonical_domains_token1] = ACTIONS(3032), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3032), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3032), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3032), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3032), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3032), - [aux_sym_certificate_file_token1] = ACTIONS(3032), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3032), - [aux_sym_channel_timeout_token1] = ACTIONS(3032), - [aux_sym_check_host_ip_token1] = ACTIONS(3032), - [aux_sym_ciphers_token1] = ACTIONS(3032), - [aux_sym_cipher_token1] = ACTIONS(3034), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3032), - [aux_sym_compression_token1] = ACTIONS(3032), - [aux_sym_connection_attempts_token1] = ACTIONS(3032), - [aux_sym_connect_timeout_token1] = ACTIONS(3032), - [aux_sym_control_master_token1] = ACTIONS(3032), - [aux_sym_control_path_token1] = ACTIONS(3032), - [aux_sym_control_persist_token1] = ACTIONS(3032), - [aux_sym_dynamic_forward_token1] = ACTIONS(3032), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3032), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3032), - [aux_sym_escape_char_token1] = ACTIONS(3032), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3032), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3032), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3032), - [aux_sym_forward_agent_token1] = ACTIONS(3032), - [aux_sym_forward_x11_token1] = ACTIONS(3034), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3032), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3032), - [aux_sym_gateway_ports_token1] = ACTIONS(3032), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3032), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3032), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3032), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3032), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3032), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3032), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3032), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3032), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3032), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3032), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3032), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3032), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3032), - [aux_sym_host_key_alias_token1] = ACTIONS(3032), - [aux_sym_hostname_token1] = ACTIONS(3032), - [aux_sym_identities_only_token1] = ACTIONS(3032), - [aux_sym_identity_agent_token1] = ACTIONS(3032), - [aux_sym_identity_file_token1] = ACTIONS(3032), - [aux_sym_ignore_unknown_token1] = ACTIONS(3032), - [aux_sym_include_token1] = ACTIONS(3032), - [aux_sym_ip_qos_token1] = ACTIONS(3032), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3032), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3032), - [aux_sym_kex_algorithms_token1] = ACTIONS(3032), - [aux_sym_known_hosts_command_token1] = ACTIONS(3032), - [aux_sym_local_command_token1] = ACTIONS(3032), - [aux_sym_local_forward_token1] = ACTIONS(3032), - [aux_sym_log_level_token1] = ACTIONS(3032), - [aux_sym_log_verbose_token1] = ACTIONS(3032), - [aux_sym_macs_token1] = ACTIONS(3032), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3032), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3032), - [aux_sym_password_authentication_token1] = ACTIONS(3032), - [aux_sym_permit_local_command_token1] = ACTIONS(3032), - [aux_sym_permit_remote_open_token1] = ACTIONS(3032), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3032), - [aux_sym_port_token1] = ACTIONS(3032), - [aux_sym_preferred_authentications_token1] = ACTIONS(3032), - [aux_sym_protocol_token1] = ACTIONS(3032), - [aux_sym_proxy_command_token1] = ACTIONS(3032), - [aux_sym_proxy_jump_token1] = ACTIONS(3032), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3032), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3032), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3032), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3032), - [aux_sym_rekey_limit_token1] = ACTIONS(3032), - [aux_sym_remote_command_token1] = ACTIONS(3032), - [aux_sym_remote_forward_token1] = ACTIONS(3032), - [aux_sym_request_tty_token1] = ACTIONS(3032), - [aux_sym_required_rsa_size_token1] = ACTIONS(3032), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3032), - [aux_sym_security_key_provider_token1] = ACTIONS(3032), - [aux_sym_send_env_token1] = ACTIONS(3032), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3032), - [aux_sym_server_alive_interval_token1] = ACTIONS(3032), - [aux_sym_session_type_token1] = ACTIONS(3032), - [aux_sym_set_env_token1] = ACTIONS(3032), - [aux_sym_stdin_null_token1] = ACTIONS(3032), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3032), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3032), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3032), - [aux_sym_syslog_facility_token1] = ACTIONS(3032), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3032), - [aux_sym_keep_alive_token1] = ACTIONS(3032), - [aux_sym_tag_token1] = ACTIONS(3032), - [aux_sym_tunnel_token1] = ACTIONS(3034), - [aux_sym_tunnel_device_token1] = ACTIONS(3032), - [aux_sym_update_host_keys_token1] = ACTIONS(3032), - [aux_sym_use_keychain_token1] = ACTIONS(3032), - [aux_sym_use_roaming_token1] = ACTIONS(3032), - [aux_sym_user_token1] = ACTIONS(3034), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3032), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3032), - [aux_sym_visual_host_key_token1] = ACTIONS(3032), - [aux_sym_xauth_location_token1] = ACTIONS(3032), + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3041), + [anon_sym_DQUOTE] = ACTIONS(3043), + [aux_sym_match_token1] = ACTIONS(3039), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3039), + [aux_sym_address_family_token1] = ACTIONS(3039), + [aux_sym_batch_mode_token1] = ACTIONS(3039), + [aux_sym_bind_address_token1] = ACTIONS(3039), + [aux_sym_bind_interface_token1] = ACTIONS(3039), + [aux_sym_canonical_domains_token1] = ACTIONS(3039), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3039), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3039), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3039), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3039), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3039), + [aux_sym_certificate_file_token1] = ACTIONS(3039), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3039), + [aux_sym_channel_timeout_token1] = ACTIONS(3039), + [aux_sym_check_host_ip_token1] = ACTIONS(3039), + [aux_sym_ciphers_token1] = ACTIONS(3039), + [aux_sym_cipher_token1] = ACTIONS(3041), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3039), + [aux_sym_compression_token1] = ACTIONS(3039), + [aux_sym_connection_attempts_token1] = ACTIONS(3039), + [aux_sym_connect_timeout_token1] = ACTIONS(3039), + [aux_sym_control_master_token1] = ACTIONS(3039), + [aux_sym_control_path_token1] = ACTIONS(3039), + [aux_sym_control_persist_token1] = ACTIONS(3039), + [aux_sym_dynamic_forward_token1] = ACTIONS(3039), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3039), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3039), + [aux_sym_escape_char_token1] = ACTIONS(3039), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3039), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3039), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3039), + [aux_sym_forward_agent_token1] = ACTIONS(3039), + [aux_sym_forward_x11_token1] = ACTIONS(3041), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3039), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3039), + [aux_sym_gateway_ports_token1] = ACTIONS(3039), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3039), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3039), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3039), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3039), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3039), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3039), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3039), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3039), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3039), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3039), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3039), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3039), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3039), + [aux_sym_host_key_alias_token1] = ACTIONS(3039), + [aux_sym_hostname_token1] = ACTIONS(3039), + [aux_sym_identities_only_token1] = ACTIONS(3039), + [aux_sym_identity_agent_token1] = ACTIONS(3039), + [aux_sym_identity_file_token1] = ACTIONS(3039), + [aux_sym_ignore_unknown_token1] = ACTIONS(3039), + [aux_sym_include_token1] = ACTIONS(3039), + [aux_sym_ip_qos_token1] = ACTIONS(3039), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3039), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3039), + [aux_sym_kex_algorithms_token1] = ACTIONS(3039), + [aux_sym_known_hosts_command_token1] = ACTIONS(3039), + [aux_sym_local_command_token1] = ACTIONS(3039), + [aux_sym_local_forward_token1] = ACTIONS(3039), + [aux_sym_log_level_token1] = ACTIONS(3039), + [aux_sym_log_verbose_token1] = ACTIONS(3039), + [aux_sym_macs_token1] = ACTIONS(3039), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3039), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3039), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3039), + [aux_sym_password_authentication_token1] = ACTIONS(3039), + [aux_sym_permit_local_command_token1] = ACTIONS(3039), + [aux_sym_permit_remote_open_token1] = ACTIONS(3039), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3039), + [aux_sym_port_token1] = ACTIONS(3039), + [aux_sym_preferred_authentications_token1] = ACTIONS(3039), + [aux_sym_protocol_token1] = ACTIONS(3039), + [aux_sym_proxy_command_token1] = ACTIONS(3039), + [aux_sym_proxy_jump_token1] = ACTIONS(3039), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3039), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3039), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3039), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3039), + [aux_sym_rekey_limit_token1] = ACTIONS(3039), + [aux_sym_remote_command_token1] = ACTIONS(3039), + [aux_sym_remote_forward_token1] = ACTIONS(3039), + [aux_sym_request_tty_token1] = ACTIONS(3039), + [aux_sym_required_rsa_size_token1] = ACTIONS(3039), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3039), + [aux_sym_security_key_provider_token1] = ACTIONS(3039), + [aux_sym_send_env_token1] = ACTIONS(3039), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3039), + [aux_sym_server_alive_interval_token1] = ACTIONS(3039), + [aux_sym_session_type_token1] = ACTIONS(3039), + [aux_sym_set_env_token1] = ACTIONS(3039), + [aux_sym_stdin_null_token1] = ACTIONS(3039), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3039), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3039), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3039), + [aux_sym_syslog_facility_token1] = ACTIONS(3039), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3039), + [aux_sym_keep_alive_token1] = ACTIONS(3039), + [aux_sym_tag_token1] = ACTIONS(3039), + [aux_sym_tunnel_token1] = ACTIONS(3041), + [aux_sym_tunnel_device_token1] = ACTIONS(3039), + [aux_sym_update_host_keys_token1] = ACTIONS(3039), + [aux_sym_use_keychain_token1] = ACTIONS(3039), + [aux_sym_use_roaming_token1] = ACTIONS(3039), + [aux_sym_user_token1] = ACTIONS(3041), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3039), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3039), + [aux_sym_visual_host_key_token1] = ACTIONS(3039), + [aux_sym_xauth_location_token1] = ACTIONS(3039), }, [450] = { - [ts_builtin_sym_end] = ACTIONS(3038), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3040), - [anon_sym_DQUOTE] = ACTIONS(3038), - [aux_sym_match_token1] = ACTIONS(3038), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3038), - [aux_sym_address_family_token1] = ACTIONS(3038), - [aux_sym_batch_mode_token1] = ACTIONS(3038), - [aux_sym_bind_address_token1] = ACTIONS(3038), - [aux_sym_bind_interface_token1] = ACTIONS(3038), - [aux_sym_canonical_domains_token1] = ACTIONS(3038), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3038), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3038), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3038), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3038), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3038), - [aux_sym_certificate_file_token1] = ACTIONS(3038), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3038), - [aux_sym_channel_timeout_token1] = ACTIONS(3038), - [aux_sym_check_host_ip_token1] = ACTIONS(3038), - [aux_sym_ciphers_token1] = ACTIONS(3038), - [aux_sym_cipher_token1] = ACTIONS(3040), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3038), - [aux_sym_compression_token1] = ACTIONS(3038), - [aux_sym_connection_attempts_token1] = ACTIONS(3038), - [aux_sym_connect_timeout_token1] = ACTIONS(3038), - [aux_sym_control_master_token1] = ACTIONS(3038), - [aux_sym_control_path_token1] = ACTIONS(3038), - [aux_sym_control_persist_token1] = ACTIONS(3038), - [aux_sym_dynamic_forward_token1] = ACTIONS(3038), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3038), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3038), - [aux_sym_escape_char_token1] = ACTIONS(3038), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3038), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3038), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3038), - [aux_sym_forward_agent_token1] = ACTIONS(3038), - [aux_sym_forward_x11_token1] = ACTIONS(3040), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3038), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3038), - [aux_sym_gateway_ports_token1] = ACTIONS(3038), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3038), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3038), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3038), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3038), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3038), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3038), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3038), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3038), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3038), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3038), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3038), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3038), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3038), - [aux_sym_host_key_alias_token1] = ACTIONS(3038), - [aux_sym_hostname_token1] = ACTIONS(3038), - [aux_sym_identities_only_token1] = ACTIONS(3038), - [aux_sym_identity_agent_token1] = ACTIONS(3038), - [aux_sym_identity_file_token1] = ACTIONS(3038), - [aux_sym_ignore_unknown_token1] = ACTIONS(3038), - [aux_sym_include_token1] = ACTIONS(3038), - [aux_sym_ip_qos_token1] = ACTIONS(3038), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3038), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3038), - [aux_sym_kex_algorithms_token1] = ACTIONS(3038), - [aux_sym_known_hosts_command_token1] = ACTIONS(3038), - [aux_sym_local_command_token1] = ACTIONS(3038), - [aux_sym_local_forward_token1] = ACTIONS(3038), - [aux_sym_log_level_token1] = ACTIONS(3038), - [aux_sym_log_verbose_token1] = ACTIONS(3038), - [aux_sym_macs_token1] = ACTIONS(3038), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3038), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3038), - [aux_sym_password_authentication_token1] = ACTIONS(3038), - [aux_sym_permit_local_command_token1] = ACTIONS(3038), - [aux_sym_permit_remote_open_token1] = ACTIONS(3038), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3038), - [aux_sym_port_token1] = ACTIONS(3038), - [aux_sym_preferred_authentications_token1] = ACTIONS(3038), - [aux_sym_protocol_token1] = ACTIONS(3038), - [aux_sym_proxy_command_token1] = ACTIONS(3038), - [aux_sym_proxy_jump_token1] = ACTIONS(3038), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3038), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3038), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3038), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3038), - [aux_sym_rekey_limit_token1] = ACTIONS(3038), - [aux_sym_remote_command_token1] = ACTIONS(3038), - [aux_sym_remote_forward_token1] = ACTIONS(3038), - [aux_sym_request_tty_token1] = ACTIONS(3038), - [aux_sym_required_rsa_size_token1] = ACTIONS(3038), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3038), - [aux_sym_security_key_provider_token1] = ACTIONS(3038), - [aux_sym_send_env_token1] = ACTIONS(3038), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3038), - [aux_sym_server_alive_interval_token1] = ACTIONS(3038), - [aux_sym_session_type_token1] = ACTIONS(3038), - [aux_sym_set_env_token1] = ACTIONS(3038), - [aux_sym_stdin_null_token1] = ACTIONS(3038), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3038), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3038), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3038), - [aux_sym_syslog_facility_token1] = ACTIONS(3038), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3038), - [aux_sym_keep_alive_token1] = ACTIONS(3038), - [aux_sym_tag_token1] = ACTIONS(3038), - [aux_sym_tunnel_token1] = ACTIONS(3040), - [aux_sym_tunnel_device_token1] = ACTIONS(3038), - [aux_sym_update_host_keys_token1] = ACTIONS(3038), - [aux_sym_use_keychain_token1] = ACTIONS(3038), - [aux_sym_use_roaming_token1] = ACTIONS(3038), - [aux_sym_user_token1] = ACTIONS(3040), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3038), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3038), - [aux_sym_visual_host_key_token1] = ACTIONS(3038), - [aux_sym_xauth_location_token1] = ACTIONS(3038), + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3047), + [anon_sym_DQUOTE] = ACTIONS(3045), + [aux_sym_match_token1] = ACTIONS(3045), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3045), + [aux_sym_address_family_token1] = ACTIONS(3045), + [aux_sym_batch_mode_token1] = ACTIONS(3045), + [aux_sym_bind_address_token1] = ACTIONS(3045), + [aux_sym_bind_interface_token1] = ACTIONS(3045), + [aux_sym_canonical_domains_token1] = ACTIONS(3045), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3045), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3045), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3045), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3045), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3045), + [aux_sym_certificate_file_token1] = ACTIONS(3045), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3045), + [aux_sym_channel_timeout_token1] = ACTIONS(3045), + [aux_sym_check_host_ip_token1] = ACTIONS(3045), + [aux_sym_ciphers_token1] = ACTIONS(3045), + [aux_sym_cipher_token1] = ACTIONS(3047), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3045), + [aux_sym_compression_token1] = ACTIONS(3045), + [aux_sym_connection_attempts_token1] = ACTIONS(3045), + [aux_sym_connect_timeout_token1] = ACTIONS(3045), + [aux_sym_control_master_token1] = ACTIONS(3045), + [aux_sym_control_path_token1] = ACTIONS(3045), + [aux_sym_control_persist_token1] = ACTIONS(3045), + [aux_sym_dynamic_forward_token1] = ACTIONS(3045), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3045), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3045), + [aux_sym_escape_char_token1] = ACTIONS(3045), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3045), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3045), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3045), + [aux_sym_forward_agent_token1] = ACTIONS(3045), + [aux_sym_forward_x11_token1] = ACTIONS(3047), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3045), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3045), + [aux_sym_gateway_ports_token1] = ACTIONS(3045), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3045), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3045), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3045), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3045), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3045), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3045), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3045), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3045), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3045), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3045), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3045), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3045), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3045), + [aux_sym_host_key_alias_token1] = ACTIONS(3045), + [aux_sym_hostname_token1] = ACTIONS(3045), + [aux_sym_identities_only_token1] = ACTIONS(3045), + [aux_sym_identity_agent_token1] = ACTIONS(3045), + [aux_sym_identity_file_token1] = ACTIONS(3045), + [aux_sym_ignore_unknown_token1] = ACTIONS(3045), + [aux_sym_include_token1] = ACTIONS(3045), + [aux_sym_ip_qos_token1] = ACTIONS(3045), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3045), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3045), + [aux_sym_kex_algorithms_token1] = ACTIONS(3045), + [aux_sym_known_hosts_command_token1] = ACTIONS(3045), + [aux_sym_local_command_token1] = ACTIONS(3045), + [aux_sym_local_forward_token1] = ACTIONS(3045), + [aux_sym_log_level_token1] = ACTIONS(3045), + [aux_sym_log_verbose_token1] = ACTIONS(3045), + [aux_sym_macs_token1] = ACTIONS(3045), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3045), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3045), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3045), + [aux_sym_password_authentication_token1] = ACTIONS(3045), + [aux_sym_permit_local_command_token1] = ACTIONS(3045), + [aux_sym_permit_remote_open_token1] = ACTIONS(3045), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3045), + [aux_sym_port_token1] = ACTIONS(3045), + [aux_sym_preferred_authentications_token1] = ACTIONS(3045), + [aux_sym_protocol_token1] = ACTIONS(3045), + [aux_sym_proxy_command_token1] = ACTIONS(3045), + [aux_sym_proxy_jump_token1] = ACTIONS(3045), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3045), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3045), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3045), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3045), + [aux_sym_rekey_limit_token1] = ACTIONS(3045), + [aux_sym_remote_command_token1] = ACTIONS(3045), + [aux_sym_remote_forward_token1] = ACTIONS(3045), + [aux_sym_request_tty_token1] = ACTIONS(3045), + [aux_sym_required_rsa_size_token1] = ACTIONS(3045), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3045), + [aux_sym_security_key_provider_token1] = ACTIONS(3045), + [aux_sym_send_env_token1] = ACTIONS(3045), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3045), + [aux_sym_server_alive_interval_token1] = ACTIONS(3045), + [aux_sym_session_type_token1] = ACTIONS(3045), + [aux_sym_set_env_token1] = ACTIONS(3045), + [aux_sym_stdin_null_token1] = ACTIONS(3045), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3045), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3045), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3045), + [aux_sym_syslog_facility_token1] = ACTIONS(3045), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3045), + [aux_sym_keep_alive_token1] = ACTIONS(3045), + [aux_sym_tag_token1] = ACTIONS(3045), + [aux_sym_tunnel_token1] = ACTIONS(3047), + [aux_sym_tunnel_device_token1] = ACTIONS(3045), + [aux_sym_update_host_keys_token1] = ACTIONS(3045), + [aux_sym_use_keychain_token1] = ACTIONS(3045), + [aux_sym_use_roaming_token1] = ACTIONS(3045), + [aux_sym_user_token1] = ACTIONS(3047), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3045), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3045), + [aux_sym_visual_host_key_token1] = ACTIONS(3045), + [aux_sym_xauth_location_token1] = ACTIONS(3045), }, [451] = { - [ts_builtin_sym_end] = ACTIONS(3042), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3044), - [anon_sym_DQUOTE] = ACTIONS(3046), - [aux_sym_match_token1] = ACTIONS(3042), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3042), - [aux_sym_address_family_token1] = ACTIONS(3042), - [aux_sym_batch_mode_token1] = ACTIONS(3042), - [aux_sym_bind_address_token1] = ACTIONS(3042), - [aux_sym_bind_interface_token1] = ACTIONS(3042), - [aux_sym_canonical_domains_token1] = ACTIONS(3042), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3042), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3042), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3042), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3042), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3042), - [aux_sym_certificate_file_token1] = ACTIONS(3042), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3042), - [aux_sym_channel_timeout_token1] = ACTIONS(3042), - [aux_sym_check_host_ip_token1] = ACTIONS(3042), - [aux_sym_ciphers_token1] = ACTIONS(3042), - [aux_sym_cipher_token1] = ACTIONS(3044), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3042), - [aux_sym_compression_token1] = ACTIONS(3042), - [aux_sym_connection_attempts_token1] = ACTIONS(3042), - [aux_sym_connect_timeout_token1] = ACTIONS(3042), - [aux_sym_control_master_token1] = ACTIONS(3042), - [aux_sym_control_path_token1] = ACTIONS(3042), - [aux_sym_control_persist_token1] = ACTIONS(3042), - [aux_sym_dynamic_forward_token1] = ACTIONS(3042), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3042), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3042), - [aux_sym_escape_char_token1] = ACTIONS(3042), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3042), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3042), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3042), - [aux_sym_forward_agent_token1] = ACTIONS(3042), - [aux_sym_forward_x11_token1] = ACTIONS(3044), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3042), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3042), - [aux_sym_gateway_ports_token1] = ACTIONS(3042), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3042), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3042), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3042), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3042), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3042), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3042), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3042), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3042), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3042), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3042), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3042), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3042), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3042), - [aux_sym_host_key_alias_token1] = ACTIONS(3042), - [aux_sym_hostname_token1] = ACTIONS(3042), - [aux_sym_identities_only_token1] = ACTIONS(3042), - [aux_sym_identity_agent_token1] = ACTIONS(3042), - [aux_sym_identity_file_token1] = ACTIONS(3042), - [aux_sym_ignore_unknown_token1] = ACTIONS(3042), - [aux_sym_include_token1] = ACTIONS(3042), - [aux_sym_ip_qos_token1] = ACTIONS(3042), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3042), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3042), - [aux_sym_kex_algorithms_token1] = ACTIONS(3042), - [aux_sym_known_hosts_command_token1] = ACTIONS(3042), - [aux_sym_local_command_token1] = ACTIONS(3042), - [aux_sym_local_forward_token1] = ACTIONS(3042), - [aux_sym_log_level_token1] = ACTIONS(3042), - [aux_sym_log_verbose_token1] = ACTIONS(3042), - [aux_sym_macs_token1] = ACTIONS(3042), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3042), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3042), - [aux_sym_password_authentication_token1] = ACTIONS(3042), - [aux_sym_permit_local_command_token1] = ACTIONS(3042), - [aux_sym_permit_remote_open_token1] = ACTIONS(3042), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3042), - [aux_sym_port_token1] = ACTIONS(3042), - [aux_sym_preferred_authentications_token1] = ACTIONS(3042), - [aux_sym_protocol_token1] = ACTIONS(3042), - [aux_sym_proxy_command_token1] = ACTIONS(3042), - [aux_sym_proxy_jump_token1] = ACTIONS(3042), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3042), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3042), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3042), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3042), - [aux_sym_rekey_limit_token1] = ACTIONS(3042), - [aux_sym_remote_command_token1] = ACTIONS(3042), - [aux_sym_remote_forward_token1] = ACTIONS(3042), - [aux_sym_request_tty_token1] = ACTIONS(3042), - [aux_sym_required_rsa_size_token1] = ACTIONS(3042), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3042), - [aux_sym_security_key_provider_token1] = ACTIONS(3042), - [aux_sym_send_env_token1] = ACTIONS(3042), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3042), - [aux_sym_server_alive_interval_token1] = ACTIONS(3042), - [aux_sym_session_type_token1] = ACTIONS(3042), - [aux_sym_set_env_token1] = ACTIONS(3042), - [aux_sym_stdin_null_token1] = ACTIONS(3042), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3042), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3042), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3042), - [aux_sym_syslog_facility_token1] = ACTIONS(3042), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3042), - [aux_sym_keep_alive_token1] = ACTIONS(3042), - [aux_sym_tag_token1] = ACTIONS(3042), - [aux_sym_tunnel_token1] = ACTIONS(3044), - [aux_sym_tunnel_device_token1] = ACTIONS(3042), - [aux_sym_update_host_keys_token1] = ACTIONS(3042), - [aux_sym_use_keychain_token1] = ACTIONS(3042), - [aux_sym_use_roaming_token1] = ACTIONS(3042), - [aux_sym_user_token1] = ACTIONS(3044), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3042), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3042), - [aux_sym_visual_host_key_token1] = ACTIONS(3042), - [aux_sym_xauth_location_token1] = ACTIONS(3042), + [ts_builtin_sym_end] = ACTIONS(3049), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3051), + [anon_sym_DQUOTE] = ACTIONS(3053), + [aux_sym_match_token1] = ACTIONS(3049), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3049), + [aux_sym_address_family_token1] = ACTIONS(3049), + [aux_sym_batch_mode_token1] = ACTIONS(3049), + [aux_sym_bind_address_token1] = ACTIONS(3049), + [aux_sym_bind_interface_token1] = ACTIONS(3049), + [aux_sym_canonical_domains_token1] = ACTIONS(3049), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3049), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3049), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3049), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3049), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3049), + [aux_sym_certificate_file_token1] = ACTIONS(3049), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3049), + [aux_sym_channel_timeout_token1] = ACTIONS(3049), + [aux_sym_check_host_ip_token1] = ACTIONS(3049), + [aux_sym_ciphers_token1] = ACTIONS(3049), + [aux_sym_cipher_token1] = ACTIONS(3051), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3049), + [aux_sym_compression_token1] = ACTIONS(3049), + [aux_sym_connection_attempts_token1] = ACTIONS(3049), + [aux_sym_connect_timeout_token1] = ACTIONS(3049), + [aux_sym_control_master_token1] = ACTIONS(3049), + [aux_sym_control_path_token1] = ACTIONS(3049), + [aux_sym_control_persist_token1] = ACTIONS(3049), + [aux_sym_dynamic_forward_token1] = ACTIONS(3049), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3049), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3049), + [aux_sym_escape_char_token1] = ACTIONS(3049), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3049), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3049), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3049), + [aux_sym_forward_agent_token1] = ACTIONS(3049), + [aux_sym_forward_x11_token1] = ACTIONS(3051), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3049), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3049), + [aux_sym_gateway_ports_token1] = ACTIONS(3049), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3049), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3049), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3049), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3049), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3049), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3049), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3049), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3049), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3049), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3049), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3049), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3049), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3049), + [aux_sym_host_key_alias_token1] = ACTIONS(3049), + [aux_sym_hostname_token1] = ACTIONS(3049), + [aux_sym_identities_only_token1] = ACTIONS(3049), + [aux_sym_identity_agent_token1] = ACTIONS(3049), + [aux_sym_identity_file_token1] = ACTIONS(3049), + [aux_sym_ignore_unknown_token1] = ACTIONS(3049), + [aux_sym_include_token1] = ACTIONS(3049), + [aux_sym_ip_qos_token1] = ACTIONS(3049), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3049), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3049), + [aux_sym_kex_algorithms_token1] = ACTIONS(3049), + [aux_sym_known_hosts_command_token1] = ACTIONS(3049), + [aux_sym_local_command_token1] = ACTIONS(3049), + [aux_sym_local_forward_token1] = ACTIONS(3049), + [aux_sym_log_level_token1] = ACTIONS(3049), + [aux_sym_log_verbose_token1] = ACTIONS(3049), + [aux_sym_macs_token1] = ACTIONS(3049), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3049), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3049), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3049), + [aux_sym_password_authentication_token1] = ACTIONS(3049), + [aux_sym_permit_local_command_token1] = ACTIONS(3049), + [aux_sym_permit_remote_open_token1] = ACTIONS(3049), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3049), + [aux_sym_port_token1] = ACTIONS(3049), + [aux_sym_preferred_authentications_token1] = ACTIONS(3049), + [aux_sym_protocol_token1] = ACTIONS(3049), + [aux_sym_proxy_command_token1] = ACTIONS(3049), + [aux_sym_proxy_jump_token1] = ACTIONS(3049), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3049), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3049), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3049), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3049), + [aux_sym_rekey_limit_token1] = ACTIONS(3049), + [aux_sym_remote_command_token1] = ACTIONS(3049), + [aux_sym_remote_forward_token1] = ACTIONS(3049), + [aux_sym_request_tty_token1] = ACTIONS(3049), + [aux_sym_required_rsa_size_token1] = ACTIONS(3049), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3049), + [aux_sym_security_key_provider_token1] = ACTIONS(3049), + [aux_sym_send_env_token1] = ACTIONS(3049), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3049), + [aux_sym_server_alive_interval_token1] = ACTIONS(3049), + [aux_sym_session_type_token1] = ACTIONS(3049), + [aux_sym_set_env_token1] = ACTIONS(3049), + [aux_sym_stdin_null_token1] = ACTIONS(3049), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3049), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3049), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3049), + [aux_sym_syslog_facility_token1] = ACTIONS(3049), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3049), + [aux_sym_keep_alive_token1] = ACTIONS(3049), + [aux_sym_tag_token1] = ACTIONS(3049), + [aux_sym_tunnel_token1] = ACTIONS(3051), + [aux_sym_tunnel_device_token1] = ACTIONS(3049), + [aux_sym_update_host_keys_token1] = ACTIONS(3049), + [aux_sym_use_keychain_token1] = ACTIONS(3049), + [aux_sym_use_roaming_token1] = ACTIONS(3049), + [aux_sym_user_token1] = ACTIONS(3051), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3049), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3049), + [aux_sym_visual_host_key_token1] = ACTIONS(3049), + [aux_sym_xauth_location_token1] = ACTIONS(3049), }, [452] = { - [ts_builtin_sym_end] = ACTIONS(3048), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3050), - [anon_sym_DQUOTE] = ACTIONS(3048), - [aux_sym_match_token1] = ACTIONS(3048), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3048), - [aux_sym_address_family_token1] = ACTIONS(3048), - [aux_sym_batch_mode_token1] = ACTIONS(3048), - [aux_sym_bind_address_token1] = ACTIONS(3048), - [aux_sym_bind_interface_token1] = ACTIONS(3048), - [aux_sym_canonical_domains_token1] = ACTIONS(3048), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3048), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3048), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3048), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3048), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3048), - [aux_sym_certificate_file_token1] = ACTIONS(3048), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3048), - [aux_sym_channel_timeout_token1] = ACTIONS(3048), - [aux_sym_check_host_ip_token1] = ACTIONS(3048), - [aux_sym_ciphers_token1] = ACTIONS(3048), - [aux_sym_cipher_token1] = ACTIONS(3050), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3048), - [aux_sym_compression_token1] = ACTIONS(3048), - [aux_sym_connection_attempts_token1] = ACTIONS(3048), - [aux_sym_connect_timeout_token1] = ACTIONS(3048), - [aux_sym_control_master_token1] = ACTIONS(3048), - [aux_sym_control_path_token1] = ACTIONS(3048), - [aux_sym_control_persist_token1] = ACTIONS(3048), - [aux_sym_dynamic_forward_token1] = ACTIONS(3048), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3048), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3048), - [aux_sym_escape_char_token1] = ACTIONS(3048), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3048), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3048), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3048), - [aux_sym_forward_agent_token1] = ACTIONS(3048), - [aux_sym_forward_x11_token1] = ACTIONS(3050), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3048), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3048), - [aux_sym_gateway_ports_token1] = ACTIONS(3048), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3048), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3048), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3048), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3048), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3048), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3048), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3048), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3048), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3048), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3048), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3048), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3048), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3048), - [aux_sym_host_key_alias_token1] = ACTIONS(3048), - [aux_sym_hostname_token1] = ACTIONS(3048), - [aux_sym_identities_only_token1] = ACTIONS(3048), - [aux_sym_identity_agent_token1] = ACTIONS(3048), - [aux_sym_identity_file_token1] = ACTIONS(3048), - [aux_sym_ignore_unknown_token1] = ACTIONS(3048), - [aux_sym_include_token1] = ACTIONS(3048), - [aux_sym_ip_qos_token1] = ACTIONS(3048), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3048), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3048), - [aux_sym_kex_algorithms_token1] = ACTIONS(3048), - [aux_sym_known_hosts_command_token1] = ACTIONS(3048), - [aux_sym_local_command_token1] = ACTIONS(3048), - [aux_sym_local_forward_token1] = ACTIONS(3048), - [aux_sym_log_level_token1] = ACTIONS(3048), - [aux_sym_log_verbose_token1] = ACTIONS(3048), - [aux_sym_macs_token1] = ACTIONS(3048), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3048), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3048), - [aux_sym_password_authentication_token1] = ACTIONS(3048), - [aux_sym_permit_local_command_token1] = ACTIONS(3048), - [aux_sym_permit_remote_open_token1] = ACTIONS(3048), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3048), - [aux_sym_port_token1] = ACTIONS(3048), - [aux_sym_preferred_authentications_token1] = ACTIONS(3048), - [aux_sym_protocol_token1] = ACTIONS(3048), - [aux_sym_proxy_command_token1] = ACTIONS(3048), - [aux_sym_proxy_jump_token1] = ACTIONS(3048), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3048), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3048), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3048), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3048), - [aux_sym_rekey_limit_token1] = ACTIONS(3048), - [aux_sym_remote_command_token1] = ACTIONS(3048), - [aux_sym_remote_forward_token1] = ACTIONS(3048), - [aux_sym_request_tty_token1] = ACTIONS(3048), - [aux_sym_required_rsa_size_token1] = ACTIONS(3048), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3048), - [aux_sym_security_key_provider_token1] = ACTIONS(3048), - [aux_sym_send_env_token1] = ACTIONS(3048), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3048), - [aux_sym_server_alive_interval_token1] = ACTIONS(3048), - [aux_sym_session_type_token1] = ACTIONS(3048), - [aux_sym_set_env_token1] = ACTIONS(3048), - [aux_sym_stdin_null_token1] = ACTIONS(3048), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3048), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3048), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3048), - [aux_sym_syslog_facility_token1] = ACTIONS(3048), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3048), - [aux_sym_keep_alive_token1] = ACTIONS(3048), - [aux_sym_tag_token1] = ACTIONS(3048), - [aux_sym_tunnel_token1] = ACTIONS(3050), - [aux_sym_tunnel_device_token1] = ACTIONS(3048), - [aux_sym_update_host_keys_token1] = ACTIONS(3048), - [aux_sym_use_keychain_token1] = ACTIONS(3048), - [aux_sym_use_roaming_token1] = ACTIONS(3048), - [aux_sym_user_token1] = ACTIONS(3050), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3048), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3048), - [aux_sym_visual_host_key_token1] = ACTIONS(3048), - [aux_sym_xauth_location_token1] = ACTIONS(3048), + [ts_builtin_sym_end] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3057), + [anon_sym_DQUOTE] = ACTIONS(3055), + [aux_sym_match_token1] = ACTIONS(3055), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3055), + [aux_sym_address_family_token1] = ACTIONS(3055), + [aux_sym_batch_mode_token1] = ACTIONS(3055), + [aux_sym_bind_address_token1] = ACTIONS(3055), + [aux_sym_bind_interface_token1] = ACTIONS(3055), + [aux_sym_canonical_domains_token1] = ACTIONS(3055), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3055), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3055), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3055), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3055), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3055), + [aux_sym_certificate_file_token1] = ACTIONS(3055), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3055), + [aux_sym_channel_timeout_token1] = ACTIONS(3055), + [aux_sym_check_host_ip_token1] = ACTIONS(3055), + [aux_sym_ciphers_token1] = ACTIONS(3055), + [aux_sym_cipher_token1] = ACTIONS(3057), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3055), + [aux_sym_compression_token1] = ACTIONS(3055), + [aux_sym_connection_attempts_token1] = ACTIONS(3055), + [aux_sym_connect_timeout_token1] = ACTIONS(3055), + [aux_sym_control_master_token1] = ACTIONS(3055), + [aux_sym_control_path_token1] = ACTIONS(3055), + [aux_sym_control_persist_token1] = ACTIONS(3055), + [aux_sym_dynamic_forward_token1] = ACTIONS(3055), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3055), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3055), + [aux_sym_escape_char_token1] = ACTIONS(3055), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3055), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3055), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3055), + [aux_sym_forward_agent_token1] = ACTIONS(3055), + [aux_sym_forward_x11_token1] = ACTIONS(3057), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3055), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3055), + [aux_sym_gateway_ports_token1] = ACTIONS(3055), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3055), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3055), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3055), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3055), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3055), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3055), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3055), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3055), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3055), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3055), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3055), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3055), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3055), + [aux_sym_host_key_alias_token1] = ACTIONS(3055), + [aux_sym_hostname_token1] = ACTIONS(3055), + [aux_sym_identities_only_token1] = ACTIONS(3055), + [aux_sym_identity_agent_token1] = ACTIONS(3055), + [aux_sym_identity_file_token1] = ACTIONS(3055), + [aux_sym_ignore_unknown_token1] = ACTIONS(3055), + [aux_sym_include_token1] = ACTIONS(3055), + [aux_sym_ip_qos_token1] = ACTIONS(3055), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3055), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3055), + [aux_sym_kex_algorithms_token1] = ACTIONS(3055), + [aux_sym_known_hosts_command_token1] = ACTIONS(3055), + [aux_sym_local_command_token1] = ACTIONS(3055), + [aux_sym_local_forward_token1] = ACTIONS(3055), + [aux_sym_log_level_token1] = ACTIONS(3055), + [aux_sym_log_verbose_token1] = ACTIONS(3055), + [aux_sym_macs_token1] = ACTIONS(3055), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3055), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3055), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3055), + [aux_sym_password_authentication_token1] = ACTIONS(3055), + [aux_sym_permit_local_command_token1] = ACTIONS(3055), + [aux_sym_permit_remote_open_token1] = ACTIONS(3055), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3055), + [aux_sym_port_token1] = ACTIONS(3055), + [aux_sym_preferred_authentications_token1] = ACTIONS(3055), + [aux_sym_protocol_token1] = ACTIONS(3055), + [aux_sym_proxy_command_token1] = ACTIONS(3055), + [aux_sym_proxy_jump_token1] = ACTIONS(3055), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3055), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3055), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3055), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3055), + [aux_sym_rekey_limit_token1] = ACTIONS(3055), + [aux_sym_remote_command_token1] = ACTIONS(3055), + [aux_sym_remote_forward_token1] = ACTIONS(3055), + [aux_sym_request_tty_token1] = ACTIONS(3055), + [aux_sym_required_rsa_size_token1] = ACTIONS(3055), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3055), + [aux_sym_security_key_provider_token1] = ACTIONS(3055), + [aux_sym_send_env_token1] = ACTIONS(3055), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3055), + [aux_sym_server_alive_interval_token1] = ACTIONS(3055), + [aux_sym_session_type_token1] = ACTIONS(3055), + [aux_sym_set_env_token1] = ACTIONS(3055), + [aux_sym_stdin_null_token1] = ACTIONS(3055), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3055), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3055), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3055), + [aux_sym_syslog_facility_token1] = ACTIONS(3055), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3055), + [aux_sym_keep_alive_token1] = ACTIONS(3055), + [aux_sym_tag_token1] = ACTIONS(3055), + [aux_sym_tunnel_token1] = ACTIONS(3057), + [aux_sym_tunnel_device_token1] = ACTIONS(3055), + [aux_sym_update_host_keys_token1] = ACTIONS(3055), + [aux_sym_use_keychain_token1] = ACTIONS(3055), + [aux_sym_use_roaming_token1] = ACTIONS(3055), + [aux_sym_user_token1] = ACTIONS(3057), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3055), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3055), + [aux_sym_visual_host_key_token1] = ACTIONS(3055), + [aux_sym_xauth_location_token1] = ACTIONS(3055), }, [453] = { - [ts_builtin_sym_end] = ACTIONS(3052), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3056), - [aux_sym_match_token1] = ACTIONS(3052), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3052), - [aux_sym_address_family_token1] = ACTIONS(3052), - [aux_sym_batch_mode_token1] = ACTIONS(3052), - [aux_sym_bind_address_token1] = ACTIONS(3052), - [aux_sym_bind_interface_token1] = ACTIONS(3052), - [aux_sym_canonical_domains_token1] = ACTIONS(3052), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3052), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3052), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3052), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3052), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3052), - [aux_sym_certificate_file_token1] = ACTIONS(3052), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3052), - [aux_sym_channel_timeout_token1] = ACTIONS(3052), - [aux_sym_check_host_ip_token1] = ACTIONS(3052), - [aux_sym_ciphers_token1] = ACTIONS(3052), - [aux_sym_cipher_token1] = ACTIONS(3054), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3052), - [aux_sym_compression_token1] = ACTIONS(3052), - [aux_sym_connection_attempts_token1] = ACTIONS(3052), - [aux_sym_connect_timeout_token1] = ACTIONS(3052), - [aux_sym_control_master_token1] = ACTIONS(3052), - [aux_sym_control_path_token1] = ACTIONS(3052), - [aux_sym_control_persist_token1] = ACTIONS(3052), - [aux_sym_dynamic_forward_token1] = ACTIONS(3052), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3052), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3052), - [aux_sym_escape_char_token1] = ACTIONS(3052), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3052), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3052), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3052), - [aux_sym_forward_agent_token1] = ACTIONS(3052), - [aux_sym_forward_x11_token1] = ACTIONS(3054), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3052), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3052), - [aux_sym_gateway_ports_token1] = ACTIONS(3052), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3052), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3052), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3052), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3052), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3052), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3052), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3052), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3052), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3052), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3052), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3052), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3052), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3052), - [aux_sym_host_key_alias_token1] = ACTIONS(3052), - [aux_sym_hostname_token1] = ACTIONS(3052), - [aux_sym_identities_only_token1] = ACTIONS(3052), - [aux_sym_identity_agent_token1] = ACTIONS(3052), - [aux_sym_identity_file_token1] = ACTIONS(3052), - [aux_sym_ignore_unknown_token1] = ACTIONS(3052), - [aux_sym_include_token1] = ACTIONS(3052), - [aux_sym_ip_qos_token1] = ACTIONS(3052), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3052), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3052), - [aux_sym_kex_algorithms_token1] = ACTIONS(3052), - [aux_sym_known_hosts_command_token1] = ACTIONS(3052), - [aux_sym_local_command_token1] = ACTIONS(3052), - [aux_sym_local_forward_token1] = ACTIONS(3052), - [aux_sym_log_level_token1] = ACTIONS(3052), - [aux_sym_log_verbose_token1] = ACTIONS(3052), - [aux_sym_macs_token1] = ACTIONS(3052), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3052), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3052), - [aux_sym_password_authentication_token1] = ACTIONS(3052), - [aux_sym_permit_local_command_token1] = ACTIONS(3052), - [aux_sym_permit_remote_open_token1] = ACTIONS(3052), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3052), - [aux_sym_port_token1] = ACTIONS(3052), - [aux_sym_preferred_authentications_token1] = ACTIONS(3052), - [aux_sym_protocol_token1] = ACTIONS(3052), - [aux_sym_proxy_command_token1] = ACTIONS(3052), - [aux_sym_proxy_jump_token1] = ACTIONS(3052), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3052), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3052), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3052), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3052), - [aux_sym_rekey_limit_token1] = ACTIONS(3052), - [aux_sym_remote_command_token1] = ACTIONS(3052), - [aux_sym_remote_forward_token1] = ACTIONS(3052), - [aux_sym_request_tty_token1] = ACTIONS(3052), - [aux_sym_required_rsa_size_token1] = ACTIONS(3052), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3052), - [aux_sym_security_key_provider_token1] = ACTIONS(3052), - [aux_sym_send_env_token1] = ACTIONS(3052), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3052), - [aux_sym_server_alive_interval_token1] = ACTIONS(3052), - [aux_sym_session_type_token1] = ACTIONS(3052), - [aux_sym_set_env_token1] = ACTIONS(3052), - [aux_sym_stdin_null_token1] = ACTIONS(3052), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3052), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3052), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3052), - [aux_sym_syslog_facility_token1] = ACTIONS(3052), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3052), - [aux_sym_keep_alive_token1] = ACTIONS(3052), - [aux_sym_tag_token1] = ACTIONS(3052), - [aux_sym_tunnel_token1] = ACTIONS(3054), - [aux_sym_tunnel_device_token1] = ACTIONS(3052), - [aux_sym_update_host_keys_token1] = ACTIONS(3052), - [aux_sym_use_keychain_token1] = ACTIONS(3052), - [aux_sym_use_roaming_token1] = ACTIONS(3052), - [aux_sym_user_token1] = ACTIONS(3054), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3052), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3052), - [aux_sym_visual_host_key_token1] = ACTIONS(3052), - [aux_sym_xauth_location_token1] = ACTIONS(3052), + [ts_builtin_sym_end] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3061), + [anon_sym_DQUOTE] = ACTIONS(3059), + [aux_sym_match_token1] = ACTIONS(3059), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3059), + [aux_sym_address_family_token1] = ACTIONS(3059), + [aux_sym_batch_mode_token1] = ACTIONS(3059), + [aux_sym_bind_address_token1] = ACTIONS(3059), + [aux_sym_bind_interface_token1] = ACTIONS(3059), + [aux_sym_canonical_domains_token1] = ACTIONS(3059), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3059), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3059), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3059), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3059), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3059), + [aux_sym_certificate_file_token1] = ACTIONS(3059), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3059), + [aux_sym_channel_timeout_token1] = ACTIONS(3059), + [aux_sym_check_host_ip_token1] = ACTIONS(3059), + [aux_sym_ciphers_token1] = ACTIONS(3059), + [aux_sym_cipher_token1] = ACTIONS(3061), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3059), + [aux_sym_compression_token1] = ACTIONS(3059), + [aux_sym_connection_attempts_token1] = ACTIONS(3059), + [aux_sym_connect_timeout_token1] = ACTIONS(3059), + [aux_sym_control_master_token1] = ACTIONS(3059), + [aux_sym_control_path_token1] = ACTIONS(3059), + [aux_sym_control_persist_token1] = ACTIONS(3059), + [aux_sym_dynamic_forward_token1] = ACTIONS(3059), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3059), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3059), + [aux_sym_escape_char_token1] = ACTIONS(3059), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3059), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3059), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3059), + [aux_sym_forward_agent_token1] = ACTIONS(3059), + [aux_sym_forward_x11_token1] = ACTIONS(3061), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3059), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3059), + [aux_sym_gateway_ports_token1] = ACTIONS(3059), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3059), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3059), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3059), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3059), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3059), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3059), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3059), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3059), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3059), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3059), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3059), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3059), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3059), + [aux_sym_host_key_alias_token1] = ACTIONS(3059), + [aux_sym_hostname_token1] = ACTIONS(3059), + [aux_sym_identities_only_token1] = ACTIONS(3059), + [aux_sym_identity_agent_token1] = ACTIONS(3059), + [aux_sym_identity_file_token1] = ACTIONS(3059), + [aux_sym_ignore_unknown_token1] = ACTIONS(3059), + [aux_sym_include_token1] = ACTIONS(3059), + [aux_sym_ip_qos_token1] = ACTIONS(3059), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3059), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3059), + [aux_sym_kex_algorithms_token1] = ACTIONS(3059), + [aux_sym_known_hosts_command_token1] = ACTIONS(3059), + [aux_sym_local_command_token1] = ACTIONS(3059), + [aux_sym_local_forward_token1] = ACTIONS(3059), + [aux_sym_log_level_token1] = ACTIONS(3059), + [aux_sym_log_verbose_token1] = ACTIONS(3059), + [aux_sym_macs_token1] = ACTIONS(3059), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3059), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3059), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3059), + [aux_sym_password_authentication_token1] = ACTIONS(3059), + [aux_sym_permit_local_command_token1] = ACTIONS(3059), + [aux_sym_permit_remote_open_token1] = ACTIONS(3059), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3059), + [aux_sym_port_token1] = ACTIONS(3059), + [aux_sym_preferred_authentications_token1] = ACTIONS(3059), + [aux_sym_protocol_token1] = ACTIONS(3059), + [aux_sym_proxy_command_token1] = ACTIONS(3059), + [aux_sym_proxy_jump_token1] = ACTIONS(3059), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3059), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3059), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3059), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3059), + [aux_sym_rekey_limit_token1] = ACTIONS(3059), + [aux_sym_remote_command_token1] = ACTIONS(3059), + [aux_sym_remote_forward_token1] = ACTIONS(3059), + [aux_sym_request_tty_token1] = ACTIONS(3059), + [aux_sym_required_rsa_size_token1] = ACTIONS(3059), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3059), + [aux_sym_security_key_provider_token1] = ACTIONS(3059), + [aux_sym_send_env_token1] = ACTIONS(3059), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3059), + [aux_sym_server_alive_interval_token1] = ACTIONS(3059), + [aux_sym_session_type_token1] = ACTIONS(3059), + [aux_sym_set_env_token1] = ACTIONS(3059), + [aux_sym_stdin_null_token1] = ACTIONS(3059), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3059), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3059), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3059), + [aux_sym_syslog_facility_token1] = ACTIONS(3059), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3059), + [aux_sym_keep_alive_token1] = ACTIONS(3059), + [aux_sym_tag_token1] = ACTIONS(3059), + [aux_sym_tunnel_token1] = ACTIONS(3061), + [aux_sym_tunnel_device_token1] = ACTIONS(3059), + [aux_sym_update_host_keys_token1] = ACTIONS(3059), + [aux_sym_use_keychain_token1] = ACTIONS(3059), + [aux_sym_use_roaming_token1] = ACTIONS(3059), + [aux_sym_user_token1] = ACTIONS(3061), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3059), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3059), + [aux_sym_visual_host_key_token1] = ACTIONS(3059), + [aux_sym_xauth_location_token1] = ACTIONS(3059), }, [454] = { - [ts_builtin_sym_end] = ACTIONS(3058), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3060), - [anon_sym_DQUOTE] = ACTIONS(3058), - [aux_sym_match_token1] = ACTIONS(3058), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3058), - [aux_sym_address_family_token1] = ACTIONS(3058), - [aux_sym_batch_mode_token1] = ACTIONS(3058), - [aux_sym_bind_address_token1] = ACTIONS(3058), - [aux_sym_bind_interface_token1] = ACTIONS(3058), - [aux_sym_canonical_domains_token1] = ACTIONS(3058), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3058), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3058), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3058), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3058), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3058), - [aux_sym_certificate_file_token1] = ACTIONS(3058), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3058), - [aux_sym_channel_timeout_token1] = ACTIONS(3058), - [aux_sym_check_host_ip_token1] = ACTIONS(3058), - [aux_sym_ciphers_token1] = ACTIONS(3058), - [aux_sym_cipher_token1] = ACTIONS(3060), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3058), - [aux_sym_compression_token1] = ACTIONS(3058), - [aux_sym_connection_attempts_token1] = ACTIONS(3058), - [aux_sym_connect_timeout_token1] = ACTIONS(3058), - [aux_sym_control_master_token1] = ACTIONS(3058), - [aux_sym_control_path_token1] = ACTIONS(3058), - [aux_sym_control_persist_token1] = ACTIONS(3058), - [aux_sym_dynamic_forward_token1] = ACTIONS(3058), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3058), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3058), - [aux_sym_escape_char_token1] = ACTIONS(3058), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3058), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3058), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3058), - [aux_sym_forward_agent_token1] = ACTIONS(3058), - [aux_sym_forward_x11_token1] = ACTIONS(3060), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3058), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3058), - [aux_sym_gateway_ports_token1] = ACTIONS(3058), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3058), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3058), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3058), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3058), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3058), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3058), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3058), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3058), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3058), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3058), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3058), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3058), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3058), - [aux_sym_host_key_alias_token1] = ACTIONS(3058), - [aux_sym_hostname_token1] = ACTIONS(3058), - [aux_sym_identities_only_token1] = ACTIONS(3058), - [aux_sym_identity_agent_token1] = ACTIONS(3058), - [aux_sym_identity_file_token1] = ACTIONS(3058), - [aux_sym_ignore_unknown_token1] = ACTIONS(3058), - [aux_sym_include_token1] = ACTIONS(3058), - [aux_sym_ip_qos_token1] = ACTIONS(3058), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3058), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3058), - [aux_sym_kex_algorithms_token1] = ACTIONS(3058), - [aux_sym_known_hosts_command_token1] = ACTIONS(3058), - [aux_sym_local_command_token1] = ACTIONS(3058), - [aux_sym_local_forward_token1] = ACTIONS(3058), - [aux_sym_log_level_token1] = ACTIONS(3058), - [aux_sym_log_verbose_token1] = ACTIONS(3058), - [aux_sym_macs_token1] = ACTIONS(3058), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3058), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3058), - [aux_sym_password_authentication_token1] = ACTIONS(3058), - [aux_sym_permit_local_command_token1] = ACTIONS(3058), - [aux_sym_permit_remote_open_token1] = ACTIONS(3058), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3058), - [aux_sym_port_token1] = ACTIONS(3058), - [aux_sym_preferred_authentications_token1] = ACTIONS(3058), - [aux_sym_protocol_token1] = ACTIONS(3058), - [aux_sym_proxy_command_token1] = ACTIONS(3058), - [aux_sym_proxy_jump_token1] = ACTIONS(3058), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3058), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3058), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3058), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3058), - [aux_sym_rekey_limit_token1] = ACTIONS(3058), - [aux_sym_remote_command_token1] = ACTIONS(3058), - [aux_sym_remote_forward_token1] = ACTIONS(3058), - [aux_sym_request_tty_token1] = ACTIONS(3058), - [aux_sym_required_rsa_size_token1] = ACTIONS(3058), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3058), - [aux_sym_security_key_provider_token1] = ACTIONS(3058), - [aux_sym_send_env_token1] = ACTIONS(3058), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3058), - [aux_sym_server_alive_interval_token1] = ACTIONS(3058), - [aux_sym_session_type_token1] = ACTIONS(3058), - [aux_sym_set_env_token1] = ACTIONS(3058), - [aux_sym_stdin_null_token1] = ACTIONS(3058), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3058), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3058), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3058), - [aux_sym_syslog_facility_token1] = ACTIONS(3058), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3058), - [aux_sym_keep_alive_token1] = ACTIONS(3058), - [aux_sym_tag_token1] = ACTIONS(3058), - [aux_sym_tunnel_token1] = ACTIONS(3060), - [aux_sym_tunnel_device_token1] = ACTIONS(3058), - [aux_sym_update_host_keys_token1] = ACTIONS(3058), - [aux_sym_use_keychain_token1] = ACTIONS(3058), - [aux_sym_use_roaming_token1] = ACTIONS(3058), - [aux_sym_user_token1] = ACTIONS(3060), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3058), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3058), - [aux_sym_visual_host_key_token1] = ACTIONS(3058), - [aux_sym_xauth_location_token1] = ACTIONS(3058), + [ts_builtin_sym_end] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3065), + [anon_sym_DQUOTE] = ACTIONS(3067), + [aux_sym_match_token1] = ACTIONS(3063), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3063), + [aux_sym_address_family_token1] = ACTIONS(3063), + [aux_sym_batch_mode_token1] = ACTIONS(3063), + [aux_sym_bind_address_token1] = ACTIONS(3063), + [aux_sym_bind_interface_token1] = ACTIONS(3063), + [aux_sym_canonical_domains_token1] = ACTIONS(3063), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3063), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3063), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3063), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3063), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3063), + [aux_sym_certificate_file_token1] = ACTIONS(3063), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3063), + [aux_sym_channel_timeout_token1] = ACTIONS(3063), + [aux_sym_check_host_ip_token1] = ACTIONS(3063), + [aux_sym_ciphers_token1] = ACTIONS(3063), + [aux_sym_cipher_token1] = ACTIONS(3065), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3063), + [aux_sym_compression_token1] = ACTIONS(3063), + [aux_sym_connection_attempts_token1] = ACTIONS(3063), + [aux_sym_connect_timeout_token1] = ACTIONS(3063), + [aux_sym_control_master_token1] = ACTIONS(3063), + [aux_sym_control_path_token1] = ACTIONS(3063), + [aux_sym_control_persist_token1] = ACTIONS(3063), + [aux_sym_dynamic_forward_token1] = ACTIONS(3063), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3063), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3063), + [aux_sym_escape_char_token1] = ACTIONS(3063), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3063), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3063), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3063), + [aux_sym_forward_agent_token1] = ACTIONS(3063), + [aux_sym_forward_x11_token1] = ACTIONS(3065), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3063), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3063), + [aux_sym_gateway_ports_token1] = ACTIONS(3063), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3063), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3063), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3063), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3063), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3063), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3063), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3063), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3063), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3063), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3063), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3063), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3063), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3063), + [aux_sym_host_key_alias_token1] = ACTIONS(3063), + [aux_sym_hostname_token1] = ACTIONS(3063), + [aux_sym_identities_only_token1] = ACTIONS(3063), + [aux_sym_identity_agent_token1] = ACTIONS(3063), + [aux_sym_identity_file_token1] = ACTIONS(3063), + [aux_sym_ignore_unknown_token1] = ACTIONS(3063), + [aux_sym_include_token1] = ACTIONS(3063), + [aux_sym_ip_qos_token1] = ACTIONS(3063), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3063), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3063), + [aux_sym_kex_algorithms_token1] = ACTIONS(3063), + [aux_sym_known_hosts_command_token1] = ACTIONS(3063), + [aux_sym_local_command_token1] = ACTIONS(3063), + [aux_sym_local_forward_token1] = ACTIONS(3063), + [aux_sym_log_level_token1] = ACTIONS(3063), + [aux_sym_log_verbose_token1] = ACTIONS(3063), + [aux_sym_macs_token1] = ACTIONS(3063), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3063), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3063), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3063), + [aux_sym_password_authentication_token1] = ACTIONS(3063), + [aux_sym_permit_local_command_token1] = ACTIONS(3063), + [aux_sym_permit_remote_open_token1] = ACTIONS(3063), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3063), + [aux_sym_port_token1] = ACTIONS(3063), + [aux_sym_preferred_authentications_token1] = ACTIONS(3063), + [aux_sym_protocol_token1] = ACTIONS(3063), + [aux_sym_proxy_command_token1] = ACTIONS(3063), + [aux_sym_proxy_jump_token1] = ACTIONS(3063), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3063), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3063), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3063), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3063), + [aux_sym_rekey_limit_token1] = ACTIONS(3063), + [aux_sym_remote_command_token1] = ACTIONS(3063), + [aux_sym_remote_forward_token1] = ACTIONS(3063), + [aux_sym_request_tty_token1] = ACTIONS(3063), + [aux_sym_required_rsa_size_token1] = ACTIONS(3063), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3063), + [aux_sym_security_key_provider_token1] = ACTIONS(3063), + [aux_sym_send_env_token1] = ACTIONS(3063), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3063), + [aux_sym_server_alive_interval_token1] = ACTIONS(3063), + [aux_sym_session_type_token1] = ACTIONS(3063), + [aux_sym_set_env_token1] = ACTIONS(3063), + [aux_sym_stdin_null_token1] = ACTIONS(3063), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3063), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3063), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3063), + [aux_sym_syslog_facility_token1] = ACTIONS(3063), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3063), + [aux_sym_keep_alive_token1] = ACTIONS(3063), + [aux_sym_tag_token1] = ACTIONS(3063), + [aux_sym_tunnel_token1] = ACTIONS(3065), + [aux_sym_tunnel_device_token1] = ACTIONS(3063), + [aux_sym_update_host_keys_token1] = ACTIONS(3063), + [aux_sym_use_keychain_token1] = ACTIONS(3063), + [aux_sym_use_roaming_token1] = ACTIONS(3063), + [aux_sym_user_token1] = ACTIONS(3065), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3063), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3063), + [aux_sym_visual_host_key_token1] = ACTIONS(3063), + [aux_sym_xauth_location_token1] = ACTIONS(3063), }, [455] = { - [ts_builtin_sym_end] = ACTIONS(3062), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(3066), - [aux_sym_match_token1] = ACTIONS(3062), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3062), - [aux_sym_address_family_token1] = ACTIONS(3062), - [aux_sym_batch_mode_token1] = ACTIONS(3062), - [aux_sym_bind_address_token1] = ACTIONS(3062), - [aux_sym_bind_interface_token1] = ACTIONS(3062), - [aux_sym_canonical_domains_token1] = ACTIONS(3062), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3062), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3062), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3062), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3062), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3062), - [aux_sym_certificate_file_token1] = ACTIONS(3062), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3062), - [aux_sym_channel_timeout_token1] = ACTIONS(3062), - [aux_sym_check_host_ip_token1] = ACTIONS(3062), - [aux_sym_ciphers_token1] = ACTIONS(3062), - [aux_sym_cipher_token1] = ACTIONS(3064), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3062), - [aux_sym_compression_token1] = ACTIONS(3062), - [aux_sym_connection_attempts_token1] = ACTIONS(3062), - [aux_sym_connect_timeout_token1] = ACTIONS(3062), - [aux_sym_control_master_token1] = ACTIONS(3062), - [aux_sym_control_path_token1] = ACTIONS(3062), - [aux_sym_control_persist_token1] = ACTIONS(3062), - [aux_sym_dynamic_forward_token1] = ACTIONS(3062), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3062), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3062), - [aux_sym_escape_char_token1] = ACTIONS(3062), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3062), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3062), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3062), - [aux_sym_forward_agent_token1] = ACTIONS(3062), - [aux_sym_forward_x11_token1] = ACTIONS(3064), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3062), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3062), - [aux_sym_gateway_ports_token1] = ACTIONS(3062), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3062), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3062), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3062), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3062), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3062), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3062), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3062), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3062), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3062), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3062), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3062), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3062), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3062), - [aux_sym_host_key_alias_token1] = ACTIONS(3062), - [aux_sym_hostname_token1] = ACTIONS(3062), - [aux_sym_identities_only_token1] = ACTIONS(3062), - [aux_sym_identity_agent_token1] = ACTIONS(3062), - [aux_sym_identity_file_token1] = ACTIONS(3062), - [aux_sym_ignore_unknown_token1] = ACTIONS(3062), - [aux_sym_include_token1] = ACTIONS(3062), - [aux_sym_ip_qos_token1] = ACTIONS(3062), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3062), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3062), - [aux_sym_kex_algorithms_token1] = ACTIONS(3062), - [aux_sym_known_hosts_command_token1] = ACTIONS(3062), - [aux_sym_local_command_token1] = ACTIONS(3062), - [aux_sym_local_forward_token1] = ACTIONS(3062), - [aux_sym_log_level_token1] = ACTIONS(3062), - [aux_sym_log_verbose_token1] = ACTIONS(3062), - [aux_sym_macs_token1] = ACTIONS(3062), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3062), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3062), - [aux_sym_password_authentication_token1] = ACTIONS(3062), - [aux_sym_permit_local_command_token1] = ACTIONS(3062), - [aux_sym_permit_remote_open_token1] = ACTIONS(3062), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3062), - [aux_sym_port_token1] = ACTIONS(3062), - [aux_sym_preferred_authentications_token1] = ACTIONS(3062), - [aux_sym_protocol_token1] = ACTIONS(3062), - [aux_sym_proxy_command_token1] = ACTIONS(3062), - [aux_sym_proxy_jump_token1] = ACTIONS(3062), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3062), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3062), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3062), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3062), - [aux_sym_rekey_limit_token1] = ACTIONS(3062), - [aux_sym_remote_command_token1] = ACTIONS(3062), - [aux_sym_remote_forward_token1] = ACTIONS(3062), - [aux_sym_request_tty_token1] = ACTIONS(3062), - [aux_sym_required_rsa_size_token1] = ACTIONS(3062), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3062), - [aux_sym_security_key_provider_token1] = ACTIONS(3062), - [aux_sym_send_env_token1] = ACTIONS(3062), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3062), - [aux_sym_server_alive_interval_token1] = ACTIONS(3062), - [aux_sym_session_type_token1] = ACTIONS(3062), - [aux_sym_set_env_token1] = ACTIONS(3062), - [aux_sym_stdin_null_token1] = ACTIONS(3062), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3062), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3062), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3062), - [aux_sym_syslog_facility_token1] = ACTIONS(3062), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3062), - [aux_sym_keep_alive_token1] = ACTIONS(3062), - [aux_sym_tag_token1] = ACTIONS(3062), - [aux_sym_tunnel_token1] = ACTIONS(3064), - [aux_sym_tunnel_device_token1] = ACTIONS(3062), - [aux_sym_update_host_keys_token1] = ACTIONS(3062), - [aux_sym_use_keychain_token1] = ACTIONS(3062), - [aux_sym_use_roaming_token1] = ACTIONS(3062), - [aux_sym_user_token1] = ACTIONS(3064), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3062), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3062), - [aux_sym_visual_host_key_token1] = ACTIONS(3062), - [aux_sym_xauth_location_token1] = ACTIONS(3062), + [ts_builtin_sym_end] = ACTIONS(3069), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(3073), + [aux_sym_match_token1] = ACTIONS(3069), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3069), + [aux_sym_address_family_token1] = ACTIONS(3069), + [aux_sym_batch_mode_token1] = ACTIONS(3069), + [aux_sym_bind_address_token1] = ACTIONS(3069), + [aux_sym_bind_interface_token1] = ACTIONS(3069), + [aux_sym_canonical_domains_token1] = ACTIONS(3069), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3069), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3069), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3069), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3069), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3069), + [aux_sym_certificate_file_token1] = ACTIONS(3069), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3069), + [aux_sym_channel_timeout_token1] = ACTIONS(3069), + [aux_sym_check_host_ip_token1] = ACTIONS(3069), + [aux_sym_ciphers_token1] = ACTIONS(3069), + [aux_sym_cipher_token1] = ACTIONS(3071), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3069), + [aux_sym_compression_token1] = ACTIONS(3069), + [aux_sym_connection_attempts_token1] = ACTIONS(3069), + [aux_sym_connect_timeout_token1] = ACTIONS(3069), + [aux_sym_control_master_token1] = ACTIONS(3069), + [aux_sym_control_path_token1] = ACTIONS(3069), + [aux_sym_control_persist_token1] = ACTIONS(3069), + [aux_sym_dynamic_forward_token1] = ACTIONS(3069), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3069), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3069), + [aux_sym_escape_char_token1] = ACTIONS(3069), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3069), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3069), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3069), + [aux_sym_forward_agent_token1] = ACTIONS(3069), + [aux_sym_forward_x11_token1] = ACTIONS(3071), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3069), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3069), + [aux_sym_gateway_ports_token1] = ACTIONS(3069), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3069), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3069), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3069), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3069), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3069), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3069), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3069), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3069), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3069), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3069), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3069), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3069), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3069), + [aux_sym_host_key_alias_token1] = ACTIONS(3069), + [aux_sym_hostname_token1] = ACTIONS(3069), + [aux_sym_identities_only_token1] = ACTIONS(3069), + [aux_sym_identity_agent_token1] = ACTIONS(3069), + [aux_sym_identity_file_token1] = ACTIONS(3069), + [aux_sym_ignore_unknown_token1] = ACTIONS(3069), + [aux_sym_include_token1] = ACTIONS(3069), + [aux_sym_ip_qos_token1] = ACTIONS(3069), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3069), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3069), + [aux_sym_kex_algorithms_token1] = ACTIONS(3069), + [aux_sym_known_hosts_command_token1] = ACTIONS(3069), + [aux_sym_local_command_token1] = ACTIONS(3069), + [aux_sym_local_forward_token1] = ACTIONS(3069), + [aux_sym_log_level_token1] = ACTIONS(3069), + [aux_sym_log_verbose_token1] = ACTIONS(3069), + [aux_sym_macs_token1] = ACTIONS(3069), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3069), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3069), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3069), + [aux_sym_password_authentication_token1] = ACTIONS(3069), + [aux_sym_permit_local_command_token1] = ACTIONS(3069), + [aux_sym_permit_remote_open_token1] = ACTIONS(3069), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3069), + [aux_sym_port_token1] = ACTIONS(3069), + [aux_sym_preferred_authentications_token1] = ACTIONS(3069), + [aux_sym_protocol_token1] = ACTIONS(3069), + [aux_sym_proxy_command_token1] = ACTIONS(3069), + [aux_sym_proxy_jump_token1] = ACTIONS(3069), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3069), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3069), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3069), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3069), + [aux_sym_rekey_limit_token1] = ACTIONS(3069), + [aux_sym_remote_command_token1] = ACTIONS(3069), + [aux_sym_remote_forward_token1] = ACTIONS(3069), + [aux_sym_request_tty_token1] = ACTIONS(3069), + [aux_sym_required_rsa_size_token1] = ACTIONS(3069), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3069), + [aux_sym_security_key_provider_token1] = ACTIONS(3069), + [aux_sym_send_env_token1] = ACTIONS(3069), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3069), + [aux_sym_server_alive_interval_token1] = ACTIONS(3069), + [aux_sym_session_type_token1] = ACTIONS(3069), + [aux_sym_set_env_token1] = ACTIONS(3069), + [aux_sym_stdin_null_token1] = ACTIONS(3069), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3069), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3069), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3069), + [aux_sym_syslog_facility_token1] = ACTIONS(3069), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3069), + [aux_sym_keep_alive_token1] = ACTIONS(3069), + [aux_sym_tag_token1] = ACTIONS(3069), + [aux_sym_tunnel_token1] = ACTIONS(3071), + [aux_sym_tunnel_device_token1] = ACTIONS(3069), + [aux_sym_update_host_keys_token1] = ACTIONS(3069), + [aux_sym_use_keychain_token1] = ACTIONS(3069), + [aux_sym_use_roaming_token1] = ACTIONS(3069), + [aux_sym_user_token1] = ACTIONS(3071), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3069), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3069), + [aux_sym_visual_host_key_token1] = ACTIONS(3069), + [aux_sym_xauth_location_token1] = ACTIONS(3069), }, [456] = { - [ts_builtin_sym_end] = ACTIONS(3068), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3070), - [anon_sym_DQUOTE] = ACTIONS(3072), - [aux_sym_match_token1] = ACTIONS(3068), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3068), - [aux_sym_address_family_token1] = ACTIONS(3068), - [aux_sym_batch_mode_token1] = ACTIONS(3068), - [aux_sym_bind_address_token1] = ACTIONS(3068), - [aux_sym_bind_interface_token1] = ACTIONS(3068), - [aux_sym_canonical_domains_token1] = ACTIONS(3068), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3068), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3068), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3068), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3068), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3068), - [aux_sym_certificate_file_token1] = ACTIONS(3068), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3068), - [aux_sym_channel_timeout_token1] = ACTIONS(3068), - [aux_sym_check_host_ip_token1] = ACTIONS(3068), - [aux_sym_ciphers_token1] = ACTIONS(3068), - [aux_sym_cipher_token1] = ACTIONS(3070), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3068), - [aux_sym_compression_token1] = ACTIONS(3068), - [aux_sym_connection_attempts_token1] = ACTIONS(3068), - [aux_sym_connect_timeout_token1] = ACTIONS(3068), - [aux_sym_control_master_token1] = ACTIONS(3068), - [aux_sym_control_path_token1] = ACTIONS(3068), - [aux_sym_control_persist_token1] = ACTIONS(3068), - [aux_sym_dynamic_forward_token1] = ACTIONS(3068), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3068), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3068), - [aux_sym_escape_char_token1] = ACTIONS(3068), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3068), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3068), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3068), - [aux_sym_forward_agent_token1] = ACTIONS(3068), - [aux_sym_forward_x11_token1] = ACTIONS(3070), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3068), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3068), - [aux_sym_gateway_ports_token1] = ACTIONS(3068), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3068), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3068), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3068), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3068), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3068), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3068), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3068), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3068), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3068), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3068), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3068), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3068), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3068), - [aux_sym_host_key_alias_token1] = ACTIONS(3068), - [aux_sym_hostname_token1] = ACTIONS(3068), - [aux_sym_identities_only_token1] = ACTIONS(3068), - [aux_sym_identity_agent_token1] = ACTIONS(3068), - [aux_sym_identity_file_token1] = ACTIONS(3068), - [aux_sym_ignore_unknown_token1] = ACTIONS(3068), - [aux_sym_include_token1] = ACTIONS(3068), - [aux_sym_ip_qos_token1] = ACTIONS(3068), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3068), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3068), - [aux_sym_kex_algorithms_token1] = ACTIONS(3068), - [aux_sym_known_hosts_command_token1] = ACTIONS(3068), - [aux_sym_local_command_token1] = ACTIONS(3068), - [aux_sym_local_forward_token1] = ACTIONS(3068), - [aux_sym_log_level_token1] = ACTIONS(3068), - [aux_sym_log_verbose_token1] = ACTIONS(3068), - [aux_sym_macs_token1] = ACTIONS(3068), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3068), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3068), - [aux_sym_password_authentication_token1] = ACTIONS(3068), - [aux_sym_permit_local_command_token1] = ACTIONS(3068), - [aux_sym_permit_remote_open_token1] = ACTIONS(3068), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3068), - [aux_sym_port_token1] = ACTIONS(3068), - [aux_sym_preferred_authentications_token1] = ACTIONS(3068), - [aux_sym_protocol_token1] = ACTIONS(3068), - [aux_sym_proxy_command_token1] = ACTIONS(3068), - [aux_sym_proxy_jump_token1] = ACTIONS(3068), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3068), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3068), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3068), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3068), - [aux_sym_rekey_limit_token1] = ACTIONS(3068), - [aux_sym_remote_command_token1] = ACTIONS(3068), - [aux_sym_remote_forward_token1] = ACTIONS(3068), - [aux_sym_request_tty_token1] = ACTIONS(3068), - [aux_sym_required_rsa_size_token1] = ACTIONS(3068), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3068), - [aux_sym_security_key_provider_token1] = ACTIONS(3068), - [aux_sym_send_env_token1] = ACTIONS(3068), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3068), - [aux_sym_server_alive_interval_token1] = ACTIONS(3068), - [aux_sym_session_type_token1] = ACTIONS(3068), - [aux_sym_set_env_token1] = ACTIONS(3068), - [aux_sym_stdin_null_token1] = ACTIONS(3068), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3068), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3068), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3068), - [aux_sym_syslog_facility_token1] = ACTIONS(3068), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3068), - [aux_sym_keep_alive_token1] = ACTIONS(3068), - [aux_sym_tag_token1] = ACTIONS(3068), - [aux_sym_tunnel_token1] = ACTIONS(3070), - [aux_sym_tunnel_device_token1] = ACTIONS(3068), - [aux_sym_update_host_keys_token1] = ACTIONS(3068), - [aux_sym_use_keychain_token1] = ACTIONS(3068), - [aux_sym_use_roaming_token1] = ACTIONS(3068), - [aux_sym_user_token1] = ACTIONS(3070), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3068), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3068), - [aux_sym_visual_host_key_token1] = ACTIONS(3068), - [aux_sym_xauth_location_token1] = ACTIONS(3068), + [ts_builtin_sym_end] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3077), + [anon_sym_DQUOTE] = ACTIONS(3075), + [aux_sym_match_token1] = ACTIONS(3075), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3075), + [aux_sym_address_family_token1] = ACTIONS(3075), + [aux_sym_batch_mode_token1] = ACTIONS(3075), + [aux_sym_bind_address_token1] = ACTIONS(3075), + [aux_sym_bind_interface_token1] = ACTIONS(3075), + [aux_sym_canonical_domains_token1] = ACTIONS(3075), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3075), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3075), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3075), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3075), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3075), + [aux_sym_certificate_file_token1] = ACTIONS(3075), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3075), + [aux_sym_channel_timeout_token1] = ACTIONS(3075), + [aux_sym_check_host_ip_token1] = ACTIONS(3075), + [aux_sym_ciphers_token1] = ACTIONS(3075), + [aux_sym_cipher_token1] = ACTIONS(3077), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3075), + [aux_sym_compression_token1] = ACTIONS(3075), + [aux_sym_connection_attempts_token1] = ACTIONS(3075), + [aux_sym_connect_timeout_token1] = ACTIONS(3075), + [aux_sym_control_master_token1] = ACTIONS(3075), + [aux_sym_control_path_token1] = ACTIONS(3075), + [aux_sym_control_persist_token1] = ACTIONS(3075), + [aux_sym_dynamic_forward_token1] = ACTIONS(3075), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3075), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3075), + [aux_sym_escape_char_token1] = ACTIONS(3075), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3075), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3075), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3075), + [aux_sym_forward_agent_token1] = ACTIONS(3075), + [aux_sym_forward_x11_token1] = ACTIONS(3077), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3075), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3075), + [aux_sym_gateway_ports_token1] = ACTIONS(3075), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3075), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3075), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3075), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3075), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3075), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3075), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3075), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3075), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3075), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3075), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3075), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3075), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3075), + [aux_sym_host_key_alias_token1] = ACTIONS(3075), + [aux_sym_hostname_token1] = ACTIONS(3075), + [aux_sym_identities_only_token1] = ACTIONS(3075), + [aux_sym_identity_agent_token1] = ACTIONS(3075), + [aux_sym_identity_file_token1] = ACTIONS(3075), + [aux_sym_ignore_unknown_token1] = ACTIONS(3075), + [aux_sym_include_token1] = ACTIONS(3075), + [aux_sym_ip_qos_token1] = ACTIONS(3075), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3075), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3075), + [aux_sym_kex_algorithms_token1] = ACTIONS(3075), + [aux_sym_known_hosts_command_token1] = ACTIONS(3075), + [aux_sym_local_command_token1] = ACTIONS(3075), + [aux_sym_local_forward_token1] = ACTIONS(3075), + [aux_sym_log_level_token1] = ACTIONS(3075), + [aux_sym_log_verbose_token1] = ACTIONS(3075), + [aux_sym_macs_token1] = ACTIONS(3075), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3075), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3075), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3075), + [aux_sym_password_authentication_token1] = ACTIONS(3075), + [aux_sym_permit_local_command_token1] = ACTIONS(3075), + [aux_sym_permit_remote_open_token1] = ACTIONS(3075), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3075), + [aux_sym_port_token1] = ACTIONS(3075), + [aux_sym_preferred_authentications_token1] = ACTIONS(3075), + [aux_sym_protocol_token1] = ACTIONS(3075), + [aux_sym_proxy_command_token1] = ACTIONS(3075), + [aux_sym_proxy_jump_token1] = ACTIONS(3075), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3075), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3075), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3075), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3075), + [aux_sym_rekey_limit_token1] = ACTIONS(3075), + [aux_sym_remote_command_token1] = ACTIONS(3075), + [aux_sym_remote_forward_token1] = ACTIONS(3075), + [aux_sym_request_tty_token1] = ACTIONS(3075), + [aux_sym_required_rsa_size_token1] = ACTIONS(3075), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3075), + [aux_sym_security_key_provider_token1] = ACTIONS(3075), + [aux_sym_send_env_token1] = ACTIONS(3075), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3075), + [aux_sym_server_alive_interval_token1] = ACTIONS(3075), + [aux_sym_session_type_token1] = ACTIONS(3075), + [aux_sym_set_env_token1] = ACTIONS(3075), + [aux_sym_stdin_null_token1] = ACTIONS(3075), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3075), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3075), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3075), + [aux_sym_syslog_facility_token1] = ACTIONS(3075), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3075), + [aux_sym_keep_alive_token1] = ACTIONS(3075), + [aux_sym_tag_token1] = ACTIONS(3075), + [aux_sym_tunnel_token1] = ACTIONS(3077), + [aux_sym_tunnel_device_token1] = ACTIONS(3075), + [aux_sym_update_host_keys_token1] = ACTIONS(3075), + [aux_sym_use_keychain_token1] = ACTIONS(3075), + [aux_sym_use_roaming_token1] = ACTIONS(3075), + [aux_sym_user_token1] = ACTIONS(3077), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3075), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3075), + [aux_sym_visual_host_key_token1] = ACTIONS(3075), + [aux_sym_xauth_location_token1] = ACTIONS(3075), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3076), - [anon_sym_DQUOTE] = ACTIONS(3078), - [aux_sym_match_token1] = ACTIONS(3074), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3074), - [aux_sym_address_family_token1] = ACTIONS(3074), - [aux_sym_batch_mode_token1] = ACTIONS(3074), - [aux_sym_bind_address_token1] = ACTIONS(3074), - [aux_sym_bind_interface_token1] = ACTIONS(3074), - [aux_sym_canonical_domains_token1] = ACTIONS(3074), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3074), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3074), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3074), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3074), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3074), - [aux_sym_certificate_file_token1] = ACTIONS(3074), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3074), - [aux_sym_channel_timeout_token1] = ACTIONS(3074), - [aux_sym_check_host_ip_token1] = ACTIONS(3074), - [aux_sym_ciphers_token1] = ACTIONS(3074), - [aux_sym_cipher_token1] = ACTIONS(3076), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3074), - [aux_sym_compression_token1] = ACTIONS(3074), - [aux_sym_connection_attempts_token1] = ACTIONS(3074), - [aux_sym_connect_timeout_token1] = ACTIONS(3074), - [aux_sym_control_master_token1] = ACTIONS(3074), - [aux_sym_control_path_token1] = ACTIONS(3074), - [aux_sym_control_persist_token1] = ACTIONS(3074), - [aux_sym_dynamic_forward_token1] = ACTIONS(3074), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3074), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3074), - [aux_sym_escape_char_token1] = ACTIONS(3074), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3074), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3074), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3074), - [aux_sym_forward_agent_token1] = ACTIONS(3074), - [aux_sym_forward_x11_token1] = ACTIONS(3076), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3074), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3074), - [aux_sym_gateway_ports_token1] = ACTIONS(3074), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3074), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3074), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3074), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3074), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3074), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3074), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3074), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3074), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3074), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3074), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3074), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3074), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3074), - [aux_sym_host_key_alias_token1] = ACTIONS(3074), - [aux_sym_hostname_token1] = ACTIONS(3074), - [aux_sym_identities_only_token1] = ACTIONS(3074), - [aux_sym_identity_agent_token1] = ACTIONS(3074), - [aux_sym_identity_file_token1] = ACTIONS(3074), - [aux_sym_ignore_unknown_token1] = ACTIONS(3074), - [aux_sym_include_token1] = ACTIONS(3074), - [aux_sym_ip_qos_token1] = ACTIONS(3074), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3074), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3074), - [aux_sym_kex_algorithms_token1] = ACTIONS(3074), - [aux_sym_known_hosts_command_token1] = ACTIONS(3074), - [aux_sym_local_command_token1] = ACTIONS(3074), - [aux_sym_local_forward_token1] = ACTIONS(3074), - [aux_sym_log_level_token1] = ACTIONS(3074), - [aux_sym_log_verbose_token1] = ACTIONS(3074), - [aux_sym_macs_token1] = ACTIONS(3074), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3074), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3074), - [aux_sym_password_authentication_token1] = ACTIONS(3074), - [aux_sym_permit_local_command_token1] = ACTIONS(3074), - [aux_sym_permit_remote_open_token1] = ACTIONS(3074), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3074), - [aux_sym_port_token1] = ACTIONS(3074), - [aux_sym_preferred_authentications_token1] = ACTIONS(3074), - [aux_sym_protocol_token1] = ACTIONS(3074), - [aux_sym_proxy_command_token1] = ACTIONS(3074), - [aux_sym_proxy_jump_token1] = ACTIONS(3074), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3074), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3074), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3074), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3074), - [aux_sym_rekey_limit_token1] = ACTIONS(3074), - [aux_sym_remote_command_token1] = ACTIONS(3074), - [aux_sym_remote_forward_token1] = ACTIONS(3074), - [aux_sym_request_tty_token1] = ACTIONS(3074), - [aux_sym_required_rsa_size_token1] = ACTIONS(3074), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3074), - [aux_sym_security_key_provider_token1] = ACTIONS(3074), - [aux_sym_send_env_token1] = ACTIONS(3074), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3074), - [aux_sym_server_alive_interval_token1] = ACTIONS(3074), - [aux_sym_session_type_token1] = ACTIONS(3074), - [aux_sym_set_env_token1] = ACTIONS(3074), - [aux_sym_stdin_null_token1] = ACTIONS(3074), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3074), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3074), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3074), - [aux_sym_syslog_facility_token1] = ACTIONS(3074), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3074), - [aux_sym_keep_alive_token1] = ACTIONS(3074), - [aux_sym_tag_token1] = ACTIONS(3074), - [aux_sym_tunnel_token1] = ACTIONS(3076), - [aux_sym_tunnel_device_token1] = ACTIONS(3074), - [aux_sym_update_host_keys_token1] = ACTIONS(3074), - [aux_sym_use_keychain_token1] = ACTIONS(3074), - [aux_sym_use_roaming_token1] = ACTIONS(3074), - [aux_sym_user_token1] = ACTIONS(3076), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3074), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3074), - [aux_sym_visual_host_key_token1] = ACTIONS(3074), - [aux_sym_xauth_location_token1] = ACTIONS(3074), + [ts_builtin_sym_end] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(3079), + [aux_sym_match_token1] = ACTIONS(3079), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3079), + [aux_sym_address_family_token1] = ACTIONS(3079), + [aux_sym_batch_mode_token1] = ACTIONS(3079), + [aux_sym_bind_address_token1] = ACTIONS(3079), + [aux_sym_bind_interface_token1] = ACTIONS(3079), + [aux_sym_canonical_domains_token1] = ACTIONS(3079), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3079), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3079), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3079), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3079), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3079), + [aux_sym_certificate_file_token1] = ACTIONS(3079), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3079), + [aux_sym_channel_timeout_token1] = ACTIONS(3079), + [aux_sym_check_host_ip_token1] = ACTIONS(3079), + [aux_sym_ciphers_token1] = ACTIONS(3079), + [aux_sym_cipher_token1] = ACTIONS(3081), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3079), + [aux_sym_compression_token1] = ACTIONS(3079), + [aux_sym_connection_attempts_token1] = ACTIONS(3079), + [aux_sym_connect_timeout_token1] = ACTIONS(3079), + [aux_sym_control_master_token1] = ACTIONS(3079), + [aux_sym_control_path_token1] = ACTIONS(3079), + [aux_sym_control_persist_token1] = ACTIONS(3079), + [aux_sym_dynamic_forward_token1] = ACTIONS(3079), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3079), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3079), + [aux_sym_escape_char_token1] = ACTIONS(3079), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3079), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3079), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3079), + [aux_sym_forward_agent_token1] = ACTIONS(3079), + [aux_sym_forward_x11_token1] = ACTIONS(3081), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3079), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3079), + [aux_sym_gateway_ports_token1] = ACTIONS(3079), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3079), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3079), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3079), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3079), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3079), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3079), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3079), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3079), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3079), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3079), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3079), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3079), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3079), + [aux_sym_host_key_alias_token1] = ACTIONS(3079), + [aux_sym_hostname_token1] = ACTIONS(3079), + [aux_sym_identities_only_token1] = ACTIONS(3079), + [aux_sym_identity_agent_token1] = ACTIONS(3079), + [aux_sym_identity_file_token1] = ACTIONS(3079), + [aux_sym_ignore_unknown_token1] = ACTIONS(3079), + [aux_sym_include_token1] = ACTIONS(3079), + [aux_sym_ip_qos_token1] = ACTIONS(3079), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3079), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3079), + [aux_sym_kex_algorithms_token1] = ACTIONS(3079), + [aux_sym_known_hosts_command_token1] = ACTIONS(3079), + [aux_sym_local_command_token1] = ACTIONS(3079), + [aux_sym_local_forward_token1] = ACTIONS(3079), + [aux_sym_log_level_token1] = ACTIONS(3079), + [aux_sym_log_verbose_token1] = ACTIONS(3079), + [aux_sym_macs_token1] = ACTIONS(3079), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3079), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3079), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3079), + [aux_sym_password_authentication_token1] = ACTIONS(3079), + [aux_sym_permit_local_command_token1] = ACTIONS(3079), + [aux_sym_permit_remote_open_token1] = ACTIONS(3079), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3079), + [aux_sym_port_token1] = ACTIONS(3079), + [aux_sym_preferred_authentications_token1] = ACTIONS(3079), + [aux_sym_protocol_token1] = ACTIONS(3079), + [aux_sym_proxy_command_token1] = ACTIONS(3079), + [aux_sym_proxy_jump_token1] = ACTIONS(3079), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3079), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3079), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3079), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3079), + [aux_sym_rekey_limit_token1] = ACTIONS(3079), + [aux_sym_remote_command_token1] = ACTIONS(3079), + [aux_sym_remote_forward_token1] = ACTIONS(3079), + [aux_sym_request_tty_token1] = ACTIONS(3079), + [aux_sym_required_rsa_size_token1] = ACTIONS(3079), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3079), + [aux_sym_security_key_provider_token1] = ACTIONS(3079), + [aux_sym_send_env_token1] = ACTIONS(3079), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3079), + [aux_sym_server_alive_interval_token1] = ACTIONS(3079), + [aux_sym_session_type_token1] = ACTIONS(3079), + [aux_sym_set_env_token1] = ACTIONS(3079), + [aux_sym_stdin_null_token1] = ACTIONS(3079), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3079), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3079), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3079), + [aux_sym_syslog_facility_token1] = ACTIONS(3079), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3079), + [aux_sym_keep_alive_token1] = ACTIONS(3079), + [aux_sym_tag_token1] = ACTIONS(3079), + [aux_sym_tunnel_token1] = ACTIONS(3081), + [aux_sym_tunnel_device_token1] = ACTIONS(3079), + [aux_sym_update_host_keys_token1] = ACTIONS(3079), + [aux_sym_use_keychain_token1] = ACTIONS(3079), + [aux_sym_use_roaming_token1] = ACTIONS(3079), + [aux_sym_user_token1] = ACTIONS(3081), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3079), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3079), + [aux_sym_visual_host_key_token1] = ACTIONS(3079), + [aux_sym_xauth_location_token1] = ACTIONS(3079), }, [458] = { - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3082), - [anon_sym_DQUOTE] = ACTIONS(3080), - [aux_sym_match_token1] = ACTIONS(3080), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3080), - [aux_sym_address_family_token1] = ACTIONS(3080), - [aux_sym_batch_mode_token1] = ACTIONS(3080), - [aux_sym_bind_address_token1] = ACTIONS(3080), - [aux_sym_bind_interface_token1] = ACTIONS(3080), - [aux_sym_canonical_domains_token1] = ACTIONS(3080), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3080), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3080), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3080), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3080), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3080), - [aux_sym_certificate_file_token1] = ACTIONS(3080), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3080), - [aux_sym_channel_timeout_token1] = ACTIONS(3080), - [aux_sym_check_host_ip_token1] = ACTIONS(3080), - [aux_sym_ciphers_token1] = ACTIONS(3080), - [aux_sym_cipher_token1] = ACTIONS(3082), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3080), - [aux_sym_compression_token1] = ACTIONS(3080), - [aux_sym_connection_attempts_token1] = ACTIONS(3080), - [aux_sym_connect_timeout_token1] = ACTIONS(3080), - [aux_sym_control_master_token1] = ACTIONS(3080), - [aux_sym_control_path_token1] = ACTIONS(3080), - [aux_sym_control_persist_token1] = ACTIONS(3080), - [aux_sym_dynamic_forward_token1] = ACTIONS(3080), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3080), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3080), - [aux_sym_escape_char_token1] = ACTIONS(3080), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3080), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3080), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3080), - [aux_sym_forward_agent_token1] = ACTIONS(3080), - [aux_sym_forward_x11_token1] = ACTIONS(3082), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3080), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3080), - [aux_sym_gateway_ports_token1] = ACTIONS(3080), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3080), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3080), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3080), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3080), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3080), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3080), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3080), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3080), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3080), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3080), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3080), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3080), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3080), - [aux_sym_host_key_alias_token1] = ACTIONS(3080), - [aux_sym_hostname_token1] = ACTIONS(3080), - [aux_sym_identities_only_token1] = ACTIONS(3080), - [aux_sym_identity_agent_token1] = ACTIONS(3080), - [aux_sym_identity_file_token1] = ACTIONS(3080), - [aux_sym_ignore_unknown_token1] = ACTIONS(3080), - [aux_sym_include_token1] = ACTIONS(3080), - [aux_sym_ip_qos_token1] = ACTIONS(3080), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3080), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3080), - [aux_sym_kex_algorithms_token1] = ACTIONS(3080), - [aux_sym_known_hosts_command_token1] = ACTIONS(3080), - [aux_sym_local_command_token1] = ACTIONS(3080), - [aux_sym_local_forward_token1] = ACTIONS(3080), - [aux_sym_log_level_token1] = ACTIONS(3080), - [aux_sym_log_verbose_token1] = ACTIONS(3080), - [aux_sym_macs_token1] = ACTIONS(3080), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3080), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3080), - [aux_sym_password_authentication_token1] = ACTIONS(3080), - [aux_sym_permit_local_command_token1] = ACTIONS(3080), - [aux_sym_permit_remote_open_token1] = ACTIONS(3080), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3080), - [aux_sym_port_token1] = ACTIONS(3080), - [aux_sym_preferred_authentications_token1] = ACTIONS(3080), - [aux_sym_protocol_token1] = ACTIONS(3080), - [aux_sym_proxy_command_token1] = ACTIONS(3080), - [aux_sym_proxy_jump_token1] = ACTIONS(3080), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3080), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3080), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3080), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3080), - [aux_sym_rekey_limit_token1] = ACTIONS(3080), - [aux_sym_remote_command_token1] = ACTIONS(3080), - [aux_sym_remote_forward_token1] = ACTIONS(3080), - [aux_sym_request_tty_token1] = ACTIONS(3080), - [aux_sym_required_rsa_size_token1] = ACTIONS(3080), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3080), - [aux_sym_security_key_provider_token1] = ACTIONS(3080), - [aux_sym_send_env_token1] = ACTIONS(3080), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3080), - [aux_sym_server_alive_interval_token1] = ACTIONS(3080), - [aux_sym_session_type_token1] = ACTIONS(3080), - [aux_sym_set_env_token1] = ACTIONS(3080), - [aux_sym_stdin_null_token1] = ACTIONS(3080), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3080), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3080), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3080), - [aux_sym_syslog_facility_token1] = ACTIONS(3080), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3080), - [aux_sym_keep_alive_token1] = ACTIONS(3080), - [aux_sym_tag_token1] = ACTIONS(3080), - [aux_sym_tunnel_token1] = ACTIONS(3082), - [aux_sym_tunnel_device_token1] = ACTIONS(3080), - [aux_sym_update_host_keys_token1] = ACTIONS(3080), - [aux_sym_use_keychain_token1] = ACTIONS(3080), - [aux_sym_use_roaming_token1] = ACTIONS(3080), - [aux_sym_user_token1] = ACTIONS(3082), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3080), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3080), - [aux_sym_visual_host_key_token1] = ACTIONS(3080), - [aux_sym_xauth_location_token1] = ACTIONS(3080), + [ts_builtin_sym_end] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3085), + [anon_sym_DQUOTE] = ACTIONS(3087), + [aux_sym_match_token1] = ACTIONS(3083), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3083), + [aux_sym_address_family_token1] = ACTIONS(3083), + [aux_sym_batch_mode_token1] = ACTIONS(3083), + [aux_sym_bind_address_token1] = ACTIONS(3083), + [aux_sym_bind_interface_token1] = ACTIONS(3083), + [aux_sym_canonical_domains_token1] = ACTIONS(3083), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3083), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3083), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3083), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3083), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3083), + [aux_sym_certificate_file_token1] = ACTIONS(3083), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3083), + [aux_sym_channel_timeout_token1] = ACTIONS(3083), + [aux_sym_check_host_ip_token1] = ACTIONS(3083), + [aux_sym_ciphers_token1] = ACTIONS(3083), + [aux_sym_cipher_token1] = ACTIONS(3085), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3083), + [aux_sym_compression_token1] = ACTIONS(3083), + [aux_sym_connection_attempts_token1] = ACTIONS(3083), + [aux_sym_connect_timeout_token1] = ACTIONS(3083), + [aux_sym_control_master_token1] = ACTIONS(3083), + [aux_sym_control_path_token1] = ACTIONS(3083), + [aux_sym_control_persist_token1] = ACTIONS(3083), + [aux_sym_dynamic_forward_token1] = ACTIONS(3083), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3083), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3083), + [aux_sym_escape_char_token1] = ACTIONS(3083), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3083), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3083), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3083), + [aux_sym_forward_agent_token1] = ACTIONS(3083), + [aux_sym_forward_x11_token1] = ACTIONS(3085), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3083), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3083), + [aux_sym_gateway_ports_token1] = ACTIONS(3083), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3083), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3083), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3083), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3083), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3083), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3083), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3083), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3083), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3083), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3083), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3083), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3083), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3083), + [aux_sym_host_key_alias_token1] = ACTIONS(3083), + [aux_sym_hostname_token1] = ACTIONS(3083), + [aux_sym_identities_only_token1] = ACTIONS(3083), + [aux_sym_identity_agent_token1] = ACTIONS(3083), + [aux_sym_identity_file_token1] = ACTIONS(3083), + [aux_sym_ignore_unknown_token1] = ACTIONS(3083), + [aux_sym_include_token1] = ACTIONS(3083), + [aux_sym_ip_qos_token1] = ACTIONS(3083), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3083), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3083), + [aux_sym_kex_algorithms_token1] = ACTIONS(3083), + [aux_sym_known_hosts_command_token1] = ACTIONS(3083), + [aux_sym_local_command_token1] = ACTIONS(3083), + [aux_sym_local_forward_token1] = ACTIONS(3083), + [aux_sym_log_level_token1] = ACTIONS(3083), + [aux_sym_log_verbose_token1] = ACTIONS(3083), + [aux_sym_macs_token1] = ACTIONS(3083), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3083), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3083), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3083), + [aux_sym_password_authentication_token1] = ACTIONS(3083), + [aux_sym_permit_local_command_token1] = ACTIONS(3083), + [aux_sym_permit_remote_open_token1] = ACTIONS(3083), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3083), + [aux_sym_port_token1] = ACTIONS(3083), + [aux_sym_preferred_authentications_token1] = ACTIONS(3083), + [aux_sym_protocol_token1] = ACTIONS(3083), + [aux_sym_proxy_command_token1] = ACTIONS(3083), + [aux_sym_proxy_jump_token1] = ACTIONS(3083), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3083), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3083), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3083), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3083), + [aux_sym_rekey_limit_token1] = ACTIONS(3083), + [aux_sym_remote_command_token1] = ACTIONS(3083), + [aux_sym_remote_forward_token1] = ACTIONS(3083), + [aux_sym_request_tty_token1] = ACTIONS(3083), + [aux_sym_required_rsa_size_token1] = ACTIONS(3083), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3083), + [aux_sym_security_key_provider_token1] = ACTIONS(3083), + [aux_sym_send_env_token1] = ACTIONS(3083), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3083), + [aux_sym_server_alive_interval_token1] = ACTIONS(3083), + [aux_sym_session_type_token1] = ACTIONS(3083), + [aux_sym_set_env_token1] = ACTIONS(3083), + [aux_sym_stdin_null_token1] = ACTIONS(3083), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3083), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3083), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3083), + [aux_sym_syslog_facility_token1] = ACTIONS(3083), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3083), + [aux_sym_keep_alive_token1] = ACTIONS(3083), + [aux_sym_tag_token1] = ACTIONS(3083), + [aux_sym_tunnel_token1] = ACTIONS(3085), + [aux_sym_tunnel_device_token1] = ACTIONS(3083), + [aux_sym_update_host_keys_token1] = ACTIONS(3083), + [aux_sym_use_keychain_token1] = ACTIONS(3083), + [aux_sym_use_roaming_token1] = ACTIONS(3083), + [aux_sym_user_token1] = ACTIONS(3085), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3083), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3083), + [aux_sym_visual_host_key_token1] = ACTIONS(3083), + [aux_sym_xauth_location_token1] = ACTIONS(3083), }, [459] = { - [ts_builtin_sym_end] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1274), - [aux_sym_match_token1] = ACTIONS(1272), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1272), - [aux_sym_address_family_token1] = ACTIONS(1272), - [aux_sym_batch_mode_token1] = ACTIONS(1272), - [aux_sym_bind_address_token1] = ACTIONS(1272), - [aux_sym_bind_interface_token1] = ACTIONS(1272), - [aux_sym_canonical_domains_token1] = ACTIONS(1272), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1272), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1272), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1272), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1272), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1272), - [aux_sym_certificate_file_token1] = ACTIONS(1272), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1272), - [aux_sym_channel_timeout_token1] = ACTIONS(1272), - [aux_sym_check_host_ip_token1] = ACTIONS(1272), - [aux_sym_ciphers_token1] = ACTIONS(1272), - [aux_sym_cipher_token1] = ACTIONS(1274), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1272), - [aux_sym_compression_token1] = ACTIONS(1272), - [aux_sym_connection_attempts_token1] = ACTIONS(1272), - [aux_sym_connect_timeout_token1] = ACTIONS(1272), - [aux_sym_control_master_token1] = ACTIONS(1272), - [aux_sym_control_path_token1] = ACTIONS(1272), - [aux_sym_control_persist_token1] = ACTIONS(1272), - [aux_sym_dynamic_forward_token1] = ACTIONS(1272), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1272), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1272), - [aux_sym_escape_char_token1] = ACTIONS(1272), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1272), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1272), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1272), - [aux_sym_forward_agent_token1] = ACTIONS(1272), - [aux_sym_forward_x11_token1] = ACTIONS(1274), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1272), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1272), - [aux_sym_gateway_ports_token1] = ACTIONS(1272), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1272), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1272), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1272), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1272), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1272), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1272), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1272), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1272), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1272), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1272), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1272), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1272), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1272), - [aux_sym_host_key_alias_token1] = ACTIONS(1272), - [aux_sym_hostname_token1] = ACTIONS(1272), - [aux_sym_identities_only_token1] = ACTIONS(1272), - [aux_sym_identity_agent_token1] = ACTIONS(1272), - [aux_sym_identity_file_token1] = ACTIONS(1272), - [aux_sym_ignore_unknown_token1] = ACTIONS(1272), - [aux_sym_include_token1] = ACTIONS(1272), - [aux_sym_ip_qos_token1] = ACTIONS(1272), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1272), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1272), - [aux_sym_kex_algorithms_token1] = ACTIONS(1272), - [aux_sym_known_hosts_command_token1] = ACTIONS(1272), - [aux_sym_local_command_token1] = ACTIONS(1272), - [aux_sym_local_forward_token1] = ACTIONS(1272), - [aux_sym_log_level_token1] = ACTIONS(1272), - [aux_sym_log_verbose_token1] = ACTIONS(1272), - [aux_sym_macs_token1] = ACTIONS(1272), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1272), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1272), - [aux_sym_password_authentication_token1] = ACTIONS(1272), - [aux_sym_permit_local_command_token1] = ACTIONS(1272), - [aux_sym_permit_remote_open_token1] = ACTIONS(1272), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1272), - [aux_sym_port_token1] = ACTIONS(1272), - [aux_sym_preferred_authentications_token1] = ACTIONS(1272), - [aux_sym_protocol_token1] = ACTIONS(1272), - [aux_sym_proxy_command_token1] = ACTIONS(1272), - [aux_sym_proxy_jump_token1] = ACTIONS(1272), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1272), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1272), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1272), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1272), - [aux_sym_rekey_limit_token1] = ACTIONS(1272), - [aux_sym_remote_command_token1] = ACTIONS(1272), - [aux_sym_remote_forward_token1] = ACTIONS(1272), - [aux_sym_request_tty_token1] = ACTIONS(1272), - [aux_sym_required_rsa_size_token1] = ACTIONS(1272), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1272), - [aux_sym_security_key_provider_token1] = ACTIONS(1272), - [aux_sym_send_env_token1] = ACTIONS(1272), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1272), - [aux_sym_server_alive_interval_token1] = ACTIONS(1272), - [aux_sym_session_type_token1] = ACTIONS(1272), - [aux_sym_set_env_token1] = ACTIONS(1272), - [aux_sym_stdin_null_token1] = ACTIONS(1272), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1272), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1272), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1272), - [aux_sym_syslog_facility_token1] = ACTIONS(1272), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1272), - [aux_sym_keep_alive_token1] = ACTIONS(1272), - [aux_sym_tag_token1] = ACTIONS(1272), - [aux_sym_tunnel_token1] = ACTIONS(1274), - [aux_sym_tunnel_device_token1] = ACTIONS(1272), - [aux_sym_update_host_keys_token1] = ACTIONS(1272), - [aux_sym_use_keychain_token1] = ACTIONS(1272), - [aux_sym_use_roaming_token1] = ACTIONS(1272), - [aux_sym_user_token1] = ACTIONS(1274), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1272), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1272), - [aux_sym_visual_host_key_token1] = ACTIONS(1272), - [aux_sym_xauth_location_token1] = ACTIONS(1272), + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3091), + [anon_sym_DQUOTE] = ACTIONS(3093), + [aux_sym_match_token1] = ACTIONS(3089), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3089), + [aux_sym_address_family_token1] = ACTIONS(3089), + [aux_sym_batch_mode_token1] = ACTIONS(3089), + [aux_sym_bind_address_token1] = ACTIONS(3089), + [aux_sym_bind_interface_token1] = ACTIONS(3089), + [aux_sym_canonical_domains_token1] = ACTIONS(3089), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3089), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3089), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3089), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3089), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3089), + [aux_sym_certificate_file_token1] = ACTIONS(3089), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3089), + [aux_sym_channel_timeout_token1] = ACTIONS(3089), + [aux_sym_check_host_ip_token1] = ACTIONS(3089), + [aux_sym_ciphers_token1] = ACTIONS(3089), + [aux_sym_cipher_token1] = ACTIONS(3091), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3089), + [aux_sym_compression_token1] = ACTIONS(3089), + [aux_sym_connection_attempts_token1] = ACTIONS(3089), + [aux_sym_connect_timeout_token1] = ACTIONS(3089), + [aux_sym_control_master_token1] = ACTIONS(3089), + [aux_sym_control_path_token1] = ACTIONS(3089), + [aux_sym_control_persist_token1] = ACTIONS(3089), + [aux_sym_dynamic_forward_token1] = ACTIONS(3089), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3089), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3089), + [aux_sym_escape_char_token1] = ACTIONS(3089), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3089), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3089), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3089), + [aux_sym_forward_agent_token1] = ACTIONS(3089), + [aux_sym_forward_x11_token1] = ACTIONS(3091), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3089), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3089), + [aux_sym_gateway_ports_token1] = ACTIONS(3089), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3089), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3089), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3089), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3089), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3089), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3089), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3089), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3089), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3089), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3089), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3089), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3089), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3089), + [aux_sym_host_key_alias_token1] = ACTIONS(3089), + [aux_sym_hostname_token1] = ACTIONS(3089), + [aux_sym_identities_only_token1] = ACTIONS(3089), + [aux_sym_identity_agent_token1] = ACTIONS(3089), + [aux_sym_identity_file_token1] = ACTIONS(3089), + [aux_sym_ignore_unknown_token1] = ACTIONS(3089), + [aux_sym_include_token1] = ACTIONS(3089), + [aux_sym_ip_qos_token1] = ACTIONS(3089), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3089), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3089), + [aux_sym_kex_algorithms_token1] = ACTIONS(3089), + [aux_sym_known_hosts_command_token1] = ACTIONS(3089), + [aux_sym_local_command_token1] = ACTIONS(3089), + [aux_sym_local_forward_token1] = ACTIONS(3089), + [aux_sym_log_level_token1] = ACTIONS(3089), + [aux_sym_log_verbose_token1] = ACTIONS(3089), + [aux_sym_macs_token1] = ACTIONS(3089), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3089), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3089), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3089), + [aux_sym_password_authentication_token1] = ACTIONS(3089), + [aux_sym_permit_local_command_token1] = ACTIONS(3089), + [aux_sym_permit_remote_open_token1] = ACTIONS(3089), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3089), + [aux_sym_port_token1] = ACTIONS(3089), + [aux_sym_preferred_authentications_token1] = ACTIONS(3089), + [aux_sym_protocol_token1] = ACTIONS(3089), + [aux_sym_proxy_command_token1] = ACTIONS(3089), + [aux_sym_proxy_jump_token1] = ACTIONS(3089), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3089), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3089), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3089), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3089), + [aux_sym_rekey_limit_token1] = ACTIONS(3089), + [aux_sym_remote_command_token1] = ACTIONS(3089), + [aux_sym_remote_forward_token1] = ACTIONS(3089), + [aux_sym_request_tty_token1] = ACTIONS(3089), + [aux_sym_required_rsa_size_token1] = ACTIONS(3089), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3089), + [aux_sym_security_key_provider_token1] = ACTIONS(3089), + [aux_sym_send_env_token1] = ACTIONS(3089), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3089), + [aux_sym_server_alive_interval_token1] = ACTIONS(3089), + [aux_sym_session_type_token1] = ACTIONS(3089), + [aux_sym_set_env_token1] = ACTIONS(3089), + [aux_sym_stdin_null_token1] = ACTIONS(3089), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3089), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3089), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3089), + [aux_sym_syslog_facility_token1] = ACTIONS(3089), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3089), + [aux_sym_keep_alive_token1] = ACTIONS(3089), + [aux_sym_tag_token1] = ACTIONS(3089), + [aux_sym_tunnel_token1] = ACTIONS(3091), + [aux_sym_tunnel_device_token1] = ACTIONS(3089), + [aux_sym_update_host_keys_token1] = ACTIONS(3089), + [aux_sym_use_keychain_token1] = ACTIONS(3089), + [aux_sym_use_roaming_token1] = ACTIONS(3089), + [aux_sym_user_token1] = ACTIONS(3091), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3089), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3089), + [aux_sym_visual_host_key_token1] = ACTIONS(3089), + [aux_sym_xauth_location_token1] = ACTIONS(3089), }, [460] = { - [ts_builtin_sym_end] = ACTIONS(1092), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1094), - [aux_sym_match_token1] = ACTIONS(1092), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1092), - [aux_sym_address_family_token1] = ACTIONS(1092), - [aux_sym_batch_mode_token1] = ACTIONS(1092), - [aux_sym_bind_address_token1] = ACTIONS(1092), - [aux_sym_bind_interface_token1] = ACTIONS(1092), - [aux_sym_canonical_domains_token1] = ACTIONS(1092), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1092), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1092), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1092), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1092), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1092), - [aux_sym_certificate_file_token1] = ACTIONS(1092), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1092), - [aux_sym_channel_timeout_token1] = ACTIONS(1092), - [aux_sym_check_host_ip_token1] = ACTIONS(1092), - [aux_sym_ciphers_token1] = ACTIONS(1092), - [aux_sym_cipher_token1] = ACTIONS(1094), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1092), - [aux_sym_compression_token1] = ACTIONS(1092), - [aux_sym_connection_attempts_token1] = ACTIONS(1092), - [aux_sym_connect_timeout_token1] = ACTIONS(1092), - [aux_sym_control_master_token1] = ACTIONS(1092), - [aux_sym_control_path_token1] = ACTIONS(1092), - [aux_sym_control_persist_token1] = ACTIONS(1092), - [aux_sym_dynamic_forward_token1] = ACTIONS(1092), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1092), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1092), - [aux_sym_escape_char_token1] = ACTIONS(1092), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1092), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1092), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1092), - [aux_sym_forward_agent_token1] = ACTIONS(1092), - [aux_sym_forward_x11_token1] = ACTIONS(1094), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1092), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1092), - [aux_sym_gateway_ports_token1] = ACTIONS(1092), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1092), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1092), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1092), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1092), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1092), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1092), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1092), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1092), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1092), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1092), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1092), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1092), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1092), - [aux_sym_host_key_alias_token1] = ACTIONS(1092), - [aux_sym_hostname_token1] = ACTIONS(1092), - [aux_sym_identities_only_token1] = ACTIONS(1092), - [aux_sym_identity_agent_token1] = ACTIONS(1092), - [aux_sym_identity_file_token1] = ACTIONS(1092), - [aux_sym_ignore_unknown_token1] = ACTIONS(1092), - [aux_sym_include_token1] = ACTIONS(1092), - [aux_sym_ip_qos_token1] = ACTIONS(1092), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1092), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1092), - [aux_sym_kex_algorithms_token1] = ACTIONS(1092), - [aux_sym_known_hosts_command_token1] = ACTIONS(1092), - [aux_sym_local_command_token1] = ACTIONS(1092), - [aux_sym_local_forward_token1] = ACTIONS(1092), - [aux_sym_log_level_token1] = ACTIONS(1092), - [aux_sym_log_verbose_token1] = ACTIONS(1092), - [aux_sym_macs_token1] = ACTIONS(1092), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1092), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1092), - [aux_sym_password_authentication_token1] = ACTIONS(1092), - [aux_sym_permit_local_command_token1] = ACTIONS(1092), - [aux_sym_permit_remote_open_token1] = ACTIONS(1092), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1092), - [aux_sym_port_token1] = ACTIONS(1092), - [aux_sym_preferred_authentications_token1] = ACTIONS(1092), - [aux_sym_protocol_token1] = ACTIONS(1092), - [aux_sym_proxy_command_token1] = ACTIONS(1092), - [aux_sym_proxy_jump_token1] = ACTIONS(1092), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1092), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1092), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1092), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1092), - [aux_sym_rekey_limit_token1] = ACTIONS(1092), - [aux_sym_remote_command_token1] = ACTIONS(1092), - [aux_sym_remote_forward_token1] = ACTIONS(1092), - [aux_sym_request_tty_token1] = ACTIONS(1092), - [aux_sym_required_rsa_size_token1] = ACTIONS(1092), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1092), - [aux_sym_security_key_provider_token1] = ACTIONS(1092), - [aux_sym_send_env_token1] = ACTIONS(1092), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1092), - [aux_sym_server_alive_interval_token1] = ACTIONS(1092), - [aux_sym_session_type_token1] = ACTIONS(1092), - [aux_sym_set_env_token1] = ACTIONS(1092), - [aux_sym_stdin_null_token1] = ACTIONS(1092), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1092), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1092), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1092), - [aux_sym_syslog_facility_token1] = ACTIONS(1092), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1092), - [aux_sym_keep_alive_token1] = ACTIONS(1092), - [aux_sym_tag_token1] = ACTIONS(1092), - [aux_sym_tunnel_token1] = ACTIONS(1094), - [aux_sym_tunnel_device_token1] = ACTIONS(1092), - [aux_sym_update_host_keys_token1] = ACTIONS(1092), - [aux_sym_use_keychain_token1] = ACTIONS(1092), - [aux_sym_use_roaming_token1] = ACTIONS(1092), - [aux_sym_user_token1] = ACTIONS(1094), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1092), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1092), - [aux_sym_visual_host_key_token1] = ACTIONS(1092), - [aux_sym_xauth_location_token1] = ACTIONS(1092), + [ts_builtin_sym_end] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3097), + [anon_sym_DQUOTE] = ACTIONS(3095), + [aux_sym_match_token1] = ACTIONS(3095), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3095), + [aux_sym_address_family_token1] = ACTIONS(3095), + [aux_sym_batch_mode_token1] = ACTIONS(3095), + [aux_sym_bind_address_token1] = ACTIONS(3095), + [aux_sym_bind_interface_token1] = ACTIONS(3095), + [aux_sym_canonical_domains_token1] = ACTIONS(3095), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3095), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3095), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3095), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3095), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3095), + [aux_sym_certificate_file_token1] = ACTIONS(3095), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3095), + [aux_sym_channel_timeout_token1] = ACTIONS(3095), + [aux_sym_check_host_ip_token1] = ACTIONS(3095), + [aux_sym_ciphers_token1] = ACTIONS(3095), + [aux_sym_cipher_token1] = ACTIONS(3097), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3095), + [aux_sym_compression_token1] = ACTIONS(3095), + [aux_sym_connection_attempts_token1] = ACTIONS(3095), + [aux_sym_connect_timeout_token1] = ACTIONS(3095), + [aux_sym_control_master_token1] = ACTIONS(3095), + [aux_sym_control_path_token1] = ACTIONS(3095), + [aux_sym_control_persist_token1] = ACTIONS(3095), + [aux_sym_dynamic_forward_token1] = ACTIONS(3095), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3095), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3095), + [aux_sym_escape_char_token1] = ACTIONS(3095), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3095), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3095), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3095), + [aux_sym_forward_agent_token1] = ACTIONS(3095), + [aux_sym_forward_x11_token1] = ACTIONS(3097), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3095), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3095), + [aux_sym_gateway_ports_token1] = ACTIONS(3095), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3095), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3095), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3095), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3095), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3095), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3095), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3095), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3095), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3095), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3095), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3095), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3095), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3095), + [aux_sym_host_key_alias_token1] = ACTIONS(3095), + [aux_sym_hostname_token1] = ACTIONS(3095), + [aux_sym_identities_only_token1] = ACTIONS(3095), + [aux_sym_identity_agent_token1] = ACTIONS(3095), + [aux_sym_identity_file_token1] = ACTIONS(3095), + [aux_sym_ignore_unknown_token1] = ACTIONS(3095), + [aux_sym_include_token1] = ACTIONS(3095), + [aux_sym_ip_qos_token1] = ACTIONS(3095), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3095), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3095), + [aux_sym_kex_algorithms_token1] = ACTIONS(3095), + [aux_sym_known_hosts_command_token1] = ACTIONS(3095), + [aux_sym_local_command_token1] = ACTIONS(3095), + [aux_sym_local_forward_token1] = ACTIONS(3095), + [aux_sym_log_level_token1] = ACTIONS(3095), + [aux_sym_log_verbose_token1] = ACTIONS(3095), + [aux_sym_macs_token1] = ACTIONS(3095), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3095), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3095), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3095), + [aux_sym_password_authentication_token1] = ACTIONS(3095), + [aux_sym_permit_local_command_token1] = ACTIONS(3095), + [aux_sym_permit_remote_open_token1] = ACTIONS(3095), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3095), + [aux_sym_port_token1] = ACTIONS(3095), + [aux_sym_preferred_authentications_token1] = ACTIONS(3095), + [aux_sym_protocol_token1] = ACTIONS(3095), + [aux_sym_proxy_command_token1] = ACTIONS(3095), + [aux_sym_proxy_jump_token1] = ACTIONS(3095), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3095), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3095), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3095), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3095), + [aux_sym_rekey_limit_token1] = ACTIONS(3095), + [aux_sym_remote_command_token1] = ACTIONS(3095), + [aux_sym_remote_forward_token1] = ACTIONS(3095), + [aux_sym_request_tty_token1] = ACTIONS(3095), + [aux_sym_required_rsa_size_token1] = ACTIONS(3095), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3095), + [aux_sym_security_key_provider_token1] = ACTIONS(3095), + [aux_sym_send_env_token1] = ACTIONS(3095), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3095), + [aux_sym_server_alive_interval_token1] = ACTIONS(3095), + [aux_sym_session_type_token1] = ACTIONS(3095), + [aux_sym_set_env_token1] = ACTIONS(3095), + [aux_sym_stdin_null_token1] = ACTIONS(3095), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3095), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3095), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3095), + [aux_sym_syslog_facility_token1] = ACTIONS(3095), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3095), + [aux_sym_keep_alive_token1] = ACTIONS(3095), + [aux_sym_tag_token1] = ACTIONS(3095), + [aux_sym_tunnel_token1] = ACTIONS(3097), + [aux_sym_tunnel_device_token1] = ACTIONS(3095), + [aux_sym_update_host_keys_token1] = ACTIONS(3095), + [aux_sym_use_keychain_token1] = ACTIONS(3095), + [aux_sym_use_roaming_token1] = ACTIONS(3095), + [aux_sym_user_token1] = ACTIONS(3097), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3095), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3095), + [aux_sym_visual_host_key_token1] = ACTIONS(3095), + [aux_sym_xauth_location_token1] = ACTIONS(3095), }, [461] = { - [ts_builtin_sym_end] = ACTIONS(3084), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3086), - [aux_sym_match_token1] = ACTIONS(3084), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3084), - [aux_sym_address_family_token1] = ACTIONS(3084), - [aux_sym_batch_mode_token1] = ACTIONS(3084), - [aux_sym_bind_address_token1] = ACTIONS(3084), - [aux_sym_bind_interface_token1] = ACTIONS(3084), - [aux_sym_canonical_domains_token1] = ACTIONS(3084), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3084), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3084), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3084), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3084), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3084), - [aux_sym_certificate_file_token1] = ACTIONS(3084), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3084), - [aux_sym_channel_timeout_token1] = ACTIONS(3084), - [aux_sym_check_host_ip_token1] = ACTIONS(3084), - [aux_sym_ciphers_token1] = ACTIONS(3084), - [aux_sym_cipher_token1] = ACTIONS(3086), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3084), - [aux_sym_compression_token1] = ACTIONS(3084), - [aux_sym_connection_attempts_token1] = ACTIONS(3084), - [aux_sym_connect_timeout_token1] = ACTIONS(3084), - [aux_sym_control_master_token1] = ACTIONS(3084), - [aux_sym_control_path_token1] = ACTIONS(3084), - [aux_sym_control_persist_token1] = ACTIONS(3084), - [aux_sym_dynamic_forward_token1] = ACTIONS(3084), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3084), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3084), - [aux_sym_escape_char_token1] = ACTIONS(3084), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3084), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3084), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3084), - [aux_sym_forward_agent_token1] = ACTIONS(3084), - [aux_sym_forward_x11_token1] = ACTIONS(3086), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3084), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3084), - [aux_sym_gateway_ports_token1] = ACTIONS(3084), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3084), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3084), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3084), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3084), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3084), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3084), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3084), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3084), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3084), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3084), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3084), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3084), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3084), - [aux_sym_host_key_alias_token1] = ACTIONS(3084), - [aux_sym_hostname_token1] = ACTIONS(3084), - [aux_sym_identities_only_token1] = ACTIONS(3084), - [aux_sym_identity_agent_token1] = ACTIONS(3084), - [aux_sym_identity_file_token1] = ACTIONS(3084), - [aux_sym_ignore_unknown_token1] = ACTIONS(3084), - [aux_sym_include_token1] = ACTIONS(3084), - [aux_sym_ip_qos_token1] = ACTIONS(3084), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3084), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3084), - [aux_sym_kex_algorithms_token1] = ACTIONS(3084), - [aux_sym_known_hosts_command_token1] = ACTIONS(3084), - [aux_sym_local_command_token1] = ACTIONS(3084), - [aux_sym_local_forward_token1] = ACTIONS(3084), - [aux_sym_log_level_token1] = ACTIONS(3084), - [aux_sym_log_verbose_token1] = ACTIONS(3084), - [aux_sym_macs_token1] = ACTIONS(3084), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3084), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3084), - [aux_sym_password_authentication_token1] = ACTIONS(3084), - [aux_sym_permit_local_command_token1] = ACTIONS(3084), - [aux_sym_permit_remote_open_token1] = ACTIONS(3084), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3084), - [aux_sym_port_token1] = ACTIONS(3084), - [aux_sym_preferred_authentications_token1] = ACTIONS(3084), - [aux_sym_protocol_token1] = ACTIONS(3084), - [aux_sym_proxy_command_token1] = ACTIONS(3084), - [aux_sym_proxy_jump_token1] = ACTIONS(3084), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3084), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3084), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3084), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3084), - [aux_sym_rekey_limit_token1] = ACTIONS(3084), - [aux_sym_remote_command_token1] = ACTIONS(3084), - [aux_sym_remote_forward_token1] = ACTIONS(3084), - [aux_sym_request_tty_token1] = ACTIONS(3084), - [aux_sym_required_rsa_size_token1] = ACTIONS(3084), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3084), - [aux_sym_security_key_provider_token1] = ACTIONS(3084), - [aux_sym_send_env_token1] = ACTIONS(3084), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3084), - [aux_sym_server_alive_interval_token1] = ACTIONS(3084), - [aux_sym_session_type_token1] = ACTIONS(3084), - [aux_sym_set_env_token1] = ACTIONS(3084), - [aux_sym_stdin_null_token1] = ACTIONS(3084), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3084), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3084), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3084), - [aux_sym_syslog_facility_token1] = ACTIONS(3084), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3084), - [aux_sym_keep_alive_token1] = ACTIONS(3084), - [aux_sym_tag_token1] = ACTIONS(3084), - [aux_sym_tunnel_token1] = ACTIONS(3086), - [aux_sym_tunnel_device_token1] = ACTIONS(3084), - [aux_sym_update_host_keys_token1] = ACTIONS(3084), - [aux_sym_use_keychain_token1] = ACTIONS(3084), - [aux_sym_use_roaming_token1] = ACTIONS(3084), - [aux_sym_user_token1] = ACTIONS(3086), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3084), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3084), - [aux_sym_visual_host_key_token1] = ACTIONS(3084), - [aux_sym_xauth_location_token1] = ACTIONS(3084), + [ts_builtin_sym_end] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3101), + [anon_sym_DQUOTE] = ACTIONS(3103), + [aux_sym_match_token1] = ACTIONS(3099), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3099), + [aux_sym_address_family_token1] = ACTIONS(3099), + [aux_sym_batch_mode_token1] = ACTIONS(3099), + [aux_sym_bind_address_token1] = ACTIONS(3099), + [aux_sym_bind_interface_token1] = ACTIONS(3099), + [aux_sym_canonical_domains_token1] = ACTIONS(3099), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3099), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3099), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3099), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3099), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3099), + [aux_sym_certificate_file_token1] = ACTIONS(3099), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3099), + [aux_sym_channel_timeout_token1] = ACTIONS(3099), + [aux_sym_check_host_ip_token1] = ACTIONS(3099), + [aux_sym_ciphers_token1] = ACTIONS(3099), + [aux_sym_cipher_token1] = ACTIONS(3101), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3099), + [aux_sym_compression_token1] = ACTIONS(3099), + [aux_sym_connection_attempts_token1] = ACTIONS(3099), + [aux_sym_connect_timeout_token1] = ACTIONS(3099), + [aux_sym_control_master_token1] = ACTIONS(3099), + [aux_sym_control_path_token1] = ACTIONS(3099), + [aux_sym_control_persist_token1] = ACTIONS(3099), + [aux_sym_dynamic_forward_token1] = ACTIONS(3099), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3099), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3099), + [aux_sym_escape_char_token1] = ACTIONS(3099), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3099), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3099), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3099), + [aux_sym_forward_agent_token1] = ACTIONS(3099), + [aux_sym_forward_x11_token1] = ACTIONS(3101), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3099), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3099), + [aux_sym_gateway_ports_token1] = ACTIONS(3099), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3099), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3099), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3099), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3099), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3099), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3099), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3099), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3099), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3099), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3099), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3099), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3099), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3099), + [aux_sym_host_key_alias_token1] = ACTIONS(3099), + [aux_sym_hostname_token1] = ACTIONS(3099), + [aux_sym_identities_only_token1] = ACTIONS(3099), + [aux_sym_identity_agent_token1] = ACTIONS(3099), + [aux_sym_identity_file_token1] = ACTIONS(3099), + [aux_sym_ignore_unknown_token1] = ACTIONS(3099), + [aux_sym_include_token1] = ACTIONS(3099), + [aux_sym_ip_qos_token1] = ACTIONS(3099), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3099), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3099), + [aux_sym_kex_algorithms_token1] = ACTIONS(3099), + [aux_sym_known_hosts_command_token1] = ACTIONS(3099), + [aux_sym_local_command_token1] = ACTIONS(3099), + [aux_sym_local_forward_token1] = ACTIONS(3099), + [aux_sym_log_level_token1] = ACTIONS(3099), + [aux_sym_log_verbose_token1] = ACTIONS(3099), + [aux_sym_macs_token1] = ACTIONS(3099), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3099), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3099), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3099), + [aux_sym_password_authentication_token1] = ACTIONS(3099), + [aux_sym_permit_local_command_token1] = ACTIONS(3099), + [aux_sym_permit_remote_open_token1] = ACTIONS(3099), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3099), + [aux_sym_port_token1] = ACTIONS(3099), + [aux_sym_preferred_authentications_token1] = ACTIONS(3099), + [aux_sym_protocol_token1] = ACTIONS(3099), + [aux_sym_proxy_command_token1] = ACTIONS(3099), + [aux_sym_proxy_jump_token1] = ACTIONS(3099), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3099), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3099), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3099), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3099), + [aux_sym_rekey_limit_token1] = ACTIONS(3099), + [aux_sym_remote_command_token1] = ACTIONS(3099), + [aux_sym_remote_forward_token1] = ACTIONS(3099), + [aux_sym_request_tty_token1] = ACTIONS(3099), + [aux_sym_required_rsa_size_token1] = ACTIONS(3099), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3099), + [aux_sym_security_key_provider_token1] = ACTIONS(3099), + [aux_sym_send_env_token1] = ACTIONS(3099), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3099), + [aux_sym_server_alive_interval_token1] = ACTIONS(3099), + [aux_sym_session_type_token1] = ACTIONS(3099), + [aux_sym_set_env_token1] = ACTIONS(3099), + [aux_sym_stdin_null_token1] = ACTIONS(3099), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3099), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3099), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3099), + [aux_sym_syslog_facility_token1] = ACTIONS(3099), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3099), + [aux_sym_keep_alive_token1] = ACTIONS(3099), + [aux_sym_tag_token1] = ACTIONS(3099), + [aux_sym_tunnel_token1] = ACTIONS(3101), + [aux_sym_tunnel_device_token1] = ACTIONS(3099), + [aux_sym_update_host_keys_token1] = ACTIONS(3099), + [aux_sym_use_keychain_token1] = ACTIONS(3099), + [aux_sym_use_roaming_token1] = ACTIONS(3099), + [aux_sym_user_token1] = ACTIONS(3101), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3099), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3099), + [aux_sym_visual_host_key_token1] = ACTIONS(3099), + [aux_sym_xauth_location_token1] = ACTIONS(3099), }, [462] = { - [ts_builtin_sym_end] = ACTIONS(3088), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3090), - [aux_sym_match_token1] = ACTIONS(3088), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3088), - [aux_sym_address_family_token1] = ACTIONS(3088), - [aux_sym_batch_mode_token1] = ACTIONS(3088), - [aux_sym_bind_address_token1] = ACTIONS(3088), - [aux_sym_bind_interface_token1] = ACTIONS(3088), - [aux_sym_canonical_domains_token1] = ACTIONS(3088), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3088), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3088), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3088), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3088), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3088), - [aux_sym_certificate_file_token1] = ACTIONS(3088), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3088), - [aux_sym_channel_timeout_token1] = ACTIONS(3088), - [aux_sym_check_host_ip_token1] = ACTIONS(3088), - [aux_sym_ciphers_token1] = ACTIONS(3088), - [aux_sym_cipher_token1] = ACTIONS(3090), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3088), - [aux_sym_compression_token1] = ACTIONS(3088), - [aux_sym_connection_attempts_token1] = ACTIONS(3088), - [aux_sym_connect_timeout_token1] = ACTIONS(3088), - [aux_sym_control_master_token1] = ACTIONS(3088), - [aux_sym_control_path_token1] = ACTIONS(3088), - [aux_sym_control_persist_token1] = ACTIONS(3088), - [aux_sym_dynamic_forward_token1] = ACTIONS(3088), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3088), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3088), - [aux_sym_escape_char_token1] = ACTIONS(3088), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3088), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3088), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3088), - [aux_sym_forward_agent_token1] = ACTIONS(3088), - [aux_sym_forward_x11_token1] = ACTIONS(3090), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3088), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3088), - [aux_sym_gateway_ports_token1] = ACTIONS(3088), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3088), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3088), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3088), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3088), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3088), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3088), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3088), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3088), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3088), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3088), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3088), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3088), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3088), - [aux_sym_host_key_alias_token1] = ACTIONS(3088), - [aux_sym_hostname_token1] = ACTIONS(3088), - [aux_sym_identities_only_token1] = ACTIONS(3088), - [aux_sym_identity_agent_token1] = ACTIONS(3088), - [aux_sym_identity_file_token1] = ACTIONS(3088), - [aux_sym_ignore_unknown_token1] = ACTIONS(3088), - [aux_sym_include_token1] = ACTIONS(3088), - [aux_sym_ip_qos_token1] = ACTIONS(3088), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3088), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3088), - [aux_sym_kex_algorithms_token1] = ACTIONS(3088), - [aux_sym_known_hosts_command_token1] = ACTIONS(3088), - [aux_sym_local_command_token1] = ACTIONS(3088), - [aux_sym_local_forward_token1] = ACTIONS(3088), - [aux_sym_log_level_token1] = ACTIONS(3088), - [aux_sym_log_verbose_token1] = ACTIONS(3088), - [aux_sym_macs_token1] = ACTIONS(3088), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3088), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3088), - [aux_sym_password_authentication_token1] = ACTIONS(3088), - [aux_sym_permit_local_command_token1] = ACTIONS(3088), - [aux_sym_permit_remote_open_token1] = ACTIONS(3088), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3088), - [aux_sym_port_token1] = ACTIONS(3088), - [aux_sym_preferred_authentications_token1] = ACTIONS(3088), - [aux_sym_protocol_token1] = ACTIONS(3088), - [aux_sym_proxy_command_token1] = ACTIONS(3088), - [aux_sym_proxy_jump_token1] = ACTIONS(3088), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3088), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3088), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3088), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3088), - [aux_sym_rekey_limit_token1] = ACTIONS(3088), - [aux_sym_remote_command_token1] = ACTIONS(3088), - [aux_sym_remote_forward_token1] = ACTIONS(3088), - [aux_sym_request_tty_token1] = ACTIONS(3088), - [aux_sym_required_rsa_size_token1] = ACTIONS(3088), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3088), - [aux_sym_security_key_provider_token1] = ACTIONS(3088), - [aux_sym_send_env_token1] = ACTIONS(3088), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3088), - [aux_sym_server_alive_interval_token1] = ACTIONS(3088), - [aux_sym_session_type_token1] = ACTIONS(3088), - [aux_sym_set_env_token1] = ACTIONS(3088), - [aux_sym_stdin_null_token1] = ACTIONS(3088), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3088), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3088), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3088), - [aux_sym_syslog_facility_token1] = ACTIONS(3088), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3088), - [aux_sym_keep_alive_token1] = ACTIONS(3088), - [aux_sym_tag_token1] = ACTIONS(3088), - [aux_sym_tunnel_token1] = ACTIONS(3090), - [aux_sym_tunnel_device_token1] = ACTIONS(3088), - [aux_sym_update_host_keys_token1] = ACTIONS(3088), - [aux_sym_use_keychain_token1] = ACTIONS(3088), - [aux_sym_use_roaming_token1] = ACTIONS(3088), - [aux_sym_user_token1] = ACTIONS(3090), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3088), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3088), - [aux_sym_visual_host_key_token1] = ACTIONS(3088), - [aux_sym_xauth_location_token1] = ACTIONS(3088), + [ts_builtin_sym_end] = ACTIONS(3105), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3109), + [aux_sym_match_token1] = ACTIONS(3105), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3105), + [aux_sym_address_family_token1] = ACTIONS(3105), + [aux_sym_batch_mode_token1] = ACTIONS(3105), + [aux_sym_bind_address_token1] = ACTIONS(3105), + [aux_sym_bind_interface_token1] = ACTIONS(3105), + [aux_sym_canonical_domains_token1] = ACTIONS(3105), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3105), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3105), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3105), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3105), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3105), + [aux_sym_certificate_file_token1] = ACTIONS(3105), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3105), + [aux_sym_channel_timeout_token1] = ACTIONS(3105), + [aux_sym_check_host_ip_token1] = ACTIONS(3105), + [aux_sym_ciphers_token1] = ACTIONS(3105), + [aux_sym_cipher_token1] = ACTIONS(3107), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3105), + [aux_sym_compression_token1] = ACTIONS(3105), + [aux_sym_connection_attempts_token1] = ACTIONS(3105), + [aux_sym_connect_timeout_token1] = ACTIONS(3105), + [aux_sym_control_master_token1] = ACTIONS(3105), + [aux_sym_control_path_token1] = ACTIONS(3105), + [aux_sym_control_persist_token1] = ACTIONS(3105), + [aux_sym_dynamic_forward_token1] = ACTIONS(3105), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3105), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3105), + [aux_sym_escape_char_token1] = ACTIONS(3105), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3105), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3105), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3105), + [aux_sym_forward_agent_token1] = ACTIONS(3105), + [aux_sym_forward_x11_token1] = ACTIONS(3107), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3105), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3105), + [aux_sym_gateway_ports_token1] = ACTIONS(3105), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3105), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3105), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3105), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3105), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3105), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3105), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3105), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3105), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3105), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3105), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3105), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3105), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3105), + [aux_sym_host_key_alias_token1] = ACTIONS(3105), + [aux_sym_hostname_token1] = ACTIONS(3105), + [aux_sym_identities_only_token1] = ACTIONS(3105), + [aux_sym_identity_agent_token1] = ACTIONS(3105), + [aux_sym_identity_file_token1] = ACTIONS(3105), + [aux_sym_ignore_unknown_token1] = ACTIONS(3105), + [aux_sym_include_token1] = ACTIONS(3105), + [aux_sym_ip_qos_token1] = ACTIONS(3105), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3105), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3105), + [aux_sym_kex_algorithms_token1] = ACTIONS(3105), + [aux_sym_known_hosts_command_token1] = ACTIONS(3105), + [aux_sym_local_command_token1] = ACTIONS(3105), + [aux_sym_local_forward_token1] = ACTIONS(3105), + [aux_sym_log_level_token1] = ACTIONS(3105), + [aux_sym_log_verbose_token1] = ACTIONS(3105), + [aux_sym_macs_token1] = ACTIONS(3105), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3105), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3105), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3105), + [aux_sym_password_authentication_token1] = ACTIONS(3105), + [aux_sym_permit_local_command_token1] = ACTIONS(3105), + [aux_sym_permit_remote_open_token1] = ACTIONS(3105), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3105), + [aux_sym_port_token1] = ACTIONS(3105), + [aux_sym_preferred_authentications_token1] = ACTIONS(3105), + [aux_sym_protocol_token1] = ACTIONS(3105), + [aux_sym_proxy_command_token1] = ACTIONS(3105), + [aux_sym_proxy_jump_token1] = ACTIONS(3105), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3105), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3105), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3105), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3105), + [aux_sym_rekey_limit_token1] = ACTIONS(3105), + [aux_sym_remote_command_token1] = ACTIONS(3105), + [aux_sym_remote_forward_token1] = ACTIONS(3105), + [aux_sym_request_tty_token1] = ACTIONS(3105), + [aux_sym_required_rsa_size_token1] = ACTIONS(3105), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3105), + [aux_sym_security_key_provider_token1] = ACTIONS(3105), + [aux_sym_send_env_token1] = ACTIONS(3105), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3105), + [aux_sym_server_alive_interval_token1] = ACTIONS(3105), + [aux_sym_session_type_token1] = ACTIONS(3105), + [aux_sym_set_env_token1] = ACTIONS(3105), + [aux_sym_stdin_null_token1] = ACTIONS(3105), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3105), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3105), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3105), + [aux_sym_syslog_facility_token1] = ACTIONS(3105), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3105), + [aux_sym_keep_alive_token1] = ACTIONS(3105), + [aux_sym_tag_token1] = ACTIONS(3105), + [aux_sym_tunnel_token1] = ACTIONS(3107), + [aux_sym_tunnel_device_token1] = ACTIONS(3105), + [aux_sym_update_host_keys_token1] = ACTIONS(3105), + [aux_sym_use_keychain_token1] = ACTIONS(3105), + [aux_sym_use_roaming_token1] = ACTIONS(3105), + [aux_sym_user_token1] = ACTIONS(3107), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3105), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3105), + [aux_sym_visual_host_key_token1] = ACTIONS(3105), + [aux_sym_xauth_location_token1] = ACTIONS(3105), }, [463] = { - [ts_builtin_sym_end] = ACTIONS(3092), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3094), - [aux_sym_match_token1] = ACTIONS(3092), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3092), - [aux_sym_address_family_token1] = ACTIONS(3092), - [aux_sym_batch_mode_token1] = ACTIONS(3092), - [aux_sym_bind_address_token1] = ACTIONS(3092), - [aux_sym_bind_interface_token1] = ACTIONS(3092), - [aux_sym_canonical_domains_token1] = ACTIONS(3092), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3092), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3092), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3092), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3092), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3092), - [aux_sym_certificate_file_token1] = ACTIONS(3092), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3092), - [aux_sym_channel_timeout_token1] = ACTIONS(3092), - [aux_sym_check_host_ip_token1] = ACTIONS(3092), - [aux_sym_ciphers_token1] = ACTIONS(3092), - [aux_sym_cipher_token1] = ACTIONS(3094), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3092), - [aux_sym_compression_token1] = ACTIONS(3092), - [aux_sym_connection_attempts_token1] = ACTIONS(3092), - [aux_sym_connect_timeout_token1] = ACTIONS(3092), - [aux_sym_control_master_token1] = ACTIONS(3092), - [aux_sym_control_path_token1] = ACTIONS(3092), - [aux_sym_control_persist_token1] = ACTIONS(3092), - [aux_sym_dynamic_forward_token1] = ACTIONS(3092), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3092), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3092), - [aux_sym_escape_char_token1] = ACTIONS(3092), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3092), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3092), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3092), - [aux_sym_forward_agent_token1] = ACTIONS(3092), - [aux_sym_forward_x11_token1] = ACTIONS(3094), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3092), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3092), - [aux_sym_gateway_ports_token1] = ACTIONS(3092), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3092), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3092), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3092), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3092), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3092), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3092), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3092), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3092), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3092), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3092), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3092), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3092), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3092), - [aux_sym_host_key_alias_token1] = ACTIONS(3092), - [aux_sym_hostname_token1] = ACTIONS(3092), - [aux_sym_identities_only_token1] = ACTIONS(3092), - [aux_sym_identity_agent_token1] = ACTIONS(3092), - [aux_sym_identity_file_token1] = ACTIONS(3092), - [aux_sym_ignore_unknown_token1] = ACTIONS(3092), - [aux_sym_include_token1] = ACTIONS(3092), - [aux_sym_ip_qos_token1] = ACTIONS(3092), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3092), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3092), - [aux_sym_kex_algorithms_token1] = ACTIONS(3092), - [aux_sym_known_hosts_command_token1] = ACTIONS(3092), - [aux_sym_local_command_token1] = ACTIONS(3092), - [aux_sym_local_forward_token1] = ACTIONS(3092), - [aux_sym_log_level_token1] = ACTIONS(3092), - [aux_sym_log_verbose_token1] = ACTIONS(3092), - [aux_sym_macs_token1] = ACTIONS(3092), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3092), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3092), - [aux_sym_password_authentication_token1] = ACTIONS(3092), - [aux_sym_permit_local_command_token1] = ACTIONS(3092), - [aux_sym_permit_remote_open_token1] = ACTIONS(3092), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3092), - [aux_sym_port_token1] = ACTIONS(3092), - [aux_sym_preferred_authentications_token1] = ACTIONS(3092), - [aux_sym_protocol_token1] = ACTIONS(3092), - [aux_sym_proxy_command_token1] = ACTIONS(3092), - [aux_sym_proxy_jump_token1] = ACTIONS(3092), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3092), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3092), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3092), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3092), - [aux_sym_rekey_limit_token1] = ACTIONS(3092), - [aux_sym_remote_command_token1] = ACTIONS(3092), - [aux_sym_remote_forward_token1] = ACTIONS(3092), - [aux_sym_request_tty_token1] = ACTIONS(3092), - [aux_sym_required_rsa_size_token1] = ACTIONS(3092), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3092), - [aux_sym_security_key_provider_token1] = ACTIONS(3092), - [aux_sym_send_env_token1] = ACTIONS(3092), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3092), - [aux_sym_server_alive_interval_token1] = ACTIONS(3092), - [aux_sym_session_type_token1] = ACTIONS(3092), - [aux_sym_set_env_token1] = ACTIONS(3092), - [aux_sym_stdin_null_token1] = ACTIONS(3092), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3092), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3092), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3092), - [aux_sym_syslog_facility_token1] = ACTIONS(3092), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3092), - [aux_sym_keep_alive_token1] = ACTIONS(3092), - [aux_sym_tag_token1] = ACTIONS(3092), - [aux_sym_tunnel_token1] = ACTIONS(3094), - [aux_sym_tunnel_device_token1] = ACTIONS(3092), - [aux_sym_update_host_keys_token1] = ACTIONS(3092), - [aux_sym_use_keychain_token1] = ACTIONS(3092), - [aux_sym_use_roaming_token1] = ACTIONS(3092), - [aux_sym_user_token1] = ACTIONS(3094), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3092), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3092), - [aux_sym_visual_host_key_token1] = ACTIONS(3092), - [aux_sym_xauth_location_token1] = ACTIONS(3092), + [ts_builtin_sym_end] = ACTIONS(1283), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1285), + [aux_sym_match_token1] = ACTIONS(1283), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1283), + [aux_sym_address_family_token1] = ACTIONS(1283), + [aux_sym_batch_mode_token1] = ACTIONS(1283), + [aux_sym_bind_address_token1] = ACTIONS(1283), + [aux_sym_bind_interface_token1] = ACTIONS(1283), + [aux_sym_canonical_domains_token1] = ACTIONS(1283), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1283), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1283), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1283), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1283), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1283), + [aux_sym_certificate_file_token1] = ACTIONS(1283), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1283), + [aux_sym_channel_timeout_token1] = ACTIONS(1283), + [aux_sym_check_host_ip_token1] = ACTIONS(1283), + [aux_sym_ciphers_token1] = ACTIONS(1283), + [aux_sym_cipher_token1] = ACTIONS(1285), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1283), + [aux_sym_compression_token1] = ACTIONS(1283), + [aux_sym_connection_attempts_token1] = ACTIONS(1283), + [aux_sym_connect_timeout_token1] = ACTIONS(1283), + [aux_sym_control_master_token1] = ACTIONS(1283), + [aux_sym_control_path_token1] = ACTIONS(1283), + [aux_sym_control_persist_token1] = ACTIONS(1283), + [aux_sym_dynamic_forward_token1] = ACTIONS(1283), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1283), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1283), + [aux_sym_escape_char_token1] = ACTIONS(1283), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1283), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1283), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1283), + [aux_sym_forward_agent_token1] = ACTIONS(1283), + [aux_sym_forward_x11_token1] = ACTIONS(1285), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1283), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1283), + [aux_sym_gateway_ports_token1] = ACTIONS(1283), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1283), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1283), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1283), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1283), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1283), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1283), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1283), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1283), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1283), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1283), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1283), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1283), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1283), + [aux_sym_host_key_alias_token1] = ACTIONS(1283), + [aux_sym_hostname_token1] = ACTIONS(1283), + [aux_sym_identities_only_token1] = ACTIONS(1283), + [aux_sym_identity_agent_token1] = ACTIONS(1283), + [aux_sym_identity_file_token1] = ACTIONS(1283), + [aux_sym_ignore_unknown_token1] = ACTIONS(1283), + [aux_sym_include_token1] = ACTIONS(1283), + [aux_sym_ip_qos_token1] = ACTIONS(1283), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1283), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1283), + [aux_sym_kex_algorithms_token1] = ACTIONS(1283), + [aux_sym_known_hosts_command_token1] = ACTIONS(1283), + [aux_sym_local_command_token1] = ACTIONS(1283), + [aux_sym_local_forward_token1] = ACTIONS(1283), + [aux_sym_log_level_token1] = ACTIONS(1283), + [aux_sym_log_verbose_token1] = ACTIONS(1283), + [aux_sym_macs_token1] = ACTIONS(1283), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1283), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1283), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1283), + [aux_sym_password_authentication_token1] = ACTIONS(1283), + [aux_sym_permit_local_command_token1] = ACTIONS(1283), + [aux_sym_permit_remote_open_token1] = ACTIONS(1283), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1283), + [aux_sym_port_token1] = ACTIONS(1283), + [aux_sym_preferred_authentications_token1] = ACTIONS(1283), + [aux_sym_protocol_token1] = ACTIONS(1283), + [aux_sym_proxy_command_token1] = ACTIONS(1283), + [aux_sym_proxy_jump_token1] = ACTIONS(1283), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1283), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1283), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1283), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1283), + [aux_sym_rekey_limit_token1] = ACTIONS(1283), + [aux_sym_remote_command_token1] = ACTIONS(1283), + [aux_sym_remote_forward_token1] = ACTIONS(1283), + [aux_sym_request_tty_token1] = ACTIONS(1283), + [aux_sym_required_rsa_size_token1] = ACTIONS(1283), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1283), + [aux_sym_security_key_provider_token1] = ACTIONS(1283), + [aux_sym_send_env_token1] = ACTIONS(1283), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1283), + [aux_sym_server_alive_interval_token1] = ACTIONS(1283), + [aux_sym_session_type_token1] = ACTIONS(1283), + [aux_sym_set_env_token1] = ACTIONS(1283), + [aux_sym_stdin_null_token1] = ACTIONS(1283), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1283), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1283), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1283), + [aux_sym_syslog_facility_token1] = ACTIONS(1283), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1283), + [aux_sym_keep_alive_token1] = ACTIONS(1283), + [aux_sym_tag_token1] = ACTIONS(1283), + [aux_sym_tunnel_token1] = ACTIONS(1285), + [aux_sym_tunnel_device_token1] = ACTIONS(1283), + [aux_sym_update_host_keys_token1] = ACTIONS(1283), + [aux_sym_use_keychain_token1] = ACTIONS(1283), + [aux_sym_use_roaming_token1] = ACTIONS(1283), + [aux_sym_user_token1] = ACTIONS(1285), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1283), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1283), + [aux_sym_visual_host_key_token1] = ACTIONS(1283), + [aux_sym_xauth_location_token1] = ACTIONS(1283), }, [464] = { - [ts_builtin_sym_end] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3098), - [aux_sym_match_token1] = ACTIONS(3096), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3096), - [aux_sym_address_family_token1] = ACTIONS(3096), - [aux_sym_batch_mode_token1] = ACTIONS(3096), - [aux_sym_bind_address_token1] = ACTIONS(3096), - [aux_sym_bind_interface_token1] = ACTIONS(3096), - [aux_sym_canonical_domains_token1] = ACTIONS(3096), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3096), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3096), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3096), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3096), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3096), - [aux_sym_certificate_file_token1] = ACTIONS(3096), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3096), - [aux_sym_channel_timeout_token1] = ACTIONS(3096), - [aux_sym_check_host_ip_token1] = ACTIONS(3096), - [aux_sym_ciphers_token1] = ACTIONS(3096), - [aux_sym_cipher_token1] = ACTIONS(3098), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3096), - [aux_sym_compression_token1] = ACTIONS(3096), - [aux_sym_connection_attempts_token1] = ACTIONS(3096), - [aux_sym_connect_timeout_token1] = ACTIONS(3096), - [aux_sym_control_master_token1] = ACTIONS(3096), - [aux_sym_control_path_token1] = ACTIONS(3096), - [aux_sym_control_persist_token1] = ACTIONS(3096), - [aux_sym_dynamic_forward_token1] = ACTIONS(3096), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3096), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3096), - [aux_sym_escape_char_token1] = ACTIONS(3096), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3096), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3096), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3096), - [aux_sym_forward_agent_token1] = ACTIONS(3096), - [aux_sym_forward_x11_token1] = ACTIONS(3098), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3096), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3096), - [aux_sym_gateway_ports_token1] = ACTIONS(3096), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3096), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3096), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3096), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3096), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3096), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3096), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3096), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3096), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3096), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3096), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3096), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3096), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3096), - [aux_sym_host_key_alias_token1] = ACTIONS(3096), - [aux_sym_hostname_token1] = ACTIONS(3096), - [aux_sym_identities_only_token1] = ACTIONS(3096), - [aux_sym_identity_agent_token1] = ACTIONS(3096), - [aux_sym_identity_file_token1] = ACTIONS(3096), - [aux_sym_ignore_unknown_token1] = ACTIONS(3096), - [aux_sym_include_token1] = ACTIONS(3096), - [aux_sym_ip_qos_token1] = ACTIONS(3096), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3096), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3096), - [aux_sym_kex_algorithms_token1] = ACTIONS(3096), - [aux_sym_known_hosts_command_token1] = ACTIONS(3096), - [aux_sym_local_command_token1] = ACTIONS(3096), - [aux_sym_local_forward_token1] = ACTIONS(3096), - [aux_sym_log_level_token1] = ACTIONS(3096), - [aux_sym_log_verbose_token1] = ACTIONS(3096), - [aux_sym_macs_token1] = ACTIONS(3096), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3096), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3096), - [aux_sym_password_authentication_token1] = ACTIONS(3096), - [aux_sym_permit_local_command_token1] = ACTIONS(3096), - [aux_sym_permit_remote_open_token1] = ACTIONS(3096), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3096), - [aux_sym_port_token1] = ACTIONS(3096), - [aux_sym_preferred_authentications_token1] = ACTIONS(3096), - [aux_sym_protocol_token1] = ACTIONS(3096), - [aux_sym_proxy_command_token1] = ACTIONS(3096), - [aux_sym_proxy_jump_token1] = ACTIONS(3096), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3096), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3096), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3096), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3096), - [aux_sym_rekey_limit_token1] = ACTIONS(3096), - [aux_sym_remote_command_token1] = ACTIONS(3096), - [aux_sym_remote_forward_token1] = ACTIONS(3096), - [aux_sym_request_tty_token1] = ACTIONS(3096), - [aux_sym_required_rsa_size_token1] = ACTIONS(3096), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3096), - [aux_sym_security_key_provider_token1] = ACTIONS(3096), - [aux_sym_send_env_token1] = ACTIONS(3096), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3096), - [aux_sym_server_alive_interval_token1] = ACTIONS(3096), - [aux_sym_session_type_token1] = ACTIONS(3096), - [aux_sym_set_env_token1] = ACTIONS(3096), - [aux_sym_stdin_null_token1] = ACTIONS(3096), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3096), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3096), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3096), - [aux_sym_syslog_facility_token1] = ACTIONS(3096), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3096), - [aux_sym_keep_alive_token1] = ACTIONS(3096), - [aux_sym_tag_token1] = ACTIONS(3096), - [aux_sym_tunnel_token1] = ACTIONS(3098), - [aux_sym_tunnel_device_token1] = ACTIONS(3096), - [aux_sym_update_host_keys_token1] = ACTIONS(3096), - [aux_sym_use_keychain_token1] = ACTIONS(3096), - [aux_sym_use_roaming_token1] = ACTIONS(3096), - [aux_sym_user_token1] = ACTIONS(3098), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3096), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3096), - [aux_sym_visual_host_key_token1] = ACTIONS(3096), - [aux_sym_xauth_location_token1] = ACTIONS(3096), + [ts_builtin_sym_end] = ACTIONS(1007), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1009), + [aux_sym_match_token1] = ACTIONS(1007), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1007), + [aux_sym_address_family_token1] = ACTIONS(1007), + [aux_sym_batch_mode_token1] = ACTIONS(1007), + [aux_sym_bind_address_token1] = ACTIONS(1007), + [aux_sym_bind_interface_token1] = ACTIONS(1007), + [aux_sym_canonical_domains_token1] = ACTIONS(1007), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1007), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1007), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1007), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1007), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1007), + [aux_sym_certificate_file_token1] = ACTIONS(1007), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1007), + [aux_sym_channel_timeout_token1] = ACTIONS(1007), + [aux_sym_check_host_ip_token1] = ACTIONS(1007), + [aux_sym_ciphers_token1] = ACTIONS(1007), + [aux_sym_cipher_token1] = ACTIONS(1009), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1007), + [aux_sym_compression_token1] = ACTIONS(1007), + [aux_sym_connection_attempts_token1] = ACTIONS(1007), + [aux_sym_connect_timeout_token1] = ACTIONS(1007), + [aux_sym_control_master_token1] = ACTIONS(1007), + [aux_sym_control_path_token1] = ACTIONS(1007), + [aux_sym_control_persist_token1] = ACTIONS(1007), + [aux_sym_dynamic_forward_token1] = ACTIONS(1007), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1007), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1007), + [aux_sym_escape_char_token1] = ACTIONS(1007), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1007), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1007), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1007), + [aux_sym_forward_agent_token1] = ACTIONS(1007), + [aux_sym_forward_x11_token1] = ACTIONS(1009), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1007), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1007), + [aux_sym_gateway_ports_token1] = ACTIONS(1007), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1007), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1007), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1007), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1007), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1007), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1007), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1007), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1007), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1007), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1007), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1007), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1007), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1007), + [aux_sym_host_key_alias_token1] = ACTIONS(1007), + [aux_sym_hostname_token1] = ACTIONS(1007), + [aux_sym_identities_only_token1] = ACTIONS(1007), + [aux_sym_identity_agent_token1] = ACTIONS(1007), + [aux_sym_identity_file_token1] = ACTIONS(1007), + [aux_sym_ignore_unknown_token1] = ACTIONS(1007), + [aux_sym_include_token1] = ACTIONS(1007), + [aux_sym_ip_qos_token1] = ACTIONS(1007), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1007), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1007), + [aux_sym_kex_algorithms_token1] = ACTIONS(1007), + [aux_sym_known_hosts_command_token1] = ACTIONS(1007), + [aux_sym_local_command_token1] = ACTIONS(1007), + [aux_sym_local_forward_token1] = ACTIONS(1007), + [aux_sym_log_level_token1] = ACTIONS(1007), + [aux_sym_log_verbose_token1] = ACTIONS(1007), + [aux_sym_macs_token1] = ACTIONS(1007), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1007), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1007), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1007), + [aux_sym_password_authentication_token1] = ACTIONS(1007), + [aux_sym_permit_local_command_token1] = ACTIONS(1007), + [aux_sym_permit_remote_open_token1] = ACTIONS(1007), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1007), + [aux_sym_port_token1] = ACTIONS(1007), + [aux_sym_preferred_authentications_token1] = ACTIONS(1007), + [aux_sym_protocol_token1] = ACTIONS(1007), + [aux_sym_proxy_command_token1] = ACTIONS(1007), + [aux_sym_proxy_jump_token1] = ACTIONS(1007), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1007), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1007), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1007), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1007), + [aux_sym_rekey_limit_token1] = ACTIONS(1007), + [aux_sym_remote_command_token1] = ACTIONS(1007), + [aux_sym_remote_forward_token1] = ACTIONS(1007), + [aux_sym_request_tty_token1] = ACTIONS(1007), + [aux_sym_required_rsa_size_token1] = ACTIONS(1007), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1007), + [aux_sym_security_key_provider_token1] = ACTIONS(1007), + [aux_sym_send_env_token1] = ACTIONS(1007), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1007), + [aux_sym_server_alive_interval_token1] = ACTIONS(1007), + [aux_sym_session_type_token1] = ACTIONS(1007), + [aux_sym_set_env_token1] = ACTIONS(1007), + [aux_sym_stdin_null_token1] = ACTIONS(1007), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1007), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1007), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1007), + [aux_sym_syslog_facility_token1] = ACTIONS(1007), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1007), + [aux_sym_keep_alive_token1] = ACTIONS(1007), + [aux_sym_tag_token1] = ACTIONS(1007), + [aux_sym_tunnel_token1] = ACTIONS(1009), + [aux_sym_tunnel_device_token1] = ACTIONS(1007), + [aux_sym_update_host_keys_token1] = ACTIONS(1007), + [aux_sym_use_keychain_token1] = ACTIONS(1007), + [aux_sym_use_roaming_token1] = ACTIONS(1007), + [aux_sym_user_token1] = ACTIONS(1009), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1007), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1007), + [aux_sym_visual_host_key_token1] = ACTIONS(1007), + [aux_sym_xauth_location_token1] = ACTIONS(1007), }, [465] = { - [ts_builtin_sym_end] = ACTIONS(1326), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1328), - [aux_sym_match_token1] = ACTIONS(1326), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1326), - [aux_sym_address_family_token1] = ACTIONS(1326), - [aux_sym_batch_mode_token1] = ACTIONS(1326), - [aux_sym_bind_address_token1] = ACTIONS(1326), - [aux_sym_bind_interface_token1] = ACTIONS(1326), - [aux_sym_canonical_domains_token1] = ACTIONS(1326), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1326), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1326), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1326), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1326), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1326), - [aux_sym_certificate_file_token1] = ACTIONS(1326), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1326), - [aux_sym_channel_timeout_token1] = ACTIONS(1326), - [aux_sym_check_host_ip_token1] = ACTIONS(1326), - [aux_sym_ciphers_token1] = ACTIONS(1326), - [aux_sym_cipher_token1] = ACTIONS(1328), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1326), - [aux_sym_compression_token1] = ACTIONS(1326), - [aux_sym_connection_attempts_token1] = ACTIONS(1326), - [aux_sym_connect_timeout_token1] = ACTIONS(1326), - [aux_sym_control_master_token1] = ACTIONS(1326), - [aux_sym_control_path_token1] = ACTIONS(1326), - [aux_sym_control_persist_token1] = ACTIONS(1326), - [aux_sym_dynamic_forward_token1] = ACTIONS(1326), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1326), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1326), - [aux_sym_escape_char_token1] = ACTIONS(1326), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1326), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1326), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1326), - [aux_sym_forward_agent_token1] = ACTIONS(1326), - [aux_sym_forward_x11_token1] = ACTIONS(1328), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1326), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1326), - [aux_sym_gateway_ports_token1] = ACTIONS(1326), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1326), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1326), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1326), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1326), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1326), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1326), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1326), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1326), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1326), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1326), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1326), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1326), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1326), - [aux_sym_host_key_alias_token1] = ACTIONS(1326), - [aux_sym_hostname_token1] = ACTIONS(1326), - [aux_sym_identities_only_token1] = ACTIONS(1326), - [aux_sym_identity_agent_token1] = ACTIONS(1326), - [aux_sym_identity_file_token1] = ACTIONS(1326), - [aux_sym_ignore_unknown_token1] = ACTIONS(1326), - [aux_sym_include_token1] = ACTIONS(1326), - [aux_sym_ip_qos_token1] = ACTIONS(1326), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1326), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1326), - [aux_sym_kex_algorithms_token1] = ACTIONS(1326), - [aux_sym_known_hosts_command_token1] = ACTIONS(1326), - [aux_sym_local_command_token1] = ACTIONS(1326), - [aux_sym_local_forward_token1] = ACTIONS(1326), - [aux_sym_log_level_token1] = ACTIONS(1326), - [aux_sym_log_verbose_token1] = ACTIONS(1326), - [aux_sym_macs_token1] = ACTIONS(1326), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1326), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1326), - [aux_sym_password_authentication_token1] = ACTIONS(1326), - [aux_sym_permit_local_command_token1] = ACTIONS(1326), - [aux_sym_permit_remote_open_token1] = ACTIONS(1326), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1326), - [aux_sym_port_token1] = ACTIONS(1326), - [aux_sym_preferred_authentications_token1] = ACTIONS(1326), - [aux_sym_protocol_token1] = ACTIONS(1326), - [aux_sym_proxy_command_token1] = ACTIONS(1326), - [aux_sym_proxy_jump_token1] = ACTIONS(1326), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1326), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1326), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1326), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1326), - [aux_sym_rekey_limit_token1] = ACTIONS(1326), - [aux_sym_remote_command_token1] = ACTIONS(1326), - [aux_sym_remote_forward_token1] = ACTIONS(1326), - [aux_sym_request_tty_token1] = ACTIONS(1326), - [aux_sym_required_rsa_size_token1] = ACTIONS(1326), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1326), - [aux_sym_security_key_provider_token1] = ACTIONS(1326), - [aux_sym_send_env_token1] = ACTIONS(1326), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1326), - [aux_sym_server_alive_interval_token1] = ACTIONS(1326), - [aux_sym_session_type_token1] = ACTIONS(1326), - [aux_sym_set_env_token1] = ACTIONS(1326), - [aux_sym_stdin_null_token1] = ACTIONS(1326), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1326), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1326), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1326), - [aux_sym_syslog_facility_token1] = ACTIONS(1326), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1326), - [aux_sym_keep_alive_token1] = ACTIONS(1326), - [aux_sym_tag_token1] = ACTIONS(1326), - [aux_sym_tunnel_token1] = ACTIONS(1328), - [aux_sym_tunnel_device_token1] = ACTIONS(1326), - [aux_sym_update_host_keys_token1] = ACTIONS(1326), - [aux_sym_use_keychain_token1] = ACTIONS(1326), - [aux_sym_use_roaming_token1] = ACTIONS(1326), - [aux_sym_user_token1] = ACTIONS(1328), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1326), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1326), - [aux_sym_visual_host_key_token1] = ACTIONS(1326), - [aux_sym_xauth_location_token1] = ACTIONS(1326), + [ts_builtin_sym_end] = ACTIONS(1079), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1081), + [aux_sym_match_token1] = ACTIONS(1079), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1079), + [aux_sym_address_family_token1] = ACTIONS(1079), + [aux_sym_batch_mode_token1] = ACTIONS(1079), + [aux_sym_bind_address_token1] = ACTIONS(1079), + [aux_sym_bind_interface_token1] = ACTIONS(1079), + [aux_sym_canonical_domains_token1] = ACTIONS(1079), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1079), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1079), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1079), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1079), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1079), + [aux_sym_certificate_file_token1] = ACTIONS(1079), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1079), + [aux_sym_channel_timeout_token1] = ACTIONS(1079), + [aux_sym_check_host_ip_token1] = ACTIONS(1079), + [aux_sym_ciphers_token1] = ACTIONS(1079), + [aux_sym_cipher_token1] = ACTIONS(1081), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1079), + [aux_sym_compression_token1] = ACTIONS(1079), + [aux_sym_connection_attempts_token1] = ACTIONS(1079), + [aux_sym_connect_timeout_token1] = ACTIONS(1079), + [aux_sym_control_master_token1] = ACTIONS(1079), + [aux_sym_control_path_token1] = ACTIONS(1079), + [aux_sym_control_persist_token1] = ACTIONS(1079), + [aux_sym_dynamic_forward_token1] = ACTIONS(1079), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1079), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1079), + [aux_sym_escape_char_token1] = ACTIONS(1079), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1079), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1079), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1079), + [aux_sym_forward_agent_token1] = ACTIONS(1079), + [aux_sym_forward_x11_token1] = ACTIONS(1081), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1079), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1079), + [aux_sym_gateway_ports_token1] = ACTIONS(1079), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1079), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1079), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1079), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1079), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1079), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1079), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1079), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1079), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1079), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1079), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1079), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1079), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1079), + [aux_sym_host_key_alias_token1] = ACTIONS(1079), + [aux_sym_hostname_token1] = ACTIONS(1079), + [aux_sym_identities_only_token1] = ACTIONS(1079), + [aux_sym_identity_agent_token1] = ACTIONS(1079), + [aux_sym_identity_file_token1] = ACTIONS(1079), + [aux_sym_ignore_unknown_token1] = ACTIONS(1079), + [aux_sym_include_token1] = ACTIONS(1079), + [aux_sym_ip_qos_token1] = ACTIONS(1079), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1079), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1079), + [aux_sym_kex_algorithms_token1] = ACTIONS(1079), + [aux_sym_known_hosts_command_token1] = ACTIONS(1079), + [aux_sym_local_command_token1] = ACTIONS(1079), + [aux_sym_local_forward_token1] = ACTIONS(1079), + [aux_sym_log_level_token1] = ACTIONS(1079), + [aux_sym_log_verbose_token1] = ACTIONS(1079), + [aux_sym_macs_token1] = ACTIONS(1079), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1079), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1079), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1079), + [aux_sym_password_authentication_token1] = ACTIONS(1079), + [aux_sym_permit_local_command_token1] = ACTIONS(1079), + [aux_sym_permit_remote_open_token1] = ACTIONS(1079), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1079), + [aux_sym_port_token1] = ACTIONS(1079), + [aux_sym_preferred_authentications_token1] = ACTIONS(1079), + [aux_sym_protocol_token1] = ACTIONS(1079), + [aux_sym_proxy_command_token1] = ACTIONS(1079), + [aux_sym_proxy_jump_token1] = ACTIONS(1079), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1079), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1079), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1079), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1079), + [aux_sym_rekey_limit_token1] = ACTIONS(1079), + [aux_sym_remote_command_token1] = ACTIONS(1079), + [aux_sym_remote_forward_token1] = ACTIONS(1079), + [aux_sym_request_tty_token1] = ACTIONS(1079), + [aux_sym_required_rsa_size_token1] = ACTIONS(1079), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1079), + [aux_sym_security_key_provider_token1] = ACTIONS(1079), + [aux_sym_send_env_token1] = ACTIONS(1079), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1079), + [aux_sym_server_alive_interval_token1] = ACTIONS(1079), + [aux_sym_session_type_token1] = ACTIONS(1079), + [aux_sym_set_env_token1] = ACTIONS(1079), + [aux_sym_stdin_null_token1] = ACTIONS(1079), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1079), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1079), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1079), + [aux_sym_syslog_facility_token1] = ACTIONS(1079), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1079), + [aux_sym_keep_alive_token1] = ACTIONS(1079), + [aux_sym_tag_token1] = ACTIONS(1079), + [aux_sym_tunnel_token1] = ACTIONS(1081), + [aux_sym_tunnel_device_token1] = ACTIONS(1079), + [aux_sym_update_host_keys_token1] = ACTIONS(1079), + [aux_sym_use_keychain_token1] = ACTIONS(1079), + [aux_sym_use_roaming_token1] = ACTIONS(1079), + [aux_sym_user_token1] = ACTIONS(1081), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1079), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1079), + [aux_sym_visual_host_key_token1] = ACTIONS(1079), + [aux_sym_xauth_location_token1] = ACTIONS(1079), }, [466] = { - [ts_builtin_sym_end] = ACTIONS(1332), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1334), - [aux_sym_match_token1] = ACTIONS(1332), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1332), - [aux_sym_address_family_token1] = ACTIONS(1332), - [aux_sym_batch_mode_token1] = ACTIONS(1332), - [aux_sym_bind_address_token1] = ACTIONS(1332), - [aux_sym_bind_interface_token1] = ACTIONS(1332), - [aux_sym_canonical_domains_token1] = ACTIONS(1332), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1332), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1332), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1332), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1332), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1332), - [aux_sym_certificate_file_token1] = ACTIONS(1332), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1332), - [aux_sym_channel_timeout_token1] = ACTIONS(1332), - [aux_sym_check_host_ip_token1] = ACTIONS(1332), - [aux_sym_ciphers_token1] = ACTIONS(1332), - [aux_sym_cipher_token1] = ACTIONS(1334), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1332), - [aux_sym_compression_token1] = ACTIONS(1332), - [aux_sym_connection_attempts_token1] = ACTIONS(1332), - [aux_sym_connect_timeout_token1] = ACTIONS(1332), - [aux_sym_control_master_token1] = ACTIONS(1332), - [aux_sym_control_path_token1] = ACTIONS(1332), - [aux_sym_control_persist_token1] = ACTIONS(1332), - [aux_sym_dynamic_forward_token1] = ACTIONS(1332), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1332), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1332), - [aux_sym_escape_char_token1] = ACTIONS(1332), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1332), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1332), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1332), - [aux_sym_forward_agent_token1] = ACTIONS(1332), - [aux_sym_forward_x11_token1] = ACTIONS(1334), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1332), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1332), - [aux_sym_gateway_ports_token1] = ACTIONS(1332), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1332), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1332), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1332), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1332), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1332), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1332), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1332), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1332), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1332), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1332), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1332), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1332), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1332), - [aux_sym_host_key_alias_token1] = ACTIONS(1332), - [aux_sym_hostname_token1] = ACTIONS(1332), - [aux_sym_identities_only_token1] = ACTIONS(1332), - [aux_sym_identity_agent_token1] = ACTIONS(1332), - [aux_sym_identity_file_token1] = ACTIONS(1332), - [aux_sym_ignore_unknown_token1] = ACTIONS(1332), - [aux_sym_include_token1] = ACTIONS(1332), - [aux_sym_ip_qos_token1] = ACTIONS(1332), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1332), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1332), - [aux_sym_kex_algorithms_token1] = ACTIONS(1332), - [aux_sym_known_hosts_command_token1] = ACTIONS(1332), - [aux_sym_local_command_token1] = ACTIONS(1332), - [aux_sym_local_forward_token1] = ACTIONS(1332), - [aux_sym_log_level_token1] = ACTIONS(1332), - [aux_sym_log_verbose_token1] = ACTIONS(1332), - [aux_sym_macs_token1] = ACTIONS(1332), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1332), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1332), - [aux_sym_password_authentication_token1] = ACTIONS(1332), - [aux_sym_permit_local_command_token1] = ACTIONS(1332), - [aux_sym_permit_remote_open_token1] = ACTIONS(1332), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1332), - [aux_sym_port_token1] = ACTIONS(1332), - [aux_sym_preferred_authentications_token1] = ACTIONS(1332), - [aux_sym_protocol_token1] = ACTIONS(1332), - [aux_sym_proxy_command_token1] = ACTIONS(1332), - [aux_sym_proxy_jump_token1] = ACTIONS(1332), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1332), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1332), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1332), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1332), - [aux_sym_rekey_limit_token1] = ACTIONS(1332), - [aux_sym_remote_command_token1] = ACTIONS(1332), - [aux_sym_remote_forward_token1] = ACTIONS(1332), - [aux_sym_request_tty_token1] = ACTIONS(1332), - [aux_sym_required_rsa_size_token1] = ACTIONS(1332), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1332), - [aux_sym_security_key_provider_token1] = ACTIONS(1332), - [aux_sym_send_env_token1] = ACTIONS(1332), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1332), - [aux_sym_server_alive_interval_token1] = ACTIONS(1332), - [aux_sym_session_type_token1] = ACTIONS(1332), - [aux_sym_set_env_token1] = ACTIONS(1332), - [aux_sym_stdin_null_token1] = ACTIONS(1332), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1332), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1332), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1332), - [aux_sym_syslog_facility_token1] = ACTIONS(1332), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1332), - [aux_sym_keep_alive_token1] = ACTIONS(1332), - [aux_sym_tag_token1] = ACTIONS(1332), - [aux_sym_tunnel_token1] = ACTIONS(1334), - [aux_sym_tunnel_device_token1] = ACTIONS(1332), - [aux_sym_update_host_keys_token1] = ACTIONS(1332), - [aux_sym_use_keychain_token1] = ACTIONS(1332), - [aux_sym_use_roaming_token1] = ACTIONS(1332), - [aux_sym_user_token1] = ACTIONS(1334), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1332), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1332), - [aux_sym_visual_host_key_token1] = ACTIONS(1332), - [aux_sym_xauth_location_token1] = ACTIONS(1332), + [ts_builtin_sym_end] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3113), + [aux_sym_match_token1] = ACTIONS(3111), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3111), + [aux_sym_address_family_token1] = ACTIONS(3111), + [aux_sym_batch_mode_token1] = ACTIONS(3111), + [aux_sym_bind_address_token1] = ACTIONS(3111), + [aux_sym_bind_interface_token1] = ACTIONS(3111), + [aux_sym_canonical_domains_token1] = ACTIONS(3111), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3111), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3111), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3111), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3111), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3111), + [aux_sym_certificate_file_token1] = ACTIONS(3111), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3111), + [aux_sym_channel_timeout_token1] = ACTIONS(3111), + [aux_sym_check_host_ip_token1] = ACTIONS(3111), + [aux_sym_ciphers_token1] = ACTIONS(3111), + [aux_sym_cipher_token1] = ACTIONS(3113), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3111), + [aux_sym_compression_token1] = ACTIONS(3111), + [aux_sym_connection_attempts_token1] = ACTIONS(3111), + [aux_sym_connect_timeout_token1] = ACTIONS(3111), + [aux_sym_control_master_token1] = ACTIONS(3111), + [aux_sym_control_path_token1] = ACTIONS(3111), + [aux_sym_control_persist_token1] = ACTIONS(3111), + [aux_sym_dynamic_forward_token1] = ACTIONS(3111), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3111), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3111), + [aux_sym_escape_char_token1] = ACTIONS(3111), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3111), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3111), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3111), + [aux_sym_forward_agent_token1] = ACTIONS(3111), + [aux_sym_forward_x11_token1] = ACTIONS(3113), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3111), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3111), + [aux_sym_gateway_ports_token1] = ACTIONS(3111), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3111), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3111), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3111), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3111), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3111), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3111), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3111), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3111), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3111), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3111), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3111), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3111), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3111), + [aux_sym_host_key_alias_token1] = ACTIONS(3111), + [aux_sym_hostname_token1] = ACTIONS(3111), + [aux_sym_identities_only_token1] = ACTIONS(3111), + [aux_sym_identity_agent_token1] = ACTIONS(3111), + [aux_sym_identity_file_token1] = ACTIONS(3111), + [aux_sym_ignore_unknown_token1] = ACTIONS(3111), + [aux_sym_include_token1] = ACTIONS(3111), + [aux_sym_ip_qos_token1] = ACTIONS(3111), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3111), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3111), + [aux_sym_kex_algorithms_token1] = ACTIONS(3111), + [aux_sym_known_hosts_command_token1] = ACTIONS(3111), + [aux_sym_local_command_token1] = ACTIONS(3111), + [aux_sym_local_forward_token1] = ACTIONS(3111), + [aux_sym_log_level_token1] = ACTIONS(3111), + [aux_sym_log_verbose_token1] = ACTIONS(3111), + [aux_sym_macs_token1] = ACTIONS(3111), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3111), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3111), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3111), + [aux_sym_password_authentication_token1] = ACTIONS(3111), + [aux_sym_permit_local_command_token1] = ACTIONS(3111), + [aux_sym_permit_remote_open_token1] = ACTIONS(3111), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3111), + [aux_sym_port_token1] = ACTIONS(3111), + [aux_sym_preferred_authentications_token1] = ACTIONS(3111), + [aux_sym_protocol_token1] = ACTIONS(3111), + [aux_sym_proxy_command_token1] = ACTIONS(3111), + [aux_sym_proxy_jump_token1] = ACTIONS(3111), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3111), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3111), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3111), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3111), + [aux_sym_rekey_limit_token1] = ACTIONS(3111), + [aux_sym_remote_command_token1] = ACTIONS(3111), + [aux_sym_remote_forward_token1] = ACTIONS(3111), + [aux_sym_request_tty_token1] = ACTIONS(3111), + [aux_sym_required_rsa_size_token1] = ACTIONS(3111), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3111), + [aux_sym_security_key_provider_token1] = ACTIONS(3111), + [aux_sym_send_env_token1] = ACTIONS(3111), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3111), + [aux_sym_server_alive_interval_token1] = ACTIONS(3111), + [aux_sym_session_type_token1] = ACTIONS(3111), + [aux_sym_set_env_token1] = ACTIONS(3111), + [aux_sym_stdin_null_token1] = ACTIONS(3111), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3111), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3111), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3111), + [aux_sym_syslog_facility_token1] = ACTIONS(3111), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3111), + [aux_sym_keep_alive_token1] = ACTIONS(3111), + [aux_sym_tag_token1] = ACTIONS(3111), + [aux_sym_tunnel_token1] = ACTIONS(3113), + [aux_sym_tunnel_device_token1] = ACTIONS(3111), + [aux_sym_update_host_keys_token1] = ACTIONS(3111), + [aux_sym_use_keychain_token1] = ACTIONS(3111), + [aux_sym_use_roaming_token1] = ACTIONS(3111), + [aux_sym_user_token1] = ACTIONS(3113), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3111), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3111), + [aux_sym_visual_host_key_token1] = ACTIONS(3111), + [aux_sym_xauth_location_token1] = ACTIONS(3111), }, [467] = { - [ts_builtin_sym_end] = ACTIONS(3100), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3102), - [aux_sym_match_token1] = ACTIONS(3100), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3100), - [aux_sym_address_family_token1] = ACTIONS(3100), - [aux_sym_batch_mode_token1] = ACTIONS(3100), - [aux_sym_bind_address_token1] = ACTIONS(3100), - [aux_sym_bind_interface_token1] = ACTIONS(3100), - [aux_sym_canonical_domains_token1] = ACTIONS(3100), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3100), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3100), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3100), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3100), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3100), - [aux_sym_certificate_file_token1] = ACTIONS(3100), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3100), - [aux_sym_channel_timeout_token1] = ACTIONS(3100), - [aux_sym_check_host_ip_token1] = ACTIONS(3100), - [aux_sym_ciphers_token1] = ACTIONS(3100), - [aux_sym_cipher_token1] = ACTIONS(3102), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3100), - [aux_sym_compression_token1] = ACTIONS(3100), - [aux_sym_connection_attempts_token1] = ACTIONS(3100), - [aux_sym_connect_timeout_token1] = ACTIONS(3100), - [aux_sym_control_master_token1] = ACTIONS(3100), - [aux_sym_control_path_token1] = ACTIONS(3100), - [aux_sym_control_persist_token1] = ACTIONS(3100), - [aux_sym_dynamic_forward_token1] = ACTIONS(3100), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3100), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3100), - [aux_sym_escape_char_token1] = ACTIONS(3100), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3100), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3100), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3100), - [aux_sym_forward_agent_token1] = ACTIONS(3100), - [aux_sym_forward_x11_token1] = ACTIONS(3102), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3100), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3100), - [aux_sym_gateway_ports_token1] = ACTIONS(3100), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3100), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3100), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3100), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3100), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3100), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3100), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3100), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3100), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3100), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3100), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3100), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3100), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3100), - [aux_sym_host_key_alias_token1] = ACTIONS(3100), - [aux_sym_hostname_token1] = ACTIONS(3100), - [aux_sym_identities_only_token1] = ACTIONS(3100), - [aux_sym_identity_agent_token1] = ACTIONS(3100), - [aux_sym_identity_file_token1] = ACTIONS(3100), - [aux_sym_ignore_unknown_token1] = ACTIONS(3100), - [aux_sym_include_token1] = ACTIONS(3100), - [aux_sym_ip_qos_token1] = ACTIONS(3100), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3100), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3100), - [aux_sym_kex_algorithms_token1] = ACTIONS(3100), - [aux_sym_known_hosts_command_token1] = ACTIONS(3100), - [aux_sym_local_command_token1] = ACTIONS(3100), - [aux_sym_local_forward_token1] = ACTIONS(3100), - [aux_sym_log_level_token1] = ACTIONS(3100), - [aux_sym_log_verbose_token1] = ACTIONS(3100), - [aux_sym_macs_token1] = ACTIONS(3100), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3100), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3100), - [aux_sym_password_authentication_token1] = ACTIONS(3100), - [aux_sym_permit_local_command_token1] = ACTIONS(3100), - [aux_sym_permit_remote_open_token1] = ACTIONS(3100), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3100), - [aux_sym_port_token1] = ACTIONS(3100), - [aux_sym_preferred_authentications_token1] = ACTIONS(3100), - [aux_sym_protocol_token1] = ACTIONS(3100), - [aux_sym_proxy_command_token1] = ACTIONS(3100), - [aux_sym_proxy_jump_token1] = ACTIONS(3100), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3100), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3100), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3100), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3100), - [aux_sym_rekey_limit_token1] = ACTIONS(3100), - [aux_sym_remote_command_token1] = ACTIONS(3100), - [aux_sym_remote_forward_token1] = ACTIONS(3100), - [aux_sym_request_tty_token1] = ACTIONS(3100), - [aux_sym_required_rsa_size_token1] = ACTIONS(3100), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3100), - [aux_sym_security_key_provider_token1] = ACTIONS(3100), - [aux_sym_send_env_token1] = ACTIONS(3100), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3100), - [aux_sym_server_alive_interval_token1] = ACTIONS(3100), - [aux_sym_session_type_token1] = ACTIONS(3100), - [aux_sym_set_env_token1] = ACTIONS(3100), - [aux_sym_stdin_null_token1] = ACTIONS(3100), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3100), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3100), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3100), - [aux_sym_syslog_facility_token1] = ACTIONS(3100), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3100), - [aux_sym_keep_alive_token1] = ACTIONS(3100), - [aux_sym_tag_token1] = ACTIONS(3100), - [aux_sym_tunnel_token1] = ACTIONS(3102), - [aux_sym_tunnel_device_token1] = ACTIONS(3100), - [aux_sym_update_host_keys_token1] = ACTIONS(3100), - [aux_sym_use_keychain_token1] = ACTIONS(3100), - [aux_sym_use_roaming_token1] = ACTIONS(3100), - [aux_sym_user_token1] = ACTIONS(3102), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3100), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3100), - [aux_sym_visual_host_key_token1] = ACTIONS(3100), - [aux_sym_xauth_location_token1] = ACTIONS(3100), + [ts_builtin_sym_end] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3117), + [aux_sym_match_token1] = ACTIONS(3115), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3115), + [aux_sym_address_family_token1] = ACTIONS(3115), + [aux_sym_batch_mode_token1] = ACTIONS(3115), + [aux_sym_bind_address_token1] = ACTIONS(3115), + [aux_sym_bind_interface_token1] = ACTIONS(3115), + [aux_sym_canonical_domains_token1] = ACTIONS(3115), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3115), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3115), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3115), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3115), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3115), + [aux_sym_certificate_file_token1] = ACTIONS(3115), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3115), + [aux_sym_channel_timeout_token1] = ACTIONS(3115), + [aux_sym_check_host_ip_token1] = ACTIONS(3115), + [aux_sym_ciphers_token1] = ACTIONS(3115), + [aux_sym_cipher_token1] = ACTIONS(3117), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3115), + [aux_sym_compression_token1] = ACTIONS(3115), + [aux_sym_connection_attempts_token1] = ACTIONS(3115), + [aux_sym_connect_timeout_token1] = ACTIONS(3115), + [aux_sym_control_master_token1] = ACTIONS(3115), + [aux_sym_control_path_token1] = ACTIONS(3115), + [aux_sym_control_persist_token1] = ACTIONS(3115), + [aux_sym_dynamic_forward_token1] = ACTIONS(3115), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3115), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3115), + [aux_sym_escape_char_token1] = ACTIONS(3115), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3115), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3115), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3115), + [aux_sym_forward_agent_token1] = ACTIONS(3115), + [aux_sym_forward_x11_token1] = ACTIONS(3117), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3115), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3115), + [aux_sym_gateway_ports_token1] = ACTIONS(3115), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3115), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3115), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3115), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3115), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3115), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3115), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3115), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3115), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3115), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3115), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3115), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3115), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3115), + [aux_sym_host_key_alias_token1] = ACTIONS(3115), + [aux_sym_hostname_token1] = ACTIONS(3115), + [aux_sym_identities_only_token1] = ACTIONS(3115), + [aux_sym_identity_agent_token1] = ACTIONS(3115), + [aux_sym_identity_file_token1] = ACTIONS(3115), + [aux_sym_ignore_unknown_token1] = ACTIONS(3115), + [aux_sym_include_token1] = ACTIONS(3115), + [aux_sym_ip_qos_token1] = ACTIONS(3115), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3115), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3115), + [aux_sym_kex_algorithms_token1] = ACTIONS(3115), + [aux_sym_known_hosts_command_token1] = ACTIONS(3115), + [aux_sym_local_command_token1] = ACTIONS(3115), + [aux_sym_local_forward_token1] = ACTIONS(3115), + [aux_sym_log_level_token1] = ACTIONS(3115), + [aux_sym_log_verbose_token1] = ACTIONS(3115), + [aux_sym_macs_token1] = ACTIONS(3115), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3115), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3115), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3115), + [aux_sym_password_authentication_token1] = ACTIONS(3115), + [aux_sym_permit_local_command_token1] = ACTIONS(3115), + [aux_sym_permit_remote_open_token1] = ACTIONS(3115), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3115), + [aux_sym_port_token1] = ACTIONS(3115), + [aux_sym_preferred_authentications_token1] = ACTIONS(3115), + [aux_sym_protocol_token1] = ACTIONS(3115), + [aux_sym_proxy_command_token1] = ACTIONS(3115), + [aux_sym_proxy_jump_token1] = ACTIONS(3115), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3115), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3115), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3115), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3115), + [aux_sym_rekey_limit_token1] = ACTIONS(3115), + [aux_sym_remote_command_token1] = ACTIONS(3115), + [aux_sym_remote_forward_token1] = ACTIONS(3115), + [aux_sym_request_tty_token1] = ACTIONS(3115), + [aux_sym_required_rsa_size_token1] = ACTIONS(3115), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3115), + [aux_sym_security_key_provider_token1] = ACTIONS(3115), + [aux_sym_send_env_token1] = ACTIONS(3115), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3115), + [aux_sym_server_alive_interval_token1] = ACTIONS(3115), + [aux_sym_session_type_token1] = ACTIONS(3115), + [aux_sym_set_env_token1] = ACTIONS(3115), + [aux_sym_stdin_null_token1] = ACTIONS(3115), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3115), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3115), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3115), + [aux_sym_syslog_facility_token1] = ACTIONS(3115), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3115), + [aux_sym_keep_alive_token1] = ACTIONS(3115), + [aux_sym_tag_token1] = ACTIONS(3115), + [aux_sym_tunnel_token1] = ACTIONS(3117), + [aux_sym_tunnel_device_token1] = ACTIONS(3115), + [aux_sym_update_host_keys_token1] = ACTIONS(3115), + [aux_sym_use_keychain_token1] = ACTIONS(3115), + [aux_sym_use_roaming_token1] = ACTIONS(3115), + [aux_sym_user_token1] = ACTIONS(3117), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3115), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3115), + [aux_sym_visual_host_key_token1] = ACTIONS(3115), + [aux_sym_xauth_location_token1] = ACTIONS(3115), }, [468] = { - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3106), - [aux_sym_match_token1] = ACTIONS(3104), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3104), - [aux_sym_address_family_token1] = ACTIONS(3104), - [aux_sym_batch_mode_token1] = ACTIONS(3104), - [aux_sym_bind_address_token1] = ACTIONS(3104), - [aux_sym_bind_interface_token1] = ACTIONS(3104), - [aux_sym_canonical_domains_token1] = ACTIONS(3104), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3104), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3104), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3104), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3104), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3104), - [aux_sym_certificate_file_token1] = ACTIONS(3104), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3104), - [aux_sym_channel_timeout_token1] = ACTIONS(3104), - [aux_sym_check_host_ip_token1] = ACTIONS(3104), - [aux_sym_ciphers_token1] = ACTIONS(3104), - [aux_sym_cipher_token1] = ACTIONS(3106), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3104), - [aux_sym_compression_token1] = ACTIONS(3104), - [aux_sym_connection_attempts_token1] = ACTIONS(3104), - [aux_sym_connect_timeout_token1] = ACTIONS(3104), - [aux_sym_control_master_token1] = ACTIONS(3104), - [aux_sym_control_path_token1] = ACTIONS(3104), - [aux_sym_control_persist_token1] = ACTIONS(3104), - [aux_sym_dynamic_forward_token1] = ACTIONS(3104), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3104), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3104), - [aux_sym_escape_char_token1] = ACTIONS(3104), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3104), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3104), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3104), - [aux_sym_forward_agent_token1] = ACTIONS(3104), - [aux_sym_forward_x11_token1] = ACTIONS(3106), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3104), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3104), - [aux_sym_gateway_ports_token1] = ACTIONS(3104), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3104), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3104), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3104), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3104), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3104), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3104), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3104), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3104), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3104), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3104), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3104), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3104), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3104), - [aux_sym_host_key_alias_token1] = ACTIONS(3104), - [aux_sym_hostname_token1] = ACTIONS(3104), - [aux_sym_identities_only_token1] = ACTIONS(3104), - [aux_sym_identity_agent_token1] = ACTIONS(3104), - [aux_sym_identity_file_token1] = ACTIONS(3104), - [aux_sym_ignore_unknown_token1] = ACTIONS(3104), - [aux_sym_include_token1] = ACTIONS(3104), - [aux_sym_ip_qos_token1] = ACTIONS(3104), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3104), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3104), - [aux_sym_kex_algorithms_token1] = ACTIONS(3104), - [aux_sym_known_hosts_command_token1] = ACTIONS(3104), - [aux_sym_local_command_token1] = ACTIONS(3104), - [aux_sym_local_forward_token1] = ACTIONS(3104), - [aux_sym_log_level_token1] = ACTIONS(3104), - [aux_sym_log_verbose_token1] = ACTIONS(3104), - [aux_sym_macs_token1] = ACTIONS(3104), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3104), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3104), - [aux_sym_password_authentication_token1] = ACTIONS(3104), - [aux_sym_permit_local_command_token1] = ACTIONS(3104), - [aux_sym_permit_remote_open_token1] = ACTIONS(3104), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3104), - [aux_sym_port_token1] = ACTIONS(3104), - [aux_sym_preferred_authentications_token1] = ACTIONS(3104), - [aux_sym_protocol_token1] = ACTIONS(3104), - [aux_sym_proxy_command_token1] = ACTIONS(3104), - [aux_sym_proxy_jump_token1] = ACTIONS(3104), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3104), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3104), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3104), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3104), - [aux_sym_rekey_limit_token1] = ACTIONS(3104), - [aux_sym_remote_command_token1] = ACTIONS(3104), - [aux_sym_remote_forward_token1] = ACTIONS(3104), - [aux_sym_request_tty_token1] = ACTIONS(3104), - [aux_sym_required_rsa_size_token1] = ACTIONS(3104), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3104), - [aux_sym_security_key_provider_token1] = ACTIONS(3104), - [aux_sym_send_env_token1] = ACTIONS(3104), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3104), - [aux_sym_server_alive_interval_token1] = ACTIONS(3104), - [aux_sym_session_type_token1] = ACTIONS(3104), - [aux_sym_set_env_token1] = ACTIONS(3104), - [aux_sym_stdin_null_token1] = ACTIONS(3104), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3104), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3104), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3104), - [aux_sym_syslog_facility_token1] = ACTIONS(3104), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3104), - [aux_sym_keep_alive_token1] = ACTIONS(3104), - [aux_sym_tag_token1] = ACTIONS(3104), - [aux_sym_tunnel_token1] = ACTIONS(3106), - [aux_sym_tunnel_device_token1] = ACTIONS(3104), - [aux_sym_update_host_keys_token1] = ACTIONS(3104), - [aux_sym_use_keychain_token1] = ACTIONS(3104), - [aux_sym_use_roaming_token1] = ACTIONS(3104), - [aux_sym_user_token1] = ACTIONS(3106), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3104), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3104), - [aux_sym_visual_host_key_token1] = ACTIONS(3104), - [aux_sym_xauth_location_token1] = ACTIONS(3104), + [ts_builtin_sym_end] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3121), + [aux_sym_match_token1] = ACTIONS(3119), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3119), + [aux_sym_address_family_token1] = ACTIONS(3119), + [aux_sym_batch_mode_token1] = ACTIONS(3119), + [aux_sym_bind_address_token1] = ACTIONS(3119), + [aux_sym_bind_interface_token1] = ACTIONS(3119), + [aux_sym_canonical_domains_token1] = ACTIONS(3119), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3119), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3119), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3119), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3119), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3119), + [aux_sym_certificate_file_token1] = ACTIONS(3119), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3119), + [aux_sym_channel_timeout_token1] = ACTIONS(3119), + [aux_sym_check_host_ip_token1] = ACTIONS(3119), + [aux_sym_ciphers_token1] = ACTIONS(3119), + [aux_sym_cipher_token1] = ACTIONS(3121), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3119), + [aux_sym_compression_token1] = ACTIONS(3119), + [aux_sym_connection_attempts_token1] = ACTIONS(3119), + [aux_sym_connect_timeout_token1] = ACTIONS(3119), + [aux_sym_control_master_token1] = ACTIONS(3119), + [aux_sym_control_path_token1] = ACTIONS(3119), + [aux_sym_control_persist_token1] = ACTIONS(3119), + [aux_sym_dynamic_forward_token1] = ACTIONS(3119), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3119), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3119), + [aux_sym_escape_char_token1] = ACTIONS(3119), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3119), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3119), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3119), + [aux_sym_forward_agent_token1] = ACTIONS(3119), + [aux_sym_forward_x11_token1] = ACTIONS(3121), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3119), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3119), + [aux_sym_gateway_ports_token1] = ACTIONS(3119), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3119), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3119), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3119), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3119), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3119), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3119), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3119), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3119), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3119), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3119), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3119), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3119), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3119), + [aux_sym_host_key_alias_token1] = ACTIONS(3119), + [aux_sym_hostname_token1] = ACTIONS(3119), + [aux_sym_identities_only_token1] = ACTIONS(3119), + [aux_sym_identity_agent_token1] = ACTIONS(3119), + [aux_sym_identity_file_token1] = ACTIONS(3119), + [aux_sym_ignore_unknown_token1] = ACTIONS(3119), + [aux_sym_include_token1] = ACTIONS(3119), + [aux_sym_ip_qos_token1] = ACTIONS(3119), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3119), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3119), + [aux_sym_kex_algorithms_token1] = ACTIONS(3119), + [aux_sym_known_hosts_command_token1] = ACTIONS(3119), + [aux_sym_local_command_token1] = ACTIONS(3119), + [aux_sym_local_forward_token1] = ACTIONS(3119), + [aux_sym_log_level_token1] = ACTIONS(3119), + [aux_sym_log_verbose_token1] = ACTIONS(3119), + [aux_sym_macs_token1] = ACTIONS(3119), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3119), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3119), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3119), + [aux_sym_password_authentication_token1] = ACTIONS(3119), + [aux_sym_permit_local_command_token1] = ACTIONS(3119), + [aux_sym_permit_remote_open_token1] = ACTIONS(3119), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3119), + [aux_sym_port_token1] = ACTIONS(3119), + [aux_sym_preferred_authentications_token1] = ACTIONS(3119), + [aux_sym_protocol_token1] = ACTIONS(3119), + [aux_sym_proxy_command_token1] = ACTIONS(3119), + [aux_sym_proxy_jump_token1] = ACTIONS(3119), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3119), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3119), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3119), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3119), + [aux_sym_rekey_limit_token1] = ACTIONS(3119), + [aux_sym_remote_command_token1] = ACTIONS(3119), + [aux_sym_remote_forward_token1] = ACTIONS(3119), + [aux_sym_request_tty_token1] = ACTIONS(3119), + [aux_sym_required_rsa_size_token1] = ACTIONS(3119), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3119), + [aux_sym_security_key_provider_token1] = ACTIONS(3119), + [aux_sym_send_env_token1] = ACTIONS(3119), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3119), + [aux_sym_server_alive_interval_token1] = ACTIONS(3119), + [aux_sym_session_type_token1] = ACTIONS(3119), + [aux_sym_set_env_token1] = ACTIONS(3119), + [aux_sym_stdin_null_token1] = ACTIONS(3119), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3119), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3119), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3119), + [aux_sym_syslog_facility_token1] = ACTIONS(3119), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3119), + [aux_sym_keep_alive_token1] = ACTIONS(3119), + [aux_sym_tag_token1] = ACTIONS(3119), + [aux_sym_tunnel_token1] = ACTIONS(3121), + [aux_sym_tunnel_device_token1] = ACTIONS(3119), + [aux_sym_update_host_keys_token1] = ACTIONS(3119), + [aux_sym_use_keychain_token1] = ACTIONS(3119), + [aux_sym_use_roaming_token1] = ACTIONS(3119), + [aux_sym_user_token1] = ACTIONS(3121), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3119), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3119), + [aux_sym_visual_host_key_token1] = ACTIONS(3119), + [aux_sym_xauth_location_token1] = ACTIONS(3119), }, [469] = { - [ts_builtin_sym_end] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3110), - [aux_sym_match_token1] = ACTIONS(3108), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3108), - [aux_sym_address_family_token1] = ACTIONS(3108), - [aux_sym_batch_mode_token1] = ACTIONS(3108), - [aux_sym_bind_address_token1] = ACTIONS(3108), - [aux_sym_bind_interface_token1] = ACTIONS(3108), - [aux_sym_canonical_domains_token1] = ACTIONS(3108), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3108), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3108), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3108), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3108), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3108), - [aux_sym_certificate_file_token1] = ACTIONS(3108), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3108), - [aux_sym_channel_timeout_token1] = ACTIONS(3108), - [aux_sym_check_host_ip_token1] = ACTIONS(3108), - [aux_sym_ciphers_token1] = ACTIONS(3108), - [aux_sym_cipher_token1] = ACTIONS(3110), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3108), - [aux_sym_compression_token1] = ACTIONS(3108), - [aux_sym_connection_attempts_token1] = ACTIONS(3108), - [aux_sym_connect_timeout_token1] = ACTIONS(3108), - [aux_sym_control_master_token1] = ACTIONS(3108), - [aux_sym_control_path_token1] = ACTIONS(3108), - [aux_sym_control_persist_token1] = ACTIONS(3108), - [aux_sym_dynamic_forward_token1] = ACTIONS(3108), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3108), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3108), - [aux_sym_escape_char_token1] = ACTIONS(3108), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3108), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3108), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3108), - [aux_sym_forward_agent_token1] = ACTIONS(3108), - [aux_sym_forward_x11_token1] = ACTIONS(3110), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3108), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3108), - [aux_sym_gateway_ports_token1] = ACTIONS(3108), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3108), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3108), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3108), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3108), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3108), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3108), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3108), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3108), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3108), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3108), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3108), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3108), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3108), - [aux_sym_host_key_alias_token1] = ACTIONS(3108), - [aux_sym_hostname_token1] = ACTIONS(3108), - [aux_sym_identities_only_token1] = ACTIONS(3108), - [aux_sym_identity_agent_token1] = ACTIONS(3108), - [aux_sym_identity_file_token1] = ACTIONS(3108), - [aux_sym_ignore_unknown_token1] = ACTIONS(3108), - [aux_sym_include_token1] = ACTIONS(3108), - [aux_sym_ip_qos_token1] = ACTIONS(3108), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3108), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3108), - [aux_sym_kex_algorithms_token1] = ACTIONS(3108), - [aux_sym_known_hosts_command_token1] = ACTIONS(3108), - [aux_sym_local_command_token1] = ACTIONS(3108), - [aux_sym_local_forward_token1] = ACTIONS(3108), - [aux_sym_log_level_token1] = ACTIONS(3108), - [aux_sym_log_verbose_token1] = ACTIONS(3108), - [aux_sym_macs_token1] = ACTIONS(3108), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3108), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3108), - [aux_sym_password_authentication_token1] = ACTIONS(3108), - [aux_sym_permit_local_command_token1] = ACTIONS(3108), - [aux_sym_permit_remote_open_token1] = ACTIONS(3108), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3108), - [aux_sym_port_token1] = ACTIONS(3108), - [aux_sym_preferred_authentications_token1] = ACTIONS(3108), - [aux_sym_protocol_token1] = ACTIONS(3108), - [aux_sym_proxy_command_token1] = ACTIONS(3108), - [aux_sym_proxy_jump_token1] = ACTIONS(3108), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3108), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3108), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3108), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3108), - [aux_sym_rekey_limit_token1] = ACTIONS(3108), - [aux_sym_remote_command_token1] = ACTIONS(3108), - [aux_sym_remote_forward_token1] = ACTIONS(3108), - [aux_sym_request_tty_token1] = ACTIONS(3108), - [aux_sym_required_rsa_size_token1] = ACTIONS(3108), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3108), - [aux_sym_security_key_provider_token1] = ACTIONS(3108), - [aux_sym_send_env_token1] = ACTIONS(3108), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3108), - [aux_sym_server_alive_interval_token1] = ACTIONS(3108), - [aux_sym_session_type_token1] = ACTIONS(3108), - [aux_sym_set_env_token1] = ACTIONS(3108), - [aux_sym_stdin_null_token1] = ACTIONS(3108), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3108), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3108), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3108), - [aux_sym_syslog_facility_token1] = ACTIONS(3108), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3108), - [aux_sym_keep_alive_token1] = ACTIONS(3108), - [aux_sym_tag_token1] = ACTIONS(3108), - [aux_sym_tunnel_token1] = ACTIONS(3110), - [aux_sym_tunnel_device_token1] = ACTIONS(3108), - [aux_sym_update_host_keys_token1] = ACTIONS(3108), - [aux_sym_use_keychain_token1] = ACTIONS(3108), - [aux_sym_use_roaming_token1] = ACTIONS(3108), - [aux_sym_user_token1] = ACTIONS(3110), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3108), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3108), - [aux_sym_visual_host_key_token1] = ACTIONS(3108), - [aux_sym_xauth_location_token1] = ACTIONS(3108), + [ts_builtin_sym_end] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3125), + [aux_sym_match_token1] = ACTIONS(3123), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3123), + [aux_sym_address_family_token1] = ACTIONS(3123), + [aux_sym_batch_mode_token1] = ACTIONS(3123), + [aux_sym_bind_address_token1] = ACTIONS(3123), + [aux_sym_bind_interface_token1] = ACTIONS(3123), + [aux_sym_canonical_domains_token1] = ACTIONS(3123), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3123), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3123), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3123), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3123), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3123), + [aux_sym_certificate_file_token1] = ACTIONS(3123), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3123), + [aux_sym_channel_timeout_token1] = ACTIONS(3123), + [aux_sym_check_host_ip_token1] = ACTIONS(3123), + [aux_sym_ciphers_token1] = ACTIONS(3123), + [aux_sym_cipher_token1] = ACTIONS(3125), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3123), + [aux_sym_compression_token1] = ACTIONS(3123), + [aux_sym_connection_attempts_token1] = ACTIONS(3123), + [aux_sym_connect_timeout_token1] = ACTIONS(3123), + [aux_sym_control_master_token1] = ACTIONS(3123), + [aux_sym_control_path_token1] = ACTIONS(3123), + [aux_sym_control_persist_token1] = ACTIONS(3123), + [aux_sym_dynamic_forward_token1] = ACTIONS(3123), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3123), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3123), + [aux_sym_escape_char_token1] = ACTIONS(3123), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3123), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3123), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3123), + [aux_sym_forward_agent_token1] = ACTIONS(3123), + [aux_sym_forward_x11_token1] = ACTIONS(3125), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3123), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3123), + [aux_sym_gateway_ports_token1] = ACTIONS(3123), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3123), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3123), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3123), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3123), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3123), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3123), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3123), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3123), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3123), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3123), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3123), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3123), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3123), + [aux_sym_host_key_alias_token1] = ACTIONS(3123), + [aux_sym_hostname_token1] = ACTIONS(3123), + [aux_sym_identities_only_token1] = ACTIONS(3123), + [aux_sym_identity_agent_token1] = ACTIONS(3123), + [aux_sym_identity_file_token1] = ACTIONS(3123), + [aux_sym_ignore_unknown_token1] = ACTIONS(3123), + [aux_sym_include_token1] = ACTIONS(3123), + [aux_sym_ip_qos_token1] = ACTIONS(3123), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3123), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3123), + [aux_sym_kex_algorithms_token1] = ACTIONS(3123), + [aux_sym_known_hosts_command_token1] = ACTIONS(3123), + [aux_sym_local_command_token1] = ACTIONS(3123), + [aux_sym_local_forward_token1] = ACTIONS(3123), + [aux_sym_log_level_token1] = ACTIONS(3123), + [aux_sym_log_verbose_token1] = ACTIONS(3123), + [aux_sym_macs_token1] = ACTIONS(3123), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3123), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3123), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3123), + [aux_sym_password_authentication_token1] = ACTIONS(3123), + [aux_sym_permit_local_command_token1] = ACTIONS(3123), + [aux_sym_permit_remote_open_token1] = ACTIONS(3123), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3123), + [aux_sym_port_token1] = ACTIONS(3123), + [aux_sym_preferred_authentications_token1] = ACTIONS(3123), + [aux_sym_protocol_token1] = ACTIONS(3123), + [aux_sym_proxy_command_token1] = ACTIONS(3123), + [aux_sym_proxy_jump_token1] = ACTIONS(3123), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3123), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3123), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3123), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3123), + [aux_sym_rekey_limit_token1] = ACTIONS(3123), + [aux_sym_remote_command_token1] = ACTIONS(3123), + [aux_sym_remote_forward_token1] = ACTIONS(3123), + [aux_sym_request_tty_token1] = ACTIONS(3123), + [aux_sym_required_rsa_size_token1] = ACTIONS(3123), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3123), + [aux_sym_security_key_provider_token1] = ACTIONS(3123), + [aux_sym_send_env_token1] = ACTIONS(3123), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3123), + [aux_sym_server_alive_interval_token1] = ACTIONS(3123), + [aux_sym_session_type_token1] = ACTIONS(3123), + [aux_sym_set_env_token1] = ACTIONS(3123), + [aux_sym_stdin_null_token1] = ACTIONS(3123), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3123), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3123), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3123), + [aux_sym_syslog_facility_token1] = ACTIONS(3123), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3123), + [aux_sym_keep_alive_token1] = ACTIONS(3123), + [aux_sym_tag_token1] = ACTIONS(3123), + [aux_sym_tunnel_token1] = ACTIONS(3125), + [aux_sym_tunnel_device_token1] = ACTIONS(3123), + [aux_sym_update_host_keys_token1] = ACTIONS(3123), + [aux_sym_use_keychain_token1] = ACTIONS(3123), + [aux_sym_use_roaming_token1] = ACTIONS(3123), + [aux_sym_user_token1] = ACTIONS(3125), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3123), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3123), + [aux_sym_visual_host_key_token1] = ACTIONS(3123), + [aux_sym_xauth_location_token1] = ACTIONS(3123), }, [470] = { - [ts_builtin_sym_end] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3114), - [aux_sym_match_token1] = ACTIONS(3112), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3112), - [aux_sym_address_family_token1] = ACTIONS(3112), - [aux_sym_batch_mode_token1] = ACTIONS(3112), - [aux_sym_bind_address_token1] = ACTIONS(3112), - [aux_sym_bind_interface_token1] = ACTIONS(3112), - [aux_sym_canonical_domains_token1] = ACTIONS(3112), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3112), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3112), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3112), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3112), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3112), - [aux_sym_certificate_file_token1] = ACTIONS(3112), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3112), - [aux_sym_channel_timeout_token1] = ACTIONS(3112), - [aux_sym_check_host_ip_token1] = ACTIONS(3112), - [aux_sym_ciphers_token1] = ACTIONS(3112), - [aux_sym_cipher_token1] = ACTIONS(3114), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3112), - [aux_sym_compression_token1] = ACTIONS(3112), - [aux_sym_connection_attempts_token1] = ACTIONS(3112), - [aux_sym_connect_timeout_token1] = ACTIONS(3112), - [aux_sym_control_master_token1] = ACTIONS(3112), - [aux_sym_control_path_token1] = ACTIONS(3112), - [aux_sym_control_persist_token1] = ACTIONS(3112), - [aux_sym_dynamic_forward_token1] = ACTIONS(3112), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3112), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3112), - [aux_sym_escape_char_token1] = ACTIONS(3112), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3112), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3112), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3112), - [aux_sym_forward_agent_token1] = ACTIONS(3112), - [aux_sym_forward_x11_token1] = ACTIONS(3114), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3112), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3112), - [aux_sym_gateway_ports_token1] = ACTIONS(3112), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3112), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3112), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3112), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3112), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3112), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3112), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3112), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3112), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3112), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3112), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3112), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3112), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3112), - [aux_sym_host_key_alias_token1] = ACTIONS(3112), - [aux_sym_hostname_token1] = ACTIONS(3112), - [aux_sym_identities_only_token1] = ACTIONS(3112), - [aux_sym_identity_agent_token1] = ACTIONS(3112), - [aux_sym_identity_file_token1] = ACTIONS(3112), - [aux_sym_ignore_unknown_token1] = ACTIONS(3112), - [aux_sym_include_token1] = ACTIONS(3112), - [aux_sym_ip_qos_token1] = ACTIONS(3112), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3112), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3112), - [aux_sym_kex_algorithms_token1] = ACTIONS(3112), - [aux_sym_known_hosts_command_token1] = ACTIONS(3112), - [aux_sym_local_command_token1] = ACTIONS(3112), - [aux_sym_local_forward_token1] = ACTIONS(3112), - [aux_sym_log_level_token1] = ACTIONS(3112), - [aux_sym_log_verbose_token1] = ACTIONS(3112), - [aux_sym_macs_token1] = ACTIONS(3112), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3112), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3112), - [aux_sym_password_authentication_token1] = ACTIONS(3112), - [aux_sym_permit_local_command_token1] = ACTIONS(3112), - [aux_sym_permit_remote_open_token1] = ACTIONS(3112), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3112), - [aux_sym_port_token1] = ACTIONS(3112), - [aux_sym_preferred_authentications_token1] = ACTIONS(3112), - [aux_sym_protocol_token1] = ACTIONS(3112), - [aux_sym_proxy_command_token1] = ACTIONS(3112), - [aux_sym_proxy_jump_token1] = ACTIONS(3112), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3112), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3112), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3112), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3112), - [aux_sym_rekey_limit_token1] = ACTIONS(3112), - [aux_sym_remote_command_token1] = ACTIONS(3112), - [aux_sym_remote_forward_token1] = ACTIONS(3112), - [aux_sym_request_tty_token1] = ACTIONS(3112), - [aux_sym_required_rsa_size_token1] = ACTIONS(3112), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3112), - [aux_sym_security_key_provider_token1] = ACTIONS(3112), - [aux_sym_send_env_token1] = ACTIONS(3112), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3112), - [aux_sym_server_alive_interval_token1] = ACTIONS(3112), - [aux_sym_session_type_token1] = ACTIONS(3112), - [aux_sym_set_env_token1] = ACTIONS(3112), - [aux_sym_stdin_null_token1] = ACTIONS(3112), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3112), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3112), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3112), - [aux_sym_syslog_facility_token1] = ACTIONS(3112), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3112), - [aux_sym_keep_alive_token1] = ACTIONS(3112), - [aux_sym_tag_token1] = ACTIONS(3112), - [aux_sym_tunnel_token1] = ACTIONS(3114), - [aux_sym_tunnel_device_token1] = ACTIONS(3112), - [aux_sym_update_host_keys_token1] = ACTIONS(3112), - [aux_sym_use_keychain_token1] = ACTIONS(3112), - [aux_sym_use_roaming_token1] = ACTIONS(3112), - [aux_sym_user_token1] = ACTIONS(3114), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3112), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3112), - [aux_sym_visual_host_key_token1] = ACTIONS(3112), - [aux_sym_xauth_location_token1] = ACTIONS(3112), + [ts_builtin_sym_end] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3129), + [aux_sym_match_token1] = ACTIONS(3127), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3127), + [aux_sym_address_family_token1] = ACTIONS(3127), + [aux_sym_batch_mode_token1] = ACTIONS(3127), + [aux_sym_bind_address_token1] = ACTIONS(3127), + [aux_sym_bind_interface_token1] = ACTIONS(3127), + [aux_sym_canonical_domains_token1] = ACTIONS(3127), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3127), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3127), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3127), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3127), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3127), + [aux_sym_certificate_file_token1] = ACTIONS(3127), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3127), + [aux_sym_channel_timeout_token1] = ACTIONS(3127), + [aux_sym_check_host_ip_token1] = ACTIONS(3127), + [aux_sym_ciphers_token1] = ACTIONS(3127), + [aux_sym_cipher_token1] = ACTIONS(3129), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3127), + [aux_sym_compression_token1] = ACTIONS(3127), + [aux_sym_connection_attempts_token1] = ACTIONS(3127), + [aux_sym_connect_timeout_token1] = ACTIONS(3127), + [aux_sym_control_master_token1] = ACTIONS(3127), + [aux_sym_control_path_token1] = ACTIONS(3127), + [aux_sym_control_persist_token1] = ACTIONS(3127), + [aux_sym_dynamic_forward_token1] = ACTIONS(3127), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3127), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3127), + [aux_sym_escape_char_token1] = ACTIONS(3127), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3127), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3127), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3127), + [aux_sym_forward_agent_token1] = ACTIONS(3127), + [aux_sym_forward_x11_token1] = ACTIONS(3129), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3127), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3127), + [aux_sym_gateway_ports_token1] = ACTIONS(3127), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3127), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3127), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3127), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3127), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3127), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3127), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3127), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3127), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3127), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3127), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3127), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3127), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3127), + [aux_sym_host_key_alias_token1] = ACTIONS(3127), + [aux_sym_hostname_token1] = ACTIONS(3127), + [aux_sym_identities_only_token1] = ACTIONS(3127), + [aux_sym_identity_agent_token1] = ACTIONS(3127), + [aux_sym_identity_file_token1] = ACTIONS(3127), + [aux_sym_ignore_unknown_token1] = ACTIONS(3127), + [aux_sym_include_token1] = ACTIONS(3127), + [aux_sym_ip_qos_token1] = ACTIONS(3127), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3127), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3127), + [aux_sym_kex_algorithms_token1] = ACTIONS(3127), + [aux_sym_known_hosts_command_token1] = ACTIONS(3127), + [aux_sym_local_command_token1] = ACTIONS(3127), + [aux_sym_local_forward_token1] = ACTIONS(3127), + [aux_sym_log_level_token1] = ACTIONS(3127), + [aux_sym_log_verbose_token1] = ACTIONS(3127), + [aux_sym_macs_token1] = ACTIONS(3127), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3127), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3127), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3127), + [aux_sym_password_authentication_token1] = ACTIONS(3127), + [aux_sym_permit_local_command_token1] = ACTIONS(3127), + [aux_sym_permit_remote_open_token1] = ACTIONS(3127), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3127), + [aux_sym_port_token1] = ACTIONS(3127), + [aux_sym_preferred_authentications_token1] = ACTIONS(3127), + [aux_sym_protocol_token1] = ACTIONS(3127), + [aux_sym_proxy_command_token1] = ACTIONS(3127), + [aux_sym_proxy_jump_token1] = ACTIONS(3127), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3127), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3127), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3127), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3127), + [aux_sym_rekey_limit_token1] = ACTIONS(3127), + [aux_sym_remote_command_token1] = ACTIONS(3127), + [aux_sym_remote_forward_token1] = ACTIONS(3127), + [aux_sym_request_tty_token1] = ACTIONS(3127), + [aux_sym_required_rsa_size_token1] = ACTIONS(3127), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3127), + [aux_sym_security_key_provider_token1] = ACTIONS(3127), + [aux_sym_send_env_token1] = ACTIONS(3127), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3127), + [aux_sym_server_alive_interval_token1] = ACTIONS(3127), + [aux_sym_session_type_token1] = ACTIONS(3127), + [aux_sym_set_env_token1] = ACTIONS(3127), + [aux_sym_stdin_null_token1] = ACTIONS(3127), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3127), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3127), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3127), + [aux_sym_syslog_facility_token1] = ACTIONS(3127), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3127), + [aux_sym_keep_alive_token1] = ACTIONS(3127), + [aux_sym_tag_token1] = ACTIONS(3127), + [aux_sym_tunnel_token1] = ACTIONS(3129), + [aux_sym_tunnel_device_token1] = ACTIONS(3127), + [aux_sym_update_host_keys_token1] = ACTIONS(3127), + [aux_sym_use_keychain_token1] = ACTIONS(3127), + [aux_sym_use_roaming_token1] = ACTIONS(3127), + [aux_sym_user_token1] = ACTIONS(3129), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3127), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3127), + [aux_sym_visual_host_key_token1] = ACTIONS(3127), + [aux_sym_xauth_location_token1] = ACTIONS(3127), }, [471] = { - [ts_builtin_sym_end] = ACTIONS(3116), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3118), - [aux_sym_match_token1] = ACTIONS(3116), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3116), - [aux_sym_address_family_token1] = ACTIONS(3116), - [aux_sym_batch_mode_token1] = ACTIONS(3116), - [aux_sym_bind_address_token1] = ACTIONS(3116), - [aux_sym_bind_interface_token1] = ACTIONS(3116), - [aux_sym_canonical_domains_token1] = ACTIONS(3116), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3116), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3116), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3116), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3116), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3116), - [aux_sym_certificate_file_token1] = ACTIONS(3116), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3116), - [aux_sym_channel_timeout_token1] = ACTIONS(3116), - [aux_sym_check_host_ip_token1] = ACTIONS(3116), - [aux_sym_ciphers_token1] = ACTIONS(3116), - [aux_sym_cipher_token1] = ACTIONS(3118), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3116), - [aux_sym_compression_token1] = ACTIONS(3116), - [aux_sym_connection_attempts_token1] = ACTIONS(3116), - [aux_sym_connect_timeout_token1] = ACTIONS(3116), - [aux_sym_control_master_token1] = ACTIONS(3116), - [aux_sym_control_path_token1] = ACTIONS(3116), - [aux_sym_control_persist_token1] = ACTIONS(3116), - [aux_sym_dynamic_forward_token1] = ACTIONS(3116), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3116), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3116), - [aux_sym_escape_char_token1] = ACTIONS(3116), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3116), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3116), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3116), - [aux_sym_forward_agent_token1] = ACTIONS(3116), - [aux_sym_forward_x11_token1] = ACTIONS(3118), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3116), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3116), - [aux_sym_gateway_ports_token1] = ACTIONS(3116), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3116), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3116), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3116), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3116), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3116), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3116), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3116), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3116), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3116), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3116), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3116), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3116), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3116), - [aux_sym_host_key_alias_token1] = ACTIONS(3116), - [aux_sym_hostname_token1] = ACTIONS(3116), - [aux_sym_identities_only_token1] = ACTIONS(3116), - [aux_sym_identity_agent_token1] = ACTIONS(3116), - [aux_sym_identity_file_token1] = ACTIONS(3116), - [aux_sym_ignore_unknown_token1] = ACTIONS(3116), - [aux_sym_include_token1] = ACTIONS(3116), - [aux_sym_ip_qos_token1] = ACTIONS(3116), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3116), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3116), - [aux_sym_kex_algorithms_token1] = ACTIONS(3116), - [aux_sym_known_hosts_command_token1] = ACTIONS(3116), - [aux_sym_local_command_token1] = ACTIONS(3116), - [aux_sym_local_forward_token1] = ACTIONS(3116), - [aux_sym_log_level_token1] = ACTIONS(3116), - [aux_sym_log_verbose_token1] = ACTIONS(3116), - [aux_sym_macs_token1] = ACTIONS(3116), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3116), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3116), - [aux_sym_password_authentication_token1] = ACTIONS(3116), - [aux_sym_permit_local_command_token1] = ACTIONS(3116), - [aux_sym_permit_remote_open_token1] = ACTIONS(3116), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3116), - [aux_sym_port_token1] = ACTIONS(3116), - [aux_sym_preferred_authentications_token1] = ACTIONS(3116), - [aux_sym_protocol_token1] = ACTIONS(3116), - [aux_sym_proxy_command_token1] = ACTIONS(3116), - [aux_sym_proxy_jump_token1] = ACTIONS(3116), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3116), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3116), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3116), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3116), - [aux_sym_rekey_limit_token1] = ACTIONS(3116), - [aux_sym_remote_command_token1] = ACTIONS(3116), - [aux_sym_remote_forward_token1] = ACTIONS(3116), - [aux_sym_request_tty_token1] = ACTIONS(3116), - [aux_sym_required_rsa_size_token1] = ACTIONS(3116), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3116), - [aux_sym_security_key_provider_token1] = ACTIONS(3116), - [aux_sym_send_env_token1] = ACTIONS(3116), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3116), - [aux_sym_server_alive_interval_token1] = ACTIONS(3116), - [aux_sym_session_type_token1] = ACTIONS(3116), - [aux_sym_set_env_token1] = ACTIONS(3116), - [aux_sym_stdin_null_token1] = ACTIONS(3116), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3116), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3116), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3116), - [aux_sym_syslog_facility_token1] = ACTIONS(3116), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3116), - [aux_sym_keep_alive_token1] = ACTIONS(3116), - [aux_sym_tag_token1] = ACTIONS(3116), - [aux_sym_tunnel_token1] = ACTIONS(3118), - [aux_sym_tunnel_device_token1] = ACTIONS(3116), - [aux_sym_update_host_keys_token1] = ACTIONS(3116), - [aux_sym_use_keychain_token1] = ACTIONS(3116), - [aux_sym_use_roaming_token1] = ACTIONS(3116), - [aux_sym_user_token1] = ACTIONS(3118), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3116), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3116), - [aux_sym_visual_host_key_token1] = ACTIONS(3116), - [aux_sym_xauth_location_token1] = ACTIONS(3116), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3133), + [aux_sym_match_token1] = ACTIONS(3131), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3131), + [aux_sym_address_family_token1] = ACTIONS(3131), + [aux_sym_batch_mode_token1] = ACTIONS(3131), + [aux_sym_bind_address_token1] = ACTIONS(3131), + [aux_sym_bind_interface_token1] = ACTIONS(3131), + [aux_sym_canonical_domains_token1] = ACTIONS(3131), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3131), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3131), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3131), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3131), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3131), + [aux_sym_certificate_file_token1] = ACTIONS(3131), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3131), + [aux_sym_channel_timeout_token1] = ACTIONS(3131), + [aux_sym_check_host_ip_token1] = ACTIONS(3131), + [aux_sym_ciphers_token1] = ACTIONS(3131), + [aux_sym_cipher_token1] = ACTIONS(3133), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3131), + [aux_sym_compression_token1] = ACTIONS(3131), + [aux_sym_connection_attempts_token1] = ACTIONS(3131), + [aux_sym_connect_timeout_token1] = ACTIONS(3131), + [aux_sym_control_master_token1] = ACTIONS(3131), + [aux_sym_control_path_token1] = ACTIONS(3131), + [aux_sym_control_persist_token1] = ACTIONS(3131), + [aux_sym_dynamic_forward_token1] = ACTIONS(3131), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3131), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3131), + [aux_sym_escape_char_token1] = ACTIONS(3131), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3131), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3131), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3131), + [aux_sym_forward_agent_token1] = ACTIONS(3131), + [aux_sym_forward_x11_token1] = ACTIONS(3133), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3131), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3131), + [aux_sym_gateway_ports_token1] = ACTIONS(3131), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3131), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3131), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3131), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3131), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3131), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3131), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3131), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3131), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3131), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3131), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3131), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3131), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3131), + [aux_sym_host_key_alias_token1] = ACTIONS(3131), + [aux_sym_hostname_token1] = ACTIONS(3131), + [aux_sym_identities_only_token1] = ACTIONS(3131), + [aux_sym_identity_agent_token1] = ACTIONS(3131), + [aux_sym_identity_file_token1] = ACTIONS(3131), + [aux_sym_ignore_unknown_token1] = ACTIONS(3131), + [aux_sym_include_token1] = ACTIONS(3131), + [aux_sym_ip_qos_token1] = ACTIONS(3131), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3131), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3131), + [aux_sym_kex_algorithms_token1] = ACTIONS(3131), + [aux_sym_known_hosts_command_token1] = ACTIONS(3131), + [aux_sym_local_command_token1] = ACTIONS(3131), + [aux_sym_local_forward_token1] = ACTIONS(3131), + [aux_sym_log_level_token1] = ACTIONS(3131), + [aux_sym_log_verbose_token1] = ACTIONS(3131), + [aux_sym_macs_token1] = ACTIONS(3131), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3131), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3131), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3131), + [aux_sym_password_authentication_token1] = ACTIONS(3131), + [aux_sym_permit_local_command_token1] = ACTIONS(3131), + [aux_sym_permit_remote_open_token1] = ACTIONS(3131), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3131), + [aux_sym_port_token1] = ACTIONS(3131), + [aux_sym_preferred_authentications_token1] = ACTIONS(3131), + [aux_sym_protocol_token1] = ACTIONS(3131), + [aux_sym_proxy_command_token1] = ACTIONS(3131), + [aux_sym_proxy_jump_token1] = ACTIONS(3131), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3131), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3131), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3131), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3131), + [aux_sym_rekey_limit_token1] = ACTIONS(3131), + [aux_sym_remote_command_token1] = ACTIONS(3131), + [aux_sym_remote_forward_token1] = ACTIONS(3131), + [aux_sym_request_tty_token1] = ACTIONS(3131), + [aux_sym_required_rsa_size_token1] = ACTIONS(3131), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3131), + [aux_sym_security_key_provider_token1] = ACTIONS(3131), + [aux_sym_send_env_token1] = ACTIONS(3131), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3131), + [aux_sym_server_alive_interval_token1] = ACTIONS(3131), + [aux_sym_session_type_token1] = ACTIONS(3131), + [aux_sym_set_env_token1] = ACTIONS(3131), + [aux_sym_stdin_null_token1] = ACTIONS(3131), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3131), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3131), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3131), + [aux_sym_syslog_facility_token1] = ACTIONS(3131), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3131), + [aux_sym_keep_alive_token1] = ACTIONS(3131), + [aux_sym_tag_token1] = ACTIONS(3131), + [aux_sym_tunnel_token1] = ACTIONS(3133), + [aux_sym_tunnel_device_token1] = ACTIONS(3131), + [aux_sym_update_host_keys_token1] = ACTIONS(3131), + [aux_sym_use_keychain_token1] = ACTIONS(3131), + [aux_sym_use_roaming_token1] = ACTIONS(3131), + [aux_sym_user_token1] = ACTIONS(3133), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3131), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3131), + [aux_sym_visual_host_key_token1] = ACTIONS(3131), + [aux_sym_xauth_location_token1] = ACTIONS(3131), }, [472] = { - [ts_builtin_sym_end] = ACTIONS(3120), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3122), - [aux_sym_match_token1] = ACTIONS(3120), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3120), - [aux_sym_address_family_token1] = ACTIONS(3120), - [aux_sym_batch_mode_token1] = ACTIONS(3120), - [aux_sym_bind_address_token1] = ACTIONS(3120), - [aux_sym_bind_interface_token1] = ACTIONS(3120), - [aux_sym_canonical_domains_token1] = ACTIONS(3120), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3120), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3120), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3120), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3120), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3120), - [aux_sym_certificate_file_token1] = ACTIONS(3120), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3120), - [aux_sym_channel_timeout_token1] = ACTIONS(3120), - [aux_sym_check_host_ip_token1] = ACTIONS(3120), - [aux_sym_ciphers_token1] = ACTIONS(3120), - [aux_sym_cipher_token1] = ACTIONS(3122), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3120), - [aux_sym_compression_token1] = ACTIONS(3120), - [aux_sym_connection_attempts_token1] = ACTIONS(3120), - [aux_sym_connect_timeout_token1] = ACTIONS(3120), - [aux_sym_control_master_token1] = ACTIONS(3120), - [aux_sym_control_path_token1] = ACTIONS(3120), - [aux_sym_control_persist_token1] = ACTIONS(3120), - [aux_sym_dynamic_forward_token1] = ACTIONS(3120), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3120), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3120), - [aux_sym_escape_char_token1] = ACTIONS(3120), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3120), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3120), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3120), - [aux_sym_forward_agent_token1] = ACTIONS(3120), - [aux_sym_forward_x11_token1] = ACTIONS(3122), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3120), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3120), - [aux_sym_gateway_ports_token1] = ACTIONS(3120), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3120), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3120), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3120), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3120), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3120), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3120), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3120), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3120), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3120), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3120), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3120), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3120), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3120), - [aux_sym_host_key_alias_token1] = ACTIONS(3120), - [aux_sym_hostname_token1] = ACTIONS(3120), - [aux_sym_identities_only_token1] = ACTIONS(3120), - [aux_sym_identity_agent_token1] = ACTIONS(3120), - [aux_sym_identity_file_token1] = ACTIONS(3120), - [aux_sym_ignore_unknown_token1] = ACTIONS(3120), - [aux_sym_include_token1] = ACTIONS(3120), - [aux_sym_ip_qos_token1] = ACTIONS(3120), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3120), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3120), - [aux_sym_kex_algorithms_token1] = ACTIONS(3120), - [aux_sym_known_hosts_command_token1] = ACTIONS(3120), - [aux_sym_local_command_token1] = ACTIONS(3120), - [aux_sym_local_forward_token1] = ACTIONS(3120), - [aux_sym_log_level_token1] = ACTIONS(3120), - [aux_sym_log_verbose_token1] = ACTIONS(3120), - [aux_sym_macs_token1] = ACTIONS(3120), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3120), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3120), - [aux_sym_password_authentication_token1] = ACTIONS(3120), - [aux_sym_permit_local_command_token1] = ACTIONS(3120), - [aux_sym_permit_remote_open_token1] = ACTIONS(3120), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3120), - [aux_sym_port_token1] = ACTIONS(3120), - [aux_sym_preferred_authentications_token1] = ACTIONS(3120), - [aux_sym_protocol_token1] = ACTIONS(3120), - [aux_sym_proxy_command_token1] = ACTIONS(3120), - [aux_sym_proxy_jump_token1] = ACTIONS(3120), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3120), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3120), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3120), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3120), - [aux_sym_rekey_limit_token1] = ACTIONS(3120), - [aux_sym_remote_command_token1] = ACTIONS(3120), - [aux_sym_remote_forward_token1] = ACTIONS(3120), - [aux_sym_request_tty_token1] = ACTIONS(3120), - [aux_sym_required_rsa_size_token1] = ACTIONS(3120), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3120), - [aux_sym_security_key_provider_token1] = ACTIONS(3120), - [aux_sym_send_env_token1] = ACTIONS(3120), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3120), - [aux_sym_server_alive_interval_token1] = ACTIONS(3120), - [aux_sym_session_type_token1] = ACTIONS(3120), - [aux_sym_set_env_token1] = ACTIONS(3120), - [aux_sym_stdin_null_token1] = ACTIONS(3120), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3120), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3120), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3120), - [aux_sym_syslog_facility_token1] = ACTIONS(3120), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3120), - [aux_sym_keep_alive_token1] = ACTIONS(3120), - [aux_sym_tag_token1] = ACTIONS(3120), - [aux_sym_tunnel_token1] = ACTIONS(3122), - [aux_sym_tunnel_device_token1] = ACTIONS(3120), - [aux_sym_update_host_keys_token1] = ACTIONS(3120), - [aux_sym_use_keychain_token1] = ACTIONS(3120), - [aux_sym_use_roaming_token1] = ACTIONS(3120), - [aux_sym_user_token1] = ACTIONS(3122), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3120), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3120), - [aux_sym_visual_host_key_token1] = ACTIONS(3120), - [aux_sym_xauth_location_token1] = ACTIONS(3120), + [ts_builtin_sym_end] = ACTIONS(1175), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1177), + [aux_sym_match_token1] = ACTIONS(1175), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1175), + [aux_sym_address_family_token1] = ACTIONS(1175), + [aux_sym_batch_mode_token1] = ACTIONS(1175), + [aux_sym_bind_address_token1] = ACTIONS(1175), + [aux_sym_bind_interface_token1] = ACTIONS(1175), + [aux_sym_canonical_domains_token1] = ACTIONS(1175), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1175), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1175), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1175), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1175), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1175), + [aux_sym_certificate_file_token1] = ACTIONS(1175), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1175), + [aux_sym_channel_timeout_token1] = ACTIONS(1175), + [aux_sym_check_host_ip_token1] = ACTIONS(1175), + [aux_sym_ciphers_token1] = ACTIONS(1175), + [aux_sym_cipher_token1] = ACTIONS(1177), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1175), + [aux_sym_compression_token1] = ACTIONS(1175), + [aux_sym_connection_attempts_token1] = ACTIONS(1175), + [aux_sym_connect_timeout_token1] = ACTIONS(1175), + [aux_sym_control_master_token1] = ACTIONS(1175), + [aux_sym_control_path_token1] = ACTIONS(1175), + [aux_sym_control_persist_token1] = ACTIONS(1175), + [aux_sym_dynamic_forward_token1] = ACTIONS(1175), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1175), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1175), + [aux_sym_escape_char_token1] = ACTIONS(1175), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1175), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1175), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1175), + [aux_sym_forward_agent_token1] = ACTIONS(1175), + [aux_sym_forward_x11_token1] = ACTIONS(1177), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1175), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1175), + [aux_sym_gateway_ports_token1] = ACTIONS(1175), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1175), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1175), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1175), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1175), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1175), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1175), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1175), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1175), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1175), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1175), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1175), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1175), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1175), + [aux_sym_host_key_alias_token1] = ACTIONS(1175), + [aux_sym_hostname_token1] = ACTIONS(1175), + [aux_sym_identities_only_token1] = ACTIONS(1175), + [aux_sym_identity_agent_token1] = ACTIONS(1175), + [aux_sym_identity_file_token1] = ACTIONS(1175), + [aux_sym_ignore_unknown_token1] = ACTIONS(1175), + [aux_sym_include_token1] = ACTIONS(1175), + [aux_sym_ip_qos_token1] = ACTIONS(1175), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1175), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1175), + [aux_sym_kex_algorithms_token1] = ACTIONS(1175), + [aux_sym_known_hosts_command_token1] = ACTIONS(1175), + [aux_sym_local_command_token1] = ACTIONS(1175), + [aux_sym_local_forward_token1] = ACTIONS(1175), + [aux_sym_log_level_token1] = ACTIONS(1175), + [aux_sym_log_verbose_token1] = ACTIONS(1175), + [aux_sym_macs_token1] = ACTIONS(1175), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1175), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1175), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1175), + [aux_sym_password_authentication_token1] = ACTIONS(1175), + [aux_sym_permit_local_command_token1] = ACTIONS(1175), + [aux_sym_permit_remote_open_token1] = ACTIONS(1175), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1175), + [aux_sym_port_token1] = ACTIONS(1175), + [aux_sym_preferred_authentications_token1] = ACTIONS(1175), + [aux_sym_protocol_token1] = ACTIONS(1175), + [aux_sym_proxy_command_token1] = ACTIONS(1175), + [aux_sym_proxy_jump_token1] = ACTIONS(1175), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1175), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1175), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1175), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1175), + [aux_sym_rekey_limit_token1] = ACTIONS(1175), + [aux_sym_remote_command_token1] = ACTIONS(1175), + [aux_sym_remote_forward_token1] = ACTIONS(1175), + [aux_sym_request_tty_token1] = ACTIONS(1175), + [aux_sym_required_rsa_size_token1] = ACTIONS(1175), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1175), + [aux_sym_security_key_provider_token1] = ACTIONS(1175), + [aux_sym_send_env_token1] = ACTIONS(1175), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1175), + [aux_sym_server_alive_interval_token1] = ACTIONS(1175), + [aux_sym_session_type_token1] = ACTIONS(1175), + [aux_sym_set_env_token1] = ACTIONS(1175), + [aux_sym_stdin_null_token1] = ACTIONS(1175), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1175), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1175), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1175), + [aux_sym_syslog_facility_token1] = ACTIONS(1175), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1175), + [aux_sym_keep_alive_token1] = ACTIONS(1175), + [aux_sym_tag_token1] = ACTIONS(1175), + [aux_sym_tunnel_token1] = ACTIONS(1177), + [aux_sym_tunnel_device_token1] = ACTIONS(1175), + [aux_sym_update_host_keys_token1] = ACTIONS(1175), + [aux_sym_use_keychain_token1] = ACTIONS(1175), + [aux_sym_use_roaming_token1] = ACTIONS(1175), + [aux_sym_user_token1] = ACTIONS(1177), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1175), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1175), + [aux_sym_visual_host_key_token1] = ACTIONS(1175), + [aux_sym_xauth_location_token1] = ACTIONS(1175), }, [473] = { - [ts_builtin_sym_end] = ACTIONS(3124), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3126), - [aux_sym_match_token1] = ACTIONS(3124), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3124), - [aux_sym_address_family_token1] = ACTIONS(3124), - [aux_sym_batch_mode_token1] = ACTIONS(3124), - [aux_sym_bind_address_token1] = ACTIONS(3124), - [aux_sym_bind_interface_token1] = ACTIONS(3124), - [aux_sym_canonical_domains_token1] = ACTIONS(3124), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3124), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3124), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3124), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3124), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3124), - [aux_sym_certificate_file_token1] = ACTIONS(3124), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3124), - [aux_sym_channel_timeout_token1] = ACTIONS(3124), - [aux_sym_check_host_ip_token1] = ACTIONS(3124), - [aux_sym_ciphers_token1] = ACTIONS(3124), - [aux_sym_cipher_token1] = ACTIONS(3126), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3124), - [aux_sym_compression_token1] = ACTIONS(3124), - [aux_sym_connection_attempts_token1] = ACTIONS(3124), - [aux_sym_connect_timeout_token1] = ACTIONS(3124), - [aux_sym_control_master_token1] = ACTIONS(3124), - [aux_sym_control_path_token1] = ACTIONS(3124), - [aux_sym_control_persist_token1] = ACTIONS(3124), - [aux_sym_dynamic_forward_token1] = ACTIONS(3124), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3124), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3124), - [aux_sym_escape_char_token1] = ACTIONS(3124), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3124), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3124), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3124), - [aux_sym_forward_agent_token1] = ACTIONS(3124), - [aux_sym_forward_x11_token1] = ACTIONS(3126), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3124), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3124), - [aux_sym_gateway_ports_token1] = ACTIONS(3124), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3124), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3124), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3124), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3124), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3124), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3124), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3124), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3124), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3124), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3124), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3124), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3124), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3124), - [aux_sym_host_key_alias_token1] = ACTIONS(3124), - [aux_sym_hostname_token1] = ACTIONS(3124), - [aux_sym_identities_only_token1] = ACTIONS(3124), - [aux_sym_identity_agent_token1] = ACTIONS(3124), - [aux_sym_identity_file_token1] = ACTIONS(3124), - [aux_sym_ignore_unknown_token1] = ACTIONS(3124), - [aux_sym_include_token1] = ACTIONS(3124), - [aux_sym_ip_qos_token1] = ACTIONS(3124), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3124), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3124), - [aux_sym_kex_algorithms_token1] = ACTIONS(3124), - [aux_sym_known_hosts_command_token1] = ACTIONS(3124), - [aux_sym_local_command_token1] = ACTIONS(3124), - [aux_sym_local_forward_token1] = ACTIONS(3124), - [aux_sym_log_level_token1] = ACTIONS(3124), - [aux_sym_log_verbose_token1] = ACTIONS(3124), - [aux_sym_macs_token1] = ACTIONS(3124), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3124), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3124), - [aux_sym_password_authentication_token1] = ACTIONS(3124), - [aux_sym_permit_local_command_token1] = ACTIONS(3124), - [aux_sym_permit_remote_open_token1] = ACTIONS(3124), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3124), - [aux_sym_port_token1] = ACTIONS(3124), - [aux_sym_preferred_authentications_token1] = ACTIONS(3124), - [aux_sym_protocol_token1] = ACTIONS(3124), - [aux_sym_proxy_command_token1] = ACTIONS(3124), - [aux_sym_proxy_jump_token1] = ACTIONS(3124), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3124), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3124), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3124), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3124), - [aux_sym_rekey_limit_token1] = ACTIONS(3124), - [aux_sym_remote_command_token1] = ACTIONS(3124), - [aux_sym_remote_forward_token1] = ACTIONS(3124), - [aux_sym_request_tty_token1] = ACTIONS(3124), - [aux_sym_required_rsa_size_token1] = ACTIONS(3124), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3124), - [aux_sym_security_key_provider_token1] = ACTIONS(3124), - [aux_sym_send_env_token1] = ACTIONS(3124), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3124), - [aux_sym_server_alive_interval_token1] = ACTIONS(3124), - [aux_sym_session_type_token1] = ACTIONS(3124), - [aux_sym_set_env_token1] = ACTIONS(3124), - [aux_sym_stdin_null_token1] = ACTIONS(3124), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3124), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3124), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3124), - [aux_sym_syslog_facility_token1] = ACTIONS(3124), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3124), - [aux_sym_keep_alive_token1] = ACTIONS(3124), - [aux_sym_tag_token1] = ACTIONS(3124), - [aux_sym_tunnel_token1] = ACTIONS(3126), - [aux_sym_tunnel_device_token1] = ACTIONS(3124), - [aux_sym_update_host_keys_token1] = ACTIONS(3124), - [aux_sym_use_keychain_token1] = ACTIONS(3124), - [aux_sym_use_roaming_token1] = ACTIONS(3124), - [aux_sym_user_token1] = ACTIONS(3126), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3124), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3124), - [aux_sym_visual_host_key_token1] = ACTIONS(3124), - [aux_sym_xauth_location_token1] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(1127), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1129), + [aux_sym_match_token1] = ACTIONS(1127), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1127), + [aux_sym_address_family_token1] = ACTIONS(1127), + [aux_sym_batch_mode_token1] = ACTIONS(1127), + [aux_sym_bind_address_token1] = ACTIONS(1127), + [aux_sym_bind_interface_token1] = ACTIONS(1127), + [aux_sym_canonical_domains_token1] = ACTIONS(1127), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1127), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1127), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1127), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1127), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1127), + [aux_sym_certificate_file_token1] = ACTIONS(1127), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1127), + [aux_sym_channel_timeout_token1] = ACTIONS(1127), + [aux_sym_check_host_ip_token1] = ACTIONS(1127), + [aux_sym_ciphers_token1] = ACTIONS(1127), + [aux_sym_cipher_token1] = ACTIONS(1129), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1127), + [aux_sym_compression_token1] = ACTIONS(1127), + [aux_sym_connection_attempts_token1] = ACTIONS(1127), + [aux_sym_connect_timeout_token1] = ACTIONS(1127), + [aux_sym_control_master_token1] = ACTIONS(1127), + [aux_sym_control_path_token1] = ACTIONS(1127), + [aux_sym_control_persist_token1] = ACTIONS(1127), + [aux_sym_dynamic_forward_token1] = ACTIONS(1127), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1127), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1127), + [aux_sym_escape_char_token1] = ACTIONS(1127), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1127), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1127), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1127), + [aux_sym_forward_agent_token1] = ACTIONS(1127), + [aux_sym_forward_x11_token1] = ACTIONS(1129), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1127), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1127), + [aux_sym_gateway_ports_token1] = ACTIONS(1127), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1127), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1127), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1127), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1127), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1127), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1127), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1127), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1127), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1127), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1127), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1127), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1127), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1127), + [aux_sym_host_key_alias_token1] = ACTIONS(1127), + [aux_sym_hostname_token1] = ACTIONS(1127), + [aux_sym_identities_only_token1] = ACTIONS(1127), + [aux_sym_identity_agent_token1] = ACTIONS(1127), + [aux_sym_identity_file_token1] = ACTIONS(1127), + [aux_sym_ignore_unknown_token1] = ACTIONS(1127), + [aux_sym_include_token1] = ACTIONS(1127), + [aux_sym_ip_qos_token1] = ACTIONS(1127), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1127), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1127), + [aux_sym_kex_algorithms_token1] = ACTIONS(1127), + [aux_sym_known_hosts_command_token1] = ACTIONS(1127), + [aux_sym_local_command_token1] = ACTIONS(1127), + [aux_sym_local_forward_token1] = ACTIONS(1127), + [aux_sym_log_level_token1] = ACTIONS(1127), + [aux_sym_log_verbose_token1] = ACTIONS(1127), + [aux_sym_macs_token1] = ACTIONS(1127), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1127), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1127), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1127), + [aux_sym_password_authentication_token1] = ACTIONS(1127), + [aux_sym_permit_local_command_token1] = ACTIONS(1127), + [aux_sym_permit_remote_open_token1] = ACTIONS(1127), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1127), + [aux_sym_port_token1] = ACTIONS(1127), + [aux_sym_preferred_authentications_token1] = ACTIONS(1127), + [aux_sym_protocol_token1] = ACTIONS(1127), + [aux_sym_proxy_command_token1] = ACTIONS(1127), + [aux_sym_proxy_jump_token1] = ACTIONS(1127), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1127), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1127), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1127), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1127), + [aux_sym_rekey_limit_token1] = ACTIONS(1127), + [aux_sym_remote_command_token1] = ACTIONS(1127), + [aux_sym_remote_forward_token1] = ACTIONS(1127), + [aux_sym_request_tty_token1] = ACTIONS(1127), + [aux_sym_required_rsa_size_token1] = ACTIONS(1127), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1127), + [aux_sym_security_key_provider_token1] = ACTIONS(1127), + [aux_sym_send_env_token1] = ACTIONS(1127), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1127), + [aux_sym_server_alive_interval_token1] = ACTIONS(1127), + [aux_sym_session_type_token1] = ACTIONS(1127), + [aux_sym_set_env_token1] = ACTIONS(1127), + [aux_sym_stdin_null_token1] = ACTIONS(1127), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1127), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1127), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1127), + [aux_sym_syslog_facility_token1] = ACTIONS(1127), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1127), + [aux_sym_keep_alive_token1] = ACTIONS(1127), + [aux_sym_tag_token1] = ACTIONS(1127), + [aux_sym_tunnel_token1] = ACTIONS(1129), + [aux_sym_tunnel_device_token1] = ACTIONS(1127), + [aux_sym_update_host_keys_token1] = ACTIONS(1127), + [aux_sym_use_keychain_token1] = ACTIONS(1127), + [aux_sym_use_roaming_token1] = ACTIONS(1127), + [aux_sym_user_token1] = ACTIONS(1129), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1127), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1127), + [aux_sym_visual_host_key_token1] = ACTIONS(1127), + [aux_sym_xauth_location_token1] = ACTIONS(1127), }, [474] = { - [ts_builtin_sym_end] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3130), - [aux_sym_match_token1] = ACTIONS(3128), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3128), - [aux_sym_address_family_token1] = ACTIONS(3128), - [aux_sym_batch_mode_token1] = ACTIONS(3128), - [aux_sym_bind_address_token1] = ACTIONS(3128), - [aux_sym_bind_interface_token1] = ACTIONS(3128), - [aux_sym_canonical_domains_token1] = ACTIONS(3128), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3128), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3128), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3128), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3128), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3128), - [aux_sym_certificate_file_token1] = ACTIONS(3128), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3128), - [aux_sym_channel_timeout_token1] = ACTIONS(3128), - [aux_sym_check_host_ip_token1] = ACTIONS(3128), - [aux_sym_ciphers_token1] = ACTIONS(3128), - [aux_sym_cipher_token1] = ACTIONS(3130), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3128), - [aux_sym_compression_token1] = ACTIONS(3128), - [aux_sym_connection_attempts_token1] = ACTIONS(3128), - [aux_sym_connect_timeout_token1] = ACTIONS(3128), - [aux_sym_control_master_token1] = ACTIONS(3128), - [aux_sym_control_path_token1] = ACTIONS(3128), - [aux_sym_control_persist_token1] = ACTIONS(3128), - [aux_sym_dynamic_forward_token1] = ACTIONS(3128), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3128), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3128), - [aux_sym_escape_char_token1] = ACTIONS(3128), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3128), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3128), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3128), - [aux_sym_forward_agent_token1] = ACTIONS(3128), - [aux_sym_forward_x11_token1] = ACTIONS(3130), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3128), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3128), - [aux_sym_gateway_ports_token1] = ACTIONS(3128), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3128), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3128), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3128), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3128), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3128), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3128), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3128), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3128), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3128), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3128), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3128), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3128), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3128), - [aux_sym_host_key_alias_token1] = ACTIONS(3128), - [aux_sym_hostname_token1] = ACTIONS(3128), - [aux_sym_identities_only_token1] = ACTIONS(3128), - [aux_sym_identity_agent_token1] = ACTIONS(3128), - [aux_sym_identity_file_token1] = ACTIONS(3128), - [aux_sym_ignore_unknown_token1] = ACTIONS(3128), - [aux_sym_include_token1] = ACTIONS(3128), - [aux_sym_ip_qos_token1] = ACTIONS(3128), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3128), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3128), - [aux_sym_kex_algorithms_token1] = ACTIONS(3128), - [aux_sym_known_hosts_command_token1] = ACTIONS(3128), - [aux_sym_local_command_token1] = ACTIONS(3128), - [aux_sym_local_forward_token1] = ACTIONS(3128), - [aux_sym_log_level_token1] = ACTIONS(3128), - [aux_sym_log_verbose_token1] = ACTIONS(3128), - [aux_sym_macs_token1] = ACTIONS(3128), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3128), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3128), - [aux_sym_password_authentication_token1] = ACTIONS(3128), - [aux_sym_permit_local_command_token1] = ACTIONS(3128), - [aux_sym_permit_remote_open_token1] = ACTIONS(3128), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3128), - [aux_sym_port_token1] = ACTIONS(3128), - [aux_sym_preferred_authentications_token1] = ACTIONS(3128), - [aux_sym_protocol_token1] = ACTIONS(3128), - [aux_sym_proxy_command_token1] = ACTIONS(3128), - [aux_sym_proxy_jump_token1] = ACTIONS(3128), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3128), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3128), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3128), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3128), - [aux_sym_rekey_limit_token1] = ACTIONS(3128), - [aux_sym_remote_command_token1] = ACTIONS(3128), - [aux_sym_remote_forward_token1] = ACTIONS(3128), - [aux_sym_request_tty_token1] = ACTIONS(3128), - [aux_sym_required_rsa_size_token1] = ACTIONS(3128), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3128), - [aux_sym_security_key_provider_token1] = ACTIONS(3128), - [aux_sym_send_env_token1] = ACTIONS(3128), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3128), - [aux_sym_server_alive_interval_token1] = ACTIONS(3128), - [aux_sym_session_type_token1] = ACTIONS(3128), - [aux_sym_set_env_token1] = ACTIONS(3128), - [aux_sym_stdin_null_token1] = ACTIONS(3128), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3128), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3128), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3128), - [aux_sym_syslog_facility_token1] = ACTIONS(3128), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3128), - [aux_sym_keep_alive_token1] = ACTIONS(3128), - [aux_sym_tag_token1] = ACTIONS(3128), - [aux_sym_tunnel_token1] = ACTIONS(3130), - [aux_sym_tunnel_device_token1] = ACTIONS(3128), - [aux_sym_update_host_keys_token1] = ACTIONS(3128), - [aux_sym_use_keychain_token1] = ACTIONS(3128), - [aux_sym_use_roaming_token1] = ACTIONS(3128), - [aux_sym_user_token1] = ACTIONS(3130), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3128), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3128), - [aux_sym_visual_host_key_token1] = ACTIONS(3128), - [aux_sym_xauth_location_token1] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3137), + [aux_sym_match_token1] = ACTIONS(3135), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3135), + [aux_sym_address_family_token1] = ACTIONS(3135), + [aux_sym_batch_mode_token1] = ACTIONS(3135), + [aux_sym_bind_address_token1] = ACTIONS(3135), + [aux_sym_bind_interface_token1] = ACTIONS(3135), + [aux_sym_canonical_domains_token1] = ACTIONS(3135), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3135), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3135), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3135), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3135), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3135), + [aux_sym_certificate_file_token1] = ACTIONS(3135), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3135), + [aux_sym_channel_timeout_token1] = ACTIONS(3135), + [aux_sym_check_host_ip_token1] = ACTIONS(3135), + [aux_sym_ciphers_token1] = ACTIONS(3135), + [aux_sym_cipher_token1] = ACTIONS(3137), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3135), + [aux_sym_compression_token1] = ACTIONS(3135), + [aux_sym_connection_attempts_token1] = ACTIONS(3135), + [aux_sym_connect_timeout_token1] = ACTIONS(3135), + [aux_sym_control_master_token1] = ACTIONS(3135), + [aux_sym_control_path_token1] = ACTIONS(3135), + [aux_sym_control_persist_token1] = ACTIONS(3135), + [aux_sym_dynamic_forward_token1] = ACTIONS(3135), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3135), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3135), + [aux_sym_escape_char_token1] = ACTIONS(3135), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3135), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3135), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3135), + [aux_sym_forward_agent_token1] = ACTIONS(3135), + [aux_sym_forward_x11_token1] = ACTIONS(3137), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3135), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3135), + [aux_sym_gateway_ports_token1] = ACTIONS(3135), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3135), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3135), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3135), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3135), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3135), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3135), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3135), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3135), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3135), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3135), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3135), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3135), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3135), + [aux_sym_host_key_alias_token1] = ACTIONS(3135), + [aux_sym_hostname_token1] = ACTIONS(3135), + [aux_sym_identities_only_token1] = ACTIONS(3135), + [aux_sym_identity_agent_token1] = ACTIONS(3135), + [aux_sym_identity_file_token1] = ACTIONS(3135), + [aux_sym_ignore_unknown_token1] = ACTIONS(3135), + [aux_sym_include_token1] = ACTIONS(3135), + [aux_sym_ip_qos_token1] = ACTIONS(3135), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3135), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3135), + [aux_sym_kex_algorithms_token1] = ACTIONS(3135), + [aux_sym_known_hosts_command_token1] = ACTIONS(3135), + [aux_sym_local_command_token1] = ACTIONS(3135), + [aux_sym_local_forward_token1] = ACTIONS(3135), + [aux_sym_log_level_token1] = ACTIONS(3135), + [aux_sym_log_verbose_token1] = ACTIONS(3135), + [aux_sym_macs_token1] = ACTIONS(3135), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3135), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3135), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3135), + [aux_sym_password_authentication_token1] = ACTIONS(3135), + [aux_sym_permit_local_command_token1] = ACTIONS(3135), + [aux_sym_permit_remote_open_token1] = ACTIONS(3135), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3135), + [aux_sym_port_token1] = ACTIONS(3135), + [aux_sym_preferred_authentications_token1] = ACTIONS(3135), + [aux_sym_protocol_token1] = ACTIONS(3135), + [aux_sym_proxy_command_token1] = ACTIONS(3135), + [aux_sym_proxy_jump_token1] = ACTIONS(3135), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3135), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3135), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3135), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3135), + [aux_sym_rekey_limit_token1] = ACTIONS(3135), + [aux_sym_remote_command_token1] = ACTIONS(3135), + [aux_sym_remote_forward_token1] = ACTIONS(3135), + [aux_sym_request_tty_token1] = ACTIONS(3135), + [aux_sym_required_rsa_size_token1] = ACTIONS(3135), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3135), + [aux_sym_security_key_provider_token1] = ACTIONS(3135), + [aux_sym_send_env_token1] = ACTIONS(3135), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3135), + [aux_sym_server_alive_interval_token1] = ACTIONS(3135), + [aux_sym_session_type_token1] = ACTIONS(3135), + [aux_sym_set_env_token1] = ACTIONS(3135), + [aux_sym_stdin_null_token1] = ACTIONS(3135), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3135), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3135), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3135), + [aux_sym_syslog_facility_token1] = ACTIONS(3135), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3135), + [aux_sym_keep_alive_token1] = ACTIONS(3135), + [aux_sym_tag_token1] = ACTIONS(3135), + [aux_sym_tunnel_token1] = ACTIONS(3137), + [aux_sym_tunnel_device_token1] = ACTIONS(3135), + [aux_sym_update_host_keys_token1] = ACTIONS(3135), + [aux_sym_use_keychain_token1] = ACTIONS(3135), + [aux_sym_use_roaming_token1] = ACTIONS(3135), + [aux_sym_user_token1] = ACTIONS(3137), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3135), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3135), + [aux_sym_visual_host_key_token1] = ACTIONS(3135), + [aux_sym_xauth_location_token1] = ACTIONS(3135), }, [475] = { - [ts_builtin_sym_end] = ACTIONS(1338), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1340), - [aux_sym_match_token1] = ACTIONS(1338), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1338), - [aux_sym_address_family_token1] = ACTIONS(1338), - [aux_sym_batch_mode_token1] = ACTIONS(1338), - [aux_sym_bind_address_token1] = ACTIONS(1338), - [aux_sym_bind_interface_token1] = ACTIONS(1338), - [aux_sym_canonical_domains_token1] = ACTIONS(1338), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1338), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1338), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1338), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1338), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1338), - [aux_sym_certificate_file_token1] = ACTIONS(1338), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1338), - [aux_sym_channel_timeout_token1] = ACTIONS(1338), - [aux_sym_check_host_ip_token1] = ACTIONS(1338), - [aux_sym_ciphers_token1] = ACTIONS(1338), - [aux_sym_cipher_token1] = ACTIONS(1340), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1338), - [aux_sym_compression_token1] = ACTIONS(1338), - [aux_sym_connection_attempts_token1] = ACTIONS(1338), - [aux_sym_connect_timeout_token1] = ACTIONS(1338), - [aux_sym_control_master_token1] = ACTIONS(1338), - [aux_sym_control_path_token1] = ACTIONS(1338), - [aux_sym_control_persist_token1] = ACTIONS(1338), - [aux_sym_dynamic_forward_token1] = ACTIONS(1338), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1338), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1338), - [aux_sym_escape_char_token1] = ACTIONS(1338), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1338), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1338), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1338), - [aux_sym_forward_agent_token1] = ACTIONS(1338), - [aux_sym_forward_x11_token1] = ACTIONS(1340), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1338), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1338), - [aux_sym_gateway_ports_token1] = ACTIONS(1338), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1338), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1338), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1338), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1338), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1338), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1338), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1338), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1338), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1338), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1338), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1338), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1338), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1338), - [aux_sym_host_key_alias_token1] = ACTIONS(1338), - [aux_sym_hostname_token1] = ACTIONS(1338), - [aux_sym_identities_only_token1] = ACTIONS(1338), - [aux_sym_identity_agent_token1] = ACTIONS(1338), - [aux_sym_identity_file_token1] = ACTIONS(1338), - [aux_sym_ignore_unknown_token1] = ACTIONS(1338), - [aux_sym_include_token1] = ACTIONS(1338), - [aux_sym_ip_qos_token1] = ACTIONS(1338), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1338), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1338), - [aux_sym_kex_algorithms_token1] = ACTIONS(1338), - [aux_sym_known_hosts_command_token1] = ACTIONS(1338), - [aux_sym_local_command_token1] = ACTIONS(1338), - [aux_sym_local_forward_token1] = ACTIONS(1338), - [aux_sym_log_level_token1] = ACTIONS(1338), - [aux_sym_log_verbose_token1] = ACTIONS(1338), - [aux_sym_macs_token1] = ACTIONS(1338), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1338), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1338), - [aux_sym_password_authentication_token1] = ACTIONS(1338), - [aux_sym_permit_local_command_token1] = ACTIONS(1338), - [aux_sym_permit_remote_open_token1] = ACTIONS(1338), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1338), - [aux_sym_port_token1] = ACTIONS(1338), - [aux_sym_preferred_authentications_token1] = ACTIONS(1338), - [aux_sym_protocol_token1] = ACTIONS(1338), - [aux_sym_proxy_command_token1] = ACTIONS(1338), - [aux_sym_proxy_jump_token1] = ACTIONS(1338), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1338), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1338), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1338), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1338), - [aux_sym_rekey_limit_token1] = ACTIONS(1338), - [aux_sym_remote_command_token1] = ACTIONS(1338), - [aux_sym_remote_forward_token1] = ACTIONS(1338), - [aux_sym_request_tty_token1] = ACTIONS(1338), - [aux_sym_required_rsa_size_token1] = ACTIONS(1338), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1338), - [aux_sym_security_key_provider_token1] = ACTIONS(1338), - [aux_sym_send_env_token1] = ACTIONS(1338), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1338), - [aux_sym_server_alive_interval_token1] = ACTIONS(1338), - [aux_sym_session_type_token1] = ACTIONS(1338), - [aux_sym_set_env_token1] = ACTIONS(1338), - [aux_sym_stdin_null_token1] = ACTIONS(1338), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1338), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1338), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1338), - [aux_sym_syslog_facility_token1] = ACTIONS(1338), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1338), - [aux_sym_keep_alive_token1] = ACTIONS(1338), - [aux_sym_tag_token1] = ACTIONS(1338), - [aux_sym_tunnel_token1] = ACTIONS(1340), - [aux_sym_tunnel_device_token1] = ACTIONS(1338), - [aux_sym_update_host_keys_token1] = ACTIONS(1338), - [aux_sym_use_keychain_token1] = ACTIONS(1338), - [aux_sym_use_roaming_token1] = ACTIONS(1338), - [aux_sym_user_token1] = ACTIONS(1340), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1338), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1338), - [aux_sym_visual_host_key_token1] = ACTIONS(1338), - [aux_sym_xauth_location_token1] = ACTIONS(1338), + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3141), + [aux_sym_match_token1] = ACTIONS(3139), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3139), + [aux_sym_address_family_token1] = ACTIONS(3139), + [aux_sym_batch_mode_token1] = ACTIONS(3139), + [aux_sym_bind_address_token1] = ACTIONS(3139), + [aux_sym_bind_interface_token1] = ACTIONS(3139), + [aux_sym_canonical_domains_token1] = ACTIONS(3139), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3139), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3139), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3139), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3139), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3139), + [aux_sym_certificate_file_token1] = ACTIONS(3139), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3139), + [aux_sym_channel_timeout_token1] = ACTIONS(3139), + [aux_sym_check_host_ip_token1] = ACTIONS(3139), + [aux_sym_ciphers_token1] = ACTIONS(3139), + [aux_sym_cipher_token1] = ACTIONS(3141), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3139), + [aux_sym_compression_token1] = ACTIONS(3139), + [aux_sym_connection_attempts_token1] = ACTIONS(3139), + [aux_sym_connect_timeout_token1] = ACTIONS(3139), + [aux_sym_control_master_token1] = ACTIONS(3139), + [aux_sym_control_path_token1] = ACTIONS(3139), + [aux_sym_control_persist_token1] = ACTIONS(3139), + [aux_sym_dynamic_forward_token1] = ACTIONS(3139), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3139), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3139), + [aux_sym_escape_char_token1] = ACTIONS(3139), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3139), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3139), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3139), + [aux_sym_forward_agent_token1] = ACTIONS(3139), + [aux_sym_forward_x11_token1] = ACTIONS(3141), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3139), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3139), + [aux_sym_gateway_ports_token1] = ACTIONS(3139), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3139), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3139), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3139), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3139), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3139), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3139), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3139), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3139), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3139), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3139), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3139), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3139), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3139), + [aux_sym_host_key_alias_token1] = ACTIONS(3139), + [aux_sym_hostname_token1] = ACTIONS(3139), + [aux_sym_identities_only_token1] = ACTIONS(3139), + [aux_sym_identity_agent_token1] = ACTIONS(3139), + [aux_sym_identity_file_token1] = ACTIONS(3139), + [aux_sym_ignore_unknown_token1] = ACTIONS(3139), + [aux_sym_include_token1] = ACTIONS(3139), + [aux_sym_ip_qos_token1] = ACTIONS(3139), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3139), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3139), + [aux_sym_kex_algorithms_token1] = ACTIONS(3139), + [aux_sym_known_hosts_command_token1] = ACTIONS(3139), + [aux_sym_local_command_token1] = ACTIONS(3139), + [aux_sym_local_forward_token1] = ACTIONS(3139), + [aux_sym_log_level_token1] = ACTIONS(3139), + [aux_sym_log_verbose_token1] = ACTIONS(3139), + [aux_sym_macs_token1] = ACTIONS(3139), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3139), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3139), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3139), + [aux_sym_password_authentication_token1] = ACTIONS(3139), + [aux_sym_permit_local_command_token1] = ACTIONS(3139), + [aux_sym_permit_remote_open_token1] = ACTIONS(3139), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3139), + [aux_sym_port_token1] = ACTIONS(3139), + [aux_sym_preferred_authentications_token1] = ACTIONS(3139), + [aux_sym_protocol_token1] = ACTIONS(3139), + [aux_sym_proxy_command_token1] = ACTIONS(3139), + [aux_sym_proxy_jump_token1] = ACTIONS(3139), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3139), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3139), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3139), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3139), + [aux_sym_rekey_limit_token1] = ACTIONS(3139), + [aux_sym_remote_command_token1] = ACTIONS(3139), + [aux_sym_remote_forward_token1] = ACTIONS(3139), + [aux_sym_request_tty_token1] = ACTIONS(3139), + [aux_sym_required_rsa_size_token1] = ACTIONS(3139), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3139), + [aux_sym_security_key_provider_token1] = ACTIONS(3139), + [aux_sym_send_env_token1] = ACTIONS(3139), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3139), + [aux_sym_server_alive_interval_token1] = ACTIONS(3139), + [aux_sym_session_type_token1] = ACTIONS(3139), + [aux_sym_set_env_token1] = ACTIONS(3139), + [aux_sym_stdin_null_token1] = ACTIONS(3139), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3139), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3139), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3139), + [aux_sym_syslog_facility_token1] = ACTIONS(3139), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3139), + [aux_sym_keep_alive_token1] = ACTIONS(3139), + [aux_sym_tag_token1] = ACTIONS(3139), + [aux_sym_tunnel_token1] = ACTIONS(3141), + [aux_sym_tunnel_device_token1] = ACTIONS(3139), + [aux_sym_update_host_keys_token1] = ACTIONS(3139), + [aux_sym_use_keychain_token1] = ACTIONS(3139), + [aux_sym_use_roaming_token1] = ACTIONS(3139), + [aux_sym_user_token1] = ACTIONS(3141), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3139), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3139), + [aux_sym_visual_host_key_token1] = ACTIONS(3139), + [aux_sym_xauth_location_token1] = ACTIONS(3139), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1344), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1346), - [aux_sym_match_token1] = ACTIONS(1344), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1344), - [aux_sym_address_family_token1] = ACTIONS(1344), - [aux_sym_batch_mode_token1] = ACTIONS(1344), - [aux_sym_bind_address_token1] = ACTIONS(1344), - [aux_sym_bind_interface_token1] = ACTIONS(1344), - [aux_sym_canonical_domains_token1] = ACTIONS(1344), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1344), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1344), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1344), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1344), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1344), - [aux_sym_certificate_file_token1] = ACTIONS(1344), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1344), - [aux_sym_channel_timeout_token1] = ACTIONS(1344), - [aux_sym_check_host_ip_token1] = ACTIONS(1344), - [aux_sym_ciphers_token1] = ACTIONS(1344), - [aux_sym_cipher_token1] = ACTIONS(1346), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1344), - [aux_sym_compression_token1] = ACTIONS(1344), - [aux_sym_connection_attempts_token1] = ACTIONS(1344), - [aux_sym_connect_timeout_token1] = ACTIONS(1344), - [aux_sym_control_master_token1] = ACTIONS(1344), - [aux_sym_control_path_token1] = ACTIONS(1344), - [aux_sym_control_persist_token1] = ACTIONS(1344), - [aux_sym_dynamic_forward_token1] = ACTIONS(1344), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1344), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1344), - [aux_sym_escape_char_token1] = ACTIONS(1344), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1344), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1344), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1344), - [aux_sym_forward_agent_token1] = ACTIONS(1344), - [aux_sym_forward_x11_token1] = ACTIONS(1346), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1344), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1344), - [aux_sym_gateway_ports_token1] = ACTIONS(1344), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1344), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1344), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1344), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1344), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1344), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1344), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1344), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1344), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1344), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1344), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1344), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1344), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1344), - [aux_sym_host_key_alias_token1] = ACTIONS(1344), - [aux_sym_hostname_token1] = ACTIONS(1344), - [aux_sym_identities_only_token1] = ACTIONS(1344), - [aux_sym_identity_agent_token1] = ACTIONS(1344), - [aux_sym_identity_file_token1] = ACTIONS(1344), - [aux_sym_ignore_unknown_token1] = ACTIONS(1344), - [aux_sym_include_token1] = ACTIONS(1344), - [aux_sym_ip_qos_token1] = ACTIONS(1344), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1344), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1344), - [aux_sym_kex_algorithms_token1] = ACTIONS(1344), - [aux_sym_known_hosts_command_token1] = ACTIONS(1344), - [aux_sym_local_command_token1] = ACTIONS(1344), - [aux_sym_local_forward_token1] = ACTIONS(1344), - [aux_sym_log_level_token1] = ACTIONS(1344), - [aux_sym_log_verbose_token1] = ACTIONS(1344), - [aux_sym_macs_token1] = ACTIONS(1344), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1344), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1344), - [aux_sym_password_authentication_token1] = ACTIONS(1344), - [aux_sym_permit_local_command_token1] = ACTIONS(1344), - [aux_sym_permit_remote_open_token1] = ACTIONS(1344), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1344), - [aux_sym_port_token1] = ACTIONS(1344), - [aux_sym_preferred_authentications_token1] = ACTIONS(1344), - [aux_sym_protocol_token1] = ACTIONS(1344), - [aux_sym_proxy_command_token1] = ACTIONS(1344), - [aux_sym_proxy_jump_token1] = ACTIONS(1344), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1344), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1344), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1344), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1344), - [aux_sym_rekey_limit_token1] = ACTIONS(1344), - [aux_sym_remote_command_token1] = ACTIONS(1344), - [aux_sym_remote_forward_token1] = ACTIONS(1344), - [aux_sym_request_tty_token1] = ACTIONS(1344), - [aux_sym_required_rsa_size_token1] = ACTIONS(1344), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1344), - [aux_sym_security_key_provider_token1] = ACTIONS(1344), - [aux_sym_send_env_token1] = ACTIONS(1344), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1344), - [aux_sym_server_alive_interval_token1] = ACTIONS(1344), - [aux_sym_session_type_token1] = ACTIONS(1344), - [aux_sym_set_env_token1] = ACTIONS(1344), - [aux_sym_stdin_null_token1] = ACTIONS(1344), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1344), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1344), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1344), - [aux_sym_syslog_facility_token1] = ACTIONS(1344), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1344), - [aux_sym_keep_alive_token1] = ACTIONS(1344), - [aux_sym_tag_token1] = ACTIONS(1344), - [aux_sym_tunnel_token1] = ACTIONS(1346), - [aux_sym_tunnel_device_token1] = ACTIONS(1344), - [aux_sym_update_host_keys_token1] = ACTIONS(1344), - [aux_sym_use_keychain_token1] = ACTIONS(1344), - [aux_sym_use_roaming_token1] = ACTIONS(1344), - [aux_sym_user_token1] = ACTIONS(1346), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1344), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1344), - [aux_sym_visual_host_key_token1] = ACTIONS(1344), - [aux_sym_xauth_location_token1] = ACTIONS(1344), + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3145), + [aux_sym_match_token1] = ACTIONS(3143), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3143), + [aux_sym_address_family_token1] = ACTIONS(3143), + [aux_sym_batch_mode_token1] = ACTIONS(3143), + [aux_sym_bind_address_token1] = ACTIONS(3143), + [aux_sym_bind_interface_token1] = ACTIONS(3143), + [aux_sym_canonical_domains_token1] = ACTIONS(3143), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3143), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3143), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3143), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3143), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3143), + [aux_sym_certificate_file_token1] = ACTIONS(3143), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3143), + [aux_sym_channel_timeout_token1] = ACTIONS(3143), + [aux_sym_check_host_ip_token1] = ACTIONS(3143), + [aux_sym_ciphers_token1] = ACTIONS(3143), + [aux_sym_cipher_token1] = ACTIONS(3145), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3143), + [aux_sym_compression_token1] = ACTIONS(3143), + [aux_sym_connection_attempts_token1] = ACTIONS(3143), + [aux_sym_connect_timeout_token1] = ACTIONS(3143), + [aux_sym_control_master_token1] = ACTIONS(3143), + [aux_sym_control_path_token1] = ACTIONS(3143), + [aux_sym_control_persist_token1] = ACTIONS(3143), + [aux_sym_dynamic_forward_token1] = ACTIONS(3143), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3143), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3143), + [aux_sym_escape_char_token1] = ACTIONS(3143), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3143), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3143), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3143), + [aux_sym_forward_agent_token1] = ACTIONS(3143), + [aux_sym_forward_x11_token1] = ACTIONS(3145), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3143), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3143), + [aux_sym_gateway_ports_token1] = ACTIONS(3143), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3143), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3143), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3143), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3143), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3143), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3143), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3143), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3143), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3143), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3143), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3143), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3143), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3143), + [aux_sym_host_key_alias_token1] = ACTIONS(3143), + [aux_sym_hostname_token1] = ACTIONS(3143), + [aux_sym_identities_only_token1] = ACTIONS(3143), + [aux_sym_identity_agent_token1] = ACTIONS(3143), + [aux_sym_identity_file_token1] = ACTIONS(3143), + [aux_sym_ignore_unknown_token1] = ACTIONS(3143), + [aux_sym_include_token1] = ACTIONS(3143), + [aux_sym_ip_qos_token1] = ACTIONS(3143), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3143), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3143), + [aux_sym_kex_algorithms_token1] = ACTIONS(3143), + [aux_sym_known_hosts_command_token1] = ACTIONS(3143), + [aux_sym_local_command_token1] = ACTIONS(3143), + [aux_sym_local_forward_token1] = ACTIONS(3143), + [aux_sym_log_level_token1] = ACTIONS(3143), + [aux_sym_log_verbose_token1] = ACTIONS(3143), + [aux_sym_macs_token1] = ACTIONS(3143), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3143), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3143), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3143), + [aux_sym_password_authentication_token1] = ACTIONS(3143), + [aux_sym_permit_local_command_token1] = ACTIONS(3143), + [aux_sym_permit_remote_open_token1] = ACTIONS(3143), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3143), + [aux_sym_port_token1] = ACTIONS(3143), + [aux_sym_preferred_authentications_token1] = ACTIONS(3143), + [aux_sym_protocol_token1] = ACTIONS(3143), + [aux_sym_proxy_command_token1] = ACTIONS(3143), + [aux_sym_proxy_jump_token1] = ACTIONS(3143), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3143), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3143), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3143), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3143), + [aux_sym_rekey_limit_token1] = ACTIONS(3143), + [aux_sym_remote_command_token1] = ACTIONS(3143), + [aux_sym_remote_forward_token1] = ACTIONS(3143), + [aux_sym_request_tty_token1] = ACTIONS(3143), + [aux_sym_required_rsa_size_token1] = ACTIONS(3143), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3143), + [aux_sym_security_key_provider_token1] = ACTIONS(3143), + [aux_sym_send_env_token1] = ACTIONS(3143), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3143), + [aux_sym_server_alive_interval_token1] = ACTIONS(3143), + [aux_sym_session_type_token1] = ACTIONS(3143), + [aux_sym_set_env_token1] = ACTIONS(3143), + [aux_sym_stdin_null_token1] = ACTIONS(3143), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3143), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3143), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3143), + [aux_sym_syslog_facility_token1] = ACTIONS(3143), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3143), + [aux_sym_keep_alive_token1] = ACTIONS(3143), + [aux_sym_tag_token1] = ACTIONS(3143), + [aux_sym_tunnel_token1] = ACTIONS(3145), + [aux_sym_tunnel_device_token1] = ACTIONS(3143), + [aux_sym_update_host_keys_token1] = ACTIONS(3143), + [aux_sym_use_keychain_token1] = ACTIONS(3143), + [aux_sym_use_roaming_token1] = ACTIONS(3143), + [aux_sym_user_token1] = ACTIONS(3145), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3143), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3143), + [aux_sym_visual_host_key_token1] = ACTIONS(3143), + [aux_sym_xauth_location_token1] = ACTIONS(3143), }, [477] = { - [ts_builtin_sym_end] = ACTIONS(1350), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1352), - [aux_sym_match_token1] = ACTIONS(1350), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1350), - [aux_sym_address_family_token1] = ACTIONS(1350), - [aux_sym_batch_mode_token1] = ACTIONS(1350), - [aux_sym_bind_address_token1] = ACTIONS(1350), - [aux_sym_bind_interface_token1] = ACTIONS(1350), - [aux_sym_canonical_domains_token1] = ACTIONS(1350), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1350), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1350), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1350), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1350), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1350), - [aux_sym_certificate_file_token1] = ACTIONS(1350), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1350), - [aux_sym_channel_timeout_token1] = ACTIONS(1350), - [aux_sym_check_host_ip_token1] = ACTIONS(1350), - [aux_sym_ciphers_token1] = ACTIONS(1350), - [aux_sym_cipher_token1] = ACTIONS(1352), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1350), - [aux_sym_compression_token1] = ACTIONS(1350), - [aux_sym_connection_attempts_token1] = ACTIONS(1350), - [aux_sym_connect_timeout_token1] = ACTIONS(1350), - [aux_sym_control_master_token1] = ACTIONS(1350), - [aux_sym_control_path_token1] = ACTIONS(1350), - [aux_sym_control_persist_token1] = ACTIONS(1350), - [aux_sym_dynamic_forward_token1] = ACTIONS(1350), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1350), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1350), - [aux_sym_escape_char_token1] = ACTIONS(1350), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1350), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1350), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1350), - [aux_sym_forward_agent_token1] = ACTIONS(1350), - [aux_sym_forward_x11_token1] = ACTIONS(1352), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1350), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1350), - [aux_sym_gateway_ports_token1] = ACTIONS(1350), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1350), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1350), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1350), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1350), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1350), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1350), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1350), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1350), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1350), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1350), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1350), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1350), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1350), - [aux_sym_host_key_alias_token1] = ACTIONS(1350), - [aux_sym_hostname_token1] = ACTIONS(1350), - [aux_sym_identities_only_token1] = ACTIONS(1350), - [aux_sym_identity_agent_token1] = ACTIONS(1350), - [aux_sym_identity_file_token1] = ACTIONS(1350), - [aux_sym_ignore_unknown_token1] = ACTIONS(1350), - [aux_sym_include_token1] = ACTIONS(1350), - [aux_sym_ip_qos_token1] = ACTIONS(1350), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1350), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1350), - [aux_sym_kex_algorithms_token1] = ACTIONS(1350), - [aux_sym_known_hosts_command_token1] = ACTIONS(1350), - [aux_sym_local_command_token1] = ACTIONS(1350), - [aux_sym_local_forward_token1] = ACTIONS(1350), - [aux_sym_log_level_token1] = ACTIONS(1350), - [aux_sym_log_verbose_token1] = ACTIONS(1350), - [aux_sym_macs_token1] = ACTIONS(1350), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1350), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1350), - [aux_sym_password_authentication_token1] = ACTIONS(1350), - [aux_sym_permit_local_command_token1] = ACTIONS(1350), - [aux_sym_permit_remote_open_token1] = ACTIONS(1350), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1350), - [aux_sym_port_token1] = ACTIONS(1350), - [aux_sym_preferred_authentications_token1] = ACTIONS(1350), - [aux_sym_protocol_token1] = ACTIONS(1350), - [aux_sym_proxy_command_token1] = ACTIONS(1350), - [aux_sym_proxy_jump_token1] = ACTIONS(1350), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1350), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1350), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1350), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1350), - [aux_sym_rekey_limit_token1] = ACTIONS(1350), - [aux_sym_remote_command_token1] = ACTIONS(1350), - [aux_sym_remote_forward_token1] = ACTIONS(1350), - [aux_sym_request_tty_token1] = ACTIONS(1350), - [aux_sym_required_rsa_size_token1] = ACTIONS(1350), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1350), - [aux_sym_security_key_provider_token1] = ACTIONS(1350), - [aux_sym_send_env_token1] = ACTIONS(1350), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1350), - [aux_sym_server_alive_interval_token1] = ACTIONS(1350), - [aux_sym_session_type_token1] = ACTIONS(1350), - [aux_sym_set_env_token1] = ACTIONS(1350), - [aux_sym_stdin_null_token1] = ACTIONS(1350), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1350), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1350), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1350), - [aux_sym_syslog_facility_token1] = ACTIONS(1350), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1350), - [aux_sym_keep_alive_token1] = ACTIONS(1350), - [aux_sym_tag_token1] = ACTIONS(1350), - [aux_sym_tunnel_token1] = ACTIONS(1352), - [aux_sym_tunnel_device_token1] = ACTIONS(1350), - [aux_sym_update_host_keys_token1] = ACTIONS(1350), - [aux_sym_use_keychain_token1] = ACTIONS(1350), - [aux_sym_use_roaming_token1] = ACTIONS(1350), - [aux_sym_user_token1] = ACTIONS(1352), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1350), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1350), - [aux_sym_visual_host_key_token1] = ACTIONS(1350), - [aux_sym_xauth_location_token1] = ACTIONS(1350), + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3149), + [aux_sym_match_token1] = ACTIONS(3147), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3147), + [aux_sym_address_family_token1] = ACTIONS(3147), + [aux_sym_batch_mode_token1] = ACTIONS(3147), + [aux_sym_bind_address_token1] = ACTIONS(3147), + [aux_sym_bind_interface_token1] = ACTIONS(3147), + [aux_sym_canonical_domains_token1] = ACTIONS(3147), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3147), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3147), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3147), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3147), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3147), + [aux_sym_certificate_file_token1] = ACTIONS(3147), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3147), + [aux_sym_channel_timeout_token1] = ACTIONS(3147), + [aux_sym_check_host_ip_token1] = ACTIONS(3147), + [aux_sym_ciphers_token1] = ACTIONS(3147), + [aux_sym_cipher_token1] = ACTIONS(3149), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3147), + [aux_sym_compression_token1] = ACTIONS(3147), + [aux_sym_connection_attempts_token1] = ACTIONS(3147), + [aux_sym_connect_timeout_token1] = ACTIONS(3147), + [aux_sym_control_master_token1] = ACTIONS(3147), + [aux_sym_control_path_token1] = ACTIONS(3147), + [aux_sym_control_persist_token1] = ACTIONS(3147), + [aux_sym_dynamic_forward_token1] = ACTIONS(3147), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3147), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3147), + [aux_sym_escape_char_token1] = ACTIONS(3147), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3147), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3147), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3147), + [aux_sym_forward_agent_token1] = ACTIONS(3147), + [aux_sym_forward_x11_token1] = ACTIONS(3149), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3147), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3147), + [aux_sym_gateway_ports_token1] = ACTIONS(3147), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3147), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3147), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3147), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3147), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3147), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3147), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3147), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3147), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3147), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3147), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3147), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3147), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3147), + [aux_sym_host_key_alias_token1] = ACTIONS(3147), + [aux_sym_hostname_token1] = ACTIONS(3147), + [aux_sym_identities_only_token1] = ACTIONS(3147), + [aux_sym_identity_agent_token1] = ACTIONS(3147), + [aux_sym_identity_file_token1] = ACTIONS(3147), + [aux_sym_ignore_unknown_token1] = ACTIONS(3147), + [aux_sym_include_token1] = ACTIONS(3147), + [aux_sym_ip_qos_token1] = ACTIONS(3147), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3147), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3147), + [aux_sym_kex_algorithms_token1] = ACTIONS(3147), + [aux_sym_known_hosts_command_token1] = ACTIONS(3147), + [aux_sym_local_command_token1] = ACTIONS(3147), + [aux_sym_local_forward_token1] = ACTIONS(3147), + [aux_sym_log_level_token1] = ACTIONS(3147), + [aux_sym_log_verbose_token1] = ACTIONS(3147), + [aux_sym_macs_token1] = ACTIONS(3147), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3147), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3147), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3147), + [aux_sym_password_authentication_token1] = ACTIONS(3147), + [aux_sym_permit_local_command_token1] = ACTIONS(3147), + [aux_sym_permit_remote_open_token1] = ACTIONS(3147), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3147), + [aux_sym_port_token1] = ACTIONS(3147), + [aux_sym_preferred_authentications_token1] = ACTIONS(3147), + [aux_sym_protocol_token1] = ACTIONS(3147), + [aux_sym_proxy_command_token1] = ACTIONS(3147), + [aux_sym_proxy_jump_token1] = ACTIONS(3147), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3147), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3147), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3147), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3147), + [aux_sym_rekey_limit_token1] = ACTIONS(3147), + [aux_sym_remote_command_token1] = ACTIONS(3147), + [aux_sym_remote_forward_token1] = ACTIONS(3147), + [aux_sym_request_tty_token1] = ACTIONS(3147), + [aux_sym_required_rsa_size_token1] = ACTIONS(3147), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3147), + [aux_sym_security_key_provider_token1] = ACTIONS(3147), + [aux_sym_send_env_token1] = ACTIONS(3147), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3147), + [aux_sym_server_alive_interval_token1] = ACTIONS(3147), + [aux_sym_session_type_token1] = ACTIONS(3147), + [aux_sym_set_env_token1] = ACTIONS(3147), + [aux_sym_stdin_null_token1] = ACTIONS(3147), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3147), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3147), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3147), + [aux_sym_syslog_facility_token1] = ACTIONS(3147), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3147), + [aux_sym_keep_alive_token1] = ACTIONS(3147), + [aux_sym_tag_token1] = ACTIONS(3147), + [aux_sym_tunnel_token1] = ACTIONS(3149), + [aux_sym_tunnel_device_token1] = ACTIONS(3147), + [aux_sym_update_host_keys_token1] = ACTIONS(3147), + [aux_sym_use_keychain_token1] = ACTIONS(3147), + [aux_sym_use_roaming_token1] = ACTIONS(3147), + [aux_sym_user_token1] = ACTIONS(3149), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3147), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3147), + [aux_sym_visual_host_key_token1] = ACTIONS(3147), + [aux_sym_xauth_location_token1] = ACTIONS(3147), }, [478] = { - [ts_builtin_sym_end] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1358), - [aux_sym_match_token1] = ACTIONS(1356), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1356), - [aux_sym_address_family_token1] = ACTIONS(1356), - [aux_sym_batch_mode_token1] = ACTIONS(1356), - [aux_sym_bind_address_token1] = ACTIONS(1356), - [aux_sym_bind_interface_token1] = ACTIONS(1356), - [aux_sym_canonical_domains_token1] = ACTIONS(1356), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1356), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1356), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1356), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1356), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1356), - [aux_sym_certificate_file_token1] = ACTIONS(1356), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1356), - [aux_sym_channel_timeout_token1] = ACTIONS(1356), - [aux_sym_check_host_ip_token1] = ACTIONS(1356), - [aux_sym_ciphers_token1] = ACTIONS(1356), - [aux_sym_cipher_token1] = ACTIONS(1358), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1356), - [aux_sym_compression_token1] = ACTIONS(1356), - [aux_sym_connection_attempts_token1] = ACTIONS(1356), - [aux_sym_connect_timeout_token1] = ACTIONS(1356), - [aux_sym_control_master_token1] = ACTIONS(1356), - [aux_sym_control_path_token1] = ACTIONS(1356), - [aux_sym_control_persist_token1] = ACTIONS(1356), - [aux_sym_dynamic_forward_token1] = ACTIONS(1356), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1356), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1356), - [aux_sym_escape_char_token1] = ACTIONS(1356), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1356), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1356), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1356), - [aux_sym_forward_agent_token1] = ACTIONS(1356), - [aux_sym_forward_x11_token1] = ACTIONS(1358), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1356), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1356), - [aux_sym_gateway_ports_token1] = ACTIONS(1356), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1356), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1356), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1356), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1356), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1356), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1356), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1356), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1356), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1356), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1356), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1356), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1356), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1356), - [aux_sym_host_key_alias_token1] = ACTIONS(1356), - [aux_sym_hostname_token1] = ACTIONS(1356), - [aux_sym_identities_only_token1] = ACTIONS(1356), - [aux_sym_identity_agent_token1] = ACTIONS(1356), - [aux_sym_identity_file_token1] = ACTIONS(1356), - [aux_sym_ignore_unknown_token1] = ACTIONS(1356), - [aux_sym_include_token1] = ACTIONS(1356), - [aux_sym_ip_qos_token1] = ACTIONS(1356), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1356), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1356), - [aux_sym_kex_algorithms_token1] = ACTIONS(1356), - [aux_sym_known_hosts_command_token1] = ACTIONS(1356), - [aux_sym_local_command_token1] = ACTIONS(1356), - [aux_sym_local_forward_token1] = ACTIONS(1356), - [aux_sym_log_level_token1] = ACTIONS(1356), - [aux_sym_log_verbose_token1] = ACTIONS(1356), - [aux_sym_macs_token1] = ACTIONS(1356), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1356), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1356), - [aux_sym_password_authentication_token1] = ACTIONS(1356), - [aux_sym_permit_local_command_token1] = ACTIONS(1356), - [aux_sym_permit_remote_open_token1] = ACTIONS(1356), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1356), - [aux_sym_port_token1] = ACTIONS(1356), - [aux_sym_preferred_authentications_token1] = ACTIONS(1356), - [aux_sym_protocol_token1] = ACTIONS(1356), - [aux_sym_proxy_command_token1] = ACTIONS(1356), - [aux_sym_proxy_jump_token1] = ACTIONS(1356), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1356), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1356), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1356), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1356), - [aux_sym_rekey_limit_token1] = ACTIONS(1356), - [aux_sym_remote_command_token1] = ACTIONS(1356), - [aux_sym_remote_forward_token1] = ACTIONS(1356), - [aux_sym_request_tty_token1] = ACTIONS(1356), - [aux_sym_required_rsa_size_token1] = ACTIONS(1356), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1356), - [aux_sym_security_key_provider_token1] = ACTIONS(1356), - [aux_sym_send_env_token1] = ACTIONS(1356), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1356), - [aux_sym_server_alive_interval_token1] = ACTIONS(1356), - [aux_sym_session_type_token1] = ACTIONS(1356), - [aux_sym_set_env_token1] = ACTIONS(1356), - [aux_sym_stdin_null_token1] = ACTIONS(1356), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1356), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1356), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1356), - [aux_sym_syslog_facility_token1] = ACTIONS(1356), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1356), - [aux_sym_keep_alive_token1] = ACTIONS(1356), - [aux_sym_tag_token1] = ACTIONS(1356), - [aux_sym_tunnel_token1] = ACTIONS(1358), - [aux_sym_tunnel_device_token1] = ACTIONS(1356), - [aux_sym_update_host_keys_token1] = ACTIONS(1356), - [aux_sym_use_keychain_token1] = ACTIONS(1356), - [aux_sym_use_roaming_token1] = ACTIONS(1356), - [aux_sym_user_token1] = ACTIONS(1358), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1356), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1356), - [aux_sym_visual_host_key_token1] = ACTIONS(1356), - [aux_sym_xauth_location_token1] = ACTIONS(1356), + [ts_builtin_sym_end] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3153), + [aux_sym_match_token1] = ACTIONS(3151), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3151), + [aux_sym_address_family_token1] = ACTIONS(3151), + [aux_sym_batch_mode_token1] = ACTIONS(3151), + [aux_sym_bind_address_token1] = ACTIONS(3151), + [aux_sym_bind_interface_token1] = ACTIONS(3151), + [aux_sym_canonical_domains_token1] = ACTIONS(3151), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3151), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3151), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3151), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3151), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3151), + [aux_sym_certificate_file_token1] = ACTIONS(3151), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3151), + [aux_sym_channel_timeout_token1] = ACTIONS(3151), + [aux_sym_check_host_ip_token1] = ACTIONS(3151), + [aux_sym_ciphers_token1] = ACTIONS(3151), + [aux_sym_cipher_token1] = ACTIONS(3153), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3151), + [aux_sym_compression_token1] = ACTIONS(3151), + [aux_sym_connection_attempts_token1] = ACTIONS(3151), + [aux_sym_connect_timeout_token1] = ACTIONS(3151), + [aux_sym_control_master_token1] = ACTIONS(3151), + [aux_sym_control_path_token1] = ACTIONS(3151), + [aux_sym_control_persist_token1] = ACTIONS(3151), + [aux_sym_dynamic_forward_token1] = ACTIONS(3151), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3151), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3151), + [aux_sym_escape_char_token1] = ACTIONS(3151), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3151), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3151), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3151), + [aux_sym_forward_agent_token1] = ACTIONS(3151), + [aux_sym_forward_x11_token1] = ACTIONS(3153), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3151), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3151), + [aux_sym_gateway_ports_token1] = ACTIONS(3151), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3151), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3151), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3151), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3151), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3151), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3151), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3151), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3151), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3151), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3151), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3151), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3151), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3151), + [aux_sym_host_key_alias_token1] = ACTIONS(3151), + [aux_sym_hostname_token1] = ACTIONS(3151), + [aux_sym_identities_only_token1] = ACTIONS(3151), + [aux_sym_identity_agent_token1] = ACTIONS(3151), + [aux_sym_identity_file_token1] = ACTIONS(3151), + [aux_sym_ignore_unknown_token1] = ACTIONS(3151), + [aux_sym_include_token1] = ACTIONS(3151), + [aux_sym_ip_qos_token1] = ACTIONS(3151), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3151), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3151), + [aux_sym_kex_algorithms_token1] = ACTIONS(3151), + [aux_sym_known_hosts_command_token1] = ACTIONS(3151), + [aux_sym_local_command_token1] = ACTIONS(3151), + [aux_sym_local_forward_token1] = ACTIONS(3151), + [aux_sym_log_level_token1] = ACTIONS(3151), + [aux_sym_log_verbose_token1] = ACTIONS(3151), + [aux_sym_macs_token1] = ACTIONS(3151), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3151), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3151), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3151), + [aux_sym_password_authentication_token1] = ACTIONS(3151), + [aux_sym_permit_local_command_token1] = ACTIONS(3151), + [aux_sym_permit_remote_open_token1] = ACTIONS(3151), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3151), + [aux_sym_port_token1] = ACTIONS(3151), + [aux_sym_preferred_authentications_token1] = ACTIONS(3151), + [aux_sym_protocol_token1] = ACTIONS(3151), + [aux_sym_proxy_command_token1] = ACTIONS(3151), + [aux_sym_proxy_jump_token1] = ACTIONS(3151), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3151), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3151), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3151), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3151), + [aux_sym_rekey_limit_token1] = ACTIONS(3151), + [aux_sym_remote_command_token1] = ACTIONS(3151), + [aux_sym_remote_forward_token1] = ACTIONS(3151), + [aux_sym_request_tty_token1] = ACTIONS(3151), + [aux_sym_required_rsa_size_token1] = ACTIONS(3151), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3151), + [aux_sym_security_key_provider_token1] = ACTIONS(3151), + [aux_sym_send_env_token1] = ACTIONS(3151), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3151), + [aux_sym_server_alive_interval_token1] = ACTIONS(3151), + [aux_sym_session_type_token1] = ACTIONS(3151), + [aux_sym_set_env_token1] = ACTIONS(3151), + [aux_sym_stdin_null_token1] = ACTIONS(3151), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3151), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3151), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3151), + [aux_sym_syslog_facility_token1] = ACTIONS(3151), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3151), + [aux_sym_keep_alive_token1] = ACTIONS(3151), + [aux_sym_tag_token1] = ACTIONS(3151), + [aux_sym_tunnel_token1] = ACTIONS(3153), + [aux_sym_tunnel_device_token1] = ACTIONS(3151), + [aux_sym_update_host_keys_token1] = ACTIONS(3151), + [aux_sym_use_keychain_token1] = ACTIONS(3151), + [aux_sym_use_roaming_token1] = ACTIONS(3151), + [aux_sym_user_token1] = ACTIONS(3153), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3151), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3151), + [aux_sym_visual_host_key_token1] = ACTIONS(3151), + [aux_sym_xauth_location_token1] = ACTIONS(3151), }, [479] = { - [ts_builtin_sym_end] = ACTIONS(3132), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3134), - [aux_sym_match_token1] = ACTIONS(3132), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3132), - [aux_sym_address_family_token1] = ACTIONS(3132), - [aux_sym_batch_mode_token1] = ACTIONS(3132), - [aux_sym_bind_address_token1] = ACTIONS(3132), - [aux_sym_bind_interface_token1] = ACTIONS(3132), - [aux_sym_canonical_domains_token1] = ACTIONS(3132), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3132), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3132), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3132), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3132), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3132), - [aux_sym_certificate_file_token1] = ACTIONS(3132), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3132), - [aux_sym_channel_timeout_token1] = ACTIONS(3132), - [aux_sym_check_host_ip_token1] = ACTIONS(3132), - [aux_sym_ciphers_token1] = ACTIONS(3132), - [aux_sym_cipher_token1] = ACTIONS(3134), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3132), - [aux_sym_compression_token1] = ACTIONS(3132), - [aux_sym_connection_attempts_token1] = ACTIONS(3132), - [aux_sym_connect_timeout_token1] = ACTIONS(3132), - [aux_sym_control_master_token1] = ACTIONS(3132), - [aux_sym_control_path_token1] = ACTIONS(3132), - [aux_sym_control_persist_token1] = ACTIONS(3132), - [aux_sym_dynamic_forward_token1] = ACTIONS(3132), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3132), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3132), - [aux_sym_escape_char_token1] = ACTIONS(3132), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3132), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3132), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3132), - [aux_sym_forward_agent_token1] = ACTIONS(3132), - [aux_sym_forward_x11_token1] = ACTIONS(3134), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3132), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3132), - [aux_sym_gateway_ports_token1] = ACTIONS(3132), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3132), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3132), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3132), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3132), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3132), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3132), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3132), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3132), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3132), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3132), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3132), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3132), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3132), - [aux_sym_host_key_alias_token1] = ACTIONS(3132), - [aux_sym_hostname_token1] = ACTIONS(3132), - [aux_sym_identities_only_token1] = ACTIONS(3132), - [aux_sym_identity_agent_token1] = ACTIONS(3132), - [aux_sym_identity_file_token1] = ACTIONS(3132), - [aux_sym_ignore_unknown_token1] = ACTIONS(3132), - [aux_sym_include_token1] = ACTIONS(3132), - [aux_sym_ip_qos_token1] = ACTIONS(3132), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3132), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3132), - [aux_sym_kex_algorithms_token1] = ACTIONS(3132), - [aux_sym_known_hosts_command_token1] = ACTIONS(3132), - [aux_sym_local_command_token1] = ACTIONS(3132), - [aux_sym_local_forward_token1] = ACTIONS(3132), - [aux_sym_log_level_token1] = ACTIONS(3132), - [aux_sym_log_verbose_token1] = ACTIONS(3132), - [aux_sym_macs_token1] = ACTIONS(3132), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3132), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3132), - [aux_sym_password_authentication_token1] = ACTIONS(3132), - [aux_sym_permit_local_command_token1] = ACTIONS(3132), - [aux_sym_permit_remote_open_token1] = ACTIONS(3132), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3132), - [aux_sym_port_token1] = ACTIONS(3132), - [aux_sym_preferred_authentications_token1] = ACTIONS(3132), - [aux_sym_protocol_token1] = ACTIONS(3132), - [aux_sym_proxy_command_token1] = ACTIONS(3132), - [aux_sym_proxy_jump_token1] = ACTIONS(3132), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3132), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3132), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3132), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3132), - [aux_sym_rekey_limit_token1] = ACTIONS(3132), - [aux_sym_remote_command_token1] = ACTIONS(3132), - [aux_sym_remote_forward_token1] = ACTIONS(3132), - [aux_sym_request_tty_token1] = ACTIONS(3132), - [aux_sym_required_rsa_size_token1] = ACTIONS(3132), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3132), - [aux_sym_security_key_provider_token1] = ACTIONS(3132), - [aux_sym_send_env_token1] = ACTIONS(3132), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3132), - [aux_sym_server_alive_interval_token1] = ACTIONS(3132), - [aux_sym_session_type_token1] = ACTIONS(3132), - [aux_sym_set_env_token1] = ACTIONS(3132), - [aux_sym_stdin_null_token1] = ACTIONS(3132), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3132), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3132), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3132), - [aux_sym_syslog_facility_token1] = ACTIONS(3132), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3132), - [aux_sym_keep_alive_token1] = ACTIONS(3132), - [aux_sym_tag_token1] = ACTIONS(3132), - [aux_sym_tunnel_token1] = ACTIONS(3134), - [aux_sym_tunnel_device_token1] = ACTIONS(3132), - [aux_sym_update_host_keys_token1] = ACTIONS(3132), - [aux_sym_use_keychain_token1] = ACTIONS(3132), - [aux_sym_use_roaming_token1] = ACTIONS(3132), - [aux_sym_user_token1] = ACTIONS(3134), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3132), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3132), - [aux_sym_visual_host_key_token1] = ACTIONS(3132), - [aux_sym_xauth_location_token1] = ACTIONS(3132), + [ts_builtin_sym_end] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3157), + [aux_sym_match_token1] = ACTIONS(3155), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3155), + [aux_sym_address_family_token1] = ACTIONS(3155), + [aux_sym_batch_mode_token1] = ACTIONS(3155), + [aux_sym_bind_address_token1] = ACTIONS(3155), + [aux_sym_bind_interface_token1] = ACTIONS(3155), + [aux_sym_canonical_domains_token1] = ACTIONS(3155), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3155), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3155), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3155), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3155), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3155), + [aux_sym_certificate_file_token1] = ACTIONS(3155), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3155), + [aux_sym_channel_timeout_token1] = ACTIONS(3155), + [aux_sym_check_host_ip_token1] = ACTIONS(3155), + [aux_sym_ciphers_token1] = ACTIONS(3155), + [aux_sym_cipher_token1] = ACTIONS(3157), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3155), + [aux_sym_compression_token1] = ACTIONS(3155), + [aux_sym_connection_attempts_token1] = ACTIONS(3155), + [aux_sym_connect_timeout_token1] = ACTIONS(3155), + [aux_sym_control_master_token1] = ACTIONS(3155), + [aux_sym_control_path_token1] = ACTIONS(3155), + [aux_sym_control_persist_token1] = ACTIONS(3155), + [aux_sym_dynamic_forward_token1] = ACTIONS(3155), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3155), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3155), + [aux_sym_escape_char_token1] = ACTIONS(3155), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3155), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3155), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3155), + [aux_sym_forward_agent_token1] = ACTIONS(3155), + [aux_sym_forward_x11_token1] = ACTIONS(3157), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3155), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3155), + [aux_sym_gateway_ports_token1] = ACTIONS(3155), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3155), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3155), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3155), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3155), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3155), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3155), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3155), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3155), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3155), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3155), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3155), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3155), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3155), + [aux_sym_host_key_alias_token1] = ACTIONS(3155), + [aux_sym_hostname_token1] = ACTIONS(3155), + [aux_sym_identities_only_token1] = ACTIONS(3155), + [aux_sym_identity_agent_token1] = ACTIONS(3155), + [aux_sym_identity_file_token1] = ACTIONS(3155), + [aux_sym_ignore_unknown_token1] = ACTIONS(3155), + [aux_sym_include_token1] = ACTIONS(3155), + [aux_sym_ip_qos_token1] = ACTIONS(3155), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3155), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3155), + [aux_sym_kex_algorithms_token1] = ACTIONS(3155), + [aux_sym_known_hosts_command_token1] = ACTIONS(3155), + [aux_sym_local_command_token1] = ACTIONS(3155), + [aux_sym_local_forward_token1] = ACTIONS(3155), + [aux_sym_log_level_token1] = ACTIONS(3155), + [aux_sym_log_verbose_token1] = ACTIONS(3155), + [aux_sym_macs_token1] = ACTIONS(3155), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3155), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3155), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3155), + [aux_sym_password_authentication_token1] = ACTIONS(3155), + [aux_sym_permit_local_command_token1] = ACTIONS(3155), + [aux_sym_permit_remote_open_token1] = ACTIONS(3155), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3155), + [aux_sym_port_token1] = ACTIONS(3155), + [aux_sym_preferred_authentications_token1] = ACTIONS(3155), + [aux_sym_protocol_token1] = ACTIONS(3155), + [aux_sym_proxy_command_token1] = ACTIONS(3155), + [aux_sym_proxy_jump_token1] = ACTIONS(3155), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3155), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3155), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3155), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3155), + [aux_sym_rekey_limit_token1] = ACTIONS(3155), + [aux_sym_remote_command_token1] = ACTIONS(3155), + [aux_sym_remote_forward_token1] = ACTIONS(3155), + [aux_sym_request_tty_token1] = ACTIONS(3155), + [aux_sym_required_rsa_size_token1] = ACTIONS(3155), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3155), + [aux_sym_security_key_provider_token1] = ACTIONS(3155), + [aux_sym_send_env_token1] = ACTIONS(3155), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3155), + [aux_sym_server_alive_interval_token1] = ACTIONS(3155), + [aux_sym_session_type_token1] = ACTIONS(3155), + [aux_sym_set_env_token1] = ACTIONS(3155), + [aux_sym_stdin_null_token1] = ACTIONS(3155), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3155), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3155), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3155), + [aux_sym_syslog_facility_token1] = ACTIONS(3155), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3155), + [aux_sym_keep_alive_token1] = ACTIONS(3155), + [aux_sym_tag_token1] = ACTIONS(3155), + [aux_sym_tunnel_token1] = ACTIONS(3157), + [aux_sym_tunnel_device_token1] = ACTIONS(3155), + [aux_sym_update_host_keys_token1] = ACTIONS(3155), + [aux_sym_use_keychain_token1] = ACTIONS(3155), + [aux_sym_use_roaming_token1] = ACTIONS(3155), + [aux_sym_user_token1] = ACTIONS(3157), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3155), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3155), + [aux_sym_visual_host_key_token1] = ACTIONS(3155), + [aux_sym_xauth_location_token1] = ACTIONS(3155), }, [480] = { - [ts_builtin_sym_end] = ACTIONS(3136), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3138), - [aux_sym_match_token1] = ACTIONS(3136), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3136), - [aux_sym_address_family_token1] = ACTIONS(3136), - [aux_sym_batch_mode_token1] = ACTIONS(3136), - [aux_sym_bind_address_token1] = ACTIONS(3136), - [aux_sym_bind_interface_token1] = ACTIONS(3136), - [aux_sym_canonical_domains_token1] = ACTIONS(3136), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3136), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3136), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3136), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3136), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3136), - [aux_sym_certificate_file_token1] = ACTIONS(3136), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3136), - [aux_sym_channel_timeout_token1] = ACTIONS(3136), - [aux_sym_check_host_ip_token1] = ACTIONS(3136), - [aux_sym_ciphers_token1] = ACTIONS(3136), - [aux_sym_cipher_token1] = ACTIONS(3138), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3136), - [aux_sym_compression_token1] = ACTIONS(3136), - [aux_sym_connection_attempts_token1] = ACTIONS(3136), - [aux_sym_connect_timeout_token1] = ACTIONS(3136), - [aux_sym_control_master_token1] = ACTIONS(3136), - [aux_sym_control_path_token1] = ACTIONS(3136), - [aux_sym_control_persist_token1] = ACTIONS(3136), - [aux_sym_dynamic_forward_token1] = ACTIONS(3136), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3136), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3136), - [aux_sym_escape_char_token1] = ACTIONS(3136), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3136), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3136), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3136), - [aux_sym_forward_agent_token1] = ACTIONS(3136), - [aux_sym_forward_x11_token1] = ACTIONS(3138), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3136), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3136), - [aux_sym_gateway_ports_token1] = ACTIONS(3136), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3136), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3136), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3136), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3136), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3136), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3136), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3136), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3136), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3136), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3136), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3136), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3136), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3136), - [aux_sym_host_key_alias_token1] = ACTIONS(3136), - [aux_sym_hostname_token1] = ACTIONS(3136), - [aux_sym_identities_only_token1] = ACTIONS(3136), - [aux_sym_identity_agent_token1] = ACTIONS(3136), - [aux_sym_identity_file_token1] = ACTIONS(3136), - [aux_sym_ignore_unknown_token1] = ACTIONS(3136), - [aux_sym_include_token1] = ACTIONS(3136), - [aux_sym_ip_qos_token1] = ACTIONS(3136), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3136), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3136), - [aux_sym_kex_algorithms_token1] = ACTIONS(3136), - [aux_sym_known_hosts_command_token1] = ACTIONS(3136), - [aux_sym_local_command_token1] = ACTIONS(3136), - [aux_sym_local_forward_token1] = ACTIONS(3136), - [aux_sym_log_level_token1] = ACTIONS(3136), - [aux_sym_log_verbose_token1] = ACTIONS(3136), - [aux_sym_macs_token1] = ACTIONS(3136), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3136), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3136), - [aux_sym_password_authentication_token1] = ACTIONS(3136), - [aux_sym_permit_local_command_token1] = ACTIONS(3136), - [aux_sym_permit_remote_open_token1] = ACTIONS(3136), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3136), - [aux_sym_port_token1] = ACTIONS(3136), - [aux_sym_preferred_authentications_token1] = ACTIONS(3136), - [aux_sym_protocol_token1] = ACTIONS(3136), - [aux_sym_proxy_command_token1] = ACTIONS(3136), - [aux_sym_proxy_jump_token1] = ACTIONS(3136), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3136), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3136), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3136), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3136), - [aux_sym_rekey_limit_token1] = ACTIONS(3136), - [aux_sym_remote_command_token1] = ACTIONS(3136), - [aux_sym_remote_forward_token1] = ACTIONS(3136), - [aux_sym_request_tty_token1] = ACTIONS(3136), - [aux_sym_required_rsa_size_token1] = ACTIONS(3136), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3136), - [aux_sym_security_key_provider_token1] = ACTIONS(3136), - [aux_sym_send_env_token1] = ACTIONS(3136), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3136), - [aux_sym_server_alive_interval_token1] = ACTIONS(3136), - [aux_sym_session_type_token1] = ACTIONS(3136), - [aux_sym_set_env_token1] = ACTIONS(3136), - [aux_sym_stdin_null_token1] = ACTIONS(3136), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3136), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3136), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3136), - [aux_sym_syslog_facility_token1] = ACTIONS(3136), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3136), - [aux_sym_keep_alive_token1] = ACTIONS(3136), - [aux_sym_tag_token1] = ACTIONS(3136), - [aux_sym_tunnel_token1] = ACTIONS(3138), - [aux_sym_tunnel_device_token1] = ACTIONS(3136), - [aux_sym_update_host_keys_token1] = ACTIONS(3136), - [aux_sym_use_keychain_token1] = ACTIONS(3136), - [aux_sym_use_roaming_token1] = ACTIONS(3136), - [aux_sym_user_token1] = ACTIONS(3138), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3136), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3136), - [aux_sym_visual_host_key_token1] = ACTIONS(3136), - [aux_sym_xauth_location_token1] = ACTIONS(3136), + [ts_builtin_sym_end] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3161), + [aux_sym_match_token1] = ACTIONS(3159), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3159), + [aux_sym_address_family_token1] = ACTIONS(3159), + [aux_sym_batch_mode_token1] = ACTIONS(3159), + [aux_sym_bind_address_token1] = ACTIONS(3159), + [aux_sym_bind_interface_token1] = ACTIONS(3159), + [aux_sym_canonical_domains_token1] = ACTIONS(3159), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3159), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3159), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3159), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3159), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3159), + [aux_sym_certificate_file_token1] = ACTIONS(3159), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3159), + [aux_sym_channel_timeout_token1] = ACTIONS(3159), + [aux_sym_check_host_ip_token1] = ACTIONS(3159), + [aux_sym_ciphers_token1] = ACTIONS(3159), + [aux_sym_cipher_token1] = ACTIONS(3161), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3159), + [aux_sym_compression_token1] = ACTIONS(3159), + [aux_sym_connection_attempts_token1] = ACTIONS(3159), + [aux_sym_connect_timeout_token1] = ACTIONS(3159), + [aux_sym_control_master_token1] = ACTIONS(3159), + [aux_sym_control_path_token1] = ACTIONS(3159), + [aux_sym_control_persist_token1] = ACTIONS(3159), + [aux_sym_dynamic_forward_token1] = ACTIONS(3159), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3159), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3159), + [aux_sym_escape_char_token1] = ACTIONS(3159), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3159), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3159), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3159), + [aux_sym_forward_agent_token1] = ACTIONS(3159), + [aux_sym_forward_x11_token1] = ACTIONS(3161), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3159), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3159), + [aux_sym_gateway_ports_token1] = ACTIONS(3159), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3159), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3159), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3159), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3159), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3159), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3159), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3159), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3159), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3159), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3159), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3159), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3159), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3159), + [aux_sym_host_key_alias_token1] = ACTIONS(3159), + [aux_sym_hostname_token1] = ACTIONS(3159), + [aux_sym_identities_only_token1] = ACTIONS(3159), + [aux_sym_identity_agent_token1] = ACTIONS(3159), + [aux_sym_identity_file_token1] = ACTIONS(3159), + [aux_sym_ignore_unknown_token1] = ACTIONS(3159), + [aux_sym_include_token1] = ACTIONS(3159), + [aux_sym_ip_qos_token1] = ACTIONS(3159), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3159), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3159), + [aux_sym_kex_algorithms_token1] = ACTIONS(3159), + [aux_sym_known_hosts_command_token1] = ACTIONS(3159), + [aux_sym_local_command_token1] = ACTIONS(3159), + [aux_sym_local_forward_token1] = ACTIONS(3159), + [aux_sym_log_level_token1] = ACTIONS(3159), + [aux_sym_log_verbose_token1] = ACTIONS(3159), + [aux_sym_macs_token1] = ACTIONS(3159), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3159), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3159), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3159), + [aux_sym_password_authentication_token1] = ACTIONS(3159), + [aux_sym_permit_local_command_token1] = ACTIONS(3159), + [aux_sym_permit_remote_open_token1] = ACTIONS(3159), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3159), + [aux_sym_port_token1] = ACTIONS(3159), + [aux_sym_preferred_authentications_token1] = ACTIONS(3159), + [aux_sym_protocol_token1] = ACTIONS(3159), + [aux_sym_proxy_command_token1] = ACTIONS(3159), + [aux_sym_proxy_jump_token1] = ACTIONS(3159), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3159), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3159), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3159), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3159), + [aux_sym_rekey_limit_token1] = ACTIONS(3159), + [aux_sym_remote_command_token1] = ACTIONS(3159), + [aux_sym_remote_forward_token1] = ACTIONS(3159), + [aux_sym_request_tty_token1] = ACTIONS(3159), + [aux_sym_required_rsa_size_token1] = ACTIONS(3159), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3159), + [aux_sym_security_key_provider_token1] = ACTIONS(3159), + [aux_sym_send_env_token1] = ACTIONS(3159), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3159), + [aux_sym_server_alive_interval_token1] = ACTIONS(3159), + [aux_sym_session_type_token1] = ACTIONS(3159), + [aux_sym_set_env_token1] = ACTIONS(3159), + [aux_sym_stdin_null_token1] = ACTIONS(3159), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3159), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3159), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3159), + [aux_sym_syslog_facility_token1] = ACTIONS(3159), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3159), + [aux_sym_keep_alive_token1] = ACTIONS(3159), + [aux_sym_tag_token1] = ACTIONS(3159), + [aux_sym_tunnel_token1] = ACTIONS(3161), + [aux_sym_tunnel_device_token1] = ACTIONS(3159), + [aux_sym_update_host_keys_token1] = ACTIONS(3159), + [aux_sym_use_keychain_token1] = ACTIONS(3159), + [aux_sym_use_roaming_token1] = ACTIONS(3159), + [aux_sym_user_token1] = ACTIONS(3161), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3159), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3159), + [aux_sym_visual_host_key_token1] = ACTIONS(3159), + [aux_sym_xauth_location_token1] = ACTIONS(3159), }, [481] = { - [ts_builtin_sym_end] = ACTIONS(3140), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3142), - [aux_sym_match_token1] = ACTIONS(3140), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3140), - [aux_sym_address_family_token1] = ACTIONS(3140), - [aux_sym_batch_mode_token1] = ACTIONS(3140), - [aux_sym_bind_address_token1] = ACTIONS(3140), - [aux_sym_bind_interface_token1] = ACTIONS(3140), - [aux_sym_canonical_domains_token1] = ACTIONS(3140), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3140), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3140), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3140), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3140), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3140), - [aux_sym_certificate_file_token1] = ACTIONS(3140), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3140), - [aux_sym_channel_timeout_token1] = ACTIONS(3140), - [aux_sym_check_host_ip_token1] = ACTIONS(3140), - [aux_sym_ciphers_token1] = ACTIONS(3140), - [aux_sym_cipher_token1] = ACTIONS(3142), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3140), - [aux_sym_compression_token1] = ACTIONS(3140), - [aux_sym_connection_attempts_token1] = ACTIONS(3140), - [aux_sym_connect_timeout_token1] = ACTIONS(3140), - [aux_sym_control_master_token1] = ACTIONS(3140), - [aux_sym_control_path_token1] = ACTIONS(3140), - [aux_sym_control_persist_token1] = ACTIONS(3140), - [aux_sym_dynamic_forward_token1] = ACTIONS(3140), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3140), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3140), - [aux_sym_escape_char_token1] = ACTIONS(3140), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3140), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3140), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3140), - [aux_sym_forward_agent_token1] = ACTIONS(3140), - [aux_sym_forward_x11_token1] = ACTIONS(3142), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3140), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3140), - [aux_sym_gateway_ports_token1] = ACTIONS(3140), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3140), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3140), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3140), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3140), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3140), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3140), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3140), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3140), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3140), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3140), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3140), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3140), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3140), - [aux_sym_host_key_alias_token1] = ACTIONS(3140), - [aux_sym_hostname_token1] = ACTIONS(3140), - [aux_sym_identities_only_token1] = ACTIONS(3140), - [aux_sym_identity_agent_token1] = ACTIONS(3140), - [aux_sym_identity_file_token1] = ACTIONS(3140), - [aux_sym_ignore_unknown_token1] = ACTIONS(3140), - [aux_sym_include_token1] = ACTIONS(3140), - [aux_sym_ip_qos_token1] = ACTIONS(3140), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3140), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3140), - [aux_sym_kex_algorithms_token1] = ACTIONS(3140), - [aux_sym_known_hosts_command_token1] = ACTIONS(3140), - [aux_sym_local_command_token1] = ACTIONS(3140), - [aux_sym_local_forward_token1] = ACTIONS(3140), - [aux_sym_log_level_token1] = ACTIONS(3140), - [aux_sym_log_verbose_token1] = ACTIONS(3140), - [aux_sym_macs_token1] = ACTIONS(3140), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3140), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3140), - [aux_sym_password_authentication_token1] = ACTIONS(3140), - [aux_sym_permit_local_command_token1] = ACTIONS(3140), - [aux_sym_permit_remote_open_token1] = ACTIONS(3140), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3140), - [aux_sym_port_token1] = ACTIONS(3140), - [aux_sym_preferred_authentications_token1] = ACTIONS(3140), - [aux_sym_protocol_token1] = ACTIONS(3140), - [aux_sym_proxy_command_token1] = ACTIONS(3140), - [aux_sym_proxy_jump_token1] = ACTIONS(3140), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3140), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3140), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3140), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3140), - [aux_sym_rekey_limit_token1] = ACTIONS(3140), - [aux_sym_remote_command_token1] = ACTIONS(3140), - [aux_sym_remote_forward_token1] = ACTIONS(3140), - [aux_sym_request_tty_token1] = ACTIONS(3140), - [aux_sym_required_rsa_size_token1] = ACTIONS(3140), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3140), - [aux_sym_security_key_provider_token1] = ACTIONS(3140), - [aux_sym_send_env_token1] = ACTIONS(3140), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3140), - [aux_sym_server_alive_interval_token1] = ACTIONS(3140), - [aux_sym_session_type_token1] = ACTIONS(3140), - [aux_sym_set_env_token1] = ACTIONS(3140), - [aux_sym_stdin_null_token1] = ACTIONS(3140), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3140), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3140), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3140), - [aux_sym_syslog_facility_token1] = ACTIONS(3140), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3140), - [aux_sym_keep_alive_token1] = ACTIONS(3140), - [aux_sym_tag_token1] = ACTIONS(3140), - [aux_sym_tunnel_token1] = ACTIONS(3142), - [aux_sym_tunnel_device_token1] = ACTIONS(3140), - [aux_sym_update_host_keys_token1] = ACTIONS(3140), - [aux_sym_use_keychain_token1] = ACTIONS(3140), - [aux_sym_use_roaming_token1] = ACTIONS(3140), - [aux_sym_user_token1] = ACTIONS(3142), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3140), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3140), - [aux_sym_visual_host_key_token1] = ACTIONS(3140), - [aux_sym_xauth_location_token1] = ACTIONS(3140), + [ts_builtin_sym_end] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3165), + [aux_sym_match_token1] = ACTIONS(3163), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3163), + [aux_sym_address_family_token1] = ACTIONS(3163), + [aux_sym_batch_mode_token1] = ACTIONS(3163), + [aux_sym_bind_address_token1] = ACTIONS(3163), + [aux_sym_bind_interface_token1] = ACTIONS(3163), + [aux_sym_canonical_domains_token1] = ACTIONS(3163), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3163), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3163), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3163), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3163), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3163), + [aux_sym_certificate_file_token1] = ACTIONS(3163), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3163), + [aux_sym_channel_timeout_token1] = ACTIONS(3163), + [aux_sym_check_host_ip_token1] = ACTIONS(3163), + [aux_sym_ciphers_token1] = ACTIONS(3163), + [aux_sym_cipher_token1] = ACTIONS(3165), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3163), + [aux_sym_compression_token1] = ACTIONS(3163), + [aux_sym_connection_attempts_token1] = ACTIONS(3163), + [aux_sym_connect_timeout_token1] = ACTIONS(3163), + [aux_sym_control_master_token1] = ACTIONS(3163), + [aux_sym_control_path_token1] = ACTIONS(3163), + [aux_sym_control_persist_token1] = ACTIONS(3163), + [aux_sym_dynamic_forward_token1] = ACTIONS(3163), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3163), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3163), + [aux_sym_escape_char_token1] = ACTIONS(3163), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3163), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3163), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3163), + [aux_sym_forward_agent_token1] = ACTIONS(3163), + [aux_sym_forward_x11_token1] = ACTIONS(3165), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3163), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3163), + [aux_sym_gateway_ports_token1] = ACTIONS(3163), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3163), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3163), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3163), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3163), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3163), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3163), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3163), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3163), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3163), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3163), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3163), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3163), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3163), + [aux_sym_host_key_alias_token1] = ACTIONS(3163), + [aux_sym_hostname_token1] = ACTIONS(3163), + [aux_sym_identities_only_token1] = ACTIONS(3163), + [aux_sym_identity_agent_token1] = ACTIONS(3163), + [aux_sym_identity_file_token1] = ACTIONS(3163), + [aux_sym_ignore_unknown_token1] = ACTIONS(3163), + [aux_sym_include_token1] = ACTIONS(3163), + [aux_sym_ip_qos_token1] = ACTIONS(3163), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3163), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3163), + [aux_sym_kex_algorithms_token1] = ACTIONS(3163), + [aux_sym_known_hosts_command_token1] = ACTIONS(3163), + [aux_sym_local_command_token1] = ACTIONS(3163), + [aux_sym_local_forward_token1] = ACTIONS(3163), + [aux_sym_log_level_token1] = ACTIONS(3163), + [aux_sym_log_verbose_token1] = ACTIONS(3163), + [aux_sym_macs_token1] = ACTIONS(3163), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3163), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3163), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3163), + [aux_sym_password_authentication_token1] = ACTIONS(3163), + [aux_sym_permit_local_command_token1] = ACTIONS(3163), + [aux_sym_permit_remote_open_token1] = ACTIONS(3163), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3163), + [aux_sym_port_token1] = ACTIONS(3163), + [aux_sym_preferred_authentications_token1] = ACTIONS(3163), + [aux_sym_protocol_token1] = ACTIONS(3163), + [aux_sym_proxy_command_token1] = ACTIONS(3163), + [aux_sym_proxy_jump_token1] = ACTIONS(3163), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3163), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3163), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3163), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3163), + [aux_sym_rekey_limit_token1] = ACTIONS(3163), + [aux_sym_remote_command_token1] = ACTIONS(3163), + [aux_sym_remote_forward_token1] = ACTIONS(3163), + [aux_sym_request_tty_token1] = ACTIONS(3163), + [aux_sym_required_rsa_size_token1] = ACTIONS(3163), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3163), + [aux_sym_security_key_provider_token1] = ACTIONS(3163), + [aux_sym_send_env_token1] = ACTIONS(3163), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3163), + [aux_sym_server_alive_interval_token1] = ACTIONS(3163), + [aux_sym_session_type_token1] = ACTIONS(3163), + [aux_sym_set_env_token1] = ACTIONS(3163), + [aux_sym_stdin_null_token1] = ACTIONS(3163), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3163), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3163), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3163), + [aux_sym_syslog_facility_token1] = ACTIONS(3163), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3163), + [aux_sym_keep_alive_token1] = ACTIONS(3163), + [aux_sym_tag_token1] = ACTIONS(3163), + [aux_sym_tunnel_token1] = ACTIONS(3165), + [aux_sym_tunnel_device_token1] = ACTIONS(3163), + [aux_sym_update_host_keys_token1] = ACTIONS(3163), + [aux_sym_use_keychain_token1] = ACTIONS(3163), + [aux_sym_use_roaming_token1] = ACTIONS(3163), + [aux_sym_user_token1] = ACTIONS(3165), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3163), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3163), + [aux_sym_visual_host_key_token1] = ACTIONS(3163), + [aux_sym_xauth_location_token1] = ACTIONS(3163), }, [482] = { - [ts_builtin_sym_end] = ACTIONS(3144), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3146), - [aux_sym_match_token1] = ACTIONS(3144), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3144), - [aux_sym_address_family_token1] = ACTIONS(3144), - [aux_sym_batch_mode_token1] = ACTIONS(3144), - [aux_sym_bind_address_token1] = ACTIONS(3144), - [aux_sym_bind_interface_token1] = ACTIONS(3144), - [aux_sym_canonical_domains_token1] = ACTIONS(3144), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3144), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3144), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3144), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3144), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3144), - [aux_sym_certificate_file_token1] = ACTIONS(3144), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3144), - [aux_sym_channel_timeout_token1] = ACTIONS(3144), - [aux_sym_check_host_ip_token1] = ACTIONS(3144), - [aux_sym_ciphers_token1] = ACTIONS(3144), - [aux_sym_cipher_token1] = ACTIONS(3146), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3144), - [aux_sym_compression_token1] = ACTIONS(3144), - [aux_sym_connection_attempts_token1] = ACTIONS(3144), - [aux_sym_connect_timeout_token1] = ACTIONS(3144), - [aux_sym_control_master_token1] = ACTIONS(3144), - [aux_sym_control_path_token1] = ACTIONS(3144), - [aux_sym_control_persist_token1] = ACTIONS(3144), - [aux_sym_dynamic_forward_token1] = ACTIONS(3144), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3144), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3144), - [aux_sym_escape_char_token1] = ACTIONS(3144), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3144), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3144), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3144), - [aux_sym_forward_agent_token1] = ACTIONS(3144), - [aux_sym_forward_x11_token1] = ACTIONS(3146), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3144), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3144), - [aux_sym_gateway_ports_token1] = ACTIONS(3144), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3144), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3144), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3144), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3144), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3144), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3144), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3144), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3144), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3144), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3144), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3144), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3144), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3144), - [aux_sym_host_key_alias_token1] = ACTIONS(3144), - [aux_sym_hostname_token1] = ACTIONS(3144), - [aux_sym_identities_only_token1] = ACTIONS(3144), - [aux_sym_identity_agent_token1] = ACTIONS(3144), - [aux_sym_identity_file_token1] = ACTIONS(3144), - [aux_sym_ignore_unknown_token1] = ACTIONS(3144), - [aux_sym_include_token1] = ACTIONS(3144), - [aux_sym_ip_qos_token1] = ACTIONS(3144), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3144), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3144), - [aux_sym_kex_algorithms_token1] = ACTIONS(3144), - [aux_sym_known_hosts_command_token1] = ACTIONS(3144), - [aux_sym_local_command_token1] = ACTIONS(3144), - [aux_sym_local_forward_token1] = ACTIONS(3144), - [aux_sym_log_level_token1] = ACTIONS(3144), - [aux_sym_log_verbose_token1] = ACTIONS(3144), - [aux_sym_macs_token1] = ACTIONS(3144), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3144), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3144), - [aux_sym_password_authentication_token1] = ACTIONS(3144), - [aux_sym_permit_local_command_token1] = ACTIONS(3144), - [aux_sym_permit_remote_open_token1] = ACTIONS(3144), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3144), - [aux_sym_port_token1] = ACTIONS(3144), - [aux_sym_preferred_authentications_token1] = ACTIONS(3144), - [aux_sym_protocol_token1] = ACTIONS(3144), - [aux_sym_proxy_command_token1] = ACTIONS(3144), - [aux_sym_proxy_jump_token1] = ACTIONS(3144), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3144), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3144), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3144), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3144), - [aux_sym_rekey_limit_token1] = ACTIONS(3144), - [aux_sym_remote_command_token1] = ACTIONS(3144), - [aux_sym_remote_forward_token1] = ACTIONS(3144), - [aux_sym_request_tty_token1] = ACTIONS(3144), - [aux_sym_required_rsa_size_token1] = ACTIONS(3144), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3144), - [aux_sym_security_key_provider_token1] = ACTIONS(3144), - [aux_sym_send_env_token1] = ACTIONS(3144), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3144), - [aux_sym_server_alive_interval_token1] = ACTIONS(3144), - [aux_sym_session_type_token1] = ACTIONS(3144), - [aux_sym_set_env_token1] = ACTIONS(3144), - [aux_sym_stdin_null_token1] = ACTIONS(3144), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3144), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3144), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3144), - [aux_sym_syslog_facility_token1] = ACTIONS(3144), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3144), - [aux_sym_keep_alive_token1] = ACTIONS(3144), - [aux_sym_tag_token1] = ACTIONS(3144), - [aux_sym_tunnel_token1] = ACTIONS(3146), - [aux_sym_tunnel_device_token1] = ACTIONS(3144), - [aux_sym_update_host_keys_token1] = ACTIONS(3144), - [aux_sym_use_keychain_token1] = ACTIONS(3144), - [aux_sym_use_roaming_token1] = ACTIONS(3144), - [aux_sym_user_token1] = ACTIONS(3146), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3144), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3144), - [aux_sym_visual_host_key_token1] = ACTIONS(3144), - [aux_sym_xauth_location_token1] = ACTIONS(3144), + [ts_builtin_sym_end] = ACTIONS(869), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(871), + [aux_sym_match_token1] = ACTIONS(869), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(869), + [aux_sym_address_family_token1] = ACTIONS(869), + [aux_sym_batch_mode_token1] = ACTIONS(869), + [aux_sym_bind_address_token1] = ACTIONS(869), + [aux_sym_bind_interface_token1] = ACTIONS(869), + [aux_sym_canonical_domains_token1] = ACTIONS(869), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(869), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(869), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(869), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(869), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(869), + [aux_sym_certificate_file_token1] = ACTIONS(869), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(869), + [aux_sym_channel_timeout_token1] = ACTIONS(869), + [aux_sym_check_host_ip_token1] = ACTIONS(869), + [aux_sym_ciphers_token1] = ACTIONS(869), + [aux_sym_cipher_token1] = ACTIONS(871), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(869), + [aux_sym_compression_token1] = ACTIONS(869), + [aux_sym_connection_attempts_token1] = ACTIONS(869), + [aux_sym_connect_timeout_token1] = ACTIONS(869), + [aux_sym_control_master_token1] = ACTIONS(869), + [aux_sym_control_path_token1] = ACTIONS(869), + [aux_sym_control_persist_token1] = ACTIONS(869), + [aux_sym_dynamic_forward_token1] = ACTIONS(869), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(869), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(869), + [aux_sym_escape_char_token1] = ACTIONS(869), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(869), + [aux_sym_fingerprint_hash_token1] = ACTIONS(869), + [aux_sym_fork_after_authentication_token1] = ACTIONS(869), + [aux_sym_forward_agent_token1] = ACTIONS(869), + [aux_sym_forward_x11_token1] = ACTIONS(871), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(869), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(869), + [aux_sym_gateway_ports_token1] = ACTIONS(869), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(869), + [aux_sym_gssapi_authentication_token1] = ACTIONS(869), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(869), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(869), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(869), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(869), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(869), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(869), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(869), + [aux_sym_hash_known_hosts_token1] = ACTIONS(869), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(869), + [aux_sym_hostbased_authentication_token1] = ACTIONS(869), + [aux_sym_host_key_algorithms_token1] = ACTIONS(869), + [aux_sym_host_key_alias_token1] = ACTIONS(869), + [aux_sym_hostname_token1] = ACTIONS(869), + [aux_sym_identities_only_token1] = ACTIONS(869), + [aux_sym_identity_agent_token1] = ACTIONS(869), + [aux_sym_identity_file_token1] = ACTIONS(869), + [aux_sym_ignore_unknown_token1] = ACTIONS(869), + [aux_sym_include_token1] = ACTIONS(869), + [aux_sym_ip_qos_token1] = ACTIONS(869), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(869), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(869), + [aux_sym_kex_algorithms_token1] = ACTIONS(869), + [aux_sym_known_hosts_command_token1] = ACTIONS(869), + [aux_sym_local_command_token1] = ACTIONS(869), + [aux_sym_local_forward_token1] = ACTIONS(869), + [aux_sym_log_level_token1] = ACTIONS(869), + [aux_sym_log_verbose_token1] = ACTIONS(869), + [aux_sym_macs_token1] = ACTIONS(869), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(869), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(869), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(869), + [aux_sym_password_authentication_token1] = ACTIONS(869), + [aux_sym_permit_local_command_token1] = ACTIONS(869), + [aux_sym_permit_remote_open_token1] = ACTIONS(869), + [aux_sym_pkcs11_provider_token1] = ACTIONS(869), + [aux_sym_port_token1] = ACTIONS(869), + [aux_sym_preferred_authentications_token1] = ACTIONS(869), + [aux_sym_protocol_token1] = ACTIONS(869), + [aux_sym_proxy_command_token1] = ACTIONS(869), + [aux_sym_proxy_jump_token1] = ACTIONS(869), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(869), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(869), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(869), + [aux_sym_pubkey_authentication_token1] = ACTIONS(869), + [aux_sym_rekey_limit_token1] = ACTIONS(869), + [aux_sym_remote_command_token1] = ACTIONS(869), + [aux_sym_remote_forward_token1] = ACTIONS(869), + [aux_sym_request_tty_token1] = ACTIONS(869), + [aux_sym_required_rsa_size_token1] = ACTIONS(869), + [aux_sym_revoked_host_keys_token1] = ACTIONS(869), + [aux_sym_security_key_provider_token1] = ACTIONS(869), + [aux_sym_send_env_token1] = ACTIONS(869), + [aux_sym_server_alive_count_max_token1] = ACTIONS(869), + [aux_sym_server_alive_interval_token1] = ACTIONS(869), + [aux_sym_session_type_token1] = ACTIONS(869), + [aux_sym_set_env_token1] = ACTIONS(869), + [aux_sym_stdin_null_token1] = ACTIONS(869), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(869), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(869), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(869), + [aux_sym_syslog_facility_token1] = ACTIONS(869), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(869), + [aux_sym_keep_alive_token1] = ACTIONS(869), + [aux_sym_tag_token1] = ACTIONS(869), + [aux_sym_tunnel_token1] = ACTIONS(871), + [aux_sym_tunnel_device_token1] = ACTIONS(869), + [aux_sym_update_host_keys_token1] = ACTIONS(869), + [aux_sym_use_keychain_token1] = ACTIONS(869), + [aux_sym_use_roaming_token1] = ACTIONS(869), + [aux_sym_user_token1] = ACTIONS(871), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(869), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(869), + [aux_sym_visual_host_key_token1] = ACTIONS(869), + [aux_sym_xauth_location_token1] = ACTIONS(869), }, [483] = { - [ts_builtin_sym_end] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3150), - [aux_sym_match_token1] = ACTIONS(3148), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3148), - [aux_sym_address_family_token1] = ACTIONS(3148), - [aux_sym_batch_mode_token1] = ACTIONS(3148), - [aux_sym_bind_address_token1] = ACTIONS(3148), - [aux_sym_bind_interface_token1] = ACTIONS(3148), - [aux_sym_canonical_domains_token1] = ACTIONS(3148), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3148), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3148), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3148), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3148), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3148), - [aux_sym_certificate_file_token1] = ACTIONS(3148), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3148), - [aux_sym_channel_timeout_token1] = ACTIONS(3148), - [aux_sym_check_host_ip_token1] = ACTIONS(3148), - [aux_sym_ciphers_token1] = ACTIONS(3148), - [aux_sym_cipher_token1] = ACTIONS(3150), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3148), - [aux_sym_compression_token1] = ACTIONS(3148), - [aux_sym_connection_attempts_token1] = ACTIONS(3148), - [aux_sym_connect_timeout_token1] = ACTIONS(3148), - [aux_sym_control_master_token1] = ACTIONS(3148), - [aux_sym_control_path_token1] = ACTIONS(3148), - [aux_sym_control_persist_token1] = ACTIONS(3148), - [aux_sym_dynamic_forward_token1] = ACTIONS(3148), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3148), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3148), - [aux_sym_escape_char_token1] = ACTIONS(3148), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3148), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3148), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3148), - [aux_sym_forward_agent_token1] = ACTIONS(3148), - [aux_sym_forward_x11_token1] = ACTIONS(3150), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3148), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3148), - [aux_sym_gateway_ports_token1] = ACTIONS(3148), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3148), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3148), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3148), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3148), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3148), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3148), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3148), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3148), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3148), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3148), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3148), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3148), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3148), - [aux_sym_host_key_alias_token1] = ACTIONS(3148), - [aux_sym_hostname_token1] = ACTIONS(3148), - [aux_sym_identities_only_token1] = ACTIONS(3148), - [aux_sym_identity_agent_token1] = ACTIONS(3148), - [aux_sym_identity_file_token1] = ACTIONS(3148), - [aux_sym_ignore_unknown_token1] = ACTIONS(3148), - [aux_sym_include_token1] = ACTIONS(3148), - [aux_sym_ip_qos_token1] = ACTIONS(3148), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3148), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3148), - [aux_sym_kex_algorithms_token1] = ACTIONS(3148), - [aux_sym_known_hosts_command_token1] = ACTIONS(3148), - [aux_sym_local_command_token1] = ACTIONS(3148), - [aux_sym_local_forward_token1] = ACTIONS(3148), - [aux_sym_log_level_token1] = ACTIONS(3148), - [aux_sym_log_verbose_token1] = ACTIONS(3148), - [aux_sym_macs_token1] = ACTIONS(3148), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3148), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3148), - [aux_sym_password_authentication_token1] = ACTIONS(3148), - [aux_sym_permit_local_command_token1] = ACTIONS(3148), - [aux_sym_permit_remote_open_token1] = ACTIONS(3148), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3148), - [aux_sym_port_token1] = ACTIONS(3148), - [aux_sym_preferred_authentications_token1] = ACTIONS(3148), - [aux_sym_protocol_token1] = ACTIONS(3148), - [aux_sym_proxy_command_token1] = ACTIONS(3148), - [aux_sym_proxy_jump_token1] = ACTIONS(3148), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3148), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3148), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3148), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3148), - [aux_sym_rekey_limit_token1] = ACTIONS(3148), - [aux_sym_remote_command_token1] = ACTIONS(3148), - [aux_sym_remote_forward_token1] = ACTIONS(3148), - [aux_sym_request_tty_token1] = ACTIONS(3148), - [aux_sym_required_rsa_size_token1] = ACTIONS(3148), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3148), - [aux_sym_security_key_provider_token1] = ACTIONS(3148), - [aux_sym_send_env_token1] = ACTIONS(3148), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3148), - [aux_sym_server_alive_interval_token1] = ACTIONS(3148), - [aux_sym_session_type_token1] = ACTIONS(3148), - [aux_sym_set_env_token1] = ACTIONS(3148), - [aux_sym_stdin_null_token1] = ACTIONS(3148), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3148), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3148), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3148), - [aux_sym_syslog_facility_token1] = ACTIONS(3148), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3148), - [aux_sym_keep_alive_token1] = ACTIONS(3148), - [aux_sym_tag_token1] = ACTIONS(3148), - [aux_sym_tunnel_token1] = ACTIONS(3150), - [aux_sym_tunnel_device_token1] = ACTIONS(3148), - [aux_sym_update_host_keys_token1] = ACTIONS(3148), - [aux_sym_use_keychain_token1] = ACTIONS(3148), - [aux_sym_use_roaming_token1] = ACTIONS(3148), - [aux_sym_user_token1] = ACTIONS(3150), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3148), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3148), - [aux_sym_visual_host_key_token1] = ACTIONS(3148), - [aux_sym_xauth_location_token1] = ACTIONS(3148), + [ts_builtin_sym_end] = ACTIONS(1583), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1585), + [aux_sym_match_token1] = ACTIONS(1583), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1583), + [aux_sym_address_family_token1] = ACTIONS(1583), + [aux_sym_batch_mode_token1] = ACTIONS(1583), + [aux_sym_bind_address_token1] = ACTIONS(1583), + [aux_sym_bind_interface_token1] = ACTIONS(1583), + [aux_sym_canonical_domains_token1] = ACTIONS(1583), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1583), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1583), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1583), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1583), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1583), + [aux_sym_certificate_file_token1] = ACTIONS(1583), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1583), + [aux_sym_channel_timeout_token1] = ACTIONS(1583), + [aux_sym_check_host_ip_token1] = ACTIONS(1583), + [aux_sym_ciphers_token1] = ACTIONS(1583), + [aux_sym_cipher_token1] = ACTIONS(1585), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1583), + [aux_sym_compression_token1] = ACTIONS(1583), + [aux_sym_connection_attempts_token1] = ACTIONS(1583), + [aux_sym_connect_timeout_token1] = ACTIONS(1583), + [aux_sym_control_master_token1] = ACTIONS(1583), + [aux_sym_control_path_token1] = ACTIONS(1583), + [aux_sym_control_persist_token1] = ACTIONS(1583), + [aux_sym_dynamic_forward_token1] = ACTIONS(1583), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1583), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1583), + [aux_sym_escape_char_token1] = ACTIONS(1583), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1583), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1583), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1583), + [aux_sym_forward_agent_token1] = ACTIONS(1583), + [aux_sym_forward_x11_token1] = ACTIONS(1585), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1583), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1583), + [aux_sym_gateway_ports_token1] = ACTIONS(1583), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1583), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1583), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1583), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1583), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1583), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1583), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1583), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1583), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1583), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1583), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1583), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1583), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1583), + [aux_sym_host_key_alias_token1] = ACTIONS(1583), + [aux_sym_hostname_token1] = ACTIONS(1583), + [aux_sym_identities_only_token1] = ACTIONS(1583), + [aux_sym_identity_agent_token1] = ACTIONS(1583), + [aux_sym_identity_file_token1] = ACTIONS(1583), + [aux_sym_ignore_unknown_token1] = ACTIONS(1583), + [aux_sym_include_token1] = ACTIONS(1583), + [aux_sym_ip_qos_token1] = ACTIONS(1583), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1583), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1583), + [aux_sym_kex_algorithms_token1] = ACTIONS(1583), + [aux_sym_known_hosts_command_token1] = ACTIONS(1583), + [aux_sym_local_command_token1] = ACTIONS(1583), + [aux_sym_local_forward_token1] = ACTIONS(1583), + [aux_sym_log_level_token1] = ACTIONS(1583), + [aux_sym_log_verbose_token1] = ACTIONS(1583), + [aux_sym_macs_token1] = ACTIONS(1583), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1583), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1583), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1583), + [aux_sym_password_authentication_token1] = ACTIONS(1583), + [aux_sym_permit_local_command_token1] = ACTIONS(1583), + [aux_sym_permit_remote_open_token1] = ACTIONS(1583), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1583), + [aux_sym_port_token1] = ACTIONS(1583), + [aux_sym_preferred_authentications_token1] = ACTIONS(1583), + [aux_sym_protocol_token1] = ACTIONS(1583), + [aux_sym_proxy_command_token1] = ACTIONS(1583), + [aux_sym_proxy_jump_token1] = ACTIONS(1583), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1583), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1583), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1583), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1583), + [aux_sym_rekey_limit_token1] = ACTIONS(1583), + [aux_sym_remote_command_token1] = ACTIONS(1583), + [aux_sym_remote_forward_token1] = ACTIONS(1583), + [aux_sym_request_tty_token1] = ACTIONS(1583), + [aux_sym_required_rsa_size_token1] = ACTIONS(1583), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1583), + [aux_sym_security_key_provider_token1] = ACTIONS(1583), + [aux_sym_send_env_token1] = ACTIONS(1583), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1583), + [aux_sym_server_alive_interval_token1] = ACTIONS(1583), + [aux_sym_session_type_token1] = ACTIONS(1583), + [aux_sym_set_env_token1] = ACTIONS(1583), + [aux_sym_stdin_null_token1] = ACTIONS(1583), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1583), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1583), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1583), + [aux_sym_syslog_facility_token1] = ACTIONS(1583), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1583), + [aux_sym_keep_alive_token1] = ACTIONS(1583), + [aux_sym_tag_token1] = ACTIONS(1583), + [aux_sym_tunnel_token1] = ACTIONS(1585), + [aux_sym_tunnel_device_token1] = ACTIONS(1583), + [aux_sym_update_host_keys_token1] = ACTIONS(1583), + [aux_sym_use_keychain_token1] = ACTIONS(1583), + [aux_sym_use_roaming_token1] = ACTIONS(1583), + [aux_sym_user_token1] = ACTIONS(1585), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1583), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1583), + [aux_sym_visual_host_key_token1] = ACTIONS(1583), + [aux_sym_xauth_location_token1] = ACTIONS(1583), }, [484] = { - [ts_builtin_sym_end] = ACTIONS(3152), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3154), - [aux_sym_match_token1] = ACTIONS(3152), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3152), - [aux_sym_address_family_token1] = ACTIONS(3152), - [aux_sym_batch_mode_token1] = ACTIONS(3152), - [aux_sym_bind_address_token1] = ACTIONS(3152), - [aux_sym_bind_interface_token1] = ACTIONS(3152), - [aux_sym_canonical_domains_token1] = ACTIONS(3152), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3152), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3152), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3152), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3152), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3152), - [aux_sym_certificate_file_token1] = ACTIONS(3152), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3152), - [aux_sym_channel_timeout_token1] = ACTIONS(3152), - [aux_sym_check_host_ip_token1] = ACTIONS(3152), - [aux_sym_ciphers_token1] = ACTIONS(3152), - [aux_sym_cipher_token1] = ACTIONS(3154), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3152), - [aux_sym_compression_token1] = ACTIONS(3152), - [aux_sym_connection_attempts_token1] = ACTIONS(3152), - [aux_sym_connect_timeout_token1] = ACTIONS(3152), - [aux_sym_control_master_token1] = ACTIONS(3152), - [aux_sym_control_path_token1] = ACTIONS(3152), - [aux_sym_control_persist_token1] = ACTIONS(3152), - [aux_sym_dynamic_forward_token1] = ACTIONS(3152), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3152), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3152), - [aux_sym_escape_char_token1] = ACTIONS(3152), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3152), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3152), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3152), - [aux_sym_forward_agent_token1] = ACTIONS(3152), - [aux_sym_forward_x11_token1] = ACTIONS(3154), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3152), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3152), - [aux_sym_gateway_ports_token1] = ACTIONS(3152), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3152), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3152), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3152), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3152), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3152), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3152), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3152), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3152), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3152), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3152), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3152), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3152), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3152), - [aux_sym_host_key_alias_token1] = ACTIONS(3152), - [aux_sym_hostname_token1] = ACTIONS(3152), - [aux_sym_identities_only_token1] = ACTIONS(3152), - [aux_sym_identity_agent_token1] = ACTIONS(3152), - [aux_sym_identity_file_token1] = ACTIONS(3152), - [aux_sym_ignore_unknown_token1] = ACTIONS(3152), - [aux_sym_include_token1] = ACTIONS(3152), - [aux_sym_ip_qos_token1] = ACTIONS(3152), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3152), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3152), - [aux_sym_kex_algorithms_token1] = ACTIONS(3152), - [aux_sym_known_hosts_command_token1] = ACTIONS(3152), - [aux_sym_local_command_token1] = ACTIONS(3152), - [aux_sym_local_forward_token1] = ACTIONS(3152), - [aux_sym_log_level_token1] = ACTIONS(3152), - [aux_sym_log_verbose_token1] = ACTIONS(3152), - [aux_sym_macs_token1] = ACTIONS(3152), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3152), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3152), - [aux_sym_password_authentication_token1] = ACTIONS(3152), - [aux_sym_permit_local_command_token1] = ACTIONS(3152), - [aux_sym_permit_remote_open_token1] = ACTIONS(3152), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3152), - [aux_sym_port_token1] = ACTIONS(3152), - [aux_sym_preferred_authentications_token1] = ACTIONS(3152), - [aux_sym_protocol_token1] = ACTIONS(3152), - [aux_sym_proxy_command_token1] = ACTIONS(3152), - [aux_sym_proxy_jump_token1] = ACTIONS(3152), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3152), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3152), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3152), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3152), - [aux_sym_rekey_limit_token1] = ACTIONS(3152), - [aux_sym_remote_command_token1] = ACTIONS(3152), - [aux_sym_remote_forward_token1] = ACTIONS(3152), - [aux_sym_request_tty_token1] = ACTIONS(3152), - [aux_sym_required_rsa_size_token1] = ACTIONS(3152), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3152), - [aux_sym_security_key_provider_token1] = ACTIONS(3152), - [aux_sym_send_env_token1] = ACTIONS(3152), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3152), - [aux_sym_server_alive_interval_token1] = ACTIONS(3152), - [aux_sym_session_type_token1] = ACTIONS(3152), - [aux_sym_set_env_token1] = ACTIONS(3152), - [aux_sym_stdin_null_token1] = ACTIONS(3152), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3152), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3152), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3152), - [aux_sym_syslog_facility_token1] = ACTIONS(3152), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3152), - [aux_sym_keep_alive_token1] = ACTIONS(3152), - [aux_sym_tag_token1] = ACTIONS(3152), - [aux_sym_tunnel_token1] = ACTIONS(3154), - [aux_sym_tunnel_device_token1] = ACTIONS(3152), - [aux_sym_update_host_keys_token1] = ACTIONS(3152), - [aux_sym_use_keychain_token1] = ACTIONS(3152), - [aux_sym_use_roaming_token1] = ACTIONS(3152), - [aux_sym_user_token1] = ACTIONS(3154), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3152), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3152), - [aux_sym_visual_host_key_token1] = ACTIONS(3152), - [aux_sym_xauth_location_token1] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(1181), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1183), + [aux_sym_match_token1] = ACTIONS(1181), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1181), + [aux_sym_address_family_token1] = ACTIONS(1181), + [aux_sym_batch_mode_token1] = ACTIONS(1181), + [aux_sym_bind_address_token1] = ACTIONS(1181), + [aux_sym_bind_interface_token1] = ACTIONS(1181), + [aux_sym_canonical_domains_token1] = ACTIONS(1181), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1181), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1181), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1181), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1181), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1181), + [aux_sym_certificate_file_token1] = ACTIONS(1181), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1181), + [aux_sym_channel_timeout_token1] = ACTIONS(1181), + [aux_sym_check_host_ip_token1] = ACTIONS(1181), + [aux_sym_ciphers_token1] = ACTIONS(1181), + [aux_sym_cipher_token1] = ACTIONS(1183), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1181), + [aux_sym_compression_token1] = ACTIONS(1181), + [aux_sym_connection_attempts_token1] = ACTIONS(1181), + [aux_sym_connect_timeout_token1] = ACTIONS(1181), + [aux_sym_control_master_token1] = ACTIONS(1181), + [aux_sym_control_path_token1] = ACTIONS(1181), + [aux_sym_control_persist_token1] = ACTIONS(1181), + [aux_sym_dynamic_forward_token1] = ACTIONS(1181), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1181), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1181), + [aux_sym_escape_char_token1] = ACTIONS(1181), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1181), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1181), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1181), + [aux_sym_forward_agent_token1] = ACTIONS(1181), + [aux_sym_forward_x11_token1] = ACTIONS(1183), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1181), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1181), + [aux_sym_gateway_ports_token1] = ACTIONS(1181), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1181), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1181), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1181), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1181), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1181), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1181), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1181), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1181), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1181), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1181), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1181), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1181), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1181), + [aux_sym_host_key_alias_token1] = ACTIONS(1181), + [aux_sym_hostname_token1] = ACTIONS(1181), + [aux_sym_identities_only_token1] = ACTIONS(1181), + [aux_sym_identity_agent_token1] = ACTIONS(1181), + [aux_sym_identity_file_token1] = ACTIONS(1181), + [aux_sym_ignore_unknown_token1] = ACTIONS(1181), + [aux_sym_include_token1] = ACTIONS(1181), + [aux_sym_ip_qos_token1] = ACTIONS(1181), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1181), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1181), + [aux_sym_kex_algorithms_token1] = ACTIONS(1181), + [aux_sym_known_hosts_command_token1] = ACTIONS(1181), + [aux_sym_local_command_token1] = ACTIONS(1181), + [aux_sym_local_forward_token1] = ACTIONS(1181), + [aux_sym_log_level_token1] = ACTIONS(1181), + [aux_sym_log_verbose_token1] = ACTIONS(1181), + [aux_sym_macs_token1] = ACTIONS(1181), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1181), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1181), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1181), + [aux_sym_password_authentication_token1] = ACTIONS(1181), + [aux_sym_permit_local_command_token1] = ACTIONS(1181), + [aux_sym_permit_remote_open_token1] = ACTIONS(1181), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1181), + [aux_sym_port_token1] = ACTIONS(1181), + [aux_sym_preferred_authentications_token1] = ACTIONS(1181), + [aux_sym_protocol_token1] = ACTIONS(1181), + [aux_sym_proxy_command_token1] = ACTIONS(1181), + [aux_sym_proxy_jump_token1] = ACTIONS(1181), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1181), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1181), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1181), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1181), + [aux_sym_rekey_limit_token1] = ACTIONS(1181), + [aux_sym_remote_command_token1] = ACTIONS(1181), + [aux_sym_remote_forward_token1] = ACTIONS(1181), + [aux_sym_request_tty_token1] = ACTIONS(1181), + [aux_sym_required_rsa_size_token1] = ACTIONS(1181), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1181), + [aux_sym_security_key_provider_token1] = ACTIONS(1181), + [aux_sym_send_env_token1] = ACTIONS(1181), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1181), + [aux_sym_server_alive_interval_token1] = ACTIONS(1181), + [aux_sym_session_type_token1] = ACTIONS(1181), + [aux_sym_set_env_token1] = ACTIONS(1181), + [aux_sym_stdin_null_token1] = ACTIONS(1181), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1181), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1181), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1181), + [aux_sym_syslog_facility_token1] = ACTIONS(1181), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1181), + [aux_sym_keep_alive_token1] = ACTIONS(1181), + [aux_sym_tag_token1] = ACTIONS(1181), + [aux_sym_tunnel_token1] = ACTIONS(1183), + [aux_sym_tunnel_device_token1] = ACTIONS(1181), + [aux_sym_update_host_keys_token1] = ACTIONS(1181), + [aux_sym_use_keychain_token1] = ACTIONS(1181), + [aux_sym_use_roaming_token1] = ACTIONS(1181), + [aux_sym_user_token1] = ACTIONS(1183), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1181), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1181), + [aux_sym_visual_host_key_token1] = ACTIONS(1181), + [aux_sym_xauth_location_token1] = ACTIONS(1181), }, [485] = { - [ts_builtin_sym_end] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3158), - [aux_sym_match_token1] = ACTIONS(3156), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3156), - [aux_sym_address_family_token1] = ACTIONS(3156), - [aux_sym_batch_mode_token1] = ACTIONS(3156), - [aux_sym_bind_address_token1] = ACTIONS(3156), - [aux_sym_bind_interface_token1] = ACTIONS(3156), - [aux_sym_canonical_domains_token1] = ACTIONS(3156), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3156), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3156), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3156), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3156), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3156), - [aux_sym_certificate_file_token1] = ACTIONS(3156), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3156), - [aux_sym_channel_timeout_token1] = ACTIONS(3156), - [aux_sym_check_host_ip_token1] = ACTIONS(3156), - [aux_sym_ciphers_token1] = ACTIONS(3156), - [aux_sym_cipher_token1] = ACTIONS(3158), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3156), - [aux_sym_compression_token1] = ACTIONS(3156), - [aux_sym_connection_attempts_token1] = ACTIONS(3156), - [aux_sym_connect_timeout_token1] = ACTIONS(3156), - [aux_sym_control_master_token1] = ACTIONS(3156), - [aux_sym_control_path_token1] = ACTIONS(3156), - [aux_sym_control_persist_token1] = ACTIONS(3156), - [aux_sym_dynamic_forward_token1] = ACTIONS(3156), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3156), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3156), - [aux_sym_escape_char_token1] = ACTIONS(3156), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3156), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3156), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3156), - [aux_sym_forward_agent_token1] = ACTIONS(3156), - [aux_sym_forward_x11_token1] = ACTIONS(3158), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3156), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3156), - [aux_sym_gateway_ports_token1] = ACTIONS(3156), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3156), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3156), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3156), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3156), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3156), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3156), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3156), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3156), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3156), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3156), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3156), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3156), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3156), - [aux_sym_host_key_alias_token1] = ACTIONS(3156), - [aux_sym_hostname_token1] = ACTIONS(3156), - [aux_sym_identities_only_token1] = ACTIONS(3156), - [aux_sym_identity_agent_token1] = ACTIONS(3156), - [aux_sym_identity_file_token1] = ACTIONS(3156), - [aux_sym_ignore_unknown_token1] = ACTIONS(3156), - [aux_sym_include_token1] = ACTIONS(3156), - [aux_sym_ip_qos_token1] = ACTIONS(3156), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3156), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3156), - [aux_sym_kex_algorithms_token1] = ACTIONS(3156), - [aux_sym_known_hosts_command_token1] = ACTIONS(3156), - [aux_sym_local_command_token1] = ACTIONS(3156), - [aux_sym_local_forward_token1] = ACTIONS(3156), - [aux_sym_log_level_token1] = ACTIONS(3156), - [aux_sym_log_verbose_token1] = ACTIONS(3156), - [aux_sym_macs_token1] = ACTIONS(3156), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3156), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3156), - [aux_sym_password_authentication_token1] = ACTIONS(3156), - [aux_sym_permit_local_command_token1] = ACTIONS(3156), - [aux_sym_permit_remote_open_token1] = ACTIONS(3156), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3156), - [aux_sym_port_token1] = ACTIONS(3156), - [aux_sym_preferred_authentications_token1] = ACTIONS(3156), - [aux_sym_protocol_token1] = ACTIONS(3156), - [aux_sym_proxy_command_token1] = ACTIONS(3156), - [aux_sym_proxy_jump_token1] = ACTIONS(3156), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3156), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3156), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3156), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3156), - [aux_sym_rekey_limit_token1] = ACTIONS(3156), - [aux_sym_remote_command_token1] = ACTIONS(3156), - [aux_sym_remote_forward_token1] = ACTIONS(3156), - [aux_sym_request_tty_token1] = ACTIONS(3156), - [aux_sym_required_rsa_size_token1] = ACTIONS(3156), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3156), - [aux_sym_security_key_provider_token1] = ACTIONS(3156), - [aux_sym_send_env_token1] = ACTIONS(3156), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3156), - [aux_sym_server_alive_interval_token1] = ACTIONS(3156), - [aux_sym_session_type_token1] = ACTIONS(3156), - [aux_sym_set_env_token1] = ACTIONS(3156), - [aux_sym_stdin_null_token1] = ACTIONS(3156), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3156), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3156), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3156), - [aux_sym_syslog_facility_token1] = ACTIONS(3156), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3156), - [aux_sym_keep_alive_token1] = ACTIONS(3156), - [aux_sym_tag_token1] = ACTIONS(3156), - [aux_sym_tunnel_token1] = ACTIONS(3158), - [aux_sym_tunnel_device_token1] = ACTIONS(3156), - [aux_sym_update_host_keys_token1] = ACTIONS(3156), - [aux_sym_use_keychain_token1] = ACTIONS(3156), - [aux_sym_use_roaming_token1] = ACTIONS(3156), - [aux_sym_user_token1] = ACTIONS(3158), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3156), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3156), - [aux_sym_visual_host_key_token1] = ACTIONS(3156), - [aux_sym_xauth_location_token1] = ACTIONS(3156), + [ts_builtin_sym_end] = ACTIONS(1103), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1105), + [aux_sym_match_token1] = ACTIONS(1103), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1103), + [aux_sym_address_family_token1] = ACTIONS(1103), + [aux_sym_batch_mode_token1] = ACTIONS(1103), + [aux_sym_bind_address_token1] = ACTIONS(1103), + [aux_sym_bind_interface_token1] = ACTIONS(1103), + [aux_sym_canonical_domains_token1] = ACTIONS(1103), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1103), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1103), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1103), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1103), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1103), + [aux_sym_certificate_file_token1] = ACTIONS(1103), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1103), + [aux_sym_channel_timeout_token1] = ACTIONS(1103), + [aux_sym_check_host_ip_token1] = ACTIONS(1103), + [aux_sym_ciphers_token1] = ACTIONS(1103), + [aux_sym_cipher_token1] = ACTIONS(1105), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1103), + [aux_sym_compression_token1] = ACTIONS(1103), + [aux_sym_connection_attempts_token1] = ACTIONS(1103), + [aux_sym_connect_timeout_token1] = ACTIONS(1103), + [aux_sym_control_master_token1] = ACTIONS(1103), + [aux_sym_control_path_token1] = ACTIONS(1103), + [aux_sym_control_persist_token1] = ACTIONS(1103), + [aux_sym_dynamic_forward_token1] = ACTIONS(1103), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1103), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1103), + [aux_sym_escape_char_token1] = ACTIONS(1103), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1103), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1103), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1103), + [aux_sym_forward_agent_token1] = ACTIONS(1103), + [aux_sym_forward_x11_token1] = ACTIONS(1105), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1103), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1103), + [aux_sym_gateway_ports_token1] = ACTIONS(1103), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1103), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1103), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1103), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1103), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1103), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1103), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1103), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1103), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1103), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1103), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1103), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1103), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1103), + [aux_sym_host_key_alias_token1] = ACTIONS(1103), + [aux_sym_hostname_token1] = ACTIONS(1103), + [aux_sym_identities_only_token1] = ACTIONS(1103), + [aux_sym_identity_agent_token1] = ACTIONS(1103), + [aux_sym_identity_file_token1] = ACTIONS(1103), + [aux_sym_ignore_unknown_token1] = ACTIONS(1103), + [aux_sym_include_token1] = ACTIONS(1103), + [aux_sym_ip_qos_token1] = ACTIONS(1103), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1103), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1103), + [aux_sym_kex_algorithms_token1] = ACTIONS(1103), + [aux_sym_known_hosts_command_token1] = ACTIONS(1103), + [aux_sym_local_command_token1] = ACTIONS(1103), + [aux_sym_local_forward_token1] = ACTIONS(1103), + [aux_sym_log_level_token1] = ACTIONS(1103), + [aux_sym_log_verbose_token1] = ACTIONS(1103), + [aux_sym_macs_token1] = ACTIONS(1103), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1103), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1103), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1103), + [aux_sym_password_authentication_token1] = ACTIONS(1103), + [aux_sym_permit_local_command_token1] = ACTIONS(1103), + [aux_sym_permit_remote_open_token1] = ACTIONS(1103), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1103), + [aux_sym_port_token1] = ACTIONS(1103), + [aux_sym_preferred_authentications_token1] = ACTIONS(1103), + [aux_sym_protocol_token1] = ACTIONS(1103), + [aux_sym_proxy_command_token1] = ACTIONS(1103), + [aux_sym_proxy_jump_token1] = ACTIONS(1103), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1103), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1103), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1103), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1103), + [aux_sym_rekey_limit_token1] = ACTIONS(1103), + [aux_sym_remote_command_token1] = ACTIONS(1103), + [aux_sym_remote_forward_token1] = ACTIONS(1103), + [aux_sym_request_tty_token1] = ACTIONS(1103), + [aux_sym_required_rsa_size_token1] = ACTIONS(1103), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1103), + [aux_sym_security_key_provider_token1] = ACTIONS(1103), + [aux_sym_send_env_token1] = ACTIONS(1103), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1103), + [aux_sym_server_alive_interval_token1] = ACTIONS(1103), + [aux_sym_session_type_token1] = ACTIONS(1103), + [aux_sym_set_env_token1] = ACTIONS(1103), + [aux_sym_stdin_null_token1] = ACTIONS(1103), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1103), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1103), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1103), + [aux_sym_syslog_facility_token1] = ACTIONS(1103), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1103), + [aux_sym_keep_alive_token1] = ACTIONS(1103), + [aux_sym_tag_token1] = ACTIONS(1103), + [aux_sym_tunnel_token1] = ACTIONS(1105), + [aux_sym_tunnel_device_token1] = ACTIONS(1103), + [aux_sym_update_host_keys_token1] = ACTIONS(1103), + [aux_sym_use_keychain_token1] = ACTIONS(1103), + [aux_sym_use_roaming_token1] = ACTIONS(1103), + [aux_sym_user_token1] = ACTIONS(1105), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1103), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1103), + [aux_sym_visual_host_key_token1] = ACTIONS(1103), + [aux_sym_xauth_location_token1] = ACTIONS(1103), }, [486] = { - [ts_builtin_sym_end] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3162), - [aux_sym_match_token1] = ACTIONS(3160), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3160), - [aux_sym_address_family_token1] = ACTIONS(3160), - [aux_sym_batch_mode_token1] = ACTIONS(3160), - [aux_sym_bind_address_token1] = ACTIONS(3160), - [aux_sym_bind_interface_token1] = ACTIONS(3160), - [aux_sym_canonical_domains_token1] = ACTIONS(3160), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3160), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3160), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3160), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3160), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3160), - [aux_sym_certificate_file_token1] = ACTIONS(3160), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3160), - [aux_sym_channel_timeout_token1] = ACTIONS(3160), - [aux_sym_check_host_ip_token1] = ACTIONS(3160), - [aux_sym_ciphers_token1] = ACTIONS(3160), - [aux_sym_cipher_token1] = ACTIONS(3162), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3160), - [aux_sym_compression_token1] = ACTIONS(3160), - [aux_sym_connection_attempts_token1] = ACTIONS(3160), - [aux_sym_connect_timeout_token1] = ACTIONS(3160), - [aux_sym_control_master_token1] = ACTIONS(3160), - [aux_sym_control_path_token1] = ACTIONS(3160), - [aux_sym_control_persist_token1] = ACTIONS(3160), - [aux_sym_dynamic_forward_token1] = ACTIONS(3160), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3160), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3160), - [aux_sym_escape_char_token1] = ACTIONS(3160), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3160), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3160), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3160), - [aux_sym_forward_agent_token1] = ACTIONS(3160), - [aux_sym_forward_x11_token1] = ACTIONS(3162), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3160), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3160), - [aux_sym_gateway_ports_token1] = ACTIONS(3160), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3160), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3160), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3160), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3160), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3160), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3160), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3160), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3160), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3160), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3160), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3160), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3160), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3160), - [aux_sym_host_key_alias_token1] = ACTIONS(3160), - [aux_sym_hostname_token1] = ACTIONS(3160), - [aux_sym_identities_only_token1] = ACTIONS(3160), - [aux_sym_identity_agent_token1] = ACTIONS(3160), - [aux_sym_identity_file_token1] = ACTIONS(3160), - [aux_sym_ignore_unknown_token1] = ACTIONS(3160), - [aux_sym_include_token1] = ACTIONS(3160), - [aux_sym_ip_qos_token1] = ACTIONS(3160), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3160), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3160), - [aux_sym_kex_algorithms_token1] = ACTIONS(3160), - [aux_sym_known_hosts_command_token1] = ACTIONS(3160), - [aux_sym_local_command_token1] = ACTIONS(3160), - [aux_sym_local_forward_token1] = ACTIONS(3160), - [aux_sym_log_level_token1] = ACTIONS(3160), - [aux_sym_log_verbose_token1] = ACTIONS(3160), - [aux_sym_macs_token1] = ACTIONS(3160), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3160), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3160), - [aux_sym_password_authentication_token1] = ACTIONS(3160), - [aux_sym_permit_local_command_token1] = ACTIONS(3160), - [aux_sym_permit_remote_open_token1] = ACTIONS(3160), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3160), - [aux_sym_port_token1] = ACTIONS(3160), - [aux_sym_preferred_authentications_token1] = ACTIONS(3160), - [aux_sym_protocol_token1] = ACTIONS(3160), - [aux_sym_proxy_command_token1] = ACTIONS(3160), - [aux_sym_proxy_jump_token1] = ACTIONS(3160), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3160), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3160), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3160), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3160), - [aux_sym_rekey_limit_token1] = ACTIONS(3160), - [aux_sym_remote_command_token1] = ACTIONS(3160), - [aux_sym_remote_forward_token1] = ACTIONS(3160), - [aux_sym_request_tty_token1] = ACTIONS(3160), - [aux_sym_required_rsa_size_token1] = ACTIONS(3160), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3160), - [aux_sym_security_key_provider_token1] = ACTIONS(3160), - [aux_sym_send_env_token1] = ACTIONS(3160), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3160), - [aux_sym_server_alive_interval_token1] = ACTIONS(3160), - [aux_sym_session_type_token1] = ACTIONS(3160), - [aux_sym_set_env_token1] = ACTIONS(3160), - [aux_sym_stdin_null_token1] = ACTIONS(3160), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3160), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3160), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3160), - [aux_sym_syslog_facility_token1] = ACTIONS(3160), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3160), - [aux_sym_keep_alive_token1] = ACTIONS(3160), - [aux_sym_tag_token1] = ACTIONS(3160), - [aux_sym_tunnel_token1] = ACTIONS(3162), - [aux_sym_tunnel_device_token1] = ACTIONS(3160), - [aux_sym_update_host_keys_token1] = ACTIONS(3160), - [aux_sym_use_keychain_token1] = ACTIONS(3160), - [aux_sym_use_roaming_token1] = ACTIONS(3160), - [aux_sym_user_token1] = ACTIONS(3162), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3160), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3160), - [aux_sym_visual_host_key_token1] = ACTIONS(3160), - [aux_sym_xauth_location_token1] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3169), + [aux_sym_match_token1] = ACTIONS(3167), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3167), + [aux_sym_address_family_token1] = ACTIONS(3167), + [aux_sym_batch_mode_token1] = ACTIONS(3167), + [aux_sym_bind_address_token1] = ACTIONS(3167), + [aux_sym_bind_interface_token1] = ACTIONS(3167), + [aux_sym_canonical_domains_token1] = ACTIONS(3167), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3167), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3167), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3167), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3167), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3167), + [aux_sym_certificate_file_token1] = ACTIONS(3167), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3167), + [aux_sym_channel_timeout_token1] = ACTIONS(3167), + [aux_sym_check_host_ip_token1] = ACTIONS(3167), + [aux_sym_ciphers_token1] = ACTIONS(3167), + [aux_sym_cipher_token1] = ACTIONS(3169), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3167), + [aux_sym_compression_token1] = ACTIONS(3167), + [aux_sym_connection_attempts_token1] = ACTIONS(3167), + [aux_sym_connect_timeout_token1] = ACTIONS(3167), + [aux_sym_control_master_token1] = ACTIONS(3167), + [aux_sym_control_path_token1] = ACTIONS(3167), + [aux_sym_control_persist_token1] = ACTIONS(3167), + [aux_sym_dynamic_forward_token1] = ACTIONS(3167), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3167), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3167), + [aux_sym_escape_char_token1] = ACTIONS(3167), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3167), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3167), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3167), + [aux_sym_forward_agent_token1] = ACTIONS(3167), + [aux_sym_forward_x11_token1] = ACTIONS(3169), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3167), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3167), + [aux_sym_gateway_ports_token1] = ACTIONS(3167), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3167), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3167), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3167), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3167), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3167), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3167), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3167), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3167), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3167), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3167), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3167), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3167), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3167), + [aux_sym_host_key_alias_token1] = ACTIONS(3167), + [aux_sym_hostname_token1] = ACTIONS(3167), + [aux_sym_identities_only_token1] = ACTIONS(3167), + [aux_sym_identity_agent_token1] = ACTIONS(3167), + [aux_sym_identity_file_token1] = ACTIONS(3167), + [aux_sym_ignore_unknown_token1] = ACTIONS(3167), + [aux_sym_include_token1] = ACTIONS(3167), + [aux_sym_ip_qos_token1] = ACTIONS(3167), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3167), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3167), + [aux_sym_kex_algorithms_token1] = ACTIONS(3167), + [aux_sym_known_hosts_command_token1] = ACTIONS(3167), + [aux_sym_local_command_token1] = ACTIONS(3167), + [aux_sym_local_forward_token1] = ACTIONS(3167), + [aux_sym_log_level_token1] = ACTIONS(3167), + [aux_sym_log_verbose_token1] = ACTIONS(3167), + [aux_sym_macs_token1] = ACTIONS(3167), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3167), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3167), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3167), + [aux_sym_password_authentication_token1] = ACTIONS(3167), + [aux_sym_permit_local_command_token1] = ACTIONS(3167), + [aux_sym_permit_remote_open_token1] = ACTIONS(3167), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3167), + [aux_sym_port_token1] = ACTIONS(3167), + [aux_sym_preferred_authentications_token1] = ACTIONS(3167), + [aux_sym_protocol_token1] = ACTIONS(3167), + [aux_sym_proxy_command_token1] = ACTIONS(3167), + [aux_sym_proxy_jump_token1] = ACTIONS(3167), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3167), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3167), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3167), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3167), + [aux_sym_rekey_limit_token1] = ACTIONS(3167), + [aux_sym_remote_command_token1] = ACTIONS(3167), + [aux_sym_remote_forward_token1] = ACTIONS(3167), + [aux_sym_request_tty_token1] = ACTIONS(3167), + [aux_sym_required_rsa_size_token1] = ACTIONS(3167), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3167), + [aux_sym_security_key_provider_token1] = ACTIONS(3167), + [aux_sym_send_env_token1] = ACTIONS(3167), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3167), + [aux_sym_server_alive_interval_token1] = ACTIONS(3167), + [aux_sym_session_type_token1] = ACTIONS(3167), + [aux_sym_set_env_token1] = ACTIONS(3167), + [aux_sym_stdin_null_token1] = ACTIONS(3167), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3167), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3167), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3167), + [aux_sym_syslog_facility_token1] = ACTIONS(3167), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3167), + [aux_sym_keep_alive_token1] = ACTIONS(3167), + [aux_sym_tag_token1] = ACTIONS(3167), + [aux_sym_tunnel_token1] = ACTIONS(3169), + [aux_sym_tunnel_device_token1] = ACTIONS(3167), + [aux_sym_update_host_keys_token1] = ACTIONS(3167), + [aux_sym_use_keychain_token1] = ACTIONS(3167), + [aux_sym_use_roaming_token1] = ACTIONS(3167), + [aux_sym_user_token1] = ACTIONS(3169), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3167), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3167), + [aux_sym_visual_host_key_token1] = ACTIONS(3167), + [aux_sym_xauth_location_token1] = ACTIONS(3167), }, [487] = { - [ts_builtin_sym_end] = ACTIONS(3164), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3166), - [aux_sym_match_token1] = ACTIONS(3164), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3164), - [aux_sym_address_family_token1] = ACTIONS(3164), - [aux_sym_batch_mode_token1] = ACTIONS(3164), - [aux_sym_bind_address_token1] = ACTIONS(3164), - [aux_sym_bind_interface_token1] = ACTIONS(3164), - [aux_sym_canonical_domains_token1] = ACTIONS(3164), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3164), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3164), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3164), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3164), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3164), - [aux_sym_certificate_file_token1] = ACTIONS(3164), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3164), - [aux_sym_channel_timeout_token1] = ACTIONS(3164), - [aux_sym_check_host_ip_token1] = ACTIONS(3164), - [aux_sym_ciphers_token1] = ACTIONS(3164), - [aux_sym_cipher_token1] = ACTIONS(3166), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3164), - [aux_sym_compression_token1] = ACTIONS(3164), - [aux_sym_connection_attempts_token1] = ACTIONS(3164), - [aux_sym_connect_timeout_token1] = ACTIONS(3164), - [aux_sym_control_master_token1] = ACTIONS(3164), - [aux_sym_control_path_token1] = ACTIONS(3164), - [aux_sym_control_persist_token1] = ACTIONS(3164), - [aux_sym_dynamic_forward_token1] = ACTIONS(3164), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3164), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3164), - [aux_sym_escape_char_token1] = ACTIONS(3164), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3164), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3164), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3164), - [aux_sym_forward_agent_token1] = ACTIONS(3164), - [aux_sym_forward_x11_token1] = ACTIONS(3166), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3164), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3164), - [aux_sym_gateway_ports_token1] = ACTIONS(3164), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3164), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3164), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3164), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3164), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3164), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3164), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3164), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3164), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3164), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3164), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3164), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3164), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3164), - [aux_sym_host_key_alias_token1] = ACTIONS(3164), - [aux_sym_hostname_token1] = ACTIONS(3164), - [aux_sym_identities_only_token1] = ACTIONS(3164), - [aux_sym_identity_agent_token1] = ACTIONS(3164), - [aux_sym_identity_file_token1] = ACTIONS(3164), - [aux_sym_ignore_unknown_token1] = ACTIONS(3164), - [aux_sym_include_token1] = ACTIONS(3164), - [aux_sym_ip_qos_token1] = ACTIONS(3164), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3164), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3164), - [aux_sym_kex_algorithms_token1] = ACTIONS(3164), - [aux_sym_known_hosts_command_token1] = ACTIONS(3164), - [aux_sym_local_command_token1] = ACTIONS(3164), - [aux_sym_local_forward_token1] = ACTIONS(3164), - [aux_sym_log_level_token1] = ACTIONS(3164), - [aux_sym_log_verbose_token1] = ACTIONS(3164), - [aux_sym_macs_token1] = ACTIONS(3164), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3164), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3164), - [aux_sym_password_authentication_token1] = ACTIONS(3164), - [aux_sym_permit_local_command_token1] = ACTIONS(3164), - [aux_sym_permit_remote_open_token1] = ACTIONS(3164), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3164), - [aux_sym_port_token1] = ACTIONS(3164), - [aux_sym_preferred_authentications_token1] = ACTIONS(3164), - [aux_sym_protocol_token1] = ACTIONS(3164), - [aux_sym_proxy_command_token1] = ACTIONS(3164), - [aux_sym_proxy_jump_token1] = ACTIONS(3164), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3164), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3164), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3164), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3164), - [aux_sym_rekey_limit_token1] = ACTIONS(3164), - [aux_sym_remote_command_token1] = ACTIONS(3164), - [aux_sym_remote_forward_token1] = ACTIONS(3164), - [aux_sym_request_tty_token1] = ACTIONS(3164), - [aux_sym_required_rsa_size_token1] = ACTIONS(3164), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3164), - [aux_sym_security_key_provider_token1] = ACTIONS(3164), - [aux_sym_send_env_token1] = ACTIONS(3164), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3164), - [aux_sym_server_alive_interval_token1] = ACTIONS(3164), - [aux_sym_session_type_token1] = ACTIONS(3164), - [aux_sym_set_env_token1] = ACTIONS(3164), - [aux_sym_stdin_null_token1] = ACTIONS(3164), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3164), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3164), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3164), - [aux_sym_syslog_facility_token1] = ACTIONS(3164), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3164), - [aux_sym_keep_alive_token1] = ACTIONS(3164), - [aux_sym_tag_token1] = ACTIONS(3164), - [aux_sym_tunnel_token1] = ACTIONS(3166), - [aux_sym_tunnel_device_token1] = ACTIONS(3164), - [aux_sym_update_host_keys_token1] = ACTIONS(3164), - [aux_sym_use_keychain_token1] = ACTIONS(3164), - [aux_sym_use_roaming_token1] = ACTIONS(3164), - [aux_sym_user_token1] = ACTIONS(3166), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3164), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3164), - [aux_sym_visual_host_key_token1] = ACTIONS(3164), - [aux_sym_xauth_location_token1] = ACTIONS(3164), + [ts_builtin_sym_end] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3173), + [aux_sym_match_token1] = ACTIONS(3171), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3171), + [aux_sym_address_family_token1] = ACTIONS(3171), + [aux_sym_batch_mode_token1] = ACTIONS(3171), + [aux_sym_bind_address_token1] = ACTIONS(3171), + [aux_sym_bind_interface_token1] = ACTIONS(3171), + [aux_sym_canonical_domains_token1] = ACTIONS(3171), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3171), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3171), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3171), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3171), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3171), + [aux_sym_certificate_file_token1] = ACTIONS(3171), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3171), + [aux_sym_channel_timeout_token1] = ACTIONS(3171), + [aux_sym_check_host_ip_token1] = ACTIONS(3171), + [aux_sym_ciphers_token1] = ACTIONS(3171), + [aux_sym_cipher_token1] = ACTIONS(3173), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3171), + [aux_sym_compression_token1] = ACTIONS(3171), + [aux_sym_connection_attempts_token1] = ACTIONS(3171), + [aux_sym_connect_timeout_token1] = ACTIONS(3171), + [aux_sym_control_master_token1] = ACTIONS(3171), + [aux_sym_control_path_token1] = ACTIONS(3171), + [aux_sym_control_persist_token1] = ACTIONS(3171), + [aux_sym_dynamic_forward_token1] = ACTIONS(3171), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3171), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3171), + [aux_sym_escape_char_token1] = ACTIONS(3171), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3171), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3171), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3171), + [aux_sym_forward_agent_token1] = ACTIONS(3171), + [aux_sym_forward_x11_token1] = ACTIONS(3173), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3171), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3171), + [aux_sym_gateway_ports_token1] = ACTIONS(3171), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3171), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3171), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3171), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3171), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3171), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3171), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3171), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3171), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3171), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3171), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3171), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3171), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3171), + [aux_sym_host_key_alias_token1] = ACTIONS(3171), + [aux_sym_hostname_token1] = ACTIONS(3171), + [aux_sym_identities_only_token1] = ACTIONS(3171), + [aux_sym_identity_agent_token1] = ACTIONS(3171), + [aux_sym_identity_file_token1] = ACTIONS(3171), + [aux_sym_ignore_unknown_token1] = ACTIONS(3171), + [aux_sym_include_token1] = ACTIONS(3171), + [aux_sym_ip_qos_token1] = ACTIONS(3171), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3171), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3171), + [aux_sym_kex_algorithms_token1] = ACTIONS(3171), + [aux_sym_known_hosts_command_token1] = ACTIONS(3171), + [aux_sym_local_command_token1] = ACTIONS(3171), + [aux_sym_local_forward_token1] = ACTIONS(3171), + [aux_sym_log_level_token1] = ACTIONS(3171), + [aux_sym_log_verbose_token1] = ACTIONS(3171), + [aux_sym_macs_token1] = ACTIONS(3171), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3171), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3171), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3171), + [aux_sym_password_authentication_token1] = ACTIONS(3171), + [aux_sym_permit_local_command_token1] = ACTIONS(3171), + [aux_sym_permit_remote_open_token1] = ACTIONS(3171), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3171), + [aux_sym_port_token1] = ACTIONS(3171), + [aux_sym_preferred_authentications_token1] = ACTIONS(3171), + [aux_sym_protocol_token1] = ACTIONS(3171), + [aux_sym_proxy_command_token1] = ACTIONS(3171), + [aux_sym_proxy_jump_token1] = ACTIONS(3171), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3171), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3171), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3171), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3171), + [aux_sym_rekey_limit_token1] = ACTIONS(3171), + [aux_sym_remote_command_token1] = ACTIONS(3171), + [aux_sym_remote_forward_token1] = ACTIONS(3171), + [aux_sym_request_tty_token1] = ACTIONS(3171), + [aux_sym_required_rsa_size_token1] = ACTIONS(3171), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3171), + [aux_sym_security_key_provider_token1] = ACTIONS(3171), + [aux_sym_send_env_token1] = ACTIONS(3171), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3171), + [aux_sym_server_alive_interval_token1] = ACTIONS(3171), + [aux_sym_session_type_token1] = ACTIONS(3171), + [aux_sym_set_env_token1] = ACTIONS(3171), + [aux_sym_stdin_null_token1] = ACTIONS(3171), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3171), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3171), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3171), + [aux_sym_syslog_facility_token1] = ACTIONS(3171), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3171), + [aux_sym_keep_alive_token1] = ACTIONS(3171), + [aux_sym_tag_token1] = ACTIONS(3171), + [aux_sym_tunnel_token1] = ACTIONS(3173), + [aux_sym_tunnel_device_token1] = ACTIONS(3171), + [aux_sym_update_host_keys_token1] = ACTIONS(3171), + [aux_sym_use_keychain_token1] = ACTIONS(3171), + [aux_sym_use_roaming_token1] = ACTIONS(3171), + [aux_sym_user_token1] = ACTIONS(3173), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3171), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3171), + [aux_sym_visual_host_key_token1] = ACTIONS(3171), + [aux_sym_xauth_location_token1] = ACTIONS(3171), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(3168), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3170), - [aux_sym_match_token1] = ACTIONS(3168), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3168), - [aux_sym_address_family_token1] = ACTIONS(3168), - [aux_sym_batch_mode_token1] = ACTIONS(3168), - [aux_sym_bind_address_token1] = ACTIONS(3168), - [aux_sym_bind_interface_token1] = ACTIONS(3168), - [aux_sym_canonical_domains_token1] = ACTIONS(3168), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3168), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3168), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3168), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3168), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3168), - [aux_sym_certificate_file_token1] = ACTIONS(3168), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3168), - [aux_sym_channel_timeout_token1] = ACTIONS(3168), - [aux_sym_check_host_ip_token1] = ACTIONS(3168), - [aux_sym_ciphers_token1] = ACTIONS(3168), - [aux_sym_cipher_token1] = ACTIONS(3170), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3168), - [aux_sym_compression_token1] = ACTIONS(3168), - [aux_sym_connection_attempts_token1] = ACTIONS(3168), - [aux_sym_connect_timeout_token1] = ACTIONS(3168), - [aux_sym_control_master_token1] = ACTIONS(3168), - [aux_sym_control_path_token1] = ACTIONS(3168), - [aux_sym_control_persist_token1] = ACTIONS(3168), - [aux_sym_dynamic_forward_token1] = ACTIONS(3168), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3168), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3168), - [aux_sym_escape_char_token1] = ACTIONS(3168), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3168), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3168), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3168), - [aux_sym_forward_agent_token1] = ACTIONS(3168), - [aux_sym_forward_x11_token1] = ACTIONS(3170), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3168), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3168), - [aux_sym_gateway_ports_token1] = ACTIONS(3168), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3168), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3168), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3168), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3168), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3168), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3168), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3168), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3168), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3168), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3168), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3168), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3168), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3168), - [aux_sym_host_key_alias_token1] = ACTIONS(3168), - [aux_sym_hostname_token1] = ACTIONS(3168), - [aux_sym_identities_only_token1] = ACTIONS(3168), - [aux_sym_identity_agent_token1] = ACTIONS(3168), - [aux_sym_identity_file_token1] = ACTIONS(3168), - [aux_sym_ignore_unknown_token1] = ACTIONS(3168), - [aux_sym_include_token1] = ACTIONS(3168), - [aux_sym_ip_qos_token1] = ACTIONS(3168), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3168), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3168), - [aux_sym_kex_algorithms_token1] = ACTIONS(3168), - [aux_sym_known_hosts_command_token1] = ACTIONS(3168), - [aux_sym_local_command_token1] = ACTIONS(3168), - [aux_sym_local_forward_token1] = ACTIONS(3168), - [aux_sym_log_level_token1] = ACTIONS(3168), - [aux_sym_log_verbose_token1] = ACTIONS(3168), - [aux_sym_macs_token1] = ACTIONS(3168), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3168), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3168), - [aux_sym_password_authentication_token1] = ACTIONS(3168), - [aux_sym_permit_local_command_token1] = ACTIONS(3168), - [aux_sym_permit_remote_open_token1] = ACTIONS(3168), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3168), - [aux_sym_port_token1] = ACTIONS(3168), - [aux_sym_preferred_authentications_token1] = ACTIONS(3168), - [aux_sym_protocol_token1] = ACTIONS(3168), - [aux_sym_proxy_command_token1] = ACTIONS(3168), - [aux_sym_proxy_jump_token1] = ACTIONS(3168), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3168), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3168), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3168), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3168), - [aux_sym_rekey_limit_token1] = ACTIONS(3168), - [aux_sym_remote_command_token1] = ACTIONS(3168), - [aux_sym_remote_forward_token1] = ACTIONS(3168), - [aux_sym_request_tty_token1] = ACTIONS(3168), - [aux_sym_required_rsa_size_token1] = ACTIONS(3168), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3168), - [aux_sym_security_key_provider_token1] = ACTIONS(3168), - [aux_sym_send_env_token1] = ACTIONS(3168), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3168), - [aux_sym_server_alive_interval_token1] = ACTIONS(3168), - [aux_sym_session_type_token1] = ACTIONS(3168), - [aux_sym_set_env_token1] = ACTIONS(3168), - [aux_sym_stdin_null_token1] = ACTIONS(3168), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3168), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3168), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3168), - [aux_sym_syslog_facility_token1] = ACTIONS(3168), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3168), - [aux_sym_keep_alive_token1] = ACTIONS(3168), - [aux_sym_tag_token1] = ACTIONS(3168), - [aux_sym_tunnel_token1] = ACTIONS(3170), - [aux_sym_tunnel_device_token1] = ACTIONS(3168), - [aux_sym_update_host_keys_token1] = ACTIONS(3168), - [aux_sym_use_keychain_token1] = ACTIONS(3168), - [aux_sym_use_roaming_token1] = ACTIONS(3168), - [aux_sym_user_token1] = ACTIONS(3170), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3168), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3168), - [aux_sym_visual_host_key_token1] = ACTIONS(3168), - [aux_sym_xauth_location_token1] = ACTIONS(3168), + [ts_builtin_sym_end] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3177), + [aux_sym_match_token1] = ACTIONS(3175), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3175), + [aux_sym_address_family_token1] = ACTIONS(3175), + [aux_sym_batch_mode_token1] = ACTIONS(3175), + [aux_sym_bind_address_token1] = ACTIONS(3175), + [aux_sym_bind_interface_token1] = ACTIONS(3175), + [aux_sym_canonical_domains_token1] = ACTIONS(3175), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3175), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3175), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3175), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3175), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3175), + [aux_sym_certificate_file_token1] = ACTIONS(3175), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3175), + [aux_sym_channel_timeout_token1] = ACTIONS(3175), + [aux_sym_check_host_ip_token1] = ACTIONS(3175), + [aux_sym_ciphers_token1] = ACTIONS(3175), + [aux_sym_cipher_token1] = ACTIONS(3177), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3175), + [aux_sym_compression_token1] = ACTIONS(3175), + [aux_sym_connection_attempts_token1] = ACTIONS(3175), + [aux_sym_connect_timeout_token1] = ACTIONS(3175), + [aux_sym_control_master_token1] = ACTIONS(3175), + [aux_sym_control_path_token1] = ACTIONS(3175), + [aux_sym_control_persist_token1] = ACTIONS(3175), + [aux_sym_dynamic_forward_token1] = ACTIONS(3175), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3175), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3175), + [aux_sym_escape_char_token1] = ACTIONS(3175), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3175), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3175), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3175), + [aux_sym_forward_agent_token1] = ACTIONS(3175), + [aux_sym_forward_x11_token1] = ACTIONS(3177), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3175), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3175), + [aux_sym_gateway_ports_token1] = ACTIONS(3175), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3175), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3175), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3175), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3175), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3175), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3175), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3175), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3175), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3175), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3175), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3175), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3175), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3175), + [aux_sym_host_key_alias_token1] = ACTIONS(3175), + [aux_sym_hostname_token1] = ACTIONS(3175), + [aux_sym_identities_only_token1] = ACTIONS(3175), + [aux_sym_identity_agent_token1] = ACTIONS(3175), + [aux_sym_identity_file_token1] = ACTIONS(3175), + [aux_sym_ignore_unknown_token1] = ACTIONS(3175), + [aux_sym_include_token1] = ACTIONS(3175), + [aux_sym_ip_qos_token1] = ACTIONS(3175), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3175), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3175), + [aux_sym_kex_algorithms_token1] = ACTIONS(3175), + [aux_sym_known_hosts_command_token1] = ACTIONS(3175), + [aux_sym_local_command_token1] = ACTIONS(3175), + [aux_sym_local_forward_token1] = ACTIONS(3175), + [aux_sym_log_level_token1] = ACTIONS(3175), + [aux_sym_log_verbose_token1] = ACTIONS(3175), + [aux_sym_macs_token1] = ACTIONS(3175), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3175), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3175), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3175), + [aux_sym_password_authentication_token1] = ACTIONS(3175), + [aux_sym_permit_local_command_token1] = ACTIONS(3175), + [aux_sym_permit_remote_open_token1] = ACTIONS(3175), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3175), + [aux_sym_port_token1] = ACTIONS(3175), + [aux_sym_preferred_authentications_token1] = ACTIONS(3175), + [aux_sym_protocol_token1] = ACTIONS(3175), + [aux_sym_proxy_command_token1] = ACTIONS(3175), + [aux_sym_proxy_jump_token1] = ACTIONS(3175), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3175), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3175), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3175), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3175), + [aux_sym_rekey_limit_token1] = ACTIONS(3175), + [aux_sym_remote_command_token1] = ACTIONS(3175), + [aux_sym_remote_forward_token1] = ACTIONS(3175), + [aux_sym_request_tty_token1] = ACTIONS(3175), + [aux_sym_required_rsa_size_token1] = ACTIONS(3175), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3175), + [aux_sym_security_key_provider_token1] = ACTIONS(3175), + [aux_sym_send_env_token1] = ACTIONS(3175), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3175), + [aux_sym_server_alive_interval_token1] = ACTIONS(3175), + [aux_sym_session_type_token1] = ACTIONS(3175), + [aux_sym_set_env_token1] = ACTIONS(3175), + [aux_sym_stdin_null_token1] = ACTIONS(3175), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3175), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3175), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3175), + [aux_sym_syslog_facility_token1] = ACTIONS(3175), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3175), + [aux_sym_keep_alive_token1] = ACTIONS(3175), + [aux_sym_tag_token1] = ACTIONS(3175), + [aux_sym_tunnel_token1] = ACTIONS(3177), + [aux_sym_tunnel_device_token1] = ACTIONS(3175), + [aux_sym_update_host_keys_token1] = ACTIONS(3175), + [aux_sym_use_keychain_token1] = ACTIONS(3175), + [aux_sym_use_roaming_token1] = ACTIONS(3175), + [aux_sym_user_token1] = ACTIONS(3177), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3175), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3175), + [aux_sym_visual_host_key_token1] = ACTIONS(3175), + [aux_sym_xauth_location_token1] = ACTIONS(3175), }, [489] = { - [ts_builtin_sym_end] = ACTIONS(1314), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1316), - [aux_sym_match_token1] = ACTIONS(1314), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1314), - [aux_sym_address_family_token1] = ACTIONS(1314), - [aux_sym_batch_mode_token1] = ACTIONS(1314), - [aux_sym_bind_address_token1] = ACTIONS(1314), - [aux_sym_bind_interface_token1] = ACTIONS(1314), - [aux_sym_canonical_domains_token1] = ACTIONS(1314), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1314), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1314), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1314), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1314), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1314), - [aux_sym_certificate_file_token1] = ACTIONS(1314), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1314), - [aux_sym_channel_timeout_token1] = ACTIONS(1314), - [aux_sym_check_host_ip_token1] = ACTIONS(1314), - [aux_sym_ciphers_token1] = ACTIONS(1314), - [aux_sym_cipher_token1] = ACTIONS(1316), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1314), - [aux_sym_compression_token1] = ACTIONS(1314), - [aux_sym_connection_attempts_token1] = ACTIONS(1314), - [aux_sym_connect_timeout_token1] = ACTIONS(1314), - [aux_sym_control_master_token1] = ACTIONS(1314), - [aux_sym_control_path_token1] = ACTIONS(1314), - [aux_sym_control_persist_token1] = ACTIONS(1314), - [aux_sym_dynamic_forward_token1] = ACTIONS(1314), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1314), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1314), - [aux_sym_escape_char_token1] = ACTIONS(1314), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1314), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1314), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1314), - [aux_sym_forward_agent_token1] = ACTIONS(1314), - [aux_sym_forward_x11_token1] = ACTIONS(1316), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1314), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1314), - [aux_sym_gateway_ports_token1] = ACTIONS(1314), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1314), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1314), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1314), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1314), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1314), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1314), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1314), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1314), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1314), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1314), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1314), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1314), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1314), - [aux_sym_host_key_alias_token1] = ACTIONS(1314), - [aux_sym_hostname_token1] = ACTIONS(1314), - [aux_sym_identities_only_token1] = ACTIONS(1314), - [aux_sym_identity_agent_token1] = ACTIONS(1314), - [aux_sym_identity_file_token1] = ACTIONS(1314), - [aux_sym_ignore_unknown_token1] = ACTIONS(1314), - [aux_sym_include_token1] = ACTIONS(1314), - [aux_sym_ip_qos_token1] = ACTIONS(1314), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1314), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1314), - [aux_sym_kex_algorithms_token1] = ACTIONS(1314), - [aux_sym_known_hosts_command_token1] = ACTIONS(1314), - [aux_sym_local_command_token1] = ACTIONS(1314), - [aux_sym_local_forward_token1] = ACTIONS(1314), - [aux_sym_log_level_token1] = ACTIONS(1314), - [aux_sym_log_verbose_token1] = ACTIONS(1314), - [aux_sym_macs_token1] = ACTIONS(1314), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1314), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1314), - [aux_sym_password_authentication_token1] = ACTIONS(1314), - [aux_sym_permit_local_command_token1] = ACTIONS(1314), - [aux_sym_permit_remote_open_token1] = ACTIONS(1314), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1314), - [aux_sym_port_token1] = ACTIONS(1314), - [aux_sym_preferred_authentications_token1] = ACTIONS(1314), - [aux_sym_protocol_token1] = ACTIONS(1314), - [aux_sym_proxy_command_token1] = ACTIONS(1314), - [aux_sym_proxy_jump_token1] = ACTIONS(1314), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1314), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1314), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1314), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1314), - [aux_sym_rekey_limit_token1] = ACTIONS(1314), - [aux_sym_remote_command_token1] = ACTIONS(1314), - [aux_sym_remote_forward_token1] = ACTIONS(1314), - [aux_sym_request_tty_token1] = ACTIONS(1314), - [aux_sym_required_rsa_size_token1] = ACTIONS(1314), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1314), - [aux_sym_security_key_provider_token1] = ACTIONS(1314), - [aux_sym_send_env_token1] = ACTIONS(1314), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1314), - [aux_sym_server_alive_interval_token1] = ACTIONS(1314), - [aux_sym_session_type_token1] = ACTIONS(1314), - [aux_sym_set_env_token1] = ACTIONS(1314), - [aux_sym_stdin_null_token1] = ACTIONS(1314), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1314), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1314), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1314), - [aux_sym_syslog_facility_token1] = ACTIONS(1314), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1314), - [aux_sym_keep_alive_token1] = ACTIONS(1314), - [aux_sym_tag_token1] = ACTIONS(1314), - [aux_sym_tunnel_token1] = ACTIONS(1316), - [aux_sym_tunnel_device_token1] = ACTIONS(1314), - [aux_sym_update_host_keys_token1] = ACTIONS(1314), - [aux_sym_use_keychain_token1] = ACTIONS(1314), - [aux_sym_use_roaming_token1] = ACTIONS(1314), - [aux_sym_user_token1] = ACTIONS(1316), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1314), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1314), - [aux_sym_visual_host_key_token1] = ACTIONS(1314), - [aux_sym_xauth_location_token1] = ACTIONS(1314), + [ts_builtin_sym_end] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3181), + [aux_sym_match_token1] = ACTIONS(3179), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3179), + [aux_sym_address_family_token1] = ACTIONS(3179), + [aux_sym_batch_mode_token1] = ACTIONS(3179), + [aux_sym_bind_address_token1] = ACTIONS(3179), + [aux_sym_bind_interface_token1] = ACTIONS(3179), + [aux_sym_canonical_domains_token1] = ACTIONS(3179), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3179), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3179), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3179), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3179), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3179), + [aux_sym_certificate_file_token1] = ACTIONS(3179), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3179), + [aux_sym_channel_timeout_token1] = ACTIONS(3179), + [aux_sym_check_host_ip_token1] = ACTIONS(3179), + [aux_sym_ciphers_token1] = ACTIONS(3179), + [aux_sym_cipher_token1] = ACTIONS(3181), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3179), + [aux_sym_compression_token1] = ACTIONS(3179), + [aux_sym_connection_attempts_token1] = ACTIONS(3179), + [aux_sym_connect_timeout_token1] = ACTIONS(3179), + [aux_sym_control_master_token1] = ACTIONS(3179), + [aux_sym_control_path_token1] = ACTIONS(3179), + [aux_sym_control_persist_token1] = ACTIONS(3179), + [aux_sym_dynamic_forward_token1] = ACTIONS(3179), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3179), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3179), + [aux_sym_escape_char_token1] = ACTIONS(3179), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3179), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3179), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3179), + [aux_sym_forward_agent_token1] = ACTIONS(3179), + [aux_sym_forward_x11_token1] = ACTIONS(3181), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3179), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3179), + [aux_sym_gateway_ports_token1] = ACTIONS(3179), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3179), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3179), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3179), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3179), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3179), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3179), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3179), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3179), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3179), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3179), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3179), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3179), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3179), + [aux_sym_host_key_alias_token1] = ACTIONS(3179), + [aux_sym_hostname_token1] = ACTIONS(3179), + [aux_sym_identities_only_token1] = ACTIONS(3179), + [aux_sym_identity_agent_token1] = ACTIONS(3179), + [aux_sym_identity_file_token1] = ACTIONS(3179), + [aux_sym_ignore_unknown_token1] = ACTIONS(3179), + [aux_sym_include_token1] = ACTIONS(3179), + [aux_sym_ip_qos_token1] = ACTIONS(3179), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3179), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3179), + [aux_sym_kex_algorithms_token1] = ACTIONS(3179), + [aux_sym_known_hosts_command_token1] = ACTIONS(3179), + [aux_sym_local_command_token1] = ACTIONS(3179), + [aux_sym_local_forward_token1] = ACTIONS(3179), + [aux_sym_log_level_token1] = ACTIONS(3179), + [aux_sym_log_verbose_token1] = ACTIONS(3179), + [aux_sym_macs_token1] = ACTIONS(3179), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3179), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3179), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3179), + [aux_sym_password_authentication_token1] = ACTIONS(3179), + [aux_sym_permit_local_command_token1] = ACTIONS(3179), + [aux_sym_permit_remote_open_token1] = ACTIONS(3179), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3179), + [aux_sym_port_token1] = ACTIONS(3179), + [aux_sym_preferred_authentications_token1] = ACTIONS(3179), + [aux_sym_protocol_token1] = ACTIONS(3179), + [aux_sym_proxy_command_token1] = ACTIONS(3179), + [aux_sym_proxy_jump_token1] = ACTIONS(3179), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3179), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3179), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3179), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3179), + [aux_sym_rekey_limit_token1] = ACTIONS(3179), + [aux_sym_remote_command_token1] = ACTIONS(3179), + [aux_sym_remote_forward_token1] = ACTIONS(3179), + [aux_sym_request_tty_token1] = ACTIONS(3179), + [aux_sym_required_rsa_size_token1] = ACTIONS(3179), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3179), + [aux_sym_security_key_provider_token1] = ACTIONS(3179), + [aux_sym_send_env_token1] = ACTIONS(3179), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3179), + [aux_sym_server_alive_interval_token1] = ACTIONS(3179), + [aux_sym_session_type_token1] = ACTIONS(3179), + [aux_sym_set_env_token1] = ACTIONS(3179), + [aux_sym_stdin_null_token1] = ACTIONS(3179), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3179), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3179), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3179), + [aux_sym_syslog_facility_token1] = ACTIONS(3179), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3179), + [aux_sym_keep_alive_token1] = ACTIONS(3179), + [aux_sym_tag_token1] = ACTIONS(3179), + [aux_sym_tunnel_token1] = ACTIONS(3181), + [aux_sym_tunnel_device_token1] = ACTIONS(3179), + [aux_sym_update_host_keys_token1] = ACTIONS(3179), + [aux_sym_use_keychain_token1] = ACTIONS(3179), + [aux_sym_use_roaming_token1] = ACTIONS(3179), + [aux_sym_user_token1] = ACTIONS(3181), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3179), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3179), + [aux_sym_visual_host_key_token1] = ACTIONS(3179), + [aux_sym_xauth_location_token1] = ACTIONS(3179), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(1362), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1364), - [aux_sym_match_token1] = ACTIONS(1362), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1362), - [aux_sym_address_family_token1] = ACTIONS(1362), - [aux_sym_batch_mode_token1] = ACTIONS(1362), - [aux_sym_bind_address_token1] = ACTIONS(1362), - [aux_sym_bind_interface_token1] = ACTIONS(1362), - [aux_sym_canonical_domains_token1] = ACTIONS(1362), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1362), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1362), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1362), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1362), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1362), - [aux_sym_certificate_file_token1] = ACTIONS(1362), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1362), - [aux_sym_channel_timeout_token1] = ACTIONS(1362), - [aux_sym_check_host_ip_token1] = ACTIONS(1362), - [aux_sym_ciphers_token1] = ACTIONS(1362), - [aux_sym_cipher_token1] = ACTIONS(1364), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1362), - [aux_sym_compression_token1] = ACTIONS(1362), - [aux_sym_connection_attempts_token1] = ACTIONS(1362), - [aux_sym_connect_timeout_token1] = ACTIONS(1362), - [aux_sym_control_master_token1] = ACTIONS(1362), - [aux_sym_control_path_token1] = ACTIONS(1362), - [aux_sym_control_persist_token1] = ACTIONS(1362), - [aux_sym_dynamic_forward_token1] = ACTIONS(1362), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1362), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1362), - [aux_sym_escape_char_token1] = ACTIONS(1362), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1362), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1362), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1362), - [aux_sym_forward_agent_token1] = ACTIONS(1362), - [aux_sym_forward_x11_token1] = ACTIONS(1364), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1362), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1362), - [aux_sym_gateway_ports_token1] = ACTIONS(1362), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1362), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1362), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1362), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1362), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1362), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1362), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1362), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1362), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1362), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1362), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1362), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1362), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1362), - [aux_sym_host_key_alias_token1] = ACTIONS(1362), - [aux_sym_hostname_token1] = ACTIONS(1362), - [aux_sym_identities_only_token1] = ACTIONS(1362), - [aux_sym_identity_agent_token1] = ACTIONS(1362), - [aux_sym_identity_file_token1] = ACTIONS(1362), - [aux_sym_ignore_unknown_token1] = ACTIONS(1362), - [aux_sym_include_token1] = ACTIONS(1362), - [aux_sym_ip_qos_token1] = ACTIONS(1362), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1362), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1362), - [aux_sym_kex_algorithms_token1] = ACTIONS(1362), - [aux_sym_known_hosts_command_token1] = ACTIONS(1362), - [aux_sym_local_command_token1] = ACTIONS(1362), - [aux_sym_local_forward_token1] = ACTIONS(1362), - [aux_sym_log_level_token1] = ACTIONS(1362), - [aux_sym_log_verbose_token1] = ACTIONS(1362), - [aux_sym_macs_token1] = ACTIONS(1362), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1362), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1362), - [aux_sym_password_authentication_token1] = ACTIONS(1362), - [aux_sym_permit_local_command_token1] = ACTIONS(1362), - [aux_sym_permit_remote_open_token1] = ACTIONS(1362), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1362), - [aux_sym_port_token1] = ACTIONS(1362), - [aux_sym_preferred_authentications_token1] = ACTIONS(1362), - [aux_sym_protocol_token1] = ACTIONS(1362), - [aux_sym_proxy_command_token1] = ACTIONS(1362), - [aux_sym_proxy_jump_token1] = ACTIONS(1362), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1362), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1362), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1362), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1362), - [aux_sym_rekey_limit_token1] = ACTIONS(1362), - [aux_sym_remote_command_token1] = ACTIONS(1362), - [aux_sym_remote_forward_token1] = ACTIONS(1362), - [aux_sym_request_tty_token1] = ACTIONS(1362), - [aux_sym_required_rsa_size_token1] = ACTIONS(1362), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1362), - [aux_sym_security_key_provider_token1] = ACTIONS(1362), - [aux_sym_send_env_token1] = ACTIONS(1362), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1362), - [aux_sym_server_alive_interval_token1] = ACTIONS(1362), - [aux_sym_session_type_token1] = ACTIONS(1362), - [aux_sym_set_env_token1] = ACTIONS(1362), - [aux_sym_stdin_null_token1] = ACTIONS(1362), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1362), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1362), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1362), - [aux_sym_syslog_facility_token1] = ACTIONS(1362), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1362), - [aux_sym_keep_alive_token1] = ACTIONS(1362), - [aux_sym_tag_token1] = ACTIONS(1362), - [aux_sym_tunnel_token1] = ACTIONS(1364), - [aux_sym_tunnel_device_token1] = ACTIONS(1362), - [aux_sym_update_host_keys_token1] = ACTIONS(1362), - [aux_sym_use_keychain_token1] = ACTIONS(1362), - [aux_sym_use_roaming_token1] = ACTIONS(1362), - [aux_sym_user_token1] = ACTIONS(1364), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1362), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1362), - [aux_sym_visual_host_key_token1] = ACTIONS(1362), - [aux_sym_xauth_location_token1] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3185), + [aux_sym_match_token1] = ACTIONS(3183), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3183), + [aux_sym_address_family_token1] = ACTIONS(3183), + [aux_sym_batch_mode_token1] = ACTIONS(3183), + [aux_sym_bind_address_token1] = ACTIONS(3183), + [aux_sym_bind_interface_token1] = ACTIONS(3183), + [aux_sym_canonical_domains_token1] = ACTIONS(3183), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3183), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3183), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3183), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3183), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3183), + [aux_sym_certificate_file_token1] = ACTIONS(3183), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3183), + [aux_sym_channel_timeout_token1] = ACTIONS(3183), + [aux_sym_check_host_ip_token1] = ACTIONS(3183), + [aux_sym_ciphers_token1] = ACTIONS(3183), + [aux_sym_cipher_token1] = ACTIONS(3185), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3183), + [aux_sym_compression_token1] = ACTIONS(3183), + [aux_sym_connection_attempts_token1] = ACTIONS(3183), + [aux_sym_connect_timeout_token1] = ACTIONS(3183), + [aux_sym_control_master_token1] = ACTIONS(3183), + [aux_sym_control_path_token1] = ACTIONS(3183), + [aux_sym_control_persist_token1] = ACTIONS(3183), + [aux_sym_dynamic_forward_token1] = ACTIONS(3183), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3183), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3183), + [aux_sym_escape_char_token1] = ACTIONS(3183), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3183), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3183), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3183), + [aux_sym_forward_agent_token1] = ACTIONS(3183), + [aux_sym_forward_x11_token1] = ACTIONS(3185), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3183), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3183), + [aux_sym_gateway_ports_token1] = ACTIONS(3183), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3183), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3183), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3183), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3183), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3183), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3183), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3183), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3183), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3183), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3183), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3183), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3183), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3183), + [aux_sym_host_key_alias_token1] = ACTIONS(3183), + [aux_sym_hostname_token1] = ACTIONS(3183), + [aux_sym_identities_only_token1] = ACTIONS(3183), + [aux_sym_identity_agent_token1] = ACTIONS(3183), + [aux_sym_identity_file_token1] = ACTIONS(3183), + [aux_sym_ignore_unknown_token1] = ACTIONS(3183), + [aux_sym_include_token1] = ACTIONS(3183), + [aux_sym_ip_qos_token1] = ACTIONS(3183), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3183), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3183), + [aux_sym_kex_algorithms_token1] = ACTIONS(3183), + [aux_sym_known_hosts_command_token1] = ACTIONS(3183), + [aux_sym_local_command_token1] = ACTIONS(3183), + [aux_sym_local_forward_token1] = ACTIONS(3183), + [aux_sym_log_level_token1] = ACTIONS(3183), + [aux_sym_log_verbose_token1] = ACTIONS(3183), + [aux_sym_macs_token1] = ACTIONS(3183), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3183), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3183), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3183), + [aux_sym_password_authentication_token1] = ACTIONS(3183), + [aux_sym_permit_local_command_token1] = ACTIONS(3183), + [aux_sym_permit_remote_open_token1] = ACTIONS(3183), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3183), + [aux_sym_port_token1] = ACTIONS(3183), + [aux_sym_preferred_authentications_token1] = ACTIONS(3183), + [aux_sym_protocol_token1] = ACTIONS(3183), + [aux_sym_proxy_command_token1] = ACTIONS(3183), + [aux_sym_proxy_jump_token1] = ACTIONS(3183), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3183), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3183), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3183), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3183), + [aux_sym_rekey_limit_token1] = ACTIONS(3183), + [aux_sym_remote_command_token1] = ACTIONS(3183), + [aux_sym_remote_forward_token1] = ACTIONS(3183), + [aux_sym_request_tty_token1] = ACTIONS(3183), + [aux_sym_required_rsa_size_token1] = ACTIONS(3183), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3183), + [aux_sym_security_key_provider_token1] = ACTIONS(3183), + [aux_sym_send_env_token1] = ACTIONS(3183), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3183), + [aux_sym_server_alive_interval_token1] = ACTIONS(3183), + [aux_sym_session_type_token1] = ACTIONS(3183), + [aux_sym_set_env_token1] = ACTIONS(3183), + [aux_sym_stdin_null_token1] = ACTIONS(3183), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3183), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3183), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3183), + [aux_sym_syslog_facility_token1] = ACTIONS(3183), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3183), + [aux_sym_keep_alive_token1] = ACTIONS(3183), + [aux_sym_tag_token1] = ACTIONS(3183), + [aux_sym_tunnel_token1] = ACTIONS(3185), + [aux_sym_tunnel_device_token1] = ACTIONS(3183), + [aux_sym_update_host_keys_token1] = ACTIONS(3183), + [aux_sym_use_keychain_token1] = ACTIONS(3183), + [aux_sym_use_roaming_token1] = ACTIONS(3183), + [aux_sym_user_token1] = ACTIONS(3185), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3183), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3183), + [aux_sym_visual_host_key_token1] = ACTIONS(3183), + [aux_sym_xauth_location_token1] = ACTIONS(3183), }, [491] = { - [ts_builtin_sym_end] = ACTIONS(3172), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3174), - [aux_sym_match_token1] = ACTIONS(3172), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3172), - [aux_sym_address_family_token1] = ACTIONS(3172), - [aux_sym_batch_mode_token1] = ACTIONS(3172), - [aux_sym_bind_address_token1] = ACTIONS(3172), - [aux_sym_bind_interface_token1] = ACTIONS(3172), - [aux_sym_canonical_domains_token1] = ACTIONS(3172), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3172), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3172), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3172), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3172), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3172), - [aux_sym_certificate_file_token1] = ACTIONS(3172), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3172), - [aux_sym_channel_timeout_token1] = ACTIONS(3172), - [aux_sym_check_host_ip_token1] = ACTIONS(3172), - [aux_sym_ciphers_token1] = ACTIONS(3172), - [aux_sym_cipher_token1] = ACTIONS(3174), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3172), - [aux_sym_compression_token1] = ACTIONS(3172), - [aux_sym_connection_attempts_token1] = ACTIONS(3172), - [aux_sym_connect_timeout_token1] = ACTIONS(3172), - [aux_sym_control_master_token1] = ACTIONS(3172), - [aux_sym_control_path_token1] = ACTIONS(3172), - [aux_sym_control_persist_token1] = ACTIONS(3172), - [aux_sym_dynamic_forward_token1] = ACTIONS(3172), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3172), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3172), - [aux_sym_escape_char_token1] = ACTIONS(3172), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3172), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3172), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3172), - [aux_sym_forward_agent_token1] = ACTIONS(3172), - [aux_sym_forward_x11_token1] = ACTIONS(3174), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3172), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3172), - [aux_sym_gateway_ports_token1] = ACTIONS(3172), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3172), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3172), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3172), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3172), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3172), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3172), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3172), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3172), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3172), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3172), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3172), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3172), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3172), - [aux_sym_host_key_alias_token1] = ACTIONS(3172), - [aux_sym_hostname_token1] = ACTIONS(3172), - [aux_sym_identities_only_token1] = ACTIONS(3172), - [aux_sym_identity_agent_token1] = ACTIONS(3172), - [aux_sym_identity_file_token1] = ACTIONS(3172), - [aux_sym_ignore_unknown_token1] = ACTIONS(3172), - [aux_sym_include_token1] = ACTIONS(3172), - [aux_sym_ip_qos_token1] = ACTIONS(3172), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3172), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3172), - [aux_sym_kex_algorithms_token1] = ACTIONS(3172), - [aux_sym_known_hosts_command_token1] = ACTIONS(3172), - [aux_sym_local_command_token1] = ACTIONS(3172), - [aux_sym_local_forward_token1] = ACTIONS(3172), - [aux_sym_log_level_token1] = ACTIONS(3172), - [aux_sym_log_verbose_token1] = ACTIONS(3172), - [aux_sym_macs_token1] = ACTIONS(3172), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3172), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3172), - [aux_sym_password_authentication_token1] = ACTIONS(3172), - [aux_sym_permit_local_command_token1] = ACTIONS(3172), - [aux_sym_permit_remote_open_token1] = ACTIONS(3172), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3172), - [aux_sym_port_token1] = ACTIONS(3172), - [aux_sym_preferred_authentications_token1] = ACTIONS(3172), - [aux_sym_protocol_token1] = ACTIONS(3172), - [aux_sym_proxy_command_token1] = ACTIONS(3172), - [aux_sym_proxy_jump_token1] = ACTIONS(3172), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3172), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3172), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3172), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3172), - [aux_sym_rekey_limit_token1] = ACTIONS(3172), - [aux_sym_remote_command_token1] = ACTIONS(3172), - [aux_sym_remote_forward_token1] = ACTIONS(3172), - [aux_sym_request_tty_token1] = ACTIONS(3172), - [aux_sym_required_rsa_size_token1] = ACTIONS(3172), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3172), - [aux_sym_security_key_provider_token1] = ACTIONS(3172), - [aux_sym_send_env_token1] = ACTIONS(3172), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3172), - [aux_sym_server_alive_interval_token1] = ACTIONS(3172), - [aux_sym_session_type_token1] = ACTIONS(3172), - [aux_sym_set_env_token1] = ACTIONS(3172), - [aux_sym_stdin_null_token1] = ACTIONS(3172), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3172), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3172), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3172), - [aux_sym_syslog_facility_token1] = ACTIONS(3172), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3172), - [aux_sym_keep_alive_token1] = ACTIONS(3172), - [aux_sym_tag_token1] = ACTIONS(3172), - [aux_sym_tunnel_token1] = ACTIONS(3174), - [aux_sym_tunnel_device_token1] = ACTIONS(3172), - [aux_sym_update_host_keys_token1] = ACTIONS(3172), - [aux_sym_use_keychain_token1] = ACTIONS(3172), - [aux_sym_use_roaming_token1] = ACTIONS(3172), - [aux_sym_user_token1] = ACTIONS(3174), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3172), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3172), - [aux_sym_visual_host_key_token1] = ACTIONS(3172), - [aux_sym_xauth_location_token1] = ACTIONS(3172), + [ts_builtin_sym_end] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3189), + [aux_sym_match_token1] = ACTIONS(3187), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3187), + [aux_sym_address_family_token1] = ACTIONS(3187), + [aux_sym_batch_mode_token1] = ACTIONS(3187), + [aux_sym_bind_address_token1] = ACTIONS(3187), + [aux_sym_bind_interface_token1] = ACTIONS(3187), + [aux_sym_canonical_domains_token1] = ACTIONS(3187), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3187), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3187), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3187), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3187), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3187), + [aux_sym_certificate_file_token1] = ACTIONS(3187), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3187), + [aux_sym_channel_timeout_token1] = ACTIONS(3187), + [aux_sym_check_host_ip_token1] = ACTIONS(3187), + [aux_sym_ciphers_token1] = ACTIONS(3187), + [aux_sym_cipher_token1] = ACTIONS(3189), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3187), + [aux_sym_compression_token1] = ACTIONS(3187), + [aux_sym_connection_attempts_token1] = ACTIONS(3187), + [aux_sym_connect_timeout_token1] = ACTIONS(3187), + [aux_sym_control_master_token1] = ACTIONS(3187), + [aux_sym_control_path_token1] = ACTIONS(3187), + [aux_sym_control_persist_token1] = ACTIONS(3187), + [aux_sym_dynamic_forward_token1] = ACTIONS(3187), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3187), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3187), + [aux_sym_escape_char_token1] = ACTIONS(3187), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3187), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3187), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3187), + [aux_sym_forward_agent_token1] = ACTIONS(3187), + [aux_sym_forward_x11_token1] = ACTIONS(3189), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3187), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3187), + [aux_sym_gateway_ports_token1] = ACTIONS(3187), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3187), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3187), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3187), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3187), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3187), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3187), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3187), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3187), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3187), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3187), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3187), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3187), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3187), + [aux_sym_host_key_alias_token1] = ACTIONS(3187), + [aux_sym_hostname_token1] = ACTIONS(3187), + [aux_sym_identities_only_token1] = ACTIONS(3187), + [aux_sym_identity_agent_token1] = ACTIONS(3187), + [aux_sym_identity_file_token1] = ACTIONS(3187), + [aux_sym_ignore_unknown_token1] = ACTIONS(3187), + [aux_sym_include_token1] = ACTIONS(3187), + [aux_sym_ip_qos_token1] = ACTIONS(3187), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3187), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3187), + [aux_sym_kex_algorithms_token1] = ACTIONS(3187), + [aux_sym_known_hosts_command_token1] = ACTIONS(3187), + [aux_sym_local_command_token1] = ACTIONS(3187), + [aux_sym_local_forward_token1] = ACTIONS(3187), + [aux_sym_log_level_token1] = ACTIONS(3187), + [aux_sym_log_verbose_token1] = ACTIONS(3187), + [aux_sym_macs_token1] = ACTIONS(3187), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3187), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3187), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3187), + [aux_sym_password_authentication_token1] = ACTIONS(3187), + [aux_sym_permit_local_command_token1] = ACTIONS(3187), + [aux_sym_permit_remote_open_token1] = ACTIONS(3187), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3187), + [aux_sym_port_token1] = ACTIONS(3187), + [aux_sym_preferred_authentications_token1] = ACTIONS(3187), + [aux_sym_protocol_token1] = ACTIONS(3187), + [aux_sym_proxy_command_token1] = ACTIONS(3187), + [aux_sym_proxy_jump_token1] = ACTIONS(3187), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3187), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3187), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3187), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3187), + [aux_sym_rekey_limit_token1] = ACTIONS(3187), + [aux_sym_remote_command_token1] = ACTIONS(3187), + [aux_sym_remote_forward_token1] = ACTIONS(3187), + [aux_sym_request_tty_token1] = ACTIONS(3187), + [aux_sym_required_rsa_size_token1] = ACTIONS(3187), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3187), + [aux_sym_security_key_provider_token1] = ACTIONS(3187), + [aux_sym_send_env_token1] = ACTIONS(3187), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3187), + [aux_sym_server_alive_interval_token1] = ACTIONS(3187), + [aux_sym_session_type_token1] = ACTIONS(3187), + [aux_sym_set_env_token1] = ACTIONS(3187), + [aux_sym_stdin_null_token1] = ACTIONS(3187), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3187), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3187), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3187), + [aux_sym_syslog_facility_token1] = ACTIONS(3187), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3187), + [aux_sym_keep_alive_token1] = ACTIONS(3187), + [aux_sym_tag_token1] = ACTIONS(3187), + [aux_sym_tunnel_token1] = ACTIONS(3189), + [aux_sym_tunnel_device_token1] = ACTIONS(3187), + [aux_sym_update_host_keys_token1] = ACTIONS(3187), + [aux_sym_use_keychain_token1] = ACTIONS(3187), + [aux_sym_use_roaming_token1] = ACTIONS(3187), + [aux_sym_user_token1] = ACTIONS(3189), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3187), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3187), + [aux_sym_visual_host_key_token1] = ACTIONS(3187), + [aux_sym_xauth_location_token1] = ACTIONS(3187), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(3176), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3178), - [aux_sym_match_token1] = ACTIONS(3176), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3176), - [aux_sym_address_family_token1] = ACTIONS(3176), - [aux_sym_batch_mode_token1] = ACTIONS(3176), - [aux_sym_bind_address_token1] = ACTIONS(3176), - [aux_sym_bind_interface_token1] = ACTIONS(3176), - [aux_sym_canonical_domains_token1] = ACTIONS(3176), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3176), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3176), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3176), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3176), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3176), - [aux_sym_certificate_file_token1] = ACTIONS(3176), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3176), - [aux_sym_channel_timeout_token1] = ACTIONS(3176), - [aux_sym_check_host_ip_token1] = ACTIONS(3176), - [aux_sym_ciphers_token1] = ACTIONS(3176), - [aux_sym_cipher_token1] = ACTIONS(3178), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3176), - [aux_sym_compression_token1] = ACTIONS(3176), - [aux_sym_connection_attempts_token1] = ACTIONS(3176), - [aux_sym_connect_timeout_token1] = ACTIONS(3176), - [aux_sym_control_master_token1] = ACTIONS(3176), - [aux_sym_control_path_token1] = ACTIONS(3176), - [aux_sym_control_persist_token1] = ACTIONS(3176), - [aux_sym_dynamic_forward_token1] = ACTIONS(3176), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3176), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3176), - [aux_sym_escape_char_token1] = ACTIONS(3176), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3176), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3176), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3176), - [aux_sym_forward_agent_token1] = ACTIONS(3176), - [aux_sym_forward_x11_token1] = ACTIONS(3178), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3176), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3176), - [aux_sym_gateway_ports_token1] = ACTIONS(3176), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3176), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3176), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3176), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3176), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3176), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3176), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3176), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3176), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3176), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3176), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3176), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3176), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3176), - [aux_sym_host_key_alias_token1] = ACTIONS(3176), - [aux_sym_hostname_token1] = ACTIONS(3176), - [aux_sym_identities_only_token1] = ACTIONS(3176), - [aux_sym_identity_agent_token1] = ACTIONS(3176), - [aux_sym_identity_file_token1] = ACTIONS(3176), - [aux_sym_ignore_unknown_token1] = ACTIONS(3176), - [aux_sym_include_token1] = ACTIONS(3176), - [aux_sym_ip_qos_token1] = ACTIONS(3176), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3176), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3176), - [aux_sym_kex_algorithms_token1] = ACTIONS(3176), - [aux_sym_known_hosts_command_token1] = ACTIONS(3176), - [aux_sym_local_command_token1] = ACTIONS(3176), - [aux_sym_local_forward_token1] = ACTIONS(3176), - [aux_sym_log_level_token1] = ACTIONS(3176), - [aux_sym_log_verbose_token1] = ACTIONS(3176), - [aux_sym_macs_token1] = ACTIONS(3176), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3176), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3176), - [aux_sym_password_authentication_token1] = ACTIONS(3176), - [aux_sym_permit_local_command_token1] = ACTIONS(3176), - [aux_sym_permit_remote_open_token1] = ACTIONS(3176), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3176), - [aux_sym_port_token1] = ACTIONS(3176), - [aux_sym_preferred_authentications_token1] = ACTIONS(3176), - [aux_sym_protocol_token1] = ACTIONS(3176), - [aux_sym_proxy_command_token1] = ACTIONS(3176), - [aux_sym_proxy_jump_token1] = ACTIONS(3176), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3176), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3176), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3176), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3176), - [aux_sym_rekey_limit_token1] = ACTIONS(3176), - [aux_sym_remote_command_token1] = ACTIONS(3176), - [aux_sym_remote_forward_token1] = ACTIONS(3176), - [aux_sym_request_tty_token1] = ACTIONS(3176), - [aux_sym_required_rsa_size_token1] = ACTIONS(3176), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3176), - [aux_sym_security_key_provider_token1] = ACTIONS(3176), - [aux_sym_send_env_token1] = ACTIONS(3176), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3176), - [aux_sym_server_alive_interval_token1] = ACTIONS(3176), - [aux_sym_session_type_token1] = ACTIONS(3176), - [aux_sym_set_env_token1] = ACTIONS(3176), - [aux_sym_stdin_null_token1] = ACTIONS(3176), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3176), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3176), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3176), - [aux_sym_syslog_facility_token1] = ACTIONS(3176), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3176), - [aux_sym_keep_alive_token1] = ACTIONS(3176), - [aux_sym_tag_token1] = ACTIONS(3176), - [aux_sym_tunnel_token1] = ACTIONS(3178), - [aux_sym_tunnel_device_token1] = ACTIONS(3176), - [aux_sym_update_host_keys_token1] = ACTIONS(3176), - [aux_sym_use_keychain_token1] = ACTIONS(3176), - [aux_sym_use_roaming_token1] = ACTIONS(3176), - [aux_sym_user_token1] = ACTIONS(3178), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3176), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3176), - [aux_sym_visual_host_key_token1] = ACTIONS(3176), - [aux_sym_xauth_location_token1] = ACTIONS(3176), + [ts_builtin_sym_end] = ACTIONS(3191), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3193), + [aux_sym_match_token1] = ACTIONS(3191), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3191), + [aux_sym_address_family_token1] = ACTIONS(3191), + [aux_sym_batch_mode_token1] = ACTIONS(3191), + [aux_sym_bind_address_token1] = ACTIONS(3191), + [aux_sym_bind_interface_token1] = ACTIONS(3191), + [aux_sym_canonical_domains_token1] = ACTIONS(3191), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3191), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3191), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3191), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3191), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3191), + [aux_sym_certificate_file_token1] = ACTIONS(3191), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3191), + [aux_sym_channel_timeout_token1] = ACTIONS(3191), + [aux_sym_check_host_ip_token1] = ACTIONS(3191), + [aux_sym_ciphers_token1] = ACTIONS(3191), + [aux_sym_cipher_token1] = ACTIONS(3193), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3191), + [aux_sym_compression_token1] = ACTIONS(3191), + [aux_sym_connection_attempts_token1] = ACTIONS(3191), + [aux_sym_connect_timeout_token1] = ACTIONS(3191), + [aux_sym_control_master_token1] = ACTIONS(3191), + [aux_sym_control_path_token1] = ACTIONS(3191), + [aux_sym_control_persist_token1] = ACTIONS(3191), + [aux_sym_dynamic_forward_token1] = ACTIONS(3191), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3191), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3191), + [aux_sym_escape_char_token1] = ACTIONS(3191), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3191), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3191), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3191), + [aux_sym_forward_agent_token1] = ACTIONS(3191), + [aux_sym_forward_x11_token1] = ACTIONS(3193), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3191), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3191), + [aux_sym_gateway_ports_token1] = ACTIONS(3191), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3191), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3191), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3191), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3191), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3191), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3191), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3191), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3191), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3191), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3191), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3191), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3191), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3191), + [aux_sym_host_key_alias_token1] = ACTIONS(3191), + [aux_sym_hostname_token1] = ACTIONS(3191), + [aux_sym_identities_only_token1] = ACTIONS(3191), + [aux_sym_identity_agent_token1] = ACTIONS(3191), + [aux_sym_identity_file_token1] = ACTIONS(3191), + [aux_sym_ignore_unknown_token1] = ACTIONS(3191), + [aux_sym_include_token1] = ACTIONS(3191), + [aux_sym_ip_qos_token1] = ACTIONS(3191), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3191), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3191), + [aux_sym_kex_algorithms_token1] = ACTIONS(3191), + [aux_sym_known_hosts_command_token1] = ACTIONS(3191), + [aux_sym_local_command_token1] = ACTIONS(3191), + [aux_sym_local_forward_token1] = ACTIONS(3191), + [aux_sym_log_level_token1] = ACTIONS(3191), + [aux_sym_log_verbose_token1] = ACTIONS(3191), + [aux_sym_macs_token1] = ACTIONS(3191), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3191), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3191), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3191), + [aux_sym_password_authentication_token1] = ACTIONS(3191), + [aux_sym_permit_local_command_token1] = ACTIONS(3191), + [aux_sym_permit_remote_open_token1] = ACTIONS(3191), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3191), + [aux_sym_port_token1] = ACTIONS(3191), + [aux_sym_preferred_authentications_token1] = ACTIONS(3191), + [aux_sym_protocol_token1] = ACTIONS(3191), + [aux_sym_proxy_command_token1] = ACTIONS(3191), + [aux_sym_proxy_jump_token1] = ACTIONS(3191), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3191), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3191), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3191), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3191), + [aux_sym_rekey_limit_token1] = ACTIONS(3191), + [aux_sym_remote_command_token1] = ACTIONS(3191), + [aux_sym_remote_forward_token1] = ACTIONS(3191), + [aux_sym_request_tty_token1] = ACTIONS(3191), + [aux_sym_required_rsa_size_token1] = ACTIONS(3191), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3191), + [aux_sym_security_key_provider_token1] = ACTIONS(3191), + [aux_sym_send_env_token1] = ACTIONS(3191), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3191), + [aux_sym_server_alive_interval_token1] = ACTIONS(3191), + [aux_sym_session_type_token1] = ACTIONS(3191), + [aux_sym_set_env_token1] = ACTIONS(3191), + [aux_sym_stdin_null_token1] = ACTIONS(3191), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3191), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3191), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3191), + [aux_sym_syslog_facility_token1] = ACTIONS(3191), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3191), + [aux_sym_keep_alive_token1] = ACTIONS(3191), + [aux_sym_tag_token1] = ACTIONS(3191), + [aux_sym_tunnel_token1] = ACTIONS(3193), + [aux_sym_tunnel_device_token1] = ACTIONS(3191), + [aux_sym_update_host_keys_token1] = ACTIONS(3191), + [aux_sym_use_keychain_token1] = ACTIONS(3191), + [aux_sym_use_roaming_token1] = ACTIONS(3191), + [aux_sym_user_token1] = ACTIONS(3193), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3191), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3191), + [aux_sym_visual_host_key_token1] = ACTIONS(3191), + [aux_sym_xauth_location_token1] = ACTIONS(3191), }, [493] = { - [ts_builtin_sym_end] = ACTIONS(3180), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3182), - [aux_sym_match_token1] = ACTIONS(3180), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3180), - [aux_sym_address_family_token1] = ACTIONS(3180), - [aux_sym_batch_mode_token1] = ACTIONS(3180), - [aux_sym_bind_address_token1] = ACTIONS(3180), - [aux_sym_bind_interface_token1] = ACTIONS(3180), - [aux_sym_canonical_domains_token1] = ACTIONS(3180), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3180), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3180), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3180), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3180), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3180), - [aux_sym_certificate_file_token1] = ACTIONS(3180), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3180), - [aux_sym_channel_timeout_token1] = ACTIONS(3180), - [aux_sym_check_host_ip_token1] = ACTIONS(3180), - [aux_sym_ciphers_token1] = ACTIONS(3180), - [aux_sym_cipher_token1] = ACTIONS(3182), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3180), - [aux_sym_compression_token1] = ACTIONS(3180), - [aux_sym_connection_attempts_token1] = ACTIONS(3180), - [aux_sym_connect_timeout_token1] = ACTIONS(3180), - [aux_sym_control_master_token1] = ACTIONS(3180), - [aux_sym_control_path_token1] = ACTIONS(3180), - [aux_sym_control_persist_token1] = ACTIONS(3180), - [aux_sym_dynamic_forward_token1] = ACTIONS(3180), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3180), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3180), - [aux_sym_escape_char_token1] = ACTIONS(3180), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3180), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3180), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3180), - [aux_sym_forward_agent_token1] = ACTIONS(3180), - [aux_sym_forward_x11_token1] = ACTIONS(3182), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3180), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3180), - [aux_sym_gateway_ports_token1] = ACTIONS(3180), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3180), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3180), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3180), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3180), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3180), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3180), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3180), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3180), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3180), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3180), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3180), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3180), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3180), - [aux_sym_host_key_alias_token1] = ACTIONS(3180), - [aux_sym_hostname_token1] = ACTIONS(3180), - [aux_sym_identities_only_token1] = ACTIONS(3180), - [aux_sym_identity_agent_token1] = ACTIONS(3180), - [aux_sym_identity_file_token1] = ACTIONS(3180), - [aux_sym_ignore_unknown_token1] = ACTIONS(3180), - [aux_sym_include_token1] = ACTIONS(3180), - [aux_sym_ip_qos_token1] = ACTIONS(3180), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3180), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3180), - [aux_sym_kex_algorithms_token1] = ACTIONS(3180), - [aux_sym_known_hosts_command_token1] = ACTIONS(3180), - [aux_sym_local_command_token1] = ACTIONS(3180), - [aux_sym_local_forward_token1] = ACTIONS(3180), - [aux_sym_log_level_token1] = ACTIONS(3180), - [aux_sym_log_verbose_token1] = ACTIONS(3180), - [aux_sym_macs_token1] = ACTIONS(3180), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3180), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3180), - [aux_sym_password_authentication_token1] = ACTIONS(3180), - [aux_sym_permit_local_command_token1] = ACTIONS(3180), - [aux_sym_permit_remote_open_token1] = ACTIONS(3180), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3180), - [aux_sym_port_token1] = ACTIONS(3180), - [aux_sym_preferred_authentications_token1] = ACTIONS(3180), - [aux_sym_protocol_token1] = ACTIONS(3180), - [aux_sym_proxy_command_token1] = ACTIONS(3180), - [aux_sym_proxy_jump_token1] = ACTIONS(3180), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3180), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3180), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3180), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3180), - [aux_sym_rekey_limit_token1] = ACTIONS(3180), - [aux_sym_remote_command_token1] = ACTIONS(3180), - [aux_sym_remote_forward_token1] = ACTIONS(3180), - [aux_sym_request_tty_token1] = ACTIONS(3180), - [aux_sym_required_rsa_size_token1] = ACTIONS(3180), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3180), - [aux_sym_security_key_provider_token1] = ACTIONS(3180), - [aux_sym_send_env_token1] = ACTIONS(3180), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3180), - [aux_sym_server_alive_interval_token1] = ACTIONS(3180), - [aux_sym_session_type_token1] = ACTIONS(3180), - [aux_sym_set_env_token1] = ACTIONS(3180), - [aux_sym_stdin_null_token1] = ACTIONS(3180), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3180), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3180), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3180), - [aux_sym_syslog_facility_token1] = ACTIONS(3180), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3180), - [aux_sym_keep_alive_token1] = ACTIONS(3180), - [aux_sym_tag_token1] = ACTIONS(3180), - [aux_sym_tunnel_token1] = ACTIONS(3182), - [aux_sym_tunnel_device_token1] = ACTIONS(3180), - [aux_sym_update_host_keys_token1] = ACTIONS(3180), - [aux_sym_use_keychain_token1] = ACTIONS(3180), - [aux_sym_use_roaming_token1] = ACTIONS(3180), - [aux_sym_user_token1] = ACTIONS(3182), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3180), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3180), - [aux_sym_visual_host_key_token1] = ACTIONS(3180), - [aux_sym_xauth_location_token1] = ACTIONS(3180), + [ts_builtin_sym_end] = ACTIONS(3195), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3197), + [aux_sym_match_token1] = ACTIONS(3195), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3195), + [aux_sym_address_family_token1] = ACTIONS(3195), + [aux_sym_batch_mode_token1] = ACTIONS(3195), + [aux_sym_bind_address_token1] = ACTIONS(3195), + [aux_sym_bind_interface_token1] = ACTIONS(3195), + [aux_sym_canonical_domains_token1] = ACTIONS(3195), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3195), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3195), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3195), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3195), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3195), + [aux_sym_certificate_file_token1] = ACTIONS(3195), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3195), + [aux_sym_channel_timeout_token1] = ACTIONS(3195), + [aux_sym_check_host_ip_token1] = ACTIONS(3195), + [aux_sym_ciphers_token1] = ACTIONS(3195), + [aux_sym_cipher_token1] = ACTIONS(3197), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3195), + [aux_sym_compression_token1] = ACTIONS(3195), + [aux_sym_connection_attempts_token1] = ACTIONS(3195), + [aux_sym_connect_timeout_token1] = ACTIONS(3195), + [aux_sym_control_master_token1] = ACTIONS(3195), + [aux_sym_control_path_token1] = ACTIONS(3195), + [aux_sym_control_persist_token1] = ACTIONS(3195), + [aux_sym_dynamic_forward_token1] = ACTIONS(3195), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3195), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3195), + [aux_sym_escape_char_token1] = ACTIONS(3195), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3195), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3195), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3195), + [aux_sym_forward_agent_token1] = ACTIONS(3195), + [aux_sym_forward_x11_token1] = ACTIONS(3197), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3195), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3195), + [aux_sym_gateway_ports_token1] = ACTIONS(3195), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3195), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3195), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3195), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3195), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3195), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3195), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3195), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3195), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3195), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3195), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3195), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3195), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3195), + [aux_sym_host_key_alias_token1] = ACTIONS(3195), + [aux_sym_hostname_token1] = ACTIONS(3195), + [aux_sym_identities_only_token1] = ACTIONS(3195), + [aux_sym_identity_agent_token1] = ACTIONS(3195), + [aux_sym_identity_file_token1] = ACTIONS(3195), + [aux_sym_ignore_unknown_token1] = ACTIONS(3195), + [aux_sym_include_token1] = ACTIONS(3195), + [aux_sym_ip_qos_token1] = ACTIONS(3195), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3195), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3195), + [aux_sym_kex_algorithms_token1] = ACTIONS(3195), + [aux_sym_known_hosts_command_token1] = ACTIONS(3195), + [aux_sym_local_command_token1] = ACTIONS(3195), + [aux_sym_local_forward_token1] = ACTIONS(3195), + [aux_sym_log_level_token1] = ACTIONS(3195), + [aux_sym_log_verbose_token1] = ACTIONS(3195), + [aux_sym_macs_token1] = ACTIONS(3195), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3195), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3195), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3195), + [aux_sym_password_authentication_token1] = ACTIONS(3195), + [aux_sym_permit_local_command_token1] = ACTIONS(3195), + [aux_sym_permit_remote_open_token1] = ACTIONS(3195), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3195), + [aux_sym_port_token1] = ACTIONS(3195), + [aux_sym_preferred_authentications_token1] = ACTIONS(3195), + [aux_sym_protocol_token1] = ACTIONS(3195), + [aux_sym_proxy_command_token1] = ACTIONS(3195), + [aux_sym_proxy_jump_token1] = ACTIONS(3195), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3195), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3195), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3195), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3195), + [aux_sym_rekey_limit_token1] = ACTIONS(3195), + [aux_sym_remote_command_token1] = ACTIONS(3195), + [aux_sym_remote_forward_token1] = ACTIONS(3195), + [aux_sym_request_tty_token1] = ACTIONS(3195), + [aux_sym_required_rsa_size_token1] = ACTIONS(3195), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3195), + [aux_sym_security_key_provider_token1] = ACTIONS(3195), + [aux_sym_send_env_token1] = ACTIONS(3195), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3195), + [aux_sym_server_alive_interval_token1] = ACTIONS(3195), + [aux_sym_session_type_token1] = ACTIONS(3195), + [aux_sym_set_env_token1] = ACTIONS(3195), + [aux_sym_stdin_null_token1] = ACTIONS(3195), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3195), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3195), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3195), + [aux_sym_syslog_facility_token1] = ACTIONS(3195), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3195), + [aux_sym_keep_alive_token1] = ACTIONS(3195), + [aux_sym_tag_token1] = ACTIONS(3195), + [aux_sym_tunnel_token1] = ACTIONS(3197), + [aux_sym_tunnel_device_token1] = ACTIONS(3195), + [aux_sym_update_host_keys_token1] = ACTIONS(3195), + [aux_sym_use_keychain_token1] = ACTIONS(3195), + [aux_sym_use_roaming_token1] = ACTIONS(3195), + [aux_sym_user_token1] = ACTIONS(3197), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3195), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3195), + [aux_sym_visual_host_key_token1] = ACTIONS(3195), + [aux_sym_xauth_location_token1] = ACTIONS(3195), }, [494] = { - [ts_builtin_sym_end] = ACTIONS(1368), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1370), - [aux_sym_match_token1] = ACTIONS(1368), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1368), - [aux_sym_address_family_token1] = ACTIONS(1368), - [aux_sym_batch_mode_token1] = ACTIONS(1368), - [aux_sym_bind_address_token1] = ACTIONS(1368), - [aux_sym_bind_interface_token1] = ACTIONS(1368), - [aux_sym_canonical_domains_token1] = ACTIONS(1368), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1368), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1368), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1368), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1368), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1368), - [aux_sym_certificate_file_token1] = ACTIONS(1368), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1368), - [aux_sym_channel_timeout_token1] = ACTIONS(1368), - [aux_sym_check_host_ip_token1] = ACTIONS(1368), - [aux_sym_ciphers_token1] = ACTIONS(1368), - [aux_sym_cipher_token1] = ACTIONS(1370), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1368), - [aux_sym_compression_token1] = ACTIONS(1368), - [aux_sym_connection_attempts_token1] = ACTIONS(1368), - [aux_sym_connect_timeout_token1] = ACTIONS(1368), - [aux_sym_control_master_token1] = ACTIONS(1368), - [aux_sym_control_path_token1] = ACTIONS(1368), - [aux_sym_control_persist_token1] = ACTIONS(1368), - [aux_sym_dynamic_forward_token1] = ACTIONS(1368), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1368), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1368), - [aux_sym_escape_char_token1] = ACTIONS(1368), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1368), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1368), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1368), - [aux_sym_forward_agent_token1] = ACTIONS(1368), - [aux_sym_forward_x11_token1] = ACTIONS(1370), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1368), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1368), - [aux_sym_gateway_ports_token1] = ACTIONS(1368), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1368), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1368), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1368), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1368), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1368), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1368), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1368), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1368), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1368), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1368), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1368), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1368), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1368), - [aux_sym_host_key_alias_token1] = ACTIONS(1368), - [aux_sym_hostname_token1] = ACTIONS(1368), - [aux_sym_identities_only_token1] = ACTIONS(1368), - [aux_sym_identity_agent_token1] = ACTIONS(1368), - [aux_sym_identity_file_token1] = ACTIONS(1368), - [aux_sym_ignore_unknown_token1] = ACTIONS(1368), - [aux_sym_include_token1] = ACTIONS(1368), - [aux_sym_ip_qos_token1] = ACTIONS(1368), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1368), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1368), - [aux_sym_kex_algorithms_token1] = ACTIONS(1368), - [aux_sym_known_hosts_command_token1] = ACTIONS(1368), - [aux_sym_local_command_token1] = ACTIONS(1368), - [aux_sym_local_forward_token1] = ACTIONS(1368), - [aux_sym_log_level_token1] = ACTIONS(1368), - [aux_sym_log_verbose_token1] = ACTIONS(1368), - [aux_sym_macs_token1] = ACTIONS(1368), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1368), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1368), - [aux_sym_password_authentication_token1] = ACTIONS(1368), - [aux_sym_permit_local_command_token1] = ACTIONS(1368), - [aux_sym_permit_remote_open_token1] = ACTIONS(1368), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1368), - [aux_sym_port_token1] = ACTIONS(1368), - [aux_sym_preferred_authentications_token1] = ACTIONS(1368), - [aux_sym_protocol_token1] = ACTIONS(1368), - [aux_sym_proxy_command_token1] = ACTIONS(1368), - [aux_sym_proxy_jump_token1] = ACTIONS(1368), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1368), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1368), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1368), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1368), - [aux_sym_rekey_limit_token1] = ACTIONS(1368), - [aux_sym_remote_command_token1] = ACTIONS(1368), - [aux_sym_remote_forward_token1] = ACTIONS(1368), - [aux_sym_request_tty_token1] = ACTIONS(1368), - [aux_sym_required_rsa_size_token1] = ACTIONS(1368), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1368), - [aux_sym_security_key_provider_token1] = ACTIONS(1368), - [aux_sym_send_env_token1] = ACTIONS(1368), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1368), - [aux_sym_server_alive_interval_token1] = ACTIONS(1368), - [aux_sym_session_type_token1] = ACTIONS(1368), - [aux_sym_set_env_token1] = ACTIONS(1368), - [aux_sym_stdin_null_token1] = ACTIONS(1368), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1368), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1368), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1368), - [aux_sym_syslog_facility_token1] = ACTIONS(1368), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1368), - [aux_sym_keep_alive_token1] = ACTIONS(1368), - [aux_sym_tag_token1] = ACTIONS(1368), - [aux_sym_tunnel_token1] = ACTIONS(1370), - [aux_sym_tunnel_device_token1] = ACTIONS(1368), - [aux_sym_update_host_keys_token1] = ACTIONS(1368), - [aux_sym_use_keychain_token1] = ACTIONS(1368), - [aux_sym_use_roaming_token1] = ACTIONS(1368), - [aux_sym_user_token1] = ACTIONS(1370), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1368), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1368), - [aux_sym_visual_host_key_token1] = ACTIONS(1368), - [aux_sym_xauth_location_token1] = ACTIONS(1368), + [ts_builtin_sym_end] = ACTIONS(3199), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3201), + [aux_sym_match_token1] = ACTIONS(3199), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3199), + [aux_sym_address_family_token1] = ACTIONS(3199), + [aux_sym_batch_mode_token1] = ACTIONS(3199), + [aux_sym_bind_address_token1] = ACTIONS(3199), + [aux_sym_bind_interface_token1] = ACTIONS(3199), + [aux_sym_canonical_domains_token1] = ACTIONS(3199), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3199), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3199), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3199), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3199), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3199), + [aux_sym_certificate_file_token1] = ACTIONS(3199), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3199), + [aux_sym_channel_timeout_token1] = ACTIONS(3199), + [aux_sym_check_host_ip_token1] = ACTIONS(3199), + [aux_sym_ciphers_token1] = ACTIONS(3199), + [aux_sym_cipher_token1] = ACTIONS(3201), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3199), + [aux_sym_compression_token1] = ACTIONS(3199), + [aux_sym_connection_attempts_token1] = ACTIONS(3199), + [aux_sym_connect_timeout_token1] = ACTIONS(3199), + [aux_sym_control_master_token1] = ACTIONS(3199), + [aux_sym_control_path_token1] = ACTIONS(3199), + [aux_sym_control_persist_token1] = ACTIONS(3199), + [aux_sym_dynamic_forward_token1] = ACTIONS(3199), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3199), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3199), + [aux_sym_escape_char_token1] = ACTIONS(3199), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3199), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3199), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3199), + [aux_sym_forward_agent_token1] = ACTIONS(3199), + [aux_sym_forward_x11_token1] = ACTIONS(3201), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3199), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3199), + [aux_sym_gateway_ports_token1] = ACTIONS(3199), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3199), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3199), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3199), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3199), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3199), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3199), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3199), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3199), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3199), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3199), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3199), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3199), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3199), + [aux_sym_host_key_alias_token1] = ACTIONS(3199), + [aux_sym_hostname_token1] = ACTIONS(3199), + [aux_sym_identities_only_token1] = ACTIONS(3199), + [aux_sym_identity_agent_token1] = ACTIONS(3199), + [aux_sym_identity_file_token1] = ACTIONS(3199), + [aux_sym_ignore_unknown_token1] = ACTIONS(3199), + [aux_sym_include_token1] = ACTIONS(3199), + [aux_sym_ip_qos_token1] = ACTIONS(3199), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3199), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3199), + [aux_sym_kex_algorithms_token1] = ACTIONS(3199), + [aux_sym_known_hosts_command_token1] = ACTIONS(3199), + [aux_sym_local_command_token1] = ACTIONS(3199), + [aux_sym_local_forward_token1] = ACTIONS(3199), + [aux_sym_log_level_token1] = ACTIONS(3199), + [aux_sym_log_verbose_token1] = ACTIONS(3199), + [aux_sym_macs_token1] = ACTIONS(3199), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3199), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3199), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3199), + [aux_sym_password_authentication_token1] = ACTIONS(3199), + [aux_sym_permit_local_command_token1] = ACTIONS(3199), + [aux_sym_permit_remote_open_token1] = ACTIONS(3199), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3199), + [aux_sym_port_token1] = ACTIONS(3199), + [aux_sym_preferred_authentications_token1] = ACTIONS(3199), + [aux_sym_protocol_token1] = ACTIONS(3199), + [aux_sym_proxy_command_token1] = ACTIONS(3199), + [aux_sym_proxy_jump_token1] = ACTIONS(3199), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3199), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3199), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3199), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3199), + [aux_sym_rekey_limit_token1] = ACTIONS(3199), + [aux_sym_remote_command_token1] = ACTIONS(3199), + [aux_sym_remote_forward_token1] = ACTIONS(3199), + [aux_sym_request_tty_token1] = ACTIONS(3199), + [aux_sym_required_rsa_size_token1] = ACTIONS(3199), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3199), + [aux_sym_security_key_provider_token1] = ACTIONS(3199), + [aux_sym_send_env_token1] = ACTIONS(3199), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3199), + [aux_sym_server_alive_interval_token1] = ACTIONS(3199), + [aux_sym_session_type_token1] = ACTIONS(3199), + [aux_sym_set_env_token1] = ACTIONS(3199), + [aux_sym_stdin_null_token1] = ACTIONS(3199), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3199), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3199), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3199), + [aux_sym_syslog_facility_token1] = ACTIONS(3199), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3199), + [aux_sym_keep_alive_token1] = ACTIONS(3199), + [aux_sym_tag_token1] = ACTIONS(3199), + [aux_sym_tunnel_token1] = ACTIONS(3201), + [aux_sym_tunnel_device_token1] = ACTIONS(3199), + [aux_sym_update_host_keys_token1] = ACTIONS(3199), + [aux_sym_use_keychain_token1] = ACTIONS(3199), + [aux_sym_use_roaming_token1] = ACTIONS(3199), + [aux_sym_user_token1] = ACTIONS(3201), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3199), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3199), + [aux_sym_visual_host_key_token1] = ACTIONS(3199), + [aux_sym_xauth_location_token1] = ACTIONS(3199), }, [495] = { - [ts_builtin_sym_end] = ACTIONS(1374), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1376), - [aux_sym_match_token1] = ACTIONS(1374), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1374), - [aux_sym_address_family_token1] = ACTIONS(1374), - [aux_sym_batch_mode_token1] = ACTIONS(1374), - [aux_sym_bind_address_token1] = ACTIONS(1374), - [aux_sym_bind_interface_token1] = ACTIONS(1374), - [aux_sym_canonical_domains_token1] = ACTIONS(1374), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1374), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1374), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1374), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1374), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1374), - [aux_sym_certificate_file_token1] = ACTIONS(1374), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1374), - [aux_sym_channel_timeout_token1] = ACTIONS(1374), - [aux_sym_check_host_ip_token1] = ACTIONS(1374), - [aux_sym_ciphers_token1] = ACTIONS(1374), - [aux_sym_cipher_token1] = ACTIONS(1376), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1374), - [aux_sym_compression_token1] = ACTIONS(1374), - [aux_sym_connection_attempts_token1] = ACTIONS(1374), - [aux_sym_connect_timeout_token1] = ACTIONS(1374), - [aux_sym_control_master_token1] = ACTIONS(1374), - [aux_sym_control_path_token1] = ACTIONS(1374), - [aux_sym_control_persist_token1] = ACTIONS(1374), - [aux_sym_dynamic_forward_token1] = ACTIONS(1374), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1374), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1374), - [aux_sym_escape_char_token1] = ACTIONS(1374), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1374), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1374), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1374), - [aux_sym_forward_agent_token1] = ACTIONS(1374), - [aux_sym_forward_x11_token1] = ACTIONS(1376), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1374), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1374), - [aux_sym_gateway_ports_token1] = ACTIONS(1374), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1374), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1374), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1374), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1374), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1374), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1374), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1374), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1374), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1374), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1374), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1374), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1374), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1374), - [aux_sym_host_key_alias_token1] = ACTIONS(1374), - [aux_sym_hostname_token1] = ACTIONS(1374), - [aux_sym_identities_only_token1] = ACTIONS(1374), - [aux_sym_identity_agent_token1] = ACTIONS(1374), - [aux_sym_identity_file_token1] = ACTIONS(1374), - [aux_sym_ignore_unknown_token1] = ACTIONS(1374), - [aux_sym_include_token1] = ACTIONS(1374), - [aux_sym_ip_qos_token1] = ACTIONS(1374), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1374), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1374), - [aux_sym_kex_algorithms_token1] = ACTIONS(1374), - [aux_sym_known_hosts_command_token1] = ACTIONS(1374), - [aux_sym_local_command_token1] = ACTIONS(1374), - [aux_sym_local_forward_token1] = ACTIONS(1374), - [aux_sym_log_level_token1] = ACTIONS(1374), - [aux_sym_log_verbose_token1] = ACTIONS(1374), - [aux_sym_macs_token1] = ACTIONS(1374), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1374), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1374), - [aux_sym_password_authentication_token1] = ACTIONS(1374), - [aux_sym_permit_local_command_token1] = ACTIONS(1374), - [aux_sym_permit_remote_open_token1] = ACTIONS(1374), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1374), - [aux_sym_port_token1] = ACTIONS(1374), - [aux_sym_preferred_authentications_token1] = ACTIONS(1374), - [aux_sym_protocol_token1] = ACTIONS(1374), - [aux_sym_proxy_command_token1] = ACTIONS(1374), - [aux_sym_proxy_jump_token1] = ACTIONS(1374), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1374), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1374), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1374), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1374), - [aux_sym_rekey_limit_token1] = ACTIONS(1374), - [aux_sym_remote_command_token1] = ACTIONS(1374), - [aux_sym_remote_forward_token1] = ACTIONS(1374), - [aux_sym_request_tty_token1] = ACTIONS(1374), - [aux_sym_required_rsa_size_token1] = ACTIONS(1374), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1374), - [aux_sym_security_key_provider_token1] = ACTIONS(1374), - [aux_sym_send_env_token1] = ACTIONS(1374), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1374), - [aux_sym_server_alive_interval_token1] = ACTIONS(1374), - [aux_sym_session_type_token1] = ACTIONS(1374), - [aux_sym_set_env_token1] = ACTIONS(1374), - [aux_sym_stdin_null_token1] = ACTIONS(1374), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1374), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1374), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1374), - [aux_sym_syslog_facility_token1] = ACTIONS(1374), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1374), - [aux_sym_keep_alive_token1] = ACTIONS(1374), - [aux_sym_tag_token1] = ACTIONS(1374), - [aux_sym_tunnel_token1] = ACTIONS(1376), - [aux_sym_tunnel_device_token1] = ACTIONS(1374), - [aux_sym_update_host_keys_token1] = ACTIONS(1374), - [aux_sym_use_keychain_token1] = ACTIONS(1374), - [aux_sym_use_roaming_token1] = ACTIONS(1374), - [aux_sym_user_token1] = ACTIONS(1376), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1374), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1374), - [aux_sym_visual_host_key_token1] = ACTIONS(1374), - [aux_sym_xauth_location_token1] = ACTIONS(1374), + [ts_builtin_sym_end] = ACTIONS(3203), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3205), + [aux_sym_match_token1] = ACTIONS(3203), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3203), + [aux_sym_address_family_token1] = ACTIONS(3203), + [aux_sym_batch_mode_token1] = ACTIONS(3203), + [aux_sym_bind_address_token1] = ACTIONS(3203), + [aux_sym_bind_interface_token1] = ACTIONS(3203), + [aux_sym_canonical_domains_token1] = ACTIONS(3203), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3203), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3203), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3203), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3203), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3203), + [aux_sym_certificate_file_token1] = ACTIONS(3203), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3203), + [aux_sym_channel_timeout_token1] = ACTIONS(3203), + [aux_sym_check_host_ip_token1] = ACTIONS(3203), + [aux_sym_ciphers_token1] = ACTIONS(3203), + [aux_sym_cipher_token1] = ACTIONS(3205), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3203), + [aux_sym_compression_token1] = ACTIONS(3203), + [aux_sym_connection_attempts_token1] = ACTIONS(3203), + [aux_sym_connect_timeout_token1] = ACTIONS(3203), + [aux_sym_control_master_token1] = ACTIONS(3203), + [aux_sym_control_path_token1] = ACTIONS(3203), + [aux_sym_control_persist_token1] = ACTIONS(3203), + [aux_sym_dynamic_forward_token1] = ACTIONS(3203), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3203), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3203), + [aux_sym_escape_char_token1] = ACTIONS(3203), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3203), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3203), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3203), + [aux_sym_forward_agent_token1] = ACTIONS(3203), + [aux_sym_forward_x11_token1] = ACTIONS(3205), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3203), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3203), + [aux_sym_gateway_ports_token1] = ACTIONS(3203), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3203), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3203), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3203), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3203), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3203), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3203), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3203), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3203), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3203), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3203), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3203), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3203), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3203), + [aux_sym_host_key_alias_token1] = ACTIONS(3203), + [aux_sym_hostname_token1] = ACTIONS(3203), + [aux_sym_identities_only_token1] = ACTIONS(3203), + [aux_sym_identity_agent_token1] = ACTIONS(3203), + [aux_sym_identity_file_token1] = ACTIONS(3203), + [aux_sym_ignore_unknown_token1] = ACTIONS(3203), + [aux_sym_include_token1] = ACTIONS(3203), + [aux_sym_ip_qos_token1] = ACTIONS(3203), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3203), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3203), + [aux_sym_kex_algorithms_token1] = ACTIONS(3203), + [aux_sym_known_hosts_command_token1] = ACTIONS(3203), + [aux_sym_local_command_token1] = ACTIONS(3203), + [aux_sym_local_forward_token1] = ACTIONS(3203), + [aux_sym_log_level_token1] = ACTIONS(3203), + [aux_sym_log_verbose_token1] = ACTIONS(3203), + [aux_sym_macs_token1] = ACTIONS(3203), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3203), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3203), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3203), + [aux_sym_password_authentication_token1] = ACTIONS(3203), + [aux_sym_permit_local_command_token1] = ACTIONS(3203), + [aux_sym_permit_remote_open_token1] = ACTIONS(3203), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3203), + [aux_sym_port_token1] = ACTIONS(3203), + [aux_sym_preferred_authentications_token1] = ACTIONS(3203), + [aux_sym_protocol_token1] = ACTIONS(3203), + [aux_sym_proxy_command_token1] = ACTIONS(3203), + [aux_sym_proxy_jump_token1] = ACTIONS(3203), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3203), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3203), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3203), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3203), + [aux_sym_rekey_limit_token1] = ACTIONS(3203), + [aux_sym_remote_command_token1] = ACTIONS(3203), + [aux_sym_remote_forward_token1] = ACTIONS(3203), + [aux_sym_request_tty_token1] = ACTIONS(3203), + [aux_sym_required_rsa_size_token1] = ACTIONS(3203), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3203), + [aux_sym_security_key_provider_token1] = ACTIONS(3203), + [aux_sym_send_env_token1] = ACTIONS(3203), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3203), + [aux_sym_server_alive_interval_token1] = ACTIONS(3203), + [aux_sym_session_type_token1] = ACTIONS(3203), + [aux_sym_set_env_token1] = ACTIONS(3203), + [aux_sym_stdin_null_token1] = ACTIONS(3203), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3203), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3203), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3203), + [aux_sym_syslog_facility_token1] = ACTIONS(3203), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3203), + [aux_sym_keep_alive_token1] = ACTIONS(3203), + [aux_sym_tag_token1] = ACTIONS(3203), + [aux_sym_tunnel_token1] = ACTIONS(3205), + [aux_sym_tunnel_device_token1] = ACTIONS(3203), + [aux_sym_update_host_keys_token1] = ACTIONS(3203), + [aux_sym_use_keychain_token1] = ACTIONS(3203), + [aux_sym_use_roaming_token1] = ACTIONS(3203), + [aux_sym_user_token1] = ACTIONS(3205), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3203), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3203), + [aux_sym_visual_host_key_token1] = ACTIONS(3203), + [aux_sym_xauth_location_token1] = ACTIONS(3203), }, [496] = { - [ts_builtin_sym_end] = ACTIONS(3184), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3186), - [aux_sym_match_token1] = ACTIONS(3184), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3184), - [aux_sym_address_family_token1] = ACTIONS(3184), - [aux_sym_batch_mode_token1] = ACTIONS(3184), - [aux_sym_bind_address_token1] = ACTIONS(3184), - [aux_sym_bind_interface_token1] = ACTIONS(3184), - [aux_sym_canonical_domains_token1] = ACTIONS(3184), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3184), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3184), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3184), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3184), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3184), - [aux_sym_certificate_file_token1] = ACTIONS(3184), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3184), - [aux_sym_channel_timeout_token1] = ACTIONS(3184), - [aux_sym_check_host_ip_token1] = ACTIONS(3184), - [aux_sym_ciphers_token1] = ACTIONS(3184), - [aux_sym_cipher_token1] = ACTIONS(3186), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3184), - [aux_sym_compression_token1] = ACTIONS(3184), - [aux_sym_connection_attempts_token1] = ACTIONS(3184), - [aux_sym_connect_timeout_token1] = ACTIONS(3184), - [aux_sym_control_master_token1] = ACTIONS(3184), - [aux_sym_control_path_token1] = ACTIONS(3184), - [aux_sym_control_persist_token1] = ACTIONS(3184), - [aux_sym_dynamic_forward_token1] = ACTIONS(3184), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3184), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3184), - [aux_sym_escape_char_token1] = ACTIONS(3184), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3184), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3184), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3184), - [aux_sym_forward_agent_token1] = ACTIONS(3184), - [aux_sym_forward_x11_token1] = ACTIONS(3186), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3184), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3184), - [aux_sym_gateway_ports_token1] = ACTIONS(3184), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3184), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3184), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3184), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3184), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3184), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3184), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3184), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3184), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3184), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3184), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3184), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3184), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3184), - [aux_sym_host_key_alias_token1] = ACTIONS(3184), - [aux_sym_hostname_token1] = ACTIONS(3184), - [aux_sym_identities_only_token1] = ACTIONS(3184), - [aux_sym_identity_agent_token1] = ACTIONS(3184), - [aux_sym_identity_file_token1] = ACTIONS(3184), - [aux_sym_ignore_unknown_token1] = ACTIONS(3184), - [aux_sym_include_token1] = ACTIONS(3184), - [aux_sym_ip_qos_token1] = ACTIONS(3184), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3184), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3184), - [aux_sym_kex_algorithms_token1] = ACTIONS(3184), - [aux_sym_known_hosts_command_token1] = ACTIONS(3184), - [aux_sym_local_command_token1] = ACTIONS(3184), - [aux_sym_local_forward_token1] = ACTIONS(3184), - [aux_sym_log_level_token1] = ACTIONS(3184), - [aux_sym_log_verbose_token1] = ACTIONS(3184), - [aux_sym_macs_token1] = ACTIONS(3184), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3184), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3184), - [aux_sym_password_authentication_token1] = ACTIONS(3184), - [aux_sym_permit_local_command_token1] = ACTIONS(3184), - [aux_sym_permit_remote_open_token1] = ACTIONS(3184), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3184), - [aux_sym_port_token1] = ACTIONS(3184), - [aux_sym_preferred_authentications_token1] = ACTIONS(3184), - [aux_sym_protocol_token1] = ACTIONS(3184), - [aux_sym_proxy_command_token1] = ACTIONS(3184), - [aux_sym_proxy_jump_token1] = ACTIONS(3184), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3184), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3184), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3184), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3184), - [aux_sym_rekey_limit_token1] = ACTIONS(3184), - [aux_sym_remote_command_token1] = ACTIONS(3184), - [aux_sym_remote_forward_token1] = ACTIONS(3184), - [aux_sym_request_tty_token1] = ACTIONS(3184), - [aux_sym_required_rsa_size_token1] = ACTIONS(3184), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3184), - [aux_sym_security_key_provider_token1] = ACTIONS(3184), - [aux_sym_send_env_token1] = ACTIONS(3184), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3184), - [aux_sym_server_alive_interval_token1] = ACTIONS(3184), - [aux_sym_session_type_token1] = ACTIONS(3184), - [aux_sym_set_env_token1] = ACTIONS(3184), - [aux_sym_stdin_null_token1] = ACTIONS(3184), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3184), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3184), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3184), - [aux_sym_syslog_facility_token1] = ACTIONS(3184), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3184), - [aux_sym_keep_alive_token1] = ACTIONS(3184), - [aux_sym_tag_token1] = ACTIONS(3184), - [aux_sym_tunnel_token1] = ACTIONS(3186), - [aux_sym_tunnel_device_token1] = ACTIONS(3184), - [aux_sym_update_host_keys_token1] = ACTIONS(3184), - [aux_sym_use_keychain_token1] = ACTIONS(3184), - [aux_sym_use_roaming_token1] = ACTIONS(3184), - [aux_sym_user_token1] = ACTIONS(3186), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3184), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3184), - [aux_sym_visual_host_key_token1] = ACTIONS(3184), - [aux_sym_xauth_location_token1] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(863), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(865), + [aux_sym_match_token1] = ACTIONS(863), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(863), + [aux_sym_address_family_token1] = ACTIONS(863), + [aux_sym_batch_mode_token1] = ACTIONS(863), + [aux_sym_bind_address_token1] = ACTIONS(863), + [aux_sym_bind_interface_token1] = ACTIONS(863), + [aux_sym_canonical_domains_token1] = ACTIONS(863), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(863), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(863), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(863), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(863), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(863), + [aux_sym_certificate_file_token1] = ACTIONS(863), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(863), + [aux_sym_channel_timeout_token1] = ACTIONS(863), + [aux_sym_check_host_ip_token1] = ACTIONS(863), + [aux_sym_ciphers_token1] = ACTIONS(863), + [aux_sym_cipher_token1] = ACTIONS(865), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(863), + [aux_sym_compression_token1] = ACTIONS(863), + [aux_sym_connection_attempts_token1] = ACTIONS(863), + [aux_sym_connect_timeout_token1] = ACTIONS(863), + [aux_sym_control_master_token1] = ACTIONS(863), + [aux_sym_control_path_token1] = ACTIONS(863), + [aux_sym_control_persist_token1] = ACTIONS(863), + [aux_sym_dynamic_forward_token1] = ACTIONS(863), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(863), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(863), + [aux_sym_escape_char_token1] = ACTIONS(863), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(863), + [aux_sym_fingerprint_hash_token1] = ACTIONS(863), + [aux_sym_fork_after_authentication_token1] = ACTIONS(863), + [aux_sym_forward_agent_token1] = ACTIONS(863), + [aux_sym_forward_x11_token1] = ACTIONS(865), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(863), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(863), + [aux_sym_gateway_ports_token1] = ACTIONS(863), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(863), + [aux_sym_gssapi_authentication_token1] = ACTIONS(863), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(863), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(863), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(863), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(863), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(863), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(863), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(863), + [aux_sym_hash_known_hosts_token1] = ACTIONS(863), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(863), + [aux_sym_hostbased_authentication_token1] = ACTIONS(863), + [aux_sym_host_key_algorithms_token1] = ACTIONS(863), + [aux_sym_host_key_alias_token1] = ACTIONS(863), + [aux_sym_hostname_token1] = ACTIONS(863), + [aux_sym_identities_only_token1] = ACTIONS(863), + [aux_sym_identity_agent_token1] = ACTIONS(863), + [aux_sym_identity_file_token1] = ACTIONS(863), + [aux_sym_ignore_unknown_token1] = ACTIONS(863), + [aux_sym_include_token1] = ACTIONS(863), + [aux_sym_ip_qos_token1] = ACTIONS(863), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(863), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(863), + [aux_sym_kex_algorithms_token1] = ACTIONS(863), + [aux_sym_known_hosts_command_token1] = ACTIONS(863), + [aux_sym_local_command_token1] = ACTIONS(863), + [aux_sym_local_forward_token1] = ACTIONS(863), + [aux_sym_log_level_token1] = ACTIONS(863), + [aux_sym_log_verbose_token1] = ACTIONS(863), + [aux_sym_macs_token1] = ACTIONS(863), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(863), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(863), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(863), + [aux_sym_password_authentication_token1] = ACTIONS(863), + [aux_sym_permit_local_command_token1] = ACTIONS(863), + [aux_sym_permit_remote_open_token1] = ACTIONS(863), + [aux_sym_pkcs11_provider_token1] = ACTIONS(863), + [aux_sym_port_token1] = ACTIONS(863), + [aux_sym_preferred_authentications_token1] = ACTIONS(863), + [aux_sym_protocol_token1] = ACTIONS(863), + [aux_sym_proxy_command_token1] = ACTIONS(863), + [aux_sym_proxy_jump_token1] = ACTIONS(863), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(863), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(863), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(863), + [aux_sym_pubkey_authentication_token1] = ACTIONS(863), + [aux_sym_rekey_limit_token1] = ACTIONS(863), + [aux_sym_remote_command_token1] = ACTIONS(863), + [aux_sym_remote_forward_token1] = ACTIONS(863), + [aux_sym_request_tty_token1] = ACTIONS(863), + [aux_sym_required_rsa_size_token1] = ACTIONS(863), + [aux_sym_revoked_host_keys_token1] = ACTIONS(863), + [aux_sym_security_key_provider_token1] = ACTIONS(863), + [aux_sym_send_env_token1] = ACTIONS(863), + [aux_sym_server_alive_count_max_token1] = ACTIONS(863), + [aux_sym_server_alive_interval_token1] = ACTIONS(863), + [aux_sym_session_type_token1] = ACTIONS(863), + [aux_sym_set_env_token1] = ACTIONS(863), + [aux_sym_stdin_null_token1] = ACTIONS(863), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(863), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(863), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(863), + [aux_sym_syslog_facility_token1] = ACTIONS(863), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(863), + [aux_sym_keep_alive_token1] = ACTIONS(863), + [aux_sym_tag_token1] = ACTIONS(863), + [aux_sym_tunnel_token1] = ACTIONS(865), + [aux_sym_tunnel_device_token1] = ACTIONS(863), + [aux_sym_update_host_keys_token1] = ACTIONS(863), + [aux_sym_use_keychain_token1] = ACTIONS(863), + [aux_sym_use_roaming_token1] = ACTIONS(863), + [aux_sym_user_token1] = ACTIONS(865), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(863), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(863), + [aux_sym_visual_host_key_token1] = ACTIONS(863), + [aux_sym_xauth_location_token1] = ACTIONS(863), }, [497] = { - [ts_builtin_sym_end] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1310), - [aux_sym_match_token1] = ACTIONS(1308), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1308), - [aux_sym_address_family_token1] = ACTIONS(1308), - [aux_sym_batch_mode_token1] = ACTIONS(1308), - [aux_sym_bind_address_token1] = ACTIONS(1308), - [aux_sym_bind_interface_token1] = ACTIONS(1308), - [aux_sym_canonical_domains_token1] = ACTIONS(1308), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1308), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1308), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1308), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1308), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1308), - [aux_sym_certificate_file_token1] = ACTIONS(1308), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1308), - [aux_sym_channel_timeout_token1] = ACTIONS(1308), - [aux_sym_check_host_ip_token1] = ACTIONS(1308), - [aux_sym_ciphers_token1] = ACTIONS(1308), - [aux_sym_cipher_token1] = ACTIONS(1310), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1308), - [aux_sym_compression_token1] = ACTIONS(1308), - [aux_sym_connection_attempts_token1] = ACTIONS(1308), - [aux_sym_connect_timeout_token1] = ACTIONS(1308), - [aux_sym_control_master_token1] = ACTIONS(1308), - [aux_sym_control_path_token1] = ACTIONS(1308), - [aux_sym_control_persist_token1] = ACTIONS(1308), - [aux_sym_dynamic_forward_token1] = ACTIONS(1308), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1308), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1308), - [aux_sym_escape_char_token1] = ACTIONS(1308), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1308), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1308), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1308), - [aux_sym_forward_agent_token1] = ACTIONS(1308), - [aux_sym_forward_x11_token1] = ACTIONS(1310), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1308), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1308), - [aux_sym_gateway_ports_token1] = ACTIONS(1308), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1308), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1308), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1308), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1308), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1308), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1308), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1308), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1308), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1308), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1308), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1308), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1308), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1308), - [aux_sym_host_key_alias_token1] = ACTIONS(1308), - [aux_sym_hostname_token1] = ACTIONS(1308), - [aux_sym_identities_only_token1] = ACTIONS(1308), - [aux_sym_identity_agent_token1] = ACTIONS(1308), - [aux_sym_identity_file_token1] = ACTIONS(1308), - [aux_sym_ignore_unknown_token1] = ACTIONS(1308), - [aux_sym_include_token1] = ACTIONS(1308), - [aux_sym_ip_qos_token1] = ACTIONS(1308), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1308), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1308), - [aux_sym_kex_algorithms_token1] = ACTIONS(1308), - [aux_sym_known_hosts_command_token1] = ACTIONS(1308), - [aux_sym_local_command_token1] = ACTIONS(1308), - [aux_sym_local_forward_token1] = ACTIONS(1308), - [aux_sym_log_level_token1] = ACTIONS(1308), - [aux_sym_log_verbose_token1] = ACTIONS(1308), - [aux_sym_macs_token1] = ACTIONS(1308), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1308), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1308), - [aux_sym_password_authentication_token1] = ACTIONS(1308), - [aux_sym_permit_local_command_token1] = ACTIONS(1308), - [aux_sym_permit_remote_open_token1] = ACTIONS(1308), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1308), - [aux_sym_port_token1] = ACTIONS(1308), - [aux_sym_preferred_authentications_token1] = ACTIONS(1308), - [aux_sym_protocol_token1] = ACTIONS(1308), - [aux_sym_proxy_command_token1] = ACTIONS(1308), - [aux_sym_proxy_jump_token1] = ACTIONS(1308), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1308), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1308), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1308), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1308), - [aux_sym_rekey_limit_token1] = ACTIONS(1308), - [aux_sym_remote_command_token1] = ACTIONS(1308), - [aux_sym_remote_forward_token1] = ACTIONS(1308), - [aux_sym_request_tty_token1] = ACTIONS(1308), - [aux_sym_required_rsa_size_token1] = ACTIONS(1308), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1308), - [aux_sym_security_key_provider_token1] = ACTIONS(1308), - [aux_sym_send_env_token1] = ACTIONS(1308), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1308), - [aux_sym_server_alive_interval_token1] = ACTIONS(1308), - [aux_sym_session_type_token1] = ACTIONS(1308), - [aux_sym_set_env_token1] = ACTIONS(1308), - [aux_sym_stdin_null_token1] = ACTIONS(1308), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1308), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1308), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1308), - [aux_sym_syslog_facility_token1] = ACTIONS(1308), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1308), - [aux_sym_keep_alive_token1] = ACTIONS(1308), - [aux_sym_tag_token1] = ACTIONS(1308), - [aux_sym_tunnel_token1] = ACTIONS(1310), - [aux_sym_tunnel_device_token1] = ACTIONS(1308), - [aux_sym_update_host_keys_token1] = ACTIONS(1308), - [aux_sym_use_keychain_token1] = ACTIONS(1308), - [aux_sym_use_roaming_token1] = ACTIONS(1308), - [aux_sym_user_token1] = ACTIONS(1310), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1308), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1308), - [aux_sym_visual_host_key_token1] = ACTIONS(1308), - [aux_sym_xauth_location_token1] = ACTIONS(1308), + [ts_builtin_sym_end] = ACTIONS(1589), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1591), + [aux_sym_match_token1] = ACTIONS(1589), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1589), + [aux_sym_address_family_token1] = ACTIONS(1589), + [aux_sym_batch_mode_token1] = ACTIONS(1589), + [aux_sym_bind_address_token1] = ACTIONS(1589), + [aux_sym_bind_interface_token1] = ACTIONS(1589), + [aux_sym_canonical_domains_token1] = ACTIONS(1589), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1589), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1589), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1589), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1589), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1589), + [aux_sym_certificate_file_token1] = ACTIONS(1589), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1589), + [aux_sym_channel_timeout_token1] = ACTIONS(1589), + [aux_sym_check_host_ip_token1] = ACTIONS(1589), + [aux_sym_ciphers_token1] = ACTIONS(1589), + [aux_sym_cipher_token1] = ACTIONS(1591), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1589), + [aux_sym_compression_token1] = ACTIONS(1589), + [aux_sym_connection_attempts_token1] = ACTIONS(1589), + [aux_sym_connect_timeout_token1] = ACTIONS(1589), + [aux_sym_control_master_token1] = ACTIONS(1589), + [aux_sym_control_path_token1] = ACTIONS(1589), + [aux_sym_control_persist_token1] = ACTIONS(1589), + [aux_sym_dynamic_forward_token1] = ACTIONS(1589), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1589), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1589), + [aux_sym_escape_char_token1] = ACTIONS(1589), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1589), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1589), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1589), + [aux_sym_forward_agent_token1] = ACTIONS(1589), + [aux_sym_forward_x11_token1] = ACTIONS(1591), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1589), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1589), + [aux_sym_gateway_ports_token1] = ACTIONS(1589), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1589), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1589), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1589), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1589), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1589), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1589), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1589), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1589), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1589), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1589), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1589), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1589), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1589), + [aux_sym_host_key_alias_token1] = ACTIONS(1589), + [aux_sym_hostname_token1] = ACTIONS(1589), + [aux_sym_identities_only_token1] = ACTIONS(1589), + [aux_sym_identity_agent_token1] = ACTIONS(1589), + [aux_sym_identity_file_token1] = ACTIONS(1589), + [aux_sym_ignore_unknown_token1] = ACTIONS(1589), + [aux_sym_include_token1] = ACTIONS(1589), + [aux_sym_ip_qos_token1] = ACTIONS(1589), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1589), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1589), + [aux_sym_kex_algorithms_token1] = ACTIONS(1589), + [aux_sym_known_hosts_command_token1] = ACTIONS(1589), + [aux_sym_local_command_token1] = ACTIONS(1589), + [aux_sym_local_forward_token1] = ACTIONS(1589), + [aux_sym_log_level_token1] = ACTIONS(1589), + [aux_sym_log_verbose_token1] = ACTIONS(1589), + [aux_sym_macs_token1] = ACTIONS(1589), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1589), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1589), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1589), + [aux_sym_password_authentication_token1] = ACTIONS(1589), + [aux_sym_permit_local_command_token1] = ACTIONS(1589), + [aux_sym_permit_remote_open_token1] = ACTIONS(1589), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1589), + [aux_sym_port_token1] = ACTIONS(1589), + [aux_sym_preferred_authentications_token1] = ACTIONS(1589), + [aux_sym_protocol_token1] = ACTIONS(1589), + [aux_sym_proxy_command_token1] = ACTIONS(1589), + [aux_sym_proxy_jump_token1] = ACTIONS(1589), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1589), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1589), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1589), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1589), + [aux_sym_rekey_limit_token1] = ACTIONS(1589), + [aux_sym_remote_command_token1] = ACTIONS(1589), + [aux_sym_remote_forward_token1] = ACTIONS(1589), + [aux_sym_request_tty_token1] = ACTIONS(1589), + [aux_sym_required_rsa_size_token1] = ACTIONS(1589), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1589), + [aux_sym_security_key_provider_token1] = ACTIONS(1589), + [aux_sym_send_env_token1] = ACTIONS(1589), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1589), + [aux_sym_server_alive_interval_token1] = ACTIONS(1589), + [aux_sym_session_type_token1] = ACTIONS(1589), + [aux_sym_set_env_token1] = ACTIONS(1589), + [aux_sym_stdin_null_token1] = ACTIONS(1589), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1589), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1589), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1589), + [aux_sym_syslog_facility_token1] = ACTIONS(1589), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1589), + [aux_sym_keep_alive_token1] = ACTIONS(1589), + [aux_sym_tag_token1] = ACTIONS(1589), + [aux_sym_tunnel_token1] = ACTIONS(1591), + [aux_sym_tunnel_device_token1] = ACTIONS(1589), + [aux_sym_update_host_keys_token1] = ACTIONS(1589), + [aux_sym_use_keychain_token1] = ACTIONS(1589), + [aux_sym_use_roaming_token1] = ACTIONS(1589), + [aux_sym_user_token1] = ACTIONS(1591), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1589), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1589), + [aux_sym_visual_host_key_token1] = ACTIONS(1589), + [aux_sym_xauth_location_token1] = ACTIONS(1589), }, [498] = { - [ts_builtin_sym_end] = ACTIONS(1380), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1382), - [aux_sym_match_token1] = ACTIONS(1380), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1380), - [aux_sym_address_family_token1] = ACTIONS(1380), - [aux_sym_batch_mode_token1] = ACTIONS(1380), - [aux_sym_bind_address_token1] = ACTIONS(1380), - [aux_sym_bind_interface_token1] = ACTIONS(1380), - [aux_sym_canonical_domains_token1] = ACTIONS(1380), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1380), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1380), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1380), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1380), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1380), - [aux_sym_certificate_file_token1] = ACTIONS(1380), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1380), - [aux_sym_channel_timeout_token1] = ACTIONS(1380), - [aux_sym_check_host_ip_token1] = ACTIONS(1380), - [aux_sym_ciphers_token1] = ACTIONS(1380), - [aux_sym_cipher_token1] = ACTIONS(1382), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1380), - [aux_sym_compression_token1] = ACTIONS(1380), - [aux_sym_connection_attempts_token1] = ACTIONS(1380), - [aux_sym_connect_timeout_token1] = ACTIONS(1380), - [aux_sym_control_master_token1] = ACTIONS(1380), - [aux_sym_control_path_token1] = ACTIONS(1380), - [aux_sym_control_persist_token1] = ACTIONS(1380), - [aux_sym_dynamic_forward_token1] = ACTIONS(1380), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1380), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1380), - [aux_sym_escape_char_token1] = ACTIONS(1380), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1380), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1380), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1380), - [aux_sym_forward_agent_token1] = ACTIONS(1380), - [aux_sym_forward_x11_token1] = ACTIONS(1382), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1380), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1380), - [aux_sym_gateway_ports_token1] = ACTIONS(1380), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1380), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1380), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1380), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1380), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1380), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1380), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1380), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1380), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1380), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1380), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1380), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1380), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1380), - [aux_sym_host_key_alias_token1] = ACTIONS(1380), - [aux_sym_hostname_token1] = ACTIONS(1380), - [aux_sym_identities_only_token1] = ACTIONS(1380), - [aux_sym_identity_agent_token1] = ACTIONS(1380), - [aux_sym_identity_file_token1] = ACTIONS(1380), - [aux_sym_ignore_unknown_token1] = ACTIONS(1380), - [aux_sym_include_token1] = ACTIONS(1380), - [aux_sym_ip_qos_token1] = ACTIONS(1380), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1380), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1380), - [aux_sym_kex_algorithms_token1] = ACTIONS(1380), - [aux_sym_known_hosts_command_token1] = ACTIONS(1380), - [aux_sym_local_command_token1] = ACTIONS(1380), - [aux_sym_local_forward_token1] = ACTIONS(1380), - [aux_sym_log_level_token1] = ACTIONS(1380), - [aux_sym_log_verbose_token1] = ACTIONS(1380), - [aux_sym_macs_token1] = ACTIONS(1380), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1380), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1380), - [aux_sym_password_authentication_token1] = ACTIONS(1380), - [aux_sym_permit_local_command_token1] = ACTIONS(1380), - [aux_sym_permit_remote_open_token1] = ACTIONS(1380), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1380), - [aux_sym_port_token1] = ACTIONS(1380), - [aux_sym_preferred_authentications_token1] = ACTIONS(1380), - [aux_sym_protocol_token1] = ACTIONS(1380), - [aux_sym_proxy_command_token1] = ACTIONS(1380), - [aux_sym_proxy_jump_token1] = ACTIONS(1380), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1380), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1380), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1380), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1380), - [aux_sym_rekey_limit_token1] = ACTIONS(1380), - [aux_sym_remote_command_token1] = ACTIONS(1380), - [aux_sym_remote_forward_token1] = ACTIONS(1380), - [aux_sym_request_tty_token1] = ACTIONS(1380), - [aux_sym_required_rsa_size_token1] = ACTIONS(1380), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1380), - [aux_sym_security_key_provider_token1] = ACTIONS(1380), - [aux_sym_send_env_token1] = ACTIONS(1380), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1380), - [aux_sym_server_alive_interval_token1] = ACTIONS(1380), - [aux_sym_session_type_token1] = ACTIONS(1380), - [aux_sym_set_env_token1] = ACTIONS(1380), - [aux_sym_stdin_null_token1] = ACTIONS(1380), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1380), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1380), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1380), - [aux_sym_syslog_facility_token1] = ACTIONS(1380), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1380), - [aux_sym_keep_alive_token1] = ACTIONS(1380), - [aux_sym_tag_token1] = ACTIONS(1380), - [aux_sym_tunnel_token1] = ACTIONS(1382), - [aux_sym_tunnel_device_token1] = ACTIONS(1380), - [aux_sym_update_host_keys_token1] = ACTIONS(1380), - [aux_sym_use_keychain_token1] = ACTIONS(1380), - [aux_sym_use_roaming_token1] = ACTIONS(1380), - [aux_sym_user_token1] = ACTIONS(1382), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1380), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1380), - [aux_sym_visual_host_key_token1] = ACTIONS(1380), - [aux_sym_xauth_location_token1] = ACTIONS(1380), + [ts_builtin_sym_end] = ACTIONS(3207), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3209), + [aux_sym_match_token1] = ACTIONS(3207), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3207), + [aux_sym_address_family_token1] = ACTIONS(3207), + [aux_sym_batch_mode_token1] = ACTIONS(3207), + [aux_sym_bind_address_token1] = ACTIONS(3207), + [aux_sym_bind_interface_token1] = ACTIONS(3207), + [aux_sym_canonical_domains_token1] = ACTIONS(3207), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3207), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3207), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3207), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3207), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3207), + [aux_sym_certificate_file_token1] = ACTIONS(3207), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3207), + [aux_sym_channel_timeout_token1] = ACTIONS(3207), + [aux_sym_check_host_ip_token1] = ACTIONS(3207), + [aux_sym_ciphers_token1] = ACTIONS(3207), + [aux_sym_cipher_token1] = ACTIONS(3209), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3207), + [aux_sym_compression_token1] = ACTIONS(3207), + [aux_sym_connection_attempts_token1] = ACTIONS(3207), + [aux_sym_connect_timeout_token1] = ACTIONS(3207), + [aux_sym_control_master_token1] = ACTIONS(3207), + [aux_sym_control_path_token1] = ACTIONS(3207), + [aux_sym_control_persist_token1] = ACTIONS(3207), + [aux_sym_dynamic_forward_token1] = ACTIONS(3207), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3207), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3207), + [aux_sym_escape_char_token1] = ACTIONS(3207), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3207), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3207), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3207), + [aux_sym_forward_agent_token1] = ACTIONS(3207), + [aux_sym_forward_x11_token1] = ACTIONS(3209), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3207), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3207), + [aux_sym_gateway_ports_token1] = ACTIONS(3207), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3207), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3207), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3207), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3207), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3207), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3207), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3207), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3207), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3207), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3207), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3207), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3207), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3207), + [aux_sym_host_key_alias_token1] = ACTIONS(3207), + [aux_sym_hostname_token1] = ACTIONS(3207), + [aux_sym_identities_only_token1] = ACTIONS(3207), + [aux_sym_identity_agent_token1] = ACTIONS(3207), + [aux_sym_identity_file_token1] = ACTIONS(3207), + [aux_sym_ignore_unknown_token1] = ACTIONS(3207), + [aux_sym_include_token1] = ACTIONS(3207), + [aux_sym_ip_qos_token1] = ACTIONS(3207), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3207), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3207), + [aux_sym_kex_algorithms_token1] = ACTIONS(3207), + [aux_sym_known_hosts_command_token1] = ACTIONS(3207), + [aux_sym_local_command_token1] = ACTIONS(3207), + [aux_sym_local_forward_token1] = ACTIONS(3207), + [aux_sym_log_level_token1] = ACTIONS(3207), + [aux_sym_log_verbose_token1] = ACTIONS(3207), + [aux_sym_macs_token1] = ACTIONS(3207), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3207), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3207), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3207), + [aux_sym_password_authentication_token1] = ACTIONS(3207), + [aux_sym_permit_local_command_token1] = ACTIONS(3207), + [aux_sym_permit_remote_open_token1] = ACTIONS(3207), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3207), + [aux_sym_port_token1] = ACTIONS(3207), + [aux_sym_preferred_authentications_token1] = ACTIONS(3207), + [aux_sym_protocol_token1] = ACTIONS(3207), + [aux_sym_proxy_command_token1] = ACTIONS(3207), + [aux_sym_proxy_jump_token1] = ACTIONS(3207), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3207), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3207), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3207), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3207), + [aux_sym_rekey_limit_token1] = ACTIONS(3207), + [aux_sym_remote_command_token1] = ACTIONS(3207), + [aux_sym_remote_forward_token1] = ACTIONS(3207), + [aux_sym_request_tty_token1] = ACTIONS(3207), + [aux_sym_required_rsa_size_token1] = ACTIONS(3207), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3207), + [aux_sym_security_key_provider_token1] = ACTIONS(3207), + [aux_sym_send_env_token1] = ACTIONS(3207), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3207), + [aux_sym_server_alive_interval_token1] = ACTIONS(3207), + [aux_sym_session_type_token1] = ACTIONS(3207), + [aux_sym_set_env_token1] = ACTIONS(3207), + [aux_sym_stdin_null_token1] = ACTIONS(3207), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3207), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3207), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3207), + [aux_sym_syslog_facility_token1] = ACTIONS(3207), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3207), + [aux_sym_keep_alive_token1] = ACTIONS(3207), + [aux_sym_tag_token1] = ACTIONS(3207), + [aux_sym_tunnel_token1] = ACTIONS(3209), + [aux_sym_tunnel_device_token1] = ACTIONS(3207), + [aux_sym_update_host_keys_token1] = ACTIONS(3207), + [aux_sym_use_keychain_token1] = ACTIONS(3207), + [aux_sym_use_roaming_token1] = ACTIONS(3207), + [aux_sym_user_token1] = ACTIONS(3209), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3207), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3207), + [aux_sym_visual_host_key_token1] = ACTIONS(3207), + [aux_sym_xauth_location_token1] = ACTIONS(3207), }, [499] = { - [ts_builtin_sym_end] = ACTIONS(3188), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3190), - [aux_sym_match_token1] = ACTIONS(3188), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3188), - [aux_sym_address_family_token1] = ACTIONS(3188), - [aux_sym_batch_mode_token1] = ACTIONS(3188), - [aux_sym_bind_address_token1] = ACTIONS(3188), - [aux_sym_bind_interface_token1] = ACTIONS(3188), - [aux_sym_canonical_domains_token1] = ACTIONS(3188), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3188), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3188), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3188), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3188), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3188), - [aux_sym_certificate_file_token1] = ACTIONS(3188), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3188), - [aux_sym_channel_timeout_token1] = ACTIONS(3188), - [aux_sym_check_host_ip_token1] = ACTIONS(3188), - [aux_sym_ciphers_token1] = ACTIONS(3188), - [aux_sym_cipher_token1] = ACTIONS(3190), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3188), - [aux_sym_compression_token1] = ACTIONS(3188), - [aux_sym_connection_attempts_token1] = ACTIONS(3188), - [aux_sym_connect_timeout_token1] = ACTIONS(3188), - [aux_sym_control_master_token1] = ACTIONS(3188), - [aux_sym_control_path_token1] = ACTIONS(3188), - [aux_sym_control_persist_token1] = ACTIONS(3188), - [aux_sym_dynamic_forward_token1] = ACTIONS(3188), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3188), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3188), - [aux_sym_escape_char_token1] = ACTIONS(3188), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3188), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3188), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3188), - [aux_sym_forward_agent_token1] = ACTIONS(3188), - [aux_sym_forward_x11_token1] = ACTIONS(3190), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3188), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3188), - [aux_sym_gateway_ports_token1] = ACTIONS(3188), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3188), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3188), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3188), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3188), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3188), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3188), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3188), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3188), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3188), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3188), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3188), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3188), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3188), - [aux_sym_host_key_alias_token1] = ACTIONS(3188), - [aux_sym_hostname_token1] = ACTIONS(3188), - [aux_sym_identities_only_token1] = ACTIONS(3188), - [aux_sym_identity_agent_token1] = ACTIONS(3188), - [aux_sym_identity_file_token1] = ACTIONS(3188), - [aux_sym_ignore_unknown_token1] = ACTIONS(3188), - [aux_sym_include_token1] = ACTIONS(3188), - [aux_sym_ip_qos_token1] = ACTIONS(3188), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3188), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3188), - [aux_sym_kex_algorithms_token1] = ACTIONS(3188), - [aux_sym_known_hosts_command_token1] = ACTIONS(3188), - [aux_sym_local_command_token1] = ACTIONS(3188), - [aux_sym_local_forward_token1] = ACTIONS(3188), - [aux_sym_log_level_token1] = ACTIONS(3188), - [aux_sym_log_verbose_token1] = ACTIONS(3188), - [aux_sym_macs_token1] = ACTIONS(3188), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3188), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3188), - [aux_sym_password_authentication_token1] = ACTIONS(3188), - [aux_sym_permit_local_command_token1] = ACTIONS(3188), - [aux_sym_permit_remote_open_token1] = ACTIONS(3188), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3188), - [aux_sym_port_token1] = ACTIONS(3188), - [aux_sym_preferred_authentications_token1] = ACTIONS(3188), - [aux_sym_protocol_token1] = ACTIONS(3188), - [aux_sym_proxy_command_token1] = ACTIONS(3188), - [aux_sym_proxy_jump_token1] = ACTIONS(3188), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3188), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3188), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3188), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3188), - [aux_sym_rekey_limit_token1] = ACTIONS(3188), - [aux_sym_remote_command_token1] = ACTIONS(3188), - [aux_sym_remote_forward_token1] = ACTIONS(3188), - [aux_sym_request_tty_token1] = ACTIONS(3188), - [aux_sym_required_rsa_size_token1] = ACTIONS(3188), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3188), - [aux_sym_security_key_provider_token1] = ACTIONS(3188), - [aux_sym_send_env_token1] = ACTIONS(3188), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3188), - [aux_sym_server_alive_interval_token1] = ACTIONS(3188), - [aux_sym_session_type_token1] = ACTIONS(3188), - [aux_sym_set_env_token1] = ACTIONS(3188), - [aux_sym_stdin_null_token1] = ACTIONS(3188), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3188), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3188), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3188), - [aux_sym_syslog_facility_token1] = ACTIONS(3188), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3188), - [aux_sym_keep_alive_token1] = ACTIONS(3188), - [aux_sym_tag_token1] = ACTIONS(3188), - [aux_sym_tunnel_token1] = ACTIONS(3190), - [aux_sym_tunnel_device_token1] = ACTIONS(3188), - [aux_sym_update_host_keys_token1] = ACTIONS(3188), - [aux_sym_use_keychain_token1] = ACTIONS(3188), - [aux_sym_use_roaming_token1] = ACTIONS(3188), - [aux_sym_user_token1] = ACTIONS(3190), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3188), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3188), - [aux_sym_visual_host_key_token1] = ACTIONS(3188), - [aux_sym_xauth_location_token1] = ACTIONS(3188), + [ts_builtin_sym_end] = ACTIONS(3211), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3213), + [aux_sym_match_token1] = ACTIONS(3211), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3211), + [aux_sym_address_family_token1] = ACTIONS(3211), + [aux_sym_batch_mode_token1] = ACTIONS(3211), + [aux_sym_bind_address_token1] = ACTIONS(3211), + [aux_sym_bind_interface_token1] = ACTIONS(3211), + [aux_sym_canonical_domains_token1] = ACTIONS(3211), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3211), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3211), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3211), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3211), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3211), + [aux_sym_certificate_file_token1] = ACTIONS(3211), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3211), + [aux_sym_channel_timeout_token1] = ACTIONS(3211), + [aux_sym_check_host_ip_token1] = ACTIONS(3211), + [aux_sym_ciphers_token1] = ACTIONS(3211), + [aux_sym_cipher_token1] = ACTIONS(3213), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3211), + [aux_sym_compression_token1] = ACTIONS(3211), + [aux_sym_connection_attempts_token1] = ACTIONS(3211), + [aux_sym_connect_timeout_token1] = ACTIONS(3211), + [aux_sym_control_master_token1] = ACTIONS(3211), + [aux_sym_control_path_token1] = ACTIONS(3211), + [aux_sym_control_persist_token1] = ACTIONS(3211), + [aux_sym_dynamic_forward_token1] = ACTIONS(3211), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3211), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3211), + [aux_sym_escape_char_token1] = ACTIONS(3211), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3211), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3211), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3211), + [aux_sym_forward_agent_token1] = ACTIONS(3211), + [aux_sym_forward_x11_token1] = ACTIONS(3213), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3211), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3211), + [aux_sym_gateway_ports_token1] = ACTIONS(3211), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3211), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3211), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3211), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3211), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3211), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3211), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3211), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3211), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3211), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3211), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3211), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3211), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3211), + [aux_sym_host_key_alias_token1] = ACTIONS(3211), + [aux_sym_hostname_token1] = ACTIONS(3211), + [aux_sym_identities_only_token1] = ACTIONS(3211), + [aux_sym_identity_agent_token1] = ACTIONS(3211), + [aux_sym_identity_file_token1] = ACTIONS(3211), + [aux_sym_ignore_unknown_token1] = ACTIONS(3211), + [aux_sym_include_token1] = ACTIONS(3211), + [aux_sym_ip_qos_token1] = ACTIONS(3211), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3211), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3211), + [aux_sym_kex_algorithms_token1] = ACTIONS(3211), + [aux_sym_known_hosts_command_token1] = ACTIONS(3211), + [aux_sym_local_command_token1] = ACTIONS(3211), + [aux_sym_local_forward_token1] = ACTIONS(3211), + [aux_sym_log_level_token1] = ACTIONS(3211), + [aux_sym_log_verbose_token1] = ACTIONS(3211), + [aux_sym_macs_token1] = ACTIONS(3211), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3211), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3211), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3211), + [aux_sym_password_authentication_token1] = ACTIONS(3211), + [aux_sym_permit_local_command_token1] = ACTIONS(3211), + [aux_sym_permit_remote_open_token1] = ACTIONS(3211), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3211), + [aux_sym_port_token1] = ACTIONS(3211), + [aux_sym_preferred_authentications_token1] = ACTIONS(3211), + [aux_sym_protocol_token1] = ACTIONS(3211), + [aux_sym_proxy_command_token1] = ACTIONS(3211), + [aux_sym_proxy_jump_token1] = ACTIONS(3211), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3211), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3211), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3211), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3211), + [aux_sym_rekey_limit_token1] = ACTIONS(3211), + [aux_sym_remote_command_token1] = ACTIONS(3211), + [aux_sym_remote_forward_token1] = ACTIONS(3211), + [aux_sym_request_tty_token1] = ACTIONS(3211), + [aux_sym_required_rsa_size_token1] = ACTIONS(3211), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3211), + [aux_sym_security_key_provider_token1] = ACTIONS(3211), + [aux_sym_send_env_token1] = ACTIONS(3211), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3211), + [aux_sym_server_alive_interval_token1] = ACTIONS(3211), + [aux_sym_session_type_token1] = ACTIONS(3211), + [aux_sym_set_env_token1] = ACTIONS(3211), + [aux_sym_stdin_null_token1] = ACTIONS(3211), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3211), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3211), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3211), + [aux_sym_syslog_facility_token1] = ACTIONS(3211), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3211), + [aux_sym_keep_alive_token1] = ACTIONS(3211), + [aux_sym_tag_token1] = ACTIONS(3211), + [aux_sym_tunnel_token1] = ACTIONS(3213), + [aux_sym_tunnel_device_token1] = ACTIONS(3211), + [aux_sym_update_host_keys_token1] = ACTIONS(3211), + [aux_sym_use_keychain_token1] = ACTIONS(3211), + [aux_sym_use_roaming_token1] = ACTIONS(3211), + [aux_sym_user_token1] = ACTIONS(3213), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3211), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3211), + [aux_sym_visual_host_key_token1] = ACTIONS(3211), + [aux_sym_xauth_location_token1] = ACTIONS(3211), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(3192), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3194), - [aux_sym_match_token1] = ACTIONS(3192), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3192), - [aux_sym_address_family_token1] = ACTIONS(3192), - [aux_sym_batch_mode_token1] = ACTIONS(3192), - [aux_sym_bind_address_token1] = ACTIONS(3192), - [aux_sym_bind_interface_token1] = ACTIONS(3192), - [aux_sym_canonical_domains_token1] = ACTIONS(3192), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3192), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3192), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3192), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3192), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3192), - [aux_sym_certificate_file_token1] = ACTIONS(3192), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3192), - [aux_sym_channel_timeout_token1] = ACTIONS(3192), - [aux_sym_check_host_ip_token1] = ACTIONS(3192), - [aux_sym_ciphers_token1] = ACTIONS(3192), - [aux_sym_cipher_token1] = ACTIONS(3194), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3192), - [aux_sym_compression_token1] = ACTIONS(3192), - [aux_sym_connection_attempts_token1] = ACTIONS(3192), - [aux_sym_connect_timeout_token1] = ACTIONS(3192), - [aux_sym_control_master_token1] = ACTIONS(3192), - [aux_sym_control_path_token1] = ACTIONS(3192), - [aux_sym_control_persist_token1] = ACTIONS(3192), - [aux_sym_dynamic_forward_token1] = ACTIONS(3192), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3192), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3192), - [aux_sym_escape_char_token1] = ACTIONS(3192), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3192), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3192), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3192), - [aux_sym_forward_agent_token1] = ACTIONS(3192), - [aux_sym_forward_x11_token1] = ACTIONS(3194), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3192), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3192), - [aux_sym_gateway_ports_token1] = ACTIONS(3192), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3192), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3192), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3192), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3192), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3192), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3192), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3192), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3192), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3192), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3192), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3192), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3192), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3192), - [aux_sym_host_key_alias_token1] = ACTIONS(3192), - [aux_sym_hostname_token1] = ACTIONS(3192), - [aux_sym_identities_only_token1] = ACTIONS(3192), - [aux_sym_identity_agent_token1] = ACTIONS(3192), - [aux_sym_identity_file_token1] = ACTIONS(3192), - [aux_sym_ignore_unknown_token1] = ACTIONS(3192), - [aux_sym_include_token1] = ACTIONS(3192), - [aux_sym_ip_qos_token1] = ACTIONS(3192), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3192), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3192), - [aux_sym_kex_algorithms_token1] = ACTIONS(3192), - [aux_sym_known_hosts_command_token1] = ACTIONS(3192), - [aux_sym_local_command_token1] = ACTIONS(3192), - [aux_sym_local_forward_token1] = ACTIONS(3192), - [aux_sym_log_level_token1] = ACTIONS(3192), - [aux_sym_log_verbose_token1] = ACTIONS(3192), - [aux_sym_macs_token1] = ACTIONS(3192), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3192), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3192), - [aux_sym_password_authentication_token1] = ACTIONS(3192), - [aux_sym_permit_local_command_token1] = ACTIONS(3192), - [aux_sym_permit_remote_open_token1] = ACTIONS(3192), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3192), - [aux_sym_port_token1] = ACTIONS(3192), - [aux_sym_preferred_authentications_token1] = ACTIONS(3192), - [aux_sym_protocol_token1] = ACTIONS(3192), - [aux_sym_proxy_command_token1] = ACTIONS(3192), - [aux_sym_proxy_jump_token1] = ACTIONS(3192), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3192), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3192), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3192), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3192), - [aux_sym_rekey_limit_token1] = ACTIONS(3192), - [aux_sym_remote_command_token1] = ACTIONS(3192), - [aux_sym_remote_forward_token1] = ACTIONS(3192), - [aux_sym_request_tty_token1] = ACTIONS(3192), - [aux_sym_required_rsa_size_token1] = ACTIONS(3192), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3192), - [aux_sym_security_key_provider_token1] = ACTIONS(3192), - [aux_sym_send_env_token1] = ACTIONS(3192), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3192), - [aux_sym_server_alive_interval_token1] = ACTIONS(3192), - [aux_sym_session_type_token1] = ACTIONS(3192), - [aux_sym_set_env_token1] = ACTIONS(3192), - [aux_sym_stdin_null_token1] = ACTIONS(3192), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3192), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3192), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3192), - [aux_sym_syslog_facility_token1] = ACTIONS(3192), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3192), - [aux_sym_keep_alive_token1] = ACTIONS(3192), - [aux_sym_tag_token1] = ACTIONS(3192), - [aux_sym_tunnel_token1] = ACTIONS(3194), - [aux_sym_tunnel_device_token1] = ACTIONS(3192), - [aux_sym_update_host_keys_token1] = ACTIONS(3192), - [aux_sym_use_keychain_token1] = ACTIONS(3192), - [aux_sym_use_roaming_token1] = ACTIONS(3192), - [aux_sym_user_token1] = ACTIONS(3194), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3192), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3192), - [aux_sym_visual_host_key_token1] = ACTIONS(3192), - [aux_sym_xauth_location_token1] = ACTIONS(3192), + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3217), + [aux_sym_match_token1] = ACTIONS(3215), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3215), + [aux_sym_address_family_token1] = ACTIONS(3215), + [aux_sym_batch_mode_token1] = ACTIONS(3215), + [aux_sym_bind_address_token1] = ACTIONS(3215), + [aux_sym_bind_interface_token1] = ACTIONS(3215), + [aux_sym_canonical_domains_token1] = ACTIONS(3215), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3215), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3215), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3215), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3215), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3215), + [aux_sym_certificate_file_token1] = ACTIONS(3215), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3215), + [aux_sym_channel_timeout_token1] = ACTIONS(3215), + [aux_sym_check_host_ip_token1] = ACTIONS(3215), + [aux_sym_ciphers_token1] = ACTIONS(3215), + [aux_sym_cipher_token1] = ACTIONS(3217), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3215), + [aux_sym_compression_token1] = ACTIONS(3215), + [aux_sym_connection_attempts_token1] = ACTIONS(3215), + [aux_sym_connect_timeout_token1] = ACTIONS(3215), + [aux_sym_control_master_token1] = ACTIONS(3215), + [aux_sym_control_path_token1] = ACTIONS(3215), + [aux_sym_control_persist_token1] = ACTIONS(3215), + [aux_sym_dynamic_forward_token1] = ACTIONS(3215), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3215), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3215), + [aux_sym_escape_char_token1] = ACTIONS(3215), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3215), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3215), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3215), + [aux_sym_forward_agent_token1] = ACTIONS(3215), + [aux_sym_forward_x11_token1] = ACTIONS(3217), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3215), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3215), + [aux_sym_gateway_ports_token1] = ACTIONS(3215), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3215), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3215), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3215), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3215), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3215), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3215), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3215), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3215), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3215), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3215), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3215), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3215), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3215), + [aux_sym_host_key_alias_token1] = ACTIONS(3215), + [aux_sym_hostname_token1] = ACTIONS(3215), + [aux_sym_identities_only_token1] = ACTIONS(3215), + [aux_sym_identity_agent_token1] = ACTIONS(3215), + [aux_sym_identity_file_token1] = ACTIONS(3215), + [aux_sym_ignore_unknown_token1] = ACTIONS(3215), + [aux_sym_include_token1] = ACTIONS(3215), + [aux_sym_ip_qos_token1] = ACTIONS(3215), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3215), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3215), + [aux_sym_kex_algorithms_token1] = ACTIONS(3215), + [aux_sym_known_hosts_command_token1] = ACTIONS(3215), + [aux_sym_local_command_token1] = ACTIONS(3215), + [aux_sym_local_forward_token1] = ACTIONS(3215), + [aux_sym_log_level_token1] = ACTIONS(3215), + [aux_sym_log_verbose_token1] = ACTIONS(3215), + [aux_sym_macs_token1] = ACTIONS(3215), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3215), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3215), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3215), + [aux_sym_password_authentication_token1] = ACTIONS(3215), + [aux_sym_permit_local_command_token1] = ACTIONS(3215), + [aux_sym_permit_remote_open_token1] = ACTIONS(3215), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3215), + [aux_sym_port_token1] = ACTIONS(3215), + [aux_sym_preferred_authentications_token1] = ACTIONS(3215), + [aux_sym_protocol_token1] = ACTIONS(3215), + [aux_sym_proxy_command_token1] = ACTIONS(3215), + [aux_sym_proxy_jump_token1] = ACTIONS(3215), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3215), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3215), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3215), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3215), + [aux_sym_rekey_limit_token1] = ACTIONS(3215), + [aux_sym_remote_command_token1] = ACTIONS(3215), + [aux_sym_remote_forward_token1] = ACTIONS(3215), + [aux_sym_request_tty_token1] = ACTIONS(3215), + [aux_sym_required_rsa_size_token1] = ACTIONS(3215), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3215), + [aux_sym_security_key_provider_token1] = ACTIONS(3215), + [aux_sym_send_env_token1] = ACTIONS(3215), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3215), + [aux_sym_server_alive_interval_token1] = ACTIONS(3215), + [aux_sym_session_type_token1] = ACTIONS(3215), + [aux_sym_set_env_token1] = ACTIONS(3215), + [aux_sym_stdin_null_token1] = ACTIONS(3215), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3215), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3215), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3215), + [aux_sym_syslog_facility_token1] = ACTIONS(3215), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3215), + [aux_sym_keep_alive_token1] = ACTIONS(3215), + [aux_sym_tag_token1] = ACTIONS(3215), + [aux_sym_tunnel_token1] = ACTIONS(3217), + [aux_sym_tunnel_device_token1] = ACTIONS(3215), + [aux_sym_update_host_keys_token1] = ACTIONS(3215), + [aux_sym_use_keychain_token1] = ACTIONS(3215), + [aux_sym_use_roaming_token1] = ACTIONS(3215), + [aux_sym_user_token1] = ACTIONS(3217), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3215), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3215), + [aux_sym_visual_host_key_token1] = ACTIONS(3215), + [aux_sym_xauth_location_token1] = ACTIONS(3215), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(3196), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3198), - [aux_sym_match_token1] = ACTIONS(3196), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3196), - [aux_sym_address_family_token1] = ACTIONS(3196), - [aux_sym_batch_mode_token1] = ACTIONS(3196), - [aux_sym_bind_address_token1] = ACTIONS(3196), - [aux_sym_bind_interface_token1] = ACTIONS(3196), - [aux_sym_canonical_domains_token1] = ACTIONS(3196), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3196), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3196), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3196), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3196), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3196), - [aux_sym_certificate_file_token1] = ACTIONS(3196), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3196), - [aux_sym_channel_timeout_token1] = ACTIONS(3196), - [aux_sym_check_host_ip_token1] = ACTIONS(3196), - [aux_sym_ciphers_token1] = ACTIONS(3196), - [aux_sym_cipher_token1] = ACTIONS(3198), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3196), - [aux_sym_compression_token1] = ACTIONS(3196), - [aux_sym_connection_attempts_token1] = ACTIONS(3196), - [aux_sym_connect_timeout_token1] = ACTIONS(3196), - [aux_sym_control_master_token1] = ACTIONS(3196), - [aux_sym_control_path_token1] = ACTIONS(3196), - [aux_sym_control_persist_token1] = ACTIONS(3196), - [aux_sym_dynamic_forward_token1] = ACTIONS(3196), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3196), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3196), - [aux_sym_escape_char_token1] = ACTIONS(3196), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3196), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3196), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3196), - [aux_sym_forward_agent_token1] = ACTIONS(3196), - [aux_sym_forward_x11_token1] = ACTIONS(3198), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3196), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3196), - [aux_sym_gateway_ports_token1] = ACTIONS(3196), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3196), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3196), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3196), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3196), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3196), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3196), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3196), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3196), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3196), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3196), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3196), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3196), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3196), - [aux_sym_host_key_alias_token1] = ACTIONS(3196), - [aux_sym_hostname_token1] = ACTIONS(3196), - [aux_sym_identities_only_token1] = ACTIONS(3196), - [aux_sym_identity_agent_token1] = ACTIONS(3196), - [aux_sym_identity_file_token1] = ACTIONS(3196), - [aux_sym_ignore_unknown_token1] = ACTIONS(3196), - [aux_sym_include_token1] = ACTIONS(3196), - [aux_sym_ip_qos_token1] = ACTIONS(3196), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3196), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3196), - [aux_sym_kex_algorithms_token1] = ACTIONS(3196), - [aux_sym_known_hosts_command_token1] = ACTIONS(3196), - [aux_sym_local_command_token1] = ACTIONS(3196), - [aux_sym_local_forward_token1] = ACTIONS(3196), - [aux_sym_log_level_token1] = ACTIONS(3196), - [aux_sym_log_verbose_token1] = ACTIONS(3196), - [aux_sym_macs_token1] = ACTIONS(3196), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3196), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3196), - [aux_sym_password_authentication_token1] = ACTIONS(3196), - [aux_sym_permit_local_command_token1] = ACTIONS(3196), - [aux_sym_permit_remote_open_token1] = ACTIONS(3196), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3196), - [aux_sym_port_token1] = ACTIONS(3196), - [aux_sym_preferred_authentications_token1] = ACTIONS(3196), - [aux_sym_protocol_token1] = ACTIONS(3196), - [aux_sym_proxy_command_token1] = ACTIONS(3196), - [aux_sym_proxy_jump_token1] = ACTIONS(3196), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3196), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3196), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3196), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3196), - [aux_sym_rekey_limit_token1] = ACTIONS(3196), - [aux_sym_remote_command_token1] = ACTIONS(3196), - [aux_sym_remote_forward_token1] = ACTIONS(3196), - [aux_sym_request_tty_token1] = ACTIONS(3196), - [aux_sym_required_rsa_size_token1] = ACTIONS(3196), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3196), - [aux_sym_security_key_provider_token1] = ACTIONS(3196), - [aux_sym_send_env_token1] = ACTIONS(3196), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3196), - [aux_sym_server_alive_interval_token1] = ACTIONS(3196), - [aux_sym_session_type_token1] = ACTIONS(3196), - [aux_sym_set_env_token1] = ACTIONS(3196), - [aux_sym_stdin_null_token1] = ACTIONS(3196), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3196), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3196), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3196), - [aux_sym_syslog_facility_token1] = ACTIONS(3196), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3196), - [aux_sym_keep_alive_token1] = ACTIONS(3196), - [aux_sym_tag_token1] = ACTIONS(3196), - [aux_sym_tunnel_token1] = ACTIONS(3198), - [aux_sym_tunnel_device_token1] = ACTIONS(3196), - [aux_sym_update_host_keys_token1] = ACTIONS(3196), - [aux_sym_use_keychain_token1] = ACTIONS(3196), - [aux_sym_use_roaming_token1] = ACTIONS(3196), - [aux_sym_user_token1] = ACTIONS(3198), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3196), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3196), - [aux_sym_visual_host_key_token1] = ACTIONS(3196), - [aux_sym_xauth_location_token1] = ACTIONS(3196), + [ts_builtin_sym_end] = ACTIONS(3219), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3221), + [aux_sym_match_token1] = ACTIONS(3219), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3219), + [aux_sym_address_family_token1] = ACTIONS(3219), + [aux_sym_batch_mode_token1] = ACTIONS(3219), + [aux_sym_bind_address_token1] = ACTIONS(3219), + [aux_sym_bind_interface_token1] = ACTIONS(3219), + [aux_sym_canonical_domains_token1] = ACTIONS(3219), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3219), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3219), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3219), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3219), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3219), + [aux_sym_certificate_file_token1] = ACTIONS(3219), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3219), + [aux_sym_channel_timeout_token1] = ACTIONS(3219), + [aux_sym_check_host_ip_token1] = ACTIONS(3219), + [aux_sym_ciphers_token1] = ACTIONS(3219), + [aux_sym_cipher_token1] = ACTIONS(3221), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3219), + [aux_sym_compression_token1] = ACTIONS(3219), + [aux_sym_connection_attempts_token1] = ACTIONS(3219), + [aux_sym_connect_timeout_token1] = ACTIONS(3219), + [aux_sym_control_master_token1] = ACTIONS(3219), + [aux_sym_control_path_token1] = ACTIONS(3219), + [aux_sym_control_persist_token1] = ACTIONS(3219), + [aux_sym_dynamic_forward_token1] = ACTIONS(3219), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3219), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3219), + [aux_sym_escape_char_token1] = ACTIONS(3219), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3219), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3219), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3219), + [aux_sym_forward_agent_token1] = ACTIONS(3219), + [aux_sym_forward_x11_token1] = ACTIONS(3221), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3219), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3219), + [aux_sym_gateway_ports_token1] = ACTIONS(3219), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3219), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3219), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3219), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3219), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3219), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3219), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3219), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3219), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3219), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3219), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3219), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3219), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3219), + [aux_sym_host_key_alias_token1] = ACTIONS(3219), + [aux_sym_hostname_token1] = ACTIONS(3219), + [aux_sym_identities_only_token1] = ACTIONS(3219), + [aux_sym_identity_agent_token1] = ACTIONS(3219), + [aux_sym_identity_file_token1] = ACTIONS(3219), + [aux_sym_ignore_unknown_token1] = ACTIONS(3219), + [aux_sym_include_token1] = ACTIONS(3219), + [aux_sym_ip_qos_token1] = ACTIONS(3219), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3219), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3219), + [aux_sym_kex_algorithms_token1] = ACTIONS(3219), + [aux_sym_known_hosts_command_token1] = ACTIONS(3219), + [aux_sym_local_command_token1] = ACTIONS(3219), + [aux_sym_local_forward_token1] = ACTIONS(3219), + [aux_sym_log_level_token1] = ACTIONS(3219), + [aux_sym_log_verbose_token1] = ACTIONS(3219), + [aux_sym_macs_token1] = ACTIONS(3219), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3219), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3219), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3219), + [aux_sym_password_authentication_token1] = ACTIONS(3219), + [aux_sym_permit_local_command_token1] = ACTIONS(3219), + [aux_sym_permit_remote_open_token1] = ACTIONS(3219), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3219), + [aux_sym_port_token1] = ACTIONS(3219), + [aux_sym_preferred_authentications_token1] = ACTIONS(3219), + [aux_sym_protocol_token1] = ACTIONS(3219), + [aux_sym_proxy_command_token1] = ACTIONS(3219), + [aux_sym_proxy_jump_token1] = ACTIONS(3219), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3219), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3219), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3219), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3219), + [aux_sym_rekey_limit_token1] = ACTIONS(3219), + [aux_sym_remote_command_token1] = ACTIONS(3219), + [aux_sym_remote_forward_token1] = ACTIONS(3219), + [aux_sym_request_tty_token1] = ACTIONS(3219), + [aux_sym_required_rsa_size_token1] = ACTIONS(3219), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3219), + [aux_sym_security_key_provider_token1] = ACTIONS(3219), + [aux_sym_send_env_token1] = ACTIONS(3219), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3219), + [aux_sym_server_alive_interval_token1] = ACTIONS(3219), + [aux_sym_session_type_token1] = ACTIONS(3219), + [aux_sym_set_env_token1] = ACTIONS(3219), + [aux_sym_stdin_null_token1] = ACTIONS(3219), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3219), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3219), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3219), + [aux_sym_syslog_facility_token1] = ACTIONS(3219), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3219), + [aux_sym_keep_alive_token1] = ACTIONS(3219), + [aux_sym_tag_token1] = ACTIONS(3219), + [aux_sym_tunnel_token1] = ACTIONS(3221), + [aux_sym_tunnel_device_token1] = ACTIONS(3219), + [aux_sym_update_host_keys_token1] = ACTIONS(3219), + [aux_sym_use_keychain_token1] = ACTIONS(3219), + [aux_sym_use_roaming_token1] = ACTIONS(3219), + [aux_sym_user_token1] = ACTIONS(3221), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3219), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3219), + [aux_sym_visual_host_key_token1] = ACTIONS(3219), + [aux_sym_xauth_location_token1] = ACTIONS(3219), }, [502] = { - [ts_builtin_sym_end] = ACTIONS(3200), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3202), - [aux_sym_match_token1] = ACTIONS(3200), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3200), - [aux_sym_address_family_token1] = ACTIONS(3200), - [aux_sym_batch_mode_token1] = ACTIONS(3200), - [aux_sym_bind_address_token1] = ACTIONS(3200), - [aux_sym_bind_interface_token1] = ACTIONS(3200), - [aux_sym_canonical_domains_token1] = ACTIONS(3200), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3200), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3200), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3200), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3200), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3200), - [aux_sym_certificate_file_token1] = ACTIONS(3200), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3200), - [aux_sym_channel_timeout_token1] = ACTIONS(3200), - [aux_sym_check_host_ip_token1] = ACTIONS(3200), - [aux_sym_ciphers_token1] = ACTIONS(3200), - [aux_sym_cipher_token1] = ACTIONS(3202), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3200), - [aux_sym_compression_token1] = ACTIONS(3200), - [aux_sym_connection_attempts_token1] = ACTIONS(3200), - [aux_sym_connect_timeout_token1] = ACTIONS(3200), - [aux_sym_control_master_token1] = ACTIONS(3200), - [aux_sym_control_path_token1] = ACTIONS(3200), - [aux_sym_control_persist_token1] = ACTIONS(3200), - [aux_sym_dynamic_forward_token1] = ACTIONS(3200), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3200), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3200), - [aux_sym_escape_char_token1] = ACTIONS(3200), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3200), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3200), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3200), - [aux_sym_forward_agent_token1] = ACTIONS(3200), - [aux_sym_forward_x11_token1] = ACTIONS(3202), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3200), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3200), - [aux_sym_gateway_ports_token1] = ACTIONS(3200), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3200), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3200), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3200), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3200), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3200), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3200), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3200), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3200), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3200), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3200), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3200), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3200), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3200), - [aux_sym_host_key_alias_token1] = ACTIONS(3200), - [aux_sym_hostname_token1] = ACTIONS(3200), - [aux_sym_identities_only_token1] = ACTIONS(3200), - [aux_sym_identity_agent_token1] = ACTIONS(3200), - [aux_sym_identity_file_token1] = ACTIONS(3200), - [aux_sym_ignore_unknown_token1] = ACTIONS(3200), - [aux_sym_include_token1] = ACTIONS(3200), - [aux_sym_ip_qos_token1] = ACTIONS(3200), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3200), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3200), - [aux_sym_kex_algorithms_token1] = ACTIONS(3200), - [aux_sym_known_hosts_command_token1] = ACTIONS(3200), - [aux_sym_local_command_token1] = ACTIONS(3200), - [aux_sym_local_forward_token1] = ACTIONS(3200), - [aux_sym_log_level_token1] = ACTIONS(3200), - [aux_sym_log_verbose_token1] = ACTIONS(3200), - [aux_sym_macs_token1] = ACTIONS(3200), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3200), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3200), - [aux_sym_password_authentication_token1] = ACTIONS(3200), - [aux_sym_permit_local_command_token1] = ACTIONS(3200), - [aux_sym_permit_remote_open_token1] = ACTIONS(3200), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3200), - [aux_sym_port_token1] = ACTIONS(3200), - [aux_sym_preferred_authentications_token1] = ACTIONS(3200), - [aux_sym_protocol_token1] = ACTIONS(3200), - [aux_sym_proxy_command_token1] = ACTIONS(3200), - [aux_sym_proxy_jump_token1] = ACTIONS(3200), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3200), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3200), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3200), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3200), - [aux_sym_rekey_limit_token1] = ACTIONS(3200), - [aux_sym_remote_command_token1] = ACTIONS(3200), - [aux_sym_remote_forward_token1] = ACTIONS(3200), - [aux_sym_request_tty_token1] = ACTIONS(3200), - [aux_sym_required_rsa_size_token1] = ACTIONS(3200), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3200), - [aux_sym_security_key_provider_token1] = ACTIONS(3200), - [aux_sym_send_env_token1] = ACTIONS(3200), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3200), - [aux_sym_server_alive_interval_token1] = ACTIONS(3200), - [aux_sym_session_type_token1] = ACTIONS(3200), - [aux_sym_set_env_token1] = ACTIONS(3200), - [aux_sym_stdin_null_token1] = ACTIONS(3200), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3200), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3200), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3200), - [aux_sym_syslog_facility_token1] = ACTIONS(3200), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3200), - [aux_sym_keep_alive_token1] = ACTIONS(3200), - [aux_sym_tag_token1] = ACTIONS(3200), - [aux_sym_tunnel_token1] = ACTIONS(3202), - [aux_sym_tunnel_device_token1] = ACTIONS(3200), - [aux_sym_update_host_keys_token1] = ACTIONS(3200), - [aux_sym_use_keychain_token1] = ACTIONS(3200), - [aux_sym_use_roaming_token1] = ACTIONS(3200), - [aux_sym_user_token1] = ACTIONS(3202), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3200), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3200), - [aux_sym_visual_host_key_token1] = ACTIONS(3200), - [aux_sym_xauth_location_token1] = ACTIONS(3200), + [ts_builtin_sym_end] = ACTIONS(3223), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3225), + [aux_sym_match_token1] = ACTIONS(3223), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3223), + [aux_sym_address_family_token1] = ACTIONS(3223), + [aux_sym_batch_mode_token1] = ACTIONS(3223), + [aux_sym_bind_address_token1] = ACTIONS(3223), + [aux_sym_bind_interface_token1] = ACTIONS(3223), + [aux_sym_canonical_domains_token1] = ACTIONS(3223), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3223), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3223), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3223), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3223), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3223), + [aux_sym_certificate_file_token1] = ACTIONS(3223), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3223), + [aux_sym_channel_timeout_token1] = ACTIONS(3223), + [aux_sym_check_host_ip_token1] = ACTIONS(3223), + [aux_sym_ciphers_token1] = ACTIONS(3223), + [aux_sym_cipher_token1] = ACTIONS(3225), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3223), + [aux_sym_compression_token1] = ACTIONS(3223), + [aux_sym_connection_attempts_token1] = ACTIONS(3223), + [aux_sym_connect_timeout_token1] = ACTIONS(3223), + [aux_sym_control_master_token1] = ACTIONS(3223), + [aux_sym_control_path_token1] = ACTIONS(3223), + [aux_sym_control_persist_token1] = ACTIONS(3223), + [aux_sym_dynamic_forward_token1] = ACTIONS(3223), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3223), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3223), + [aux_sym_escape_char_token1] = ACTIONS(3223), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3223), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3223), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3223), + [aux_sym_forward_agent_token1] = ACTIONS(3223), + [aux_sym_forward_x11_token1] = ACTIONS(3225), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3223), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3223), + [aux_sym_gateway_ports_token1] = ACTIONS(3223), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3223), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3223), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3223), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3223), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3223), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3223), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3223), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3223), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3223), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3223), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3223), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3223), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3223), + [aux_sym_host_key_alias_token1] = ACTIONS(3223), + [aux_sym_hostname_token1] = ACTIONS(3223), + [aux_sym_identities_only_token1] = ACTIONS(3223), + [aux_sym_identity_agent_token1] = ACTIONS(3223), + [aux_sym_identity_file_token1] = ACTIONS(3223), + [aux_sym_ignore_unknown_token1] = ACTIONS(3223), + [aux_sym_include_token1] = ACTIONS(3223), + [aux_sym_ip_qos_token1] = ACTIONS(3223), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3223), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3223), + [aux_sym_kex_algorithms_token1] = ACTIONS(3223), + [aux_sym_known_hosts_command_token1] = ACTIONS(3223), + [aux_sym_local_command_token1] = ACTIONS(3223), + [aux_sym_local_forward_token1] = ACTIONS(3223), + [aux_sym_log_level_token1] = ACTIONS(3223), + [aux_sym_log_verbose_token1] = ACTIONS(3223), + [aux_sym_macs_token1] = ACTIONS(3223), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3223), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3223), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3223), + [aux_sym_password_authentication_token1] = ACTIONS(3223), + [aux_sym_permit_local_command_token1] = ACTIONS(3223), + [aux_sym_permit_remote_open_token1] = ACTIONS(3223), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3223), + [aux_sym_port_token1] = ACTIONS(3223), + [aux_sym_preferred_authentications_token1] = ACTIONS(3223), + [aux_sym_protocol_token1] = ACTIONS(3223), + [aux_sym_proxy_command_token1] = ACTIONS(3223), + [aux_sym_proxy_jump_token1] = ACTIONS(3223), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3223), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3223), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3223), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3223), + [aux_sym_rekey_limit_token1] = ACTIONS(3223), + [aux_sym_remote_command_token1] = ACTIONS(3223), + [aux_sym_remote_forward_token1] = ACTIONS(3223), + [aux_sym_request_tty_token1] = ACTIONS(3223), + [aux_sym_required_rsa_size_token1] = ACTIONS(3223), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3223), + [aux_sym_security_key_provider_token1] = ACTIONS(3223), + [aux_sym_send_env_token1] = ACTIONS(3223), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3223), + [aux_sym_server_alive_interval_token1] = ACTIONS(3223), + [aux_sym_session_type_token1] = ACTIONS(3223), + [aux_sym_set_env_token1] = ACTIONS(3223), + [aux_sym_stdin_null_token1] = ACTIONS(3223), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3223), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3223), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3223), + [aux_sym_syslog_facility_token1] = ACTIONS(3223), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3223), + [aux_sym_keep_alive_token1] = ACTIONS(3223), + [aux_sym_tag_token1] = ACTIONS(3223), + [aux_sym_tunnel_token1] = ACTIONS(3225), + [aux_sym_tunnel_device_token1] = ACTIONS(3223), + [aux_sym_update_host_keys_token1] = ACTIONS(3223), + [aux_sym_use_keychain_token1] = ACTIONS(3223), + [aux_sym_use_roaming_token1] = ACTIONS(3223), + [aux_sym_user_token1] = ACTIONS(3225), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3223), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3223), + [aux_sym_visual_host_key_token1] = ACTIONS(3223), + [aux_sym_xauth_location_token1] = ACTIONS(3223), }, [503] = { - [ts_builtin_sym_end] = ACTIONS(3204), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3206), - [aux_sym_match_token1] = ACTIONS(3204), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3204), - [aux_sym_address_family_token1] = ACTIONS(3204), - [aux_sym_batch_mode_token1] = ACTIONS(3204), - [aux_sym_bind_address_token1] = ACTIONS(3204), - [aux_sym_bind_interface_token1] = ACTIONS(3204), - [aux_sym_canonical_domains_token1] = ACTIONS(3204), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3204), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3204), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3204), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3204), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3204), - [aux_sym_certificate_file_token1] = ACTIONS(3204), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3204), - [aux_sym_channel_timeout_token1] = ACTIONS(3204), - [aux_sym_check_host_ip_token1] = ACTIONS(3204), - [aux_sym_ciphers_token1] = ACTIONS(3204), - [aux_sym_cipher_token1] = ACTIONS(3206), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3204), - [aux_sym_compression_token1] = ACTIONS(3204), - [aux_sym_connection_attempts_token1] = ACTIONS(3204), - [aux_sym_connect_timeout_token1] = ACTIONS(3204), - [aux_sym_control_master_token1] = ACTIONS(3204), - [aux_sym_control_path_token1] = ACTIONS(3204), - [aux_sym_control_persist_token1] = ACTIONS(3204), - [aux_sym_dynamic_forward_token1] = ACTIONS(3204), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3204), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3204), - [aux_sym_escape_char_token1] = ACTIONS(3204), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3204), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3204), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3204), - [aux_sym_forward_agent_token1] = ACTIONS(3204), - [aux_sym_forward_x11_token1] = ACTIONS(3206), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3204), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3204), - [aux_sym_gateway_ports_token1] = ACTIONS(3204), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3204), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3204), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3204), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3204), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3204), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3204), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3204), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3204), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3204), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3204), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3204), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3204), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3204), - [aux_sym_host_key_alias_token1] = ACTIONS(3204), - [aux_sym_hostname_token1] = ACTIONS(3204), - [aux_sym_identities_only_token1] = ACTIONS(3204), - [aux_sym_identity_agent_token1] = ACTIONS(3204), - [aux_sym_identity_file_token1] = ACTIONS(3204), - [aux_sym_ignore_unknown_token1] = ACTIONS(3204), - [aux_sym_include_token1] = ACTIONS(3204), - [aux_sym_ip_qos_token1] = ACTIONS(3204), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3204), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3204), - [aux_sym_kex_algorithms_token1] = ACTIONS(3204), - [aux_sym_known_hosts_command_token1] = ACTIONS(3204), - [aux_sym_local_command_token1] = ACTIONS(3204), - [aux_sym_local_forward_token1] = ACTIONS(3204), - [aux_sym_log_level_token1] = ACTIONS(3204), - [aux_sym_log_verbose_token1] = ACTIONS(3204), - [aux_sym_macs_token1] = ACTIONS(3204), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3204), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3204), - [aux_sym_password_authentication_token1] = ACTIONS(3204), - [aux_sym_permit_local_command_token1] = ACTIONS(3204), - [aux_sym_permit_remote_open_token1] = ACTIONS(3204), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3204), - [aux_sym_port_token1] = ACTIONS(3204), - [aux_sym_preferred_authentications_token1] = ACTIONS(3204), - [aux_sym_protocol_token1] = ACTIONS(3204), - [aux_sym_proxy_command_token1] = ACTIONS(3204), - [aux_sym_proxy_jump_token1] = ACTIONS(3204), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3204), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3204), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3204), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3204), - [aux_sym_rekey_limit_token1] = ACTIONS(3204), - [aux_sym_remote_command_token1] = ACTIONS(3204), - [aux_sym_remote_forward_token1] = ACTIONS(3204), - [aux_sym_request_tty_token1] = ACTIONS(3204), - [aux_sym_required_rsa_size_token1] = ACTIONS(3204), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3204), - [aux_sym_security_key_provider_token1] = ACTIONS(3204), - [aux_sym_send_env_token1] = ACTIONS(3204), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3204), - [aux_sym_server_alive_interval_token1] = ACTIONS(3204), - [aux_sym_session_type_token1] = ACTIONS(3204), - [aux_sym_set_env_token1] = ACTIONS(3204), - [aux_sym_stdin_null_token1] = ACTIONS(3204), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3204), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3204), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3204), - [aux_sym_syslog_facility_token1] = ACTIONS(3204), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3204), - [aux_sym_keep_alive_token1] = ACTIONS(3204), - [aux_sym_tag_token1] = ACTIONS(3204), - [aux_sym_tunnel_token1] = ACTIONS(3206), - [aux_sym_tunnel_device_token1] = ACTIONS(3204), - [aux_sym_update_host_keys_token1] = ACTIONS(3204), - [aux_sym_use_keychain_token1] = ACTIONS(3204), - [aux_sym_use_roaming_token1] = ACTIONS(3204), - [aux_sym_user_token1] = ACTIONS(3206), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3204), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3204), - [aux_sym_visual_host_key_token1] = ACTIONS(3204), - [aux_sym_xauth_location_token1] = ACTIONS(3204), + [ts_builtin_sym_end] = ACTIONS(1133), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1135), + [aux_sym_match_token1] = ACTIONS(1133), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1133), + [aux_sym_address_family_token1] = ACTIONS(1133), + [aux_sym_batch_mode_token1] = ACTIONS(1133), + [aux_sym_bind_address_token1] = ACTIONS(1133), + [aux_sym_bind_interface_token1] = ACTIONS(1133), + [aux_sym_canonical_domains_token1] = ACTIONS(1133), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1133), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1133), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1133), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1133), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1133), + [aux_sym_certificate_file_token1] = ACTIONS(1133), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1133), + [aux_sym_channel_timeout_token1] = ACTIONS(1133), + [aux_sym_check_host_ip_token1] = ACTIONS(1133), + [aux_sym_ciphers_token1] = ACTIONS(1133), + [aux_sym_cipher_token1] = ACTIONS(1135), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1133), + [aux_sym_compression_token1] = ACTIONS(1133), + [aux_sym_connection_attempts_token1] = ACTIONS(1133), + [aux_sym_connect_timeout_token1] = ACTIONS(1133), + [aux_sym_control_master_token1] = ACTIONS(1133), + [aux_sym_control_path_token1] = ACTIONS(1133), + [aux_sym_control_persist_token1] = ACTIONS(1133), + [aux_sym_dynamic_forward_token1] = ACTIONS(1133), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1133), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1133), + [aux_sym_escape_char_token1] = ACTIONS(1133), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1133), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1133), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1133), + [aux_sym_forward_agent_token1] = ACTIONS(1133), + [aux_sym_forward_x11_token1] = ACTIONS(1135), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1133), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1133), + [aux_sym_gateway_ports_token1] = ACTIONS(1133), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1133), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1133), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1133), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1133), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1133), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1133), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1133), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1133), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1133), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1133), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1133), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1133), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1133), + [aux_sym_host_key_alias_token1] = ACTIONS(1133), + [aux_sym_hostname_token1] = ACTIONS(1133), + [aux_sym_identities_only_token1] = ACTIONS(1133), + [aux_sym_identity_agent_token1] = ACTIONS(1133), + [aux_sym_identity_file_token1] = ACTIONS(1133), + [aux_sym_ignore_unknown_token1] = ACTIONS(1133), + [aux_sym_include_token1] = ACTIONS(1133), + [aux_sym_ip_qos_token1] = ACTIONS(1133), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1133), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1133), + [aux_sym_kex_algorithms_token1] = ACTIONS(1133), + [aux_sym_known_hosts_command_token1] = ACTIONS(1133), + [aux_sym_local_command_token1] = ACTIONS(1133), + [aux_sym_local_forward_token1] = ACTIONS(1133), + [aux_sym_log_level_token1] = ACTIONS(1133), + [aux_sym_log_verbose_token1] = ACTIONS(1133), + [aux_sym_macs_token1] = ACTIONS(1133), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1133), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1133), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1133), + [aux_sym_password_authentication_token1] = ACTIONS(1133), + [aux_sym_permit_local_command_token1] = ACTIONS(1133), + [aux_sym_permit_remote_open_token1] = ACTIONS(1133), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1133), + [aux_sym_port_token1] = ACTIONS(1133), + [aux_sym_preferred_authentications_token1] = ACTIONS(1133), + [aux_sym_protocol_token1] = ACTIONS(1133), + [aux_sym_proxy_command_token1] = ACTIONS(1133), + [aux_sym_proxy_jump_token1] = ACTIONS(1133), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1133), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1133), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1133), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1133), + [aux_sym_rekey_limit_token1] = ACTIONS(1133), + [aux_sym_remote_command_token1] = ACTIONS(1133), + [aux_sym_remote_forward_token1] = ACTIONS(1133), + [aux_sym_request_tty_token1] = ACTIONS(1133), + [aux_sym_required_rsa_size_token1] = ACTIONS(1133), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1133), + [aux_sym_security_key_provider_token1] = ACTIONS(1133), + [aux_sym_send_env_token1] = ACTIONS(1133), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1133), + [aux_sym_server_alive_interval_token1] = ACTIONS(1133), + [aux_sym_session_type_token1] = ACTIONS(1133), + [aux_sym_set_env_token1] = ACTIONS(1133), + [aux_sym_stdin_null_token1] = ACTIONS(1133), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1133), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1133), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1133), + [aux_sym_syslog_facility_token1] = ACTIONS(1133), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1133), + [aux_sym_keep_alive_token1] = ACTIONS(1133), + [aux_sym_tag_token1] = ACTIONS(1133), + [aux_sym_tunnel_token1] = ACTIONS(1135), + [aux_sym_tunnel_device_token1] = ACTIONS(1133), + [aux_sym_update_host_keys_token1] = ACTIONS(1133), + [aux_sym_use_keychain_token1] = ACTIONS(1133), + [aux_sym_use_roaming_token1] = ACTIONS(1133), + [aux_sym_user_token1] = ACTIONS(1135), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1133), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1133), + [aux_sym_visual_host_key_token1] = ACTIONS(1133), + [aux_sym_xauth_location_token1] = ACTIONS(1133), }, [504] = { - [ts_builtin_sym_end] = ACTIONS(3208), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3210), - [aux_sym_match_token1] = ACTIONS(3208), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3208), - [aux_sym_address_family_token1] = ACTIONS(3208), - [aux_sym_batch_mode_token1] = ACTIONS(3208), - [aux_sym_bind_address_token1] = ACTIONS(3208), - [aux_sym_bind_interface_token1] = ACTIONS(3208), - [aux_sym_canonical_domains_token1] = ACTIONS(3208), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3208), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3208), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3208), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3208), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3208), - [aux_sym_certificate_file_token1] = ACTIONS(3208), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3208), - [aux_sym_channel_timeout_token1] = ACTIONS(3208), - [aux_sym_check_host_ip_token1] = ACTIONS(3208), - [aux_sym_ciphers_token1] = ACTIONS(3208), - [aux_sym_cipher_token1] = ACTIONS(3210), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3208), - [aux_sym_compression_token1] = ACTIONS(3208), - [aux_sym_connection_attempts_token1] = ACTIONS(3208), - [aux_sym_connect_timeout_token1] = ACTIONS(3208), - [aux_sym_control_master_token1] = ACTIONS(3208), - [aux_sym_control_path_token1] = ACTIONS(3208), - [aux_sym_control_persist_token1] = ACTIONS(3208), - [aux_sym_dynamic_forward_token1] = ACTIONS(3208), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3208), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3208), - [aux_sym_escape_char_token1] = ACTIONS(3208), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3208), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3208), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3208), - [aux_sym_forward_agent_token1] = ACTIONS(3208), - [aux_sym_forward_x11_token1] = ACTIONS(3210), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3208), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3208), - [aux_sym_gateway_ports_token1] = ACTIONS(3208), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3208), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3208), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3208), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3208), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3208), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3208), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3208), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3208), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3208), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3208), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3208), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3208), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3208), - [aux_sym_host_key_alias_token1] = ACTIONS(3208), - [aux_sym_hostname_token1] = ACTIONS(3208), - [aux_sym_identities_only_token1] = ACTIONS(3208), - [aux_sym_identity_agent_token1] = ACTIONS(3208), - [aux_sym_identity_file_token1] = ACTIONS(3208), - [aux_sym_ignore_unknown_token1] = ACTIONS(3208), - [aux_sym_include_token1] = ACTIONS(3208), - [aux_sym_ip_qos_token1] = ACTIONS(3208), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3208), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3208), - [aux_sym_kex_algorithms_token1] = ACTIONS(3208), - [aux_sym_known_hosts_command_token1] = ACTIONS(3208), - [aux_sym_local_command_token1] = ACTIONS(3208), - [aux_sym_local_forward_token1] = ACTIONS(3208), - [aux_sym_log_level_token1] = ACTIONS(3208), - [aux_sym_log_verbose_token1] = ACTIONS(3208), - [aux_sym_macs_token1] = ACTIONS(3208), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3208), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3208), - [aux_sym_password_authentication_token1] = ACTIONS(3208), - [aux_sym_permit_local_command_token1] = ACTIONS(3208), - [aux_sym_permit_remote_open_token1] = ACTIONS(3208), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3208), - [aux_sym_port_token1] = ACTIONS(3208), - [aux_sym_preferred_authentications_token1] = ACTIONS(3208), - [aux_sym_protocol_token1] = ACTIONS(3208), - [aux_sym_proxy_command_token1] = ACTIONS(3208), - [aux_sym_proxy_jump_token1] = ACTIONS(3208), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3208), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3208), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3208), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3208), - [aux_sym_rekey_limit_token1] = ACTIONS(3208), - [aux_sym_remote_command_token1] = ACTIONS(3208), - [aux_sym_remote_forward_token1] = ACTIONS(3208), - [aux_sym_request_tty_token1] = ACTIONS(3208), - [aux_sym_required_rsa_size_token1] = ACTIONS(3208), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3208), - [aux_sym_security_key_provider_token1] = ACTIONS(3208), - [aux_sym_send_env_token1] = ACTIONS(3208), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3208), - [aux_sym_server_alive_interval_token1] = ACTIONS(3208), - [aux_sym_session_type_token1] = ACTIONS(3208), - [aux_sym_set_env_token1] = ACTIONS(3208), - [aux_sym_stdin_null_token1] = ACTIONS(3208), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3208), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3208), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3208), - [aux_sym_syslog_facility_token1] = ACTIONS(3208), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3208), - [aux_sym_keep_alive_token1] = ACTIONS(3208), - [aux_sym_tag_token1] = ACTIONS(3208), - [aux_sym_tunnel_token1] = ACTIONS(3210), - [aux_sym_tunnel_device_token1] = ACTIONS(3208), - [aux_sym_update_host_keys_token1] = ACTIONS(3208), - [aux_sym_use_keychain_token1] = ACTIONS(3208), - [aux_sym_use_roaming_token1] = ACTIONS(3208), - [aux_sym_user_token1] = ACTIONS(3210), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3208), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3208), - [aux_sym_visual_host_key_token1] = ACTIONS(3208), - [aux_sym_xauth_location_token1] = ACTIONS(3208), + [ts_builtin_sym_end] = ACTIONS(591), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(593), + [aux_sym_match_token1] = ACTIONS(591), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(591), + [aux_sym_address_family_token1] = ACTIONS(591), + [aux_sym_batch_mode_token1] = ACTIONS(591), + [aux_sym_bind_address_token1] = ACTIONS(591), + [aux_sym_bind_interface_token1] = ACTIONS(591), + [aux_sym_canonical_domains_token1] = ACTIONS(591), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(591), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(591), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(591), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(591), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(591), + [aux_sym_certificate_file_token1] = ACTIONS(591), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(591), + [aux_sym_channel_timeout_token1] = ACTIONS(591), + [aux_sym_check_host_ip_token1] = ACTIONS(591), + [aux_sym_ciphers_token1] = ACTIONS(591), + [aux_sym_cipher_token1] = ACTIONS(593), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(591), + [aux_sym_compression_token1] = ACTIONS(591), + [aux_sym_connection_attempts_token1] = ACTIONS(591), + [aux_sym_connect_timeout_token1] = ACTIONS(591), + [aux_sym_control_master_token1] = ACTIONS(591), + [aux_sym_control_path_token1] = ACTIONS(591), + [aux_sym_control_persist_token1] = ACTIONS(591), + [aux_sym_dynamic_forward_token1] = ACTIONS(591), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(591), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(591), + [aux_sym_escape_char_token1] = ACTIONS(591), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(591), + [aux_sym_fingerprint_hash_token1] = ACTIONS(591), + [aux_sym_fork_after_authentication_token1] = ACTIONS(591), + [aux_sym_forward_agent_token1] = ACTIONS(591), + [aux_sym_forward_x11_token1] = ACTIONS(593), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(591), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(591), + [aux_sym_gateway_ports_token1] = ACTIONS(591), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(591), + [aux_sym_gssapi_authentication_token1] = ACTIONS(591), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(591), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(591), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(591), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(591), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(591), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(591), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(591), + [aux_sym_hash_known_hosts_token1] = ACTIONS(591), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(591), + [aux_sym_hostbased_authentication_token1] = ACTIONS(591), + [aux_sym_host_key_algorithms_token1] = ACTIONS(591), + [aux_sym_host_key_alias_token1] = ACTIONS(591), + [aux_sym_hostname_token1] = ACTIONS(591), + [aux_sym_identities_only_token1] = ACTIONS(591), + [aux_sym_identity_agent_token1] = ACTIONS(591), + [aux_sym_identity_file_token1] = ACTIONS(591), + [aux_sym_ignore_unknown_token1] = ACTIONS(591), + [aux_sym_include_token1] = ACTIONS(591), + [aux_sym_ip_qos_token1] = ACTIONS(591), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(591), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(591), + [aux_sym_kex_algorithms_token1] = ACTIONS(591), + [aux_sym_known_hosts_command_token1] = ACTIONS(591), + [aux_sym_local_command_token1] = ACTIONS(591), + [aux_sym_local_forward_token1] = ACTIONS(591), + [aux_sym_log_level_token1] = ACTIONS(591), + [aux_sym_log_verbose_token1] = ACTIONS(591), + [aux_sym_macs_token1] = ACTIONS(591), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(591), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(591), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(591), + [aux_sym_password_authentication_token1] = ACTIONS(591), + [aux_sym_permit_local_command_token1] = ACTIONS(591), + [aux_sym_permit_remote_open_token1] = ACTIONS(591), + [aux_sym_pkcs11_provider_token1] = ACTIONS(591), + [aux_sym_port_token1] = ACTIONS(591), + [aux_sym_preferred_authentications_token1] = ACTIONS(591), + [aux_sym_protocol_token1] = ACTIONS(591), + [aux_sym_proxy_command_token1] = ACTIONS(591), + [aux_sym_proxy_jump_token1] = ACTIONS(591), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(591), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(591), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(591), + [aux_sym_pubkey_authentication_token1] = ACTIONS(591), + [aux_sym_rekey_limit_token1] = ACTIONS(591), + [aux_sym_remote_command_token1] = ACTIONS(591), + [aux_sym_remote_forward_token1] = ACTIONS(591), + [aux_sym_request_tty_token1] = ACTIONS(591), + [aux_sym_required_rsa_size_token1] = ACTIONS(591), + [aux_sym_revoked_host_keys_token1] = ACTIONS(591), + [aux_sym_security_key_provider_token1] = ACTIONS(591), + [aux_sym_send_env_token1] = ACTIONS(591), + [aux_sym_server_alive_count_max_token1] = ACTIONS(591), + [aux_sym_server_alive_interval_token1] = ACTIONS(591), + [aux_sym_session_type_token1] = ACTIONS(591), + [aux_sym_set_env_token1] = ACTIONS(591), + [aux_sym_stdin_null_token1] = ACTIONS(591), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(591), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(591), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(591), + [aux_sym_syslog_facility_token1] = ACTIONS(591), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(591), + [aux_sym_keep_alive_token1] = ACTIONS(591), + [aux_sym_tag_token1] = ACTIONS(591), + [aux_sym_tunnel_token1] = ACTIONS(593), + [aux_sym_tunnel_device_token1] = ACTIONS(591), + [aux_sym_update_host_keys_token1] = ACTIONS(591), + [aux_sym_use_keychain_token1] = ACTIONS(591), + [aux_sym_use_roaming_token1] = ACTIONS(591), + [aux_sym_user_token1] = ACTIONS(593), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(591), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(591), + [aux_sym_visual_host_key_token1] = ACTIONS(591), + [aux_sym_xauth_location_token1] = ACTIONS(591), }, [505] = { - [ts_builtin_sym_end] = ACTIONS(1386), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1388), - [aux_sym_match_token1] = ACTIONS(1386), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1386), - [aux_sym_address_family_token1] = ACTIONS(1386), - [aux_sym_batch_mode_token1] = ACTIONS(1386), - [aux_sym_bind_address_token1] = ACTIONS(1386), - [aux_sym_bind_interface_token1] = ACTIONS(1386), - [aux_sym_canonical_domains_token1] = ACTIONS(1386), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1386), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1386), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1386), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1386), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1386), - [aux_sym_certificate_file_token1] = ACTIONS(1386), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1386), - [aux_sym_channel_timeout_token1] = ACTIONS(1386), - [aux_sym_check_host_ip_token1] = ACTIONS(1386), - [aux_sym_ciphers_token1] = ACTIONS(1386), - [aux_sym_cipher_token1] = ACTIONS(1388), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1386), - [aux_sym_compression_token1] = ACTIONS(1386), - [aux_sym_connection_attempts_token1] = ACTIONS(1386), - [aux_sym_connect_timeout_token1] = ACTIONS(1386), - [aux_sym_control_master_token1] = ACTIONS(1386), - [aux_sym_control_path_token1] = ACTIONS(1386), - [aux_sym_control_persist_token1] = ACTIONS(1386), - [aux_sym_dynamic_forward_token1] = ACTIONS(1386), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1386), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1386), - [aux_sym_escape_char_token1] = ACTIONS(1386), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1386), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1386), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1386), - [aux_sym_forward_agent_token1] = ACTIONS(1386), - [aux_sym_forward_x11_token1] = ACTIONS(1388), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1386), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1386), - [aux_sym_gateway_ports_token1] = ACTIONS(1386), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1386), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1386), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1386), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1386), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1386), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1386), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1386), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1386), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1386), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1386), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1386), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1386), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1386), - [aux_sym_host_key_alias_token1] = ACTIONS(1386), - [aux_sym_hostname_token1] = ACTIONS(1386), - [aux_sym_identities_only_token1] = ACTIONS(1386), - [aux_sym_identity_agent_token1] = ACTIONS(1386), - [aux_sym_identity_file_token1] = ACTIONS(1386), - [aux_sym_ignore_unknown_token1] = ACTIONS(1386), - [aux_sym_include_token1] = ACTIONS(1386), - [aux_sym_ip_qos_token1] = ACTIONS(1386), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1386), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1386), - [aux_sym_kex_algorithms_token1] = ACTIONS(1386), - [aux_sym_known_hosts_command_token1] = ACTIONS(1386), - [aux_sym_local_command_token1] = ACTIONS(1386), - [aux_sym_local_forward_token1] = ACTIONS(1386), - [aux_sym_log_level_token1] = ACTIONS(1386), - [aux_sym_log_verbose_token1] = ACTIONS(1386), - [aux_sym_macs_token1] = ACTIONS(1386), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1386), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1386), - [aux_sym_password_authentication_token1] = ACTIONS(1386), - [aux_sym_permit_local_command_token1] = ACTIONS(1386), - [aux_sym_permit_remote_open_token1] = ACTIONS(1386), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1386), - [aux_sym_port_token1] = ACTIONS(1386), - [aux_sym_preferred_authentications_token1] = ACTIONS(1386), - [aux_sym_protocol_token1] = ACTIONS(1386), - [aux_sym_proxy_command_token1] = ACTIONS(1386), - [aux_sym_proxy_jump_token1] = ACTIONS(1386), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1386), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1386), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1386), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1386), - [aux_sym_rekey_limit_token1] = ACTIONS(1386), - [aux_sym_remote_command_token1] = ACTIONS(1386), - [aux_sym_remote_forward_token1] = ACTIONS(1386), - [aux_sym_request_tty_token1] = ACTIONS(1386), - [aux_sym_required_rsa_size_token1] = ACTIONS(1386), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1386), - [aux_sym_security_key_provider_token1] = ACTIONS(1386), - [aux_sym_send_env_token1] = ACTIONS(1386), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1386), - [aux_sym_server_alive_interval_token1] = ACTIONS(1386), - [aux_sym_session_type_token1] = ACTIONS(1386), - [aux_sym_set_env_token1] = ACTIONS(1386), - [aux_sym_stdin_null_token1] = ACTIONS(1386), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1386), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1386), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1386), - [aux_sym_syslog_facility_token1] = ACTIONS(1386), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1386), - [aux_sym_keep_alive_token1] = ACTIONS(1386), - [aux_sym_tag_token1] = ACTIONS(1386), - [aux_sym_tunnel_token1] = ACTIONS(1388), - [aux_sym_tunnel_device_token1] = ACTIONS(1386), - [aux_sym_update_host_keys_token1] = ACTIONS(1386), - [aux_sym_use_keychain_token1] = ACTIONS(1386), - [aux_sym_use_roaming_token1] = ACTIONS(1386), - [aux_sym_user_token1] = ACTIONS(1388), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1386), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1386), - [aux_sym_visual_host_key_token1] = ACTIONS(1386), - [aux_sym_xauth_location_token1] = ACTIONS(1386), + [ts_builtin_sym_end] = ACTIONS(3227), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3229), + [aux_sym_match_token1] = ACTIONS(3227), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3227), + [aux_sym_address_family_token1] = ACTIONS(3227), + [aux_sym_batch_mode_token1] = ACTIONS(3227), + [aux_sym_bind_address_token1] = ACTIONS(3227), + [aux_sym_bind_interface_token1] = ACTIONS(3227), + [aux_sym_canonical_domains_token1] = ACTIONS(3227), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3227), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3227), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3227), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3227), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3227), + [aux_sym_certificate_file_token1] = ACTIONS(3227), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3227), + [aux_sym_channel_timeout_token1] = ACTIONS(3227), + [aux_sym_check_host_ip_token1] = ACTIONS(3227), + [aux_sym_ciphers_token1] = ACTIONS(3227), + [aux_sym_cipher_token1] = ACTIONS(3229), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3227), + [aux_sym_compression_token1] = ACTIONS(3227), + [aux_sym_connection_attempts_token1] = ACTIONS(3227), + [aux_sym_connect_timeout_token1] = ACTIONS(3227), + [aux_sym_control_master_token1] = ACTIONS(3227), + [aux_sym_control_path_token1] = ACTIONS(3227), + [aux_sym_control_persist_token1] = ACTIONS(3227), + [aux_sym_dynamic_forward_token1] = ACTIONS(3227), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3227), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3227), + [aux_sym_escape_char_token1] = ACTIONS(3227), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3227), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3227), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3227), + [aux_sym_forward_agent_token1] = ACTIONS(3227), + [aux_sym_forward_x11_token1] = ACTIONS(3229), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3227), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3227), + [aux_sym_gateway_ports_token1] = ACTIONS(3227), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3227), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3227), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3227), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3227), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3227), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3227), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3227), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3227), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3227), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3227), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3227), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3227), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3227), + [aux_sym_host_key_alias_token1] = ACTIONS(3227), + [aux_sym_hostname_token1] = ACTIONS(3227), + [aux_sym_identities_only_token1] = ACTIONS(3227), + [aux_sym_identity_agent_token1] = ACTIONS(3227), + [aux_sym_identity_file_token1] = ACTIONS(3227), + [aux_sym_ignore_unknown_token1] = ACTIONS(3227), + [aux_sym_include_token1] = ACTIONS(3227), + [aux_sym_ip_qos_token1] = ACTIONS(3227), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3227), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3227), + [aux_sym_kex_algorithms_token1] = ACTIONS(3227), + [aux_sym_known_hosts_command_token1] = ACTIONS(3227), + [aux_sym_local_command_token1] = ACTIONS(3227), + [aux_sym_local_forward_token1] = ACTIONS(3227), + [aux_sym_log_level_token1] = ACTIONS(3227), + [aux_sym_log_verbose_token1] = ACTIONS(3227), + [aux_sym_macs_token1] = ACTIONS(3227), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3227), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3227), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3227), + [aux_sym_password_authentication_token1] = ACTIONS(3227), + [aux_sym_permit_local_command_token1] = ACTIONS(3227), + [aux_sym_permit_remote_open_token1] = ACTIONS(3227), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3227), + [aux_sym_port_token1] = ACTIONS(3227), + [aux_sym_preferred_authentications_token1] = ACTIONS(3227), + [aux_sym_protocol_token1] = ACTIONS(3227), + [aux_sym_proxy_command_token1] = ACTIONS(3227), + [aux_sym_proxy_jump_token1] = ACTIONS(3227), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3227), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3227), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3227), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3227), + [aux_sym_rekey_limit_token1] = ACTIONS(3227), + [aux_sym_remote_command_token1] = ACTIONS(3227), + [aux_sym_remote_forward_token1] = ACTIONS(3227), + [aux_sym_request_tty_token1] = ACTIONS(3227), + [aux_sym_required_rsa_size_token1] = ACTIONS(3227), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3227), + [aux_sym_security_key_provider_token1] = ACTIONS(3227), + [aux_sym_send_env_token1] = ACTIONS(3227), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3227), + [aux_sym_server_alive_interval_token1] = ACTIONS(3227), + [aux_sym_session_type_token1] = ACTIONS(3227), + [aux_sym_set_env_token1] = ACTIONS(3227), + [aux_sym_stdin_null_token1] = ACTIONS(3227), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3227), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3227), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3227), + [aux_sym_syslog_facility_token1] = ACTIONS(3227), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3227), + [aux_sym_keep_alive_token1] = ACTIONS(3227), + [aux_sym_tag_token1] = ACTIONS(3227), + [aux_sym_tunnel_token1] = ACTIONS(3229), + [aux_sym_tunnel_device_token1] = ACTIONS(3227), + [aux_sym_update_host_keys_token1] = ACTIONS(3227), + [aux_sym_use_keychain_token1] = ACTIONS(3227), + [aux_sym_use_roaming_token1] = ACTIONS(3227), + [aux_sym_user_token1] = ACTIONS(3229), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3227), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3227), + [aux_sym_visual_host_key_token1] = ACTIONS(3227), + [aux_sym_xauth_location_token1] = ACTIONS(3227), }, [506] = { - [ts_builtin_sym_end] = ACTIONS(1302), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1304), - [aux_sym_match_token1] = ACTIONS(1302), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1302), - [aux_sym_address_family_token1] = ACTIONS(1302), - [aux_sym_batch_mode_token1] = ACTIONS(1302), - [aux_sym_bind_address_token1] = ACTIONS(1302), - [aux_sym_bind_interface_token1] = ACTIONS(1302), - [aux_sym_canonical_domains_token1] = ACTIONS(1302), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1302), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1302), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1302), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1302), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1302), - [aux_sym_certificate_file_token1] = ACTIONS(1302), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1302), - [aux_sym_channel_timeout_token1] = ACTIONS(1302), - [aux_sym_check_host_ip_token1] = ACTIONS(1302), - [aux_sym_ciphers_token1] = ACTIONS(1302), - [aux_sym_cipher_token1] = ACTIONS(1304), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1302), - [aux_sym_compression_token1] = ACTIONS(1302), - [aux_sym_connection_attempts_token1] = ACTIONS(1302), - [aux_sym_connect_timeout_token1] = ACTIONS(1302), - [aux_sym_control_master_token1] = ACTIONS(1302), - [aux_sym_control_path_token1] = ACTIONS(1302), - [aux_sym_control_persist_token1] = ACTIONS(1302), - [aux_sym_dynamic_forward_token1] = ACTIONS(1302), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1302), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1302), - [aux_sym_escape_char_token1] = ACTIONS(1302), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1302), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1302), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1302), - [aux_sym_forward_agent_token1] = ACTIONS(1302), - [aux_sym_forward_x11_token1] = ACTIONS(1304), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1302), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1302), - [aux_sym_gateway_ports_token1] = ACTIONS(1302), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1302), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1302), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1302), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1302), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1302), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1302), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1302), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1302), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1302), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1302), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1302), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1302), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1302), - [aux_sym_host_key_alias_token1] = ACTIONS(1302), - [aux_sym_hostname_token1] = ACTIONS(1302), - [aux_sym_identities_only_token1] = ACTIONS(1302), - [aux_sym_identity_agent_token1] = ACTIONS(1302), - [aux_sym_identity_file_token1] = ACTIONS(1302), - [aux_sym_ignore_unknown_token1] = ACTIONS(1302), - [aux_sym_include_token1] = ACTIONS(1302), - [aux_sym_ip_qos_token1] = ACTIONS(1302), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1302), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1302), - [aux_sym_kex_algorithms_token1] = ACTIONS(1302), - [aux_sym_known_hosts_command_token1] = ACTIONS(1302), - [aux_sym_local_command_token1] = ACTIONS(1302), - [aux_sym_local_forward_token1] = ACTIONS(1302), - [aux_sym_log_level_token1] = ACTIONS(1302), - [aux_sym_log_verbose_token1] = ACTIONS(1302), - [aux_sym_macs_token1] = ACTIONS(1302), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1302), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1302), - [aux_sym_password_authentication_token1] = ACTIONS(1302), - [aux_sym_permit_local_command_token1] = ACTIONS(1302), - [aux_sym_permit_remote_open_token1] = ACTIONS(1302), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1302), - [aux_sym_port_token1] = ACTIONS(1302), - [aux_sym_preferred_authentications_token1] = ACTIONS(1302), - [aux_sym_protocol_token1] = ACTIONS(1302), - [aux_sym_proxy_command_token1] = ACTIONS(1302), - [aux_sym_proxy_jump_token1] = ACTIONS(1302), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1302), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1302), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1302), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1302), - [aux_sym_rekey_limit_token1] = ACTIONS(1302), - [aux_sym_remote_command_token1] = ACTIONS(1302), - [aux_sym_remote_forward_token1] = ACTIONS(1302), - [aux_sym_request_tty_token1] = ACTIONS(1302), - [aux_sym_required_rsa_size_token1] = ACTIONS(1302), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1302), - [aux_sym_security_key_provider_token1] = ACTIONS(1302), - [aux_sym_send_env_token1] = ACTIONS(1302), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1302), - [aux_sym_server_alive_interval_token1] = ACTIONS(1302), - [aux_sym_session_type_token1] = ACTIONS(1302), - [aux_sym_set_env_token1] = ACTIONS(1302), - [aux_sym_stdin_null_token1] = ACTIONS(1302), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1302), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1302), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1302), - [aux_sym_syslog_facility_token1] = ACTIONS(1302), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1302), - [aux_sym_keep_alive_token1] = ACTIONS(1302), - [aux_sym_tag_token1] = ACTIONS(1302), - [aux_sym_tunnel_token1] = ACTIONS(1304), - [aux_sym_tunnel_device_token1] = ACTIONS(1302), - [aux_sym_update_host_keys_token1] = ACTIONS(1302), - [aux_sym_use_keychain_token1] = ACTIONS(1302), - [aux_sym_use_roaming_token1] = ACTIONS(1302), - [aux_sym_user_token1] = ACTIONS(1304), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1302), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1302), - [aux_sym_visual_host_key_token1] = ACTIONS(1302), - [aux_sym_xauth_location_token1] = ACTIONS(1302), + [ts_builtin_sym_end] = ACTIONS(3231), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3233), + [aux_sym_match_token1] = ACTIONS(3231), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3231), + [aux_sym_address_family_token1] = ACTIONS(3231), + [aux_sym_batch_mode_token1] = ACTIONS(3231), + [aux_sym_bind_address_token1] = ACTIONS(3231), + [aux_sym_bind_interface_token1] = ACTIONS(3231), + [aux_sym_canonical_domains_token1] = ACTIONS(3231), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3231), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3231), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3231), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3231), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3231), + [aux_sym_certificate_file_token1] = ACTIONS(3231), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3231), + [aux_sym_channel_timeout_token1] = ACTIONS(3231), + [aux_sym_check_host_ip_token1] = ACTIONS(3231), + [aux_sym_ciphers_token1] = ACTIONS(3231), + [aux_sym_cipher_token1] = ACTIONS(3233), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3231), + [aux_sym_compression_token1] = ACTIONS(3231), + [aux_sym_connection_attempts_token1] = ACTIONS(3231), + [aux_sym_connect_timeout_token1] = ACTIONS(3231), + [aux_sym_control_master_token1] = ACTIONS(3231), + [aux_sym_control_path_token1] = ACTIONS(3231), + [aux_sym_control_persist_token1] = ACTIONS(3231), + [aux_sym_dynamic_forward_token1] = ACTIONS(3231), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3231), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3231), + [aux_sym_escape_char_token1] = ACTIONS(3231), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3231), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3231), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3231), + [aux_sym_forward_agent_token1] = ACTIONS(3231), + [aux_sym_forward_x11_token1] = ACTIONS(3233), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3231), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3231), + [aux_sym_gateway_ports_token1] = ACTIONS(3231), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3231), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3231), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3231), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3231), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3231), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3231), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3231), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3231), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3231), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3231), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3231), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3231), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3231), + [aux_sym_host_key_alias_token1] = ACTIONS(3231), + [aux_sym_hostname_token1] = ACTIONS(3231), + [aux_sym_identities_only_token1] = ACTIONS(3231), + [aux_sym_identity_agent_token1] = ACTIONS(3231), + [aux_sym_identity_file_token1] = ACTIONS(3231), + [aux_sym_ignore_unknown_token1] = ACTIONS(3231), + [aux_sym_include_token1] = ACTIONS(3231), + [aux_sym_ip_qos_token1] = ACTIONS(3231), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3231), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3231), + [aux_sym_kex_algorithms_token1] = ACTIONS(3231), + [aux_sym_known_hosts_command_token1] = ACTIONS(3231), + [aux_sym_local_command_token1] = ACTIONS(3231), + [aux_sym_local_forward_token1] = ACTIONS(3231), + [aux_sym_log_level_token1] = ACTIONS(3231), + [aux_sym_log_verbose_token1] = ACTIONS(3231), + [aux_sym_macs_token1] = ACTIONS(3231), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3231), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3231), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3231), + [aux_sym_password_authentication_token1] = ACTIONS(3231), + [aux_sym_permit_local_command_token1] = ACTIONS(3231), + [aux_sym_permit_remote_open_token1] = ACTIONS(3231), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3231), + [aux_sym_port_token1] = ACTIONS(3231), + [aux_sym_preferred_authentications_token1] = ACTIONS(3231), + [aux_sym_protocol_token1] = ACTIONS(3231), + [aux_sym_proxy_command_token1] = ACTIONS(3231), + [aux_sym_proxy_jump_token1] = ACTIONS(3231), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3231), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3231), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3231), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3231), + [aux_sym_rekey_limit_token1] = ACTIONS(3231), + [aux_sym_remote_command_token1] = ACTIONS(3231), + [aux_sym_remote_forward_token1] = ACTIONS(3231), + [aux_sym_request_tty_token1] = ACTIONS(3231), + [aux_sym_required_rsa_size_token1] = ACTIONS(3231), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3231), + [aux_sym_security_key_provider_token1] = ACTIONS(3231), + [aux_sym_send_env_token1] = ACTIONS(3231), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3231), + [aux_sym_server_alive_interval_token1] = ACTIONS(3231), + [aux_sym_session_type_token1] = ACTIONS(3231), + [aux_sym_set_env_token1] = ACTIONS(3231), + [aux_sym_stdin_null_token1] = ACTIONS(3231), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3231), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3231), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3231), + [aux_sym_syslog_facility_token1] = ACTIONS(3231), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3231), + [aux_sym_keep_alive_token1] = ACTIONS(3231), + [aux_sym_tag_token1] = ACTIONS(3231), + [aux_sym_tunnel_token1] = ACTIONS(3233), + [aux_sym_tunnel_device_token1] = ACTIONS(3231), + [aux_sym_update_host_keys_token1] = ACTIONS(3231), + [aux_sym_use_keychain_token1] = ACTIONS(3231), + [aux_sym_use_roaming_token1] = ACTIONS(3231), + [aux_sym_user_token1] = ACTIONS(3233), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3231), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3231), + [aux_sym_visual_host_key_token1] = ACTIONS(3231), + [aux_sym_xauth_location_token1] = ACTIONS(3231), }, [507] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1394), - [aux_sym_match_token1] = ACTIONS(1392), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1392), - [aux_sym_address_family_token1] = ACTIONS(1392), - [aux_sym_batch_mode_token1] = ACTIONS(1392), - [aux_sym_bind_address_token1] = ACTIONS(1392), - [aux_sym_bind_interface_token1] = ACTIONS(1392), - [aux_sym_canonical_domains_token1] = ACTIONS(1392), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1392), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1392), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1392), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1392), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1392), - [aux_sym_certificate_file_token1] = ACTIONS(1392), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1392), - [aux_sym_channel_timeout_token1] = ACTIONS(1392), - [aux_sym_check_host_ip_token1] = ACTIONS(1392), - [aux_sym_ciphers_token1] = ACTIONS(1392), - [aux_sym_cipher_token1] = ACTIONS(1394), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1392), - [aux_sym_compression_token1] = ACTIONS(1392), - [aux_sym_connection_attempts_token1] = ACTIONS(1392), - [aux_sym_connect_timeout_token1] = ACTIONS(1392), - [aux_sym_control_master_token1] = ACTIONS(1392), - [aux_sym_control_path_token1] = ACTIONS(1392), - [aux_sym_control_persist_token1] = ACTIONS(1392), - [aux_sym_dynamic_forward_token1] = ACTIONS(1392), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1392), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1392), - [aux_sym_escape_char_token1] = ACTIONS(1392), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1392), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1392), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1392), - [aux_sym_forward_agent_token1] = ACTIONS(1392), - [aux_sym_forward_x11_token1] = ACTIONS(1394), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1392), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1392), - [aux_sym_gateway_ports_token1] = ACTIONS(1392), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1392), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1392), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1392), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1392), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1392), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1392), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1392), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1392), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1392), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1392), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1392), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1392), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1392), - [aux_sym_host_key_alias_token1] = ACTIONS(1392), - [aux_sym_hostname_token1] = ACTIONS(1392), - [aux_sym_identities_only_token1] = ACTIONS(1392), - [aux_sym_identity_agent_token1] = ACTIONS(1392), - [aux_sym_identity_file_token1] = ACTIONS(1392), - [aux_sym_ignore_unknown_token1] = ACTIONS(1392), - [aux_sym_include_token1] = ACTIONS(1392), - [aux_sym_ip_qos_token1] = ACTIONS(1392), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1392), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1392), - [aux_sym_kex_algorithms_token1] = ACTIONS(1392), - [aux_sym_known_hosts_command_token1] = ACTIONS(1392), - [aux_sym_local_command_token1] = ACTIONS(1392), - [aux_sym_local_forward_token1] = ACTIONS(1392), - [aux_sym_log_level_token1] = ACTIONS(1392), - [aux_sym_log_verbose_token1] = ACTIONS(1392), - [aux_sym_macs_token1] = ACTIONS(1392), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1392), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1392), - [aux_sym_password_authentication_token1] = ACTIONS(1392), - [aux_sym_permit_local_command_token1] = ACTIONS(1392), - [aux_sym_permit_remote_open_token1] = ACTIONS(1392), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1392), - [aux_sym_port_token1] = ACTIONS(1392), - [aux_sym_preferred_authentications_token1] = ACTIONS(1392), - [aux_sym_protocol_token1] = ACTIONS(1392), - [aux_sym_proxy_command_token1] = ACTIONS(1392), - [aux_sym_proxy_jump_token1] = ACTIONS(1392), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1392), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1392), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1392), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1392), - [aux_sym_rekey_limit_token1] = ACTIONS(1392), - [aux_sym_remote_command_token1] = ACTIONS(1392), - [aux_sym_remote_forward_token1] = ACTIONS(1392), - [aux_sym_request_tty_token1] = ACTIONS(1392), - [aux_sym_required_rsa_size_token1] = ACTIONS(1392), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1392), - [aux_sym_security_key_provider_token1] = ACTIONS(1392), - [aux_sym_send_env_token1] = ACTIONS(1392), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1392), - [aux_sym_server_alive_interval_token1] = ACTIONS(1392), - [aux_sym_session_type_token1] = ACTIONS(1392), - [aux_sym_set_env_token1] = ACTIONS(1392), - [aux_sym_stdin_null_token1] = ACTIONS(1392), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1392), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1392), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1392), - [aux_sym_syslog_facility_token1] = ACTIONS(1392), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1392), - [aux_sym_keep_alive_token1] = ACTIONS(1392), - [aux_sym_tag_token1] = ACTIONS(1392), - [aux_sym_tunnel_token1] = ACTIONS(1394), - [aux_sym_tunnel_device_token1] = ACTIONS(1392), - [aux_sym_update_host_keys_token1] = ACTIONS(1392), - [aux_sym_use_keychain_token1] = ACTIONS(1392), - [aux_sym_use_roaming_token1] = ACTIONS(1392), - [aux_sym_user_token1] = ACTIONS(1394), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1392), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1392), - [aux_sym_visual_host_key_token1] = ACTIONS(1392), - [aux_sym_xauth_location_token1] = ACTIONS(1392), + [ts_builtin_sym_end] = ACTIONS(3235), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3237), + [aux_sym_match_token1] = ACTIONS(3235), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3235), + [aux_sym_address_family_token1] = ACTIONS(3235), + [aux_sym_batch_mode_token1] = ACTIONS(3235), + [aux_sym_bind_address_token1] = ACTIONS(3235), + [aux_sym_bind_interface_token1] = ACTIONS(3235), + [aux_sym_canonical_domains_token1] = ACTIONS(3235), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3235), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3235), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3235), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3235), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3235), + [aux_sym_certificate_file_token1] = ACTIONS(3235), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3235), + [aux_sym_channel_timeout_token1] = ACTIONS(3235), + [aux_sym_check_host_ip_token1] = ACTIONS(3235), + [aux_sym_ciphers_token1] = ACTIONS(3235), + [aux_sym_cipher_token1] = ACTIONS(3237), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3235), + [aux_sym_compression_token1] = ACTIONS(3235), + [aux_sym_connection_attempts_token1] = ACTIONS(3235), + [aux_sym_connect_timeout_token1] = ACTIONS(3235), + [aux_sym_control_master_token1] = ACTIONS(3235), + [aux_sym_control_path_token1] = ACTIONS(3235), + [aux_sym_control_persist_token1] = ACTIONS(3235), + [aux_sym_dynamic_forward_token1] = ACTIONS(3235), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3235), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3235), + [aux_sym_escape_char_token1] = ACTIONS(3235), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3235), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3235), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3235), + [aux_sym_forward_agent_token1] = ACTIONS(3235), + [aux_sym_forward_x11_token1] = ACTIONS(3237), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3235), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3235), + [aux_sym_gateway_ports_token1] = ACTIONS(3235), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3235), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3235), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3235), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3235), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3235), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3235), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3235), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3235), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3235), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3235), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3235), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3235), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3235), + [aux_sym_host_key_alias_token1] = ACTIONS(3235), + [aux_sym_hostname_token1] = ACTIONS(3235), + [aux_sym_identities_only_token1] = ACTIONS(3235), + [aux_sym_identity_agent_token1] = ACTIONS(3235), + [aux_sym_identity_file_token1] = ACTIONS(3235), + [aux_sym_ignore_unknown_token1] = ACTIONS(3235), + [aux_sym_include_token1] = ACTIONS(3235), + [aux_sym_ip_qos_token1] = ACTIONS(3235), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3235), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3235), + [aux_sym_kex_algorithms_token1] = ACTIONS(3235), + [aux_sym_known_hosts_command_token1] = ACTIONS(3235), + [aux_sym_local_command_token1] = ACTIONS(3235), + [aux_sym_local_forward_token1] = ACTIONS(3235), + [aux_sym_log_level_token1] = ACTIONS(3235), + [aux_sym_log_verbose_token1] = ACTIONS(3235), + [aux_sym_macs_token1] = ACTIONS(3235), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3235), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3235), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3235), + [aux_sym_password_authentication_token1] = ACTIONS(3235), + [aux_sym_permit_local_command_token1] = ACTIONS(3235), + [aux_sym_permit_remote_open_token1] = ACTIONS(3235), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3235), + [aux_sym_port_token1] = ACTIONS(3235), + [aux_sym_preferred_authentications_token1] = ACTIONS(3235), + [aux_sym_protocol_token1] = ACTIONS(3235), + [aux_sym_proxy_command_token1] = ACTIONS(3235), + [aux_sym_proxy_jump_token1] = ACTIONS(3235), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3235), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3235), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3235), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3235), + [aux_sym_rekey_limit_token1] = ACTIONS(3235), + [aux_sym_remote_command_token1] = ACTIONS(3235), + [aux_sym_remote_forward_token1] = ACTIONS(3235), + [aux_sym_request_tty_token1] = ACTIONS(3235), + [aux_sym_required_rsa_size_token1] = ACTIONS(3235), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3235), + [aux_sym_security_key_provider_token1] = ACTIONS(3235), + [aux_sym_send_env_token1] = ACTIONS(3235), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3235), + [aux_sym_server_alive_interval_token1] = ACTIONS(3235), + [aux_sym_session_type_token1] = ACTIONS(3235), + [aux_sym_set_env_token1] = ACTIONS(3235), + [aux_sym_stdin_null_token1] = ACTIONS(3235), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3235), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3235), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3235), + [aux_sym_syslog_facility_token1] = ACTIONS(3235), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3235), + [aux_sym_keep_alive_token1] = ACTIONS(3235), + [aux_sym_tag_token1] = ACTIONS(3235), + [aux_sym_tunnel_token1] = ACTIONS(3237), + [aux_sym_tunnel_device_token1] = ACTIONS(3235), + [aux_sym_update_host_keys_token1] = ACTIONS(3235), + [aux_sym_use_keychain_token1] = ACTIONS(3235), + [aux_sym_use_roaming_token1] = ACTIONS(3235), + [aux_sym_user_token1] = ACTIONS(3237), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3235), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3235), + [aux_sym_visual_host_key_token1] = ACTIONS(3235), + [aux_sym_xauth_location_token1] = ACTIONS(3235), }, [508] = { - [ts_builtin_sym_end] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1298), - [aux_sym_match_token1] = ACTIONS(1296), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1296), - [aux_sym_address_family_token1] = ACTIONS(1296), - [aux_sym_batch_mode_token1] = ACTIONS(1296), - [aux_sym_bind_address_token1] = ACTIONS(1296), - [aux_sym_bind_interface_token1] = ACTIONS(1296), - [aux_sym_canonical_domains_token1] = ACTIONS(1296), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1296), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1296), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1296), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1296), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1296), - [aux_sym_certificate_file_token1] = ACTIONS(1296), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1296), - [aux_sym_channel_timeout_token1] = ACTIONS(1296), - [aux_sym_check_host_ip_token1] = ACTIONS(1296), - [aux_sym_ciphers_token1] = ACTIONS(1296), - [aux_sym_cipher_token1] = ACTIONS(1298), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1296), - [aux_sym_compression_token1] = ACTIONS(1296), - [aux_sym_connection_attempts_token1] = ACTIONS(1296), - [aux_sym_connect_timeout_token1] = ACTIONS(1296), - [aux_sym_control_master_token1] = ACTIONS(1296), - [aux_sym_control_path_token1] = ACTIONS(1296), - [aux_sym_control_persist_token1] = ACTIONS(1296), - [aux_sym_dynamic_forward_token1] = ACTIONS(1296), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1296), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1296), - [aux_sym_escape_char_token1] = ACTIONS(1296), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1296), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1296), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1296), - [aux_sym_forward_agent_token1] = ACTIONS(1296), - [aux_sym_forward_x11_token1] = ACTIONS(1298), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1296), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1296), - [aux_sym_gateway_ports_token1] = ACTIONS(1296), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1296), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1296), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1296), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1296), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1296), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1296), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1296), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1296), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1296), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1296), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1296), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1296), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1296), - [aux_sym_host_key_alias_token1] = ACTIONS(1296), - [aux_sym_hostname_token1] = ACTIONS(1296), - [aux_sym_identities_only_token1] = ACTIONS(1296), - [aux_sym_identity_agent_token1] = ACTIONS(1296), - [aux_sym_identity_file_token1] = ACTIONS(1296), - [aux_sym_ignore_unknown_token1] = ACTIONS(1296), - [aux_sym_include_token1] = ACTIONS(1296), - [aux_sym_ip_qos_token1] = ACTIONS(1296), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1296), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1296), - [aux_sym_kex_algorithms_token1] = ACTIONS(1296), - [aux_sym_known_hosts_command_token1] = ACTIONS(1296), - [aux_sym_local_command_token1] = ACTIONS(1296), - [aux_sym_local_forward_token1] = ACTIONS(1296), - [aux_sym_log_level_token1] = ACTIONS(1296), - [aux_sym_log_verbose_token1] = ACTIONS(1296), - [aux_sym_macs_token1] = ACTIONS(1296), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1296), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1296), - [aux_sym_password_authentication_token1] = ACTIONS(1296), - [aux_sym_permit_local_command_token1] = ACTIONS(1296), - [aux_sym_permit_remote_open_token1] = ACTIONS(1296), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1296), - [aux_sym_port_token1] = ACTIONS(1296), - [aux_sym_preferred_authentications_token1] = ACTIONS(1296), - [aux_sym_protocol_token1] = ACTIONS(1296), - [aux_sym_proxy_command_token1] = ACTIONS(1296), - [aux_sym_proxy_jump_token1] = ACTIONS(1296), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1296), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1296), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1296), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1296), - [aux_sym_rekey_limit_token1] = ACTIONS(1296), - [aux_sym_remote_command_token1] = ACTIONS(1296), - [aux_sym_remote_forward_token1] = ACTIONS(1296), - [aux_sym_request_tty_token1] = ACTIONS(1296), - [aux_sym_required_rsa_size_token1] = ACTIONS(1296), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1296), - [aux_sym_security_key_provider_token1] = ACTIONS(1296), - [aux_sym_send_env_token1] = ACTIONS(1296), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1296), - [aux_sym_server_alive_interval_token1] = ACTIONS(1296), - [aux_sym_session_type_token1] = ACTIONS(1296), - [aux_sym_set_env_token1] = ACTIONS(1296), - [aux_sym_stdin_null_token1] = ACTIONS(1296), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1296), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1296), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1296), - [aux_sym_syslog_facility_token1] = ACTIONS(1296), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1296), - [aux_sym_keep_alive_token1] = ACTIONS(1296), - [aux_sym_tag_token1] = ACTIONS(1296), - [aux_sym_tunnel_token1] = ACTIONS(1298), - [aux_sym_tunnel_device_token1] = ACTIONS(1296), - [aux_sym_update_host_keys_token1] = ACTIONS(1296), - [aux_sym_use_keychain_token1] = ACTIONS(1296), - [aux_sym_use_roaming_token1] = ACTIONS(1296), - [aux_sym_user_token1] = ACTIONS(1298), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1296), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1296), - [aux_sym_visual_host_key_token1] = ACTIONS(1296), - [aux_sym_xauth_location_token1] = ACTIONS(1296), + [ts_builtin_sym_end] = ACTIONS(1091), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1093), + [aux_sym_match_token1] = ACTIONS(1091), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1091), + [aux_sym_address_family_token1] = ACTIONS(1091), + [aux_sym_batch_mode_token1] = ACTIONS(1091), + [aux_sym_bind_address_token1] = ACTIONS(1091), + [aux_sym_bind_interface_token1] = ACTIONS(1091), + [aux_sym_canonical_domains_token1] = ACTIONS(1091), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1091), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1091), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1091), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1091), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1091), + [aux_sym_certificate_file_token1] = ACTIONS(1091), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1091), + [aux_sym_channel_timeout_token1] = ACTIONS(1091), + [aux_sym_check_host_ip_token1] = ACTIONS(1091), + [aux_sym_ciphers_token1] = ACTIONS(1091), + [aux_sym_cipher_token1] = ACTIONS(1093), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1091), + [aux_sym_compression_token1] = ACTIONS(1091), + [aux_sym_connection_attempts_token1] = ACTIONS(1091), + [aux_sym_connect_timeout_token1] = ACTIONS(1091), + [aux_sym_control_master_token1] = ACTIONS(1091), + [aux_sym_control_path_token1] = ACTIONS(1091), + [aux_sym_control_persist_token1] = ACTIONS(1091), + [aux_sym_dynamic_forward_token1] = ACTIONS(1091), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1091), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1091), + [aux_sym_escape_char_token1] = ACTIONS(1091), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1091), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1091), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1091), + [aux_sym_forward_agent_token1] = ACTIONS(1091), + [aux_sym_forward_x11_token1] = ACTIONS(1093), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1091), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1091), + [aux_sym_gateway_ports_token1] = ACTIONS(1091), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1091), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1091), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1091), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1091), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1091), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1091), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1091), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1091), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1091), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1091), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1091), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1091), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1091), + [aux_sym_host_key_alias_token1] = ACTIONS(1091), + [aux_sym_hostname_token1] = ACTIONS(1091), + [aux_sym_identities_only_token1] = ACTIONS(1091), + [aux_sym_identity_agent_token1] = ACTIONS(1091), + [aux_sym_identity_file_token1] = ACTIONS(1091), + [aux_sym_ignore_unknown_token1] = ACTIONS(1091), + [aux_sym_include_token1] = ACTIONS(1091), + [aux_sym_ip_qos_token1] = ACTIONS(1091), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1091), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1091), + [aux_sym_kex_algorithms_token1] = ACTIONS(1091), + [aux_sym_known_hosts_command_token1] = ACTIONS(1091), + [aux_sym_local_command_token1] = ACTIONS(1091), + [aux_sym_local_forward_token1] = ACTIONS(1091), + [aux_sym_log_level_token1] = ACTIONS(1091), + [aux_sym_log_verbose_token1] = ACTIONS(1091), + [aux_sym_macs_token1] = ACTIONS(1091), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1091), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1091), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1091), + [aux_sym_password_authentication_token1] = ACTIONS(1091), + [aux_sym_permit_local_command_token1] = ACTIONS(1091), + [aux_sym_permit_remote_open_token1] = ACTIONS(1091), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1091), + [aux_sym_port_token1] = ACTIONS(1091), + [aux_sym_preferred_authentications_token1] = ACTIONS(1091), + [aux_sym_protocol_token1] = ACTIONS(1091), + [aux_sym_proxy_command_token1] = ACTIONS(1091), + [aux_sym_proxy_jump_token1] = ACTIONS(1091), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1091), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1091), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1091), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1091), + [aux_sym_rekey_limit_token1] = ACTIONS(1091), + [aux_sym_remote_command_token1] = ACTIONS(1091), + [aux_sym_remote_forward_token1] = ACTIONS(1091), + [aux_sym_request_tty_token1] = ACTIONS(1091), + [aux_sym_required_rsa_size_token1] = ACTIONS(1091), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1091), + [aux_sym_security_key_provider_token1] = ACTIONS(1091), + [aux_sym_send_env_token1] = ACTIONS(1091), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1091), + [aux_sym_server_alive_interval_token1] = ACTIONS(1091), + [aux_sym_session_type_token1] = ACTIONS(1091), + [aux_sym_set_env_token1] = ACTIONS(1091), + [aux_sym_stdin_null_token1] = ACTIONS(1091), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1091), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1091), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1091), + [aux_sym_syslog_facility_token1] = ACTIONS(1091), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1091), + [aux_sym_keep_alive_token1] = ACTIONS(1091), + [aux_sym_tag_token1] = ACTIONS(1091), + [aux_sym_tunnel_token1] = ACTIONS(1093), + [aux_sym_tunnel_device_token1] = ACTIONS(1091), + [aux_sym_update_host_keys_token1] = ACTIONS(1091), + [aux_sym_use_keychain_token1] = ACTIONS(1091), + [aux_sym_use_roaming_token1] = ACTIONS(1091), + [aux_sym_user_token1] = ACTIONS(1093), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1091), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1091), + [aux_sym_visual_host_key_token1] = ACTIONS(1091), + [aux_sym_xauth_location_token1] = ACTIONS(1091), }, [509] = { - [ts_builtin_sym_end] = ACTIONS(3212), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3214), - [aux_sym_match_token1] = ACTIONS(3212), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3212), - [aux_sym_address_family_token1] = ACTIONS(3212), - [aux_sym_batch_mode_token1] = ACTIONS(3212), - [aux_sym_bind_address_token1] = ACTIONS(3212), - [aux_sym_bind_interface_token1] = ACTIONS(3212), - [aux_sym_canonical_domains_token1] = ACTIONS(3212), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3212), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3212), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3212), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3212), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3212), - [aux_sym_certificate_file_token1] = ACTIONS(3212), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3212), - [aux_sym_channel_timeout_token1] = ACTIONS(3212), - [aux_sym_check_host_ip_token1] = ACTIONS(3212), - [aux_sym_ciphers_token1] = ACTIONS(3212), - [aux_sym_cipher_token1] = ACTIONS(3214), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3212), - [aux_sym_compression_token1] = ACTIONS(3212), - [aux_sym_connection_attempts_token1] = ACTIONS(3212), - [aux_sym_connect_timeout_token1] = ACTIONS(3212), - [aux_sym_control_master_token1] = ACTIONS(3212), - [aux_sym_control_path_token1] = ACTIONS(3212), - [aux_sym_control_persist_token1] = ACTIONS(3212), - [aux_sym_dynamic_forward_token1] = ACTIONS(3212), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3212), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3212), - [aux_sym_escape_char_token1] = ACTIONS(3212), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3212), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3212), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3212), - [aux_sym_forward_agent_token1] = ACTIONS(3212), - [aux_sym_forward_x11_token1] = ACTIONS(3214), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3212), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3212), - [aux_sym_gateway_ports_token1] = ACTIONS(3212), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3212), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3212), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3212), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3212), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3212), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3212), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3212), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3212), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3212), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3212), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3212), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3212), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3212), - [aux_sym_host_key_alias_token1] = ACTIONS(3212), - [aux_sym_hostname_token1] = ACTIONS(3212), - [aux_sym_identities_only_token1] = ACTIONS(3212), - [aux_sym_identity_agent_token1] = ACTIONS(3212), - [aux_sym_identity_file_token1] = ACTIONS(3212), - [aux_sym_ignore_unknown_token1] = ACTIONS(3212), - [aux_sym_include_token1] = ACTIONS(3212), - [aux_sym_ip_qos_token1] = ACTIONS(3212), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3212), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3212), - [aux_sym_kex_algorithms_token1] = ACTIONS(3212), - [aux_sym_known_hosts_command_token1] = ACTIONS(3212), - [aux_sym_local_command_token1] = ACTIONS(3212), - [aux_sym_local_forward_token1] = ACTIONS(3212), - [aux_sym_log_level_token1] = ACTIONS(3212), - [aux_sym_log_verbose_token1] = ACTIONS(3212), - [aux_sym_macs_token1] = ACTIONS(3212), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3212), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3212), - [aux_sym_password_authentication_token1] = ACTIONS(3212), - [aux_sym_permit_local_command_token1] = ACTIONS(3212), - [aux_sym_permit_remote_open_token1] = ACTIONS(3212), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3212), - [aux_sym_port_token1] = ACTIONS(3212), - [aux_sym_preferred_authentications_token1] = ACTIONS(3212), - [aux_sym_protocol_token1] = ACTIONS(3212), - [aux_sym_proxy_command_token1] = ACTIONS(3212), - [aux_sym_proxy_jump_token1] = ACTIONS(3212), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3212), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3212), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3212), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3212), - [aux_sym_rekey_limit_token1] = ACTIONS(3212), - [aux_sym_remote_command_token1] = ACTIONS(3212), - [aux_sym_remote_forward_token1] = ACTIONS(3212), - [aux_sym_request_tty_token1] = ACTIONS(3212), - [aux_sym_required_rsa_size_token1] = ACTIONS(3212), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3212), - [aux_sym_security_key_provider_token1] = ACTIONS(3212), - [aux_sym_send_env_token1] = ACTIONS(3212), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3212), - [aux_sym_server_alive_interval_token1] = ACTIONS(3212), - [aux_sym_session_type_token1] = ACTIONS(3212), - [aux_sym_set_env_token1] = ACTIONS(3212), - [aux_sym_stdin_null_token1] = ACTIONS(3212), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3212), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3212), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3212), - [aux_sym_syslog_facility_token1] = ACTIONS(3212), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3212), - [aux_sym_keep_alive_token1] = ACTIONS(3212), - [aux_sym_tag_token1] = ACTIONS(3212), - [aux_sym_tunnel_token1] = ACTIONS(3214), - [aux_sym_tunnel_device_token1] = ACTIONS(3212), - [aux_sym_update_host_keys_token1] = ACTIONS(3212), - [aux_sym_use_keychain_token1] = ACTIONS(3212), - [aux_sym_use_roaming_token1] = ACTIONS(3212), - [aux_sym_user_token1] = ACTIONS(3214), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3212), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3212), - [aux_sym_visual_host_key_token1] = ACTIONS(3212), - [aux_sym_xauth_location_token1] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1189), + [aux_sym_match_token1] = ACTIONS(1187), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1187), + [aux_sym_address_family_token1] = ACTIONS(1187), + [aux_sym_batch_mode_token1] = ACTIONS(1187), + [aux_sym_bind_address_token1] = ACTIONS(1187), + [aux_sym_bind_interface_token1] = ACTIONS(1187), + [aux_sym_canonical_domains_token1] = ACTIONS(1187), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1187), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1187), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1187), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1187), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1187), + [aux_sym_certificate_file_token1] = ACTIONS(1187), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1187), + [aux_sym_channel_timeout_token1] = ACTIONS(1187), + [aux_sym_check_host_ip_token1] = ACTIONS(1187), + [aux_sym_ciphers_token1] = ACTIONS(1187), + [aux_sym_cipher_token1] = ACTIONS(1189), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1187), + [aux_sym_compression_token1] = ACTIONS(1187), + [aux_sym_connection_attempts_token1] = ACTIONS(1187), + [aux_sym_connect_timeout_token1] = ACTIONS(1187), + [aux_sym_control_master_token1] = ACTIONS(1187), + [aux_sym_control_path_token1] = ACTIONS(1187), + [aux_sym_control_persist_token1] = ACTIONS(1187), + [aux_sym_dynamic_forward_token1] = ACTIONS(1187), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1187), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1187), + [aux_sym_escape_char_token1] = ACTIONS(1187), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1187), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1187), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1187), + [aux_sym_forward_agent_token1] = ACTIONS(1187), + [aux_sym_forward_x11_token1] = ACTIONS(1189), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1187), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1187), + [aux_sym_gateway_ports_token1] = ACTIONS(1187), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1187), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1187), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1187), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1187), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1187), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1187), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1187), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1187), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1187), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1187), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1187), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1187), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1187), + [aux_sym_host_key_alias_token1] = ACTIONS(1187), + [aux_sym_hostname_token1] = ACTIONS(1187), + [aux_sym_identities_only_token1] = ACTIONS(1187), + [aux_sym_identity_agent_token1] = ACTIONS(1187), + [aux_sym_identity_file_token1] = ACTIONS(1187), + [aux_sym_ignore_unknown_token1] = ACTIONS(1187), + [aux_sym_include_token1] = ACTIONS(1187), + [aux_sym_ip_qos_token1] = ACTIONS(1187), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1187), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1187), + [aux_sym_kex_algorithms_token1] = ACTIONS(1187), + [aux_sym_known_hosts_command_token1] = ACTIONS(1187), + [aux_sym_local_command_token1] = ACTIONS(1187), + [aux_sym_local_forward_token1] = ACTIONS(1187), + [aux_sym_log_level_token1] = ACTIONS(1187), + [aux_sym_log_verbose_token1] = ACTIONS(1187), + [aux_sym_macs_token1] = ACTIONS(1187), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1187), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1187), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1187), + [aux_sym_password_authentication_token1] = ACTIONS(1187), + [aux_sym_permit_local_command_token1] = ACTIONS(1187), + [aux_sym_permit_remote_open_token1] = ACTIONS(1187), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1187), + [aux_sym_port_token1] = ACTIONS(1187), + [aux_sym_preferred_authentications_token1] = ACTIONS(1187), + [aux_sym_protocol_token1] = ACTIONS(1187), + [aux_sym_proxy_command_token1] = ACTIONS(1187), + [aux_sym_proxy_jump_token1] = ACTIONS(1187), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1187), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1187), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1187), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1187), + [aux_sym_rekey_limit_token1] = ACTIONS(1187), + [aux_sym_remote_command_token1] = ACTIONS(1187), + [aux_sym_remote_forward_token1] = ACTIONS(1187), + [aux_sym_request_tty_token1] = ACTIONS(1187), + [aux_sym_required_rsa_size_token1] = ACTIONS(1187), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1187), + [aux_sym_security_key_provider_token1] = ACTIONS(1187), + [aux_sym_send_env_token1] = ACTIONS(1187), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1187), + [aux_sym_server_alive_interval_token1] = ACTIONS(1187), + [aux_sym_session_type_token1] = ACTIONS(1187), + [aux_sym_set_env_token1] = ACTIONS(1187), + [aux_sym_stdin_null_token1] = ACTIONS(1187), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1187), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1187), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1187), + [aux_sym_syslog_facility_token1] = ACTIONS(1187), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1187), + [aux_sym_keep_alive_token1] = ACTIONS(1187), + [aux_sym_tag_token1] = ACTIONS(1187), + [aux_sym_tunnel_token1] = ACTIONS(1189), + [aux_sym_tunnel_device_token1] = ACTIONS(1187), + [aux_sym_update_host_keys_token1] = ACTIONS(1187), + [aux_sym_use_keychain_token1] = ACTIONS(1187), + [aux_sym_use_roaming_token1] = ACTIONS(1187), + [aux_sym_user_token1] = ACTIONS(1189), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1187), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1187), + [aux_sym_visual_host_key_token1] = ACTIONS(1187), + [aux_sym_xauth_location_token1] = ACTIONS(1187), }, [510] = { - [ts_builtin_sym_end] = ACTIONS(3216), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3218), - [aux_sym_match_token1] = ACTIONS(3216), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3216), - [aux_sym_address_family_token1] = ACTIONS(3216), - [aux_sym_batch_mode_token1] = ACTIONS(3216), - [aux_sym_bind_address_token1] = ACTIONS(3216), - [aux_sym_bind_interface_token1] = ACTIONS(3216), - [aux_sym_canonical_domains_token1] = ACTIONS(3216), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3216), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3216), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3216), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3216), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3216), - [aux_sym_certificate_file_token1] = ACTIONS(3216), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3216), - [aux_sym_channel_timeout_token1] = ACTIONS(3216), - [aux_sym_check_host_ip_token1] = ACTIONS(3216), - [aux_sym_ciphers_token1] = ACTIONS(3216), - [aux_sym_cipher_token1] = ACTIONS(3218), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3216), - [aux_sym_compression_token1] = ACTIONS(3216), - [aux_sym_connection_attempts_token1] = ACTIONS(3216), - [aux_sym_connect_timeout_token1] = ACTIONS(3216), - [aux_sym_control_master_token1] = ACTIONS(3216), - [aux_sym_control_path_token1] = ACTIONS(3216), - [aux_sym_control_persist_token1] = ACTIONS(3216), - [aux_sym_dynamic_forward_token1] = ACTIONS(3216), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3216), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3216), - [aux_sym_escape_char_token1] = ACTIONS(3216), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3216), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3216), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3216), - [aux_sym_forward_agent_token1] = ACTIONS(3216), - [aux_sym_forward_x11_token1] = ACTIONS(3218), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3216), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3216), - [aux_sym_gateway_ports_token1] = ACTIONS(3216), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3216), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3216), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3216), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3216), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3216), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3216), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3216), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3216), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3216), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3216), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3216), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3216), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3216), - [aux_sym_host_key_alias_token1] = ACTIONS(3216), - [aux_sym_hostname_token1] = ACTIONS(3216), - [aux_sym_identities_only_token1] = ACTIONS(3216), - [aux_sym_identity_agent_token1] = ACTIONS(3216), - [aux_sym_identity_file_token1] = ACTIONS(3216), - [aux_sym_ignore_unknown_token1] = ACTIONS(3216), - [aux_sym_include_token1] = ACTIONS(3216), - [aux_sym_ip_qos_token1] = ACTIONS(3216), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3216), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3216), - [aux_sym_kex_algorithms_token1] = ACTIONS(3216), - [aux_sym_known_hosts_command_token1] = ACTIONS(3216), - [aux_sym_local_command_token1] = ACTIONS(3216), - [aux_sym_local_forward_token1] = ACTIONS(3216), - [aux_sym_log_level_token1] = ACTIONS(3216), - [aux_sym_log_verbose_token1] = ACTIONS(3216), - [aux_sym_macs_token1] = ACTIONS(3216), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3216), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3216), - [aux_sym_password_authentication_token1] = ACTIONS(3216), - [aux_sym_permit_local_command_token1] = ACTIONS(3216), - [aux_sym_permit_remote_open_token1] = ACTIONS(3216), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3216), - [aux_sym_port_token1] = ACTIONS(3216), - [aux_sym_preferred_authentications_token1] = ACTIONS(3216), - [aux_sym_protocol_token1] = ACTIONS(3216), - [aux_sym_proxy_command_token1] = ACTIONS(3216), - [aux_sym_proxy_jump_token1] = ACTIONS(3216), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3216), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3216), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3216), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3216), - [aux_sym_rekey_limit_token1] = ACTIONS(3216), - [aux_sym_remote_command_token1] = ACTIONS(3216), - [aux_sym_remote_forward_token1] = ACTIONS(3216), - [aux_sym_request_tty_token1] = ACTIONS(3216), - [aux_sym_required_rsa_size_token1] = ACTIONS(3216), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3216), - [aux_sym_security_key_provider_token1] = ACTIONS(3216), - [aux_sym_send_env_token1] = ACTIONS(3216), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3216), - [aux_sym_server_alive_interval_token1] = ACTIONS(3216), - [aux_sym_session_type_token1] = ACTIONS(3216), - [aux_sym_set_env_token1] = ACTIONS(3216), - [aux_sym_stdin_null_token1] = ACTIONS(3216), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3216), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3216), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3216), - [aux_sym_syslog_facility_token1] = ACTIONS(3216), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3216), - [aux_sym_keep_alive_token1] = ACTIONS(3216), - [aux_sym_tag_token1] = ACTIONS(3216), - [aux_sym_tunnel_token1] = ACTIONS(3218), - [aux_sym_tunnel_device_token1] = ACTIONS(3216), - [aux_sym_update_host_keys_token1] = ACTIONS(3216), - [aux_sym_use_keychain_token1] = ACTIONS(3216), - [aux_sym_use_roaming_token1] = ACTIONS(3216), - [aux_sym_user_token1] = ACTIONS(3218), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3216), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3216), - [aux_sym_visual_host_key_token1] = ACTIONS(3216), - [aux_sym_xauth_location_token1] = ACTIONS(3216), + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3241), + [aux_sym_match_token1] = ACTIONS(3239), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3239), + [aux_sym_address_family_token1] = ACTIONS(3239), + [aux_sym_batch_mode_token1] = ACTIONS(3239), + [aux_sym_bind_address_token1] = ACTIONS(3239), + [aux_sym_bind_interface_token1] = ACTIONS(3239), + [aux_sym_canonical_domains_token1] = ACTIONS(3239), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3239), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3239), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3239), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3239), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3239), + [aux_sym_certificate_file_token1] = ACTIONS(3239), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3239), + [aux_sym_channel_timeout_token1] = ACTIONS(3239), + [aux_sym_check_host_ip_token1] = ACTIONS(3239), + [aux_sym_ciphers_token1] = ACTIONS(3239), + [aux_sym_cipher_token1] = ACTIONS(3241), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3239), + [aux_sym_compression_token1] = ACTIONS(3239), + [aux_sym_connection_attempts_token1] = ACTIONS(3239), + [aux_sym_connect_timeout_token1] = ACTIONS(3239), + [aux_sym_control_master_token1] = ACTIONS(3239), + [aux_sym_control_path_token1] = ACTIONS(3239), + [aux_sym_control_persist_token1] = ACTIONS(3239), + [aux_sym_dynamic_forward_token1] = ACTIONS(3239), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3239), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3239), + [aux_sym_escape_char_token1] = ACTIONS(3239), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3239), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3239), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3239), + [aux_sym_forward_agent_token1] = ACTIONS(3239), + [aux_sym_forward_x11_token1] = ACTIONS(3241), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3239), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3239), + [aux_sym_gateway_ports_token1] = ACTIONS(3239), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3239), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3239), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3239), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3239), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3239), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3239), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3239), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3239), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3239), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3239), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3239), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3239), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3239), + [aux_sym_host_key_alias_token1] = ACTIONS(3239), + [aux_sym_hostname_token1] = ACTIONS(3239), + [aux_sym_identities_only_token1] = ACTIONS(3239), + [aux_sym_identity_agent_token1] = ACTIONS(3239), + [aux_sym_identity_file_token1] = ACTIONS(3239), + [aux_sym_ignore_unknown_token1] = ACTIONS(3239), + [aux_sym_include_token1] = ACTIONS(3239), + [aux_sym_ip_qos_token1] = ACTIONS(3239), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3239), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3239), + [aux_sym_kex_algorithms_token1] = ACTIONS(3239), + [aux_sym_known_hosts_command_token1] = ACTIONS(3239), + [aux_sym_local_command_token1] = ACTIONS(3239), + [aux_sym_local_forward_token1] = ACTIONS(3239), + [aux_sym_log_level_token1] = ACTIONS(3239), + [aux_sym_log_verbose_token1] = ACTIONS(3239), + [aux_sym_macs_token1] = ACTIONS(3239), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3239), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3239), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3239), + [aux_sym_password_authentication_token1] = ACTIONS(3239), + [aux_sym_permit_local_command_token1] = ACTIONS(3239), + [aux_sym_permit_remote_open_token1] = ACTIONS(3239), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3239), + [aux_sym_port_token1] = ACTIONS(3239), + [aux_sym_preferred_authentications_token1] = ACTIONS(3239), + [aux_sym_protocol_token1] = ACTIONS(3239), + [aux_sym_proxy_command_token1] = ACTIONS(3239), + [aux_sym_proxy_jump_token1] = ACTIONS(3239), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3239), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3239), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3239), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3239), + [aux_sym_rekey_limit_token1] = ACTIONS(3239), + [aux_sym_remote_command_token1] = ACTIONS(3239), + [aux_sym_remote_forward_token1] = ACTIONS(3239), + [aux_sym_request_tty_token1] = ACTIONS(3239), + [aux_sym_required_rsa_size_token1] = ACTIONS(3239), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3239), + [aux_sym_security_key_provider_token1] = ACTIONS(3239), + [aux_sym_send_env_token1] = ACTIONS(3239), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3239), + [aux_sym_server_alive_interval_token1] = ACTIONS(3239), + [aux_sym_session_type_token1] = ACTIONS(3239), + [aux_sym_set_env_token1] = ACTIONS(3239), + [aux_sym_stdin_null_token1] = ACTIONS(3239), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3239), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3239), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3239), + [aux_sym_syslog_facility_token1] = ACTIONS(3239), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3239), + [aux_sym_keep_alive_token1] = ACTIONS(3239), + [aux_sym_tag_token1] = ACTIONS(3239), + [aux_sym_tunnel_token1] = ACTIONS(3241), + [aux_sym_tunnel_device_token1] = ACTIONS(3239), + [aux_sym_update_host_keys_token1] = ACTIONS(3239), + [aux_sym_use_keychain_token1] = ACTIONS(3239), + [aux_sym_use_roaming_token1] = ACTIONS(3239), + [aux_sym_user_token1] = ACTIONS(3241), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3239), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3239), + [aux_sym_visual_host_key_token1] = ACTIONS(3239), + [aux_sym_xauth_location_token1] = ACTIONS(3239), }, [511] = { - [ts_builtin_sym_end] = ACTIONS(3220), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3222), - [aux_sym_match_token1] = ACTIONS(3220), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3220), - [aux_sym_address_family_token1] = ACTIONS(3220), - [aux_sym_batch_mode_token1] = ACTIONS(3220), - [aux_sym_bind_address_token1] = ACTIONS(3220), - [aux_sym_bind_interface_token1] = ACTIONS(3220), - [aux_sym_canonical_domains_token1] = ACTIONS(3220), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3220), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3220), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3220), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3220), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3220), - [aux_sym_certificate_file_token1] = ACTIONS(3220), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3220), - [aux_sym_channel_timeout_token1] = ACTIONS(3220), - [aux_sym_check_host_ip_token1] = ACTIONS(3220), - [aux_sym_ciphers_token1] = ACTIONS(3220), - [aux_sym_cipher_token1] = ACTIONS(3222), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3220), - [aux_sym_compression_token1] = ACTIONS(3220), - [aux_sym_connection_attempts_token1] = ACTIONS(3220), - [aux_sym_connect_timeout_token1] = ACTIONS(3220), - [aux_sym_control_master_token1] = ACTIONS(3220), - [aux_sym_control_path_token1] = ACTIONS(3220), - [aux_sym_control_persist_token1] = ACTIONS(3220), - [aux_sym_dynamic_forward_token1] = ACTIONS(3220), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3220), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3220), - [aux_sym_escape_char_token1] = ACTIONS(3220), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3220), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3220), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3220), - [aux_sym_forward_agent_token1] = ACTIONS(3220), - [aux_sym_forward_x11_token1] = ACTIONS(3222), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3220), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3220), - [aux_sym_gateway_ports_token1] = ACTIONS(3220), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3220), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3220), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3220), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3220), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3220), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3220), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3220), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3220), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3220), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3220), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3220), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3220), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3220), - [aux_sym_host_key_alias_token1] = ACTIONS(3220), - [aux_sym_hostname_token1] = ACTIONS(3220), - [aux_sym_identities_only_token1] = ACTIONS(3220), - [aux_sym_identity_agent_token1] = ACTIONS(3220), - [aux_sym_identity_file_token1] = ACTIONS(3220), - [aux_sym_ignore_unknown_token1] = ACTIONS(3220), - [aux_sym_include_token1] = ACTIONS(3220), - [aux_sym_ip_qos_token1] = ACTIONS(3220), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3220), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3220), - [aux_sym_kex_algorithms_token1] = ACTIONS(3220), - [aux_sym_known_hosts_command_token1] = ACTIONS(3220), - [aux_sym_local_command_token1] = ACTIONS(3220), - [aux_sym_local_forward_token1] = ACTIONS(3220), - [aux_sym_log_level_token1] = ACTIONS(3220), - [aux_sym_log_verbose_token1] = ACTIONS(3220), - [aux_sym_macs_token1] = ACTIONS(3220), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3220), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3220), - [aux_sym_password_authentication_token1] = ACTIONS(3220), - [aux_sym_permit_local_command_token1] = ACTIONS(3220), - [aux_sym_permit_remote_open_token1] = ACTIONS(3220), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3220), - [aux_sym_port_token1] = ACTIONS(3220), - [aux_sym_preferred_authentications_token1] = ACTIONS(3220), - [aux_sym_protocol_token1] = ACTIONS(3220), - [aux_sym_proxy_command_token1] = ACTIONS(3220), - [aux_sym_proxy_jump_token1] = ACTIONS(3220), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3220), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3220), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3220), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3220), - [aux_sym_rekey_limit_token1] = ACTIONS(3220), - [aux_sym_remote_command_token1] = ACTIONS(3220), - [aux_sym_remote_forward_token1] = ACTIONS(3220), - [aux_sym_request_tty_token1] = ACTIONS(3220), - [aux_sym_required_rsa_size_token1] = ACTIONS(3220), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3220), - [aux_sym_security_key_provider_token1] = ACTIONS(3220), - [aux_sym_send_env_token1] = ACTIONS(3220), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3220), - [aux_sym_server_alive_interval_token1] = ACTIONS(3220), - [aux_sym_session_type_token1] = ACTIONS(3220), - [aux_sym_set_env_token1] = ACTIONS(3220), - [aux_sym_stdin_null_token1] = ACTIONS(3220), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3220), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3220), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3220), - [aux_sym_syslog_facility_token1] = ACTIONS(3220), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3220), - [aux_sym_keep_alive_token1] = ACTIONS(3220), - [aux_sym_tag_token1] = ACTIONS(3220), - [aux_sym_tunnel_token1] = ACTIONS(3222), - [aux_sym_tunnel_device_token1] = ACTIONS(3220), - [aux_sym_update_host_keys_token1] = ACTIONS(3220), - [aux_sym_use_keychain_token1] = ACTIONS(3220), - [aux_sym_use_roaming_token1] = ACTIONS(3220), - [aux_sym_user_token1] = ACTIONS(3222), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3220), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3220), - [aux_sym_visual_host_key_token1] = ACTIONS(3220), - [aux_sym_xauth_location_token1] = ACTIONS(3220), + [ts_builtin_sym_end] = ACTIONS(1139), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1141), + [aux_sym_match_token1] = ACTIONS(1139), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1139), + [aux_sym_address_family_token1] = ACTIONS(1139), + [aux_sym_batch_mode_token1] = ACTIONS(1139), + [aux_sym_bind_address_token1] = ACTIONS(1139), + [aux_sym_bind_interface_token1] = ACTIONS(1139), + [aux_sym_canonical_domains_token1] = ACTIONS(1139), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1139), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1139), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1139), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1139), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1139), + [aux_sym_certificate_file_token1] = ACTIONS(1139), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1139), + [aux_sym_channel_timeout_token1] = ACTIONS(1139), + [aux_sym_check_host_ip_token1] = ACTIONS(1139), + [aux_sym_ciphers_token1] = ACTIONS(1139), + [aux_sym_cipher_token1] = ACTIONS(1141), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1139), + [aux_sym_compression_token1] = ACTIONS(1139), + [aux_sym_connection_attempts_token1] = ACTIONS(1139), + [aux_sym_connect_timeout_token1] = ACTIONS(1139), + [aux_sym_control_master_token1] = ACTIONS(1139), + [aux_sym_control_path_token1] = ACTIONS(1139), + [aux_sym_control_persist_token1] = ACTIONS(1139), + [aux_sym_dynamic_forward_token1] = ACTIONS(1139), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1139), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1139), + [aux_sym_escape_char_token1] = ACTIONS(1139), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1139), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1139), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1139), + [aux_sym_forward_agent_token1] = ACTIONS(1139), + [aux_sym_forward_x11_token1] = ACTIONS(1141), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1139), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1139), + [aux_sym_gateway_ports_token1] = ACTIONS(1139), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1139), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1139), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1139), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1139), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1139), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1139), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1139), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1139), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1139), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1139), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1139), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1139), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1139), + [aux_sym_host_key_alias_token1] = ACTIONS(1139), + [aux_sym_hostname_token1] = ACTIONS(1139), + [aux_sym_identities_only_token1] = ACTIONS(1139), + [aux_sym_identity_agent_token1] = ACTIONS(1139), + [aux_sym_identity_file_token1] = ACTIONS(1139), + [aux_sym_ignore_unknown_token1] = ACTIONS(1139), + [aux_sym_include_token1] = ACTIONS(1139), + [aux_sym_ip_qos_token1] = ACTIONS(1139), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1139), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1139), + [aux_sym_kex_algorithms_token1] = ACTIONS(1139), + [aux_sym_known_hosts_command_token1] = ACTIONS(1139), + [aux_sym_local_command_token1] = ACTIONS(1139), + [aux_sym_local_forward_token1] = ACTIONS(1139), + [aux_sym_log_level_token1] = ACTIONS(1139), + [aux_sym_log_verbose_token1] = ACTIONS(1139), + [aux_sym_macs_token1] = ACTIONS(1139), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1139), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1139), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1139), + [aux_sym_password_authentication_token1] = ACTIONS(1139), + [aux_sym_permit_local_command_token1] = ACTIONS(1139), + [aux_sym_permit_remote_open_token1] = ACTIONS(1139), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1139), + [aux_sym_port_token1] = ACTIONS(1139), + [aux_sym_preferred_authentications_token1] = ACTIONS(1139), + [aux_sym_protocol_token1] = ACTIONS(1139), + [aux_sym_proxy_command_token1] = ACTIONS(1139), + [aux_sym_proxy_jump_token1] = ACTIONS(1139), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1139), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1139), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1139), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1139), + [aux_sym_rekey_limit_token1] = ACTIONS(1139), + [aux_sym_remote_command_token1] = ACTIONS(1139), + [aux_sym_remote_forward_token1] = ACTIONS(1139), + [aux_sym_request_tty_token1] = ACTIONS(1139), + [aux_sym_required_rsa_size_token1] = ACTIONS(1139), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1139), + [aux_sym_security_key_provider_token1] = ACTIONS(1139), + [aux_sym_send_env_token1] = ACTIONS(1139), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1139), + [aux_sym_server_alive_interval_token1] = ACTIONS(1139), + [aux_sym_session_type_token1] = ACTIONS(1139), + [aux_sym_set_env_token1] = ACTIONS(1139), + [aux_sym_stdin_null_token1] = ACTIONS(1139), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1139), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1139), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1139), + [aux_sym_syslog_facility_token1] = ACTIONS(1139), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1139), + [aux_sym_keep_alive_token1] = ACTIONS(1139), + [aux_sym_tag_token1] = ACTIONS(1139), + [aux_sym_tunnel_token1] = ACTIONS(1141), + [aux_sym_tunnel_device_token1] = ACTIONS(1139), + [aux_sym_update_host_keys_token1] = ACTIONS(1139), + [aux_sym_use_keychain_token1] = ACTIONS(1139), + [aux_sym_use_roaming_token1] = ACTIONS(1139), + [aux_sym_user_token1] = ACTIONS(1141), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1139), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1139), + [aux_sym_visual_host_key_token1] = ACTIONS(1139), + [aux_sym_xauth_location_token1] = ACTIONS(1139), }, [512] = { - [ts_builtin_sym_end] = ACTIONS(3224), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3226), - [aux_sym_match_token1] = ACTIONS(3224), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3224), - [aux_sym_address_family_token1] = ACTIONS(3224), - [aux_sym_batch_mode_token1] = ACTIONS(3224), - [aux_sym_bind_address_token1] = ACTIONS(3224), - [aux_sym_bind_interface_token1] = ACTIONS(3224), - [aux_sym_canonical_domains_token1] = ACTIONS(3224), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3224), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3224), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3224), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3224), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3224), - [aux_sym_certificate_file_token1] = ACTIONS(3224), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3224), - [aux_sym_channel_timeout_token1] = ACTIONS(3224), - [aux_sym_check_host_ip_token1] = ACTIONS(3224), - [aux_sym_ciphers_token1] = ACTIONS(3224), - [aux_sym_cipher_token1] = ACTIONS(3226), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3224), - [aux_sym_compression_token1] = ACTIONS(3224), - [aux_sym_connection_attempts_token1] = ACTIONS(3224), - [aux_sym_connect_timeout_token1] = ACTIONS(3224), - [aux_sym_control_master_token1] = ACTIONS(3224), - [aux_sym_control_path_token1] = ACTIONS(3224), - [aux_sym_control_persist_token1] = ACTIONS(3224), - [aux_sym_dynamic_forward_token1] = ACTIONS(3224), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3224), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3224), - [aux_sym_escape_char_token1] = ACTIONS(3224), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3224), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3224), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3224), - [aux_sym_forward_agent_token1] = ACTIONS(3224), - [aux_sym_forward_x11_token1] = ACTIONS(3226), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3224), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3224), - [aux_sym_gateway_ports_token1] = ACTIONS(3224), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3224), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3224), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3224), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3224), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3224), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3224), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3224), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3224), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3224), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3224), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3224), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3224), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3224), - [aux_sym_host_key_alias_token1] = ACTIONS(3224), - [aux_sym_hostname_token1] = ACTIONS(3224), - [aux_sym_identities_only_token1] = ACTIONS(3224), - [aux_sym_identity_agent_token1] = ACTIONS(3224), - [aux_sym_identity_file_token1] = ACTIONS(3224), - [aux_sym_ignore_unknown_token1] = ACTIONS(3224), - [aux_sym_include_token1] = ACTIONS(3224), - [aux_sym_ip_qos_token1] = ACTIONS(3224), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3224), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3224), - [aux_sym_kex_algorithms_token1] = ACTIONS(3224), - [aux_sym_known_hosts_command_token1] = ACTIONS(3224), - [aux_sym_local_command_token1] = ACTIONS(3224), - [aux_sym_local_forward_token1] = ACTIONS(3224), - [aux_sym_log_level_token1] = ACTIONS(3224), - [aux_sym_log_verbose_token1] = ACTIONS(3224), - [aux_sym_macs_token1] = ACTIONS(3224), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3224), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3224), - [aux_sym_password_authentication_token1] = ACTIONS(3224), - [aux_sym_permit_local_command_token1] = ACTIONS(3224), - [aux_sym_permit_remote_open_token1] = ACTIONS(3224), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3224), - [aux_sym_port_token1] = ACTIONS(3224), - [aux_sym_preferred_authentications_token1] = ACTIONS(3224), - [aux_sym_protocol_token1] = ACTIONS(3224), - [aux_sym_proxy_command_token1] = ACTIONS(3224), - [aux_sym_proxy_jump_token1] = ACTIONS(3224), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3224), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3224), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3224), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3224), - [aux_sym_rekey_limit_token1] = ACTIONS(3224), - [aux_sym_remote_command_token1] = ACTIONS(3224), - [aux_sym_remote_forward_token1] = ACTIONS(3224), - [aux_sym_request_tty_token1] = ACTIONS(3224), - [aux_sym_required_rsa_size_token1] = ACTIONS(3224), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3224), - [aux_sym_security_key_provider_token1] = ACTIONS(3224), - [aux_sym_send_env_token1] = ACTIONS(3224), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3224), - [aux_sym_server_alive_interval_token1] = ACTIONS(3224), - [aux_sym_session_type_token1] = ACTIONS(3224), - [aux_sym_set_env_token1] = ACTIONS(3224), - [aux_sym_stdin_null_token1] = ACTIONS(3224), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3224), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3224), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3224), - [aux_sym_syslog_facility_token1] = ACTIONS(3224), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3224), - [aux_sym_keep_alive_token1] = ACTIONS(3224), - [aux_sym_tag_token1] = ACTIONS(3224), - [aux_sym_tunnel_token1] = ACTIONS(3226), - [aux_sym_tunnel_device_token1] = ACTIONS(3224), - [aux_sym_update_host_keys_token1] = ACTIONS(3224), - [aux_sym_use_keychain_token1] = ACTIONS(3224), - [aux_sym_use_roaming_token1] = ACTIONS(3224), - [aux_sym_user_token1] = ACTIONS(3226), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3224), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3224), - [aux_sym_visual_host_key_token1] = ACTIONS(3224), - [aux_sym_xauth_location_token1] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(1193), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1195), + [aux_sym_match_token1] = ACTIONS(1193), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1193), + [aux_sym_address_family_token1] = ACTIONS(1193), + [aux_sym_batch_mode_token1] = ACTIONS(1193), + [aux_sym_bind_address_token1] = ACTIONS(1193), + [aux_sym_bind_interface_token1] = ACTIONS(1193), + [aux_sym_canonical_domains_token1] = ACTIONS(1193), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1193), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1193), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1193), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1193), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1193), + [aux_sym_certificate_file_token1] = ACTIONS(1193), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1193), + [aux_sym_channel_timeout_token1] = ACTIONS(1193), + [aux_sym_check_host_ip_token1] = ACTIONS(1193), + [aux_sym_ciphers_token1] = ACTIONS(1193), + [aux_sym_cipher_token1] = ACTIONS(1195), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1193), + [aux_sym_compression_token1] = ACTIONS(1193), + [aux_sym_connection_attempts_token1] = ACTIONS(1193), + [aux_sym_connect_timeout_token1] = ACTIONS(1193), + [aux_sym_control_master_token1] = ACTIONS(1193), + [aux_sym_control_path_token1] = ACTIONS(1193), + [aux_sym_control_persist_token1] = ACTIONS(1193), + [aux_sym_dynamic_forward_token1] = ACTIONS(1193), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1193), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1193), + [aux_sym_escape_char_token1] = ACTIONS(1193), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1193), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1193), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1193), + [aux_sym_forward_agent_token1] = ACTIONS(1193), + [aux_sym_forward_x11_token1] = ACTIONS(1195), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1193), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1193), + [aux_sym_gateway_ports_token1] = ACTIONS(1193), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1193), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1193), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1193), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1193), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1193), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1193), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1193), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1193), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1193), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1193), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1193), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1193), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1193), + [aux_sym_host_key_alias_token1] = ACTIONS(1193), + [aux_sym_hostname_token1] = ACTIONS(1193), + [aux_sym_identities_only_token1] = ACTIONS(1193), + [aux_sym_identity_agent_token1] = ACTIONS(1193), + [aux_sym_identity_file_token1] = ACTIONS(1193), + [aux_sym_ignore_unknown_token1] = ACTIONS(1193), + [aux_sym_include_token1] = ACTIONS(1193), + [aux_sym_ip_qos_token1] = ACTIONS(1193), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1193), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1193), + [aux_sym_kex_algorithms_token1] = ACTIONS(1193), + [aux_sym_known_hosts_command_token1] = ACTIONS(1193), + [aux_sym_local_command_token1] = ACTIONS(1193), + [aux_sym_local_forward_token1] = ACTIONS(1193), + [aux_sym_log_level_token1] = ACTIONS(1193), + [aux_sym_log_verbose_token1] = ACTIONS(1193), + [aux_sym_macs_token1] = ACTIONS(1193), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1193), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1193), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1193), + [aux_sym_password_authentication_token1] = ACTIONS(1193), + [aux_sym_permit_local_command_token1] = ACTIONS(1193), + [aux_sym_permit_remote_open_token1] = ACTIONS(1193), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1193), + [aux_sym_port_token1] = ACTIONS(1193), + [aux_sym_preferred_authentications_token1] = ACTIONS(1193), + [aux_sym_protocol_token1] = ACTIONS(1193), + [aux_sym_proxy_command_token1] = ACTIONS(1193), + [aux_sym_proxy_jump_token1] = ACTIONS(1193), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1193), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1193), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1193), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1193), + [aux_sym_rekey_limit_token1] = ACTIONS(1193), + [aux_sym_remote_command_token1] = ACTIONS(1193), + [aux_sym_remote_forward_token1] = ACTIONS(1193), + [aux_sym_request_tty_token1] = ACTIONS(1193), + [aux_sym_required_rsa_size_token1] = ACTIONS(1193), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1193), + [aux_sym_security_key_provider_token1] = ACTIONS(1193), + [aux_sym_send_env_token1] = ACTIONS(1193), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1193), + [aux_sym_server_alive_interval_token1] = ACTIONS(1193), + [aux_sym_session_type_token1] = ACTIONS(1193), + [aux_sym_set_env_token1] = ACTIONS(1193), + [aux_sym_stdin_null_token1] = ACTIONS(1193), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1193), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1193), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1193), + [aux_sym_syslog_facility_token1] = ACTIONS(1193), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1193), + [aux_sym_keep_alive_token1] = ACTIONS(1193), + [aux_sym_tag_token1] = ACTIONS(1193), + [aux_sym_tunnel_token1] = ACTIONS(1195), + [aux_sym_tunnel_device_token1] = ACTIONS(1193), + [aux_sym_update_host_keys_token1] = ACTIONS(1193), + [aux_sym_use_keychain_token1] = ACTIONS(1193), + [aux_sym_use_roaming_token1] = ACTIONS(1193), + [aux_sym_user_token1] = ACTIONS(1195), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1193), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1193), + [aux_sym_visual_host_key_token1] = ACTIONS(1193), + [aux_sym_xauth_location_token1] = ACTIONS(1193), }, [513] = { - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1400), - [aux_sym_match_token1] = ACTIONS(1398), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1398), - [aux_sym_address_family_token1] = ACTIONS(1398), - [aux_sym_batch_mode_token1] = ACTIONS(1398), - [aux_sym_bind_address_token1] = ACTIONS(1398), - [aux_sym_bind_interface_token1] = ACTIONS(1398), - [aux_sym_canonical_domains_token1] = ACTIONS(1398), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1398), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1398), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1398), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1398), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1398), - [aux_sym_certificate_file_token1] = ACTIONS(1398), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1398), - [aux_sym_channel_timeout_token1] = ACTIONS(1398), - [aux_sym_check_host_ip_token1] = ACTIONS(1398), - [aux_sym_ciphers_token1] = ACTIONS(1398), - [aux_sym_cipher_token1] = ACTIONS(1400), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1398), - [aux_sym_compression_token1] = ACTIONS(1398), - [aux_sym_connection_attempts_token1] = ACTIONS(1398), - [aux_sym_connect_timeout_token1] = ACTIONS(1398), - [aux_sym_control_master_token1] = ACTIONS(1398), - [aux_sym_control_path_token1] = ACTIONS(1398), - [aux_sym_control_persist_token1] = ACTIONS(1398), - [aux_sym_dynamic_forward_token1] = ACTIONS(1398), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1398), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1398), - [aux_sym_escape_char_token1] = ACTIONS(1398), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1398), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1398), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1398), - [aux_sym_forward_agent_token1] = ACTIONS(1398), - [aux_sym_forward_x11_token1] = ACTIONS(1400), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1398), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1398), - [aux_sym_gateway_ports_token1] = ACTIONS(1398), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1398), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1398), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1398), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1398), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1398), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1398), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1398), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1398), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1398), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1398), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1398), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1398), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1398), - [aux_sym_host_key_alias_token1] = ACTIONS(1398), - [aux_sym_hostname_token1] = ACTIONS(1398), - [aux_sym_identities_only_token1] = ACTIONS(1398), - [aux_sym_identity_agent_token1] = ACTIONS(1398), - [aux_sym_identity_file_token1] = ACTIONS(1398), - [aux_sym_ignore_unknown_token1] = ACTIONS(1398), - [aux_sym_include_token1] = ACTIONS(1398), - [aux_sym_ip_qos_token1] = ACTIONS(1398), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1398), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1398), - [aux_sym_kex_algorithms_token1] = ACTIONS(1398), - [aux_sym_known_hosts_command_token1] = ACTIONS(1398), - [aux_sym_local_command_token1] = ACTIONS(1398), - [aux_sym_local_forward_token1] = ACTIONS(1398), - [aux_sym_log_level_token1] = ACTIONS(1398), - [aux_sym_log_verbose_token1] = ACTIONS(1398), - [aux_sym_macs_token1] = ACTIONS(1398), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1398), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1398), - [aux_sym_password_authentication_token1] = ACTIONS(1398), - [aux_sym_permit_local_command_token1] = ACTIONS(1398), - [aux_sym_permit_remote_open_token1] = ACTIONS(1398), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1398), - [aux_sym_port_token1] = ACTIONS(1398), - [aux_sym_preferred_authentications_token1] = ACTIONS(1398), - [aux_sym_protocol_token1] = ACTIONS(1398), - [aux_sym_proxy_command_token1] = ACTIONS(1398), - [aux_sym_proxy_jump_token1] = ACTIONS(1398), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1398), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1398), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1398), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1398), - [aux_sym_rekey_limit_token1] = ACTIONS(1398), - [aux_sym_remote_command_token1] = ACTIONS(1398), - [aux_sym_remote_forward_token1] = ACTIONS(1398), - [aux_sym_request_tty_token1] = ACTIONS(1398), - [aux_sym_required_rsa_size_token1] = ACTIONS(1398), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1398), - [aux_sym_security_key_provider_token1] = ACTIONS(1398), - [aux_sym_send_env_token1] = ACTIONS(1398), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1398), - [aux_sym_server_alive_interval_token1] = ACTIONS(1398), - [aux_sym_session_type_token1] = ACTIONS(1398), - [aux_sym_set_env_token1] = ACTIONS(1398), - [aux_sym_stdin_null_token1] = ACTIONS(1398), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1398), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1398), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1398), - [aux_sym_syslog_facility_token1] = ACTIONS(1398), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1398), - [aux_sym_keep_alive_token1] = ACTIONS(1398), - [aux_sym_tag_token1] = ACTIONS(1398), - [aux_sym_tunnel_token1] = ACTIONS(1400), - [aux_sym_tunnel_device_token1] = ACTIONS(1398), - [aux_sym_update_host_keys_token1] = ACTIONS(1398), - [aux_sym_use_keychain_token1] = ACTIONS(1398), - [aux_sym_use_roaming_token1] = ACTIONS(1398), - [aux_sym_user_token1] = ACTIONS(1400), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1398), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1398), - [aux_sym_visual_host_key_token1] = ACTIONS(1398), - [aux_sym_xauth_location_token1] = ACTIONS(1398), + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3245), + [aux_sym_match_token1] = ACTIONS(3243), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3243), + [aux_sym_address_family_token1] = ACTIONS(3243), + [aux_sym_batch_mode_token1] = ACTIONS(3243), + [aux_sym_bind_address_token1] = ACTIONS(3243), + [aux_sym_bind_interface_token1] = ACTIONS(3243), + [aux_sym_canonical_domains_token1] = ACTIONS(3243), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3243), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3243), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3243), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3243), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3243), + [aux_sym_certificate_file_token1] = ACTIONS(3243), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3243), + [aux_sym_channel_timeout_token1] = ACTIONS(3243), + [aux_sym_check_host_ip_token1] = ACTIONS(3243), + [aux_sym_ciphers_token1] = ACTIONS(3243), + [aux_sym_cipher_token1] = ACTIONS(3245), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3243), + [aux_sym_compression_token1] = ACTIONS(3243), + [aux_sym_connection_attempts_token1] = ACTIONS(3243), + [aux_sym_connect_timeout_token1] = ACTIONS(3243), + [aux_sym_control_master_token1] = ACTIONS(3243), + [aux_sym_control_path_token1] = ACTIONS(3243), + [aux_sym_control_persist_token1] = ACTIONS(3243), + [aux_sym_dynamic_forward_token1] = ACTIONS(3243), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3243), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3243), + [aux_sym_escape_char_token1] = ACTIONS(3243), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3243), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3243), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3243), + [aux_sym_forward_agent_token1] = ACTIONS(3243), + [aux_sym_forward_x11_token1] = ACTIONS(3245), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3243), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3243), + [aux_sym_gateway_ports_token1] = ACTIONS(3243), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3243), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3243), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3243), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3243), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3243), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3243), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3243), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3243), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3243), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3243), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3243), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3243), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3243), + [aux_sym_host_key_alias_token1] = ACTIONS(3243), + [aux_sym_hostname_token1] = ACTIONS(3243), + [aux_sym_identities_only_token1] = ACTIONS(3243), + [aux_sym_identity_agent_token1] = ACTIONS(3243), + [aux_sym_identity_file_token1] = ACTIONS(3243), + [aux_sym_ignore_unknown_token1] = ACTIONS(3243), + [aux_sym_include_token1] = ACTIONS(3243), + [aux_sym_ip_qos_token1] = ACTIONS(3243), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3243), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3243), + [aux_sym_kex_algorithms_token1] = ACTIONS(3243), + [aux_sym_known_hosts_command_token1] = ACTIONS(3243), + [aux_sym_local_command_token1] = ACTIONS(3243), + [aux_sym_local_forward_token1] = ACTIONS(3243), + [aux_sym_log_level_token1] = ACTIONS(3243), + [aux_sym_log_verbose_token1] = ACTIONS(3243), + [aux_sym_macs_token1] = ACTIONS(3243), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3243), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3243), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3243), + [aux_sym_password_authentication_token1] = ACTIONS(3243), + [aux_sym_permit_local_command_token1] = ACTIONS(3243), + [aux_sym_permit_remote_open_token1] = ACTIONS(3243), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3243), + [aux_sym_port_token1] = ACTIONS(3243), + [aux_sym_preferred_authentications_token1] = ACTIONS(3243), + [aux_sym_protocol_token1] = ACTIONS(3243), + [aux_sym_proxy_command_token1] = ACTIONS(3243), + [aux_sym_proxy_jump_token1] = ACTIONS(3243), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3243), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3243), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3243), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3243), + [aux_sym_rekey_limit_token1] = ACTIONS(3243), + [aux_sym_remote_command_token1] = ACTIONS(3243), + [aux_sym_remote_forward_token1] = ACTIONS(3243), + [aux_sym_request_tty_token1] = ACTIONS(3243), + [aux_sym_required_rsa_size_token1] = ACTIONS(3243), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3243), + [aux_sym_security_key_provider_token1] = ACTIONS(3243), + [aux_sym_send_env_token1] = ACTIONS(3243), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3243), + [aux_sym_server_alive_interval_token1] = ACTIONS(3243), + [aux_sym_session_type_token1] = ACTIONS(3243), + [aux_sym_set_env_token1] = ACTIONS(3243), + [aux_sym_stdin_null_token1] = ACTIONS(3243), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3243), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3243), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3243), + [aux_sym_syslog_facility_token1] = ACTIONS(3243), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3243), + [aux_sym_keep_alive_token1] = ACTIONS(3243), + [aux_sym_tag_token1] = ACTIONS(3243), + [aux_sym_tunnel_token1] = ACTIONS(3245), + [aux_sym_tunnel_device_token1] = ACTIONS(3243), + [aux_sym_update_host_keys_token1] = ACTIONS(3243), + [aux_sym_use_keychain_token1] = ACTIONS(3243), + [aux_sym_use_roaming_token1] = ACTIONS(3243), + [aux_sym_user_token1] = ACTIONS(3245), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3243), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3243), + [aux_sym_visual_host_key_token1] = ACTIONS(3243), + [aux_sym_xauth_location_token1] = ACTIONS(3243), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(1290), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1292), - [aux_sym_match_token1] = ACTIONS(1290), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1290), - [aux_sym_address_family_token1] = ACTIONS(1290), - [aux_sym_batch_mode_token1] = ACTIONS(1290), - [aux_sym_bind_address_token1] = ACTIONS(1290), - [aux_sym_bind_interface_token1] = ACTIONS(1290), - [aux_sym_canonical_domains_token1] = ACTIONS(1290), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1290), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1290), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1290), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1290), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1290), - [aux_sym_certificate_file_token1] = ACTIONS(1290), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1290), - [aux_sym_channel_timeout_token1] = ACTIONS(1290), - [aux_sym_check_host_ip_token1] = ACTIONS(1290), - [aux_sym_ciphers_token1] = ACTIONS(1290), - [aux_sym_cipher_token1] = ACTIONS(1292), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1290), - [aux_sym_compression_token1] = ACTIONS(1290), - [aux_sym_connection_attempts_token1] = ACTIONS(1290), - [aux_sym_connect_timeout_token1] = ACTIONS(1290), - [aux_sym_control_master_token1] = ACTIONS(1290), - [aux_sym_control_path_token1] = ACTIONS(1290), - [aux_sym_control_persist_token1] = ACTIONS(1290), - [aux_sym_dynamic_forward_token1] = ACTIONS(1290), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1290), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1290), - [aux_sym_escape_char_token1] = ACTIONS(1290), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1290), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1290), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1290), - [aux_sym_forward_agent_token1] = ACTIONS(1290), - [aux_sym_forward_x11_token1] = ACTIONS(1292), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1290), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1290), - [aux_sym_gateway_ports_token1] = ACTIONS(1290), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1290), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1290), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1290), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1290), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1290), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1290), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1290), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1290), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1290), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1290), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1290), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1290), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1290), - [aux_sym_host_key_alias_token1] = ACTIONS(1290), - [aux_sym_hostname_token1] = ACTIONS(1290), - [aux_sym_identities_only_token1] = ACTIONS(1290), - [aux_sym_identity_agent_token1] = ACTIONS(1290), - [aux_sym_identity_file_token1] = ACTIONS(1290), - [aux_sym_ignore_unknown_token1] = ACTIONS(1290), - [aux_sym_include_token1] = ACTIONS(1290), - [aux_sym_ip_qos_token1] = ACTIONS(1290), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1290), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1290), - [aux_sym_kex_algorithms_token1] = ACTIONS(1290), - [aux_sym_known_hosts_command_token1] = ACTIONS(1290), - [aux_sym_local_command_token1] = ACTIONS(1290), - [aux_sym_local_forward_token1] = ACTIONS(1290), - [aux_sym_log_level_token1] = ACTIONS(1290), - [aux_sym_log_verbose_token1] = ACTIONS(1290), - [aux_sym_macs_token1] = ACTIONS(1290), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1290), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1290), - [aux_sym_password_authentication_token1] = ACTIONS(1290), - [aux_sym_permit_local_command_token1] = ACTIONS(1290), - [aux_sym_permit_remote_open_token1] = ACTIONS(1290), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1290), - [aux_sym_port_token1] = ACTIONS(1290), - [aux_sym_preferred_authentications_token1] = ACTIONS(1290), - [aux_sym_protocol_token1] = ACTIONS(1290), - [aux_sym_proxy_command_token1] = ACTIONS(1290), - [aux_sym_proxy_jump_token1] = ACTIONS(1290), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1290), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1290), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1290), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1290), - [aux_sym_rekey_limit_token1] = ACTIONS(1290), - [aux_sym_remote_command_token1] = ACTIONS(1290), - [aux_sym_remote_forward_token1] = ACTIONS(1290), - [aux_sym_request_tty_token1] = ACTIONS(1290), - [aux_sym_required_rsa_size_token1] = ACTIONS(1290), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1290), - [aux_sym_security_key_provider_token1] = ACTIONS(1290), - [aux_sym_send_env_token1] = ACTIONS(1290), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1290), - [aux_sym_server_alive_interval_token1] = ACTIONS(1290), - [aux_sym_session_type_token1] = ACTIONS(1290), - [aux_sym_set_env_token1] = ACTIONS(1290), - [aux_sym_stdin_null_token1] = ACTIONS(1290), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1290), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1290), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1290), - [aux_sym_syslog_facility_token1] = ACTIONS(1290), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1290), - [aux_sym_keep_alive_token1] = ACTIONS(1290), - [aux_sym_tag_token1] = ACTIONS(1290), - [aux_sym_tunnel_token1] = ACTIONS(1292), - [aux_sym_tunnel_device_token1] = ACTIONS(1290), - [aux_sym_update_host_keys_token1] = ACTIONS(1290), - [aux_sym_use_keychain_token1] = ACTIONS(1290), - [aux_sym_use_roaming_token1] = ACTIONS(1290), - [aux_sym_user_token1] = ACTIONS(1292), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1290), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1290), - [aux_sym_visual_host_key_token1] = ACTIONS(1290), - [aux_sym_xauth_location_token1] = ACTIONS(1290), + [ts_builtin_sym_end] = ACTIONS(3247), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3249), + [aux_sym_match_token1] = ACTIONS(3247), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3247), + [aux_sym_address_family_token1] = ACTIONS(3247), + [aux_sym_batch_mode_token1] = ACTIONS(3247), + [aux_sym_bind_address_token1] = ACTIONS(3247), + [aux_sym_bind_interface_token1] = ACTIONS(3247), + [aux_sym_canonical_domains_token1] = ACTIONS(3247), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3247), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3247), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3247), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3247), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3247), + [aux_sym_certificate_file_token1] = ACTIONS(3247), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3247), + [aux_sym_channel_timeout_token1] = ACTIONS(3247), + [aux_sym_check_host_ip_token1] = ACTIONS(3247), + [aux_sym_ciphers_token1] = ACTIONS(3247), + [aux_sym_cipher_token1] = ACTIONS(3249), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3247), + [aux_sym_compression_token1] = ACTIONS(3247), + [aux_sym_connection_attempts_token1] = ACTIONS(3247), + [aux_sym_connect_timeout_token1] = ACTIONS(3247), + [aux_sym_control_master_token1] = ACTIONS(3247), + [aux_sym_control_path_token1] = ACTIONS(3247), + [aux_sym_control_persist_token1] = ACTIONS(3247), + [aux_sym_dynamic_forward_token1] = ACTIONS(3247), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3247), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3247), + [aux_sym_escape_char_token1] = ACTIONS(3247), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3247), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3247), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3247), + [aux_sym_forward_agent_token1] = ACTIONS(3247), + [aux_sym_forward_x11_token1] = ACTIONS(3249), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3247), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3247), + [aux_sym_gateway_ports_token1] = ACTIONS(3247), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3247), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3247), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3247), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3247), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3247), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3247), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3247), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3247), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3247), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3247), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3247), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3247), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3247), + [aux_sym_host_key_alias_token1] = ACTIONS(3247), + [aux_sym_hostname_token1] = ACTIONS(3247), + [aux_sym_identities_only_token1] = ACTIONS(3247), + [aux_sym_identity_agent_token1] = ACTIONS(3247), + [aux_sym_identity_file_token1] = ACTIONS(3247), + [aux_sym_ignore_unknown_token1] = ACTIONS(3247), + [aux_sym_include_token1] = ACTIONS(3247), + [aux_sym_ip_qos_token1] = ACTIONS(3247), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3247), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3247), + [aux_sym_kex_algorithms_token1] = ACTIONS(3247), + [aux_sym_known_hosts_command_token1] = ACTIONS(3247), + [aux_sym_local_command_token1] = ACTIONS(3247), + [aux_sym_local_forward_token1] = ACTIONS(3247), + [aux_sym_log_level_token1] = ACTIONS(3247), + [aux_sym_log_verbose_token1] = ACTIONS(3247), + [aux_sym_macs_token1] = ACTIONS(3247), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3247), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3247), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3247), + [aux_sym_password_authentication_token1] = ACTIONS(3247), + [aux_sym_permit_local_command_token1] = ACTIONS(3247), + [aux_sym_permit_remote_open_token1] = ACTIONS(3247), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3247), + [aux_sym_port_token1] = ACTIONS(3247), + [aux_sym_preferred_authentications_token1] = ACTIONS(3247), + [aux_sym_protocol_token1] = ACTIONS(3247), + [aux_sym_proxy_command_token1] = ACTIONS(3247), + [aux_sym_proxy_jump_token1] = ACTIONS(3247), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3247), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3247), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3247), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3247), + [aux_sym_rekey_limit_token1] = ACTIONS(3247), + [aux_sym_remote_command_token1] = ACTIONS(3247), + [aux_sym_remote_forward_token1] = ACTIONS(3247), + [aux_sym_request_tty_token1] = ACTIONS(3247), + [aux_sym_required_rsa_size_token1] = ACTIONS(3247), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3247), + [aux_sym_security_key_provider_token1] = ACTIONS(3247), + [aux_sym_send_env_token1] = ACTIONS(3247), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3247), + [aux_sym_server_alive_interval_token1] = ACTIONS(3247), + [aux_sym_session_type_token1] = ACTIONS(3247), + [aux_sym_set_env_token1] = ACTIONS(3247), + [aux_sym_stdin_null_token1] = ACTIONS(3247), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3247), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3247), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3247), + [aux_sym_syslog_facility_token1] = ACTIONS(3247), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3247), + [aux_sym_keep_alive_token1] = ACTIONS(3247), + [aux_sym_tag_token1] = ACTIONS(3247), + [aux_sym_tunnel_token1] = ACTIONS(3249), + [aux_sym_tunnel_device_token1] = ACTIONS(3247), + [aux_sym_update_host_keys_token1] = ACTIONS(3247), + [aux_sym_use_keychain_token1] = ACTIONS(3247), + [aux_sym_use_roaming_token1] = ACTIONS(3247), + [aux_sym_user_token1] = ACTIONS(3249), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3247), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3247), + [aux_sym_visual_host_key_token1] = ACTIONS(3247), + [aux_sym_xauth_location_token1] = ACTIONS(3247), }, [515] = { - [ts_builtin_sym_end] = ACTIONS(1284), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1286), - [aux_sym_match_token1] = ACTIONS(1284), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1284), - [aux_sym_address_family_token1] = ACTIONS(1284), - [aux_sym_batch_mode_token1] = ACTIONS(1284), - [aux_sym_bind_address_token1] = ACTIONS(1284), - [aux_sym_bind_interface_token1] = ACTIONS(1284), - [aux_sym_canonical_domains_token1] = ACTIONS(1284), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1284), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1284), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1284), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1284), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1284), - [aux_sym_certificate_file_token1] = ACTIONS(1284), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1284), - [aux_sym_channel_timeout_token1] = ACTIONS(1284), - [aux_sym_check_host_ip_token1] = ACTIONS(1284), - [aux_sym_ciphers_token1] = ACTIONS(1284), - [aux_sym_cipher_token1] = ACTIONS(1286), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1284), - [aux_sym_compression_token1] = ACTIONS(1284), - [aux_sym_connection_attempts_token1] = ACTIONS(1284), - [aux_sym_connect_timeout_token1] = ACTIONS(1284), - [aux_sym_control_master_token1] = ACTIONS(1284), - [aux_sym_control_path_token1] = ACTIONS(1284), - [aux_sym_control_persist_token1] = ACTIONS(1284), - [aux_sym_dynamic_forward_token1] = ACTIONS(1284), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1284), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1284), - [aux_sym_escape_char_token1] = ACTIONS(1284), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1284), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1284), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1284), - [aux_sym_forward_agent_token1] = ACTIONS(1284), - [aux_sym_forward_x11_token1] = ACTIONS(1286), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1284), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1284), - [aux_sym_gateway_ports_token1] = ACTIONS(1284), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1284), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1284), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1284), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1284), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1284), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1284), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1284), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1284), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1284), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1284), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1284), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1284), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1284), - [aux_sym_host_key_alias_token1] = ACTIONS(1284), - [aux_sym_hostname_token1] = ACTIONS(1284), - [aux_sym_identities_only_token1] = ACTIONS(1284), - [aux_sym_identity_agent_token1] = ACTIONS(1284), - [aux_sym_identity_file_token1] = ACTIONS(1284), - [aux_sym_ignore_unknown_token1] = ACTIONS(1284), - [aux_sym_include_token1] = ACTIONS(1284), - [aux_sym_ip_qos_token1] = ACTIONS(1284), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1284), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1284), - [aux_sym_kex_algorithms_token1] = ACTIONS(1284), - [aux_sym_known_hosts_command_token1] = ACTIONS(1284), - [aux_sym_local_command_token1] = ACTIONS(1284), - [aux_sym_local_forward_token1] = ACTIONS(1284), - [aux_sym_log_level_token1] = ACTIONS(1284), - [aux_sym_log_verbose_token1] = ACTIONS(1284), - [aux_sym_macs_token1] = ACTIONS(1284), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1284), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1284), - [aux_sym_password_authentication_token1] = ACTIONS(1284), - [aux_sym_permit_local_command_token1] = ACTIONS(1284), - [aux_sym_permit_remote_open_token1] = ACTIONS(1284), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1284), - [aux_sym_port_token1] = ACTIONS(1284), - [aux_sym_preferred_authentications_token1] = ACTIONS(1284), - [aux_sym_protocol_token1] = ACTIONS(1284), - [aux_sym_proxy_command_token1] = ACTIONS(1284), - [aux_sym_proxy_jump_token1] = ACTIONS(1284), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1284), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1284), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1284), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1284), - [aux_sym_rekey_limit_token1] = ACTIONS(1284), - [aux_sym_remote_command_token1] = ACTIONS(1284), - [aux_sym_remote_forward_token1] = ACTIONS(1284), - [aux_sym_request_tty_token1] = ACTIONS(1284), - [aux_sym_required_rsa_size_token1] = ACTIONS(1284), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1284), - [aux_sym_security_key_provider_token1] = ACTIONS(1284), - [aux_sym_send_env_token1] = ACTIONS(1284), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1284), - [aux_sym_server_alive_interval_token1] = ACTIONS(1284), - [aux_sym_session_type_token1] = ACTIONS(1284), - [aux_sym_set_env_token1] = ACTIONS(1284), - [aux_sym_stdin_null_token1] = ACTIONS(1284), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1284), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1284), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1284), - [aux_sym_syslog_facility_token1] = ACTIONS(1284), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1284), - [aux_sym_keep_alive_token1] = ACTIONS(1284), - [aux_sym_tag_token1] = ACTIONS(1284), - [aux_sym_tunnel_token1] = ACTIONS(1286), - [aux_sym_tunnel_device_token1] = ACTIONS(1284), - [aux_sym_update_host_keys_token1] = ACTIONS(1284), - [aux_sym_use_keychain_token1] = ACTIONS(1284), - [aux_sym_use_roaming_token1] = ACTIONS(1284), - [aux_sym_user_token1] = ACTIONS(1286), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1284), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1284), - [aux_sym_visual_host_key_token1] = ACTIONS(1284), - [aux_sym_xauth_location_token1] = ACTIONS(1284), + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3253), + [aux_sym_match_token1] = ACTIONS(3251), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3251), + [aux_sym_address_family_token1] = ACTIONS(3251), + [aux_sym_batch_mode_token1] = ACTIONS(3251), + [aux_sym_bind_address_token1] = ACTIONS(3251), + [aux_sym_bind_interface_token1] = ACTIONS(3251), + [aux_sym_canonical_domains_token1] = ACTIONS(3251), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3251), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3251), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3251), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3251), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3251), + [aux_sym_certificate_file_token1] = ACTIONS(3251), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3251), + [aux_sym_channel_timeout_token1] = ACTIONS(3251), + [aux_sym_check_host_ip_token1] = ACTIONS(3251), + [aux_sym_ciphers_token1] = ACTIONS(3251), + [aux_sym_cipher_token1] = ACTIONS(3253), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3251), + [aux_sym_compression_token1] = ACTIONS(3251), + [aux_sym_connection_attempts_token1] = ACTIONS(3251), + [aux_sym_connect_timeout_token1] = ACTIONS(3251), + [aux_sym_control_master_token1] = ACTIONS(3251), + [aux_sym_control_path_token1] = ACTIONS(3251), + [aux_sym_control_persist_token1] = ACTIONS(3251), + [aux_sym_dynamic_forward_token1] = ACTIONS(3251), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3251), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3251), + [aux_sym_escape_char_token1] = ACTIONS(3251), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3251), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3251), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3251), + [aux_sym_forward_agent_token1] = ACTIONS(3251), + [aux_sym_forward_x11_token1] = ACTIONS(3253), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3251), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3251), + [aux_sym_gateway_ports_token1] = ACTIONS(3251), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3251), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3251), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3251), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3251), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3251), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3251), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3251), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3251), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3251), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3251), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3251), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3251), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3251), + [aux_sym_host_key_alias_token1] = ACTIONS(3251), + [aux_sym_hostname_token1] = ACTIONS(3251), + [aux_sym_identities_only_token1] = ACTIONS(3251), + [aux_sym_identity_agent_token1] = ACTIONS(3251), + [aux_sym_identity_file_token1] = ACTIONS(3251), + [aux_sym_ignore_unknown_token1] = ACTIONS(3251), + [aux_sym_include_token1] = ACTIONS(3251), + [aux_sym_ip_qos_token1] = ACTIONS(3251), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3251), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3251), + [aux_sym_kex_algorithms_token1] = ACTIONS(3251), + [aux_sym_known_hosts_command_token1] = ACTIONS(3251), + [aux_sym_local_command_token1] = ACTIONS(3251), + [aux_sym_local_forward_token1] = ACTIONS(3251), + [aux_sym_log_level_token1] = ACTIONS(3251), + [aux_sym_log_verbose_token1] = ACTIONS(3251), + [aux_sym_macs_token1] = ACTIONS(3251), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3251), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3251), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3251), + [aux_sym_password_authentication_token1] = ACTIONS(3251), + [aux_sym_permit_local_command_token1] = ACTIONS(3251), + [aux_sym_permit_remote_open_token1] = ACTIONS(3251), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3251), + [aux_sym_port_token1] = ACTIONS(3251), + [aux_sym_preferred_authentications_token1] = ACTIONS(3251), + [aux_sym_protocol_token1] = ACTIONS(3251), + [aux_sym_proxy_command_token1] = ACTIONS(3251), + [aux_sym_proxy_jump_token1] = ACTIONS(3251), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3251), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3251), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3251), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3251), + [aux_sym_rekey_limit_token1] = ACTIONS(3251), + [aux_sym_remote_command_token1] = ACTIONS(3251), + [aux_sym_remote_forward_token1] = ACTIONS(3251), + [aux_sym_request_tty_token1] = ACTIONS(3251), + [aux_sym_required_rsa_size_token1] = ACTIONS(3251), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3251), + [aux_sym_security_key_provider_token1] = ACTIONS(3251), + [aux_sym_send_env_token1] = ACTIONS(3251), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3251), + [aux_sym_server_alive_interval_token1] = ACTIONS(3251), + [aux_sym_session_type_token1] = ACTIONS(3251), + [aux_sym_set_env_token1] = ACTIONS(3251), + [aux_sym_stdin_null_token1] = ACTIONS(3251), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3251), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3251), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3251), + [aux_sym_syslog_facility_token1] = ACTIONS(3251), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3251), + [aux_sym_keep_alive_token1] = ACTIONS(3251), + [aux_sym_tag_token1] = ACTIONS(3251), + [aux_sym_tunnel_token1] = ACTIONS(3253), + [aux_sym_tunnel_device_token1] = ACTIONS(3251), + [aux_sym_update_host_keys_token1] = ACTIONS(3251), + [aux_sym_use_keychain_token1] = ACTIONS(3251), + [aux_sym_use_roaming_token1] = ACTIONS(3251), + [aux_sym_user_token1] = ACTIONS(3253), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3251), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3251), + [aux_sym_visual_host_key_token1] = ACTIONS(3251), + [aux_sym_xauth_location_token1] = ACTIONS(3251), }, [516] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1406), - [aux_sym_match_token1] = ACTIONS(1404), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1404), - [aux_sym_address_family_token1] = ACTIONS(1404), - [aux_sym_batch_mode_token1] = ACTIONS(1404), - [aux_sym_bind_address_token1] = ACTIONS(1404), - [aux_sym_bind_interface_token1] = ACTIONS(1404), - [aux_sym_canonical_domains_token1] = ACTIONS(1404), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1404), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1404), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1404), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1404), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1404), - [aux_sym_certificate_file_token1] = ACTIONS(1404), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1404), - [aux_sym_channel_timeout_token1] = ACTIONS(1404), - [aux_sym_check_host_ip_token1] = ACTIONS(1404), - [aux_sym_ciphers_token1] = ACTIONS(1404), - [aux_sym_cipher_token1] = ACTIONS(1406), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1404), - [aux_sym_compression_token1] = ACTIONS(1404), - [aux_sym_connection_attempts_token1] = ACTIONS(1404), - [aux_sym_connect_timeout_token1] = ACTIONS(1404), - [aux_sym_control_master_token1] = ACTIONS(1404), - [aux_sym_control_path_token1] = ACTIONS(1404), - [aux_sym_control_persist_token1] = ACTIONS(1404), - [aux_sym_dynamic_forward_token1] = ACTIONS(1404), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1404), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1404), - [aux_sym_escape_char_token1] = ACTIONS(1404), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1404), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1404), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1404), - [aux_sym_forward_agent_token1] = ACTIONS(1404), - [aux_sym_forward_x11_token1] = ACTIONS(1406), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1404), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1404), - [aux_sym_gateway_ports_token1] = ACTIONS(1404), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1404), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1404), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1404), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1404), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1404), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1404), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1404), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1404), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1404), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1404), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1404), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1404), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1404), - [aux_sym_host_key_alias_token1] = ACTIONS(1404), - [aux_sym_hostname_token1] = ACTIONS(1404), - [aux_sym_identities_only_token1] = ACTIONS(1404), - [aux_sym_identity_agent_token1] = ACTIONS(1404), - [aux_sym_identity_file_token1] = ACTIONS(1404), - [aux_sym_ignore_unknown_token1] = ACTIONS(1404), - [aux_sym_include_token1] = ACTIONS(1404), - [aux_sym_ip_qos_token1] = ACTIONS(1404), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1404), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1404), - [aux_sym_kex_algorithms_token1] = ACTIONS(1404), - [aux_sym_known_hosts_command_token1] = ACTIONS(1404), - [aux_sym_local_command_token1] = ACTIONS(1404), - [aux_sym_local_forward_token1] = ACTIONS(1404), - [aux_sym_log_level_token1] = ACTIONS(1404), - [aux_sym_log_verbose_token1] = ACTIONS(1404), - [aux_sym_macs_token1] = ACTIONS(1404), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1404), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1404), - [aux_sym_password_authentication_token1] = ACTIONS(1404), - [aux_sym_permit_local_command_token1] = ACTIONS(1404), - [aux_sym_permit_remote_open_token1] = ACTIONS(1404), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1404), - [aux_sym_port_token1] = ACTIONS(1404), - [aux_sym_preferred_authentications_token1] = ACTIONS(1404), - [aux_sym_protocol_token1] = ACTIONS(1404), - [aux_sym_proxy_command_token1] = ACTIONS(1404), - [aux_sym_proxy_jump_token1] = ACTIONS(1404), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1404), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1404), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1404), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1404), - [aux_sym_rekey_limit_token1] = ACTIONS(1404), - [aux_sym_remote_command_token1] = ACTIONS(1404), - [aux_sym_remote_forward_token1] = ACTIONS(1404), - [aux_sym_request_tty_token1] = ACTIONS(1404), - [aux_sym_required_rsa_size_token1] = ACTIONS(1404), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1404), - [aux_sym_security_key_provider_token1] = ACTIONS(1404), - [aux_sym_send_env_token1] = ACTIONS(1404), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1404), - [aux_sym_server_alive_interval_token1] = ACTIONS(1404), - [aux_sym_session_type_token1] = ACTIONS(1404), - [aux_sym_set_env_token1] = ACTIONS(1404), - [aux_sym_stdin_null_token1] = ACTIONS(1404), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1404), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1404), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1404), - [aux_sym_syslog_facility_token1] = ACTIONS(1404), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1404), - [aux_sym_keep_alive_token1] = ACTIONS(1404), - [aux_sym_tag_token1] = ACTIONS(1404), - [aux_sym_tunnel_token1] = ACTIONS(1406), - [aux_sym_tunnel_device_token1] = ACTIONS(1404), - [aux_sym_update_host_keys_token1] = ACTIONS(1404), - [aux_sym_use_keychain_token1] = ACTIONS(1404), - [aux_sym_use_roaming_token1] = ACTIONS(1404), - [aux_sym_user_token1] = ACTIONS(1406), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1404), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1404), - [aux_sym_visual_host_key_token1] = ACTIONS(1404), - [aux_sym_xauth_location_token1] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3257), + [aux_sym_match_token1] = ACTIONS(3255), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3255), + [aux_sym_address_family_token1] = ACTIONS(3255), + [aux_sym_batch_mode_token1] = ACTIONS(3255), + [aux_sym_bind_address_token1] = ACTIONS(3255), + [aux_sym_bind_interface_token1] = ACTIONS(3255), + [aux_sym_canonical_domains_token1] = ACTIONS(3255), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3255), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3255), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3255), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3255), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3255), + [aux_sym_certificate_file_token1] = ACTIONS(3255), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3255), + [aux_sym_channel_timeout_token1] = ACTIONS(3255), + [aux_sym_check_host_ip_token1] = ACTIONS(3255), + [aux_sym_ciphers_token1] = ACTIONS(3255), + [aux_sym_cipher_token1] = ACTIONS(3257), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3255), + [aux_sym_compression_token1] = ACTIONS(3255), + [aux_sym_connection_attempts_token1] = ACTIONS(3255), + [aux_sym_connect_timeout_token1] = ACTIONS(3255), + [aux_sym_control_master_token1] = ACTIONS(3255), + [aux_sym_control_path_token1] = ACTIONS(3255), + [aux_sym_control_persist_token1] = ACTIONS(3255), + [aux_sym_dynamic_forward_token1] = ACTIONS(3255), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3255), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3255), + [aux_sym_escape_char_token1] = ACTIONS(3255), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3255), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3255), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3255), + [aux_sym_forward_agent_token1] = ACTIONS(3255), + [aux_sym_forward_x11_token1] = ACTIONS(3257), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3255), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3255), + [aux_sym_gateway_ports_token1] = ACTIONS(3255), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3255), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3255), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3255), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3255), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3255), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3255), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3255), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3255), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3255), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3255), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3255), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3255), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3255), + [aux_sym_host_key_alias_token1] = ACTIONS(3255), + [aux_sym_hostname_token1] = ACTIONS(3255), + [aux_sym_identities_only_token1] = ACTIONS(3255), + [aux_sym_identity_agent_token1] = ACTIONS(3255), + [aux_sym_identity_file_token1] = ACTIONS(3255), + [aux_sym_ignore_unknown_token1] = ACTIONS(3255), + [aux_sym_include_token1] = ACTIONS(3255), + [aux_sym_ip_qos_token1] = ACTIONS(3255), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3255), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3255), + [aux_sym_kex_algorithms_token1] = ACTIONS(3255), + [aux_sym_known_hosts_command_token1] = ACTIONS(3255), + [aux_sym_local_command_token1] = ACTIONS(3255), + [aux_sym_local_forward_token1] = ACTIONS(3255), + [aux_sym_log_level_token1] = ACTIONS(3255), + [aux_sym_log_verbose_token1] = ACTIONS(3255), + [aux_sym_macs_token1] = ACTIONS(3255), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3255), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3255), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3255), + [aux_sym_password_authentication_token1] = ACTIONS(3255), + [aux_sym_permit_local_command_token1] = ACTIONS(3255), + [aux_sym_permit_remote_open_token1] = ACTIONS(3255), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3255), + [aux_sym_port_token1] = ACTIONS(3255), + [aux_sym_preferred_authentications_token1] = ACTIONS(3255), + [aux_sym_protocol_token1] = ACTIONS(3255), + [aux_sym_proxy_command_token1] = ACTIONS(3255), + [aux_sym_proxy_jump_token1] = ACTIONS(3255), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3255), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3255), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3255), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3255), + [aux_sym_rekey_limit_token1] = ACTIONS(3255), + [aux_sym_remote_command_token1] = ACTIONS(3255), + [aux_sym_remote_forward_token1] = ACTIONS(3255), + [aux_sym_request_tty_token1] = ACTIONS(3255), + [aux_sym_required_rsa_size_token1] = ACTIONS(3255), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3255), + [aux_sym_security_key_provider_token1] = ACTIONS(3255), + [aux_sym_send_env_token1] = ACTIONS(3255), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3255), + [aux_sym_server_alive_interval_token1] = ACTIONS(3255), + [aux_sym_session_type_token1] = ACTIONS(3255), + [aux_sym_set_env_token1] = ACTIONS(3255), + [aux_sym_stdin_null_token1] = ACTIONS(3255), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3255), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3255), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3255), + [aux_sym_syslog_facility_token1] = ACTIONS(3255), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3255), + [aux_sym_keep_alive_token1] = ACTIONS(3255), + [aux_sym_tag_token1] = ACTIONS(3255), + [aux_sym_tunnel_token1] = ACTIONS(3257), + [aux_sym_tunnel_device_token1] = ACTIONS(3255), + [aux_sym_update_host_keys_token1] = ACTIONS(3255), + [aux_sym_use_keychain_token1] = ACTIONS(3255), + [aux_sym_use_roaming_token1] = ACTIONS(3255), + [aux_sym_user_token1] = ACTIONS(3257), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3255), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3255), + [aux_sym_visual_host_key_token1] = ACTIONS(3255), + [aux_sym_xauth_location_token1] = ACTIONS(3255), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1412), - [aux_sym_match_token1] = ACTIONS(1410), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1410), - [aux_sym_address_family_token1] = ACTIONS(1410), - [aux_sym_batch_mode_token1] = ACTIONS(1410), - [aux_sym_bind_address_token1] = ACTIONS(1410), - [aux_sym_bind_interface_token1] = ACTIONS(1410), - [aux_sym_canonical_domains_token1] = ACTIONS(1410), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1410), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1410), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1410), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1410), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1410), - [aux_sym_certificate_file_token1] = ACTIONS(1410), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1410), - [aux_sym_channel_timeout_token1] = ACTIONS(1410), - [aux_sym_check_host_ip_token1] = ACTIONS(1410), - [aux_sym_ciphers_token1] = ACTIONS(1410), - [aux_sym_cipher_token1] = ACTIONS(1412), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1410), - [aux_sym_compression_token1] = ACTIONS(1410), - [aux_sym_connection_attempts_token1] = ACTIONS(1410), - [aux_sym_connect_timeout_token1] = ACTIONS(1410), - [aux_sym_control_master_token1] = ACTIONS(1410), - [aux_sym_control_path_token1] = ACTIONS(1410), - [aux_sym_control_persist_token1] = ACTIONS(1410), - [aux_sym_dynamic_forward_token1] = ACTIONS(1410), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1410), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1410), - [aux_sym_escape_char_token1] = ACTIONS(1410), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1410), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1410), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1410), - [aux_sym_forward_agent_token1] = ACTIONS(1410), - [aux_sym_forward_x11_token1] = ACTIONS(1412), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1410), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1410), - [aux_sym_gateway_ports_token1] = ACTIONS(1410), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1410), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1410), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1410), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1410), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1410), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1410), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1410), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1410), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1410), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1410), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1410), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1410), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1410), - [aux_sym_host_key_alias_token1] = ACTIONS(1410), - [aux_sym_hostname_token1] = ACTIONS(1410), - [aux_sym_identities_only_token1] = ACTIONS(1410), - [aux_sym_identity_agent_token1] = ACTIONS(1410), - [aux_sym_identity_file_token1] = ACTIONS(1410), - [aux_sym_ignore_unknown_token1] = ACTIONS(1410), - [aux_sym_include_token1] = ACTIONS(1410), - [aux_sym_ip_qos_token1] = ACTIONS(1410), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1410), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1410), - [aux_sym_kex_algorithms_token1] = ACTIONS(1410), - [aux_sym_known_hosts_command_token1] = ACTIONS(1410), - [aux_sym_local_command_token1] = ACTIONS(1410), - [aux_sym_local_forward_token1] = ACTIONS(1410), - [aux_sym_log_level_token1] = ACTIONS(1410), - [aux_sym_log_verbose_token1] = ACTIONS(1410), - [aux_sym_macs_token1] = ACTIONS(1410), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1410), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1410), - [aux_sym_password_authentication_token1] = ACTIONS(1410), - [aux_sym_permit_local_command_token1] = ACTIONS(1410), - [aux_sym_permit_remote_open_token1] = ACTIONS(1410), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1410), - [aux_sym_port_token1] = ACTIONS(1410), - [aux_sym_preferred_authentications_token1] = ACTIONS(1410), - [aux_sym_protocol_token1] = ACTIONS(1410), - [aux_sym_proxy_command_token1] = ACTIONS(1410), - [aux_sym_proxy_jump_token1] = ACTIONS(1410), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1410), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1410), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1410), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1410), - [aux_sym_rekey_limit_token1] = ACTIONS(1410), - [aux_sym_remote_command_token1] = ACTIONS(1410), - [aux_sym_remote_forward_token1] = ACTIONS(1410), - [aux_sym_request_tty_token1] = ACTIONS(1410), - [aux_sym_required_rsa_size_token1] = ACTIONS(1410), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1410), - [aux_sym_security_key_provider_token1] = ACTIONS(1410), - [aux_sym_send_env_token1] = ACTIONS(1410), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1410), - [aux_sym_server_alive_interval_token1] = ACTIONS(1410), - [aux_sym_session_type_token1] = ACTIONS(1410), - [aux_sym_set_env_token1] = ACTIONS(1410), - [aux_sym_stdin_null_token1] = ACTIONS(1410), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1410), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1410), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1410), - [aux_sym_syslog_facility_token1] = ACTIONS(1410), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1410), - [aux_sym_keep_alive_token1] = ACTIONS(1410), - [aux_sym_tag_token1] = ACTIONS(1410), - [aux_sym_tunnel_token1] = ACTIONS(1412), - [aux_sym_tunnel_device_token1] = ACTIONS(1410), - [aux_sym_update_host_keys_token1] = ACTIONS(1410), - [aux_sym_use_keychain_token1] = ACTIONS(1410), - [aux_sym_use_roaming_token1] = ACTIONS(1410), - [aux_sym_user_token1] = ACTIONS(1412), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1410), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1410), - [aux_sym_visual_host_key_token1] = ACTIONS(1410), - [aux_sym_xauth_location_token1] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1109), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1111), + [aux_sym_match_token1] = ACTIONS(1109), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1109), + [aux_sym_address_family_token1] = ACTIONS(1109), + [aux_sym_batch_mode_token1] = ACTIONS(1109), + [aux_sym_bind_address_token1] = ACTIONS(1109), + [aux_sym_bind_interface_token1] = ACTIONS(1109), + [aux_sym_canonical_domains_token1] = ACTIONS(1109), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1109), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1109), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1109), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1109), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1109), + [aux_sym_certificate_file_token1] = ACTIONS(1109), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1109), + [aux_sym_channel_timeout_token1] = ACTIONS(1109), + [aux_sym_check_host_ip_token1] = ACTIONS(1109), + [aux_sym_ciphers_token1] = ACTIONS(1109), + [aux_sym_cipher_token1] = ACTIONS(1111), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1109), + [aux_sym_compression_token1] = ACTIONS(1109), + [aux_sym_connection_attempts_token1] = ACTIONS(1109), + [aux_sym_connect_timeout_token1] = ACTIONS(1109), + [aux_sym_control_master_token1] = ACTIONS(1109), + [aux_sym_control_path_token1] = ACTIONS(1109), + [aux_sym_control_persist_token1] = ACTIONS(1109), + [aux_sym_dynamic_forward_token1] = ACTIONS(1109), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1109), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1109), + [aux_sym_escape_char_token1] = ACTIONS(1109), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1109), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1109), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1109), + [aux_sym_forward_agent_token1] = ACTIONS(1109), + [aux_sym_forward_x11_token1] = ACTIONS(1111), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1109), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1109), + [aux_sym_gateway_ports_token1] = ACTIONS(1109), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1109), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1109), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1109), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1109), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1109), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1109), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1109), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1109), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1109), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1109), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1109), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1109), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1109), + [aux_sym_host_key_alias_token1] = ACTIONS(1109), + [aux_sym_hostname_token1] = ACTIONS(1109), + [aux_sym_identities_only_token1] = ACTIONS(1109), + [aux_sym_identity_agent_token1] = ACTIONS(1109), + [aux_sym_identity_file_token1] = ACTIONS(1109), + [aux_sym_ignore_unknown_token1] = ACTIONS(1109), + [aux_sym_include_token1] = ACTIONS(1109), + [aux_sym_ip_qos_token1] = ACTIONS(1109), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1109), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1109), + [aux_sym_kex_algorithms_token1] = ACTIONS(1109), + [aux_sym_known_hosts_command_token1] = ACTIONS(1109), + [aux_sym_local_command_token1] = ACTIONS(1109), + [aux_sym_local_forward_token1] = ACTIONS(1109), + [aux_sym_log_level_token1] = ACTIONS(1109), + [aux_sym_log_verbose_token1] = ACTIONS(1109), + [aux_sym_macs_token1] = ACTIONS(1109), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1109), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1109), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1109), + [aux_sym_password_authentication_token1] = ACTIONS(1109), + [aux_sym_permit_local_command_token1] = ACTIONS(1109), + [aux_sym_permit_remote_open_token1] = ACTIONS(1109), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1109), + [aux_sym_port_token1] = ACTIONS(1109), + [aux_sym_preferred_authentications_token1] = ACTIONS(1109), + [aux_sym_protocol_token1] = ACTIONS(1109), + [aux_sym_proxy_command_token1] = ACTIONS(1109), + [aux_sym_proxy_jump_token1] = ACTIONS(1109), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1109), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1109), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1109), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1109), + [aux_sym_rekey_limit_token1] = ACTIONS(1109), + [aux_sym_remote_command_token1] = ACTIONS(1109), + [aux_sym_remote_forward_token1] = ACTIONS(1109), + [aux_sym_request_tty_token1] = ACTIONS(1109), + [aux_sym_required_rsa_size_token1] = ACTIONS(1109), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1109), + [aux_sym_security_key_provider_token1] = ACTIONS(1109), + [aux_sym_send_env_token1] = ACTIONS(1109), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1109), + [aux_sym_server_alive_interval_token1] = ACTIONS(1109), + [aux_sym_session_type_token1] = ACTIONS(1109), + [aux_sym_set_env_token1] = ACTIONS(1109), + [aux_sym_stdin_null_token1] = ACTIONS(1109), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1109), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1109), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1109), + [aux_sym_syslog_facility_token1] = ACTIONS(1109), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1109), + [aux_sym_keep_alive_token1] = ACTIONS(1109), + [aux_sym_tag_token1] = ACTIONS(1109), + [aux_sym_tunnel_token1] = ACTIONS(1111), + [aux_sym_tunnel_device_token1] = ACTIONS(1109), + [aux_sym_update_host_keys_token1] = ACTIONS(1109), + [aux_sym_use_keychain_token1] = ACTIONS(1109), + [aux_sym_use_roaming_token1] = ACTIONS(1109), + [aux_sym_user_token1] = ACTIONS(1111), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1109), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1109), + [aux_sym_visual_host_key_token1] = ACTIONS(1109), + [aux_sym_xauth_location_token1] = ACTIONS(1109), }, [518] = { - [ts_builtin_sym_end] = ACTIONS(1278), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1280), - [aux_sym_match_token1] = ACTIONS(1278), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1278), - [aux_sym_address_family_token1] = ACTIONS(1278), - [aux_sym_batch_mode_token1] = ACTIONS(1278), - [aux_sym_bind_address_token1] = ACTIONS(1278), - [aux_sym_bind_interface_token1] = ACTIONS(1278), - [aux_sym_canonical_domains_token1] = ACTIONS(1278), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1278), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1278), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1278), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1278), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1278), - [aux_sym_certificate_file_token1] = ACTIONS(1278), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1278), - [aux_sym_channel_timeout_token1] = ACTIONS(1278), - [aux_sym_check_host_ip_token1] = ACTIONS(1278), - [aux_sym_ciphers_token1] = ACTIONS(1278), - [aux_sym_cipher_token1] = ACTIONS(1280), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1278), - [aux_sym_compression_token1] = ACTIONS(1278), - [aux_sym_connection_attempts_token1] = ACTIONS(1278), - [aux_sym_connect_timeout_token1] = ACTIONS(1278), - [aux_sym_control_master_token1] = ACTIONS(1278), - [aux_sym_control_path_token1] = ACTIONS(1278), - [aux_sym_control_persist_token1] = ACTIONS(1278), - [aux_sym_dynamic_forward_token1] = ACTIONS(1278), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1278), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1278), - [aux_sym_escape_char_token1] = ACTIONS(1278), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1278), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1278), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1278), - [aux_sym_forward_agent_token1] = ACTIONS(1278), - [aux_sym_forward_x11_token1] = ACTIONS(1280), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1278), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1278), - [aux_sym_gateway_ports_token1] = ACTIONS(1278), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1278), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1278), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1278), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1278), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1278), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1278), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1278), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1278), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1278), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1278), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1278), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1278), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1278), - [aux_sym_host_key_alias_token1] = ACTIONS(1278), - [aux_sym_hostname_token1] = ACTIONS(1278), - [aux_sym_identities_only_token1] = ACTIONS(1278), - [aux_sym_identity_agent_token1] = ACTIONS(1278), - [aux_sym_identity_file_token1] = ACTIONS(1278), - [aux_sym_ignore_unknown_token1] = ACTIONS(1278), - [aux_sym_include_token1] = ACTIONS(1278), - [aux_sym_ip_qos_token1] = ACTIONS(1278), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1278), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1278), - [aux_sym_kex_algorithms_token1] = ACTIONS(1278), - [aux_sym_known_hosts_command_token1] = ACTIONS(1278), - [aux_sym_local_command_token1] = ACTIONS(1278), - [aux_sym_local_forward_token1] = ACTIONS(1278), - [aux_sym_log_level_token1] = ACTIONS(1278), - [aux_sym_log_verbose_token1] = ACTIONS(1278), - [aux_sym_macs_token1] = ACTIONS(1278), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1278), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1278), - [aux_sym_password_authentication_token1] = ACTIONS(1278), - [aux_sym_permit_local_command_token1] = ACTIONS(1278), - [aux_sym_permit_remote_open_token1] = ACTIONS(1278), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1278), - [aux_sym_port_token1] = ACTIONS(1278), - [aux_sym_preferred_authentications_token1] = ACTIONS(1278), - [aux_sym_protocol_token1] = ACTIONS(1278), - [aux_sym_proxy_command_token1] = ACTIONS(1278), - [aux_sym_proxy_jump_token1] = ACTIONS(1278), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1278), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1278), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1278), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1278), - [aux_sym_rekey_limit_token1] = ACTIONS(1278), - [aux_sym_remote_command_token1] = ACTIONS(1278), - [aux_sym_remote_forward_token1] = ACTIONS(1278), - [aux_sym_request_tty_token1] = ACTIONS(1278), - [aux_sym_required_rsa_size_token1] = ACTIONS(1278), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1278), - [aux_sym_security_key_provider_token1] = ACTIONS(1278), - [aux_sym_send_env_token1] = ACTIONS(1278), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1278), - [aux_sym_server_alive_interval_token1] = ACTIONS(1278), - [aux_sym_session_type_token1] = ACTIONS(1278), - [aux_sym_set_env_token1] = ACTIONS(1278), - [aux_sym_stdin_null_token1] = ACTIONS(1278), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1278), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1278), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1278), - [aux_sym_syslog_facility_token1] = ACTIONS(1278), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1278), - [aux_sym_keep_alive_token1] = ACTIONS(1278), - [aux_sym_tag_token1] = ACTIONS(1278), - [aux_sym_tunnel_token1] = ACTIONS(1280), - [aux_sym_tunnel_device_token1] = ACTIONS(1278), - [aux_sym_update_host_keys_token1] = ACTIONS(1278), - [aux_sym_use_keychain_token1] = ACTIONS(1278), - [aux_sym_use_roaming_token1] = ACTIONS(1278), - [aux_sym_user_token1] = ACTIONS(1280), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1278), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1278), - [aux_sym_visual_host_key_token1] = ACTIONS(1278), - [aux_sym_xauth_location_token1] = ACTIONS(1278), + [ts_builtin_sym_end] = ACTIONS(1199), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1201), + [aux_sym_match_token1] = ACTIONS(1199), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1199), + [aux_sym_address_family_token1] = ACTIONS(1199), + [aux_sym_batch_mode_token1] = ACTIONS(1199), + [aux_sym_bind_address_token1] = ACTIONS(1199), + [aux_sym_bind_interface_token1] = ACTIONS(1199), + [aux_sym_canonical_domains_token1] = ACTIONS(1199), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1199), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1199), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1199), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1199), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1199), + [aux_sym_certificate_file_token1] = ACTIONS(1199), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1199), + [aux_sym_channel_timeout_token1] = ACTIONS(1199), + [aux_sym_check_host_ip_token1] = ACTIONS(1199), + [aux_sym_ciphers_token1] = ACTIONS(1199), + [aux_sym_cipher_token1] = ACTIONS(1201), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1199), + [aux_sym_compression_token1] = ACTIONS(1199), + [aux_sym_connection_attempts_token1] = ACTIONS(1199), + [aux_sym_connect_timeout_token1] = ACTIONS(1199), + [aux_sym_control_master_token1] = ACTIONS(1199), + [aux_sym_control_path_token1] = ACTIONS(1199), + [aux_sym_control_persist_token1] = ACTIONS(1199), + [aux_sym_dynamic_forward_token1] = ACTIONS(1199), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1199), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1199), + [aux_sym_escape_char_token1] = ACTIONS(1199), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1199), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1199), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1199), + [aux_sym_forward_agent_token1] = ACTIONS(1199), + [aux_sym_forward_x11_token1] = ACTIONS(1201), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1199), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1199), + [aux_sym_gateway_ports_token1] = ACTIONS(1199), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1199), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1199), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1199), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1199), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1199), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1199), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1199), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1199), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1199), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1199), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1199), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1199), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1199), + [aux_sym_host_key_alias_token1] = ACTIONS(1199), + [aux_sym_hostname_token1] = ACTIONS(1199), + [aux_sym_identities_only_token1] = ACTIONS(1199), + [aux_sym_identity_agent_token1] = ACTIONS(1199), + [aux_sym_identity_file_token1] = ACTIONS(1199), + [aux_sym_ignore_unknown_token1] = ACTIONS(1199), + [aux_sym_include_token1] = ACTIONS(1199), + [aux_sym_ip_qos_token1] = ACTIONS(1199), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1199), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1199), + [aux_sym_kex_algorithms_token1] = ACTIONS(1199), + [aux_sym_known_hosts_command_token1] = ACTIONS(1199), + [aux_sym_local_command_token1] = ACTIONS(1199), + [aux_sym_local_forward_token1] = ACTIONS(1199), + [aux_sym_log_level_token1] = ACTIONS(1199), + [aux_sym_log_verbose_token1] = ACTIONS(1199), + [aux_sym_macs_token1] = ACTIONS(1199), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1199), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1199), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1199), + [aux_sym_password_authentication_token1] = ACTIONS(1199), + [aux_sym_permit_local_command_token1] = ACTIONS(1199), + [aux_sym_permit_remote_open_token1] = ACTIONS(1199), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1199), + [aux_sym_port_token1] = ACTIONS(1199), + [aux_sym_preferred_authentications_token1] = ACTIONS(1199), + [aux_sym_protocol_token1] = ACTIONS(1199), + [aux_sym_proxy_command_token1] = ACTIONS(1199), + [aux_sym_proxy_jump_token1] = ACTIONS(1199), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1199), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1199), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1199), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1199), + [aux_sym_rekey_limit_token1] = ACTIONS(1199), + [aux_sym_remote_command_token1] = ACTIONS(1199), + [aux_sym_remote_forward_token1] = ACTIONS(1199), + [aux_sym_request_tty_token1] = ACTIONS(1199), + [aux_sym_required_rsa_size_token1] = ACTIONS(1199), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1199), + [aux_sym_security_key_provider_token1] = ACTIONS(1199), + [aux_sym_send_env_token1] = ACTIONS(1199), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1199), + [aux_sym_server_alive_interval_token1] = ACTIONS(1199), + [aux_sym_session_type_token1] = ACTIONS(1199), + [aux_sym_set_env_token1] = ACTIONS(1199), + [aux_sym_stdin_null_token1] = ACTIONS(1199), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1199), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1199), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1199), + [aux_sym_syslog_facility_token1] = ACTIONS(1199), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1199), + [aux_sym_keep_alive_token1] = ACTIONS(1199), + [aux_sym_tag_token1] = ACTIONS(1199), + [aux_sym_tunnel_token1] = ACTIONS(1201), + [aux_sym_tunnel_device_token1] = ACTIONS(1199), + [aux_sym_update_host_keys_token1] = ACTIONS(1199), + [aux_sym_use_keychain_token1] = ACTIONS(1199), + [aux_sym_use_roaming_token1] = ACTIONS(1199), + [aux_sym_user_token1] = ACTIONS(1201), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1199), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1199), + [aux_sym_visual_host_key_token1] = ACTIONS(1199), + [aux_sym_xauth_location_token1] = ACTIONS(1199), }, [519] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1418), - [aux_sym_match_token1] = ACTIONS(1416), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1416), - [aux_sym_address_family_token1] = ACTIONS(1416), - [aux_sym_batch_mode_token1] = ACTIONS(1416), - [aux_sym_bind_address_token1] = ACTIONS(1416), - [aux_sym_bind_interface_token1] = ACTIONS(1416), - [aux_sym_canonical_domains_token1] = ACTIONS(1416), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1416), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1416), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1416), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1416), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1416), - [aux_sym_certificate_file_token1] = ACTIONS(1416), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1416), - [aux_sym_channel_timeout_token1] = ACTIONS(1416), - [aux_sym_check_host_ip_token1] = ACTIONS(1416), - [aux_sym_ciphers_token1] = ACTIONS(1416), - [aux_sym_cipher_token1] = ACTIONS(1418), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1416), - [aux_sym_compression_token1] = ACTIONS(1416), - [aux_sym_connection_attempts_token1] = ACTIONS(1416), - [aux_sym_connect_timeout_token1] = ACTIONS(1416), - [aux_sym_control_master_token1] = ACTIONS(1416), - [aux_sym_control_path_token1] = ACTIONS(1416), - [aux_sym_control_persist_token1] = ACTIONS(1416), - [aux_sym_dynamic_forward_token1] = ACTIONS(1416), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1416), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1416), - [aux_sym_escape_char_token1] = ACTIONS(1416), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1416), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1416), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1416), - [aux_sym_forward_agent_token1] = ACTIONS(1416), - [aux_sym_forward_x11_token1] = ACTIONS(1418), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1416), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1416), - [aux_sym_gateway_ports_token1] = ACTIONS(1416), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1416), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1416), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1416), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1416), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1416), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1416), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1416), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1416), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1416), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1416), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1416), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1416), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1416), - [aux_sym_host_key_alias_token1] = ACTIONS(1416), - [aux_sym_hostname_token1] = ACTIONS(1416), - [aux_sym_identities_only_token1] = ACTIONS(1416), - [aux_sym_identity_agent_token1] = ACTIONS(1416), - [aux_sym_identity_file_token1] = ACTIONS(1416), - [aux_sym_ignore_unknown_token1] = ACTIONS(1416), - [aux_sym_include_token1] = ACTIONS(1416), - [aux_sym_ip_qos_token1] = ACTIONS(1416), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1416), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1416), - [aux_sym_kex_algorithms_token1] = ACTIONS(1416), - [aux_sym_known_hosts_command_token1] = ACTIONS(1416), - [aux_sym_local_command_token1] = ACTIONS(1416), - [aux_sym_local_forward_token1] = ACTIONS(1416), - [aux_sym_log_level_token1] = ACTIONS(1416), - [aux_sym_log_verbose_token1] = ACTIONS(1416), - [aux_sym_macs_token1] = ACTIONS(1416), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1416), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1416), - [aux_sym_password_authentication_token1] = ACTIONS(1416), - [aux_sym_permit_local_command_token1] = ACTIONS(1416), - [aux_sym_permit_remote_open_token1] = ACTIONS(1416), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1416), - [aux_sym_port_token1] = ACTIONS(1416), - [aux_sym_preferred_authentications_token1] = ACTIONS(1416), - [aux_sym_protocol_token1] = ACTIONS(1416), - [aux_sym_proxy_command_token1] = ACTIONS(1416), - [aux_sym_proxy_jump_token1] = ACTIONS(1416), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1416), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1416), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1416), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1416), - [aux_sym_rekey_limit_token1] = ACTIONS(1416), - [aux_sym_remote_command_token1] = ACTIONS(1416), - [aux_sym_remote_forward_token1] = ACTIONS(1416), - [aux_sym_request_tty_token1] = ACTIONS(1416), - [aux_sym_required_rsa_size_token1] = ACTIONS(1416), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1416), - [aux_sym_security_key_provider_token1] = ACTIONS(1416), - [aux_sym_send_env_token1] = ACTIONS(1416), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1416), - [aux_sym_server_alive_interval_token1] = ACTIONS(1416), - [aux_sym_session_type_token1] = ACTIONS(1416), - [aux_sym_set_env_token1] = ACTIONS(1416), - [aux_sym_stdin_null_token1] = ACTIONS(1416), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1416), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1416), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1416), - [aux_sym_syslog_facility_token1] = ACTIONS(1416), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1416), - [aux_sym_keep_alive_token1] = ACTIONS(1416), - [aux_sym_tag_token1] = ACTIONS(1416), - [aux_sym_tunnel_token1] = ACTIONS(1418), - [aux_sym_tunnel_device_token1] = ACTIONS(1416), - [aux_sym_update_host_keys_token1] = ACTIONS(1416), - [aux_sym_use_keychain_token1] = ACTIONS(1416), - [aux_sym_use_roaming_token1] = ACTIONS(1416), - [aux_sym_user_token1] = ACTIONS(1418), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1416), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1416), - [aux_sym_visual_host_key_token1] = ACTIONS(1416), - [aux_sym_xauth_location_token1] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(1145), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1147), + [aux_sym_match_token1] = ACTIONS(1145), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1145), + [aux_sym_address_family_token1] = ACTIONS(1145), + [aux_sym_batch_mode_token1] = ACTIONS(1145), + [aux_sym_bind_address_token1] = ACTIONS(1145), + [aux_sym_bind_interface_token1] = ACTIONS(1145), + [aux_sym_canonical_domains_token1] = ACTIONS(1145), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1145), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1145), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1145), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1145), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1145), + [aux_sym_certificate_file_token1] = ACTIONS(1145), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1145), + [aux_sym_channel_timeout_token1] = ACTIONS(1145), + [aux_sym_check_host_ip_token1] = ACTIONS(1145), + [aux_sym_ciphers_token1] = ACTIONS(1145), + [aux_sym_cipher_token1] = ACTIONS(1147), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1145), + [aux_sym_compression_token1] = ACTIONS(1145), + [aux_sym_connection_attempts_token1] = ACTIONS(1145), + [aux_sym_connect_timeout_token1] = ACTIONS(1145), + [aux_sym_control_master_token1] = ACTIONS(1145), + [aux_sym_control_path_token1] = ACTIONS(1145), + [aux_sym_control_persist_token1] = ACTIONS(1145), + [aux_sym_dynamic_forward_token1] = ACTIONS(1145), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1145), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1145), + [aux_sym_escape_char_token1] = ACTIONS(1145), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1145), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1145), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1145), + [aux_sym_forward_agent_token1] = ACTIONS(1145), + [aux_sym_forward_x11_token1] = ACTIONS(1147), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1145), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1145), + [aux_sym_gateway_ports_token1] = ACTIONS(1145), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1145), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1145), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1145), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1145), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1145), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1145), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1145), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1145), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1145), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1145), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1145), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1145), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1145), + [aux_sym_host_key_alias_token1] = ACTIONS(1145), + [aux_sym_hostname_token1] = ACTIONS(1145), + [aux_sym_identities_only_token1] = ACTIONS(1145), + [aux_sym_identity_agent_token1] = ACTIONS(1145), + [aux_sym_identity_file_token1] = ACTIONS(1145), + [aux_sym_ignore_unknown_token1] = ACTIONS(1145), + [aux_sym_include_token1] = ACTIONS(1145), + [aux_sym_ip_qos_token1] = ACTIONS(1145), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1145), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1145), + [aux_sym_kex_algorithms_token1] = ACTIONS(1145), + [aux_sym_known_hosts_command_token1] = ACTIONS(1145), + [aux_sym_local_command_token1] = ACTIONS(1145), + [aux_sym_local_forward_token1] = ACTIONS(1145), + [aux_sym_log_level_token1] = ACTIONS(1145), + [aux_sym_log_verbose_token1] = ACTIONS(1145), + [aux_sym_macs_token1] = ACTIONS(1145), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1145), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1145), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1145), + [aux_sym_password_authentication_token1] = ACTIONS(1145), + [aux_sym_permit_local_command_token1] = ACTIONS(1145), + [aux_sym_permit_remote_open_token1] = ACTIONS(1145), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1145), + [aux_sym_port_token1] = ACTIONS(1145), + [aux_sym_preferred_authentications_token1] = ACTIONS(1145), + [aux_sym_protocol_token1] = ACTIONS(1145), + [aux_sym_proxy_command_token1] = ACTIONS(1145), + [aux_sym_proxy_jump_token1] = ACTIONS(1145), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1145), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1145), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1145), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1145), + [aux_sym_rekey_limit_token1] = ACTIONS(1145), + [aux_sym_remote_command_token1] = ACTIONS(1145), + [aux_sym_remote_forward_token1] = ACTIONS(1145), + [aux_sym_request_tty_token1] = ACTIONS(1145), + [aux_sym_required_rsa_size_token1] = ACTIONS(1145), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1145), + [aux_sym_security_key_provider_token1] = ACTIONS(1145), + [aux_sym_send_env_token1] = ACTIONS(1145), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1145), + [aux_sym_server_alive_interval_token1] = ACTIONS(1145), + [aux_sym_session_type_token1] = ACTIONS(1145), + [aux_sym_set_env_token1] = ACTIONS(1145), + [aux_sym_stdin_null_token1] = ACTIONS(1145), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1145), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1145), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1145), + [aux_sym_syslog_facility_token1] = ACTIONS(1145), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1145), + [aux_sym_keep_alive_token1] = ACTIONS(1145), + [aux_sym_tag_token1] = ACTIONS(1145), + [aux_sym_tunnel_token1] = ACTIONS(1147), + [aux_sym_tunnel_device_token1] = ACTIONS(1145), + [aux_sym_update_host_keys_token1] = ACTIONS(1145), + [aux_sym_use_keychain_token1] = ACTIONS(1145), + [aux_sym_use_roaming_token1] = ACTIONS(1145), + [aux_sym_user_token1] = ACTIONS(1147), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1145), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1145), + [aux_sym_visual_host_key_token1] = ACTIONS(1145), + [aux_sym_xauth_location_token1] = ACTIONS(1145), }, [520] = { - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1424), - [aux_sym_match_token1] = ACTIONS(1422), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1422), - [aux_sym_address_family_token1] = ACTIONS(1422), - [aux_sym_batch_mode_token1] = ACTIONS(1422), - [aux_sym_bind_address_token1] = ACTIONS(1422), - [aux_sym_bind_interface_token1] = ACTIONS(1422), - [aux_sym_canonical_domains_token1] = ACTIONS(1422), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1422), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1422), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1422), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1422), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1422), - [aux_sym_certificate_file_token1] = ACTIONS(1422), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1422), - [aux_sym_channel_timeout_token1] = ACTIONS(1422), - [aux_sym_check_host_ip_token1] = ACTIONS(1422), - [aux_sym_ciphers_token1] = ACTIONS(1422), - [aux_sym_cipher_token1] = ACTIONS(1424), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1422), - [aux_sym_compression_token1] = ACTIONS(1422), - [aux_sym_connection_attempts_token1] = ACTIONS(1422), - [aux_sym_connect_timeout_token1] = ACTIONS(1422), - [aux_sym_control_master_token1] = ACTIONS(1422), - [aux_sym_control_path_token1] = ACTIONS(1422), - [aux_sym_control_persist_token1] = ACTIONS(1422), - [aux_sym_dynamic_forward_token1] = ACTIONS(1422), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1422), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1422), - [aux_sym_escape_char_token1] = ACTIONS(1422), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1422), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1422), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1422), - [aux_sym_forward_agent_token1] = ACTIONS(1422), - [aux_sym_forward_x11_token1] = ACTIONS(1424), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1422), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1422), - [aux_sym_gateway_ports_token1] = ACTIONS(1422), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1422), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1422), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1422), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1422), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1422), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1422), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1422), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1422), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1422), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1422), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1422), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1422), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1422), - [aux_sym_host_key_alias_token1] = ACTIONS(1422), - [aux_sym_hostname_token1] = ACTIONS(1422), - [aux_sym_identities_only_token1] = ACTIONS(1422), - [aux_sym_identity_agent_token1] = ACTIONS(1422), - [aux_sym_identity_file_token1] = ACTIONS(1422), - [aux_sym_ignore_unknown_token1] = ACTIONS(1422), - [aux_sym_include_token1] = ACTIONS(1422), - [aux_sym_ip_qos_token1] = ACTIONS(1422), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1422), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1422), - [aux_sym_kex_algorithms_token1] = ACTIONS(1422), - [aux_sym_known_hosts_command_token1] = ACTIONS(1422), - [aux_sym_local_command_token1] = ACTIONS(1422), - [aux_sym_local_forward_token1] = ACTIONS(1422), - [aux_sym_log_level_token1] = ACTIONS(1422), - [aux_sym_log_verbose_token1] = ACTIONS(1422), - [aux_sym_macs_token1] = ACTIONS(1422), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1422), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1422), - [aux_sym_password_authentication_token1] = ACTIONS(1422), - [aux_sym_permit_local_command_token1] = ACTIONS(1422), - [aux_sym_permit_remote_open_token1] = ACTIONS(1422), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1422), - [aux_sym_port_token1] = ACTIONS(1422), - [aux_sym_preferred_authentications_token1] = ACTIONS(1422), - [aux_sym_protocol_token1] = ACTIONS(1422), - [aux_sym_proxy_command_token1] = ACTIONS(1422), - [aux_sym_proxy_jump_token1] = ACTIONS(1422), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1422), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1422), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1422), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1422), - [aux_sym_rekey_limit_token1] = ACTIONS(1422), - [aux_sym_remote_command_token1] = ACTIONS(1422), - [aux_sym_remote_forward_token1] = ACTIONS(1422), - [aux_sym_request_tty_token1] = ACTIONS(1422), - [aux_sym_required_rsa_size_token1] = ACTIONS(1422), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1422), - [aux_sym_security_key_provider_token1] = ACTIONS(1422), - [aux_sym_send_env_token1] = ACTIONS(1422), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1422), - [aux_sym_server_alive_interval_token1] = ACTIONS(1422), - [aux_sym_session_type_token1] = ACTIONS(1422), - [aux_sym_set_env_token1] = ACTIONS(1422), - [aux_sym_stdin_null_token1] = ACTIONS(1422), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1422), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1422), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1422), - [aux_sym_syslog_facility_token1] = ACTIONS(1422), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1422), - [aux_sym_keep_alive_token1] = ACTIONS(1422), - [aux_sym_tag_token1] = ACTIONS(1422), - [aux_sym_tunnel_token1] = ACTIONS(1424), - [aux_sym_tunnel_device_token1] = ACTIONS(1422), - [aux_sym_update_host_keys_token1] = ACTIONS(1422), - [aux_sym_use_keychain_token1] = ACTIONS(1422), - [aux_sym_use_roaming_token1] = ACTIONS(1422), - [aux_sym_user_token1] = ACTIONS(1424), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1422), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1422), - [aux_sym_visual_host_key_token1] = ACTIONS(1422), - [aux_sym_xauth_location_token1] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1205), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1207), + [aux_sym_match_token1] = ACTIONS(1205), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1205), + [aux_sym_address_family_token1] = ACTIONS(1205), + [aux_sym_batch_mode_token1] = ACTIONS(1205), + [aux_sym_bind_address_token1] = ACTIONS(1205), + [aux_sym_bind_interface_token1] = ACTIONS(1205), + [aux_sym_canonical_domains_token1] = ACTIONS(1205), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1205), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1205), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1205), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1205), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1205), + [aux_sym_certificate_file_token1] = ACTIONS(1205), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1205), + [aux_sym_channel_timeout_token1] = ACTIONS(1205), + [aux_sym_check_host_ip_token1] = ACTIONS(1205), + [aux_sym_ciphers_token1] = ACTIONS(1205), + [aux_sym_cipher_token1] = ACTIONS(1207), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1205), + [aux_sym_compression_token1] = ACTIONS(1205), + [aux_sym_connection_attempts_token1] = ACTIONS(1205), + [aux_sym_connect_timeout_token1] = ACTIONS(1205), + [aux_sym_control_master_token1] = ACTIONS(1205), + [aux_sym_control_path_token1] = ACTIONS(1205), + [aux_sym_control_persist_token1] = ACTIONS(1205), + [aux_sym_dynamic_forward_token1] = ACTIONS(1205), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1205), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1205), + [aux_sym_escape_char_token1] = ACTIONS(1205), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1205), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1205), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1205), + [aux_sym_forward_agent_token1] = ACTIONS(1205), + [aux_sym_forward_x11_token1] = ACTIONS(1207), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1205), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1205), + [aux_sym_gateway_ports_token1] = ACTIONS(1205), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1205), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1205), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1205), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1205), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1205), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1205), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1205), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1205), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1205), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1205), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1205), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1205), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1205), + [aux_sym_host_key_alias_token1] = ACTIONS(1205), + [aux_sym_hostname_token1] = ACTIONS(1205), + [aux_sym_identities_only_token1] = ACTIONS(1205), + [aux_sym_identity_agent_token1] = ACTIONS(1205), + [aux_sym_identity_file_token1] = ACTIONS(1205), + [aux_sym_ignore_unknown_token1] = ACTIONS(1205), + [aux_sym_include_token1] = ACTIONS(1205), + [aux_sym_ip_qos_token1] = ACTIONS(1205), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1205), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1205), + [aux_sym_kex_algorithms_token1] = ACTIONS(1205), + [aux_sym_known_hosts_command_token1] = ACTIONS(1205), + [aux_sym_local_command_token1] = ACTIONS(1205), + [aux_sym_local_forward_token1] = ACTIONS(1205), + [aux_sym_log_level_token1] = ACTIONS(1205), + [aux_sym_log_verbose_token1] = ACTIONS(1205), + [aux_sym_macs_token1] = ACTIONS(1205), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1205), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1205), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1205), + [aux_sym_password_authentication_token1] = ACTIONS(1205), + [aux_sym_permit_local_command_token1] = ACTIONS(1205), + [aux_sym_permit_remote_open_token1] = ACTIONS(1205), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1205), + [aux_sym_port_token1] = ACTIONS(1205), + [aux_sym_preferred_authentications_token1] = ACTIONS(1205), + [aux_sym_protocol_token1] = ACTIONS(1205), + [aux_sym_proxy_command_token1] = ACTIONS(1205), + [aux_sym_proxy_jump_token1] = ACTIONS(1205), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1205), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1205), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1205), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1205), + [aux_sym_rekey_limit_token1] = ACTIONS(1205), + [aux_sym_remote_command_token1] = ACTIONS(1205), + [aux_sym_remote_forward_token1] = ACTIONS(1205), + [aux_sym_request_tty_token1] = ACTIONS(1205), + [aux_sym_required_rsa_size_token1] = ACTIONS(1205), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1205), + [aux_sym_security_key_provider_token1] = ACTIONS(1205), + [aux_sym_send_env_token1] = ACTIONS(1205), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1205), + [aux_sym_server_alive_interval_token1] = ACTIONS(1205), + [aux_sym_session_type_token1] = ACTIONS(1205), + [aux_sym_set_env_token1] = ACTIONS(1205), + [aux_sym_stdin_null_token1] = ACTIONS(1205), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1205), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1205), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1205), + [aux_sym_syslog_facility_token1] = ACTIONS(1205), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1205), + [aux_sym_keep_alive_token1] = ACTIONS(1205), + [aux_sym_tag_token1] = ACTIONS(1205), + [aux_sym_tunnel_token1] = ACTIONS(1207), + [aux_sym_tunnel_device_token1] = ACTIONS(1205), + [aux_sym_update_host_keys_token1] = ACTIONS(1205), + [aux_sym_use_keychain_token1] = ACTIONS(1205), + [aux_sym_use_roaming_token1] = ACTIONS(1205), + [aux_sym_user_token1] = ACTIONS(1207), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1205), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1205), + [aux_sym_visual_host_key_token1] = ACTIONS(1205), + [aux_sym_xauth_location_token1] = ACTIONS(1205), }, [521] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1430), - [aux_sym_match_token1] = ACTIONS(1428), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1428), - [aux_sym_address_family_token1] = ACTIONS(1428), - [aux_sym_batch_mode_token1] = ACTIONS(1428), - [aux_sym_bind_address_token1] = ACTIONS(1428), - [aux_sym_bind_interface_token1] = ACTIONS(1428), - [aux_sym_canonical_domains_token1] = ACTIONS(1428), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1428), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1428), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1428), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1428), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1428), - [aux_sym_certificate_file_token1] = ACTIONS(1428), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1428), - [aux_sym_channel_timeout_token1] = ACTIONS(1428), - [aux_sym_check_host_ip_token1] = ACTIONS(1428), - [aux_sym_ciphers_token1] = ACTIONS(1428), - [aux_sym_cipher_token1] = ACTIONS(1430), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1428), - [aux_sym_compression_token1] = ACTIONS(1428), - [aux_sym_connection_attempts_token1] = ACTIONS(1428), - [aux_sym_connect_timeout_token1] = ACTIONS(1428), - [aux_sym_control_master_token1] = ACTIONS(1428), - [aux_sym_control_path_token1] = ACTIONS(1428), - [aux_sym_control_persist_token1] = ACTIONS(1428), - [aux_sym_dynamic_forward_token1] = ACTIONS(1428), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1428), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1428), - [aux_sym_escape_char_token1] = ACTIONS(1428), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1428), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1428), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1428), - [aux_sym_forward_agent_token1] = ACTIONS(1428), - [aux_sym_forward_x11_token1] = ACTIONS(1430), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1428), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1428), - [aux_sym_gateway_ports_token1] = ACTIONS(1428), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1428), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1428), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1428), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1428), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1428), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1428), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1428), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1428), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1428), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1428), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1428), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1428), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1428), - [aux_sym_host_key_alias_token1] = ACTIONS(1428), - [aux_sym_hostname_token1] = ACTIONS(1428), - [aux_sym_identities_only_token1] = ACTIONS(1428), - [aux_sym_identity_agent_token1] = ACTIONS(1428), - [aux_sym_identity_file_token1] = ACTIONS(1428), - [aux_sym_ignore_unknown_token1] = ACTIONS(1428), - [aux_sym_include_token1] = ACTIONS(1428), - [aux_sym_ip_qos_token1] = ACTIONS(1428), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1428), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1428), - [aux_sym_kex_algorithms_token1] = ACTIONS(1428), - [aux_sym_known_hosts_command_token1] = ACTIONS(1428), - [aux_sym_local_command_token1] = ACTIONS(1428), - [aux_sym_local_forward_token1] = ACTIONS(1428), - [aux_sym_log_level_token1] = ACTIONS(1428), - [aux_sym_log_verbose_token1] = ACTIONS(1428), - [aux_sym_macs_token1] = ACTIONS(1428), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1428), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1428), - [aux_sym_password_authentication_token1] = ACTIONS(1428), - [aux_sym_permit_local_command_token1] = ACTIONS(1428), - [aux_sym_permit_remote_open_token1] = ACTIONS(1428), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1428), - [aux_sym_port_token1] = ACTIONS(1428), - [aux_sym_preferred_authentications_token1] = ACTIONS(1428), - [aux_sym_protocol_token1] = ACTIONS(1428), - [aux_sym_proxy_command_token1] = ACTIONS(1428), - [aux_sym_proxy_jump_token1] = ACTIONS(1428), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1428), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1428), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1428), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1428), - [aux_sym_rekey_limit_token1] = ACTIONS(1428), - [aux_sym_remote_command_token1] = ACTIONS(1428), - [aux_sym_remote_forward_token1] = ACTIONS(1428), - [aux_sym_request_tty_token1] = ACTIONS(1428), - [aux_sym_required_rsa_size_token1] = ACTIONS(1428), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1428), - [aux_sym_security_key_provider_token1] = ACTIONS(1428), - [aux_sym_send_env_token1] = ACTIONS(1428), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1428), - [aux_sym_server_alive_interval_token1] = ACTIONS(1428), - [aux_sym_session_type_token1] = ACTIONS(1428), - [aux_sym_set_env_token1] = ACTIONS(1428), - [aux_sym_stdin_null_token1] = ACTIONS(1428), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1428), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1428), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1428), - [aux_sym_syslog_facility_token1] = ACTIONS(1428), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1428), - [aux_sym_keep_alive_token1] = ACTIONS(1428), - [aux_sym_tag_token1] = ACTIONS(1428), - [aux_sym_tunnel_token1] = ACTIONS(1430), - [aux_sym_tunnel_device_token1] = ACTIONS(1428), - [aux_sym_update_host_keys_token1] = ACTIONS(1428), - [aux_sym_use_keychain_token1] = ACTIONS(1428), - [aux_sym_use_roaming_token1] = ACTIONS(1428), - [aux_sym_user_token1] = ACTIONS(1430), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1428), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1428), - [aux_sym_visual_host_key_token1] = ACTIONS(1428), - [aux_sym_xauth_location_token1] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1085), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1087), + [aux_sym_match_token1] = ACTIONS(1085), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1085), + [aux_sym_address_family_token1] = ACTIONS(1085), + [aux_sym_batch_mode_token1] = ACTIONS(1085), + [aux_sym_bind_address_token1] = ACTIONS(1085), + [aux_sym_bind_interface_token1] = ACTIONS(1085), + [aux_sym_canonical_domains_token1] = ACTIONS(1085), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1085), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1085), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1085), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1085), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1085), + [aux_sym_certificate_file_token1] = ACTIONS(1085), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1085), + [aux_sym_channel_timeout_token1] = ACTIONS(1085), + [aux_sym_check_host_ip_token1] = ACTIONS(1085), + [aux_sym_ciphers_token1] = ACTIONS(1085), + [aux_sym_cipher_token1] = ACTIONS(1087), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1085), + [aux_sym_compression_token1] = ACTIONS(1085), + [aux_sym_connection_attempts_token1] = ACTIONS(1085), + [aux_sym_connect_timeout_token1] = ACTIONS(1085), + [aux_sym_control_master_token1] = ACTIONS(1085), + [aux_sym_control_path_token1] = ACTIONS(1085), + [aux_sym_control_persist_token1] = ACTIONS(1085), + [aux_sym_dynamic_forward_token1] = ACTIONS(1085), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1085), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1085), + [aux_sym_escape_char_token1] = ACTIONS(1085), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1085), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1085), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1085), + [aux_sym_forward_agent_token1] = ACTIONS(1085), + [aux_sym_forward_x11_token1] = ACTIONS(1087), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1085), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1085), + [aux_sym_gateway_ports_token1] = ACTIONS(1085), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1085), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1085), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1085), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1085), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1085), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1085), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1085), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1085), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1085), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1085), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1085), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1085), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1085), + [aux_sym_host_key_alias_token1] = ACTIONS(1085), + [aux_sym_hostname_token1] = ACTIONS(1085), + [aux_sym_identities_only_token1] = ACTIONS(1085), + [aux_sym_identity_agent_token1] = ACTIONS(1085), + [aux_sym_identity_file_token1] = ACTIONS(1085), + [aux_sym_ignore_unknown_token1] = ACTIONS(1085), + [aux_sym_include_token1] = ACTIONS(1085), + [aux_sym_ip_qos_token1] = ACTIONS(1085), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1085), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1085), + [aux_sym_kex_algorithms_token1] = ACTIONS(1085), + [aux_sym_known_hosts_command_token1] = ACTIONS(1085), + [aux_sym_local_command_token1] = ACTIONS(1085), + [aux_sym_local_forward_token1] = ACTIONS(1085), + [aux_sym_log_level_token1] = ACTIONS(1085), + [aux_sym_log_verbose_token1] = ACTIONS(1085), + [aux_sym_macs_token1] = ACTIONS(1085), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1085), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1085), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1085), + [aux_sym_password_authentication_token1] = ACTIONS(1085), + [aux_sym_permit_local_command_token1] = ACTIONS(1085), + [aux_sym_permit_remote_open_token1] = ACTIONS(1085), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1085), + [aux_sym_port_token1] = ACTIONS(1085), + [aux_sym_preferred_authentications_token1] = ACTIONS(1085), + [aux_sym_protocol_token1] = ACTIONS(1085), + [aux_sym_proxy_command_token1] = ACTIONS(1085), + [aux_sym_proxy_jump_token1] = ACTIONS(1085), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1085), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1085), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1085), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1085), + [aux_sym_rekey_limit_token1] = ACTIONS(1085), + [aux_sym_remote_command_token1] = ACTIONS(1085), + [aux_sym_remote_forward_token1] = ACTIONS(1085), + [aux_sym_request_tty_token1] = ACTIONS(1085), + [aux_sym_required_rsa_size_token1] = ACTIONS(1085), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1085), + [aux_sym_security_key_provider_token1] = ACTIONS(1085), + [aux_sym_send_env_token1] = ACTIONS(1085), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1085), + [aux_sym_server_alive_interval_token1] = ACTIONS(1085), + [aux_sym_session_type_token1] = ACTIONS(1085), + [aux_sym_set_env_token1] = ACTIONS(1085), + [aux_sym_stdin_null_token1] = ACTIONS(1085), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1085), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1085), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1085), + [aux_sym_syslog_facility_token1] = ACTIONS(1085), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1085), + [aux_sym_keep_alive_token1] = ACTIONS(1085), + [aux_sym_tag_token1] = ACTIONS(1085), + [aux_sym_tunnel_token1] = ACTIONS(1087), + [aux_sym_tunnel_device_token1] = ACTIONS(1085), + [aux_sym_update_host_keys_token1] = ACTIONS(1085), + [aux_sym_use_keychain_token1] = ACTIONS(1085), + [aux_sym_use_roaming_token1] = ACTIONS(1085), + [aux_sym_user_token1] = ACTIONS(1087), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1085), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1085), + [aux_sym_visual_host_key_token1] = ACTIONS(1085), + [aux_sym_xauth_location_token1] = ACTIONS(1085), }, [522] = { - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1436), - [aux_sym_match_token1] = ACTIONS(1434), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1434), - [aux_sym_address_family_token1] = ACTIONS(1434), - [aux_sym_batch_mode_token1] = ACTIONS(1434), - [aux_sym_bind_address_token1] = ACTIONS(1434), - [aux_sym_bind_interface_token1] = ACTIONS(1434), - [aux_sym_canonical_domains_token1] = ACTIONS(1434), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1434), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1434), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1434), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1434), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1434), - [aux_sym_certificate_file_token1] = ACTIONS(1434), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1434), - [aux_sym_channel_timeout_token1] = ACTIONS(1434), - [aux_sym_check_host_ip_token1] = ACTIONS(1434), - [aux_sym_ciphers_token1] = ACTIONS(1434), - [aux_sym_cipher_token1] = ACTIONS(1436), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1434), - [aux_sym_compression_token1] = ACTIONS(1434), - [aux_sym_connection_attempts_token1] = ACTIONS(1434), - [aux_sym_connect_timeout_token1] = ACTIONS(1434), - [aux_sym_control_master_token1] = ACTIONS(1434), - [aux_sym_control_path_token1] = ACTIONS(1434), - [aux_sym_control_persist_token1] = ACTIONS(1434), - [aux_sym_dynamic_forward_token1] = ACTIONS(1434), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1434), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1434), - [aux_sym_escape_char_token1] = ACTIONS(1434), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1434), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1434), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1434), - [aux_sym_forward_agent_token1] = ACTIONS(1434), - [aux_sym_forward_x11_token1] = ACTIONS(1436), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1434), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1434), - [aux_sym_gateway_ports_token1] = ACTIONS(1434), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1434), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1434), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1434), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1434), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1434), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1434), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1434), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1434), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1434), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1434), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1434), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1434), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1434), - [aux_sym_host_key_alias_token1] = ACTIONS(1434), - [aux_sym_hostname_token1] = ACTIONS(1434), - [aux_sym_identities_only_token1] = ACTIONS(1434), - [aux_sym_identity_agent_token1] = ACTIONS(1434), - [aux_sym_identity_file_token1] = ACTIONS(1434), - [aux_sym_ignore_unknown_token1] = ACTIONS(1434), - [aux_sym_include_token1] = ACTIONS(1434), - [aux_sym_ip_qos_token1] = ACTIONS(1434), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1434), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1434), - [aux_sym_kex_algorithms_token1] = ACTIONS(1434), - [aux_sym_known_hosts_command_token1] = ACTIONS(1434), - [aux_sym_local_command_token1] = ACTIONS(1434), - [aux_sym_local_forward_token1] = ACTIONS(1434), - [aux_sym_log_level_token1] = ACTIONS(1434), - [aux_sym_log_verbose_token1] = ACTIONS(1434), - [aux_sym_macs_token1] = ACTIONS(1434), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1434), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1434), - [aux_sym_password_authentication_token1] = ACTIONS(1434), - [aux_sym_permit_local_command_token1] = ACTIONS(1434), - [aux_sym_permit_remote_open_token1] = ACTIONS(1434), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1434), - [aux_sym_port_token1] = ACTIONS(1434), - [aux_sym_preferred_authentications_token1] = ACTIONS(1434), - [aux_sym_protocol_token1] = ACTIONS(1434), - [aux_sym_proxy_command_token1] = ACTIONS(1434), - [aux_sym_proxy_jump_token1] = ACTIONS(1434), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1434), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1434), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1434), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1434), - [aux_sym_rekey_limit_token1] = ACTIONS(1434), - [aux_sym_remote_command_token1] = ACTIONS(1434), - [aux_sym_remote_forward_token1] = ACTIONS(1434), - [aux_sym_request_tty_token1] = ACTIONS(1434), - [aux_sym_required_rsa_size_token1] = ACTIONS(1434), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1434), - [aux_sym_security_key_provider_token1] = ACTIONS(1434), - [aux_sym_send_env_token1] = ACTIONS(1434), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1434), - [aux_sym_server_alive_interval_token1] = ACTIONS(1434), - [aux_sym_session_type_token1] = ACTIONS(1434), - [aux_sym_set_env_token1] = ACTIONS(1434), - [aux_sym_stdin_null_token1] = ACTIONS(1434), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1434), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1434), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1434), - [aux_sym_syslog_facility_token1] = ACTIONS(1434), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1434), - [aux_sym_keep_alive_token1] = ACTIONS(1434), - [aux_sym_tag_token1] = ACTIONS(1434), - [aux_sym_tunnel_token1] = ACTIONS(1436), - [aux_sym_tunnel_device_token1] = ACTIONS(1434), - [aux_sym_update_host_keys_token1] = ACTIONS(1434), - [aux_sym_use_keychain_token1] = ACTIONS(1434), - [aux_sym_use_roaming_token1] = ACTIONS(1434), - [aux_sym_user_token1] = ACTIONS(1436), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1434), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1434), - [aux_sym_visual_host_key_token1] = ACTIONS(1434), - [aux_sym_xauth_location_token1] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1211), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1213), + [aux_sym_match_token1] = ACTIONS(1211), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1211), + [aux_sym_address_family_token1] = ACTIONS(1211), + [aux_sym_batch_mode_token1] = ACTIONS(1211), + [aux_sym_bind_address_token1] = ACTIONS(1211), + [aux_sym_bind_interface_token1] = ACTIONS(1211), + [aux_sym_canonical_domains_token1] = ACTIONS(1211), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1211), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1211), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1211), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1211), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1211), + [aux_sym_certificate_file_token1] = ACTIONS(1211), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1211), + [aux_sym_channel_timeout_token1] = ACTIONS(1211), + [aux_sym_check_host_ip_token1] = ACTIONS(1211), + [aux_sym_ciphers_token1] = ACTIONS(1211), + [aux_sym_cipher_token1] = ACTIONS(1213), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1211), + [aux_sym_compression_token1] = ACTIONS(1211), + [aux_sym_connection_attempts_token1] = ACTIONS(1211), + [aux_sym_connect_timeout_token1] = ACTIONS(1211), + [aux_sym_control_master_token1] = ACTIONS(1211), + [aux_sym_control_path_token1] = ACTIONS(1211), + [aux_sym_control_persist_token1] = ACTIONS(1211), + [aux_sym_dynamic_forward_token1] = ACTIONS(1211), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1211), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1211), + [aux_sym_escape_char_token1] = ACTIONS(1211), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1211), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1211), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1211), + [aux_sym_forward_agent_token1] = ACTIONS(1211), + [aux_sym_forward_x11_token1] = ACTIONS(1213), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1211), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1211), + [aux_sym_gateway_ports_token1] = ACTIONS(1211), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1211), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1211), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1211), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1211), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1211), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1211), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1211), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1211), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1211), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1211), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1211), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1211), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1211), + [aux_sym_host_key_alias_token1] = ACTIONS(1211), + [aux_sym_hostname_token1] = ACTIONS(1211), + [aux_sym_identities_only_token1] = ACTIONS(1211), + [aux_sym_identity_agent_token1] = ACTIONS(1211), + [aux_sym_identity_file_token1] = ACTIONS(1211), + [aux_sym_ignore_unknown_token1] = ACTIONS(1211), + [aux_sym_include_token1] = ACTIONS(1211), + [aux_sym_ip_qos_token1] = ACTIONS(1211), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1211), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1211), + [aux_sym_kex_algorithms_token1] = ACTIONS(1211), + [aux_sym_known_hosts_command_token1] = ACTIONS(1211), + [aux_sym_local_command_token1] = ACTIONS(1211), + [aux_sym_local_forward_token1] = ACTIONS(1211), + [aux_sym_log_level_token1] = ACTIONS(1211), + [aux_sym_log_verbose_token1] = ACTIONS(1211), + [aux_sym_macs_token1] = ACTIONS(1211), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1211), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1211), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1211), + [aux_sym_password_authentication_token1] = ACTIONS(1211), + [aux_sym_permit_local_command_token1] = ACTIONS(1211), + [aux_sym_permit_remote_open_token1] = ACTIONS(1211), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1211), + [aux_sym_port_token1] = ACTIONS(1211), + [aux_sym_preferred_authentications_token1] = ACTIONS(1211), + [aux_sym_protocol_token1] = ACTIONS(1211), + [aux_sym_proxy_command_token1] = ACTIONS(1211), + [aux_sym_proxy_jump_token1] = ACTIONS(1211), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1211), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1211), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1211), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1211), + [aux_sym_rekey_limit_token1] = ACTIONS(1211), + [aux_sym_remote_command_token1] = ACTIONS(1211), + [aux_sym_remote_forward_token1] = ACTIONS(1211), + [aux_sym_request_tty_token1] = ACTIONS(1211), + [aux_sym_required_rsa_size_token1] = ACTIONS(1211), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1211), + [aux_sym_security_key_provider_token1] = ACTIONS(1211), + [aux_sym_send_env_token1] = ACTIONS(1211), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1211), + [aux_sym_server_alive_interval_token1] = ACTIONS(1211), + [aux_sym_session_type_token1] = ACTIONS(1211), + [aux_sym_set_env_token1] = ACTIONS(1211), + [aux_sym_stdin_null_token1] = ACTIONS(1211), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1211), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1211), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1211), + [aux_sym_syslog_facility_token1] = ACTIONS(1211), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1211), + [aux_sym_keep_alive_token1] = ACTIONS(1211), + [aux_sym_tag_token1] = ACTIONS(1211), + [aux_sym_tunnel_token1] = ACTIONS(1213), + [aux_sym_tunnel_device_token1] = ACTIONS(1211), + [aux_sym_update_host_keys_token1] = ACTIONS(1211), + [aux_sym_use_keychain_token1] = ACTIONS(1211), + [aux_sym_use_roaming_token1] = ACTIONS(1211), + [aux_sym_user_token1] = ACTIONS(1213), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1211), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1211), + [aux_sym_visual_host_key_token1] = ACTIONS(1211), + [aux_sym_xauth_location_token1] = ACTIONS(1211), }, [523] = { - [ts_builtin_sym_end] = ACTIONS(3228), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3230), - [aux_sym_match_token1] = ACTIONS(3228), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3228), - [aux_sym_address_family_token1] = ACTIONS(3228), - [aux_sym_batch_mode_token1] = ACTIONS(3228), - [aux_sym_bind_address_token1] = ACTIONS(3228), - [aux_sym_bind_interface_token1] = ACTIONS(3228), - [aux_sym_canonical_domains_token1] = ACTIONS(3228), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3228), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3228), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3228), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3228), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3228), - [aux_sym_certificate_file_token1] = ACTIONS(3228), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3228), - [aux_sym_channel_timeout_token1] = ACTIONS(3228), - [aux_sym_check_host_ip_token1] = ACTIONS(3228), - [aux_sym_ciphers_token1] = ACTIONS(3228), - [aux_sym_cipher_token1] = ACTIONS(3230), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3228), - [aux_sym_compression_token1] = ACTIONS(3228), - [aux_sym_connection_attempts_token1] = ACTIONS(3228), - [aux_sym_connect_timeout_token1] = ACTIONS(3228), - [aux_sym_control_master_token1] = ACTIONS(3228), - [aux_sym_control_path_token1] = ACTIONS(3228), - [aux_sym_control_persist_token1] = ACTIONS(3228), - [aux_sym_dynamic_forward_token1] = ACTIONS(3228), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3228), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3228), - [aux_sym_escape_char_token1] = ACTIONS(3228), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3228), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3228), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3228), - [aux_sym_forward_agent_token1] = ACTIONS(3228), - [aux_sym_forward_x11_token1] = ACTIONS(3230), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3228), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3228), - [aux_sym_gateway_ports_token1] = ACTIONS(3228), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3228), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3228), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3228), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3228), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3228), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3228), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3228), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3228), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3228), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3228), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3228), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3228), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3228), - [aux_sym_host_key_alias_token1] = ACTIONS(3228), - [aux_sym_hostname_token1] = ACTIONS(3228), - [aux_sym_identities_only_token1] = ACTIONS(3228), - [aux_sym_identity_agent_token1] = ACTIONS(3228), - [aux_sym_identity_file_token1] = ACTIONS(3228), - [aux_sym_ignore_unknown_token1] = ACTIONS(3228), - [aux_sym_include_token1] = ACTIONS(3228), - [aux_sym_ip_qos_token1] = ACTIONS(3228), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3228), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3228), - [aux_sym_kex_algorithms_token1] = ACTIONS(3228), - [aux_sym_known_hosts_command_token1] = ACTIONS(3228), - [aux_sym_local_command_token1] = ACTIONS(3228), - [aux_sym_local_forward_token1] = ACTIONS(3228), - [aux_sym_log_level_token1] = ACTIONS(3228), - [aux_sym_log_verbose_token1] = ACTIONS(3228), - [aux_sym_macs_token1] = ACTIONS(3228), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3228), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3228), - [aux_sym_password_authentication_token1] = ACTIONS(3228), - [aux_sym_permit_local_command_token1] = ACTIONS(3228), - [aux_sym_permit_remote_open_token1] = ACTIONS(3228), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3228), - [aux_sym_port_token1] = ACTIONS(3228), - [aux_sym_preferred_authentications_token1] = ACTIONS(3228), - [aux_sym_protocol_token1] = ACTIONS(3228), - [aux_sym_proxy_command_token1] = ACTIONS(3228), - [aux_sym_proxy_jump_token1] = ACTIONS(3228), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3228), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3228), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3228), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3228), - [aux_sym_rekey_limit_token1] = ACTIONS(3228), - [aux_sym_remote_command_token1] = ACTIONS(3228), - [aux_sym_remote_forward_token1] = ACTIONS(3228), - [aux_sym_request_tty_token1] = ACTIONS(3228), - [aux_sym_required_rsa_size_token1] = ACTIONS(3228), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3228), - [aux_sym_security_key_provider_token1] = ACTIONS(3228), - [aux_sym_send_env_token1] = ACTIONS(3228), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3228), - [aux_sym_server_alive_interval_token1] = ACTIONS(3228), - [aux_sym_session_type_token1] = ACTIONS(3228), - [aux_sym_set_env_token1] = ACTIONS(3228), - [aux_sym_stdin_null_token1] = ACTIONS(3228), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3228), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3228), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3228), - [aux_sym_syslog_facility_token1] = ACTIONS(3228), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3228), - [aux_sym_keep_alive_token1] = ACTIONS(3228), - [aux_sym_tag_token1] = ACTIONS(3228), - [aux_sym_tunnel_token1] = ACTIONS(3230), - [aux_sym_tunnel_device_token1] = ACTIONS(3228), - [aux_sym_update_host_keys_token1] = ACTIONS(3228), - [aux_sym_use_keychain_token1] = ACTIONS(3228), - [aux_sym_use_roaming_token1] = ACTIONS(3228), - [aux_sym_user_token1] = ACTIONS(3230), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3228), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3228), - [aux_sym_visual_host_key_token1] = ACTIONS(3228), - [aux_sym_xauth_location_token1] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(1151), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1153), + [aux_sym_match_token1] = ACTIONS(1151), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1151), + [aux_sym_address_family_token1] = ACTIONS(1151), + [aux_sym_batch_mode_token1] = ACTIONS(1151), + [aux_sym_bind_address_token1] = ACTIONS(1151), + [aux_sym_bind_interface_token1] = ACTIONS(1151), + [aux_sym_canonical_domains_token1] = ACTIONS(1151), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1151), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1151), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1151), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1151), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1151), + [aux_sym_certificate_file_token1] = ACTIONS(1151), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1151), + [aux_sym_channel_timeout_token1] = ACTIONS(1151), + [aux_sym_check_host_ip_token1] = ACTIONS(1151), + [aux_sym_ciphers_token1] = ACTIONS(1151), + [aux_sym_cipher_token1] = ACTIONS(1153), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1151), + [aux_sym_compression_token1] = ACTIONS(1151), + [aux_sym_connection_attempts_token1] = ACTIONS(1151), + [aux_sym_connect_timeout_token1] = ACTIONS(1151), + [aux_sym_control_master_token1] = ACTIONS(1151), + [aux_sym_control_path_token1] = ACTIONS(1151), + [aux_sym_control_persist_token1] = ACTIONS(1151), + [aux_sym_dynamic_forward_token1] = ACTIONS(1151), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1151), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1151), + [aux_sym_escape_char_token1] = ACTIONS(1151), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1151), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1151), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1151), + [aux_sym_forward_agent_token1] = ACTIONS(1151), + [aux_sym_forward_x11_token1] = ACTIONS(1153), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1151), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1151), + [aux_sym_gateway_ports_token1] = ACTIONS(1151), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1151), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1151), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1151), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1151), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1151), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1151), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1151), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1151), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1151), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1151), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1151), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1151), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1151), + [aux_sym_host_key_alias_token1] = ACTIONS(1151), + [aux_sym_hostname_token1] = ACTIONS(1151), + [aux_sym_identities_only_token1] = ACTIONS(1151), + [aux_sym_identity_agent_token1] = ACTIONS(1151), + [aux_sym_identity_file_token1] = ACTIONS(1151), + [aux_sym_ignore_unknown_token1] = ACTIONS(1151), + [aux_sym_include_token1] = ACTIONS(1151), + [aux_sym_ip_qos_token1] = ACTIONS(1151), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1151), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1151), + [aux_sym_kex_algorithms_token1] = ACTIONS(1151), + [aux_sym_known_hosts_command_token1] = ACTIONS(1151), + [aux_sym_local_command_token1] = ACTIONS(1151), + [aux_sym_local_forward_token1] = ACTIONS(1151), + [aux_sym_log_level_token1] = ACTIONS(1151), + [aux_sym_log_verbose_token1] = ACTIONS(1151), + [aux_sym_macs_token1] = ACTIONS(1151), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1151), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1151), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1151), + [aux_sym_password_authentication_token1] = ACTIONS(1151), + [aux_sym_permit_local_command_token1] = ACTIONS(1151), + [aux_sym_permit_remote_open_token1] = ACTIONS(1151), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1151), + [aux_sym_port_token1] = ACTIONS(1151), + [aux_sym_preferred_authentications_token1] = ACTIONS(1151), + [aux_sym_protocol_token1] = ACTIONS(1151), + [aux_sym_proxy_command_token1] = ACTIONS(1151), + [aux_sym_proxy_jump_token1] = ACTIONS(1151), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1151), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1151), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1151), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1151), + [aux_sym_rekey_limit_token1] = ACTIONS(1151), + [aux_sym_remote_command_token1] = ACTIONS(1151), + [aux_sym_remote_forward_token1] = ACTIONS(1151), + [aux_sym_request_tty_token1] = ACTIONS(1151), + [aux_sym_required_rsa_size_token1] = ACTIONS(1151), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1151), + [aux_sym_security_key_provider_token1] = ACTIONS(1151), + [aux_sym_send_env_token1] = ACTIONS(1151), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1151), + [aux_sym_server_alive_interval_token1] = ACTIONS(1151), + [aux_sym_session_type_token1] = ACTIONS(1151), + [aux_sym_set_env_token1] = ACTIONS(1151), + [aux_sym_stdin_null_token1] = ACTIONS(1151), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1151), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1151), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1151), + [aux_sym_syslog_facility_token1] = ACTIONS(1151), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1151), + [aux_sym_keep_alive_token1] = ACTIONS(1151), + [aux_sym_tag_token1] = ACTIONS(1151), + [aux_sym_tunnel_token1] = ACTIONS(1153), + [aux_sym_tunnel_device_token1] = ACTIONS(1151), + [aux_sym_update_host_keys_token1] = ACTIONS(1151), + [aux_sym_use_keychain_token1] = ACTIONS(1151), + [aux_sym_use_roaming_token1] = ACTIONS(1151), + [aux_sym_user_token1] = ACTIONS(1153), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1151), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1151), + [aux_sym_visual_host_key_token1] = ACTIONS(1151), + [aux_sym_xauth_location_token1] = ACTIONS(1151), }, [524] = { - [ts_builtin_sym_end] = ACTIONS(3232), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3234), - [aux_sym_match_token1] = ACTIONS(3232), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3232), - [aux_sym_address_family_token1] = ACTIONS(3232), - [aux_sym_batch_mode_token1] = ACTIONS(3232), - [aux_sym_bind_address_token1] = ACTIONS(3232), - [aux_sym_bind_interface_token1] = ACTIONS(3232), - [aux_sym_canonical_domains_token1] = ACTIONS(3232), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3232), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3232), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3232), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3232), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3232), - [aux_sym_certificate_file_token1] = ACTIONS(3232), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3232), - [aux_sym_channel_timeout_token1] = ACTIONS(3232), - [aux_sym_check_host_ip_token1] = ACTIONS(3232), - [aux_sym_ciphers_token1] = ACTIONS(3232), - [aux_sym_cipher_token1] = ACTIONS(3234), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3232), - [aux_sym_compression_token1] = ACTIONS(3232), - [aux_sym_connection_attempts_token1] = ACTIONS(3232), - [aux_sym_connect_timeout_token1] = ACTIONS(3232), - [aux_sym_control_master_token1] = ACTIONS(3232), - [aux_sym_control_path_token1] = ACTIONS(3232), - [aux_sym_control_persist_token1] = ACTIONS(3232), - [aux_sym_dynamic_forward_token1] = ACTIONS(3232), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3232), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3232), - [aux_sym_escape_char_token1] = ACTIONS(3232), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3232), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3232), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3232), - [aux_sym_forward_agent_token1] = ACTIONS(3232), - [aux_sym_forward_x11_token1] = ACTIONS(3234), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3232), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3232), - [aux_sym_gateway_ports_token1] = ACTIONS(3232), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3232), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3232), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3232), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3232), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3232), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3232), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3232), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3232), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3232), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3232), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3232), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3232), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3232), - [aux_sym_host_key_alias_token1] = ACTIONS(3232), - [aux_sym_hostname_token1] = ACTIONS(3232), - [aux_sym_identities_only_token1] = ACTIONS(3232), - [aux_sym_identity_agent_token1] = ACTIONS(3232), - [aux_sym_identity_file_token1] = ACTIONS(3232), - [aux_sym_ignore_unknown_token1] = ACTIONS(3232), - [aux_sym_include_token1] = ACTIONS(3232), - [aux_sym_ip_qos_token1] = ACTIONS(3232), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3232), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3232), - [aux_sym_kex_algorithms_token1] = ACTIONS(3232), - [aux_sym_known_hosts_command_token1] = ACTIONS(3232), - [aux_sym_local_command_token1] = ACTIONS(3232), - [aux_sym_local_forward_token1] = ACTIONS(3232), - [aux_sym_log_level_token1] = ACTIONS(3232), - [aux_sym_log_verbose_token1] = ACTIONS(3232), - [aux_sym_macs_token1] = ACTIONS(3232), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3232), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3232), - [aux_sym_password_authentication_token1] = ACTIONS(3232), - [aux_sym_permit_local_command_token1] = ACTIONS(3232), - [aux_sym_permit_remote_open_token1] = ACTIONS(3232), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3232), - [aux_sym_port_token1] = ACTIONS(3232), - [aux_sym_preferred_authentications_token1] = ACTIONS(3232), - [aux_sym_protocol_token1] = ACTIONS(3232), - [aux_sym_proxy_command_token1] = ACTIONS(3232), - [aux_sym_proxy_jump_token1] = ACTIONS(3232), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3232), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3232), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3232), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3232), - [aux_sym_rekey_limit_token1] = ACTIONS(3232), - [aux_sym_remote_command_token1] = ACTIONS(3232), - [aux_sym_remote_forward_token1] = ACTIONS(3232), - [aux_sym_request_tty_token1] = ACTIONS(3232), - [aux_sym_required_rsa_size_token1] = ACTIONS(3232), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3232), - [aux_sym_security_key_provider_token1] = ACTIONS(3232), - [aux_sym_send_env_token1] = ACTIONS(3232), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3232), - [aux_sym_server_alive_interval_token1] = ACTIONS(3232), - [aux_sym_session_type_token1] = ACTIONS(3232), - [aux_sym_set_env_token1] = ACTIONS(3232), - [aux_sym_stdin_null_token1] = ACTIONS(3232), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3232), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3232), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3232), - [aux_sym_syslog_facility_token1] = ACTIONS(3232), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3232), - [aux_sym_keep_alive_token1] = ACTIONS(3232), - [aux_sym_tag_token1] = ACTIONS(3232), - [aux_sym_tunnel_token1] = ACTIONS(3234), - [aux_sym_tunnel_device_token1] = ACTIONS(3232), - [aux_sym_update_host_keys_token1] = ACTIONS(3232), - [aux_sym_use_keychain_token1] = ACTIONS(3232), - [aux_sym_use_roaming_token1] = ACTIONS(3232), - [aux_sym_user_token1] = ACTIONS(3234), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3232), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3232), - [aux_sym_visual_host_key_token1] = ACTIONS(3232), - [aux_sym_xauth_location_token1] = ACTIONS(3232), + [ts_builtin_sym_end] = ACTIONS(1217), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1219), + [aux_sym_match_token1] = ACTIONS(1217), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1217), + [aux_sym_address_family_token1] = ACTIONS(1217), + [aux_sym_batch_mode_token1] = ACTIONS(1217), + [aux_sym_bind_address_token1] = ACTIONS(1217), + [aux_sym_bind_interface_token1] = ACTIONS(1217), + [aux_sym_canonical_domains_token1] = ACTIONS(1217), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1217), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1217), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1217), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1217), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1217), + [aux_sym_certificate_file_token1] = ACTIONS(1217), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1217), + [aux_sym_channel_timeout_token1] = ACTIONS(1217), + [aux_sym_check_host_ip_token1] = ACTIONS(1217), + [aux_sym_ciphers_token1] = ACTIONS(1217), + [aux_sym_cipher_token1] = ACTIONS(1219), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1217), + [aux_sym_compression_token1] = ACTIONS(1217), + [aux_sym_connection_attempts_token1] = ACTIONS(1217), + [aux_sym_connect_timeout_token1] = ACTIONS(1217), + [aux_sym_control_master_token1] = ACTIONS(1217), + [aux_sym_control_path_token1] = ACTIONS(1217), + [aux_sym_control_persist_token1] = ACTIONS(1217), + [aux_sym_dynamic_forward_token1] = ACTIONS(1217), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1217), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1217), + [aux_sym_escape_char_token1] = ACTIONS(1217), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1217), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1217), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1217), + [aux_sym_forward_agent_token1] = ACTIONS(1217), + [aux_sym_forward_x11_token1] = ACTIONS(1219), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1217), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1217), + [aux_sym_gateway_ports_token1] = ACTIONS(1217), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1217), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1217), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1217), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1217), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1217), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1217), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1217), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1217), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1217), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1217), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1217), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1217), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1217), + [aux_sym_host_key_alias_token1] = ACTIONS(1217), + [aux_sym_hostname_token1] = ACTIONS(1217), + [aux_sym_identities_only_token1] = ACTIONS(1217), + [aux_sym_identity_agent_token1] = ACTIONS(1217), + [aux_sym_identity_file_token1] = ACTIONS(1217), + [aux_sym_ignore_unknown_token1] = ACTIONS(1217), + [aux_sym_include_token1] = ACTIONS(1217), + [aux_sym_ip_qos_token1] = ACTIONS(1217), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1217), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1217), + [aux_sym_kex_algorithms_token1] = ACTIONS(1217), + [aux_sym_known_hosts_command_token1] = ACTIONS(1217), + [aux_sym_local_command_token1] = ACTIONS(1217), + [aux_sym_local_forward_token1] = ACTIONS(1217), + [aux_sym_log_level_token1] = ACTIONS(1217), + [aux_sym_log_verbose_token1] = ACTIONS(1217), + [aux_sym_macs_token1] = ACTIONS(1217), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1217), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1217), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1217), + [aux_sym_password_authentication_token1] = ACTIONS(1217), + [aux_sym_permit_local_command_token1] = ACTIONS(1217), + [aux_sym_permit_remote_open_token1] = ACTIONS(1217), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1217), + [aux_sym_port_token1] = ACTIONS(1217), + [aux_sym_preferred_authentications_token1] = ACTIONS(1217), + [aux_sym_protocol_token1] = ACTIONS(1217), + [aux_sym_proxy_command_token1] = ACTIONS(1217), + [aux_sym_proxy_jump_token1] = ACTIONS(1217), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1217), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1217), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1217), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1217), + [aux_sym_rekey_limit_token1] = ACTIONS(1217), + [aux_sym_remote_command_token1] = ACTIONS(1217), + [aux_sym_remote_forward_token1] = ACTIONS(1217), + [aux_sym_request_tty_token1] = ACTIONS(1217), + [aux_sym_required_rsa_size_token1] = ACTIONS(1217), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1217), + [aux_sym_security_key_provider_token1] = ACTIONS(1217), + [aux_sym_send_env_token1] = ACTIONS(1217), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1217), + [aux_sym_server_alive_interval_token1] = ACTIONS(1217), + [aux_sym_session_type_token1] = ACTIONS(1217), + [aux_sym_set_env_token1] = ACTIONS(1217), + [aux_sym_stdin_null_token1] = ACTIONS(1217), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1217), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1217), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1217), + [aux_sym_syslog_facility_token1] = ACTIONS(1217), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1217), + [aux_sym_keep_alive_token1] = ACTIONS(1217), + [aux_sym_tag_token1] = ACTIONS(1217), + [aux_sym_tunnel_token1] = ACTIONS(1219), + [aux_sym_tunnel_device_token1] = ACTIONS(1217), + [aux_sym_update_host_keys_token1] = ACTIONS(1217), + [aux_sym_use_keychain_token1] = ACTIONS(1217), + [aux_sym_use_roaming_token1] = ACTIONS(1217), + [aux_sym_user_token1] = ACTIONS(1219), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1217), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1217), + [aux_sym_visual_host_key_token1] = ACTIONS(1217), + [aux_sym_xauth_location_token1] = ACTIONS(1217), }, [525] = { - [ts_builtin_sym_end] = ACTIONS(3236), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3238), - [aux_sym_match_token1] = ACTIONS(3236), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3236), - [aux_sym_address_family_token1] = ACTIONS(3236), - [aux_sym_batch_mode_token1] = ACTIONS(3236), - [aux_sym_bind_address_token1] = ACTIONS(3236), - [aux_sym_bind_interface_token1] = ACTIONS(3236), - [aux_sym_canonical_domains_token1] = ACTIONS(3236), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3236), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3236), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3236), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3236), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3236), - [aux_sym_certificate_file_token1] = ACTIONS(3236), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3236), - [aux_sym_channel_timeout_token1] = ACTIONS(3236), - [aux_sym_check_host_ip_token1] = ACTIONS(3236), - [aux_sym_ciphers_token1] = ACTIONS(3236), - [aux_sym_cipher_token1] = ACTIONS(3238), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3236), - [aux_sym_compression_token1] = ACTIONS(3236), - [aux_sym_connection_attempts_token1] = ACTIONS(3236), - [aux_sym_connect_timeout_token1] = ACTIONS(3236), - [aux_sym_control_master_token1] = ACTIONS(3236), - [aux_sym_control_path_token1] = ACTIONS(3236), - [aux_sym_control_persist_token1] = ACTIONS(3236), - [aux_sym_dynamic_forward_token1] = ACTIONS(3236), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3236), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3236), - [aux_sym_escape_char_token1] = ACTIONS(3236), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3236), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3236), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3236), - [aux_sym_forward_agent_token1] = ACTIONS(3236), - [aux_sym_forward_x11_token1] = ACTIONS(3238), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3236), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3236), - [aux_sym_gateway_ports_token1] = ACTIONS(3236), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3236), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3236), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3236), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3236), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3236), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3236), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3236), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3236), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3236), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3236), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3236), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3236), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3236), - [aux_sym_host_key_alias_token1] = ACTIONS(3236), - [aux_sym_hostname_token1] = ACTIONS(3236), - [aux_sym_identities_only_token1] = ACTIONS(3236), - [aux_sym_identity_agent_token1] = ACTIONS(3236), - [aux_sym_identity_file_token1] = ACTIONS(3236), - [aux_sym_ignore_unknown_token1] = ACTIONS(3236), - [aux_sym_include_token1] = ACTIONS(3236), - [aux_sym_ip_qos_token1] = ACTIONS(3236), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3236), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3236), - [aux_sym_kex_algorithms_token1] = ACTIONS(3236), - [aux_sym_known_hosts_command_token1] = ACTIONS(3236), - [aux_sym_local_command_token1] = ACTIONS(3236), - [aux_sym_local_forward_token1] = ACTIONS(3236), - [aux_sym_log_level_token1] = ACTIONS(3236), - [aux_sym_log_verbose_token1] = ACTIONS(3236), - [aux_sym_macs_token1] = ACTIONS(3236), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3236), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3236), - [aux_sym_password_authentication_token1] = ACTIONS(3236), - [aux_sym_permit_local_command_token1] = ACTIONS(3236), - [aux_sym_permit_remote_open_token1] = ACTIONS(3236), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3236), - [aux_sym_port_token1] = ACTIONS(3236), - [aux_sym_preferred_authentications_token1] = ACTIONS(3236), - [aux_sym_protocol_token1] = ACTIONS(3236), - [aux_sym_proxy_command_token1] = ACTIONS(3236), - [aux_sym_proxy_jump_token1] = ACTIONS(3236), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3236), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3236), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3236), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3236), - [aux_sym_rekey_limit_token1] = ACTIONS(3236), - [aux_sym_remote_command_token1] = ACTIONS(3236), - [aux_sym_remote_forward_token1] = ACTIONS(3236), - [aux_sym_request_tty_token1] = ACTIONS(3236), - [aux_sym_required_rsa_size_token1] = ACTIONS(3236), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3236), - [aux_sym_security_key_provider_token1] = ACTIONS(3236), - [aux_sym_send_env_token1] = ACTIONS(3236), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3236), - [aux_sym_server_alive_interval_token1] = ACTIONS(3236), - [aux_sym_session_type_token1] = ACTIONS(3236), - [aux_sym_set_env_token1] = ACTIONS(3236), - [aux_sym_stdin_null_token1] = ACTIONS(3236), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3236), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3236), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3236), - [aux_sym_syslog_facility_token1] = ACTIONS(3236), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3236), - [aux_sym_keep_alive_token1] = ACTIONS(3236), - [aux_sym_tag_token1] = ACTIONS(3236), - [aux_sym_tunnel_token1] = ACTIONS(3238), - [aux_sym_tunnel_device_token1] = ACTIONS(3236), - [aux_sym_update_host_keys_token1] = ACTIONS(3236), - [aux_sym_use_keychain_token1] = ACTIONS(3236), - [aux_sym_use_roaming_token1] = ACTIONS(3236), - [aux_sym_user_token1] = ACTIONS(3238), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3236), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3236), - [aux_sym_visual_host_key_token1] = ACTIONS(3236), - [aux_sym_xauth_location_token1] = ACTIONS(3236), + [ts_builtin_sym_end] = ACTIONS(1115), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1117), + [aux_sym_match_token1] = ACTIONS(1115), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1115), + [aux_sym_address_family_token1] = ACTIONS(1115), + [aux_sym_batch_mode_token1] = ACTIONS(1115), + [aux_sym_bind_address_token1] = ACTIONS(1115), + [aux_sym_bind_interface_token1] = ACTIONS(1115), + [aux_sym_canonical_domains_token1] = ACTIONS(1115), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1115), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1115), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1115), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1115), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1115), + [aux_sym_certificate_file_token1] = ACTIONS(1115), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1115), + [aux_sym_channel_timeout_token1] = ACTIONS(1115), + [aux_sym_check_host_ip_token1] = ACTIONS(1115), + [aux_sym_ciphers_token1] = ACTIONS(1115), + [aux_sym_cipher_token1] = ACTIONS(1117), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1115), + [aux_sym_compression_token1] = ACTIONS(1115), + [aux_sym_connection_attempts_token1] = ACTIONS(1115), + [aux_sym_connect_timeout_token1] = ACTIONS(1115), + [aux_sym_control_master_token1] = ACTIONS(1115), + [aux_sym_control_path_token1] = ACTIONS(1115), + [aux_sym_control_persist_token1] = ACTIONS(1115), + [aux_sym_dynamic_forward_token1] = ACTIONS(1115), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1115), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1115), + [aux_sym_escape_char_token1] = ACTIONS(1115), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1115), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1115), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1115), + [aux_sym_forward_agent_token1] = ACTIONS(1115), + [aux_sym_forward_x11_token1] = ACTIONS(1117), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1115), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1115), + [aux_sym_gateway_ports_token1] = ACTIONS(1115), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1115), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1115), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1115), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1115), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1115), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1115), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1115), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1115), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1115), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1115), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1115), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1115), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1115), + [aux_sym_host_key_alias_token1] = ACTIONS(1115), + [aux_sym_hostname_token1] = ACTIONS(1115), + [aux_sym_identities_only_token1] = ACTIONS(1115), + [aux_sym_identity_agent_token1] = ACTIONS(1115), + [aux_sym_identity_file_token1] = ACTIONS(1115), + [aux_sym_ignore_unknown_token1] = ACTIONS(1115), + [aux_sym_include_token1] = ACTIONS(1115), + [aux_sym_ip_qos_token1] = ACTIONS(1115), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1115), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1115), + [aux_sym_kex_algorithms_token1] = ACTIONS(1115), + [aux_sym_known_hosts_command_token1] = ACTIONS(1115), + [aux_sym_local_command_token1] = ACTIONS(1115), + [aux_sym_local_forward_token1] = ACTIONS(1115), + [aux_sym_log_level_token1] = ACTIONS(1115), + [aux_sym_log_verbose_token1] = ACTIONS(1115), + [aux_sym_macs_token1] = ACTIONS(1115), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1115), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1115), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1115), + [aux_sym_password_authentication_token1] = ACTIONS(1115), + [aux_sym_permit_local_command_token1] = ACTIONS(1115), + [aux_sym_permit_remote_open_token1] = ACTIONS(1115), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1115), + [aux_sym_port_token1] = ACTIONS(1115), + [aux_sym_preferred_authentications_token1] = ACTIONS(1115), + [aux_sym_protocol_token1] = ACTIONS(1115), + [aux_sym_proxy_command_token1] = ACTIONS(1115), + [aux_sym_proxy_jump_token1] = ACTIONS(1115), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1115), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1115), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1115), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1115), + [aux_sym_rekey_limit_token1] = ACTIONS(1115), + [aux_sym_remote_command_token1] = ACTIONS(1115), + [aux_sym_remote_forward_token1] = ACTIONS(1115), + [aux_sym_request_tty_token1] = ACTIONS(1115), + [aux_sym_required_rsa_size_token1] = ACTIONS(1115), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1115), + [aux_sym_security_key_provider_token1] = ACTIONS(1115), + [aux_sym_send_env_token1] = ACTIONS(1115), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1115), + [aux_sym_server_alive_interval_token1] = ACTIONS(1115), + [aux_sym_session_type_token1] = ACTIONS(1115), + [aux_sym_set_env_token1] = ACTIONS(1115), + [aux_sym_stdin_null_token1] = ACTIONS(1115), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1115), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1115), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1115), + [aux_sym_syslog_facility_token1] = ACTIONS(1115), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1115), + [aux_sym_keep_alive_token1] = ACTIONS(1115), + [aux_sym_tag_token1] = ACTIONS(1115), + [aux_sym_tunnel_token1] = ACTIONS(1117), + [aux_sym_tunnel_device_token1] = ACTIONS(1115), + [aux_sym_update_host_keys_token1] = ACTIONS(1115), + [aux_sym_use_keychain_token1] = ACTIONS(1115), + [aux_sym_use_roaming_token1] = ACTIONS(1115), + [aux_sym_user_token1] = ACTIONS(1117), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1115), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1115), + [aux_sym_visual_host_key_token1] = ACTIONS(1115), + [aux_sym_xauth_location_token1] = ACTIONS(1115), }, [526] = { - [ts_builtin_sym_end] = ACTIONS(3240), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3242), - [aux_sym_match_token1] = ACTIONS(3240), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3240), - [aux_sym_address_family_token1] = ACTIONS(3240), - [aux_sym_batch_mode_token1] = ACTIONS(3240), - [aux_sym_bind_address_token1] = ACTIONS(3240), - [aux_sym_bind_interface_token1] = ACTIONS(3240), - [aux_sym_canonical_domains_token1] = ACTIONS(3240), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3240), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3240), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3240), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3240), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3240), - [aux_sym_certificate_file_token1] = ACTIONS(3240), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3240), - [aux_sym_channel_timeout_token1] = ACTIONS(3240), - [aux_sym_check_host_ip_token1] = ACTIONS(3240), - [aux_sym_ciphers_token1] = ACTIONS(3240), - [aux_sym_cipher_token1] = ACTIONS(3242), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3240), - [aux_sym_compression_token1] = ACTIONS(3240), - [aux_sym_connection_attempts_token1] = ACTIONS(3240), - [aux_sym_connect_timeout_token1] = ACTIONS(3240), - [aux_sym_control_master_token1] = ACTIONS(3240), - [aux_sym_control_path_token1] = ACTIONS(3240), - [aux_sym_control_persist_token1] = ACTIONS(3240), - [aux_sym_dynamic_forward_token1] = ACTIONS(3240), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3240), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3240), - [aux_sym_escape_char_token1] = ACTIONS(3240), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3240), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3240), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3240), - [aux_sym_forward_agent_token1] = ACTIONS(3240), - [aux_sym_forward_x11_token1] = ACTIONS(3242), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3240), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3240), - [aux_sym_gateway_ports_token1] = ACTIONS(3240), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3240), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3240), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3240), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3240), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3240), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3240), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3240), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3240), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3240), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3240), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3240), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3240), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3240), - [aux_sym_host_key_alias_token1] = ACTIONS(3240), - [aux_sym_hostname_token1] = ACTIONS(3240), - [aux_sym_identities_only_token1] = ACTIONS(3240), - [aux_sym_identity_agent_token1] = ACTIONS(3240), - [aux_sym_identity_file_token1] = ACTIONS(3240), - [aux_sym_ignore_unknown_token1] = ACTIONS(3240), - [aux_sym_include_token1] = ACTIONS(3240), - [aux_sym_ip_qos_token1] = ACTIONS(3240), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3240), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3240), - [aux_sym_kex_algorithms_token1] = ACTIONS(3240), - [aux_sym_known_hosts_command_token1] = ACTIONS(3240), - [aux_sym_local_command_token1] = ACTIONS(3240), - [aux_sym_local_forward_token1] = ACTIONS(3240), - [aux_sym_log_level_token1] = ACTIONS(3240), - [aux_sym_log_verbose_token1] = ACTIONS(3240), - [aux_sym_macs_token1] = ACTIONS(3240), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3240), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3240), - [aux_sym_password_authentication_token1] = ACTIONS(3240), - [aux_sym_permit_local_command_token1] = ACTIONS(3240), - [aux_sym_permit_remote_open_token1] = ACTIONS(3240), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3240), - [aux_sym_port_token1] = ACTIONS(3240), - [aux_sym_preferred_authentications_token1] = ACTIONS(3240), - [aux_sym_protocol_token1] = ACTIONS(3240), - [aux_sym_proxy_command_token1] = ACTIONS(3240), - [aux_sym_proxy_jump_token1] = ACTIONS(3240), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3240), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3240), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3240), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3240), - [aux_sym_rekey_limit_token1] = ACTIONS(3240), - [aux_sym_remote_command_token1] = ACTIONS(3240), - [aux_sym_remote_forward_token1] = ACTIONS(3240), - [aux_sym_request_tty_token1] = ACTIONS(3240), - [aux_sym_required_rsa_size_token1] = ACTIONS(3240), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3240), - [aux_sym_security_key_provider_token1] = ACTIONS(3240), - [aux_sym_send_env_token1] = ACTIONS(3240), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3240), - [aux_sym_server_alive_interval_token1] = ACTIONS(3240), - [aux_sym_session_type_token1] = ACTIONS(3240), - [aux_sym_set_env_token1] = ACTIONS(3240), - [aux_sym_stdin_null_token1] = ACTIONS(3240), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3240), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3240), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3240), - [aux_sym_syslog_facility_token1] = ACTIONS(3240), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3240), - [aux_sym_keep_alive_token1] = ACTIONS(3240), - [aux_sym_tag_token1] = ACTIONS(3240), - [aux_sym_tunnel_token1] = ACTIONS(3242), - [aux_sym_tunnel_device_token1] = ACTIONS(3240), - [aux_sym_update_host_keys_token1] = ACTIONS(3240), - [aux_sym_use_keychain_token1] = ACTIONS(3240), - [aux_sym_use_roaming_token1] = ACTIONS(3240), - [aux_sym_user_token1] = ACTIONS(3242), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3240), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3240), - [aux_sym_visual_host_key_token1] = ACTIONS(3240), - [aux_sym_xauth_location_token1] = ACTIONS(3240), + [ts_builtin_sym_end] = ACTIONS(1223), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1225), + [aux_sym_match_token1] = ACTIONS(1223), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1223), + [aux_sym_address_family_token1] = ACTIONS(1223), + [aux_sym_batch_mode_token1] = ACTIONS(1223), + [aux_sym_bind_address_token1] = ACTIONS(1223), + [aux_sym_bind_interface_token1] = ACTIONS(1223), + [aux_sym_canonical_domains_token1] = ACTIONS(1223), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1223), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1223), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1223), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1223), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1223), + [aux_sym_certificate_file_token1] = ACTIONS(1223), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1223), + [aux_sym_channel_timeout_token1] = ACTIONS(1223), + [aux_sym_check_host_ip_token1] = ACTIONS(1223), + [aux_sym_ciphers_token1] = ACTIONS(1223), + [aux_sym_cipher_token1] = ACTIONS(1225), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1223), + [aux_sym_compression_token1] = ACTIONS(1223), + [aux_sym_connection_attempts_token1] = ACTIONS(1223), + [aux_sym_connect_timeout_token1] = ACTIONS(1223), + [aux_sym_control_master_token1] = ACTIONS(1223), + [aux_sym_control_path_token1] = ACTIONS(1223), + [aux_sym_control_persist_token1] = ACTIONS(1223), + [aux_sym_dynamic_forward_token1] = ACTIONS(1223), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1223), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1223), + [aux_sym_escape_char_token1] = ACTIONS(1223), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1223), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1223), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1223), + [aux_sym_forward_agent_token1] = ACTIONS(1223), + [aux_sym_forward_x11_token1] = ACTIONS(1225), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1223), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1223), + [aux_sym_gateway_ports_token1] = ACTIONS(1223), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1223), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1223), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1223), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1223), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1223), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1223), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1223), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1223), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1223), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1223), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1223), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1223), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1223), + [aux_sym_host_key_alias_token1] = ACTIONS(1223), + [aux_sym_hostname_token1] = ACTIONS(1223), + [aux_sym_identities_only_token1] = ACTIONS(1223), + [aux_sym_identity_agent_token1] = ACTIONS(1223), + [aux_sym_identity_file_token1] = ACTIONS(1223), + [aux_sym_ignore_unknown_token1] = ACTIONS(1223), + [aux_sym_include_token1] = ACTIONS(1223), + [aux_sym_ip_qos_token1] = ACTIONS(1223), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1223), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1223), + [aux_sym_kex_algorithms_token1] = ACTIONS(1223), + [aux_sym_known_hosts_command_token1] = ACTIONS(1223), + [aux_sym_local_command_token1] = ACTIONS(1223), + [aux_sym_local_forward_token1] = ACTIONS(1223), + [aux_sym_log_level_token1] = ACTIONS(1223), + [aux_sym_log_verbose_token1] = ACTIONS(1223), + [aux_sym_macs_token1] = ACTIONS(1223), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1223), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1223), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1223), + [aux_sym_password_authentication_token1] = ACTIONS(1223), + [aux_sym_permit_local_command_token1] = ACTIONS(1223), + [aux_sym_permit_remote_open_token1] = ACTIONS(1223), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1223), + [aux_sym_port_token1] = ACTIONS(1223), + [aux_sym_preferred_authentications_token1] = ACTIONS(1223), + [aux_sym_protocol_token1] = ACTIONS(1223), + [aux_sym_proxy_command_token1] = ACTIONS(1223), + [aux_sym_proxy_jump_token1] = ACTIONS(1223), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1223), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1223), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1223), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1223), + [aux_sym_rekey_limit_token1] = ACTIONS(1223), + [aux_sym_remote_command_token1] = ACTIONS(1223), + [aux_sym_remote_forward_token1] = ACTIONS(1223), + [aux_sym_request_tty_token1] = ACTIONS(1223), + [aux_sym_required_rsa_size_token1] = ACTIONS(1223), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1223), + [aux_sym_security_key_provider_token1] = ACTIONS(1223), + [aux_sym_send_env_token1] = ACTIONS(1223), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1223), + [aux_sym_server_alive_interval_token1] = ACTIONS(1223), + [aux_sym_session_type_token1] = ACTIONS(1223), + [aux_sym_set_env_token1] = ACTIONS(1223), + [aux_sym_stdin_null_token1] = ACTIONS(1223), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1223), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1223), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1223), + [aux_sym_syslog_facility_token1] = ACTIONS(1223), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1223), + [aux_sym_keep_alive_token1] = ACTIONS(1223), + [aux_sym_tag_token1] = ACTIONS(1223), + [aux_sym_tunnel_token1] = ACTIONS(1225), + [aux_sym_tunnel_device_token1] = ACTIONS(1223), + [aux_sym_update_host_keys_token1] = ACTIONS(1223), + [aux_sym_use_keychain_token1] = ACTIONS(1223), + [aux_sym_use_roaming_token1] = ACTIONS(1223), + [aux_sym_user_token1] = ACTIONS(1225), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1223), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1223), + [aux_sym_visual_host_key_token1] = ACTIONS(1223), + [aux_sym_xauth_location_token1] = ACTIONS(1223), }, [527] = { - [ts_builtin_sym_end] = ACTIONS(3244), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3246), - [aux_sym_match_token1] = ACTIONS(3244), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3244), - [aux_sym_address_family_token1] = ACTIONS(3244), - [aux_sym_batch_mode_token1] = ACTIONS(3244), - [aux_sym_bind_address_token1] = ACTIONS(3244), - [aux_sym_bind_interface_token1] = ACTIONS(3244), - [aux_sym_canonical_domains_token1] = ACTIONS(3244), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3244), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3244), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3244), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3244), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3244), - [aux_sym_certificate_file_token1] = ACTIONS(3244), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3244), - [aux_sym_channel_timeout_token1] = ACTIONS(3244), - [aux_sym_check_host_ip_token1] = ACTIONS(3244), - [aux_sym_ciphers_token1] = ACTIONS(3244), - [aux_sym_cipher_token1] = ACTIONS(3246), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3244), - [aux_sym_compression_token1] = ACTIONS(3244), - [aux_sym_connection_attempts_token1] = ACTIONS(3244), - [aux_sym_connect_timeout_token1] = ACTIONS(3244), - [aux_sym_control_master_token1] = ACTIONS(3244), - [aux_sym_control_path_token1] = ACTIONS(3244), - [aux_sym_control_persist_token1] = ACTIONS(3244), - [aux_sym_dynamic_forward_token1] = ACTIONS(3244), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3244), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3244), - [aux_sym_escape_char_token1] = ACTIONS(3244), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3244), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3244), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3244), - [aux_sym_forward_agent_token1] = ACTIONS(3244), - [aux_sym_forward_x11_token1] = ACTIONS(3246), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3244), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3244), - [aux_sym_gateway_ports_token1] = ACTIONS(3244), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3244), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3244), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3244), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3244), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3244), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3244), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3244), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3244), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3244), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3244), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3244), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3244), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3244), - [aux_sym_host_key_alias_token1] = ACTIONS(3244), - [aux_sym_hostname_token1] = ACTIONS(3244), - [aux_sym_identities_only_token1] = ACTIONS(3244), - [aux_sym_identity_agent_token1] = ACTIONS(3244), - [aux_sym_identity_file_token1] = ACTIONS(3244), - [aux_sym_ignore_unknown_token1] = ACTIONS(3244), - [aux_sym_include_token1] = ACTIONS(3244), - [aux_sym_ip_qos_token1] = ACTIONS(3244), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3244), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3244), - [aux_sym_kex_algorithms_token1] = ACTIONS(3244), - [aux_sym_known_hosts_command_token1] = ACTIONS(3244), - [aux_sym_local_command_token1] = ACTIONS(3244), - [aux_sym_local_forward_token1] = ACTIONS(3244), - [aux_sym_log_level_token1] = ACTIONS(3244), - [aux_sym_log_verbose_token1] = ACTIONS(3244), - [aux_sym_macs_token1] = ACTIONS(3244), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3244), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3244), - [aux_sym_password_authentication_token1] = ACTIONS(3244), - [aux_sym_permit_local_command_token1] = ACTIONS(3244), - [aux_sym_permit_remote_open_token1] = ACTIONS(3244), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3244), - [aux_sym_port_token1] = ACTIONS(3244), - [aux_sym_preferred_authentications_token1] = ACTIONS(3244), - [aux_sym_protocol_token1] = ACTIONS(3244), - [aux_sym_proxy_command_token1] = ACTIONS(3244), - [aux_sym_proxy_jump_token1] = ACTIONS(3244), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3244), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3244), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3244), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3244), - [aux_sym_rekey_limit_token1] = ACTIONS(3244), - [aux_sym_remote_command_token1] = ACTIONS(3244), - [aux_sym_remote_forward_token1] = ACTIONS(3244), - [aux_sym_request_tty_token1] = ACTIONS(3244), - [aux_sym_required_rsa_size_token1] = ACTIONS(3244), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3244), - [aux_sym_security_key_provider_token1] = ACTIONS(3244), - [aux_sym_send_env_token1] = ACTIONS(3244), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3244), - [aux_sym_server_alive_interval_token1] = ACTIONS(3244), - [aux_sym_session_type_token1] = ACTIONS(3244), - [aux_sym_set_env_token1] = ACTIONS(3244), - [aux_sym_stdin_null_token1] = ACTIONS(3244), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3244), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3244), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3244), - [aux_sym_syslog_facility_token1] = ACTIONS(3244), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3244), - [aux_sym_keep_alive_token1] = ACTIONS(3244), - [aux_sym_tag_token1] = ACTIONS(3244), - [aux_sym_tunnel_token1] = ACTIONS(3246), - [aux_sym_tunnel_device_token1] = ACTIONS(3244), - [aux_sym_update_host_keys_token1] = ACTIONS(3244), - [aux_sym_use_keychain_token1] = ACTIONS(3244), - [aux_sym_use_roaming_token1] = ACTIONS(3244), - [aux_sym_user_token1] = ACTIONS(3246), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3244), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3244), - [aux_sym_visual_host_key_token1] = ACTIONS(3244), - [aux_sym_xauth_location_token1] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(1157), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1159), + [aux_sym_match_token1] = ACTIONS(1157), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1157), + [aux_sym_address_family_token1] = ACTIONS(1157), + [aux_sym_batch_mode_token1] = ACTIONS(1157), + [aux_sym_bind_address_token1] = ACTIONS(1157), + [aux_sym_bind_interface_token1] = ACTIONS(1157), + [aux_sym_canonical_domains_token1] = ACTIONS(1157), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1157), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1157), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1157), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1157), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1157), + [aux_sym_certificate_file_token1] = ACTIONS(1157), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1157), + [aux_sym_channel_timeout_token1] = ACTIONS(1157), + [aux_sym_check_host_ip_token1] = ACTIONS(1157), + [aux_sym_ciphers_token1] = ACTIONS(1157), + [aux_sym_cipher_token1] = ACTIONS(1159), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1157), + [aux_sym_compression_token1] = ACTIONS(1157), + [aux_sym_connection_attempts_token1] = ACTIONS(1157), + [aux_sym_connect_timeout_token1] = ACTIONS(1157), + [aux_sym_control_master_token1] = ACTIONS(1157), + [aux_sym_control_path_token1] = ACTIONS(1157), + [aux_sym_control_persist_token1] = ACTIONS(1157), + [aux_sym_dynamic_forward_token1] = ACTIONS(1157), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1157), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1157), + [aux_sym_escape_char_token1] = ACTIONS(1157), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1157), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1157), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1157), + [aux_sym_forward_agent_token1] = ACTIONS(1157), + [aux_sym_forward_x11_token1] = ACTIONS(1159), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1157), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1157), + [aux_sym_gateway_ports_token1] = ACTIONS(1157), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1157), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1157), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1157), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1157), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1157), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1157), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1157), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1157), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1157), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1157), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1157), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1157), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1157), + [aux_sym_host_key_alias_token1] = ACTIONS(1157), + [aux_sym_hostname_token1] = ACTIONS(1157), + [aux_sym_identities_only_token1] = ACTIONS(1157), + [aux_sym_identity_agent_token1] = ACTIONS(1157), + [aux_sym_identity_file_token1] = ACTIONS(1157), + [aux_sym_ignore_unknown_token1] = ACTIONS(1157), + [aux_sym_include_token1] = ACTIONS(1157), + [aux_sym_ip_qos_token1] = ACTIONS(1157), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1157), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1157), + [aux_sym_kex_algorithms_token1] = ACTIONS(1157), + [aux_sym_known_hosts_command_token1] = ACTIONS(1157), + [aux_sym_local_command_token1] = ACTIONS(1157), + [aux_sym_local_forward_token1] = ACTIONS(1157), + [aux_sym_log_level_token1] = ACTIONS(1157), + [aux_sym_log_verbose_token1] = ACTIONS(1157), + [aux_sym_macs_token1] = ACTIONS(1157), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1157), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1157), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1157), + [aux_sym_password_authentication_token1] = ACTIONS(1157), + [aux_sym_permit_local_command_token1] = ACTIONS(1157), + [aux_sym_permit_remote_open_token1] = ACTIONS(1157), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1157), + [aux_sym_port_token1] = ACTIONS(1157), + [aux_sym_preferred_authentications_token1] = ACTIONS(1157), + [aux_sym_protocol_token1] = ACTIONS(1157), + [aux_sym_proxy_command_token1] = ACTIONS(1157), + [aux_sym_proxy_jump_token1] = ACTIONS(1157), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1157), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1157), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1157), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1157), + [aux_sym_rekey_limit_token1] = ACTIONS(1157), + [aux_sym_remote_command_token1] = ACTIONS(1157), + [aux_sym_remote_forward_token1] = ACTIONS(1157), + [aux_sym_request_tty_token1] = ACTIONS(1157), + [aux_sym_required_rsa_size_token1] = ACTIONS(1157), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1157), + [aux_sym_security_key_provider_token1] = ACTIONS(1157), + [aux_sym_send_env_token1] = ACTIONS(1157), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1157), + [aux_sym_server_alive_interval_token1] = ACTIONS(1157), + [aux_sym_session_type_token1] = ACTIONS(1157), + [aux_sym_set_env_token1] = ACTIONS(1157), + [aux_sym_stdin_null_token1] = ACTIONS(1157), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1157), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1157), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1157), + [aux_sym_syslog_facility_token1] = ACTIONS(1157), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1157), + [aux_sym_keep_alive_token1] = ACTIONS(1157), + [aux_sym_tag_token1] = ACTIONS(1157), + [aux_sym_tunnel_token1] = ACTIONS(1159), + [aux_sym_tunnel_device_token1] = ACTIONS(1157), + [aux_sym_update_host_keys_token1] = ACTIONS(1157), + [aux_sym_use_keychain_token1] = ACTIONS(1157), + [aux_sym_use_roaming_token1] = ACTIONS(1157), + [aux_sym_user_token1] = ACTIONS(1159), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1157), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1157), + [aux_sym_visual_host_key_token1] = ACTIONS(1157), + [aux_sym_xauth_location_token1] = ACTIONS(1157), }, [528] = { - [ts_builtin_sym_end] = ACTIONS(3248), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3250), - [aux_sym_match_token1] = ACTIONS(3248), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3248), - [aux_sym_address_family_token1] = ACTIONS(3248), - [aux_sym_batch_mode_token1] = ACTIONS(3248), - [aux_sym_bind_address_token1] = ACTIONS(3248), - [aux_sym_bind_interface_token1] = ACTIONS(3248), - [aux_sym_canonical_domains_token1] = ACTIONS(3248), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3248), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3248), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3248), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3248), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3248), - [aux_sym_certificate_file_token1] = ACTIONS(3248), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3248), - [aux_sym_channel_timeout_token1] = ACTIONS(3248), - [aux_sym_check_host_ip_token1] = ACTIONS(3248), - [aux_sym_ciphers_token1] = ACTIONS(3248), - [aux_sym_cipher_token1] = ACTIONS(3250), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3248), - [aux_sym_compression_token1] = ACTIONS(3248), - [aux_sym_connection_attempts_token1] = ACTIONS(3248), - [aux_sym_connect_timeout_token1] = ACTIONS(3248), - [aux_sym_control_master_token1] = ACTIONS(3248), - [aux_sym_control_path_token1] = ACTIONS(3248), - [aux_sym_control_persist_token1] = ACTIONS(3248), - [aux_sym_dynamic_forward_token1] = ACTIONS(3248), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3248), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3248), - [aux_sym_escape_char_token1] = ACTIONS(3248), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3248), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3248), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3248), - [aux_sym_forward_agent_token1] = ACTIONS(3248), - [aux_sym_forward_x11_token1] = ACTIONS(3250), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3248), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3248), - [aux_sym_gateway_ports_token1] = ACTIONS(3248), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3248), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3248), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3248), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3248), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3248), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3248), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3248), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3248), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3248), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3248), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3248), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3248), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3248), - [aux_sym_host_key_alias_token1] = ACTIONS(3248), - [aux_sym_hostname_token1] = ACTIONS(3248), - [aux_sym_identities_only_token1] = ACTIONS(3248), - [aux_sym_identity_agent_token1] = ACTIONS(3248), - [aux_sym_identity_file_token1] = ACTIONS(3248), - [aux_sym_ignore_unknown_token1] = ACTIONS(3248), - [aux_sym_include_token1] = ACTIONS(3248), - [aux_sym_ip_qos_token1] = ACTIONS(3248), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3248), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3248), - [aux_sym_kex_algorithms_token1] = ACTIONS(3248), - [aux_sym_known_hosts_command_token1] = ACTIONS(3248), - [aux_sym_local_command_token1] = ACTIONS(3248), - [aux_sym_local_forward_token1] = ACTIONS(3248), - [aux_sym_log_level_token1] = ACTIONS(3248), - [aux_sym_log_verbose_token1] = ACTIONS(3248), - [aux_sym_macs_token1] = ACTIONS(3248), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3248), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3248), - [aux_sym_password_authentication_token1] = ACTIONS(3248), - [aux_sym_permit_local_command_token1] = ACTIONS(3248), - [aux_sym_permit_remote_open_token1] = ACTIONS(3248), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3248), - [aux_sym_port_token1] = ACTIONS(3248), - [aux_sym_preferred_authentications_token1] = ACTIONS(3248), - [aux_sym_protocol_token1] = ACTIONS(3248), - [aux_sym_proxy_command_token1] = ACTIONS(3248), - [aux_sym_proxy_jump_token1] = ACTIONS(3248), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3248), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3248), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3248), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3248), - [aux_sym_rekey_limit_token1] = ACTIONS(3248), - [aux_sym_remote_command_token1] = ACTIONS(3248), - [aux_sym_remote_forward_token1] = ACTIONS(3248), - [aux_sym_request_tty_token1] = ACTIONS(3248), - [aux_sym_required_rsa_size_token1] = ACTIONS(3248), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3248), - [aux_sym_security_key_provider_token1] = ACTIONS(3248), - [aux_sym_send_env_token1] = ACTIONS(3248), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3248), - [aux_sym_server_alive_interval_token1] = ACTIONS(3248), - [aux_sym_session_type_token1] = ACTIONS(3248), - [aux_sym_set_env_token1] = ACTIONS(3248), - [aux_sym_stdin_null_token1] = ACTIONS(3248), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3248), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3248), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3248), - [aux_sym_syslog_facility_token1] = ACTIONS(3248), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3248), - [aux_sym_keep_alive_token1] = ACTIONS(3248), - [aux_sym_tag_token1] = ACTIONS(3248), - [aux_sym_tunnel_token1] = ACTIONS(3250), - [aux_sym_tunnel_device_token1] = ACTIONS(3248), - [aux_sym_update_host_keys_token1] = ACTIONS(3248), - [aux_sym_use_keychain_token1] = ACTIONS(3248), - [aux_sym_use_roaming_token1] = ACTIONS(3248), - [aux_sym_user_token1] = ACTIONS(3250), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3248), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3248), - [aux_sym_visual_host_key_token1] = ACTIONS(3248), - [aux_sym_xauth_location_token1] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1231), + [aux_sym_match_token1] = ACTIONS(1229), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1229), + [aux_sym_address_family_token1] = ACTIONS(1229), + [aux_sym_batch_mode_token1] = ACTIONS(1229), + [aux_sym_bind_address_token1] = ACTIONS(1229), + [aux_sym_bind_interface_token1] = ACTIONS(1229), + [aux_sym_canonical_domains_token1] = ACTIONS(1229), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1229), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1229), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1229), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1229), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1229), + [aux_sym_certificate_file_token1] = ACTIONS(1229), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1229), + [aux_sym_channel_timeout_token1] = ACTIONS(1229), + [aux_sym_check_host_ip_token1] = ACTIONS(1229), + [aux_sym_ciphers_token1] = ACTIONS(1229), + [aux_sym_cipher_token1] = ACTIONS(1231), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1229), + [aux_sym_compression_token1] = ACTIONS(1229), + [aux_sym_connection_attempts_token1] = ACTIONS(1229), + [aux_sym_connect_timeout_token1] = ACTIONS(1229), + [aux_sym_control_master_token1] = ACTIONS(1229), + [aux_sym_control_path_token1] = ACTIONS(1229), + [aux_sym_control_persist_token1] = ACTIONS(1229), + [aux_sym_dynamic_forward_token1] = ACTIONS(1229), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1229), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1229), + [aux_sym_escape_char_token1] = ACTIONS(1229), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1229), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1229), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1229), + [aux_sym_forward_agent_token1] = ACTIONS(1229), + [aux_sym_forward_x11_token1] = ACTIONS(1231), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1229), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1229), + [aux_sym_gateway_ports_token1] = ACTIONS(1229), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1229), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1229), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1229), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1229), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1229), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1229), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1229), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1229), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1229), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1229), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1229), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1229), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1229), + [aux_sym_host_key_alias_token1] = ACTIONS(1229), + [aux_sym_hostname_token1] = ACTIONS(1229), + [aux_sym_identities_only_token1] = ACTIONS(1229), + [aux_sym_identity_agent_token1] = ACTIONS(1229), + [aux_sym_identity_file_token1] = ACTIONS(1229), + [aux_sym_ignore_unknown_token1] = ACTIONS(1229), + [aux_sym_include_token1] = ACTIONS(1229), + [aux_sym_ip_qos_token1] = ACTIONS(1229), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1229), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1229), + [aux_sym_kex_algorithms_token1] = ACTIONS(1229), + [aux_sym_known_hosts_command_token1] = ACTIONS(1229), + [aux_sym_local_command_token1] = ACTIONS(1229), + [aux_sym_local_forward_token1] = ACTIONS(1229), + [aux_sym_log_level_token1] = ACTIONS(1229), + [aux_sym_log_verbose_token1] = ACTIONS(1229), + [aux_sym_macs_token1] = ACTIONS(1229), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1229), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1229), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1229), + [aux_sym_password_authentication_token1] = ACTIONS(1229), + [aux_sym_permit_local_command_token1] = ACTIONS(1229), + [aux_sym_permit_remote_open_token1] = ACTIONS(1229), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1229), + [aux_sym_port_token1] = ACTIONS(1229), + [aux_sym_preferred_authentications_token1] = ACTIONS(1229), + [aux_sym_protocol_token1] = ACTIONS(1229), + [aux_sym_proxy_command_token1] = ACTIONS(1229), + [aux_sym_proxy_jump_token1] = ACTIONS(1229), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1229), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1229), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1229), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1229), + [aux_sym_rekey_limit_token1] = ACTIONS(1229), + [aux_sym_remote_command_token1] = ACTIONS(1229), + [aux_sym_remote_forward_token1] = ACTIONS(1229), + [aux_sym_request_tty_token1] = ACTIONS(1229), + [aux_sym_required_rsa_size_token1] = ACTIONS(1229), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1229), + [aux_sym_security_key_provider_token1] = ACTIONS(1229), + [aux_sym_send_env_token1] = ACTIONS(1229), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1229), + [aux_sym_server_alive_interval_token1] = ACTIONS(1229), + [aux_sym_session_type_token1] = ACTIONS(1229), + [aux_sym_set_env_token1] = ACTIONS(1229), + [aux_sym_stdin_null_token1] = ACTIONS(1229), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1229), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1229), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1229), + [aux_sym_syslog_facility_token1] = ACTIONS(1229), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1229), + [aux_sym_keep_alive_token1] = ACTIONS(1229), + [aux_sym_tag_token1] = ACTIONS(1229), + [aux_sym_tunnel_token1] = ACTIONS(1231), + [aux_sym_tunnel_device_token1] = ACTIONS(1229), + [aux_sym_update_host_keys_token1] = ACTIONS(1229), + [aux_sym_use_keychain_token1] = ACTIONS(1229), + [aux_sym_use_roaming_token1] = ACTIONS(1229), + [aux_sym_user_token1] = ACTIONS(1231), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1229), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1229), + [aux_sym_visual_host_key_token1] = ACTIONS(1229), + [aux_sym_xauth_location_token1] = ACTIONS(1229), }, [529] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1442), - [aux_sym_match_token1] = ACTIONS(1440), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1440), - [aux_sym_address_family_token1] = ACTIONS(1440), - [aux_sym_batch_mode_token1] = ACTIONS(1440), - [aux_sym_bind_address_token1] = ACTIONS(1440), - [aux_sym_bind_interface_token1] = ACTIONS(1440), - [aux_sym_canonical_domains_token1] = ACTIONS(1440), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1440), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1440), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1440), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1440), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1440), - [aux_sym_certificate_file_token1] = ACTIONS(1440), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1440), - [aux_sym_channel_timeout_token1] = ACTIONS(1440), - [aux_sym_check_host_ip_token1] = ACTIONS(1440), - [aux_sym_ciphers_token1] = ACTIONS(1440), - [aux_sym_cipher_token1] = ACTIONS(1442), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1440), - [aux_sym_compression_token1] = ACTIONS(1440), - [aux_sym_connection_attempts_token1] = ACTIONS(1440), - [aux_sym_connect_timeout_token1] = ACTIONS(1440), - [aux_sym_control_master_token1] = ACTIONS(1440), - [aux_sym_control_path_token1] = ACTIONS(1440), - [aux_sym_control_persist_token1] = ACTIONS(1440), - [aux_sym_dynamic_forward_token1] = ACTIONS(1440), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1440), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1440), - [aux_sym_escape_char_token1] = ACTIONS(1440), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1440), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1440), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1440), - [aux_sym_forward_agent_token1] = ACTIONS(1440), - [aux_sym_forward_x11_token1] = ACTIONS(1442), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1440), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1440), - [aux_sym_gateway_ports_token1] = ACTIONS(1440), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1440), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1440), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1440), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1440), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1440), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1440), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1440), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1440), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1440), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1440), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1440), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1440), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1440), - [aux_sym_host_key_alias_token1] = ACTIONS(1440), - [aux_sym_hostname_token1] = ACTIONS(1440), - [aux_sym_identities_only_token1] = ACTIONS(1440), - [aux_sym_identity_agent_token1] = ACTIONS(1440), - [aux_sym_identity_file_token1] = ACTIONS(1440), - [aux_sym_ignore_unknown_token1] = ACTIONS(1440), - [aux_sym_include_token1] = ACTIONS(1440), - [aux_sym_ip_qos_token1] = ACTIONS(1440), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1440), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1440), - [aux_sym_kex_algorithms_token1] = ACTIONS(1440), - [aux_sym_known_hosts_command_token1] = ACTIONS(1440), - [aux_sym_local_command_token1] = ACTIONS(1440), - [aux_sym_local_forward_token1] = ACTIONS(1440), - [aux_sym_log_level_token1] = ACTIONS(1440), - [aux_sym_log_verbose_token1] = ACTIONS(1440), - [aux_sym_macs_token1] = ACTIONS(1440), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1440), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1440), - [aux_sym_password_authentication_token1] = ACTIONS(1440), - [aux_sym_permit_local_command_token1] = ACTIONS(1440), - [aux_sym_permit_remote_open_token1] = ACTIONS(1440), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1440), - [aux_sym_port_token1] = ACTIONS(1440), - [aux_sym_preferred_authentications_token1] = ACTIONS(1440), - [aux_sym_protocol_token1] = ACTIONS(1440), - [aux_sym_proxy_command_token1] = ACTIONS(1440), - [aux_sym_proxy_jump_token1] = ACTIONS(1440), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1440), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1440), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1440), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1440), - [aux_sym_rekey_limit_token1] = ACTIONS(1440), - [aux_sym_remote_command_token1] = ACTIONS(1440), - [aux_sym_remote_forward_token1] = ACTIONS(1440), - [aux_sym_request_tty_token1] = ACTIONS(1440), - [aux_sym_required_rsa_size_token1] = ACTIONS(1440), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1440), - [aux_sym_security_key_provider_token1] = ACTIONS(1440), - [aux_sym_send_env_token1] = ACTIONS(1440), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1440), - [aux_sym_server_alive_interval_token1] = ACTIONS(1440), - [aux_sym_session_type_token1] = ACTIONS(1440), - [aux_sym_set_env_token1] = ACTIONS(1440), - [aux_sym_stdin_null_token1] = ACTIONS(1440), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1440), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1440), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1440), - [aux_sym_syslog_facility_token1] = ACTIONS(1440), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1440), - [aux_sym_keep_alive_token1] = ACTIONS(1440), - [aux_sym_tag_token1] = ACTIONS(1440), - [aux_sym_tunnel_token1] = ACTIONS(1442), - [aux_sym_tunnel_device_token1] = ACTIONS(1440), - [aux_sym_update_host_keys_token1] = ACTIONS(1440), - [aux_sym_use_keychain_token1] = ACTIONS(1440), - [aux_sym_use_roaming_token1] = ACTIONS(1440), - [aux_sym_user_token1] = ACTIONS(1442), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1440), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1440), - [aux_sym_visual_host_key_token1] = ACTIONS(1440), - [aux_sym_xauth_location_token1] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3261), + [aux_sym_match_token1] = ACTIONS(3259), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3259), + [aux_sym_address_family_token1] = ACTIONS(3259), + [aux_sym_batch_mode_token1] = ACTIONS(3259), + [aux_sym_bind_address_token1] = ACTIONS(3259), + [aux_sym_bind_interface_token1] = ACTIONS(3259), + [aux_sym_canonical_domains_token1] = ACTIONS(3259), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3259), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3259), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3259), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3259), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3259), + [aux_sym_certificate_file_token1] = ACTIONS(3259), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3259), + [aux_sym_channel_timeout_token1] = ACTIONS(3259), + [aux_sym_check_host_ip_token1] = ACTIONS(3259), + [aux_sym_ciphers_token1] = ACTIONS(3259), + [aux_sym_cipher_token1] = ACTIONS(3261), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3259), + [aux_sym_compression_token1] = ACTIONS(3259), + [aux_sym_connection_attempts_token1] = ACTIONS(3259), + [aux_sym_connect_timeout_token1] = ACTIONS(3259), + [aux_sym_control_master_token1] = ACTIONS(3259), + [aux_sym_control_path_token1] = ACTIONS(3259), + [aux_sym_control_persist_token1] = ACTIONS(3259), + [aux_sym_dynamic_forward_token1] = ACTIONS(3259), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3259), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3259), + [aux_sym_escape_char_token1] = ACTIONS(3259), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3259), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3259), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3259), + [aux_sym_forward_agent_token1] = ACTIONS(3259), + [aux_sym_forward_x11_token1] = ACTIONS(3261), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3259), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3259), + [aux_sym_gateway_ports_token1] = ACTIONS(3259), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3259), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3259), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3259), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3259), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3259), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3259), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3259), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3259), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3259), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3259), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3259), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3259), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3259), + [aux_sym_host_key_alias_token1] = ACTIONS(3259), + [aux_sym_hostname_token1] = ACTIONS(3259), + [aux_sym_identities_only_token1] = ACTIONS(3259), + [aux_sym_identity_agent_token1] = ACTIONS(3259), + [aux_sym_identity_file_token1] = ACTIONS(3259), + [aux_sym_ignore_unknown_token1] = ACTIONS(3259), + [aux_sym_include_token1] = ACTIONS(3259), + [aux_sym_ip_qos_token1] = ACTIONS(3259), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3259), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3259), + [aux_sym_kex_algorithms_token1] = ACTIONS(3259), + [aux_sym_known_hosts_command_token1] = ACTIONS(3259), + [aux_sym_local_command_token1] = ACTIONS(3259), + [aux_sym_local_forward_token1] = ACTIONS(3259), + [aux_sym_log_level_token1] = ACTIONS(3259), + [aux_sym_log_verbose_token1] = ACTIONS(3259), + [aux_sym_macs_token1] = ACTIONS(3259), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3259), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3259), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3259), + [aux_sym_password_authentication_token1] = ACTIONS(3259), + [aux_sym_permit_local_command_token1] = ACTIONS(3259), + [aux_sym_permit_remote_open_token1] = ACTIONS(3259), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3259), + [aux_sym_port_token1] = ACTIONS(3259), + [aux_sym_preferred_authentications_token1] = ACTIONS(3259), + [aux_sym_protocol_token1] = ACTIONS(3259), + [aux_sym_proxy_command_token1] = ACTIONS(3259), + [aux_sym_proxy_jump_token1] = ACTIONS(3259), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3259), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3259), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3259), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3259), + [aux_sym_rekey_limit_token1] = ACTIONS(3259), + [aux_sym_remote_command_token1] = ACTIONS(3259), + [aux_sym_remote_forward_token1] = ACTIONS(3259), + [aux_sym_request_tty_token1] = ACTIONS(3259), + [aux_sym_required_rsa_size_token1] = ACTIONS(3259), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3259), + [aux_sym_security_key_provider_token1] = ACTIONS(3259), + [aux_sym_send_env_token1] = ACTIONS(3259), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3259), + [aux_sym_server_alive_interval_token1] = ACTIONS(3259), + [aux_sym_session_type_token1] = ACTIONS(3259), + [aux_sym_set_env_token1] = ACTIONS(3259), + [aux_sym_stdin_null_token1] = ACTIONS(3259), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3259), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3259), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3259), + [aux_sym_syslog_facility_token1] = ACTIONS(3259), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3259), + [aux_sym_keep_alive_token1] = ACTIONS(3259), + [aux_sym_tag_token1] = ACTIONS(3259), + [aux_sym_tunnel_token1] = ACTIONS(3261), + [aux_sym_tunnel_device_token1] = ACTIONS(3259), + [aux_sym_update_host_keys_token1] = ACTIONS(3259), + [aux_sym_use_keychain_token1] = ACTIONS(3259), + [aux_sym_use_roaming_token1] = ACTIONS(3259), + [aux_sym_user_token1] = ACTIONS(3261), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3259), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3259), + [aux_sym_visual_host_key_token1] = ACTIONS(3259), + [aux_sym_xauth_location_token1] = ACTIONS(3259), }, [530] = { - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1448), - [aux_sym_match_token1] = ACTIONS(1446), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1446), - [aux_sym_address_family_token1] = ACTIONS(1446), - [aux_sym_batch_mode_token1] = ACTIONS(1446), - [aux_sym_bind_address_token1] = ACTIONS(1446), - [aux_sym_bind_interface_token1] = ACTIONS(1446), - [aux_sym_canonical_domains_token1] = ACTIONS(1446), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1446), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1446), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1446), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1446), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1446), - [aux_sym_certificate_file_token1] = ACTIONS(1446), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1446), - [aux_sym_channel_timeout_token1] = ACTIONS(1446), - [aux_sym_check_host_ip_token1] = ACTIONS(1446), - [aux_sym_ciphers_token1] = ACTIONS(1446), - [aux_sym_cipher_token1] = ACTIONS(1448), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1446), - [aux_sym_compression_token1] = ACTIONS(1446), - [aux_sym_connection_attempts_token1] = ACTIONS(1446), - [aux_sym_connect_timeout_token1] = ACTIONS(1446), - [aux_sym_control_master_token1] = ACTIONS(1446), - [aux_sym_control_path_token1] = ACTIONS(1446), - [aux_sym_control_persist_token1] = ACTIONS(1446), - [aux_sym_dynamic_forward_token1] = ACTIONS(1446), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1446), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1446), - [aux_sym_escape_char_token1] = ACTIONS(1446), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1446), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1446), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1446), - [aux_sym_forward_agent_token1] = ACTIONS(1446), - [aux_sym_forward_x11_token1] = ACTIONS(1448), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1446), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1446), - [aux_sym_gateway_ports_token1] = ACTIONS(1446), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1446), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1446), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1446), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1446), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1446), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1446), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1446), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1446), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1446), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1446), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1446), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1446), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1446), - [aux_sym_host_key_alias_token1] = ACTIONS(1446), - [aux_sym_hostname_token1] = ACTIONS(1446), - [aux_sym_identities_only_token1] = ACTIONS(1446), - [aux_sym_identity_agent_token1] = ACTIONS(1446), - [aux_sym_identity_file_token1] = ACTIONS(1446), - [aux_sym_ignore_unknown_token1] = ACTIONS(1446), - [aux_sym_include_token1] = ACTIONS(1446), - [aux_sym_ip_qos_token1] = ACTIONS(1446), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1446), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1446), - [aux_sym_kex_algorithms_token1] = ACTIONS(1446), - [aux_sym_known_hosts_command_token1] = ACTIONS(1446), - [aux_sym_local_command_token1] = ACTIONS(1446), - [aux_sym_local_forward_token1] = ACTIONS(1446), - [aux_sym_log_level_token1] = ACTIONS(1446), - [aux_sym_log_verbose_token1] = ACTIONS(1446), - [aux_sym_macs_token1] = ACTIONS(1446), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1446), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1446), - [aux_sym_password_authentication_token1] = ACTIONS(1446), - [aux_sym_permit_local_command_token1] = ACTIONS(1446), - [aux_sym_permit_remote_open_token1] = ACTIONS(1446), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1446), - [aux_sym_port_token1] = ACTIONS(1446), - [aux_sym_preferred_authentications_token1] = ACTIONS(1446), - [aux_sym_protocol_token1] = ACTIONS(1446), - [aux_sym_proxy_command_token1] = ACTIONS(1446), - [aux_sym_proxy_jump_token1] = ACTIONS(1446), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1446), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1446), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1446), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1446), - [aux_sym_rekey_limit_token1] = ACTIONS(1446), - [aux_sym_remote_command_token1] = ACTIONS(1446), - [aux_sym_remote_forward_token1] = ACTIONS(1446), - [aux_sym_request_tty_token1] = ACTIONS(1446), - [aux_sym_required_rsa_size_token1] = ACTIONS(1446), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1446), - [aux_sym_security_key_provider_token1] = ACTIONS(1446), - [aux_sym_send_env_token1] = ACTIONS(1446), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1446), - [aux_sym_server_alive_interval_token1] = ACTIONS(1446), - [aux_sym_session_type_token1] = ACTIONS(1446), - [aux_sym_set_env_token1] = ACTIONS(1446), - [aux_sym_stdin_null_token1] = ACTIONS(1446), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1446), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1446), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1446), - [aux_sym_syslog_facility_token1] = ACTIONS(1446), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1446), - [aux_sym_keep_alive_token1] = ACTIONS(1446), - [aux_sym_tag_token1] = ACTIONS(1446), - [aux_sym_tunnel_token1] = ACTIONS(1448), - [aux_sym_tunnel_device_token1] = ACTIONS(1446), - [aux_sym_update_host_keys_token1] = ACTIONS(1446), - [aux_sym_use_keychain_token1] = ACTIONS(1446), - [aux_sym_use_roaming_token1] = ACTIONS(1446), - [aux_sym_user_token1] = ACTIONS(1448), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1446), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1446), - [aux_sym_visual_host_key_token1] = ACTIONS(1446), - [aux_sym_xauth_location_token1] = ACTIONS(1446), + [ts_builtin_sym_end] = ACTIONS(3263), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3265), + [aux_sym_match_token1] = ACTIONS(3263), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3263), + [aux_sym_address_family_token1] = ACTIONS(3263), + [aux_sym_batch_mode_token1] = ACTIONS(3263), + [aux_sym_bind_address_token1] = ACTIONS(3263), + [aux_sym_bind_interface_token1] = ACTIONS(3263), + [aux_sym_canonical_domains_token1] = ACTIONS(3263), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3263), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3263), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3263), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3263), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3263), + [aux_sym_certificate_file_token1] = ACTIONS(3263), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3263), + [aux_sym_channel_timeout_token1] = ACTIONS(3263), + [aux_sym_check_host_ip_token1] = ACTIONS(3263), + [aux_sym_ciphers_token1] = ACTIONS(3263), + [aux_sym_cipher_token1] = ACTIONS(3265), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3263), + [aux_sym_compression_token1] = ACTIONS(3263), + [aux_sym_connection_attempts_token1] = ACTIONS(3263), + [aux_sym_connect_timeout_token1] = ACTIONS(3263), + [aux_sym_control_master_token1] = ACTIONS(3263), + [aux_sym_control_path_token1] = ACTIONS(3263), + [aux_sym_control_persist_token1] = ACTIONS(3263), + [aux_sym_dynamic_forward_token1] = ACTIONS(3263), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3263), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3263), + [aux_sym_escape_char_token1] = ACTIONS(3263), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3263), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3263), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3263), + [aux_sym_forward_agent_token1] = ACTIONS(3263), + [aux_sym_forward_x11_token1] = ACTIONS(3265), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3263), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3263), + [aux_sym_gateway_ports_token1] = ACTIONS(3263), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3263), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3263), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3263), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3263), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3263), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3263), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3263), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3263), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3263), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3263), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3263), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3263), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3263), + [aux_sym_host_key_alias_token1] = ACTIONS(3263), + [aux_sym_hostname_token1] = ACTIONS(3263), + [aux_sym_identities_only_token1] = ACTIONS(3263), + [aux_sym_identity_agent_token1] = ACTIONS(3263), + [aux_sym_identity_file_token1] = ACTIONS(3263), + [aux_sym_ignore_unknown_token1] = ACTIONS(3263), + [aux_sym_include_token1] = ACTIONS(3263), + [aux_sym_ip_qos_token1] = ACTIONS(3263), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3263), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3263), + [aux_sym_kex_algorithms_token1] = ACTIONS(3263), + [aux_sym_known_hosts_command_token1] = ACTIONS(3263), + [aux_sym_local_command_token1] = ACTIONS(3263), + [aux_sym_local_forward_token1] = ACTIONS(3263), + [aux_sym_log_level_token1] = ACTIONS(3263), + [aux_sym_log_verbose_token1] = ACTIONS(3263), + [aux_sym_macs_token1] = ACTIONS(3263), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3263), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3263), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3263), + [aux_sym_password_authentication_token1] = ACTIONS(3263), + [aux_sym_permit_local_command_token1] = ACTIONS(3263), + [aux_sym_permit_remote_open_token1] = ACTIONS(3263), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3263), + [aux_sym_port_token1] = ACTIONS(3263), + [aux_sym_preferred_authentications_token1] = ACTIONS(3263), + [aux_sym_protocol_token1] = ACTIONS(3263), + [aux_sym_proxy_command_token1] = ACTIONS(3263), + [aux_sym_proxy_jump_token1] = ACTIONS(3263), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3263), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3263), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3263), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3263), + [aux_sym_rekey_limit_token1] = ACTIONS(3263), + [aux_sym_remote_command_token1] = ACTIONS(3263), + [aux_sym_remote_forward_token1] = ACTIONS(3263), + [aux_sym_request_tty_token1] = ACTIONS(3263), + [aux_sym_required_rsa_size_token1] = ACTIONS(3263), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3263), + [aux_sym_security_key_provider_token1] = ACTIONS(3263), + [aux_sym_send_env_token1] = ACTIONS(3263), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3263), + [aux_sym_server_alive_interval_token1] = ACTIONS(3263), + [aux_sym_session_type_token1] = ACTIONS(3263), + [aux_sym_set_env_token1] = ACTIONS(3263), + [aux_sym_stdin_null_token1] = ACTIONS(3263), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3263), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3263), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3263), + [aux_sym_syslog_facility_token1] = ACTIONS(3263), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3263), + [aux_sym_keep_alive_token1] = ACTIONS(3263), + [aux_sym_tag_token1] = ACTIONS(3263), + [aux_sym_tunnel_token1] = ACTIONS(3265), + [aux_sym_tunnel_device_token1] = ACTIONS(3263), + [aux_sym_update_host_keys_token1] = ACTIONS(3263), + [aux_sym_use_keychain_token1] = ACTIONS(3263), + [aux_sym_use_roaming_token1] = ACTIONS(3263), + [aux_sym_user_token1] = ACTIONS(3265), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3263), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3263), + [aux_sym_visual_host_key_token1] = ACTIONS(3263), + [aux_sym_xauth_location_token1] = ACTIONS(3263), }, [531] = { - [ts_builtin_sym_end] = ACTIONS(3252), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3254), - [aux_sym_match_token1] = ACTIONS(3252), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3252), - [aux_sym_address_family_token1] = ACTIONS(3252), - [aux_sym_batch_mode_token1] = ACTIONS(3252), - [aux_sym_bind_address_token1] = ACTIONS(3252), - [aux_sym_bind_interface_token1] = ACTIONS(3252), - [aux_sym_canonical_domains_token1] = ACTIONS(3252), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3252), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3252), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3252), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3252), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3252), - [aux_sym_certificate_file_token1] = ACTIONS(3252), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3252), - [aux_sym_channel_timeout_token1] = ACTIONS(3252), - [aux_sym_check_host_ip_token1] = ACTIONS(3252), - [aux_sym_ciphers_token1] = ACTIONS(3252), - [aux_sym_cipher_token1] = ACTIONS(3254), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3252), - [aux_sym_compression_token1] = ACTIONS(3252), - [aux_sym_connection_attempts_token1] = ACTIONS(3252), - [aux_sym_connect_timeout_token1] = ACTIONS(3252), - [aux_sym_control_master_token1] = ACTIONS(3252), - [aux_sym_control_path_token1] = ACTIONS(3252), - [aux_sym_control_persist_token1] = ACTIONS(3252), - [aux_sym_dynamic_forward_token1] = ACTIONS(3252), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3252), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3252), - [aux_sym_escape_char_token1] = ACTIONS(3252), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3252), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3252), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3252), - [aux_sym_forward_agent_token1] = ACTIONS(3252), - [aux_sym_forward_x11_token1] = ACTIONS(3254), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3252), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3252), - [aux_sym_gateway_ports_token1] = ACTIONS(3252), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3252), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3252), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3252), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3252), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3252), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3252), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3252), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3252), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3252), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3252), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3252), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3252), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3252), - [aux_sym_host_key_alias_token1] = ACTIONS(3252), - [aux_sym_hostname_token1] = ACTIONS(3252), - [aux_sym_identities_only_token1] = ACTIONS(3252), - [aux_sym_identity_agent_token1] = ACTIONS(3252), - [aux_sym_identity_file_token1] = ACTIONS(3252), - [aux_sym_ignore_unknown_token1] = ACTIONS(3252), - [aux_sym_include_token1] = ACTIONS(3252), - [aux_sym_ip_qos_token1] = ACTIONS(3252), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3252), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3252), - [aux_sym_kex_algorithms_token1] = ACTIONS(3252), - [aux_sym_known_hosts_command_token1] = ACTIONS(3252), - [aux_sym_local_command_token1] = ACTIONS(3252), - [aux_sym_local_forward_token1] = ACTIONS(3252), - [aux_sym_log_level_token1] = ACTIONS(3252), - [aux_sym_log_verbose_token1] = ACTIONS(3252), - [aux_sym_macs_token1] = ACTIONS(3252), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3252), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3252), - [aux_sym_password_authentication_token1] = ACTIONS(3252), - [aux_sym_permit_local_command_token1] = ACTIONS(3252), - [aux_sym_permit_remote_open_token1] = ACTIONS(3252), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3252), - [aux_sym_port_token1] = ACTIONS(3252), - [aux_sym_preferred_authentications_token1] = ACTIONS(3252), - [aux_sym_protocol_token1] = ACTIONS(3252), - [aux_sym_proxy_command_token1] = ACTIONS(3252), - [aux_sym_proxy_jump_token1] = ACTIONS(3252), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3252), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3252), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3252), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3252), - [aux_sym_rekey_limit_token1] = ACTIONS(3252), - [aux_sym_remote_command_token1] = ACTIONS(3252), - [aux_sym_remote_forward_token1] = ACTIONS(3252), - [aux_sym_request_tty_token1] = ACTIONS(3252), - [aux_sym_required_rsa_size_token1] = ACTIONS(3252), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3252), - [aux_sym_security_key_provider_token1] = ACTIONS(3252), - [aux_sym_send_env_token1] = ACTIONS(3252), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3252), - [aux_sym_server_alive_interval_token1] = ACTIONS(3252), - [aux_sym_session_type_token1] = ACTIONS(3252), - [aux_sym_set_env_token1] = ACTIONS(3252), - [aux_sym_stdin_null_token1] = ACTIONS(3252), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3252), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3252), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3252), - [aux_sym_syslog_facility_token1] = ACTIONS(3252), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3252), - [aux_sym_keep_alive_token1] = ACTIONS(3252), - [aux_sym_tag_token1] = ACTIONS(3252), - [aux_sym_tunnel_token1] = ACTIONS(3254), - [aux_sym_tunnel_device_token1] = ACTIONS(3252), - [aux_sym_update_host_keys_token1] = ACTIONS(3252), - [aux_sym_use_keychain_token1] = ACTIONS(3252), - [aux_sym_use_roaming_token1] = ACTIONS(3252), - [aux_sym_user_token1] = ACTIONS(3254), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3252), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3252), - [aux_sym_visual_host_key_token1] = ACTIONS(3252), - [aux_sym_xauth_location_token1] = ACTIONS(3252), + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3269), + [aux_sym_match_token1] = ACTIONS(3267), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3267), + [aux_sym_address_family_token1] = ACTIONS(3267), + [aux_sym_batch_mode_token1] = ACTIONS(3267), + [aux_sym_bind_address_token1] = ACTIONS(3267), + [aux_sym_bind_interface_token1] = ACTIONS(3267), + [aux_sym_canonical_domains_token1] = ACTIONS(3267), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3267), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3267), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3267), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3267), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3267), + [aux_sym_certificate_file_token1] = ACTIONS(3267), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3267), + [aux_sym_channel_timeout_token1] = ACTIONS(3267), + [aux_sym_check_host_ip_token1] = ACTIONS(3267), + [aux_sym_ciphers_token1] = ACTIONS(3267), + [aux_sym_cipher_token1] = ACTIONS(3269), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3267), + [aux_sym_compression_token1] = ACTIONS(3267), + [aux_sym_connection_attempts_token1] = ACTIONS(3267), + [aux_sym_connect_timeout_token1] = ACTIONS(3267), + [aux_sym_control_master_token1] = ACTIONS(3267), + [aux_sym_control_path_token1] = ACTIONS(3267), + [aux_sym_control_persist_token1] = ACTIONS(3267), + [aux_sym_dynamic_forward_token1] = ACTIONS(3267), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3267), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3267), + [aux_sym_escape_char_token1] = ACTIONS(3267), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3267), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3267), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3267), + [aux_sym_forward_agent_token1] = ACTIONS(3267), + [aux_sym_forward_x11_token1] = ACTIONS(3269), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3267), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3267), + [aux_sym_gateway_ports_token1] = ACTIONS(3267), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3267), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3267), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3267), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3267), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3267), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3267), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3267), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3267), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3267), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3267), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3267), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3267), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3267), + [aux_sym_host_key_alias_token1] = ACTIONS(3267), + [aux_sym_hostname_token1] = ACTIONS(3267), + [aux_sym_identities_only_token1] = ACTIONS(3267), + [aux_sym_identity_agent_token1] = ACTIONS(3267), + [aux_sym_identity_file_token1] = ACTIONS(3267), + [aux_sym_ignore_unknown_token1] = ACTIONS(3267), + [aux_sym_include_token1] = ACTIONS(3267), + [aux_sym_ip_qos_token1] = ACTIONS(3267), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3267), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3267), + [aux_sym_kex_algorithms_token1] = ACTIONS(3267), + [aux_sym_known_hosts_command_token1] = ACTIONS(3267), + [aux_sym_local_command_token1] = ACTIONS(3267), + [aux_sym_local_forward_token1] = ACTIONS(3267), + [aux_sym_log_level_token1] = ACTIONS(3267), + [aux_sym_log_verbose_token1] = ACTIONS(3267), + [aux_sym_macs_token1] = ACTIONS(3267), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3267), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3267), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3267), + [aux_sym_password_authentication_token1] = ACTIONS(3267), + [aux_sym_permit_local_command_token1] = ACTIONS(3267), + [aux_sym_permit_remote_open_token1] = ACTIONS(3267), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3267), + [aux_sym_port_token1] = ACTIONS(3267), + [aux_sym_preferred_authentications_token1] = ACTIONS(3267), + [aux_sym_protocol_token1] = ACTIONS(3267), + [aux_sym_proxy_command_token1] = ACTIONS(3267), + [aux_sym_proxy_jump_token1] = ACTIONS(3267), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3267), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3267), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3267), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3267), + [aux_sym_rekey_limit_token1] = ACTIONS(3267), + [aux_sym_remote_command_token1] = ACTIONS(3267), + [aux_sym_remote_forward_token1] = ACTIONS(3267), + [aux_sym_request_tty_token1] = ACTIONS(3267), + [aux_sym_required_rsa_size_token1] = ACTIONS(3267), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3267), + [aux_sym_security_key_provider_token1] = ACTIONS(3267), + [aux_sym_send_env_token1] = ACTIONS(3267), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3267), + [aux_sym_server_alive_interval_token1] = ACTIONS(3267), + [aux_sym_session_type_token1] = ACTIONS(3267), + [aux_sym_set_env_token1] = ACTIONS(3267), + [aux_sym_stdin_null_token1] = ACTIONS(3267), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3267), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3267), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3267), + [aux_sym_syslog_facility_token1] = ACTIONS(3267), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3267), + [aux_sym_keep_alive_token1] = ACTIONS(3267), + [aux_sym_tag_token1] = ACTIONS(3267), + [aux_sym_tunnel_token1] = ACTIONS(3269), + [aux_sym_tunnel_device_token1] = ACTIONS(3267), + [aux_sym_update_host_keys_token1] = ACTIONS(3267), + [aux_sym_use_keychain_token1] = ACTIONS(3267), + [aux_sym_use_roaming_token1] = ACTIONS(3267), + [aux_sym_user_token1] = ACTIONS(3269), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3267), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3267), + [aux_sym_visual_host_key_token1] = ACTIONS(3267), + [aux_sym_xauth_location_token1] = ACTIONS(3267), }, [532] = { - [ts_builtin_sym_end] = ACTIONS(3256), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3258), - [aux_sym_match_token1] = ACTIONS(3256), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3256), - [aux_sym_address_family_token1] = ACTIONS(3256), - [aux_sym_batch_mode_token1] = ACTIONS(3256), - [aux_sym_bind_address_token1] = ACTIONS(3256), - [aux_sym_bind_interface_token1] = ACTIONS(3256), - [aux_sym_canonical_domains_token1] = ACTIONS(3256), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3256), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3256), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3256), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3256), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3256), - [aux_sym_certificate_file_token1] = ACTIONS(3256), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3256), - [aux_sym_channel_timeout_token1] = ACTIONS(3256), - [aux_sym_check_host_ip_token1] = ACTIONS(3256), - [aux_sym_ciphers_token1] = ACTIONS(3256), - [aux_sym_cipher_token1] = ACTIONS(3258), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3256), - [aux_sym_compression_token1] = ACTIONS(3256), - [aux_sym_connection_attempts_token1] = ACTIONS(3256), - [aux_sym_connect_timeout_token1] = ACTIONS(3256), - [aux_sym_control_master_token1] = ACTIONS(3256), - [aux_sym_control_path_token1] = ACTIONS(3256), - [aux_sym_control_persist_token1] = ACTIONS(3256), - [aux_sym_dynamic_forward_token1] = ACTIONS(3256), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3256), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3256), - [aux_sym_escape_char_token1] = ACTIONS(3256), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3256), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3256), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3256), - [aux_sym_forward_agent_token1] = ACTIONS(3256), - [aux_sym_forward_x11_token1] = ACTIONS(3258), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3256), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3256), - [aux_sym_gateway_ports_token1] = ACTIONS(3256), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3256), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3256), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3256), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3256), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3256), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3256), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3256), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3256), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3256), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3256), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3256), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3256), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3256), - [aux_sym_host_key_alias_token1] = ACTIONS(3256), - [aux_sym_hostname_token1] = ACTIONS(3256), - [aux_sym_identities_only_token1] = ACTIONS(3256), - [aux_sym_identity_agent_token1] = ACTIONS(3256), - [aux_sym_identity_file_token1] = ACTIONS(3256), - [aux_sym_ignore_unknown_token1] = ACTIONS(3256), - [aux_sym_include_token1] = ACTIONS(3256), - [aux_sym_ip_qos_token1] = ACTIONS(3256), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3256), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3256), - [aux_sym_kex_algorithms_token1] = ACTIONS(3256), - [aux_sym_known_hosts_command_token1] = ACTIONS(3256), - [aux_sym_local_command_token1] = ACTIONS(3256), - [aux_sym_local_forward_token1] = ACTIONS(3256), - [aux_sym_log_level_token1] = ACTIONS(3256), - [aux_sym_log_verbose_token1] = ACTIONS(3256), - [aux_sym_macs_token1] = ACTIONS(3256), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3256), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3256), - [aux_sym_password_authentication_token1] = ACTIONS(3256), - [aux_sym_permit_local_command_token1] = ACTIONS(3256), - [aux_sym_permit_remote_open_token1] = ACTIONS(3256), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3256), - [aux_sym_port_token1] = ACTIONS(3256), - [aux_sym_preferred_authentications_token1] = ACTIONS(3256), - [aux_sym_protocol_token1] = ACTIONS(3256), - [aux_sym_proxy_command_token1] = ACTIONS(3256), - [aux_sym_proxy_jump_token1] = ACTIONS(3256), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3256), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3256), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3256), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3256), - [aux_sym_rekey_limit_token1] = ACTIONS(3256), - [aux_sym_remote_command_token1] = ACTIONS(3256), - [aux_sym_remote_forward_token1] = ACTIONS(3256), - [aux_sym_request_tty_token1] = ACTIONS(3256), - [aux_sym_required_rsa_size_token1] = ACTIONS(3256), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3256), - [aux_sym_security_key_provider_token1] = ACTIONS(3256), - [aux_sym_send_env_token1] = ACTIONS(3256), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3256), - [aux_sym_server_alive_interval_token1] = ACTIONS(3256), - [aux_sym_session_type_token1] = ACTIONS(3256), - [aux_sym_set_env_token1] = ACTIONS(3256), - [aux_sym_stdin_null_token1] = ACTIONS(3256), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3256), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3256), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3256), - [aux_sym_syslog_facility_token1] = ACTIONS(3256), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3256), - [aux_sym_keep_alive_token1] = ACTIONS(3256), - [aux_sym_tag_token1] = ACTIONS(3256), - [aux_sym_tunnel_token1] = ACTIONS(3258), - [aux_sym_tunnel_device_token1] = ACTIONS(3256), - [aux_sym_update_host_keys_token1] = ACTIONS(3256), - [aux_sym_use_keychain_token1] = ACTIONS(3256), - [aux_sym_use_roaming_token1] = ACTIONS(3256), - [aux_sym_user_token1] = ACTIONS(3258), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3256), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3256), - [aux_sym_visual_host_key_token1] = ACTIONS(3256), - [aux_sym_xauth_location_token1] = ACTIONS(3256), + [ts_builtin_sym_end] = ACTIONS(3271), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3273), + [aux_sym_match_token1] = ACTIONS(3271), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3271), + [aux_sym_address_family_token1] = ACTIONS(3271), + [aux_sym_batch_mode_token1] = ACTIONS(3271), + [aux_sym_bind_address_token1] = ACTIONS(3271), + [aux_sym_bind_interface_token1] = ACTIONS(3271), + [aux_sym_canonical_domains_token1] = ACTIONS(3271), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3271), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3271), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3271), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3271), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3271), + [aux_sym_certificate_file_token1] = ACTIONS(3271), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3271), + [aux_sym_channel_timeout_token1] = ACTIONS(3271), + [aux_sym_check_host_ip_token1] = ACTIONS(3271), + [aux_sym_ciphers_token1] = ACTIONS(3271), + [aux_sym_cipher_token1] = ACTIONS(3273), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3271), + [aux_sym_compression_token1] = ACTIONS(3271), + [aux_sym_connection_attempts_token1] = ACTIONS(3271), + [aux_sym_connect_timeout_token1] = ACTIONS(3271), + [aux_sym_control_master_token1] = ACTIONS(3271), + [aux_sym_control_path_token1] = ACTIONS(3271), + [aux_sym_control_persist_token1] = ACTIONS(3271), + [aux_sym_dynamic_forward_token1] = ACTIONS(3271), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3271), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3271), + [aux_sym_escape_char_token1] = ACTIONS(3271), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3271), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3271), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3271), + [aux_sym_forward_agent_token1] = ACTIONS(3271), + [aux_sym_forward_x11_token1] = ACTIONS(3273), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3271), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3271), + [aux_sym_gateway_ports_token1] = ACTIONS(3271), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3271), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3271), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3271), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3271), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3271), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3271), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3271), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3271), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3271), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3271), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3271), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3271), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3271), + [aux_sym_host_key_alias_token1] = ACTIONS(3271), + [aux_sym_hostname_token1] = ACTIONS(3271), + [aux_sym_identities_only_token1] = ACTIONS(3271), + [aux_sym_identity_agent_token1] = ACTIONS(3271), + [aux_sym_identity_file_token1] = ACTIONS(3271), + [aux_sym_ignore_unknown_token1] = ACTIONS(3271), + [aux_sym_include_token1] = ACTIONS(3271), + [aux_sym_ip_qos_token1] = ACTIONS(3271), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3271), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3271), + [aux_sym_kex_algorithms_token1] = ACTIONS(3271), + [aux_sym_known_hosts_command_token1] = ACTIONS(3271), + [aux_sym_local_command_token1] = ACTIONS(3271), + [aux_sym_local_forward_token1] = ACTIONS(3271), + [aux_sym_log_level_token1] = ACTIONS(3271), + [aux_sym_log_verbose_token1] = ACTIONS(3271), + [aux_sym_macs_token1] = ACTIONS(3271), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3271), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3271), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3271), + [aux_sym_password_authentication_token1] = ACTIONS(3271), + [aux_sym_permit_local_command_token1] = ACTIONS(3271), + [aux_sym_permit_remote_open_token1] = ACTIONS(3271), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3271), + [aux_sym_port_token1] = ACTIONS(3271), + [aux_sym_preferred_authentications_token1] = ACTIONS(3271), + [aux_sym_protocol_token1] = ACTIONS(3271), + [aux_sym_proxy_command_token1] = ACTIONS(3271), + [aux_sym_proxy_jump_token1] = ACTIONS(3271), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3271), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3271), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3271), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3271), + [aux_sym_rekey_limit_token1] = ACTIONS(3271), + [aux_sym_remote_command_token1] = ACTIONS(3271), + [aux_sym_remote_forward_token1] = ACTIONS(3271), + [aux_sym_request_tty_token1] = ACTIONS(3271), + [aux_sym_required_rsa_size_token1] = ACTIONS(3271), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3271), + [aux_sym_security_key_provider_token1] = ACTIONS(3271), + [aux_sym_send_env_token1] = ACTIONS(3271), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3271), + [aux_sym_server_alive_interval_token1] = ACTIONS(3271), + [aux_sym_session_type_token1] = ACTIONS(3271), + [aux_sym_set_env_token1] = ACTIONS(3271), + [aux_sym_stdin_null_token1] = ACTIONS(3271), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3271), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3271), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3271), + [aux_sym_syslog_facility_token1] = ACTIONS(3271), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3271), + [aux_sym_keep_alive_token1] = ACTIONS(3271), + [aux_sym_tag_token1] = ACTIONS(3271), + [aux_sym_tunnel_token1] = ACTIONS(3273), + [aux_sym_tunnel_device_token1] = ACTIONS(3271), + [aux_sym_update_host_keys_token1] = ACTIONS(3271), + [aux_sym_use_keychain_token1] = ACTIONS(3271), + [aux_sym_use_roaming_token1] = ACTIONS(3271), + [aux_sym_user_token1] = ACTIONS(3273), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3271), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3271), + [aux_sym_visual_host_key_token1] = ACTIONS(3271), + [aux_sym_xauth_location_token1] = ACTIONS(3271), }, [533] = { - [ts_builtin_sym_end] = ACTIONS(3260), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3262), - [aux_sym_match_token1] = ACTIONS(3260), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3260), - [aux_sym_address_family_token1] = ACTIONS(3260), - [aux_sym_batch_mode_token1] = ACTIONS(3260), - [aux_sym_bind_address_token1] = ACTIONS(3260), - [aux_sym_bind_interface_token1] = ACTIONS(3260), - [aux_sym_canonical_domains_token1] = ACTIONS(3260), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3260), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3260), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3260), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3260), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3260), - [aux_sym_certificate_file_token1] = ACTIONS(3260), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3260), - [aux_sym_channel_timeout_token1] = ACTIONS(3260), - [aux_sym_check_host_ip_token1] = ACTIONS(3260), - [aux_sym_ciphers_token1] = ACTIONS(3260), - [aux_sym_cipher_token1] = ACTIONS(3262), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3260), - [aux_sym_compression_token1] = ACTIONS(3260), - [aux_sym_connection_attempts_token1] = ACTIONS(3260), - [aux_sym_connect_timeout_token1] = ACTIONS(3260), - [aux_sym_control_master_token1] = ACTIONS(3260), - [aux_sym_control_path_token1] = ACTIONS(3260), - [aux_sym_control_persist_token1] = ACTIONS(3260), - [aux_sym_dynamic_forward_token1] = ACTIONS(3260), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3260), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3260), - [aux_sym_escape_char_token1] = ACTIONS(3260), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3260), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3260), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3260), - [aux_sym_forward_agent_token1] = ACTIONS(3260), - [aux_sym_forward_x11_token1] = ACTIONS(3262), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3260), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3260), - [aux_sym_gateway_ports_token1] = ACTIONS(3260), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3260), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3260), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3260), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3260), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3260), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3260), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3260), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3260), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3260), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3260), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3260), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3260), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3260), - [aux_sym_host_key_alias_token1] = ACTIONS(3260), - [aux_sym_hostname_token1] = ACTIONS(3260), - [aux_sym_identities_only_token1] = ACTIONS(3260), - [aux_sym_identity_agent_token1] = ACTIONS(3260), - [aux_sym_identity_file_token1] = ACTIONS(3260), - [aux_sym_ignore_unknown_token1] = ACTIONS(3260), - [aux_sym_include_token1] = ACTIONS(3260), - [aux_sym_ip_qos_token1] = ACTIONS(3260), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3260), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3260), - [aux_sym_kex_algorithms_token1] = ACTIONS(3260), - [aux_sym_known_hosts_command_token1] = ACTIONS(3260), - [aux_sym_local_command_token1] = ACTIONS(3260), - [aux_sym_local_forward_token1] = ACTIONS(3260), - [aux_sym_log_level_token1] = ACTIONS(3260), - [aux_sym_log_verbose_token1] = ACTIONS(3260), - [aux_sym_macs_token1] = ACTIONS(3260), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3260), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3260), - [aux_sym_password_authentication_token1] = ACTIONS(3260), - [aux_sym_permit_local_command_token1] = ACTIONS(3260), - [aux_sym_permit_remote_open_token1] = ACTIONS(3260), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3260), - [aux_sym_port_token1] = ACTIONS(3260), - [aux_sym_preferred_authentications_token1] = ACTIONS(3260), - [aux_sym_protocol_token1] = ACTIONS(3260), - [aux_sym_proxy_command_token1] = ACTIONS(3260), - [aux_sym_proxy_jump_token1] = ACTIONS(3260), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3260), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3260), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3260), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3260), - [aux_sym_rekey_limit_token1] = ACTIONS(3260), - [aux_sym_remote_command_token1] = ACTIONS(3260), - [aux_sym_remote_forward_token1] = ACTIONS(3260), - [aux_sym_request_tty_token1] = ACTIONS(3260), - [aux_sym_required_rsa_size_token1] = ACTIONS(3260), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3260), - [aux_sym_security_key_provider_token1] = ACTIONS(3260), - [aux_sym_send_env_token1] = ACTIONS(3260), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3260), - [aux_sym_server_alive_interval_token1] = ACTIONS(3260), - [aux_sym_session_type_token1] = ACTIONS(3260), - [aux_sym_set_env_token1] = ACTIONS(3260), - [aux_sym_stdin_null_token1] = ACTIONS(3260), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3260), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3260), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3260), - [aux_sym_syslog_facility_token1] = ACTIONS(3260), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3260), - [aux_sym_keep_alive_token1] = ACTIONS(3260), - [aux_sym_tag_token1] = ACTIONS(3260), - [aux_sym_tunnel_token1] = ACTIONS(3262), - [aux_sym_tunnel_device_token1] = ACTIONS(3260), - [aux_sym_update_host_keys_token1] = ACTIONS(3260), - [aux_sym_use_keychain_token1] = ACTIONS(3260), - [aux_sym_use_roaming_token1] = ACTIONS(3260), - [aux_sym_user_token1] = ACTIONS(3262), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3260), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3260), - [aux_sym_visual_host_key_token1] = ACTIONS(3260), - [aux_sym_xauth_location_token1] = ACTIONS(3260), + [ts_builtin_sym_end] = ACTIONS(3275), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3277), + [aux_sym_match_token1] = ACTIONS(3275), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3275), + [aux_sym_address_family_token1] = ACTIONS(3275), + [aux_sym_batch_mode_token1] = ACTIONS(3275), + [aux_sym_bind_address_token1] = ACTIONS(3275), + [aux_sym_bind_interface_token1] = ACTIONS(3275), + [aux_sym_canonical_domains_token1] = ACTIONS(3275), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3275), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3275), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3275), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3275), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3275), + [aux_sym_certificate_file_token1] = ACTIONS(3275), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3275), + [aux_sym_channel_timeout_token1] = ACTIONS(3275), + [aux_sym_check_host_ip_token1] = ACTIONS(3275), + [aux_sym_ciphers_token1] = ACTIONS(3275), + [aux_sym_cipher_token1] = ACTIONS(3277), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3275), + [aux_sym_compression_token1] = ACTIONS(3275), + [aux_sym_connection_attempts_token1] = ACTIONS(3275), + [aux_sym_connect_timeout_token1] = ACTIONS(3275), + [aux_sym_control_master_token1] = ACTIONS(3275), + [aux_sym_control_path_token1] = ACTIONS(3275), + [aux_sym_control_persist_token1] = ACTIONS(3275), + [aux_sym_dynamic_forward_token1] = ACTIONS(3275), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3275), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3275), + [aux_sym_escape_char_token1] = ACTIONS(3275), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3275), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3275), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3275), + [aux_sym_forward_agent_token1] = ACTIONS(3275), + [aux_sym_forward_x11_token1] = ACTIONS(3277), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3275), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3275), + [aux_sym_gateway_ports_token1] = ACTIONS(3275), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3275), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3275), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3275), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3275), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3275), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3275), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3275), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3275), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3275), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3275), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3275), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3275), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3275), + [aux_sym_host_key_alias_token1] = ACTIONS(3275), + [aux_sym_hostname_token1] = ACTIONS(3275), + [aux_sym_identities_only_token1] = ACTIONS(3275), + [aux_sym_identity_agent_token1] = ACTIONS(3275), + [aux_sym_identity_file_token1] = ACTIONS(3275), + [aux_sym_ignore_unknown_token1] = ACTIONS(3275), + [aux_sym_include_token1] = ACTIONS(3275), + [aux_sym_ip_qos_token1] = ACTIONS(3275), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3275), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3275), + [aux_sym_kex_algorithms_token1] = ACTIONS(3275), + [aux_sym_known_hosts_command_token1] = ACTIONS(3275), + [aux_sym_local_command_token1] = ACTIONS(3275), + [aux_sym_local_forward_token1] = ACTIONS(3275), + [aux_sym_log_level_token1] = ACTIONS(3275), + [aux_sym_log_verbose_token1] = ACTIONS(3275), + [aux_sym_macs_token1] = ACTIONS(3275), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3275), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3275), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3275), + [aux_sym_password_authentication_token1] = ACTIONS(3275), + [aux_sym_permit_local_command_token1] = ACTIONS(3275), + [aux_sym_permit_remote_open_token1] = ACTIONS(3275), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3275), + [aux_sym_port_token1] = ACTIONS(3275), + [aux_sym_preferred_authentications_token1] = ACTIONS(3275), + [aux_sym_protocol_token1] = ACTIONS(3275), + [aux_sym_proxy_command_token1] = ACTIONS(3275), + [aux_sym_proxy_jump_token1] = ACTIONS(3275), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3275), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3275), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3275), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3275), + [aux_sym_rekey_limit_token1] = ACTIONS(3275), + [aux_sym_remote_command_token1] = ACTIONS(3275), + [aux_sym_remote_forward_token1] = ACTIONS(3275), + [aux_sym_request_tty_token1] = ACTIONS(3275), + [aux_sym_required_rsa_size_token1] = ACTIONS(3275), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3275), + [aux_sym_security_key_provider_token1] = ACTIONS(3275), + [aux_sym_send_env_token1] = ACTIONS(3275), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3275), + [aux_sym_server_alive_interval_token1] = ACTIONS(3275), + [aux_sym_session_type_token1] = ACTIONS(3275), + [aux_sym_set_env_token1] = ACTIONS(3275), + [aux_sym_stdin_null_token1] = ACTIONS(3275), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3275), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3275), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3275), + [aux_sym_syslog_facility_token1] = ACTIONS(3275), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3275), + [aux_sym_keep_alive_token1] = ACTIONS(3275), + [aux_sym_tag_token1] = ACTIONS(3275), + [aux_sym_tunnel_token1] = ACTIONS(3277), + [aux_sym_tunnel_device_token1] = ACTIONS(3275), + [aux_sym_update_host_keys_token1] = ACTIONS(3275), + [aux_sym_use_keychain_token1] = ACTIONS(3275), + [aux_sym_use_roaming_token1] = ACTIONS(3275), + [aux_sym_user_token1] = ACTIONS(3277), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3275), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3275), + [aux_sym_visual_host_key_token1] = ACTIONS(3275), + [aux_sym_xauth_location_token1] = ACTIONS(3275), }, [534] = { - [ts_builtin_sym_end] = ACTIONS(3264), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3266), - [aux_sym_match_token1] = ACTIONS(3264), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3264), - [aux_sym_address_family_token1] = ACTIONS(3264), - [aux_sym_batch_mode_token1] = ACTIONS(3264), - [aux_sym_bind_address_token1] = ACTIONS(3264), - [aux_sym_bind_interface_token1] = ACTIONS(3264), - [aux_sym_canonical_domains_token1] = ACTIONS(3264), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3264), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3264), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3264), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3264), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3264), - [aux_sym_certificate_file_token1] = ACTIONS(3264), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3264), - [aux_sym_channel_timeout_token1] = ACTIONS(3264), - [aux_sym_check_host_ip_token1] = ACTIONS(3264), - [aux_sym_ciphers_token1] = ACTIONS(3264), - [aux_sym_cipher_token1] = ACTIONS(3266), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3264), - [aux_sym_compression_token1] = ACTIONS(3264), - [aux_sym_connection_attempts_token1] = ACTIONS(3264), - [aux_sym_connect_timeout_token1] = ACTIONS(3264), - [aux_sym_control_master_token1] = ACTIONS(3264), - [aux_sym_control_path_token1] = ACTIONS(3264), - [aux_sym_control_persist_token1] = ACTIONS(3264), - [aux_sym_dynamic_forward_token1] = ACTIONS(3264), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3264), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3264), - [aux_sym_escape_char_token1] = ACTIONS(3264), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3264), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3264), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3264), - [aux_sym_forward_agent_token1] = ACTIONS(3264), - [aux_sym_forward_x11_token1] = ACTIONS(3266), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3264), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3264), - [aux_sym_gateway_ports_token1] = ACTIONS(3264), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3264), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3264), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3264), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3264), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3264), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3264), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3264), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3264), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3264), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3264), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3264), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3264), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3264), - [aux_sym_host_key_alias_token1] = ACTIONS(3264), - [aux_sym_hostname_token1] = ACTIONS(3264), - [aux_sym_identities_only_token1] = ACTIONS(3264), - [aux_sym_identity_agent_token1] = ACTIONS(3264), - [aux_sym_identity_file_token1] = ACTIONS(3264), - [aux_sym_ignore_unknown_token1] = ACTIONS(3264), - [aux_sym_include_token1] = ACTIONS(3264), - [aux_sym_ip_qos_token1] = ACTIONS(3264), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3264), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3264), - [aux_sym_kex_algorithms_token1] = ACTIONS(3264), - [aux_sym_known_hosts_command_token1] = ACTIONS(3264), - [aux_sym_local_command_token1] = ACTIONS(3264), - [aux_sym_local_forward_token1] = ACTIONS(3264), - [aux_sym_log_level_token1] = ACTIONS(3264), - [aux_sym_log_verbose_token1] = ACTIONS(3264), - [aux_sym_macs_token1] = ACTIONS(3264), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3264), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3264), - [aux_sym_password_authentication_token1] = ACTIONS(3264), - [aux_sym_permit_local_command_token1] = ACTIONS(3264), - [aux_sym_permit_remote_open_token1] = ACTIONS(3264), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3264), - [aux_sym_port_token1] = ACTIONS(3264), - [aux_sym_preferred_authentications_token1] = ACTIONS(3264), - [aux_sym_protocol_token1] = ACTIONS(3264), - [aux_sym_proxy_command_token1] = ACTIONS(3264), - [aux_sym_proxy_jump_token1] = ACTIONS(3264), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3264), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3264), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3264), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3264), - [aux_sym_rekey_limit_token1] = ACTIONS(3264), - [aux_sym_remote_command_token1] = ACTIONS(3264), - [aux_sym_remote_forward_token1] = ACTIONS(3264), - [aux_sym_request_tty_token1] = ACTIONS(3264), - [aux_sym_required_rsa_size_token1] = ACTIONS(3264), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3264), - [aux_sym_security_key_provider_token1] = ACTIONS(3264), - [aux_sym_send_env_token1] = ACTIONS(3264), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3264), - [aux_sym_server_alive_interval_token1] = ACTIONS(3264), - [aux_sym_session_type_token1] = ACTIONS(3264), - [aux_sym_set_env_token1] = ACTIONS(3264), - [aux_sym_stdin_null_token1] = ACTIONS(3264), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3264), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3264), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3264), - [aux_sym_syslog_facility_token1] = ACTIONS(3264), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3264), - [aux_sym_keep_alive_token1] = ACTIONS(3264), - [aux_sym_tag_token1] = ACTIONS(3264), - [aux_sym_tunnel_token1] = ACTIONS(3266), - [aux_sym_tunnel_device_token1] = ACTIONS(3264), - [aux_sym_update_host_keys_token1] = ACTIONS(3264), - [aux_sym_use_keychain_token1] = ACTIONS(3264), - [aux_sym_use_roaming_token1] = ACTIONS(3264), - [aux_sym_user_token1] = ACTIONS(3266), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3264), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3264), - [aux_sym_visual_host_key_token1] = ACTIONS(3264), - [aux_sym_xauth_location_token1] = ACTIONS(3264), + [ts_builtin_sym_end] = ACTIONS(3279), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3281), + [aux_sym_match_token1] = ACTIONS(3279), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3279), + [aux_sym_address_family_token1] = ACTIONS(3279), + [aux_sym_batch_mode_token1] = ACTIONS(3279), + [aux_sym_bind_address_token1] = ACTIONS(3279), + [aux_sym_bind_interface_token1] = ACTIONS(3279), + [aux_sym_canonical_domains_token1] = ACTIONS(3279), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3279), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3279), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3279), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3279), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3279), + [aux_sym_certificate_file_token1] = ACTIONS(3279), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3279), + [aux_sym_channel_timeout_token1] = ACTIONS(3279), + [aux_sym_check_host_ip_token1] = ACTIONS(3279), + [aux_sym_ciphers_token1] = ACTIONS(3279), + [aux_sym_cipher_token1] = ACTIONS(3281), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3279), + [aux_sym_compression_token1] = ACTIONS(3279), + [aux_sym_connection_attempts_token1] = ACTIONS(3279), + [aux_sym_connect_timeout_token1] = ACTIONS(3279), + [aux_sym_control_master_token1] = ACTIONS(3279), + [aux_sym_control_path_token1] = ACTIONS(3279), + [aux_sym_control_persist_token1] = ACTIONS(3279), + [aux_sym_dynamic_forward_token1] = ACTIONS(3279), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3279), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3279), + [aux_sym_escape_char_token1] = ACTIONS(3279), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3279), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3279), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3279), + [aux_sym_forward_agent_token1] = ACTIONS(3279), + [aux_sym_forward_x11_token1] = ACTIONS(3281), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3279), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3279), + [aux_sym_gateway_ports_token1] = ACTIONS(3279), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3279), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3279), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3279), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3279), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3279), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3279), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3279), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3279), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3279), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3279), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3279), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3279), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3279), + [aux_sym_host_key_alias_token1] = ACTIONS(3279), + [aux_sym_hostname_token1] = ACTIONS(3279), + [aux_sym_identities_only_token1] = ACTIONS(3279), + [aux_sym_identity_agent_token1] = ACTIONS(3279), + [aux_sym_identity_file_token1] = ACTIONS(3279), + [aux_sym_ignore_unknown_token1] = ACTIONS(3279), + [aux_sym_include_token1] = ACTIONS(3279), + [aux_sym_ip_qos_token1] = ACTIONS(3279), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3279), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3279), + [aux_sym_kex_algorithms_token1] = ACTIONS(3279), + [aux_sym_known_hosts_command_token1] = ACTIONS(3279), + [aux_sym_local_command_token1] = ACTIONS(3279), + [aux_sym_local_forward_token1] = ACTIONS(3279), + [aux_sym_log_level_token1] = ACTIONS(3279), + [aux_sym_log_verbose_token1] = ACTIONS(3279), + [aux_sym_macs_token1] = ACTIONS(3279), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3279), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3279), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3279), + [aux_sym_password_authentication_token1] = ACTIONS(3279), + [aux_sym_permit_local_command_token1] = ACTIONS(3279), + [aux_sym_permit_remote_open_token1] = ACTIONS(3279), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3279), + [aux_sym_port_token1] = ACTIONS(3279), + [aux_sym_preferred_authentications_token1] = ACTIONS(3279), + [aux_sym_protocol_token1] = ACTIONS(3279), + [aux_sym_proxy_command_token1] = ACTIONS(3279), + [aux_sym_proxy_jump_token1] = ACTIONS(3279), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3279), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3279), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3279), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3279), + [aux_sym_rekey_limit_token1] = ACTIONS(3279), + [aux_sym_remote_command_token1] = ACTIONS(3279), + [aux_sym_remote_forward_token1] = ACTIONS(3279), + [aux_sym_request_tty_token1] = ACTIONS(3279), + [aux_sym_required_rsa_size_token1] = ACTIONS(3279), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3279), + [aux_sym_security_key_provider_token1] = ACTIONS(3279), + [aux_sym_send_env_token1] = ACTIONS(3279), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3279), + [aux_sym_server_alive_interval_token1] = ACTIONS(3279), + [aux_sym_session_type_token1] = ACTIONS(3279), + [aux_sym_set_env_token1] = ACTIONS(3279), + [aux_sym_stdin_null_token1] = ACTIONS(3279), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3279), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3279), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3279), + [aux_sym_syslog_facility_token1] = ACTIONS(3279), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3279), + [aux_sym_keep_alive_token1] = ACTIONS(3279), + [aux_sym_tag_token1] = ACTIONS(3279), + [aux_sym_tunnel_token1] = ACTIONS(3281), + [aux_sym_tunnel_device_token1] = ACTIONS(3279), + [aux_sym_update_host_keys_token1] = ACTIONS(3279), + [aux_sym_use_keychain_token1] = ACTIONS(3279), + [aux_sym_use_roaming_token1] = ACTIONS(3279), + [aux_sym_user_token1] = ACTIONS(3281), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3279), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3279), + [aux_sym_visual_host_key_token1] = ACTIONS(3279), + [aux_sym_xauth_location_token1] = ACTIONS(3279), }, [535] = { - [ts_builtin_sym_end] = ACTIONS(3268), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3270), - [aux_sym_match_token1] = ACTIONS(3268), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3268), - [aux_sym_address_family_token1] = ACTIONS(3268), - [aux_sym_batch_mode_token1] = ACTIONS(3268), - [aux_sym_bind_address_token1] = ACTIONS(3268), - [aux_sym_bind_interface_token1] = ACTIONS(3268), - [aux_sym_canonical_domains_token1] = ACTIONS(3268), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3268), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3268), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3268), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3268), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3268), - [aux_sym_certificate_file_token1] = ACTIONS(3268), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3268), - [aux_sym_channel_timeout_token1] = ACTIONS(3268), - [aux_sym_check_host_ip_token1] = ACTIONS(3268), - [aux_sym_ciphers_token1] = ACTIONS(3268), - [aux_sym_cipher_token1] = ACTIONS(3270), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3268), - [aux_sym_compression_token1] = ACTIONS(3268), - [aux_sym_connection_attempts_token1] = ACTIONS(3268), - [aux_sym_connect_timeout_token1] = ACTIONS(3268), - [aux_sym_control_master_token1] = ACTIONS(3268), - [aux_sym_control_path_token1] = ACTIONS(3268), - [aux_sym_control_persist_token1] = ACTIONS(3268), - [aux_sym_dynamic_forward_token1] = ACTIONS(3268), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3268), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3268), - [aux_sym_escape_char_token1] = ACTIONS(3268), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3268), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3268), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3268), - [aux_sym_forward_agent_token1] = ACTIONS(3268), - [aux_sym_forward_x11_token1] = ACTIONS(3270), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3268), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3268), - [aux_sym_gateway_ports_token1] = ACTIONS(3268), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3268), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3268), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3268), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3268), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3268), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3268), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3268), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3268), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3268), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3268), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3268), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3268), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3268), - [aux_sym_host_key_alias_token1] = ACTIONS(3268), - [aux_sym_hostname_token1] = ACTIONS(3268), - [aux_sym_identities_only_token1] = ACTIONS(3268), - [aux_sym_identity_agent_token1] = ACTIONS(3268), - [aux_sym_identity_file_token1] = ACTIONS(3268), - [aux_sym_ignore_unknown_token1] = ACTIONS(3268), - [aux_sym_include_token1] = ACTIONS(3268), - [aux_sym_ip_qos_token1] = ACTIONS(3268), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3268), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3268), - [aux_sym_kex_algorithms_token1] = ACTIONS(3268), - [aux_sym_known_hosts_command_token1] = ACTIONS(3268), - [aux_sym_local_command_token1] = ACTIONS(3268), - [aux_sym_local_forward_token1] = ACTIONS(3268), - [aux_sym_log_level_token1] = ACTIONS(3268), - [aux_sym_log_verbose_token1] = ACTIONS(3268), - [aux_sym_macs_token1] = ACTIONS(3268), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3268), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3268), - [aux_sym_password_authentication_token1] = ACTIONS(3268), - [aux_sym_permit_local_command_token1] = ACTIONS(3268), - [aux_sym_permit_remote_open_token1] = ACTIONS(3268), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3268), - [aux_sym_port_token1] = ACTIONS(3268), - [aux_sym_preferred_authentications_token1] = ACTIONS(3268), - [aux_sym_protocol_token1] = ACTIONS(3268), - [aux_sym_proxy_command_token1] = ACTIONS(3268), - [aux_sym_proxy_jump_token1] = ACTIONS(3268), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3268), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3268), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3268), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3268), - [aux_sym_rekey_limit_token1] = ACTIONS(3268), - [aux_sym_remote_command_token1] = ACTIONS(3268), - [aux_sym_remote_forward_token1] = ACTIONS(3268), - [aux_sym_request_tty_token1] = ACTIONS(3268), - [aux_sym_required_rsa_size_token1] = ACTIONS(3268), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3268), - [aux_sym_security_key_provider_token1] = ACTIONS(3268), - [aux_sym_send_env_token1] = ACTIONS(3268), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3268), - [aux_sym_server_alive_interval_token1] = ACTIONS(3268), - [aux_sym_session_type_token1] = ACTIONS(3268), - [aux_sym_set_env_token1] = ACTIONS(3268), - [aux_sym_stdin_null_token1] = ACTIONS(3268), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3268), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3268), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3268), - [aux_sym_syslog_facility_token1] = ACTIONS(3268), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3268), - [aux_sym_keep_alive_token1] = ACTIONS(3268), - [aux_sym_tag_token1] = ACTIONS(3268), - [aux_sym_tunnel_token1] = ACTIONS(3270), - [aux_sym_tunnel_device_token1] = ACTIONS(3268), - [aux_sym_update_host_keys_token1] = ACTIONS(3268), - [aux_sym_use_keychain_token1] = ACTIONS(3268), - [aux_sym_use_roaming_token1] = ACTIONS(3268), - [aux_sym_user_token1] = ACTIONS(3270), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3268), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3268), - [aux_sym_visual_host_key_token1] = ACTIONS(3268), - [aux_sym_xauth_location_token1] = ACTIONS(3268), + [ts_builtin_sym_end] = ACTIONS(1097), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1099), + [aux_sym_match_token1] = ACTIONS(1097), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1097), + [aux_sym_address_family_token1] = ACTIONS(1097), + [aux_sym_batch_mode_token1] = ACTIONS(1097), + [aux_sym_bind_address_token1] = ACTIONS(1097), + [aux_sym_bind_interface_token1] = ACTIONS(1097), + [aux_sym_canonical_domains_token1] = ACTIONS(1097), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1097), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1097), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1097), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1097), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1097), + [aux_sym_certificate_file_token1] = ACTIONS(1097), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1097), + [aux_sym_channel_timeout_token1] = ACTIONS(1097), + [aux_sym_check_host_ip_token1] = ACTIONS(1097), + [aux_sym_ciphers_token1] = ACTIONS(1097), + [aux_sym_cipher_token1] = ACTIONS(1099), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1097), + [aux_sym_compression_token1] = ACTIONS(1097), + [aux_sym_connection_attempts_token1] = ACTIONS(1097), + [aux_sym_connect_timeout_token1] = ACTIONS(1097), + [aux_sym_control_master_token1] = ACTIONS(1097), + [aux_sym_control_path_token1] = ACTIONS(1097), + [aux_sym_control_persist_token1] = ACTIONS(1097), + [aux_sym_dynamic_forward_token1] = ACTIONS(1097), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1097), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1097), + [aux_sym_escape_char_token1] = ACTIONS(1097), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1097), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1097), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1097), + [aux_sym_forward_agent_token1] = ACTIONS(1097), + [aux_sym_forward_x11_token1] = ACTIONS(1099), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1097), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1097), + [aux_sym_gateway_ports_token1] = ACTIONS(1097), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1097), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1097), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1097), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1097), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1097), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1097), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1097), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1097), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1097), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1097), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1097), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1097), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1097), + [aux_sym_host_key_alias_token1] = ACTIONS(1097), + [aux_sym_hostname_token1] = ACTIONS(1097), + [aux_sym_identities_only_token1] = ACTIONS(1097), + [aux_sym_identity_agent_token1] = ACTIONS(1097), + [aux_sym_identity_file_token1] = ACTIONS(1097), + [aux_sym_ignore_unknown_token1] = ACTIONS(1097), + [aux_sym_include_token1] = ACTIONS(1097), + [aux_sym_ip_qos_token1] = ACTIONS(1097), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1097), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1097), + [aux_sym_kex_algorithms_token1] = ACTIONS(1097), + [aux_sym_known_hosts_command_token1] = ACTIONS(1097), + [aux_sym_local_command_token1] = ACTIONS(1097), + [aux_sym_local_forward_token1] = ACTIONS(1097), + [aux_sym_log_level_token1] = ACTIONS(1097), + [aux_sym_log_verbose_token1] = ACTIONS(1097), + [aux_sym_macs_token1] = ACTIONS(1097), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1097), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1097), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1097), + [aux_sym_password_authentication_token1] = ACTIONS(1097), + [aux_sym_permit_local_command_token1] = ACTIONS(1097), + [aux_sym_permit_remote_open_token1] = ACTIONS(1097), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1097), + [aux_sym_port_token1] = ACTIONS(1097), + [aux_sym_preferred_authentications_token1] = ACTIONS(1097), + [aux_sym_protocol_token1] = ACTIONS(1097), + [aux_sym_proxy_command_token1] = ACTIONS(1097), + [aux_sym_proxy_jump_token1] = ACTIONS(1097), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1097), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1097), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1097), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1097), + [aux_sym_rekey_limit_token1] = ACTIONS(1097), + [aux_sym_remote_command_token1] = ACTIONS(1097), + [aux_sym_remote_forward_token1] = ACTIONS(1097), + [aux_sym_request_tty_token1] = ACTIONS(1097), + [aux_sym_required_rsa_size_token1] = ACTIONS(1097), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1097), + [aux_sym_security_key_provider_token1] = ACTIONS(1097), + [aux_sym_send_env_token1] = ACTIONS(1097), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1097), + [aux_sym_server_alive_interval_token1] = ACTIONS(1097), + [aux_sym_session_type_token1] = ACTIONS(1097), + [aux_sym_set_env_token1] = ACTIONS(1097), + [aux_sym_stdin_null_token1] = ACTIONS(1097), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1097), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1097), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1097), + [aux_sym_syslog_facility_token1] = ACTIONS(1097), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1097), + [aux_sym_keep_alive_token1] = ACTIONS(1097), + [aux_sym_tag_token1] = ACTIONS(1097), + [aux_sym_tunnel_token1] = ACTIONS(1099), + [aux_sym_tunnel_device_token1] = ACTIONS(1097), + [aux_sym_update_host_keys_token1] = ACTIONS(1097), + [aux_sym_use_keychain_token1] = ACTIONS(1097), + [aux_sym_use_roaming_token1] = ACTIONS(1097), + [aux_sym_user_token1] = ACTIONS(1099), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1097), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1097), + [aux_sym_visual_host_key_token1] = ACTIONS(1097), + [aux_sym_xauth_location_token1] = ACTIONS(1097), }, [536] = { - [ts_builtin_sym_end] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3274), - [aux_sym_match_token1] = ACTIONS(3272), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3272), - [aux_sym_address_family_token1] = ACTIONS(3272), - [aux_sym_batch_mode_token1] = ACTIONS(3272), - [aux_sym_bind_address_token1] = ACTIONS(3272), - [aux_sym_bind_interface_token1] = ACTIONS(3272), - [aux_sym_canonical_domains_token1] = ACTIONS(3272), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3272), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3272), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3272), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3272), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3272), - [aux_sym_certificate_file_token1] = ACTIONS(3272), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3272), - [aux_sym_channel_timeout_token1] = ACTIONS(3272), - [aux_sym_check_host_ip_token1] = ACTIONS(3272), - [aux_sym_ciphers_token1] = ACTIONS(3272), - [aux_sym_cipher_token1] = ACTIONS(3274), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3272), - [aux_sym_compression_token1] = ACTIONS(3272), - [aux_sym_connection_attempts_token1] = ACTIONS(3272), - [aux_sym_connect_timeout_token1] = ACTIONS(3272), - [aux_sym_control_master_token1] = ACTIONS(3272), - [aux_sym_control_path_token1] = ACTIONS(3272), - [aux_sym_control_persist_token1] = ACTIONS(3272), - [aux_sym_dynamic_forward_token1] = ACTIONS(3272), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3272), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3272), - [aux_sym_escape_char_token1] = ACTIONS(3272), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3272), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3272), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3272), - [aux_sym_forward_agent_token1] = ACTIONS(3272), - [aux_sym_forward_x11_token1] = ACTIONS(3274), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3272), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3272), - [aux_sym_gateway_ports_token1] = ACTIONS(3272), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3272), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3272), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3272), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3272), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3272), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3272), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3272), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3272), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3272), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3272), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3272), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3272), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3272), - [aux_sym_host_key_alias_token1] = ACTIONS(3272), - [aux_sym_hostname_token1] = ACTIONS(3272), - [aux_sym_identities_only_token1] = ACTIONS(3272), - [aux_sym_identity_agent_token1] = ACTIONS(3272), - [aux_sym_identity_file_token1] = ACTIONS(3272), - [aux_sym_ignore_unknown_token1] = ACTIONS(3272), - [aux_sym_include_token1] = ACTIONS(3272), - [aux_sym_ip_qos_token1] = ACTIONS(3272), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3272), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3272), - [aux_sym_kex_algorithms_token1] = ACTIONS(3272), - [aux_sym_known_hosts_command_token1] = ACTIONS(3272), - [aux_sym_local_command_token1] = ACTIONS(3272), - [aux_sym_local_forward_token1] = ACTIONS(3272), - [aux_sym_log_level_token1] = ACTIONS(3272), - [aux_sym_log_verbose_token1] = ACTIONS(3272), - [aux_sym_macs_token1] = ACTIONS(3272), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3272), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3272), - [aux_sym_password_authentication_token1] = ACTIONS(3272), - [aux_sym_permit_local_command_token1] = ACTIONS(3272), - [aux_sym_permit_remote_open_token1] = ACTIONS(3272), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3272), - [aux_sym_port_token1] = ACTIONS(3272), - [aux_sym_preferred_authentications_token1] = ACTIONS(3272), - [aux_sym_protocol_token1] = ACTIONS(3272), - [aux_sym_proxy_command_token1] = ACTIONS(3272), - [aux_sym_proxy_jump_token1] = ACTIONS(3272), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3272), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3272), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3272), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3272), - [aux_sym_rekey_limit_token1] = ACTIONS(3272), - [aux_sym_remote_command_token1] = ACTIONS(3272), - [aux_sym_remote_forward_token1] = ACTIONS(3272), - [aux_sym_request_tty_token1] = ACTIONS(3272), - [aux_sym_required_rsa_size_token1] = ACTIONS(3272), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3272), - [aux_sym_security_key_provider_token1] = ACTIONS(3272), - [aux_sym_send_env_token1] = ACTIONS(3272), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3272), - [aux_sym_server_alive_interval_token1] = ACTIONS(3272), - [aux_sym_session_type_token1] = ACTIONS(3272), - [aux_sym_set_env_token1] = ACTIONS(3272), - [aux_sym_stdin_null_token1] = ACTIONS(3272), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3272), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3272), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3272), - [aux_sym_syslog_facility_token1] = ACTIONS(3272), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3272), - [aux_sym_keep_alive_token1] = ACTIONS(3272), - [aux_sym_tag_token1] = ACTIONS(3272), - [aux_sym_tunnel_token1] = ACTIONS(3274), - [aux_sym_tunnel_device_token1] = ACTIONS(3272), - [aux_sym_update_host_keys_token1] = ACTIONS(3272), - [aux_sym_use_keychain_token1] = ACTIONS(3272), - [aux_sym_use_roaming_token1] = ACTIONS(3272), - [aux_sym_user_token1] = ACTIONS(3274), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3272), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3272), - [aux_sym_visual_host_key_token1] = ACTIONS(3272), - [aux_sym_xauth_location_token1] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(1235), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1237), + [aux_sym_match_token1] = ACTIONS(1235), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1235), + [aux_sym_address_family_token1] = ACTIONS(1235), + [aux_sym_batch_mode_token1] = ACTIONS(1235), + [aux_sym_bind_address_token1] = ACTIONS(1235), + [aux_sym_bind_interface_token1] = ACTIONS(1235), + [aux_sym_canonical_domains_token1] = ACTIONS(1235), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1235), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1235), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1235), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1235), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1235), + [aux_sym_certificate_file_token1] = ACTIONS(1235), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1235), + [aux_sym_channel_timeout_token1] = ACTIONS(1235), + [aux_sym_check_host_ip_token1] = ACTIONS(1235), + [aux_sym_ciphers_token1] = ACTIONS(1235), + [aux_sym_cipher_token1] = ACTIONS(1237), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1235), + [aux_sym_compression_token1] = ACTIONS(1235), + [aux_sym_connection_attempts_token1] = ACTIONS(1235), + [aux_sym_connect_timeout_token1] = ACTIONS(1235), + [aux_sym_control_master_token1] = ACTIONS(1235), + [aux_sym_control_path_token1] = ACTIONS(1235), + [aux_sym_control_persist_token1] = ACTIONS(1235), + [aux_sym_dynamic_forward_token1] = ACTIONS(1235), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1235), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1235), + [aux_sym_escape_char_token1] = ACTIONS(1235), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1235), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1235), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1235), + [aux_sym_forward_agent_token1] = ACTIONS(1235), + [aux_sym_forward_x11_token1] = ACTIONS(1237), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1235), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1235), + [aux_sym_gateway_ports_token1] = ACTIONS(1235), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1235), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1235), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1235), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1235), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1235), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1235), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1235), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1235), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1235), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1235), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1235), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1235), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1235), + [aux_sym_host_key_alias_token1] = ACTIONS(1235), + [aux_sym_hostname_token1] = ACTIONS(1235), + [aux_sym_identities_only_token1] = ACTIONS(1235), + [aux_sym_identity_agent_token1] = ACTIONS(1235), + [aux_sym_identity_file_token1] = ACTIONS(1235), + [aux_sym_ignore_unknown_token1] = ACTIONS(1235), + [aux_sym_include_token1] = ACTIONS(1235), + [aux_sym_ip_qos_token1] = ACTIONS(1235), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1235), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1235), + [aux_sym_kex_algorithms_token1] = ACTIONS(1235), + [aux_sym_known_hosts_command_token1] = ACTIONS(1235), + [aux_sym_local_command_token1] = ACTIONS(1235), + [aux_sym_local_forward_token1] = ACTIONS(1235), + [aux_sym_log_level_token1] = ACTIONS(1235), + [aux_sym_log_verbose_token1] = ACTIONS(1235), + [aux_sym_macs_token1] = ACTIONS(1235), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1235), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1235), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1235), + [aux_sym_password_authentication_token1] = ACTIONS(1235), + [aux_sym_permit_local_command_token1] = ACTIONS(1235), + [aux_sym_permit_remote_open_token1] = ACTIONS(1235), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1235), + [aux_sym_port_token1] = ACTIONS(1235), + [aux_sym_preferred_authentications_token1] = ACTIONS(1235), + [aux_sym_protocol_token1] = ACTIONS(1235), + [aux_sym_proxy_command_token1] = ACTIONS(1235), + [aux_sym_proxy_jump_token1] = ACTIONS(1235), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1235), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1235), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1235), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1235), + [aux_sym_rekey_limit_token1] = ACTIONS(1235), + [aux_sym_remote_command_token1] = ACTIONS(1235), + [aux_sym_remote_forward_token1] = ACTIONS(1235), + [aux_sym_request_tty_token1] = ACTIONS(1235), + [aux_sym_required_rsa_size_token1] = ACTIONS(1235), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1235), + [aux_sym_security_key_provider_token1] = ACTIONS(1235), + [aux_sym_send_env_token1] = ACTIONS(1235), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1235), + [aux_sym_server_alive_interval_token1] = ACTIONS(1235), + [aux_sym_session_type_token1] = ACTIONS(1235), + [aux_sym_set_env_token1] = ACTIONS(1235), + [aux_sym_stdin_null_token1] = ACTIONS(1235), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1235), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1235), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1235), + [aux_sym_syslog_facility_token1] = ACTIONS(1235), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1235), + [aux_sym_keep_alive_token1] = ACTIONS(1235), + [aux_sym_tag_token1] = ACTIONS(1235), + [aux_sym_tunnel_token1] = ACTIONS(1237), + [aux_sym_tunnel_device_token1] = ACTIONS(1235), + [aux_sym_update_host_keys_token1] = ACTIONS(1235), + [aux_sym_use_keychain_token1] = ACTIONS(1235), + [aux_sym_use_roaming_token1] = ACTIONS(1235), + [aux_sym_user_token1] = ACTIONS(1237), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1235), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1235), + [aux_sym_visual_host_key_token1] = ACTIONS(1235), + [aux_sym_xauth_location_token1] = ACTIONS(1235), }, [537] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1454), - [aux_sym_match_token1] = ACTIONS(1452), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1452), - [aux_sym_address_family_token1] = ACTIONS(1452), - [aux_sym_batch_mode_token1] = ACTIONS(1452), - [aux_sym_bind_address_token1] = ACTIONS(1452), - [aux_sym_bind_interface_token1] = ACTIONS(1452), - [aux_sym_canonical_domains_token1] = ACTIONS(1452), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1452), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1452), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1452), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1452), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1452), - [aux_sym_certificate_file_token1] = ACTIONS(1452), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1452), - [aux_sym_channel_timeout_token1] = ACTIONS(1452), - [aux_sym_check_host_ip_token1] = ACTIONS(1452), - [aux_sym_ciphers_token1] = ACTIONS(1452), - [aux_sym_cipher_token1] = ACTIONS(1454), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1452), - [aux_sym_compression_token1] = ACTIONS(1452), - [aux_sym_connection_attempts_token1] = ACTIONS(1452), - [aux_sym_connect_timeout_token1] = ACTIONS(1452), - [aux_sym_control_master_token1] = ACTIONS(1452), - [aux_sym_control_path_token1] = ACTIONS(1452), - [aux_sym_control_persist_token1] = ACTIONS(1452), - [aux_sym_dynamic_forward_token1] = ACTIONS(1452), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1452), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1452), - [aux_sym_escape_char_token1] = ACTIONS(1452), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1452), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1452), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1452), - [aux_sym_forward_agent_token1] = ACTIONS(1452), - [aux_sym_forward_x11_token1] = ACTIONS(1454), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1452), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1452), - [aux_sym_gateway_ports_token1] = ACTIONS(1452), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1452), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1452), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1452), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1452), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1452), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1452), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1452), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1452), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1452), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1452), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1452), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1452), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1452), - [aux_sym_host_key_alias_token1] = ACTIONS(1452), - [aux_sym_hostname_token1] = ACTIONS(1452), - [aux_sym_identities_only_token1] = ACTIONS(1452), - [aux_sym_identity_agent_token1] = ACTIONS(1452), - [aux_sym_identity_file_token1] = ACTIONS(1452), - [aux_sym_ignore_unknown_token1] = ACTIONS(1452), - [aux_sym_include_token1] = ACTIONS(1452), - [aux_sym_ip_qos_token1] = ACTIONS(1452), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1452), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1452), - [aux_sym_kex_algorithms_token1] = ACTIONS(1452), - [aux_sym_known_hosts_command_token1] = ACTIONS(1452), - [aux_sym_local_command_token1] = ACTIONS(1452), - [aux_sym_local_forward_token1] = ACTIONS(1452), - [aux_sym_log_level_token1] = ACTIONS(1452), - [aux_sym_log_verbose_token1] = ACTIONS(1452), - [aux_sym_macs_token1] = ACTIONS(1452), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1452), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1452), - [aux_sym_password_authentication_token1] = ACTIONS(1452), - [aux_sym_permit_local_command_token1] = ACTIONS(1452), - [aux_sym_permit_remote_open_token1] = ACTIONS(1452), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1452), - [aux_sym_port_token1] = ACTIONS(1452), - [aux_sym_preferred_authentications_token1] = ACTIONS(1452), - [aux_sym_protocol_token1] = ACTIONS(1452), - [aux_sym_proxy_command_token1] = ACTIONS(1452), - [aux_sym_proxy_jump_token1] = ACTIONS(1452), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1452), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1452), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1452), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1452), - [aux_sym_rekey_limit_token1] = ACTIONS(1452), - [aux_sym_remote_command_token1] = ACTIONS(1452), - [aux_sym_remote_forward_token1] = ACTIONS(1452), - [aux_sym_request_tty_token1] = ACTIONS(1452), - [aux_sym_required_rsa_size_token1] = ACTIONS(1452), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1452), - [aux_sym_security_key_provider_token1] = ACTIONS(1452), - [aux_sym_send_env_token1] = ACTIONS(1452), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1452), - [aux_sym_server_alive_interval_token1] = ACTIONS(1452), - [aux_sym_session_type_token1] = ACTIONS(1452), - [aux_sym_set_env_token1] = ACTIONS(1452), - [aux_sym_stdin_null_token1] = ACTIONS(1452), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1452), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1452), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1452), - [aux_sym_syslog_facility_token1] = ACTIONS(1452), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1452), - [aux_sym_keep_alive_token1] = ACTIONS(1452), - [aux_sym_tag_token1] = ACTIONS(1452), - [aux_sym_tunnel_token1] = ACTIONS(1454), - [aux_sym_tunnel_device_token1] = ACTIONS(1452), - [aux_sym_update_host_keys_token1] = ACTIONS(1452), - [aux_sym_use_keychain_token1] = ACTIONS(1452), - [aux_sym_use_roaming_token1] = ACTIONS(1452), - [aux_sym_user_token1] = ACTIONS(1454), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1452), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1452), - [aux_sym_visual_host_key_token1] = ACTIONS(1452), - [aux_sym_xauth_location_token1] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(3283), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3285), + [aux_sym_match_token1] = ACTIONS(3283), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3283), + [aux_sym_address_family_token1] = ACTIONS(3283), + [aux_sym_batch_mode_token1] = ACTIONS(3283), + [aux_sym_bind_address_token1] = ACTIONS(3283), + [aux_sym_bind_interface_token1] = ACTIONS(3283), + [aux_sym_canonical_domains_token1] = ACTIONS(3283), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3283), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3283), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3283), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3283), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3283), + [aux_sym_certificate_file_token1] = ACTIONS(3283), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3283), + [aux_sym_channel_timeout_token1] = ACTIONS(3283), + [aux_sym_check_host_ip_token1] = ACTIONS(3283), + [aux_sym_ciphers_token1] = ACTIONS(3283), + [aux_sym_cipher_token1] = ACTIONS(3285), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3283), + [aux_sym_compression_token1] = ACTIONS(3283), + [aux_sym_connection_attempts_token1] = ACTIONS(3283), + [aux_sym_connect_timeout_token1] = ACTIONS(3283), + [aux_sym_control_master_token1] = ACTIONS(3283), + [aux_sym_control_path_token1] = ACTIONS(3283), + [aux_sym_control_persist_token1] = ACTIONS(3283), + [aux_sym_dynamic_forward_token1] = ACTIONS(3283), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3283), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3283), + [aux_sym_escape_char_token1] = ACTIONS(3283), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3283), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3283), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3283), + [aux_sym_forward_agent_token1] = ACTIONS(3283), + [aux_sym_forward_x11_token1] = ACTIONS(3285), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3283), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3283), + [aux_sym_gateway_ports_token1] = ACTIONS(3283), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3283), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3283), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3283), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3283), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3283), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3283), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3283), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3283), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3283), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3283), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3283), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3283), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3283), + [aux_sym_host_key_alias_token1] = ACTIONS(3283), + [aux_sym_hostname_token1] = ACTIONS(3283), + [aux_sym_identities_only_token1] = ACTIONS(3283), + [aux_sym_identity_agent_token1] = ACTIONS(3283), + [aux_sym_identity_file_token1] = ACTIONS(3283), + [aux_sym_ignore_unknown_token1] = ACTIONS(3283), + [aux_sym_include_token1] = ACTIONS(3283), + [aux_sym_ip_qos_token1] = ACTIONS(3283), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3283), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3283), + [aux_sym_kex_algorithms_token1] = ACTIONS(3283), + [aux_sym_known_hosts_command_token1] = ACTIONS(3283), + [aux_sym_local_command_token1] = ACTIONS(3283), + [aux_sym_local_forward_token1] = ACTIONS(3283), + [aux_sym_log_level_token1] = ACTIONS(3283), + [aux_sym_log_verbose_token1] = ACTIONS(3283), + [aux_sym_macs_token1] = ACTIONS(3283), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3283), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3283), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3283), + [aux_sym_password_authentication_token1] = ACTIONS(3283), + [aux_sym_permit_local_command_token1] = ACTIONS(3283), + [aux_sym_permit_remote_open_token1] = ACTIONS(3283), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3283), + [aux_sym_port_token1] = ACTIONS(3283), + [aux_sym_preferred_authentications_token1] = ACTIONS(3283), + [aux_sym_protocol_token1] = ACTIONS(3283), + [aux_sym_proxy_command_token1] = ACTIONS(3283), + [aux_sym_proxy_jump_token1] = ACTIONS(3283), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3283), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3283), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3283), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3283), + [aux_sym_rekey_limit_token1] = ACTIONS(3283), + [aux_sym_remote_command_token1] = ACTIONS(3283), + [aux_sym_remote_forward_token1] = ACTIONS(3283), + [aux_sym_request_tty_token1] = ACTIONS(3283), + [aux_sym_required_rsa_size_token1] = ACTIONS(3283), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3283), + [aux_sym_security_key_provider_token1] = ACTIONS(3283), + [aux_sym_send_env_token1] = ACTIONS(3283), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3283), + [aux_sym_server_alive_interval_token1] = ACTIONS(3283), + [aux_sym_session_type_token1] = ACTIONS(3283), + [aux_sym_set_env_token1] = ACTIONS(3283), + [aux_sym_stdin_null_token1] = ACTIONS(3283), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3283), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3283), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3283), + [aux_sym_syslog_facility_token1] = ACTIONS(3283), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3283), + [aux_sym_keep_alive_token1] = ACTIONS(3283), + [aux_sym_tag_token1] = ACTIONS(3283), + [aux_sym_tunnel_token1] = ACTIONS(3285), + [aux_sym_tunnel_device_token1] = ACTIONS(3283), + [aux_sym_update_host_keys_token1] = ACTIONS(3283), + [aux_sym_use_keychain_token1] = ACTIONS(3283), + [aux_sym_use_roaming_token1] = ACTIONS(3283), + [aux_sym_user_token1] = ACTIONS(3285), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3283), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3283), + [aux_sym_visual_host_key_token1] = ACTIONS(3283), + [aux_sym_xauth_location_token1] = ACTIONS(3283), }, [538] = { - [ts_builtin_sym_end] = ACTIONS(3276), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3278), - [aux_sym_match_token1] = ACTIONS(3276), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3276), - [aux_sym_address_family_token1] = ACTIONS(3276), - [aux_sym_batch_mode_token1] = ACTIONS(3276), - [aux_sym_bind_address_token1] = ACTIONS(3276), - [aux_sym_bind_interface_token1] = ACTIONS(3276), - [aux_sym_canonical_domains_token1] = ACTIONS(3276), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3276), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3276), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3276), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3276), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3276), - [aux_sym_certificate_file_token1] = ACTIONS(3276), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3276), - [aux_sym_channel_timeout_token1] = ACTIONS(3276), - [aux_sym_check_host_ip_token1] = ACTIONS(3276), - [aux_sym_ciphers_token1] = ACTIONS(3276), - [aux_sym_cipher_token1] = ACTIONS(3278), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3276), - [aux_sym_compression_token1] = ACTIONS(3276), - [aux_sym_connection_attempts_token1] = ACTIONS(3276), - [aux_sym_connect_timeout_token1] = ACTIONS(3276), - [aux_sym_control_master_token1] = ACTIONS(3276), - [aux_sym_control_path_token1] = ACTIONS(3276), - [aux_sym_control_persist_token1] = ACTIONS(3276), - [aux_sym_dynamic_forward_token1] = ACTIONS(3276), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3276), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3276), - [aux_sym_escape_char_token1] = ACTIONS(3276), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3276), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3276), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3276), - [aux_sym_forward_agent_token1] = ACTIONS(3276), - [aux_sym_forward_x11_token1] = ACTIONS(3278), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3276), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3276), - [aux_sym_gateway_ports_token1] = ACTIONS(3276), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3276), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3276), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3276), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3276), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3276), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3276), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3276), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3276), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3276), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3276), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3276), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3276), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3276), - [aux_sym_host_key_alias_token1] = ACTIONS(3276), - [aux_sym_hostname_token1] = ACTIONS(3276), - [aux_sym_identities_only_token1] = ACTIONS(3276), - [aux_sym_identity_agent_token1] = ACTIONS(3276), - [aux_sym_identity_file_token1] = ACTIONS(3276), - [aux_sym_ignore_unknown_token1] = ACTIONS(3276), - [aux_sym_include_token1] = ACTIONS(3276), - [aux_sym_ip_qos_token1] = ACTIONS(3276), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3276), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3276), - [aux_sym_kex_algorithms_token1] = ACTIONS(3276), - [aux_sym_known_hosts_command_token1] = ACTIONS(3276), - [aux_sym_local_command_token1] = ACTIONS(3276), - [aux_sym_local_forward_token1] = ACTIONS(3276), - [aux_sym_log_level_token1] = ACTIONS(3276), - [aux_sym_log_verbose_token1] = ACTIONS(3276), - [aux_sym_macs_token1] = ACTIONS(3276), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3276), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3276), - [aux_sym_password_authentication_token1] = ACTIONS(3276), - [aux_sym_permit_local_command_token1] = ACTIONS(3276), - [aux_sym_permit_remote_open_token1] = ACTIONS(3276), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3276), - [aux_sym_port_token1] = ACTIONS(3276), - [aux_sym_preferred_authentications_token1] = ACTIONS(3276), - [aux_sym_protocol_token1] = ACTIONS(3276), - [aux_sym_proxy_command_token1] = ACTIONS(3276), - [aux_sym_proxy_jump_token1] = ACTIONS(3276), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3276), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3276), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3276), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3276), - [aux_sym_rekey_limit_token1] = ACTIONS(3276), - [aux_sym_remote_command_token1] = ACTIONS(3276), - [aux_sym_remote_forward_token1] = ACTIONS(3276), - [aux_sym_request_tty_token1] = ACTIONS(3276), - [aux_sym_required_rsa_size_token1] = ACTIONS(3276), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3276), - [aux_sym_security_key_provider_token1] = ACTIONS(3276), - [aux_sym_send_env_token1] = ACTIONS(3276), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3276), - [aux_sym_server_alive_interval_token1] = ACTIONS(3276), - [aux_sym_session_type_token1] = ACTIONS(3276), - [aux_sym_set_env_token1] = ACTIONS(3276), - [aux_sym_stdin_null_token1] = ACTIONS(3276), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3276), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3276), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3276), - [aux_sym_syslog_facility_token1] = ACTIONS(3276), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3276), - [aux_sym_keep_alive_token1] = ACTIONS(3276), - [aux_sym_tag_token1] = ACTIONS(3276), - [aux_sym_tunnel_token1] = ACTIONS(3278), - [aux_sym_tunnel_device_token1] = ACTIONS(3276), - [aux_sym_update_host_keys_token1] = ACTIONS(3276), - [aux_sym_use_keychain_token1] = ACTIONS(3276), - [aux_sym_use_roaming_token1] = ACTIONS(3276), - [aux_sym_user_token1] = ACTIONS(3278), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3276), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3276), - [aux_sym_visual_host_key_token1] = ACTIONS(3276), - [aux_sym_xauth_location_token1] = ACTIONS(3276), + [ts_builtin_sym_end] = ACTIONS(3287), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3289), + [aux_sym_match_token1] = ACTIONS(3287), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3287), + [aux_sym_address_family_token1] = ACTIONS(3287), + [aux_sym_batch_mode_token1] = ACTIONS(3287), + [aux_sym_bind_address_token1] = ACTIONS(3287), + [aux_sym_bind_interface_token1] = ACTIONS(3287), + [aux_sym_canonical_domains_token1] = ACTIONS(3287), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3287), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3287), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3287), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3287), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3287), + [aux_sym_certificate_file_token1] = ACTIONS(3287), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3287), + [aux_sym_channel_timeout_token1] = ACTIONS(3287), + [aux_sym_check_host_ip_token1] = ACTIONS(3287), + [aux_sym_ciphers_token1] = ACTIONS(3287), + [aux_sym_cipher_token1] = ACTIONS(3289), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3287), + [aux_sym_compression_token1] = ACTIONS(3287), + [aux_sym_connection_attempts_token1] = ACTIONS(3287), + [aux_sym_connect_timeout_token1] = ACTIONS(3287), + [aux_sym_control_master_token1] = ACTIONS(3287), + [aux_sym_control_path_token1] = ACTIONS(3287), + [aux_sym_control_persist_token1] = ACTIONS(3287), + [aux_sym_dynamic_forward_token1] = ACTIONS(3287), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3287), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3287), + [aux_sym_escape_char_token1] = ACTIONS(3287), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3287), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3287), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3287), + [aux_sym_forward_agent_token1] = ACTIONS(3287), + [aux_sym_forward_x11_token1] = ACTIONS(3289), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3287), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3287), + [aux_sym_gateway_ports_token1] = ACTIONS(3287), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3287), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3287), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3287), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3287), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3287), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3287), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3287), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3287), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3287), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3287), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3287), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3287), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3287), + [aux_sym_host_key_alias_token1] = ACTIONS(3287), + [aux_sym_hostname_token1] = ACTIONS(3287), + [aux_sym_identities_only_token1] = ACTIONS(3287), + [aux_sym_identity_agent_token1] = ACTIONS(3287), + [aux_sym_identity_file_token1] = ACTIONS(3287), + [aux_sym_ignore_unknown_token1] = ACTIONS(3287), + [aux_sym_include_token1] = ACTIONS(3287), + [aux_sym_ip_qos_token1] = ACTIONS(3287), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3287), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3287), + [aux_sym_kex_algorithms_token1] = ACTIONS(3287), + [aux_sym_known_hosts_command_token1] = ACTIONS(3287), + [aux_sym_local_command_token1] = ACTIONS(3287), + [aux_sym_local_forward_token1] = ACTIONS(3287), + [aux_sym_log_level_token1] = ACTIONS(3287), + [aux_sym_log_verbose_token1] = ACTIONS(3287), + [aux_sym_macs_token1] = ACTIONS(3287), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3287), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3287), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3287), + [aux_sym_password_authentication_token1] = ACTIONS(3287), + [aux_sym_permit_local_command_token1] = ACTIONS(3287), + [aux_sym_permit_remote_open_token1] = ACTIONS(3287), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3287), + [aux_sym_port_token1] = ACTIONS(3287), + [aux_sym_preferred_authentications_token1] = ACTIONS(3287), + [aux_sym_protocol_token1] = ACTIONS(3287), + [aux_sym_proxy_command_token1] = ACTIONS(3287), + [aux_sym_proxy_jump_token1] = ACTIONS(3287), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3287), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3287), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3287), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3287), + [aux_sym_rekey_limit_token1] = ACTIONS(3287), + [aux_sym_remote_command_token1] = ACTIONS(3287), + [aux_sym_remote_forward_token1] = ACTIONS(3287), + [aux_sym_request_tty_token1] = ACTIONS(3287), + [aux_sym_required_rsa_size_token1] = ACTIONS(3287), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3287), + [aux_sym_security_key_provider_token1] = ACTIONS(3287), + [aux_sym_send_env_token1] = ACTIONS(3287), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3287), + [aux_sym_server_alive_interval_token1] = ACTIONS(3287), + [aux_sym_session_type_token1] = ACTIONS(3287), + [aux_sym_set_env_token1] = ACTIONS(3287), + [aux_sym_stdin_null_token1] = ACTIONS(3287), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3287), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3287), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3287), + [aux_sym_syslog_facility_token1] = ACTIONS(3287), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3287), + [aux_sym_keep_alive_token1] = ACTIONS(3287), + [aux_sym_tag_token1] = ACTIONS(3287), + [aux_sym_tunnel_token1] = ACTIONS(3289), + [aux_sym_tunnel_device_token1] = ACTIONS(3287), + [aux_sym_update_host_keys_token1] = ACTIONS(3287), + [aux_sym_use_keychain_token1] = ACTIONS(3287), + [aux_sym_use_roaming_token1] = ACTIONS(3287), + [aux_sym_user_token1] = ACTIONS(3289), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3287), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3287), + [aux_sym_visual_host_key_token1] = ACTIONS(3287), + [aux_sym_xauth_location_token1] = ACTIONS(3287), }, [539] = { - [ts_builtin_sym_end] = ACTIONS(3280), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3282), - [aux_sym_match_token1] = ACTIONS(3280), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3280), - [aux_sym_address_family_token1] = ACTIONS(3280), - [aux_sym_batch_mode_token1] = ACTIONS(3280), - [aux_sym_bind_address_token1] = ACTIONS(3280), - [aux_sym_bind_interface_token1] = ACTIONS(3280), - [aux_sym_canonical_domains_token1] = ACTIONS(3280), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3280), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3280), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3280), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3280), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3280), - [aux_sym_certificate_file_token1] = ACTIONS(3280), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3280), - [aux_sym_channel_timeout_token1] = ACTIONS(3280), - [aux_sym_check_host_ip_token1] = ACTIONS(3280), - [aux_sym_ciphers_token1] = ACTIONS(3280), - [aux_sym_cipher_token1] = ACTIONS(3282), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3280), - [aux_sym_compression_token1] = ACTIONS(3280), - [aux_sym_connection_attempts_token1] = ACTIONS(3280), - [aux_sym_connect_timeout_token1] = ACTIONS(3280), - [aux_sym_control_master_token1] = ACTIONS(3280), - [aux_sym_control_path_token1] = ACTIONS(3280), - [aux_sym_control_persist_token1] = ACTIONS(3280), - [aux_sym_dynamic_forward_token1] = ACTIONS(3280), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3280), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3280), - [aux_sym_escape_char_token1] = ACTIONS(3280), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3280), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3280), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3280), - [aux_sym_forward_agent_token1] = ACTIONS(3280), - [aux_sym_forward_x11_token1] = ACTIONS(3282), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3280), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3280), - [aux_sym_gateway_ports_token1] = ACTIONS(3280), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3280), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3280), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3280), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3280), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3280), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3280), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3280), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3280), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3280), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3280), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3280), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3280), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3280), - [aux_sym_host_key_alias_token1] = ACTIONS(3280), - [aux_sym_hostname_token1] = ACTIONS(3280), - [aux_sym_identities_only_token1] = ACTIONS(3280), - [aux_sym_identity_agent_token1] = ACTIONS(3280), - [aux_sym_identity_file_token1] = ACTIONS(3280), - [aux_sym_ignore_unknown_token1] = ACTIONS(3280), - [aux_sym_include_token1] = ACTIONS(3280), - [aux_sym_ip_qos_token1] = ACTIONS(3280), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3280), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3280), - [aux_sym_kex_algorithms_token1] = ACTIONS(3280), - [aux_sym_known_hosts_command_token1] = ACTIONS(3280), - [aux_sym_local_command_token1] = ACTIONS(3280), - [aux_sym_local_forward_token1] = ACTIONS(3280), - [aux_sym_log_level_token1] = ACTIONS(3280), - [aux_sym_log_verbose_token1] = ACTIONS(3280), - [aux_sym_macs_token1] = ACTIONS(3280), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3280), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3280), - [aux_sym_password_authentication_token1] = ACTIONS(3280), - [aux_sym_permit_local_command_token1] = ACTIONS(3280), - [aux_sym_permit_remote_open_token1] = ACTIONS(3280), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3280), - [aux_sym_port_token1] = ACTIONS(3280), - [aux_sym_preferred_authentications_token1] = ACTIONS(3280), - [aux_sym_protocol_token1] = ACTIONS(3280), - [aux_sym_proxy_command_token1] = ACTIONS(3280), - [aux_sym_proxy_jump_token1] = ACTIONS(3280), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3280), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3280), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3280), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3280), - [aux_sym_rekey_limit_token1] = ACTIONS(3280), - [aux_sym_remote_command_token1] = ACTIONS(3280), - [aux_sym_remote_forward_token1] = ACTIONS(3280), - [aux_sym_request_tty_token1] = ACTIONS(3280), - [aux_sym_required_rsa_size_token1] = ACTIONS(3280), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3280), - [aux_sym_security_key_provider_token1] = ACTIONS(3280), - [aux_sym_send_env_token1] = ACTIONS(3280), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3280), - [aux_sym_server_alive_interval_token1] = ACTIONS(3280), - [aux_sym_session_type_token1] = ACTIONS(3280), - [aux_sym_set_env_token1] = ACTIONS(3280), - [aux_sym_stdin_null_token1] = ACTIONS(3280), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3280), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3280), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3280), - [aux_sym_syslog_facility_token1] = ACTIONS(3280), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3280), - [aux_sym_keep_alive_token1] = ACTIONS(3280), - [aux_sym_tag_token1] = ACTIONS(3280), - [aux_sym_tunnel_token1] = ACTIONS(3282), - [aux_sym_tunnel_device_token1] = ACTIONS(3280), - [aux_sym_update_host_keys_token1] = ACTIONS(3280), - [aux_sym_use_keychain_token1] = ACTIONS(3280), - [aux_sym_use_roaming_token1] = ACTIONS(3280), - [aux_sym_user_token1] = ACTIONS(3282), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3280), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3280), - [aux_sym_visual_host_key_token1] = ACTIONS(3280), - [aux_sym_xauth_location_token1] = ACTIONS(3280), + [ts_builtin_sym_end] = ACTIONS(3291), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3293), + [aux_sym_match_token1] = ACTIONS(3291), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3291), + [aux_sym_address_family_token1] = ACTIONS(3291), + [aux_sym_batch_mode_token1] = ACTIONS(3291), + [aux_sym_bind_address_token1] = ACTIONS(3291), + [aux_sym_bind_interface_token1] = ACTIONS(3291), + [aux_sym_canonical_domains_token1] = ACTIONS(3291), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3291), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3291), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3291), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3291), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3291), + [aux_sym_certificate_file_token1] = ACTIONS(3291), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3291), + [aux_sym_channel_timeout_token1] = ACTIONS(3291), + [aux_sym_check_host_ip_token1] = ACTIONS(3291), + [aux_sym_ciphers_token1] = ACTIONS(3291), + [aux_sym_cipher_token1] = ACTIONS(3293), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3291), + [aux_sym_compression_token1] = ACTIONS(3291), + [aux_sym_connection_attempts_token1] = ACTIONS(3291), + [aux_sym_connect_timeout_token1] = ACTIONS(3291), + [aux_sym_control_master_token1] = ACTIONS(3291), + [aux_sym_control_path_token1] = ACTIONS(3291), + [aux_sym_control_persist_token1] = ACTIONS(3291), + [aux_sym_dynamic_forward_token1] = ACTIONS(3291), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3291), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3291), + [aux_sym_escape_char_token1] = ACTIONS(3291), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3291), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3291), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3291), + [aux_sym_forward_agent_token1] = ACTIONS(3291), + [aux_sym_forward_x11_token1] = ACTIONS(3293), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3291), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3291), + [aux_sym_gateway_ports_token1] = ACTIONS(3291), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3291), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3291), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3291), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3291), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3291), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3291), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3291), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3291), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3291), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3291), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3291), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3291), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3291), + [aux_sym_host_key_alias_token1] = ACTIONS(3291), + [aux_sym_hostname_token1] = ACTIONS(3291), + [aux_sym_identities_only_token1] = ACTIONS(3291), + [aux_sym_identity_agent_token1] = ACTIONS(3291), + [aux_sym_identity_file_token1] = ACTIONS(3291), + [aux_sym_ignore_unknown_token1] = ACTIONS(3291), + [aux_sym_include_token1] = ACTIONS(3291), + [aux_sym_ip_qos_token1] = ACTIONS(3291), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3291), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3291), + [aux_sym_kex_algorithms_token1] = ACTIONS(3291), + [aux_sym_known_hosts_command_token1] = ACTIONS(3291), + [aux_sym_local_command_token1] = ACTIONS(3291), + [aux_sym_local_forward_token1] = ACTIONS(3291), + [aux_sym_log_level_token1] = ACTIONS(3291), + [aux_sym_log_verbose_token1] = ACTIONS(3291), + [aux_sym_macs_token1] = ACTIONS(3291), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3291), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3291), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3291), + [aux_sym_password_authentication_token1] = ACTIONS(3291), + [aux_sym_permit_local_command_token1] = ACTIONS(3291), + [aux_sym_permit_remote_open_token1] = ACTIONS(3291), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3291), + [aux_sym_port_token1] = ACTIONS(3291), + [aux_sym_preferred_authentications_token1] = ACTIONS(3291), + [aux_sym_protocol_token1] = ACTIONS(3291), + [aux_sym_proxy_command_token1] = ACTIONS(3291), + [aux_sym_proxy_jump_token1] = ACTIONS(3291), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3291), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3291), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3291), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3291), + [aux_sym_rekey_limit_token1] = ACTIONS(3291), + [aux_sym_remote_command_token1] = ACTIONS(3291), + [aux_sym_remote_forward_token1] = ACTIONS(3291), + [aux_sym_request_tty_token1] = ACTIONS(3291), + [aux_sym_required_rsa_size_token1] = ACTIONS(3291), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3291), + [aux_sym_security_key_provider_token1] = ACTIONS(3291), + [aux_sym_send_env_token1] = ACTIONS(3291), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3291), + [aux_sym_server_alive_interval_token1] = ACTIONS(3291), + [aux_sym_session_type_token1] = ACTIONS(3291), + [aux_sym_set_env_token1] = ACTIONS(3291), + [aux_sym_stdin_null_token1] = ACTIONS(3291), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3291), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3291), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3291), + [aux_sym_syslog_facility_token1] = ACTIONS(3291), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3291), + [aux_sym_keep_alive_token1] = ACTIONS(3291), + [aux_sym_tag_token1] = ACTIONS(3291), + [aux_sym_tunnel_token1] = ACTIONS(3293), + [aux_sym_tunnel_device_token1] = ACTIONS(3291), + [aux_sym_update_host_keys_token1] = ACTIONS(3291), + [aux_sym_use_keychain_token1] = ACTIONS(3291), + [aux_sym_use_roaming_token1] = ACTIONS(3291), + [aux_sym_user_token1] = ACTIONS(3293), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3291), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3291), + [aux_sym_visual_host_key_token1] = ACTIONS(3291), + [aux_sym_xauth_location_token1] = ACTIONS(3291), }, [540] = { - [ts_builtin_sym_end] = ACTIONS(1266), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1268), - [aux_sym_match_token1] = ACTIONS(1266), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1266), - [aux_sym_address_family_token1] = ACTIONS(1266), - [aux_sym_batch_mode_token1] = ACTIONS(1266), - [aux_sym_bind_address_token1] = ACTIONS(1266), - [aux_sym_bind_interface_token1] = ACTIONS(1266), - [aux_sym_canonical_domains_token1] = ACTIONS(1266), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1266), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1266), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1266), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1266), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1266), - [aux_sym_certificate_file_token1] = ACTIONS(1266), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1266), - [aux_sym_channel_timeout_token1] = ACTIONS(1266), - [aux_sym_check_host_ip_token1] = ACTIONS(1266), - [aux_sym_ciphers_token1] = ACTIONS(1266), - [aux_sym_cipher_token1] = ACTIONS(1268), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1266), - [aux_sym_compression_token1] = ACTIONS(1266), - [aux_sym_connection_attempts_token1] = ACTIONS(1266), - [aux_sym_connect_timeout_token1] = ACTIONS(1266), - [aux_sym_control_master_token1] = ACTIONS(1266), - [aux_sym_control_path_token1] = ACTIONS(1266), - [aux_sym_control_persist_token1] = ACTIONS(1266), - [aux_sym_dynamic_forward_token1] = ACTIONS(1266), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1266), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1266), - [aux_sym_escape_char_token1] = ACTIONS(1266), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1266), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1266), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1266), - [aux_sym_forward_agent_token1] = ACTIONS(1266), - [aux_sym_forward_x11_token1] = ACTIONS(1268), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1266), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1266), - [aux_sym_gateway_ports_token1] = ACTIONS(1266), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1266), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1266), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1266), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1266), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1266), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1266), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1266), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1266), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1266), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1266), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1266), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1266), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1266), - [aux_sym_host_key_alias_token1] = ACTIONS(1266), - [aux_sym_hostname_token1] = ACTIONS(1266), - [aux_sym_identities_only_token1] = ACTIONS(1266), - [aux_sym_identity_agent_token1] = ACTIONS(1266), - [aux_sym_identity_file_token1] = ACTIONS(1266), - [aux_sym_ignore_unknown_token1] = ACTIONS(1266), - [aux_sym_include_token1] = ACTIONS(1266), - [aux_sym_ip_qos_token1] = ACTIONS(1266), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1266), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1266), - [aux_sym_kex_algorithms_token1] = ACTIONS(1266), - [aux_sym_known_hosts_command_token1] = ACTIONS(1266), - [aux_sym_local_command_token1] = ACTIONS(1266), - [aux_sym_local_forward_token1] = ACTIONS(1266), - [aux_sym_log_level_token1] = ACTIONS(1266), - [aux_sym_log_verbose_token1] = ACTIONS(1266), - [aux_sym_macs_token1] = ACTIONS(1266), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1266), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1266), - [aux_sym_password_authentication_token1] = ACTIONS(1266), - [aux_sym_permit_local_command_token1] = ACTIONS(1266), - [aux_sym_permit_remote_open_token1] = ACTIONS(1266), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1266), - [aux_sym_port_token1] = ACTIONS(1266), - [aux_sym_preferred_authentications_token1] = ACTIONS(1266), - [aux_sym_protocol_token1] = ACTIONS(1266), - [aux_sym_proxy_command_token1] = ACTIONS(1266), - [aux_sym_proxy_jump_token1] = ACTIONS(1266), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1266), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1266), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1266), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1266), - [aux_sym_rekey_limit_token1] = ACTIONS(1266), - [aux_sym_remote_command_token1] = ACTIONS(1266), - [aux_sym_remote_forward_token1] = ACTIONS(1266), - [aux_sym_request_tty_token1] = ACTIONS(1266), - [aux_sym_required_rsa_size_token1] = ACTIONS(1266), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1266), - [aux_sym_security_key_provider_token1] = ACTIONS(1266), - [aux_sym_send_env_token1] = ACTIONS(1266), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1266), - [aux_sym_server_alive_interval_token1] = ACTIONS(1266), - [aux_sym_session_type_token1] = ACTIONS(1266), - [aux_sym_set_env_token1] = ACTIONS(1266), - [aux_sym_stdin_null_token1] = ACTIONS(1266), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1266), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1266), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1266), - [aux_sym_syslog_facility_token1] = ACTIONS(1266), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1266), - [aux_sym_keep_alive_token1] = ACTIONS(1266), - [aux_sym_tag_token1] = ACTIONS(1266), - [aux_sym_tunnel_token1] = ACTIONS(1268), - [aux_sym_tunnel_device_token1] = ACTIONS(1266), - [aux_sym_update_host_keys_token1] = ACTIONS(1266), - [aux_sym_use_keychain_token1] = ACTIONS(1266), - [aux_sym_use_roaming_token1] = ACTIONS(1266), - [aux_sym_user_token1] = ACTIONS(1268), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1266), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1266), - [aux_sym_visual_host_key_token1] = ACTIONS(1266), - [aux_sym_xauth_location_token1] = ACTIONS(1266), + [ts_builtin_sym_end] = ACTIONS(3295), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3297), + [aux_sym_match_token1] = ACTIONS(3295), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3295), + [aux_sym_address_family_token1] = ACTIONS(3295), + [aux_sym_batch_mode_token1] = ACTIONS(3295), + [aux_sym_bind_address_token1] = ACTIONS(3295), + [aux_sym_bind_interface_token1] = ACTIONS(3295), + [aux_sym_canonical_domains_token1] = ACTIONS(3295), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3295), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3295), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3295), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3295), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3295), + [aux_sym_certificate_file_token1] = ACTIONS(3295), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3295), + [aux_sym_channel_timeout_token1] = ACTIONS(3295), + [aux_sym_check_host_ip_token1] = ACTIONS(3295), + [aux_sym_ciphers_token1] = ACTIONS(3295), + [aux_sym_cipher_token1] = ACTIONS(3297), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3295), + [aux_sym_compression_token1] = ACTIONS(3295), + [aux_sym_connection_attempts_token1] = ACTIONS(3295), + [aux_sym_connect_timeout_token1] = ACTIONS(3295), + [aux_sym_control_master_token1] = ACTIONS(3295), + [aux_sym_control_path_token1] = ACTIONS(3295), + [aux_sym_control_persist_token1] = ACTIONS(3295), + [aux_sym_dynamic_forward_token1] = ACTIONS(3295), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3295), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3295), + [aux_sym_escape_char_token1] = ACTIONS(3295), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3295), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3295), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3295), + [aux_sym_forward_agent_token1] = ACTIONS(3295), + [aux_sym_forward_x11_token1] = ACTIONS(3297), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3295), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3295), + [aux_sym_gateway_ports_token1] = ACTIONS(3295), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3295), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3295), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3295), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3295), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3295), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3295), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3295), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3295), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3295), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3295), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3295), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3295), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3295), + [aux_sym_host_key_alias_token1] = ACTIONS(3295), + [aux_sym_hostname_token1] = ACTIONS(3295), + [aux_sym_identities_only_token1] = ACTIONS(3295), + [aux_sym_identity_agent_token1] = ACTIONS(3295), + [aux_sym_identity_file_token1] = ACTIONS(3295), + [aux_sym_ignore_unknown_token1] = ACTIONS(3295), + [aux_sym_include_token1] = ACTIONS(3295), + [aux_sym_ip_qos_token1] = ACTIONS(3295), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3295), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3295), + [aux_sym_kex_algorithms_token1] = ACTIONS(3295), + [aux_sym_known_hosts_command_token1] = ACTIONS(3295), + [aux_sym_local_command_token1] = ACTIONS(3295), + [aux_sym_local_forward_token1] = ACTIONS(3295), + [aux_sym_log_level_token1] = ACTIONS(3295), + [aux_sym_log_verbose_token1] = ACTIONS(3295), + [aux_sym_macs_token1] = ACTIONS(3295), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3295), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3295), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3295), + [aux_sym_password_authentication_token1] = ACTIONS(3295), + [aux_sym_permit_local_command_token1] = ACTIONS(3295), + [aux_sym_permit_remote_open_token1] = ACTIONS(3295), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3295), + [aux_sym_port_token1] = ACTIONS(3295), + [aux_sym_preferred_authentications_token1] = ACTIONS(3295), + [aux_sym_protocol_token1] = ACTIONS(3295), + [aux_sym_proxy_command_token1] = ACTIONS(3295), + [aux_sym_proxy_jump_token1] = ACTIONS(3295), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3295), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3295), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3295), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3295), + [aux_sym_rekey_limit_token1] = ACTIONS(3295), + [aux_sym_remote_command_token1] = ACTIONS(3295), + [aux_sym_remote_forward_token1] = ACTIONS(3295), + [aux_sym_request_tty_token1] = ACTIONS(3295), + [aux_sym_required_rsa_size_token1] = ACTIONS(3295), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3295), + [aux_sym_security_key_provider_token1] = ACTIONS(3295), + [aux_sym_send_env_token1] = ACTIONS(3295), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3295), + [aux_sym_server_alive_interval_token1] = ACTIONS(3295), + [aux_sym_session_type_token1] = ACTIONS(3295), + [aux_sym_set_env_token1] = ACTIONS(3295), + [aux_sym_stdin_null_token1] = ACTIONS(3295), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3295), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3295), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3295), + [aux_sym_syslog_facility_token1] = ACTIONS(3295), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3295), + [aux_sym_keep_alive_token1] = ACTIONS(3295), + [aux_sym_tag_token1] = ACTIONS(3295), + [aux_sym_tunnel_token1] = ACTIONS(3297), + [aux_sym_tunnel_device_token1] = ACTIONS(3295), + [aux_sym_update_host_keys_token1] = ACTIONS(3295), + [aux_sym_use_keychain_token1] = ACTIONS(3295), + [aux_sym_use_roaming_token1] = ACTIONS(3295), + [aux_sym_user_token1] = ACTIONS(3297), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3295), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3295), + [aux_sym_visual_host_key_token1] = ACTIONS(3295), + [aux_sym_xauth_location_token1] = ACTIONS(3295), }, [541] = { - [ts_builtin_sym_end] = ACTIONS(1458), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1460), - [aux_sym_match_token1] = ACTIONS(1458), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1458), - [aux_sym_address_family_token1] = ACTIONS(1458), - [aux_sym_batch_mode_token1] = ACTIONS(1458), - [aux_sym_bind_address_token1] = ACTIONS(1458), - [aux_sym_bind_interface_token1] = ACTIONS(1458), - [aux_sym_canonical_domains_token1] = ACTIONS(1458), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1458), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1458), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1458), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1458), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1458), - [aux_sym_certificate_file_token1] = ACTIONS(1458), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1458), - [aux_sym_channel_timeout_token1] = ACTIONS(1458), - [aux_sym_check_host_ip_token1] = ACTIONS(1458), - [aux_sym_ciphers_token1] = ACTIONS(1458), - [aux_sym_cipher_token1] = ACTIONS(1460), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1458), - [aux_sym_compression_token1] = ACTIONS(1458), - [aux_sym_connection_attempts_token1] = ACTIONS(1458), - [aux_sym_connect_timeout_token1] = ACTIONS(1458), - [aux_sym_control_master_token1] = ACTIONS(1458), - [aux_sym_control_path_token1] = ACTIONS(1458), - [aux_sym_control_persist_token1] = ACTIONS(1458), - [aux_sym_dynamic_forward_token1] = ACTIONS(1458), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1458), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1458), - [aux_sym_escape_char_token1] = ACTIONS(1458), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1458), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1458), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1458), - [aux_sym_forward_agent_token1] = ACTIONS(1458), - [aux_sym_forward_x11_token1] = ACTIONS(1460), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1458), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1458), - [aux_sym_gateway_ports_token1] = ACTIONS(1458), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1458), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1458), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1458), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1458), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1458), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1458), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1458), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1458), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1458), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1458), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1458), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1458), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1458), - [aux_sym_host_key_alias_token1] = ACTIONS(1458), - [aux_sym_hostname_token1] = ACTIONS(1458), - [aux_sym_identities_only_token1] = ACTIONS(1458), - [aux_sym_identity_agent_token1] = ACTIONS(1458), - [aux_sym_identity_file_token1] = ACTIONS(1458), - [aux_sym_ignore_unknown_token1] = ACTIONS(1458), - [aux_sym_include_token1] = ACTIONS(1458), - [aux_sym_ip_qos_token1] = ACTIONS(1458), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1458), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1458), - [aux_sym_kex_algorithms_token1] = ACTIONS(1458), - [aux_sym_known_hosts_command_token1] = ACTIONS(1458), - [aux_sym_local_command_token1] = ACTIONS(1458), - [aux_sym_local_forward_token1] = ACTIONS(1458), - [aux_sym_log_level_token1] = ACTIONS(1458), - [aux_sym_log_verbose_token1] = ACTIONS(1458), - [aux_sym_macs_token1] = ACTIONS(1458), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1458), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1458), - [aux_sym_password_authentication_token1] = ACTIONS(1458), - [aux_sym_permit_local_command_token1] = ACTIONS(1458), - [aux_sym_permit_remote_open_token1] = ACTIONS(1458), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1458), - [aux_sym_port_token1] = ACTIONS(1458), - [aux_sym_preferred_authentications_token1] = ACTIONS(1458), - [aux_sym_protocol_token1] = ACTIONS(1458), - [aux_sym_proxy_command_token1] = ACTIONS(1458), - [aux_sym_proxy_jump_token1] = ACTIONS(1458), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1458), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1458), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1458), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1458), - [aux_sym_rekey_limit_token1] = ACTIONS(1458), - [aux_sym_remote_command_token1] = ACTIONS(1458), - [aux_sym_remote_forward_token1] = ACTIONS(1458), - [aux_sym_request_tty_token1] = ACTIONS(1458), - [aux_sym_required_rsa_size_token1] = ACTIONS(1458), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1458), - [aux_sym_security_key_provider_token1] = ACTIONS(1458), - [aux_sym_send_env_token1] = ACTIONS(1458), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1458), - [aux_sym_server_alive_interval_token1] = ACTIONS(1458), - [aux_sym_session_type_token1] = ACTIONS(1458), - [aux_sym_set_env_token1] = ACTIONS(1458), - [aux_sym_stdin_null_token1] = ACTIONS(1458), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1458), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1458), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1458), - [aux_sym_syslog_facility_token1] = ACTIONS(1458), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1458), - [aux_sym_keep_alive_token1] = ACTIONS(1458), - [aux_sym_tag_token1] = ACTIONS(1458), - [aux_sym_tunnel_token1] = ACTIONS(1460), - [aux_sym_tunnel_device_token1] = ACTIONS(1458), - [aux_sym_update_host_keys_token1] = ACTIONS(1458), - [aux_sym_use_keychain_token1] = ACTIONS(1458), - [aux_sym_use_roaming_token1] = ACTIONS(1458), - [aux_sym_user_token1] = ACTIONS(1460), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1458), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1458), - [aux_sym_visual_host_key_token1] = ACTIONS(1458), - [aux_sym_xauth_location_token1] = ACTIONS(1458), + [ts_builtin_sym_end] = ACTIONS(3299), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3301), + [aux_sym_match_token1] = ACTIONS(3299), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3299), + [aux_sym_address_family_token1] = ACTIONS(3299), + [aux_sym_batch_mode_token1] = ACTIONS(3299), + [aux_sym_bind_address_token1] = ACTIONS(3299), + [aux_sym_bind_interface_token1] = ACTIONS(3299), + [aux_sym_canonical_domains_token1] = ACTIONS(3299), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3299), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3299), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3299), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3299), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3299), + [aux_sym_certificate_file_token1] = ACTIONS(3299), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3299), + [aux_sym_channel_timeout_token1] = ACTIONS(3299), + [aux_sym_check_host_ip_token1] = ACTIONS(3299), + [aux_sym_ciphers_token1] = ACTIONS(3299), + [aux_sym_cipher_token1] = ACTIONS(3301), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3299), + [aux_sym_compression_token1] = ACTIONS(3299), + [aux_sym_connection_attempts_token1] = ACTIONS(3299), + [aux_sym_connect_timeout_token1] = ACTIONS(3299), + [aux_sym_control_master_token1] = ACTIONS(3299), + [aux_sym_control_path_token1] = ACTIONS(3299), + [aux_sym_control_persist_token1] = ACTIONS(3299), + [aux_sym_dynamic_forward_token1] = ACTIONS(3299), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3299), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3299), + [aux_sym_escape_char_token1] = ACTIONS(3299), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3299), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3299), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3299), + [aux_sym_forward_agent_token1] = ACTIONS(3299), + [aux_sym_forward_x11_token1] = ACTIONS(3301), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3299), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3299), + [aux_sym_gateway_ports_token1] = ACTIONS(3299), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3299), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3299), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3299), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3299), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3299), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3299), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3299), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3299), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3299), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3299), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3299), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3299), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3299), + [aux_sym_host_key_alias_token1] = ACTIONS(3299), + [aux_sym_hostname_token1] = ACTIONS(3299), + [aux_sym_identities_only_token1] = ACTIONS(3299), + [aux_sym_identity_agent_token1] = ACTIONS(3299), + [aux_sym_identity_file_token1] = ACTIONS(3299), + [aux_sym_ignore_unknown_token1] = ACTIONS(3299), + [aux_sym_include_token1] = ACTIONS(3299), + [aux_sym_ip_qos_token1] = ACTIONS(3299), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3299), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3299), + [aux_sym_kex_algorithms_token1] = ACTIONS(3299), + [aux_sym_known_hosts_command_token1] = ACTIONS(3299), + [aux_sym_local_command_token1] = ACTIONS(3299), + [aux_sym_local_forward_token1] = ACTIONS(3299), + [aux_sym_log_level_token1] = ACTIONS(3299), + [aux_sym_log_verbose_token1] = ACTIONS(3299), + [aux_sym_macs_token1] = ACTIONS(3299), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3299), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3299), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3299), + [aux_sym_password_authentication_token1] = ACTIONS(3299), + [aux_sym_permit_local_command_token1] = ACTIONS(3299), + [aux_sym_permit_remote_open_token1] = ACTIONS(3299), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3299), + [aux_sym_port_token1] = ACTIONS(3299), + [aux_sym_preferred_authentications_token1] = ACTIONS(3299), + [aux_sym_protocol_token1] = ACTIONS(3299), + [aux_sym_proxy_command_token1] = ACTIONS(3299), + [aux_sym_proxy_jump_token1] = ACTIONS(3299), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3299), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3299), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3299), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3299), + [aux_sym_rekey_limit_token1] = ACTIONS(3299), + [aux_sym_remote_command_token1] = ACTIONS(3299), + [aux_sym_remote_forward_token1] = ACTIONS(3299), + [aux_sym_request_tty_token1] = ACTIONS(3299), + [aux_sym_required_rsa_size_token1] = ACTIONS(3299), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3299), + [aux_sym_security_key_provider_token1] = ACTIONS(3299), + [aux_sym_send_env_token1] = ACTIONS(3299), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3299), + [aux_sym_server_alive_interval_token1] = ACTIONS(3299), + [aux_sym_session_type_token1] = ACTIONS(3299), + [aux_sym_set_env_token1] = ACTIONS(3299), + [aux_sym_stdin_null_token1] = ACTIONS(3299), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3299), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3299), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3299), + [aux_sym_syslog_facility_token1] = ACTIONS(3299), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3299), + [aux_sym_keep_alive_token1] = ACTIONS(3299), + [aux_sym_tag_token1] = ACTIONS(3299), + [aux_sym_tunnel_token1] = ACTIONS(3301), + [aux_sym_tunnel_device_token1] = ACTIONS(3299), + [aux_sym_update_host_keys_token1] = ACTIONS(3299), + [aux_sym_use_keychain_token1] = ACTIONS(3299), + [aux_sym_use_roaming_token1] = ACTIONS(3299), + [aux_sym_user_token1] = ACTIONS(3301), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3299), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3299), + [aux_sym_visual_host_key_token1] = ACTIONS(3299), + [aux_sym_xauth_location_token1] = ACTIONS(3299), }, [542] = { - [ts_builtin_sym_end] = ACTIONS(1260), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1262), - [aux_sym_match_token1] = ACTIONS(1260), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1260), - [aux_sym_address_family_token1] = ACTIONS(1260), - [aux_sym_batch_mode_token1] = ACTIONS(1260), - [aux_sym_bind_address_token1] = ACTIONS(1260), - [aux_sym_bind_interface_token1] = ACTIONS(1260), - [aux_sym_canonical_domains_token1] = ACTIONS(1260), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1260), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1260), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1260), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1260), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1260), - [aux_sym_certificate_file_token1] = ACTIONS(1260), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1260), - [aux_sym_channel_timeout_token1] = ACTIONS(1260), - [aux_sym_check_host_ip_token1] = ACTIONS(1260), - [aux_sym_ciphers_token1] = ACTIONS(1260), - [aux_sym_cipher_token1] = ACTIONS(1262), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1260), - [aux_sym_compression_token1] = ACTIONS(1260), - [aux_sym_connection_attempts_token1] = ACTIONS(1260), - [aux_sym_connect_timeout_token1] = ACTIONS(1260), - [aux_sym_control_master_token1] = ACTIONS(1260), - [aux_sym_control_path_token1] = ACTIONS(1260), - [aux_sym_control_persist_token1] = ACTIONS(1260), - [aux_sym_dynamic_forward_token1] = ACTIONS(1260), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1260), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1260), - [aux_sym_escape_char_token1] = ACTIONS(1260), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1260), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1260), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1260), - [aux_sym_forward_agent_token1] = ACTIONS(1260), - [aux_sym_forward_x11_token1] = ACTIONS(1262), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1260), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1260), - [aux_sym_gateway_ports_token1] = ACTIONS(1260), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1260), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1260), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1260), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1260), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1260), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1260), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1260), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1260), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1260), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1260), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1260), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1260), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1260), - [aux_sym_host_key_alias_token1] = ACTIONS(1260), - [aux_sym_hostname_token1] = ACTIONS(1260), - [aux_sym_identities_only_token1] = ACTIONS(1260), - [aux_sym_identity_agent_token1] = ACTIONS(1260), - [aux_sym_identity_file_token1] = ACTIONS(1260), - [aux_sym_ignore_unknown_token1] = ACTIONS(1260), - [aux_sym_include_token1] = ACTIONS(1260), - [aux_sym_ip_qos_token1] = ACTIONS(1260), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1260), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1260), - [aux_sym_kex_algorithms_token1] = ACTIONS(1260), - [aux_sym_known_hosts_command_token1] = ACTIONS(1260), - [aux_sym_local_command_token1] = ACTIONS(1260), - [aux_sym_local_forward_token1] = ACTIONS(1260), - [aux_sym_log_level_token1] = ACTIONS(1260), - [aux_sym_log_verbose_token1] = ACTIONS(1260), - [aux_sym_macs_token1] = ACTIONS(1260), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1260), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1260), - [aux_sym_password_authentication_token1] = ACTIONS(1260), - [aux_sym_permit_local_command_token1] = ACTIONS(1260), - [aux_sym_permit_remote_open_token1] = ACTIONS(1260), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1260), - [aux_sym_port_token1] = ACTIONS(1260), - [aux_sym_preferred_authentications_token1] = ACTIONS(1260), - [aux_sym_protocol_token1] = ACTIONS(1260), - [aux_sym_proxy_command_token1] = ACTIONS(1260), - [aux_sym_proxy_jump_token1] = ACTIONS(1260), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1260), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1260), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1260), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1260), - [aux_sym_rekey_limit_token1] = ACTIONS(1260), - [aux_sym_remote_command_token1] = ACTIONS(1260), - [aux_sym_remote_forward_token1] = ACTIONS(1260), - [aux_sym_request_tty_token1] = ACTIONS(1260), - [aux_sym_required_rsa_size_token1] = ACTIONS(1260), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1260), - [aux_sym_security_key_provider_token1] = ACTIONS(1260), - [aux_sym_send_env_token1] = ACTIONS(1260), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1260), - [aux_sym_server_alive_interval_token1] = ACTIONS(1260), - [aux_sym_session_type_token1] = ACTIONS(1260), - [aux_sym_set_env_token1] = ACTIONS(1260), - [aux_sym_stdin_null_token1] = ACTIONS(1260), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1260), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1260), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1260), - [aux_sym_syslog_facility_token1] = ACTIONS(1260), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1260), - [aux_sym_keep_alive_token1] = ACTIONS(1260), - [aux_sym_tag_token1] = ACTIONS(1260), - [aux_sym_tunnel_token1] = ACTIONS(1262), - [aux_sym_tunnel_device_token1] = ACTIONS(1260), - [aux_sym_update_host_keys_token1] = ACTIONS(1260), - [aux_sym_use_keychain_token1] = ACTIONS(1260), - [aux_sym_use_roaming_token1] = ACTIONS(1260), - [aux_sym_user_token1] = ACTIONS(1262), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1260), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1260), - [aux_sym_visual_host_key_token1] = ACTIONS(1260), - [aux_sym_xauth_location_token1] = ACTIONS(1260), + [ts_builtin_sym_end] = ACTIONS(3303), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3305), + [aux_sym_match_token1] = ACTIONS(3303), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3303), + [aux_sym_address_family_token1] = ACTIONS(3303), + [aux_sym_batch_mode_token1] = ACTIONS(3303), + [aux_sym_bind_address_token1] = ACTIONS(3303), + [aux_sym_bind_interface_token1] = ACTIONS(3303), + [aux_sym_canonical_domains_token1] = ACTIONS(3303), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3303), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3303), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3303), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3303), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3303), + [aux_sym_certificate_file_token1] = ACTIONS(3303), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3303), + [aux_sym_channel_timeout_token1] = ACTIONS(3303), + [aux_sym_check_host_ip_token1] = ACTIONS(3303), + [aux_sym_ciphers_token1] = ACTIONS(3303), + [aux_sym_cipher_token1] = ACTIONS(3305), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3303), + [aux_sym_compression_token1] = ACTIONS(3303), + [aux_sym_connection_attempts_token1] = ACTIONS(3303), + [aux_sym_connect_timeout_token1] = ACTIONS(3303), + [aux_sym_control_master_token1] = ACTIONS(3303), + [aux_sym_control_path_token1] = ACTIONS(3303), + [aux_sym_control_persist_token1] = ACTIONS(3303), + [aux_sym_dynamic_forward_token1] = ACTIONS(3303), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3303), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3303), + [aux_sym_escape_char_token1] = ACTIONS(3303), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3303), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3303), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3303), + [aux_sym_forward_agent_token1] = ACTIONS(3303), + [aux_sym_forward_x11_token1] = ACTIONS(3305), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3303), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3303), + [aux_sym_gateway_ports_token1] = ACTIONS(3303), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3303), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3303), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3303), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3303), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3303), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3303), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3303), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3303), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3303), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3303), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3303), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3303), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3303), + [aux_sym_host_key_alias_token1] = ACTIONS(3303), + [aux_sym_hostname_token1] = ACTIONS(3303), + [aux_sym_identities_only_token1] = ACTIONS(3303), + [aux_sym_identity_agent_token1] = ACTIONS(3303), + [aux_sym_identity_file_token1] = ACTIONS(3303), + [aux_sym_ignore_unknown_token1] = ACTIONS(3303), + [aux_sym_include_token1] = ACTIONS(3303), + [aux_sym_ip_qos_token1] = ACTIONS(3303), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3303), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3303), + [aux_sym_kex_algorithms_token1] = ACTIONS(3303), + [aux_sym_known_hosts_command_token1] = ACTIONS(3303), + [aux_sym_local_command_token1] = ACTIONS(3303), + [aux_sym_local_forward_token1] = ACTIONS(3303), + [aux_sym_log_level_token1] = ACTIONS(3303), + [aux_sym_log_verbose_token1] = ACTIONS(3303), + [aux_sym_macs_token1] = ACTIONS(3303), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3303), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3303), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3303), + [aux_sym_password_authentication_token1] = ACTIONS(3303), + [aux_sym_permit_local_command_token1] = ACTIONS(3303), + [aux_sym_permit_remote_open_token1] = ACTIONS(3303), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3303), + [aux_sym_port_token1] = ACTIONS(3303), + [aux_sym_preferred_authentications_token1] = ACTIONS(3303), + [aux_sym_protocol_token1] = ACTIONS(3303), + [aux_sym_proxy_command_token1] = ACTIONS(3303), + [aux_sym_proxy_jump_token1] = ACTIONS(3303), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3303), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3303), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3303), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3303), + [aux_sym_rekey_limit_token1] = ACTIONS(3303), + [aux_sym_remote_command_token1] = ACTIONS(3303), + [aux_sym_remote_forward_token1] = ACTIONS(3303), + [aux_sym_request_tty_token1] = ACTIONS(3303), + [aux_sym_required_rsa_size_token1] = ACTIONS(3303), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3303), + [aux_sym_security_key_provider_token1] = ACTIONS(3303), + [aux_sym_send_env_token1] = ACTIONS(3303), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3303), + [aux_sym_server_alive_interval_token1] = ACTIONS(3303), + [aux_sym_session_type_token1] = ACTIONS(3303), + [aux_sym_set_env_token1] = ACTIONS(3303), + [aux_sym_stdin_null_token1] = ACTIONS(3303), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3303), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3303), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3303), + [aux_sym_syslog_facility_token1] = ACTIONS(3303), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3303), + [aux_sym_keep_alive_token1] = ACTIONS(3303), + [aux_sym_tag_token1] = ACTIONS(3303), + [aux_sym_tunnel_token1] = ACTIONS(3305), + [aux_sym_tunnel_device_token1] = ACTIONS(3303), + [aux_sym_update_host_keys_token1] = ACTIONS(3303), + [aux_sym_use_keychain_token1] = ACTIONS(3303), + [aux_sym_use_roaming_token1] = ACTIONS(3303), + [aux_sym_user_token1] = ACTIONS(3305), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3303), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3303), + [aux_sym_visual_host_key_token1] = ACTIONS(3303), + [aux_sym_xauth_location_token1] = ACTIONS(3303), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(3284), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3286), - [aux_sym_match_token1] = ACTIONS(3284), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3284), - [aux_sym_address_family_token1] = ACTIONS(3284), - [aux_sym_batch_mode_token1] = ACTIONS(3284), - [aux_sym_bind_address_token1] = ACTIONS(3284), - [aux_sym_bind_interface_token1] = ACTIONS(3284), - [aux_sym_canonical_domains_token1] = ACTIONS(3284), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3284), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3284), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3284), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3284), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3284), - [aux_sym_certificate_file_token1] = ACTIONS(3284), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3284), - [aux_sym_channel_timeout_token1] = ACTIONS(3284), - [aux_sym_check_host_ip_token1] = ACTIONS(3284), - [aux_sym_ciphers_token1] = ACTIONS(3284), - [aux_sym_cipher_token1] = ACTIONS(3286), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3284), - [aux_sym_compression_token1] = ACTIONS(3284), - [aux_sym_connection_attempts_token1] = ACTIONS(3284), - [aux_sym_connect_timeout_token1] = ACTIONS(3284), - [aux_sym_control_master_token1] = ACTIONS(3284), - [aux_sym_control_path_token1] = ACTIONS(3284), - [aux_sym_control_persist_token1] = ACTIONS(3284), - [aux_sym_dynamic_forward_token1] = ACTIONS(3284), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3284), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3284), - [aux_sym_escape_char_token1] = ACTIONS(3284), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3284), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3284), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3284), - [aux_sym_forward_agent_token1] = ACTIONS(3284), - [aux_sym_forward_x11_token1] = ACTIONS(3286), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3284), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3284), - [aux_sym_gateway_ports_token1] = ACTIONS(3284), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3284), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3284), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3284), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3284), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3284), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3284), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3284), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3284), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3284), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3284), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3284), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3284), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3284), - [aux_sym_host_key_alias_token1] = ACTIONS(3284), - [aux_sym_hostname_token1] = ACTIONS(3284), - [aux_sym_identities_only_token1] = ACTIONS(3284), - [aux_sym_identity_agent_token1] = ACTIONS(3284), - [aux_sym_identity_file_token1] = ACTIONS(3284), - [aux_sym_ignore_unknown_token1] = ACTIONS(3284), - [aux_sym_include_token1] = ACTIONS(3284), - [aux_sym_ip_qos_token1] = ACTIONS(3284), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3284), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3284), - [aux_sym_kex_algorithms_token1] = ACTIONS(3284), - [aux_sym_known_hosts_command_token1] = ACTIONS(3284), - [aux_sym_local_command_token1] = ACTIONS(3284), - [aux_sym_local_forward_token1] = ACTIONS(3284), - [aux_sym_log_level_token1] = ACTIONS(3284), - [aux_sym_log_verbose_token1] = ACTIONS(3284), - [aux_sym_macs_token1] = ACTIONS(3284), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3284), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3284), - [aux_sym_password_authentication_token1] = ACTIONS(3284), - [aux_sym_permit_local_command_token1] = ACTIONS(3284), - [aux_sym_permit_remote_open_token1] = ACTIONS(3284), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3284), - [aux_sym_port_token1] = ACTIONS(3284), - [aux_sym_preferred_authentications_token1] = ACTIONS(3284), - [aux_sym_protocol_token1] = ACTIONS(3284), - [aux_sym_proxy_command_token1] = ACTIONS(3284), - [aux_sym_proxy_jump_token1] = ACTIONS(3284), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3284), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3284), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3284), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3284), - [aux_sym_rekey_limit_token1] = ACTIONS(3284), - [aux_sym_remote_command_token1] = ACTIONS(3284), - [aux_sym_remote_forward_token1] = ACTIONS(3284), - [aux_sym_request_tty_token1] = ACTIONS(3284), - [aux_sym_required_rsa_size_token1] = ACTIONS(3284), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3284), - [aux_sym_security_key_provider_token1] = ACTIONS(3284), - [aux_sym_send_env_token1] = ACTIONS(3284), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3284), - [aux_sym_server_alive_interval_token1] = ACTIONS(3284), - [aux_sym_session_type_token1] = ACTIONS(3284), - [aux_sym_set_env_token1] = ACTIONS(3284), - [aux_sym_stdin_null_token1] = ACTIONS(3284), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3284), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3284), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3284), - [aux_sym_syslog_facility_token1] = ACTIONS(3284), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3284), - [aux_sym_keep_alive_token1] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3284), - [aux_sym_tunnel_token1] = ACTIONS(3286), - [aux_sym_tunnel_device_token1] = ACTIONS(3284), - [aux_sym_update_host_keys_token1] = ACTIONS(3284), - [aux_sym_use_keychain_token1] = ACTIONS(3284), - [aux_sym_use_roaming_token1] = ACTIONS(3284), - [aux_sym_user_token1] = ACTIONS(3286), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3284), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3284), - [aux_sym_visual_host_key_token1] = ACTIONS(3284), - [aux_sym_xauth_location_token1] = ACTIONS(3284), + [ts_builtin_sym_end] = ACTIONS(1163), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1165), + [aux_sym_match_token1] = ACTIONS(1163), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1163), + [aux_sym_address_family_token1] = ACTIONS(1163), + [aux_sym_batch_mode_token1] = ACTIONS(1163), + [aux_sym_bind_address_token1] = ACTIONS(1163), + [aux_sym_bind_interface_token1] = ACTIONS(1163), + [aux_sym_canonical_domains_token1] = ACTIONS(1163), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1163), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1163), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1163), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1163), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1163), + [aux_sym_certificate_file_token1] = ACTIONS(1163), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1163), + [aux_sym_channel_timeout_token1] = ACTIONS(1163), + [aux_sym_check_host_ip_token1] = ACTIONS(1163), + [aux_sym_ciphers_token1] = ACTIONS(1163), + [aux_sym_cipher_token1] = ACTIONS(1165), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1163), + [aux_sym_compression_token1] = ACTIONS(1163), + [aux_sym_connection_attempts_token1] = ACTIONS(1163), + [aux_sym_connect_timeout_token1] = ACTIONS(1163), + [aux_sym_control_master_token1] = ACTIONS(1163), + [aux_sym_control_path_token1] = ACTIONS(1163), + [aux_sym_control_persist_token1] = ACTIONS(1163), + [aux_sym_dynamic_forward_token1] = ACTIONS(1163), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1163), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1163), + [aux_sym_escape_char_token1] = ACTIONS(1163), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1163), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1163), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1163), + [aux_sym_forward_agent_token1] = ACTIONS(1163), + [aux_sym_forward_x11_token1] = ACTIONS(1165), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1163), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1163), + [aux_sym_gateway_ports_token1] = ACTIONS(1163), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1163), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1163), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1163), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1163), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1163), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1163), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1163), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1163), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1163), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1163), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1163), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1163), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1163), + [aux_sym_host_key_alias_token1] = ACTIONS(1163), + [aux_sym_hostname_token1] = ACTIONS(1163), + [aux_sym_identities_only_token1] = ACTIONS(1163), + [aux_sym_identity_agent_token1] = ACTIONS(1163), + [aux_sym_identity_file_token1] = ACTIONS(1163), + [aux_sym_ignore_unknown_token1] = ACTIONS(1163), + [aux_sym_include_token1] = ACTIONS(1163), + [aux_sym_ip_qos_token1] = ACTIONS(1163), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1163), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1163), + [aux_sym_kex_algorithms_token1] = ACTIONS(1163), + [aux_sym_known_hosts_command_token1] = ACTIONS(1163), + [aux_sym_local_command_token1] = ACTIONS(1163), + [aux_sym_local_forward_token1] = ACTIONS(1163), + [aux_sym_log_level_token1] = ACTIONS(1163), + [aux_sym_log_verbose_token1] = ACTIONS(1163), + [aux_sym_macs_token1] = ACTIONS(1163), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1163), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1163), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1163), + [aux_sym_password_authentication_token1] = ACTIONS(1163), + [aux_sym_permit_local_command_token1] = ACTIONS(1163), + [aux_sym_permit_remote_open_token1] = ACTIONS(1163), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1163), + [aux_sym_port_token1] = ACTIONS(1163), + [aux_sym_preferred_authentications_token1] = ACTIONS(1163), + [aux_sym_protocol_token1] = ACTIONS(1163), + [aux_sym_proxy_command_token1] = ACTIONS(1163), + [aux_sym_proxy_jump_token1] = ACTIONS(1163), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1163), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1163), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1163), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1163), + [aux_sym_rekey_limit_token1] = ACTIONS(1163), + [aux_sym_remote_command_token1] = ACTIONS(1163), + [aux_sym_remote_forward_token1] = ACTIONS(1163), + [aux_sym_request_tty_token1] = ACTIONS(1163), + [aux_sym_required_rsa_size_token1] = ACTIONS(1163), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1163), + [aux_sym_security_key_provider_token1] = ACTIONS(1163), + [aux_sym_send_env_token1] = ACTIONS(1163), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1163), + [aux_sym_server_alive_interval_token1] = ACTIONS(1163), + [aux_sym_session_type_token1] = ACTIONS(1163), + [aux_sym_set_env_token1] = ACTIONS(1163), + [aux_sym_stdin_null_token1] = ACTIONS(1163), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1163), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1163), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1163), + [aux_sym_syslog_facility_token1] = ACTIONS(1163), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1163), + [aux_sym_keep_alive_token1] = ACTIONS(1163), + [aux_sym_tag_token1] = ACTIONS(1163), + [aux_sym_tunnel_token1] = ACTIONS(1165), + [aux_sym_tunnel_device_token1] = ACTIONS(1163), + [aux_sym_update_host_keys_token1] = ACTIONS(1163), + [aux_sym_use_keychain_token1] = ACTIONS(1163), + [aux_sym_use_roaming_token1] = ACTIONS(1163), + [aux_sym_user_token1] = ACTIONS(1165), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1163), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1163), + [aux_sym_visual_host_key_token1] = ACTIONS(1163), + [aux_sym_xauth_location_token1] = ACTIONS(1163), }, [544] = { - [ts_builtin_sym_end] = ACTIONS(3288), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3290), - [aux_sym_match_token1] = ACTIONS(3288), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3288), - [aux_sym_address_family_token1] = ACTIONS(3288), - [aux_sym_batch_mode_token1] = ACTIONS(3288), - [aux_sym_bind_address_token1] = ACTIONS(3288), - [aux_sym_bind_interface_token1] = ACTIONS(3288), - [aux_sym_canonical_domains_token1] = ACTIONS(3288), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3288), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3288), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3288), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3288), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3288), - [aux_sym_certificate_file_token1] = ACTIONS(3288), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3288), - [aux_sym_channel_timeout_token1] = ACTIONS(3288), - [aux_sym_check_host_ip_token1] = ACTIONS(3288), - [aux_sym_ciphers_token1] = ACTIONS(3288), - [aux_sym_cipher_token1] = ACTIONS(3290), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3288), - [aux_sym_compression_token1] = ACTIONS(3288), - [aux_sym_connection_attempts_token1] = ACTIONS(3288), - [aux_sym_connect_timeout_token1] = ACTIONS(3288), - [aux_sym_control_master_token1] = ACTIONS(3288), - [aux_sym_control_path_token1] = ACTIONS(3288), - [aux_sym_control_persist_token1] = ACTIONS(3288), - [aux_sym_dynamic_forward_token1] = ACTIONS(3288), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3288), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3288), - [aux_sym_escape_char_token1] = ACTIONS(3288), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3288), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3288), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3288), - [aux_sym_forward_agent_token1] = ACTIONS(3288), - [aux_sym_forward_x11_token1] = ACTIONS(3290), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3288), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3288), - [aux_sym_gateway_ports_token1] = ACTIONS(3288), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3288), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3288), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3288), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3288), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3288), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3288), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3288), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3288), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3288), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3288), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3288), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3288), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3288), - [aux_sym_host_key_alias_token1] = ACTIONS(3288), - [aux_sym_hostname_token1] = ACTIONS(3288), - [aux_sym_identities_only_token1] = ACTIONS(3288), - [aux_sym_identity_agent_token1] = ACTIONS(3288), - [aux_sym_identity_file_token1] = ACTIONS(3288), - [aux_sym_ignore_unknown_token1] = ACTIONS(3288), - [aux_sym_include_token1] = ACTIONS(3288), - [aux_sym_ip_qos_token1] = ACTIONS(3288), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3288), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3288), - [aux_sym_kex_algorithms_token1] = ACTIONS(3288), - [aux_sym_known_hosts_command_token1] = ACTIONS(3288), - [aux_sym_local_command_token1] = ACTIONS(3288), - [aux_sym_local_forward_token1] = ACTIONS(3288), - [aux_sym_log_level_token1] = ACTIONS(3288), - [aux_sym_log_verbose_token1] = ACTIONS(3288), - [aux_sym_macs_token1] = ACTIONS(3288), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3288), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3288), - [aux_sym_password_authentication_token1] = ACTIONS(3288), - [aux_sym_permit_local_command_token1] = ACTIONS(3288), - [aux_sym_permit_remote_open_token1] = ACTIONS(3288), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3288), - [aux_sym_port_token1] = ACTIONS(3288), - [aux_sym_preferred_authentications_token1] = ACTIONS(3288), - [aux_sym_protocol_token1] = ACTIONS(3288), - [aux_sym_proxy_command_token1] = ACTIONS(3288), - [aux_sym_proxy_jump_token1] = ACTIONS(3288), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3288), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3288), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3288), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3288), - [aux_sym_rekey_limit_token1] = ACTIONS(3288), - [aux_sym_remote_command_token1] = ACTIONS(3288), - [aux_sym_remote_forward_token1] = ACTIONS(3288), - [aux_sym_request_tty_token1] = ACTIONS(3288), - [aux_sym_required_rsa_size_token1] = ACTIONS(3288), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3288), - [aux_sym_security_key_provider_token1] = ACTIONS(3288), - [aux_sym_send_env_token1] = ACTIONS(3288), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3288), - [aux_sym_server_alive_interval_token1] = ACTIONS(3288), - [aux_sym_session_type_token1] = ACTIONS(3288), - [aux_sym_set_env_token1] = ACTIONS(3288), - [aux_sym_stdin_null_token1] = ACTIONS(3288), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3288), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3288), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3288), - [aux_sym_syslog_facility_token1] = ACTIONS(3288), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3288), - [aux_sym_keep_alive_token1] = ACTIONS(3288), - [aux_sym_tag_token1] = ACTIONS(3288), - [aux_sym_tunnel_token1] = ACTIONS(3290), - [aux_sym_tunnel_device_token1] = ACTIONS(3288), - [aux_sym_update_host_keys_token1] = ACTIONS(3288), - [aux_sym_use_keychain_token1] = ACTIONS(3288), - [aux_sym_use_roaming_token1] = ACTIONS(3288), - [aux_sym_user_token1] = ACTIONS(3290), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3288), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3288), - [aux_sym_visual_host_key_token1] = ACTIONS(3288), - [aux_sym_xauth_location_token1] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(1241), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1243), + [aux_sym_match_token1] = ACTIONS(1241), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1241), + [aux_sym_address_family_token1] = ACTIONS(1241), + [aux_sym_batch_mode_token1] = ACTIONS(1241), + [aux_sym_bind_address_token1] = ACTIONS(1241), + [aux_sym_bind_interface_token1] = ACTIONS(1241), + [aux_sym_canonical_domains_token1] = ACTIONS(1241), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1241), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1241), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1241), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1241), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1241), + [aux_sym_certificate_file_token1] = ACTIONS(1241), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1241), + [aux_sym_channel_timeout_token1] = ACTIONS(1241), + [aux_sym_check_host_ip_token1] = ACTIONS(1241), + [aux_sym_ciphers_token1] = ACTIONS(1241), + [aux_sym_cipher_token1] = ACTIONS(1243), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1241), + [aux_sym_compression_token1] = ACTIONS(1241), + [aux_sym_connection_attempts_token1] = ACTIONS(1241), + [aux_sym_connect_timeout_token1] = ACTIONS(1241), + [aux_sym_control_master_token1] = ACTIONS(1241), + [aux_sym_control_path_token1] = ACTIONS(1241), + [aux_sym_control_persist_token1] = ACTIONS(1241), + [aux_sym_dynamic_forward_token1] = ACTIONS(1241), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1241), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1241), + [aux_sym_escape_char_token1] = ACTIONS(1241), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1241), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1241), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1241), + [aux_sym_forward_agent_token1] = ACTIONS(1241), + [aux_sym_forward_x11_token1] = ACTIONS(1243), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1241), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1241), + [aux_sym_gateway_ports_token1] = ACTIONS(1241), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1241), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1241), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1241), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1241), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1241), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1241), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1241), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1241), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1241), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1241), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1241), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1241), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1241), + [aux_sym_host_key_alias_token1] = ACTIONS(1241), + [aux_sym_hostname_token1] = ACTIONS(1241), + [aux_sym_identities_only_token1] = ACTIONS(1241), + [aux_sym_identity_agent_token1] = ACTIONS(1241), + [aux_sym_identity_file_token1] = ACTIONS(1241), + [aux_sym_ignore_unknown_token1] = ACTIONS(1241), + [aux_sym_include_token1] = ACTIONS(1241), + [aux_sym_ip_qos_token1] = ACTIONS(1241), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1241), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1241), + [aux_sym_kex_algorithms_token1] = ACTIONS(1241), + [aux_sym_known_hosts_command_token1] = ACTIONS(1241), + [aux_sym_local_command_token1] = ACTIONS(1241), + [aux_sym_local_forward_token1] = ACTIONS(1241), + [aux_sym_log_level_token1] = ACTIONS(1241), + [aux_sym_log_verbose_token1] = ACTIONS(1241), + [aux_sym_macs_token1] = ACTIONS(1241), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1241), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1241), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1241), + [aux_sym_password_authentication_token1] = ACTIONS(1241), + [aux_sym_permit_local_command_token1] = ACTIONS(1241), + [aux_sym_permit_remote_open_token1] = ACTIONS(1241), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1241), + [aux_sym_port_token1] = ACTIONS(1241), + [aux_sym_preferred_authentications_token1] = ACTIONS(1241), + [aux_sym_protocol_token1] = ACTIONS(1241), + [aux_sym_proxy_command_token1] = ACTIONS(1241), + [aux_sym_proxy_jump_token1] = ACTIONS(1241), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1241), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1241), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1241), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1241), + [aux_sym_rekey_limit_token1] = ACTIONS(1241), + [aux_sym_remote_command_token1] = ACTIONS(1241), + [aux_sym_remote_forward_token1] = ACTIONS(1241), + [aux_sym_request_tty_token1] = ACTIONS(1241), + [aux_sym_required_rsa_size_token1] = ACTIONS(1241), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1241), + [aux_sym_security_key_provider_token1] = ACTIONS(1241), + [aux_sym_send_env_token1] = ACTIONS(1241), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1241), + [aux_sym_server_alive_interval_token1] = ACTIONS(1241), + [aux_sym_session_type_token1] = ACTIONS(1241), + [aux_sym_set_env_token1] = ACTIONS(1241), + [aux_sym_stdin_null_token1] = ACTIONS(1241), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1241), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1241), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1241), + [aux_sym_syslog_facility_token1] = ACTIONS(1241), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1241), + [aux_sym_keep_alive_token1] = ACTIONS(1241), + [aux_sym_tag_token1] = ACTIONS(1241), + [aux_sym_tunnel_token1] = ACTIONS(1243), + [aux_sym_tunnel_device_token1] = ACTIONS(1241), + [aux_sym_update_host_keys_token1] = ACTIONS(1241), + [aux_sym_use_keychain_token1] = ACTIONS(1241), + [aux_sym_use_roaming_token1] = ACTIONS(1241), + [aux_sym_user_token1] = ACTIONS(1243), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1241), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1241), + [aux_sym_visual_host_key_token1] = ACTIONS(1241), + [aux_sym_xauth_location_token1] = ACTIONS(1241), }, [545] = { - [ts_builtin_sym_end] = ACTIONS(3292), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3294), - [aux_sym_match_token1] = ACTIONS(3292), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3292), - [aux_sym_address_family_token1] = ACTIONS(3292), - [aux_sym_batch_mode_token1] = ACTIONS(3292), - [aux_sym_bind_address_token1] = ACTIONS(3292), - [aux_sym_bind_interface_token1] = ACTIONS(3292), - [aux_sym_canonical_domains_token1] = ACTIONS(3292), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3292), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3292), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3292), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3292), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3292), - [aux_sym_certificate_file_token1] = ACTIONS(3292), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3292), - [aux_sym_channel_timeout_token1] = ACTIONS(3292), - [aux_sym_check_host_ip_token1] = ACTIONS(3292), - [aux_sym_ciphers_token1] = ACTIONS(3292), - [aux_sym_cipher_token1] = ACTIONS(3294), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3292), - [aux_sym_compression_token1] = ACTIONS(3292), - [aux_sym_connection_attempts_token1] = ACTIONS(3292), - [aux_sym_connect_timeout_token1] = ACTIONS(3292), - [aux_sym_control_master_token1] = ACTIONS(3292), - [aux_sym_control_path_token1] = ACTIONS(3292), - [aux_sym_control_persist_token1] = ACTIONS(3292), - [aux_sym_dynamic_forward_token1] = ACTIONS(3292), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3292), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3292), - [aux_sym_escape_char_token1] = ACTIONS(3292), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3292), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3292), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3292), - [aux_sym_forward_agent_token1] = ACTIONS(3292), - [aux_sym_forward_x11_token1] = ACTIONS(3294), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3292), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3292), - [aux_sym_gateway_ports_token1] = ACTIONS(3292), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3292), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3292), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3292), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3292), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3292), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3292), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3292), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3292), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3292), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3292), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3292), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3292), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3292), - [aux_sym_host_key_alias_token1] = ACTIONS(3292), - [aux_sym_hostname_token1] = ACTIONS(3292), - [aux_sym_identities_only_token1] = ACTIONS(3292), - [aux_sym_identity_agent_token1] = ACTIONS(3292), - [aux_sym_identity_file_token1] = ACTIONS(3292), - [aux_sym_ignore_unknown_token1] = ACTIONS(3292), - [aux_sym_include_token1] = ACTIONS(3292), - [aux_sym_ip_qos_token1] = ACTIONS(3292), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3292), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3292), - [aux_sym_kex_algorithms_token1] = ACTIONS(3292), - [aux_sym_known_hosts_command_token1] = ACTIONS(3292), - [aux_sym_local_command_token1] = ACTIONS(3292), - [aux_sym_local_forward_token1] = ACTIONS(3292), - [aux_sym_log_level_token1] = ACTIONS(3292), - [aux_sym_log_verbose_token1] = ACTIONS(3292), - [aux_sym_macs_token1] = ACTIONS(3292), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3292), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3292), - [aux_sym_password_authentication_token1] = ACTIONS(3292), - [aux_sym_permit_local_command_token1] = ACTIONS(3292), - [aux_sym_permit_remote_open_token1] = ACTIONS(3292), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3292), - [aux_sym_port_token1] = ACTIONS(3292), - [aux_sym_preferred_authentications_token1] = ACTIONS(3292), - [aux_sym_protocol_token1] = ACTIONS(3292), - [aux_sym_proxy_command_token1] = ACTIONS(3292), - [aux_sym_proxy_jump_token1] = ACTIONS(3292), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3292), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3292), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3292), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3292), - [aux_sym_rekey_limit_token1] = ACTIONS(3292), - [aux_sym_remote_command_token1] = ACTIONS(3292), - [aux_sym_remote_forward_token1] = ACTIONS(3292), - [aux_sym_request_tty_token1] = ACTIONS(3292), - [aux_sym_required_rsa_size_token1] = ACTIONS(3292), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3292), - [aux_sym_security_key_provider_token1] = ACTIONS(3292), - [aux_sym_send_env_token1] = ACTIONS(3292), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3292), - [aux_sym_server_alive_interval_token1] = ACTIONS(3292), - [aux_sym_session_type_token1] = ACTIONS(3292), - [aux_sym_set_env_token1] = ACTIONS(3292), - [aux_sym_stdin_null_token1] = ACTIONS(3292), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3292), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3292), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3292), - [aux_sym_syslog_facility_token1] = ACTIONS(3292), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3292), - [aux_sym_keep_alive_token1] = ACTIONS(3292), - [aux_sym_tag_token1] = ACTIONS(3292), - [aux_sym_tunnel_token1] = ACTIONS(3294), - [aux_sym_tunnel_device_token1] = ACTIONS(3292), - [aux_sym_update_host_keys_token1] = ACTIONS(3292), - [aux_sym_use_keychain_token1] = ACTIONS(3292), - [aux_sym_use_roaming_token1] = ACTIONS(3292), - [aux_sym_user_token1] = ACTIONS(3294), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3292), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3292), - [aux_sym_visual_host_key_token1] = ACTIONS(3292), - [aux_sym_xauth_location_token1] = ACTIONS(3292), + [ts_builtin_sym_end] = ACTIONS(3307), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3309), + [aux_sym_match_token1] = ACTIONS(3307), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3307), + [aux_sym_address_family_token1] = ACTIONS(3307), + [aux_sym_batch_mode_token1] = ACTIONS(3307), + [aux_sym_bind_address_token1] = ACTIONS(3307), + [aux_sym_bind_interface_token1] = ACTIONS(3307), + [aux_sym_canonical_domains_token1] = ACTIONS(3307), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3307), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3307), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3307), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3307), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3307), + [aux_sym_certificate_file_token1] = ACTIONS(3307), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3307), + [aux_sym_channel_timeout_token1] = ACTIONS(3307), + [aux_sym_check_host_ip_token1] = ACTIONS(3307), + [aux_sym_ciphers_token1] = ACTIONS(3307), + [aux_sym_cipher_token1] = ACTIONS(3309), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3307), + [aux_sym_compression_token1] = ACTIONS(3307), + [aux_sym_connection_attempts_token1] = ACTIONS(3307), + [aux_sym_connect_timeout_token1] = ACTIONS(3307), + [aux_sym_control_master_token1] = ACTIONS(3307), + [aux_sym_control_path_token1] = ACTIONS(3307), + [aux_sym_control_persist_token1] = ACTIONS(3307), + [aux_sym_dynamic_forward_token1] = ACTIONS(3307), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3307), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3307), + [aux_sym_escape_char_token1] = ACTIONS(3307), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3307), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3307), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3307), + [aux_sym_forward_agent_token1] = ACTIONS(3307), + [aux_sym_forward_x11_token1] = ACTIONS(3309), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3307), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3307), + [aux_sym_gateway_ports_token1] = ACTIONS(3307), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3307), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3307), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3307), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3307), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3307), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3307), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3307), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3307), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3307), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3307), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3307), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3307), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3307), + [aux_sym_host_key_alias_token1] = ACTIONS(3307), + [aux_sym_hostname_token1] = ACTIONS(3307), + [aux_sym_identities_only_token1] = ACTIONS(3307), + [aux_sym_identity_agent_token1] = ACTIONS(3307), + [aux_sym_identity_file_token1] = ACTIONS(3307), + [aux_sym_ignore_unknown_token1] = ACTIONS(3307), + [aux_sym_include_token1] = ACTIONS(3307), + [aux_sym_ip_qos_token1] = ACTIONS(3307), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3307), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3307), + [aux_sym_kex_algorithms_token1] = ACTIONS(3307), + [aux_sym_known_hosts_command_token1] = ACTIONS(3307), + [aux_sym_local_command_token1] = ACTIONS(3307), + [aux_sym_local_forward_token1] = ACTIONS(3307), + [aux_sym_log_level_token1] = ACTIONS(3307), + [aux_sym_log_verbose_token1] = ACTIONS(3307), + [aux_sym_macs_token1] = ACTIONS(3307), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3307), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3307), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3307), + [aux_sym_password_authentication_token1] = ACTIONS(3307), + [aux_sym_permit_local_command_token1] = ACTIONS(3307), + [aux_sym_permit_remote_open_token1] = ACTIONS(3307), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3307), + [aux_sym_port_token1] = ACTIONS(3307), + [aux_sym_preferred_authentications_token1] = ACTIONS(3307), + [aux_sym_protocol_token1] = ACTIONS(3307), + [aux_sym_proxy_command_token1] = ACTIONS(3307), + [aux_sym_proxy_jump_token1] = ACTIONS(3307), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3307), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3307), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3307), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3307), + [aux_sym_rekey_limit_token1] = ACTIONS(3307), + [aux_sym_remote_command_token1] = ACTIONS(3307), + [aux_sym_remote_forward_token1] = ACTIONS(3307), + [aux_sym_request_tty_token1] = ACTIONS(3307), + [aux_sym_required_rsa_size_token1] = ACTIONS(3307), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3307), + [aux_sym_security_key_provider_token1] = ACTIONS(3307), + [aux_sym_send_env_token1] = ACTIONS(3307), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3307), + [aux_sym_server_alive_interval_token1] = ACTIONS(3307), + [aux_sym_session_type_token1] = ACTIONS(3307), + [aux_sym_set_env_token1] = ACTIONS(3307), + [aux_sym_stdin_null_token1] = ACTIONS(3307), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3307), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3307), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3307), + [aux_sym_syslog_facility_token1] = ACTIONS(3307), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3307), + [aux_sym_keep_alive_token1] = ACTIONS(3307), + [aux_sym_tag_token1] = ACTIONS(3307), + [aux_sym_tunnel_token1] = ACTIONS(3309), + [aux_sym_tunnel_device_token1] = ACTIONS(3307), + [aux_sym_update_host_keys_token1] = ACTIONS(3307), + [aux_sym_use_keychain_token1] = ACTIONS(3307), + [aux_sym_use_roaming_token1] = ACTIONS(3307), + [aux_sym_user_token1] = ACTIONS(3309), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3307), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3307), + [aux_sym_visual_host_key_token1] = ACTIONS(3307), + [aux_sym_xauth_location_token1] = ACTIONS(3307), }, [546] = { - [ts_builtin_sym_end] = ACTIONS(3296), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3298), - [aux_sym_match_token1] = ACTIONS(3296), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3296), - [aux_sym_address_family_token1] = ACTIONS(3296), - [aux_sym_batch_mode_token1] = ACTIONS(3296), - [aux_sym_bind_address_token1] = ACTIONS(3296), - [aux_sym_bind_interface_token1] = ACTIONS(3296), - [aux_sym_canonical_domains_token1] = ACTIONS(3296), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3296), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3296), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3296), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3296), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3296), - [aux_sym_certificate_file_token1] = ACTIONS(3296), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3296), - [aux_sym_channel_timeout_token1] = ACTIONS(3296), - [aux_sym_check_host_ip_token1] = ACTIONS(3296), - [aux_sym_ciphers_token1] = ACTIONS(3296), - [aux_sym_cipher_token1] = ACTIONS(3298), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3296), - [aux_sym_compression_token1] = ACTIONS(3296), - [aux_sym_connection_attempts_token1] = ACTIONS(3296), - [aux_sym_connect_timeout_token1] = ACTIONS(3296), - [aux_sym_control_master_token1] = ACTIONS(3296), - [aux_sym_control_path_token1] = ACTIONS(3296), - [aux_sym_control_persist_token1] = ACTIONS(3296), - [aux_sym_dynamic_forward_token1] = ACTIONS(3296), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3296), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3296), - [aux_sym_escape_char_token1] = ACTIONS(3296), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3296), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3296), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3296), - [aux_sym_forward_agent_token1] = ACTIONS(3296), - [aux_sym_forward_x11_token1] = ACTIONS(3298), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3296), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3296), - [aux_sym_gateway_ports_token1] = ACTIONS(3296), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3296), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3296), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3296), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3296), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3296), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3296), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3296), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3296), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3296), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3296), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3296), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3296), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3296), - [aux_sym_host_key_alias_token1] = ACTIONS(3296), - [aux_sym_hostname_token1] = ACTIONS(3296), - [aux_sym_identities_only_token1] = ACTIONS(3296), - [aux_sym_identity_agent_token1] = ACTIONS(3296), - [aux_sym_identity_file_token1] = ACTIONS(3296), - [aux_sym_ignore_unknown_token1] = ACTIONS(3296), - [aux_sym_include_token1] = ACTIONS(3296), - [aux_sym_ip_qos_token1] = ACTIONS(3296), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3296), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3296), - [aux_sym_kex_algorithms_token1] = ACTIONS(3296), - [aux_sym_known_hosts_command_token1] = ACTIONS(3296), - [aux_sym_local_command_token1] = ACTIONS(3296), - [aux_sym_local_forward_token1] = ACTIONS(3296), - [aux_sym_log_level_token1] = ACTIONS(3296), - [aux_sym_log_verbose_token1] = ACTIONS(3296), - [aux_sym_macs_token1] = ACTIONS(3296), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3296), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3296), - [aux_sym_password_authentication_token1] = ACTIONS(3296), - [aux_sym_permit_local_command_token1] = ACTIONS(3296), - [aux_sym_permit_remote_open_token1] = ACTIONS(3296), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3296), - [aux_sym_port_token1] = ACTIONS(3296), - [aux_sym_preferred_authentications_token1] = ACTIONS(3296), - [aux_sym_protocol_token1] = ACTIONS(3296), - [aux_sym_proxy_command_token1] = ACTIONS(3296), - [aux_sym_proxy_jump_token1] = ACTIONS(3296), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3296), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3296), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3296), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3296), - [aux_sym_rekey_limit_token1] = ACTIONS(3296), - [aux_sym_remote_command_token1] = ACTIONS(3296), - [aux_sym_remote_forward_token1] = ACTIONS(3296), - [aux_sym_request_tty_token1] = ACTIONS(3296), - [aux_sym_required_rsa_size_token1] = ACTIONS(3296), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3296), - [aux_sym_security_key_provider_token1] = ACTIONS(3296), - [aux_sym_send_env_token1] = ACTIONS(3296), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3296), - [aux_sym_server_alive_interval_token1] = ACTIONS(3296), - [aux_sym_session_type_token1] = ACTIONS(3296), - [aux_sym_set_env_token1] = ACTIONS(3296), - [aux_sym_stdin_null_token1] = ACTIONS(3296), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3296), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3296), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3296), - [aux_sym_syslog_facility_token1] = ACTIONS(3296), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3296), - [aux_sym_keep_alive_token1] = ACTIONS(3296), - [aux_sym_tag_token1] = ACTIONS(3296), - [aux_sym_tunnel_token1] = ACTIONS(3298), - [aux_sym_tunnel_device_token1] = ACTIONS(3296), - [aux_sym_update_host_keys_token1] = ACTIONS(3296), - [aux_sym_use_keychain_token1] = ACTIONS(3296), - [aux_sym_use_roaming_token1] = ACTIONS(3296), - [aux_sym_user_token1] = ACTIONS(3298), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3296), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3296), - [aux_sym_visual_host_key_token1] = ACTIONS(3296), - [aux_sym_xauth_location_token1] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(1121), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1123), + [aux_sym_match_token1] = ACTIONS(1121), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1121), + [aux_sym_address_family_token1] = ACTIONS(1121), + [aux_sym_batch_mode_token1] = ACTIONS(1121), + [aux_sym_bind_address_token1] = ACTIONS(1121), + [aux_sym_bind_interface_token1] = ACTIONS(1121), + [aux_sym_canonical_domains_token1] = ACTIONS(1121), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1121), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1121), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1121), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1121), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1121), + [aux_sym_certificate_file_token1] = ACTIONS(1121), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1121), + [aux_sym_channel_timeout_token1] = ACTIONS(1121), + [aux_sym_check_host_ip_token1] = ACTIONS(1121), + [aux_sym_ciphers_token1] = ACTIONS(1121), + [aux_sym_cipher_token1] = ACTIONS(1123), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1121), + [aux_sym_compression_token1] = ACTIONS(1121), + [aux_sym_connection_attempts_token1] = ACTIONS(1121), + [aux_sym_connect_timeout_token1] = ACTIONS(1121), + [aux_sym_control_master_token1] = ACTIONS(1121), + [aux_sym_control_path_token1] = ACTIONS(1121), + [aux_sym_control_persist_token1] = ACTIONS(1121), + [aux_sym_dynamic_forward_token1] = ACTIONS(1121), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1121), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1121), + [aux_sym_escape_char_token1] = ACTIONS(1121), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1121), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1121), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1121), + [aux_sym_forward_agent_token1] = ACTIONS(1121), + [aux_sym_forward_x11_token1] = ACTIONS(1123), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1121), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1121), + [aux_sym_gateway_ports_token1] = ACTIONS(1121), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1121), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1121), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1121), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1121), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1121), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1121), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1121), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1121), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1121), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1121), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1121), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1121), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1121), + [aux_sym_host_key_alias_token1] = ACTIONS(1121), + [aux_sym_hostname_token1] = ACTIONS(1121), + [aux_sym_identities_only_token1] = ACTIONS(1121), + [aux_sym_identity_agent_token1] = ACTIONS(1121), + [aux_sym_identity_file_token1] = ACTIONS(1121), + [aux_sym_ignore_unknown_token1] = ACTIONS(1121), + [aux_sym_include_token1] = ACTIONS(1121), + [aux_sym_ip_qos_token1] = ACTIONS(1121), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1121), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1121), + [aux_sym_kex_algorithms_token1] = ACTIONS(1121), + [aux_sym_known_hosts_command_token1] = ACTIONS(1121), + [aux_sym_local_command_token1] = ACTIONS(1121), + [aux_sym_local_forward_token1] = ACTIONS(1121), + [aux_sym_log_level_token1] = ACTIONS(1121), + [aux_sym_log_verbose_token1] = ACTIONS(1121), + [aux_sym_macs_token1] = ACTIONS(1121), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1121), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1121), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1121), + [aux_sym_password_authentication_token1] = ACTIONS(1121), + [aux_sym_permit_local_command_token1] = ACTIONS(1121), + [aux_sym_permit_remote_open_token1] = ACTIONS(1121), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1121), + [aux_sym_port_token1] = ACTIONS(1121), + [aux_sym_preferred_authentications_token1] = ACTIONS(1121), + [aux_sym_protocol_token1] = ACTIONS(1121), + [aux_sym_proxy_command_token1] = ACTIONS(1121), + [aux_sym_proxy_jump_token1] = ACTIONS(1121), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1121), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1121), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1121), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1121), + [aux_sym_rekey_limit_token1] = ACTIONS(1121), + [aux_sym_remote_command_token1] = ACTIONS(1121), + [aux_sym_remote_forward_token1] = ACTIONS(1121), + [aux_sym_request_tty_token1] = ACTIONS(1121), + [aux_sym_required_rsa_size_token1] = ACTIONS(1121), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1121), + [aux_sym_security_key_provider_token1] = ACTIONS(1121), + [aux_sym_send_env_token1] = ACTIONS(1121), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1121), + [aux_sym_server_alive_interval_token1] = ACTIONS(1121), + [aux_sym_session_type_token1] = ACTIONS(1121), + [aux_sym_set_env_token1] = ACTIONS(1121), + [aux_sym_stdin_null_token1] = ACTIONS(1121), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1121), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1121), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1121), + [aux_sym_syslog_facility_token1] = ACTIONS(1121), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1121), + [aux_sym_keep_alive_token1] = ACTIONS(1121), + [aux_sym_tag_token1] = ACTIONS(1121), + [aux_sym_tunnel_token1] = ACTIONS(1123), + [aux_sym_tunnel_device_token1] = ACTIONS(1121), + [aux_sym_update_host_keys_token1] = ACTIONS(1121), + [aux_sym_use_keychain_token1] = ACTIONS(1121), + [aux_sym_use_roaming_token1] = ACTIONS(1121), + [aux_sym_user_token1] = ACTIONS(1123), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1121), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1121), + [aux_sym_visual_host_key_token1] = ACTIONS(1121), + [aux_sym_xauth_location_token1] = ACTIONS(1121), }, [547] = { - [ts_builtin_sym_end] = ACTIONS(3300), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3302), - [aux_sym_match_token1] = ACTIONS(3300), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3300), - [aux_sym_address_family_token1] = ACTIONS(3300), - [aux_sym_batch_mode_token1] = ACTIONS(3300), - [aux_sym_bind_address_token1] = ACTIONS(3300), - [aux_sym_bind_interface_token1] = ACTIONS(3300), - [aux_sym_canonical_domains_token1] = ACTIONS(3300), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3300), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3300), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3300), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3300), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3300), - [aux_sym_certificate_file_token1] = ACTIONS(3300), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3300), - [aux_sym_channel_timeout_token1] = ACTIONS(3300), - [aux_sym_check_host_ip_token1] = ACTIONS(3300), - [aux_sym_ciphers_token1] = ACTIONS(3300), - [aux_sym_cipher_token1] = ACTIONS(3302), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3300), - [aux_sym_compression_token1] = ACTIONS(3300), - [aux_sym_connection_attempts_token1] = ACTIONS(3300), - [aux_sym_connect_timeout_token1] = ACTIONS(3300), - [aux_sym_control_master_token1] = ACTIONS(3300), - [aux_sym_control_path_token1] = ACTIONS(3300), - [aux_sym_control_persist_token1] = ACTIONS(3300), - [aux_sym_dynamic_forward_token1] = ACTIONS(3300), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3300), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3300), - [aux_sym_escape_char_token1] = ACTIONS(3300), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3300), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3300), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3300), - [aux_sym_forward_agent_token1] = ACTIONS(3300), - [aux_sym_forward_x11_token1] = ACTIONS(3302), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3300), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3300), - [aux_sym_gateway_ports_token1] = ACTIONS(3300), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3300), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3300), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3300), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3300), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3300), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3300), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3300), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3300), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3300), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3300), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3300), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3300), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3300), - [aux_sym_host_key_alias_token1] = ACTIONS(3300), - [aux_sym_hostname_token1] = ACTIONS(3300), - [aux_sym_identities_only_token1] = ACTIONS(3300), - [aux_sym_identity_agent_token1] = ACTIONS(3300), - [aux_sym_identity_file_token1] = ACTIONS(3300), - [aux_sym_ignore_unknown_token1] = ACTIONS(3300), - [aux_sym_include_token1] = ACTIONS(3300), - [aux_sym_ip_qos_token1] = ACTIONS(3300), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3300), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3300), - [aux_sym_kex_algorithms_token1] = ACTIONS(3300), - [aux_sym_known_hosts_command_token1] = ACTIONS(3300), - [aux_sym_local_command_token1] = ACTIONS(3300), - [aux_sym_local_forward_token1] = ACTIONS(3300), - [aux_sym_log_level_token1] = ACTIONS(3300), - [aux_sym_log_verbose_token1] = ACTIONS(3300), - [aux_sym_macs_token1] = ACTIONS(3300), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3300), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3300), - [aux_sym_password_authentication_token1] = ACTIONS(3300), - [aux_sym_permit_local_command_token1] = ACTIONS(3300), - [aux_sym_permit_remote_open_token1] = ACTIONS(3300), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3300), - [aux_sym_port_token1] = ACTIONS(3300), - [aux_sym_preferred_authentications_token1] = ACTIONS(3300), - [aux_sym_protocol_token1] = ACTIONS(3300), - [aux_sym_proxy_command_token1] = ACTIONS(3300), - [aux_sym_proxy_jump_token1] = ACTIONS(3300), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3300), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3300), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3300), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3300), - [aux_sym_rekey_limit_token1] = ACTIONS(3300), - [aux_sym_remote_command_token1] = ACTIONS(3300), - [aux_sym_remote_forward_token1] = ACTIONS(3300), - [aux_sym_request_tty_token1] = ACTIONS(3300), - [aux_sym_required_rsa_size_token1] = ACTIONS(3300), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3300), - [aux_sym_security_key_provider_token1] = ACTIONS(3300), - [aux_sym_send_env_token1] = ACTIONS(3300), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3300), - [aux_sym_server_alive_interval_token1] = ACTIONS(3300), - [aux_sym_session_type_token1] = ACTIONS(3300), - [aux_sym_set_env_token1] = ACTIONS(3300), - [aux_sym_stdin_null_token1] = ACTIONS(3300), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3300), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3300), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3300), - [aux_sym_syslog_facility_token1] = ACTIONS(3300), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3300), - [aux_sym_keep_alive_token1] = ACTIONS(3300), - [aux_sym_tag_token1] = ACTIONS(3300), - [aux_sym_tunnel_token1] = ACTIONS(3302), - [aux_sym_tunnel_device_token1] = ACTIONS(3300), - [aux_sym_update_host_keys_token1] = ACTIONS(3300), - [aux_sym_use_keychain_token1] = ACTIONS(3300), - [aux_sym_use_roaming_token1] = ACTIONS(3300), - [aux_sym_user_token1] = ACTIONS(3302), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3300), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3300), - [aux_sym_visual_host_key_token1] = ACTIONS(3300), - [aux_sym_xauth_location_token1] = ACTIONS(3300), + [ts_builtin_sym_end] = ACTIONS(1247), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1249), + [aux_sym_match_token1] = ACTIONS(1247), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1247), + [aux_sym_address_family_token1] = ACTIONS(1247), + [aux_sym_batch_mode_token1] = ACTIONS(1247), + [aux_sym_bind_address_token1] = ACTIONS(1247), + [aux_sym_bind_interface_token1] = ACTIONS(1247), + [aux_sym_canonical_domains_token1] = ACTIONS(1247), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1247), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1247), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1247), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1247), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1247), + [aux_sym_certificate_file_token1] = ACTIONS(1247), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1247), + [aux_sym_channel_timeout_token1] = ACTIONS(1247), + [aux_sym_check_host_ip_token1] = ACTIONS(1247), + [aux_sym_ciphers_token1] = ACTIONS(1247), + [aux_sym_cipher_token1] = ACTIONS(1249), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1247), + [aux_sym_compression_token1] = ACTIONS(1247), + [aux_sym_connection_attempts_token1] = ACTIONS(1247), + [aux_sym_connect_timeout_token1] = ACTIONS(1247), + [aux_sym_control_master_token1] = ACTIONS(1247), + [aux_sym_control_path_token1] = ACTIONS(1247), + [aux_sym_control_persist_token1] = ACTIONS(1247), + [aux_sym_dynamic_forward_token1] = ACTIONS(1247), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1247), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1247), + [aux_sym_escape_char_token1] = ACTIONS(1247), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1247), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1247), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1247), + [aux_sym_forward_agent_token1] = ACTIONS(1247), + [aux_sym_forward_x11_token1] = ACTIONS(1249), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1247), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1247), + [aux_sym_gateway_ports_token1] = ACTIONS(1247), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1247), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1247), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1247), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1247), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1247), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1247), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1247), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1247), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1247), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1247), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1247), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1247), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1247), + [aux_sym_host_key_alias_token1] = ACTIONS(1247), + [aux_sym_hostname_token1] = ACTIONS(1247), + [aux_sym_identities_only_token1] = ACTIONS(1247), + [aux_sym_identity_agent_token1] = ACTIONS(1247), + [aux_sym_identity_file_token1] = ACTIONS(1247), + [aux_sym_ignore_unknown_token1] = ACTIONS(1247), + [aux_sym_include_token1] = ACTIONS(1247), + [aux_sym_ip_qos_token1] = ACTIONS(1247), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1247), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1247), + [aux_sym_kex_algorithms_token1] = ACTIONS(1247), + [aux_sym_known_hosts_command_token1] = ACTIONS(1247), + [aux_sym_local_command_token1] = ACTIONS(1247), + [aux_sym_local_forward_token1] = ACTIONS(1247), + [aux_sym_log_level_token1] = ACTIONS(1247), + [aux_sym_log_verbose_token1] = ACTIONS(1247), + [aux_sym_macs_token1] = ACTIONS(1247), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1247), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1247), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1247), + [aux_sym_password_authentication_token1] = ACTIONS(1247), + [aux_sym_permit_local_command_token1] = ACTIONS(1247), + [aux_sym_permit_remote_open_token1] = ACTIONS(1247), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1247), + [aux_sym_port_token1] = ACTIONS(1247), + [aux_sym_preferred_authentications_token1] = ACTIONS(1247), + [aux_sym_protocol_token1] = ACTIONS(1247), + [aux_sym_proxy_command_token1] = ACTIONS(1247), + [aux_sym_proxy_jump_token1] = ACTIONS(1247), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1247), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1247), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1247), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1247), + [aux_sym_rekey_limit_token1] = ACTIONS(1247), + [aux_sym_remote_command_token1] = ACTIONS(1247), + [aux_sym_remote_forward_token1] = ACTIONS(1247), + [aux_sym_request_tty_token1] = ACTIONS(1247), + [aux_sym_required_rsa_size_token1] = ACTIONS(1247), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1247), + [aux_sym_security_key_provider_token1] = ACTIONS(1247), + [aux_sym_send_env_token1] = ACTIONS(1247), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1247), + [aux_sym_server_alive_interval_token1] = ACTIONS(1247), + [aux_sym_session_type_token1] = ACTIONS(1247), + [aux_sym_set_env_token1] = ACTIONS(1247), + [aux_sym_stdin_null_token1] = ACTIONS(1247), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1247), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1247), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1247), + [aux_sym_syslog_facility_token1] = ACTIONS(1247), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1247), + [aux_sym_keep_alive_token1] = ACTIONS(1247), + [aux_sym_tag_token1] = ACTIONS(1247), + [aux_sym_tunnel_token1] = ACTIONS(1249), + [aux_sym_tunnel_device_token1] = ACTIONS(1247), + [aux_sym_update_host_keys_token1] = ACTIONS(1247), + [aux_sym_use_keychain_token1] = ACTIONS(1247), + [aux_sym_use_roaming_token1] = ACTIONS(1247), + [aux_sym_user_token1] = ACTIONS(1249), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1247), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1247), + [aux_sym_visual_host_key_token1] = ACTIONS(1247), + [aux_sym_xauth_location_token1] = ACTIONS(1247), }, [548] = { - [ts_builtin_sym_end] = ACTIONS(3304), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3306), - [aux_sym_match_token1] = ACTIONS(3304), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3304), - [aux_sym_address_family_token1] = ACTIONS(3304), - [aux_sym_batch_mode_token1] = ACTIONS(3304), - [aux_sym_bind_address_token1] = ACTIONS(3304), - [aux_sym_bind_interface_token1] = ACTIONS(3304), - [aux_sym_canonical_domains_token1] = ACTIONS(3304), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3304), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3304), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3304), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3304), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3304), - [aux_sym_certificate_file_token1] = ACTIONS(3304), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3304), - [aux_sym_channel_timeout_token1] = ACTIONS(3304), - [aux_sym_check_host_ip_token1] = ACTIONS(3304), - [aux_sym_ciphers_token1] = ACTIONS(3304), - [aux_sym_cipher_token1] = ACTIONS(3306), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3304), - [aux_sym_compression_token1] = ACTIONS(3304), - [aux_sym_connection_attempts_token1] = ACTIONS(3304), - [aux_sym_connect_timeout_token1] = ACTIONS(3304), - [aux_sym_control_master_token1] = ACTIONS(3304), - [aux_sym_control_path_token1] = ACTIONS(3304), - [aux_sym_control_persist_token1] = ACTIONS(3304), - [aux_sym_dynamic_forward_token1] = ACTIONS(3304), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3304), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3304), - [aux_sym_escape_char_token1] = ACTIONS(3304), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3304), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3304), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3304), - [aux_sym_forward_agent_token1] = ACTIONS(3304), - [aux_sym_forward_x11_token1] = ACTIONS(3306), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3304), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3304), - [aux_sym_gateway_ports_token1] = ACTIONS(3304), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3304), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3304), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3304), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3304), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3304), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3304), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3304), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3304), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3304), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3304), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3304), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3304), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3304), - [aux_sym_host_key_alias_token1] = ACTIONS(3304), - [aux_sym_hostname_token1] = ACTIONS(3304), - [aux_sym_identities_only_token1] = ACTIONS(3304), - [aux_sym_identity_agent_token1] = ACTIONS(3304), - [aux_sym_identity_file_token1] = ACTIONS(3304), - [aux_sym_ignore_unknown_token1] = ACTIONS(3304), - [aux_sym_include_token1] = ACTIONS(3304), - [aux_sym_ip_qos_token1] = ACTIONS(3304), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3304), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3304), - [aux_sym_kex_algorithms_token1] = ACTIONS(3304), - [aux_sym_known_hosts_command_token1] = ACTIONS(3304), - [aux_sym_local_command_token1] = ACTIONS(3304), - [aux_sym_local_forward_token1] = ACTIONS(3304), - [aux_sym_log_level_token1] = ACTIONS(3304), - [aux_sym_log_verbose_token1] = ACTIONS(3304), - [aux_sym_macs_token1] = ACTIONS(3304), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3304), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3304), - [aux_sym_password_authentication_token1] = ACTIONS(3304), - [aux_sym_permit_local_command_token1] = ACTIONS(3304), - [aux_sym_permit_remote_open_token1] = ACTIONS(3304), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3304), - [aux_sym_port_token1] = ACTIONS(3304), - [aux_sym_preferred_authentications_token1] = ACTIONS(3304), - [aux_sym_protocol_token1] = ACTIONS(3304), - [aux_sym_proxy_command_token1] = ACTIONS(3304), - [aux_sym_proxy_jump_token1] = ACTIONS(3304), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3304), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3304), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3304), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3304), - [aux_sym_rekey_limit_token1] = ACTIONS(3304), - [aux_sym_remote_command_token1] = ACTIONS(3304), - [aux_sym_remote_forward_token1] = ACTIONS(3304), - [aux_sym_request_tty_token1] = ACTIONS(3304), - [aux_sym_required_rsa_size_token1] = ACTIONS(3304), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3304), - [aux_sym_security_key_provider_token1] = ACTIONS(3304), - [aux_sym_send_env_token1] = ACTIONS(3304), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3304), - [aux_sym_server_alive_interval_token1] = ACTIONS(3304), - [aux_sym_session_type_token1] = ACTIONS(3304), - [aux_sym_set_env_token1] = ACTIONS(3304), - [aux_sym_stdin_null_token1] = ACTIONS(3304), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3304), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3304), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3304), - [aux_sym_syslog_facility_token1] = ACTIONS(3304), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3304), - [aux_sym_keep_alive_token1] = ACTIONS(3304), - [aux_sym_tag_token1] = ACTIONS(3304), - [aux_sym_tunnel_token1] = ACTIONS(3306), - [aux_sym_tunnel_device_token1] = ACTIONS(3304), - [aux_sym_update_host_keys_token1] = ACTIONS(3304), - [aux_sym_use_keychain_token1] = ACTIONS(3304), - [aux_sym_use_roaming_token1] = ACTIONS(3304), - [aux_sym_user_token1] = ACTIONS(3306), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3304), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3304), - [aux_sym_visual_host_key_token1] = ACTIONS(3304), - [aux_sym_xauth_location_token1] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(1073), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1075), + [aux_sym_match_token1] = ACTIONS(1073), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1073), + [aux_sym_address_family_token1] = ACTIONS(1073), + [aux_sym_batch_mode_token1] = ACTIONS(1073), + [aux_sym_bind_address_token1] = ACTIONS(1073), + [aux_sym_bind_interface_token1] = ACTIONS(1073), + [aux_sym_canonical_domains_token1] = ACTIONS(1073), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1073), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1073), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1073), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1073), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1073), + [aux_sym_certificate_file_token1] = ACTIONS(1073), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1073), + [aux_sym_channel_timeout_token1] = ACTIONS(1073), + [aux_sym_check_host_ip_token1] = ACTIONS(1073), + [aux_sym_ciphers_token1] = ACTIONS(1073), + [aux_sym_cipher_token1] = ACTIONS(1075), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1073), + [aux_sym_compression_token1] = ACTIONS(1073), + [aux_sym_connection_attempts_token1] = ACTIONS(1073), + [aux_sym_connect_timeout_token1] = ACTIONS(1073), + [aux_sym_control_master_token1] = ACTIONS(1073), + [aux_sym_control_path_token1] = ACTIONS(1073), + [aux_sym_control_persist_token1] = ACTIONS(1073), + [aux_sym_dynamic_forward_token1] = ACTIONS(1073), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1073), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1073), + [aux_sym_escape_char_token1] = ACTIONS(1073), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1073), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1073), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1073), + [aux_sym_forward_agent_token1] = ACTIONS(1073), + [aux_sym_forward_x11_token1] = ACTIONS(1075), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1073), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1073), + [aux_sym_gateway_ports_token1] = ACTIONS(1073), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1073), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1073), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1073), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1073), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1073), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1073), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1073), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1073), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1073), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1073), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1073), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1073), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1073), + [aux_sym_host_key_alias_token1] = ACTIONS(1073), + [aux_sym_hostname_token1] = ACTIONS(1073), + [aux_sym_identities_only_token1] = ACTIONS(1073), + [aux_sym_identity_agent_token1] = ACTIONS(1073), + [aux_sym_identity_file_token1] = ACTIONS(1073), + [aux_sym_ignore_unknown_token1] = ACTIONS(1073), + [aux_sym_include_token1] = ACTIONS(1073), + [aux_sym_ip_qos_token1] = ACTIONS(1073), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1073), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1073), + [aux_sym_kex_algorithms_token1] = ACTIONS(1073), + [aux_sym_known_hosts_command_token1] = ACTIONS(1073), + [aux_sym_local_command_token1] = ACTIONS(1073), + [aux_sym_local_forward_token1] = ACTIONS(1073), + [aux_sym_log_level_token1] = ACTIONS(1073), + [aux_sym_log_verbose_token1] = ACTIONS(1073), + [aux_sym_macs_token1] = ACTIONS(1073), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1073), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1073), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1073), + [aux_sym_password_authentication_token1] = ACTIONS(1073), + [aux_sym_permit_local_command_token1] = ACTIONS(1073), + [aux_sym_permit_remote_open_token1] = ACTIONS(1073), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1073), + [aux_sym_port_token1] = ACTIONS(1073), + [aux_sym_preferred_authentications_token1] = ACTIONS(1073), + [aux_sym_protocol_token1] = ACTIONS(1073), + [aux_sym_proxy_command_token1] = ACTIONS(1073), + [aux_sym_proxy_jump_token1] = ACTIONS(1073), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1073), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1073), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1073), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1073), + [aux_sym_rekey_limit_token1] = ACTIONS(1073), + [aux_sym_remote_command_token1] = ACTIONS(1073), + [aux_sym_remote_forward_token1] = ACTIONS(1073), + [aux_sym_request_tty_token1] = ACTIONS(1073), + [aux_sym_required_rsa_size_token1] = ACTIONS(1073), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1073), + [aux_sym_security_key_provider_token1] = ACTIONS(1073), + [aux_sym_send_env_token1] = ACTIONS(1073), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1073), + [aux_sym_server_alive_interval_token1] = ACTIONS(1073), + [aux_sym_session_type_token1] = ACTIONS(1073), + [aux_sym_set_env_token1] = ACTIONS(1073), + [aux_sym_stdin_null_token1] = ACTIONS(1073), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1073), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1073), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1073), + [aux_sym_syslog_facility_token1] = ACTIONS(1073), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1073), + [aux_sym_keep_alive_token1] = ACTIONS(1073), + [aux_sym_tag_token1] = ACTIONS(1073), + [aux_sym_tunnel_token1] = ACTIONS(1075), + [aux_sym_tunnel_device_token1] = ACTIONS(1073), + [aux_sym_update_host_keys_token1] = ACTIONS(1073), + [aux_sym_use_keychain_token1] = ACTIONS(1073), + [aux_sym_use_roaming_token1] = ACTIONS(1073), + [aux_sym_user_token1] = ACTIONS(1075), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1073), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1073), + [aux_sym_visual_host_key_token1] = ACTIONS(1073), + [aux_sym_xauth_location_token1] = ACTIONS(1073), }, [549] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1466), - [aux_sym_match_token1] = ACTIONS(1464), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1464), - [aux_sym_address_family_token1] = ACTIONS(1464), - [aux_sym_batch_mode_token1] = ACTIONS(1464), - [aux_sym_bind_address_token1] = ACTIONS(1464), - [aux_sym_bind_interface_token1] = ACTIONS(1464), - [aux_sym_canonical_domains_token1] = ACTIONS(1464), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1464), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1464), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1464), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1464), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1464), - [aux_sym_certificate_file_token1] = ACTIONS(1464), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1464), - [aux_sym_channel_timeout_token1] = ACTIONS(1464), - [aux_sym_check_host_ip_token1] = ACTIONS(1464), - [aux_sym_ciphers_token1] = ACTIONS(1464), - [aux_sym_cipher_token1] = ACTIONS(1466), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1464), - [aux_sym_compression_token1] = ACTIONS(1464), - [aux_sym_connection_attempts_token1] = ACTIONS(1464), - [aux_sym_connect_timeout_token1] = ACTIONS(1464), - [aux_sym_control_master_token1] = ACTIONS(1464), - [aux_sym_control_path_token1] = ACTIONS(1464), - [aux_sym_control_persist_token1] = ACTIONS(1464), - [aux_sym_dynamic_forward_token1] = ACTIONS(1464), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1464), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1464), - [aux_sym_escape_char_token1] = ACTIONS(1464), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1464), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1464), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1464), - [aux_sym_forward_agent_token1] = ACTIONS(1464), - [aux_sym_forward_x11_token1] = ACTIONS(1466), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1464), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1464), - [aux_sym_gateway_ports_token1] = ACTIONS(1464), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1464), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1464), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1464), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1464), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1464), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1464), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1464), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1464), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1464), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1464), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1464), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1464), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1464), - [aux_sym_host_key_alias_token1] = ACTIONS(1464), - [aux_sym_hostname_token1] = ACTIONS(1464), - [aux_sym_identities_only_token1] = ACTIONS(1464), - [aux_sym_identity_agent_token1] = ACTIONS(1464), - [aux_sym_identity_file_token1] = ACTIONS(1464), - [aux_sym_ignore_unknown_token1] = ACTIONS(1464), - [aux_sym_include_token1] = ACTIONS(1464), - [aux_sym_ip_qos_token1] = ACTIONS(1464), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1464), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1464), - [aux_sym_kex_algorithms_token1] = ACTIONS(1464), - [aux_sym_known_hosts_command_token1] = ACTIONS(1464), - [aux_sym_local_command_token1] = ACTIONS(1464), - [aux_sym_local_forward_token1] = ACTIONS(1464), - [aux_sym_log_level_token1] = ACTIONS(1464), - [aux_sym_log_verbose_token1] = ACTIONS(1464), - [aux_sym_macs_token1] = ACTIONS(1464), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1464), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1464), - [aux_sym_password_authentication_token1] = ACTIONS(1464), - [aux_sym_permit_local_command_token1] = ACTIONS(1464), - [aux_sym_permit_remote_open_token1] = ACTIONS(1464), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1464), - [aux_sym_port_token1] = ACTIONS(1464), - [aux_sym_preferred_authentications_token1] = ACTIONS(1464), - [aux_sym_protocol_token1] = ACTIONS(1464), - [aux_sym_proxy_command_token1] = ACTIONS(1464), - [aux_sym_proxy_jump_token1] = ACTIONS(1464), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1464), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1464), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1464), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1464), - [aux_sym_rekey_limit_token1] = ACTIONS(1464), - [aux_sym_remote_command_token1] = ACTIONS(1464), - [aux_sym_remote_forward_token1] = ACTIONS(1464), - [aux_sym_request_tty_token1] = ACTIONS(1464), - [aux_sym_required_rsa_size_token1] = ACTIONS(1464), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1464), - [aux_sym_security_key_provider_token1] = ACTIONS(1464), - [aux_sym_send_env_token1] = ACTIONS(1464), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1464), - [aux_sym_server_alive_interval_token1] = ACTIONS(1464), - [aux_sym_session_type_token1] = ACTIONS(1464), - [aux_sym_set_env_token1] = ACTIONS(1464), - [aux_sym_stdin_null_token1] = ACTIONS(1464), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1464), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1464), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1464), - [aux_sym_syslog_facility_token1] = ACTIONS(1464), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1464), - [aux_sym_keep_alive_token1] = ACTIONS(1464), - [aux_sym_tag_token1] = ACTIONS(1464), - [aux_sym_tunnel_token1] = ACTIONS(1466), - [aux_sym_tunnel_device_token1] = ACTIONS(1464), - [aux_sym_update_host_keys_token1] = ACTIONS(1464), - [aux_sym_use_keychain_token1] = ACTIONS(1464), - [aux_sym_use_roaming_token1] = ACTIONS(1464), - [aux_sym_user_token1] = ACTIONS(1466), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1464), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1464), - [aux_sym_visual_host_key_token1] = ACTIONS(1464), - [aux_sym_xauth_location_token1] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(3311), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3313), + [aux_sym_match_token1] = ACTIONS(3311), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3311), + [aux_sym_address_family_token1] = ACTIONS(3311), + [aux_sym_batch_mode_token1] = ACTIONS(3311), + [aux_sym_bind_address_token1] = ACTIONS(3311), + [aux_sym_bind_interface_token1] = ACTIONS(3311), + [aux_sym_canonical_domains_token1] = ACTIONS(3311), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3311), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3311), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3311), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3311), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3311), + [aux_sym_certificate_file_token1] = ACTIONS(3311), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3311), + [aux_sym_channel_timeout_token1] = ACTIONS(3311), + [aux_sym_check_host_ip_token1] = ACTIONS(3311), + [aux_sym_ciphers_token1] = ACTIONS(3311), + [aux_sym_cipher_token1] = ACTIONS(3313), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3311), + [aux_sym_compression_token1] = ACTIONS(3311), + [aux_sym_connection_attempts_token1] = ACTIONS(3311), + [aux_sym_connect_timeout_token1] = ACTIONS(3311), + [aux_sym_control_master_token1] = ACTIONS(3311), + [aux_sym_control_path_token1] = ACTIONS(3311), + [aux_sym_control_persist_token1] = ACTIONS(3311), + [aux_sym_dynamic_forward_token1] = ACTIONS(3311), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3311), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3311), + [aux_sym_escape_char_token1] = ACTIONS(3311), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3311), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3311), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3311), + [aux_sym_forward_agent_token1] = ACTIONS(3311), + [aux_sym_forward_x11_token1] = ACTIONS(3313), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3311), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3311), + [aux_sym_gateway_ports_token1] = ACTIONS(3311), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3311), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3311), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3311), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3311), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3311), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3311), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3311), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3311), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3311), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3311), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3311), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3311), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3311), + [aux_sym_host_key_alias_token1] = ACTIONS(3311), + [aux_sym_hostname_token1] = ACTIONS(3311), + [aux_sym_identities_only_token1] = ACTIONS(3311), + [aux_sym_identity_agent_token1] = ACTIONS(3311), + [aux_sym_identity_file_token1] = ACTIONS(3311), + [aux_sym_ignore_unknown_token1] = ACTIONS(3311), + [aux_sym_include_token1] = ACTIONS(3311), + [aux_sym_ip_qos_token1] = ACTIONS(3311), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3311), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3311), + [aux_sym_kex_algorithms_token1] = ACTIONS(3311), + [aux_sym_known_hosts_command_token1] = ACTIONS(3311), + [aux_sym_local_command_token1] = ACTIONS(3311), + [aux_sym_local_forward_token1] = ACTIONS(3311), + [aux_sym_log_level_token1] = ACTIONS(3311), + [aux_sym_log_verbose_token1] = ACTIONS(3311), + [aux_sym_macs_token1] = ACTIONS(3311), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3311), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3311), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3311), + [aux_sym_password_authentication_token1] = ACTIONS(3311), + [aux_sym_permit_local_command_token1] = ACTIONS(3311), + [aux_sym_permit_remote_open_token1] = ACTIONS(3311), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3311), + [aux_sym_port_token1] = ACTIONS(3311), + [aux_sym_preferred_authentications_token1] = ACTIONS(3311), + [aux_sym_protocol_token1] = ACTIONS(3311), + [aux_sym_proxy_command_token1] = ACTIONS(3311), + [aux_sym_proxy_jump_token1] = ACTIONS(3311), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3311), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3311), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3311), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3311), + [aux_sym_rekey_limit_token1] = ACTIONS(3311), + [aux_sym_remote_command_token1] = ACTIONS(3311), + [aux_sym_remote_forward_token1] = ACTIONS(3311), + [aux_sym_request_tty_token1] = ACTIONS(3311), + [aux_sym_required_rsa_size_token1] = ACTIONS(3311), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3311), + [aux_sym_security_key_provider_token1] = ACTIONS(3311), + [aux_sym_send_env_token1] = ACTIONS(3311), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3311), + [aux_sym_server_alive_interval_token1] = ACTIONS(3311), + [aux_sym_session_type_token1] = ACTIONS(3311), + [aux_sym_set_env_token1] = ACTIONS(3311), + [aux_sym_stdin_null_token1] = ACTIONS(3311), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3311), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3311), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3311), + [aux_sym_syslog_facility_token1] = ACTIONS(3311), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3311), + [aux_sym_keep_alive_token1] = ACTIONS(3311), + [aux_sym_tag_token1] = ACTIONS(3311), + [aux_sym_tunnel_token1] = ACTIONS(3313), + [aux_sym_tunnel_device_token1] = ACTIONS(3311), + [aux_sym_update_host_keys_token1] = ACTIONS(3311), + [aux_sym_use_keychain_token1] = ACTIONS(3311), + [aux_sym_use_roaming_token1] = ACTIONS(3311), + [aux_sym_user_token1] = ACTIONS(3313), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3311), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3311), + [aux_sym_visual_host_key_token1] = ACTIONS(3311), + [aux_sym_xauth_location_token1] = ACTIONS(3311), }, [550] = { - [ts_builtin_sym_end] = ACTIONS(1254), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1256), - [aux_sym_match_token1] = ACTIONS(1254), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1254), - [aux_sym_address_family_token1] = ACTIONS(1254), - [aux_sym_batch_mode_token1] = ACTIONS(1254), - [aux_sym_bind_address_token1] = ACTIONS(1254), - [aux_sym_bind_interface_token1] = ACTIONS(1254), - [aux_sym_canonical_domains_token1] = ACTIONS(1254), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1254), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1254), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1254), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1254), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1254), - [aux_sym_certificate_file_token1] = ACTIONS(1254), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1254), - [aux_sym_channel_timeout_token1] = ACTIONS(1254), - [aux_sym_check_host_ip_token1] = ACTIONS(1254), - [aux_sym_ciphers_token1] = ACTIONS(1254), - [aux_sym_cipher_token1] = ACTIONS(1256), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1254), - [aux_sym_compression_token1] = ACTIONS(1254), - [aux_sym_connection_attempts_token1] = ACTIONS(1254), - [aux_sym_connect_timeout_token1] = ACTIONS(1254), - [aux_sym_control_master_token1] = ACTIONS(1254), - [aux_sym_control_path_token1] = ACTIONS(1254), - [aux_sym_control_persist_token1] = ACTIONS(1254), - [aux_sym_dynamic_forward_token1] = ACTIONS(1254), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1254), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1254), - [aux_sym_escape_char_token1] = ACTIONS(1254), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1254), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1254), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1254), - [aux_sym_forward_agent_token1] = ACTIONS(1254), - [aux_sym_forward_x11_token1] = ACTIONS(1256), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1254), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1254), - [aux_sym_gateway_ports_token1] = ACTIONS(1254), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1254), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1254), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1254), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1254), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1254), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1254), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1254), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1254), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1254), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1254), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1254), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1254), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1254), - [aux_sym_host_key_alias_token1] = ACTIONS(1254), - [aux_sym_hostname_token1] = ACTIONS(1254), - [aux_sym_identities_only_token1] = ACTIONS(1254), - [aux_sym_identity_agent_token1] = ACTIONS(1254), - [aux_sym_identity_file_token1] = ACTIONS(1254), - [aux_sym_ignore_unknown_token1] = ACTIONS(1254), - [aux_sym_include_token1] = ACTIONS(1254), - [aux_sym_ip_qos_token1] = ACTIONS(1254), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1254), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1254), - [aux_sym_kex_algorithms_token1] = ACTIONS(1254), - [aux_sym_known_hosts_command_token1] = ACTIONS(1254), - [aux_sym_local_command_token1] = ACTIONS(1254), - [aux_sym_local_forward_token1] = ACTIONS(1254), - [aux_sym_log_level_token1] = ACTIONS(1254), - [aux_sym_log_verbose_token1] = ACTIONS(1254), - [aux_sym_macs_token1] = ACTIONS(1254), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1254), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1254), - [aux_sym_password_authentication_token1] = ACTIONS(1254), - [aux_sym_permit_local_command_token1] = ACTIONS(1254), - [aux_sym_permit_remote_open_token1] = ACTIONS(1254), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1254), - [aux_sym_port_token1] = ACTIONS(1254), - [aux_sym_preferred_authentications_token1] = ACTIONS(1254), - [aux_sym_protocol_token1] = ACTIONS(1254), - [aux_sym_proxy_command_token1] = ACTIONS(1254), - [aux_sym_proxy_jump_token1] = ACTIONS(1254), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1254), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1254), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1254), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1254), - [aux_sym_rekey_limit_token1] = ACTIONS(1254), - [aux_sym_remote_command_token1] = ACTIONS(1254), - [aux_sym_remote_forward_token1] = ACTIONS(1254), - [aux_sym_request_tty_token1] = ACTIONS(1254), - [aux_sym_required_rsa_size_token1] = ACTIONS(1254), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1254), - [aux_sym_security_key_provider_token1] = ACTIONS(1254), - [aux_sym_send_env_token1] = ACTIONS(1254), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1254), - [aux_sym_server_alive_interval_token1] = ACTIONS(1254), - [aux_sym_session_type_token1] = ACTIONS(1254), - [aux_sym_set_env_token1] = ACTIONS(1254), - [aux_sym_stdin_null_token1] = ACTIONS(1254), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1254), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1254), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1254), - [aux_sym_syslog_facility_token1] = ACTIONS(1254), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1254), - [aux_sym_keep_alive_token1] = ACTIONS(1254), - [aux_sym_tag_token1] = ACTIONS(1254), - [aux_sym_tunnel_token1] = ACTIONS(1256), - [aux_sym_tunnel_device_token1] = ACTIONS(1254), - [aux_sym_update_host_keys_token1] = ACTIONS(1254), - [aux_sym_use_keychain_token1] = ACTIONS(1254), - [aux_sym_use_roaming_token1] = ACTIONS(1254), - [aux_sym_user_token1] = ACTIONS(1256), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1254), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1254), - [aux_sym_visual_host_key_token1] = ACTIONS(1254), - [aux_sym_xauth_location_token1] = ACTIONS(1254), + [ts_builtin_sym_end] = ACTIONS(3315), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3317), + [aux_sym_match_token1] = ACTIONS(3315), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3315), + [aux_sym_address_family_token1] = ACTIONS(3315), + [aux_sym_batch_mode_token1] = ACTIONS(3315), + [aux_sym_bind_address_token1] = ACTIONS(3315), + [aux_sym_bind_interface_token1] = ACTIONS(3315), + [aux_sym_canonical_domains_token1] = ACTIONS(3315), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3315), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3315), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3315), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3315), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3315), + [aux_sym_certificate_file_token1] = ACTIONS(3315), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3315), + [aux_sym_channel_timeout_token1] = ACTIONS(3315), + [aux_sym_check_host_ip_token1] = ACTIONS(3315), + [aux_sym_ciphers_token1] = ACTIONS(3315), + [aux_sym_cipher_token1] = ACTIONS(3317), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3315), + [aux_sym_compression_token1] = ACTIONS(3315), + [aux_sym_connection_attempts_token1] = ACTIONS(3315), + [aux_sym_connect_timeout_token1] = ACTIONS(3315), + [aux_sym_control_master_token1] = ACTIONS(3315), + [aux_sym_control_path_token1] = ACTIONS(3315), + [aux_sym_control_persist_token1] = ACTIONS(3315), + [aux_sym_dynamic_forward_token1] = ACTIONS(3315), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3315), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3315), + [aux_sym_escape_char_token1] = ACTIONS(3315), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3315), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3315), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3315), + [aux_sym_forward_agent_token1] = ACTIONS(3315), + [aux_sym_forward_x11_token1] = ACTIONS(3317), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3315), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3315), + [aux_sym_gateway_ports_token1] = ACTIONS(3315), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3315), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3315), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3315), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3315), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3315), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3315), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3315), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3315), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3315), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3315), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3315), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3315), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3315), + [aux_sym_host_key_alias_token1] = ACTIONS(3315), + [aux_sym_hostname_token1] = ACTIONS(3315), + [aux_sym_identities_only_token1] = ACTIONS(3315), + [aux_sym_identity_agent_token1] = ACTIONS(3315), + [aux_sym_identity_file_token1] = ACTIONS(3315), + [aux_sym_ignore_unknown_token1] = ACTIONS(3315), + [aux_sym_include_token1] = ACTIONS(3315), + [aux_sym_ip_qos_token1] = ACTIONS(3315), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3315), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3315), + [aux_sym_kex_algorithms_token1] = ACTIONS(3315), + [aux_sym_known_hosts_command_token1] = ACTIONS(3315), + [aux_sym_local_command_token1] = ACTIONS(3315), + [aux_sym_local_forward_token1] = ACTIONS(3315), + [aux_sym_log_level_token1] = ACTIONS(3315), + [aux_sym_log_verbose_token1] = ACTIONS(3315), + [aux_sym_macs_token1] = ACTIONS(3315), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3315), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3315), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3315), + [aux_sym_password_authentication_token1] = ACTIONS(3315), + [aux_sym_permit_local_command_token1] = ACTIONS(3315), + [aux_sym_permit_remote_open_token1] = ACTIONS(3315), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3315), + [aux_sym_port_token1] = ACTIONS(3315), + [aux_sym_preferred_authentications_token1] = ACTIONS(3315), + [aux_sym_protocol_token1] = ACTIONS(3315), + [aux_sym_proxy_command_token1] = ACTIONS(3315), + [aux_sym_proxy_jump_token1] = ACTIONS(3315), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3315), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3315), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3315), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3315), + [aux_sym_rekey_limit_token1] = ACTIONS(3315), + [aux_sym_remote_command_token1] = ACTIONS(3315), + [aux_sym_remote_forward_token1] = ACTIONS(3315), + [aux_sym_request_tty_token1] = ACTIONS(3315), + [aux_sym_required_rsa_size_token1] = ACTIONS(3315), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3315), + [aux_sym_security_key_provider_token1] = ACTIONS(3315), + [aux_sym_send_env_token1] = ACTIONS(3315), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3315), + [aux_sym_server_alive_interval_token1] = ACTIONS(3315), + [aux_sym_session_type_token1] = ACTIONS(3315), + [aux_sym_set_env_token1] = ACTIONS(3315), + [aux_sym_stdin_null_token1] = ACTIONS(3315), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3315), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3315), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3315), + [aux_sym_syslog_facility_token1] = ACTIONS(3315), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3315), + [aux_sym_keep_alive_token1] = ACTIONS(3315), + [aux_sym_tag_token1] = ACTIONS(3315), + [aux_sym_tunnel_token1] = ACTIONS(3317), + [aux_sym_tunnel_device_token1] = ACTIONS(3315), + [aux_sym_update_host_keys_token1] = ACTIONS(3315), + [aux_sym_use_keychain_token1] = ACTIONS(3315), + [aux_sym_use_roaming_token1] = ACTIONS(3315), + [aux_sym_user_token1] = ACTIONS(3317), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3315), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3315), + [aux_sym_visual_host_key_token1] = ACTIONS(3315), + [aux_sym_xauth_location_token1] = ACTIONS(3315), }, [551] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1472), - [aux_sym_match_token1] = ACTIONS(1470), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1470), - [aux_sym_address_family_token1] = ACTIONS(1470), - [aux_sym_batch_mode_token1] = ACTIONS(1470), - [aux_sym_bind_address_token1] = ACTIONS(1470), - [aux_sym_bind_interface_token1] = ACTIONS(1470), - [aux_sym_canonical_domains_token1] = ACTIONS(1470), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1470), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1470), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1470), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1470), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1470), - [aux_sym_certificate_file_token1] = ACTIONS(1470), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1470), - [aux_sym_channel_timeout_token1] = ACTIONS(1470), - [aux_sym_check_host_ip_token1] = ACTIONS(1470), - [aux_sym_ciphers_token1] = ACTIONS(1470), - [aux_sym_cipher_token1] = ACTIONS(1472), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1470), - [aux_sym_compression_token1] = ACTIONS(1470), - [aux_sym_connection_attempts_token1] = ACTIONS(1470), - [aux_sym_connect_timeout_token1] = ACTIONS(1470), - [aux_sym_control_master_token1] = ACTIONS(1470), - [aux_sym_control_path_token1] = ACTIONS(1470), - [aux_sym_control_persist_token1] = ACTIONS(1470), - [aux_sym_dynamic_forward_token1] = ACTIONS(1470), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1470), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1470), - [aux_sym_escape_char_token1] = ACTIONS(1470), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1470), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1470), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1470), - [aux_sym_forward_agent_token1] = ACTIONS(1470), - [aux_sym_forward_x11_token1] = ACTIONS(1472), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1470), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1470), - [aux_sym_gateway_ports_token1] = ACTIONS(1470), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1470), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1470), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1470), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1470), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1470), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1470), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1470), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1470), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1470), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1470), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1470), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1470), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1470), - [aux_sym_host_key_alias_token1] = ACTIONS(1470), - [aux_sym_hostname_token1] = ACTIONS(1470), - [aux_sym_identities_only_token1] = ACTIONS(1470), - [aux_sym_identity_agent_token1] = ACTIONS(1470), - [aux_sym_identity_file_token1] = ACTIONS(1470), - [aux_sym_ignore_unknown_token1] = ACTIONS(1470), - [aux_sym_include_token1] = ACTIONS(1470), - [aux_sym_ip_qos_token1] = ACTIONS(1470), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1470), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1470), - [aux_sym_kex_algorithms_token1] = ACTIONS(1470), - [aux_sym_known_hosts_command_token1] = ACTIONS(1470), - [aux_sym_local_command_token1] = ACTIONS(1470), - [aux_sym_local_forward_token1] = ACTIONS(1470), - [aux_sym_log_level_token1] = ACTIONS(1470), - [aux_sym_log_verbose_token1] = ACTIONS(1470), - [aux_sym_macs_token1] = ACTIONS(1470), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1470), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1470), - [aux_sym_password_authentication_token1] = ACTIONS(1470), - [aux_sym_permit_local_command_token1] = ACTIONS(1470), - [aux_sym_permit_remote_open_token1] = ACTIONS(1470), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1470), - [aux_sym_port_token1] = ACTIONS(1470), - [aux_sym_preferred_authentications_token1] = ACTIONS(1470), - [aux_sym_protocol_token1] = ACTIONS(1470), - [aux_sym_proxy_command_token1] = ACTIONS(1470), - [aux_sym_proxy_jump_token1] = ACTIONS(1470), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1470), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1470), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1470), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1470), - [aux_sym_rekey_limit_token1] = ACTIONS(1470), - [aux_sym_remote_command_token1] = ACTIONS(1470), - [aux_sym_remote_forward_token1] = ACTIONS(1470), - [aux_sym_request_tty_token1] = ACTIONS(1470), - [aux_sym_required_rsa_size_token1] = ACTIONS(1470), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1470), - [aux_sym_security_key_provider_token1] = ACTIONS(1470), - [aux_sym_send_env_token1] = ACTIONS(1470), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1470), - [aux_sym_server_alive_interval_token1] = ACTIONS(1470), - [aux_sym_session_type_token1] = ACTIONS(1470), - [aux_sym_set_env_token1] = ACTIONS(1470), - [aux_sym_stdin_null_token1] = ACTIONS(1470), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1470), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1470), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1470), - [aux_sym_syslog_facility_token1] = ACTIONS(1470), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1470), - [aux_sym_keep_alive_token1] = ACTIONS(1470), - [aux_sym_tag_token1] = ACTIONS(1470), - [aux_sym_tunnel_token1] = ACTIONS(1472), - [aux_sym_tunnel_device_token1] = ACTIONS(1470), - [aux_sym_update_host_keys_token1] = ACTIONS(1470), - [aux_sym_use_keychain_token1] = ACTIONS(1470), - [aux_sym_use_roaming_token1] = ACTIONS(1470), - [aux_sym_user_token1] = ACTIONS(1472), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1470), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1470), - [aux_sym_visual_host_key_token1] = ACTIONS(1470), - [aux_sym_xauth_location_token1] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(3319), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3321), + [aux_sym_match_token1] = ACTIONS(3319), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3319), + [aux_sym_address_family_token1] = ACTIONS(3319), + [aux_sym_batch_mode_token1] = ACTIONS(3319), + [aux_sym_bind_address_token1] = ACTIONS(3319), + [aux_sym_bind_interface_token1] = ACTIONS(3319), + [aux_sym_canonical_domains_token1] = ACTIONS(3319), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3319), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3319), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3319), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3319), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3319), + [aux_sym_certificate_file_token1] = ACTIONS(3319), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3319), + [aux_sym_channel_timeout_token1] = ACTIONS(3319), + [aux_sym_check_host_ip_token1] = ACTIONS(3319), + [aux_sym_ciphers_token1] = ACTIONS(3319), + [aux_sym_cipher_token1] = ACTIONS(3321), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3319), + [aux_sym_compression_token1] = ACTIONS(3319), + [aux_sym_connection_attempts_token1] = ACTIONS(3319), + [aux_sym_connect_timeout_token1] = ACTIONS(3319), + [aux_sym_control_master_token1] = ACTIONS(3319), + [aux_sym_control_path_token1] = ACTIONS(3319), + [aux_sym_control_persist_token1] = ACTIONS(3319), + [aux_sym_dynamic_forward_token1] = ACTIONS(3319), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3319), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3319), + [aux_sym_escape_char_token1] = ACTIONS(3319), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3319), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3319), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3319), + [aux_sym_forward_agent_token1] = ACTIONS(3319), + [aux_sym_forward_x11_token1] = ACTIONS(3321), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3319), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3319), + [aux_sym_gateway_ports_token1] = ACTIONS(3319), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3319), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3319), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3319), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3319), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3319), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3319), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3319), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3319), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3319), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3319), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3319), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3319), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3319), + [aux_sym_host_key_alias_token1] = ACTIONS(3319), + [aux_sym_hostname_token1] = ACTIONS(3319), + [aux_sym_identities_only_token1] = ACTIONS(3319), + [aux_sym_identity_agent_token1] = ACTIONS(3319), + [aux_sym_identity_file_token1] = ACTIONS(3319), + [aux_sym_ignore_unknown_token1] = ACTIONS(3319), + [aux_sym_include_token1] = ACTIONS(3319), + [aux_sym_ip_qos_token1] = ACTIONS(3319), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3319), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3319), + [aux_sym_kex_algorithms_token1] = ACTIONS(3319), + [aux_sym_known_hosts_command_token1] = ACTIONS(3319), + [aux_sym_local_command_token1] = ACTIONS(3319), + [aux_sym_local_forward_token1] = ACTIONS(3319), + [aux_sym_log_level_token1] = ACTIONS(3319), + [aux_sym_log_verbose_token1] = ACTIONS(3319), + [aux_sym_macs_token1] = ACTIONS(3319), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3319), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3319), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3319), + [aux_sym_password_authentication_token1] = ACTIONS(3319), + [aux_sym_permit_local_command_token1] = ACTIONS(3319), + [aux_sym_permit_remote_open_token1] = ACTIONS(3319), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3319), + [aux_sym_port_token1] = ACTIONS(3319), + [aux_sym_preferred_authentications_token1] = ACTIONS(3319), + [aux_sym_protocol_token1] = ACTIONS(3319), + [aux_sym_proxy_command_token1] = ACTIONS(3319), + [aux_sym_proxy_jump_token1] = ACTIONS(3319), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3319), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3319), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3319), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3319), + [aux_sym_rekey_limit_token1] = ACTIONS(3319), + [aux_sym_remote_command_token1] = ACTIONS(3319), + [aux_sym_remote_forward_token1] = ACTIONS(3319), + [aux_sym_request_tty_token1] = ACTIONS(3319), + [aux_sym_required_rsa_size_token1] = ACTIONS(3319), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3319), + [aux_sym_security_key_provider_token1] = ACTIONS(3319), + [aux_sym_send_env_token1] = ACTIONS(3319), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3319), + [aux_sym_server_alive_interval_token1] = ACTIONS(3319), + [aux_sym_session_type_token1] = ACTIONS(3319), + [aux_sym_set_env_token1] = ACTIONS(3319), + [aux_sym_stdin_null_token1] = ACTIONS(3319), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3319), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3319), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3319), + [aux_sym_syslog_facility_token1] = ACTIONS(3319), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3319), + [aux_sym_keep_alive_token1] = ACTIONS(3319), + [aux_sym_tag_token1] = ACTIONS(3319), + [aux_sym_tunnel_token1] = ACTIONS(3321), + [aux_sym_tunnel_device_token1] = ACTIONS(3319), + [aux_sym_update_host_keys_token1] = ACTIONS(3319), + [aux_sym_use_keychain_token1] = ACTIONS(3319), + [aux_sym_use_roaming_token1] = ACTIONS(3319), + [aux_sym_user_token1] = ACTIONS(3321), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3319), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3319), + [aux_sym_visual_host_key_token1] = ACTIONS(3319), + [aux_sym_xauth_location_token1] = ACTIONS(3319), }, [552] = { - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1250), - [aux_sym_match_token1] = ACTIONS(1248), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1248), - [aux_sym_address_family_token1] = ACTIONS(1248), - [aux_sym_batch_mode_token1] = ACTIONS(1248), - [aux_sym_bind_address_token1] = ACTIONS(1248), - [aux_sym_bind_interface_token1] = ACTIONS(1248), - [aux_sym_canonical_domains_token1] = ACTIONS(1248), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1248), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1248), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1248), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1248), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1248), - [aux_sym_certificate_file_token1] = ACTIONS(1248), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1248), - [aux_sym_channel_timeout_token1] = ACTIONS(1248), - [aux_sym_check_host_ip_token1] = ACTIONS(1248), - [aux_sym_ciphers_token1] = ACTIONS(1248), - [aux_sym_cipher_token1] = ACTIONS(1250), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1248), - [aux_sym_compression_token1] = ACTIONS(1248), - [aux_sym_connection_attempts_token1] = ACTIONS(1248), - [aux_sym_connect_timeout_token1] = ACTIONS(1248), - [aux_sym_control_master_token1] = ACTIONS(1248), - [aux_sym_control_path_token1] = ACTIONS(1248), - [aux_sym_control_persist_token1] = ACTIONS(1248), - [aux_sym_dynamic_forward_token1] = ACTIONS(1248), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1248), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1248), - [aux_sym_escape_char_token1] = ACTIONS(1248), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1248), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1248), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1248), - [aux_sym_forward_agent_token1] = ACTIONS(1248), - [aux_sym_forward_x11_token1] = ACTIONS(1250), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1248), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1248), - [aux_sym_gateway_ports_token1] = ACTIONS(1248), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1248), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1248), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1248), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1248), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1248), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1248), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1248), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1248), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1248), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1248), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1248), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1248), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1248), - [aux_sym_host_key_alias_token1] = ACTIONS(1248), - [aux_sym_hostname_token1] = ACTIONS(1248), - [aux_sym_identities_only_token1] = ACTIONS(1248), - [aux_sym_identity_agent_token1] = ACTIONS(1248), - [aux_sym_identity_file_token1] = ACTIONS(1248), - [aux_sym_ignore_unknown_token1] = ACTIONS(1248), - [aux_sym_include_token1] = ACTIONS(1248), - [aux_sym_ip_qos_token1] = ACTIONS(1248), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1248), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1248), - [aux_sym_kex_algorithms_token1] = ACTIONS(1248), - [aux_sym_known_hosts_command_token1] = ACTIONS(1248), - [aux_sym_local_command_token1] = ACTIONS(1248), - [aux_sym_local_forward_token1] = ACTIONS(1248), - [aux_sym_log_level_token1] = ACTIONS(1248), - [aux_sym_log_verbose_token1] = ACTIONS(1248), - [aux_sym_macs_token1] = ACTIONS(1248), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1248), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1248), - [aux_sym_password_authentication_token1] = ACTIONS(1248), - [aux_sym_permit_local_command_token1] = ACTIONS(1248), - [aux_sym_permit_remote_open_token1] = ACTIONS(1248), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1248), - [aux_sym_port_token1] = ACTIONS(1248), - [aux_sym_preferred_authentications_token1] = ACTIONS(1248), - [aux_sym_protocol_token1] = ACTIONS(1248), - [aux_sym_proxy_command_token1] = ACTIONS(1248), - [aux_sym_proxy_jump_token1] = ACTIONS(1248), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1248), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1248), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1248), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1248), - [aux_sym_rekey_limit_token1] = ACTIONS(1248), - [aux_sym_remote_command_token1] = ACTIONS(1248), - [aux_sym_remote_forward_token1] = ACTIONS(1248), - [aux_sym_request_tty_token1] = ACTIONS(1248), - [aux_sym_required_rsa_size_token1] = ACTIONS(1248), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1248), - [aux_sym_security_key_provider_token1] = ACTIONS(1248), - [aux_sym_send_env_token1] = ACTIONS(1248), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1248), - [aux_sym_server_alive_interval_token1] = ACTIONS(1248), - [aux_sym_session_type_token1] = ACTIONS(1248), - [aux_sym_set_env_token1] = ACTIONS(1248), - [aux_sym_stdin_null_token1] = ACTIONS(1248), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1248), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1248), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1248), - [aux_sym_syslog_facility_token1] = ACTIONS(1248), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1248), - [aux_sym_keep_alive_token1] = ACTIONS(1248), - [aux_sym_tag_token1] = ACTIONS(1248), - [aux_sym_tunnel_token1] = ACTIONS(1250), - [aux_sym_tunnel_device_token1] = ACTIONS(1248), - [aux_sym_update_host_keys_token1] = ACTIONS(1248), - [aux_sym_use_keychain_token1] = ACTIONS(1248), - [aux_sym_use_roaming_token1] = ACTIONS(1248), - [aux_sym_user_token1] = ACTIONS(1250), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1248), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1248), - [aux_sym_visual_host_key_token1] = ACTIONS(1248), - [aux_sym_xauth_location_token1] = ACTIONS(1248), + [ts_builtin_sym_end] = ACTIONS(3323), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3325), + [aux_sym_match_token1] = ACTIONS(3323), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3323), + [aux_sym_address_family_token1] = ACTIONS(3323), + [aux_sym_batch_mode_token1] = ACTIONS(3323), + [aux_sym_bind_address_token1] = ACTIONS(3323), + [aux_sym_bind_interface_token1] = ACTIONS(3323), + [aux_sym_canonical_domains_token1] = ACTIONS(3323), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3323), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3323), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3323), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3323), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3323), + [aux_sym_certificate_file_token1] = ACTIONS(3323), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3323), + [aux_sym_channel_timeout_token1] = ACTIONS(3323), + [aux_sym_check_host_ip_token1] = ACTIONS(3323), + [aux_sym_ciphers_token1] = ACTIONS(3323), + [aux_sym_cipher_token1] = ACTIONS(3325), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3323), + [aux_sym_compression_token1] = ACTIONS(3323), + [aux_sym_connection_attempts_token1] = ACTIONS(3323), + [aux_sym_connect_timeout_token1] = ACTIONS(3323), + [aux_sym_control_master_token1] = ACTIONS(3323), + [aux_sym_control_path_token1] = ACTIONS(3323), + [aux_sym_control_persist_token1] = ACTIONS(3323), + [aux_sym_dynamic_forward_token1] = ACTIONS(3323), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3323), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3323), + [aux_sym_escape_char_token1] = ACTIONS(3323), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3323), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3323), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3323), + [aux_sym_forward_agent_token1] = ACTIONS(3323), + [aux_sym_forward_x11_token1] = ACTIONS(3325), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3323), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3323), + [aux_sym_gateway_ports_token1] = ACTIONS(3323), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3323), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3323), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3323), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3323), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3323), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3323), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3323), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3323), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3323), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3323), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3323), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3323), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3323), + [aux_sym_host_key_alias_token1] = ACTIONS(3323), + [aux_sym_hostname_token1] = ACTIONS(3323), + [aux_sym_identities_only_token1] = ACTIONS(3323), + [aux_sym_identity_agent_token1] = ACTIONS(3323), + [aux_sym_identity_file_token1] = ACTIONS(3323), + [aux_sym_ignore_unknown_token1] = ACTIONS(3323), + [aux_sym_include_token1] = ACTIONS(3323), + [aux_sym_ip_qos_token1] = ACTIONS(3323), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3323), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3323), + [aux_sym_kex_algorithms_token1] = ACTIONS(3323), + [aux_sym_known_hosts_command_token1] = ACTIONS(3323), + [aux_sym_local_command_token1] = ACTIONS(3323), + [aux_sym_local_forward_token1] = ACTIONS(3323), + [aux_sym_log_level_token1] = ACTIONS(3323), + [aux_sym_log_verbose_token1] = ACTIONS(3323), + [aux_sym_macs_token1] = ACTIONS(3323), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3323), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3323), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3323), + [aux_sym_password_authentication_token1] = ACTIONS(3323), + [aux_sym_permit_local_command_token1] = ACTIONS(3323), + [aux_sym_permit_remote_open_token1] = ACTIONS(3323), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3323), + [aux_sym_port_token1] = ACTIONS(3323), + [aux_sym_preferred_authentications_token1] = ACTIONS(3323), + [aux_sym_protocol_token1] = ACTIONS(3323), + [aux_sym_proxy_command_token1] = ACTIONS(3323), + [aux_sym_proxy_jump_token1] = ACTIONS(3323), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3323), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3323), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3323), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3323), + [aux_sym_rekey_limit_token1] = ACTIONS(3323), + [aux_sym_remote_command_token1] = ACTIONS(3323), + [aux_sym_remote_forward_token1] = ACTIONS(3323), + [aux_sym_request_tty_token1] = ACTIONS(3323), + [aux_sym_required_rsa_size_token1] = ACTIONS(3323), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3323), + [aux_sym_security_key_provider_token1] = ACTIONS(3323), + [aux_sym_send_env_token1] = ACTIONS(3323), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3323), + [aux_sym_server_alive_interval_token1] = ACTIONS(3323), + [aux_sym_session_type_token1] = ACTIONS(3323), + [aux_sym_set_env_token1] = ACTIONS(3323), + [aux_sym_stdin_null_token1] = ACTIONS(3323), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3323), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3323), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3323), + [aux_sym_syslog_facility_token1] = ACTIONS(3323), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3323), + [aux_sym_keep_alive_token1] = ACTIONS(3323), + [aux_sym_tag_token1] = ACTIONS(3323), + [aux_sym_tunnel_token1] = ACTIONS(3325), + [aux_sym_tunnel_device_token1] = ACTIONS(3323), + [aux_sym_update_host_keys_token1] = ACTIONS(3323), + [aux_sym_use_keychain_token1] = ACTIONS(3323), + [aux_sym_use_roaming_token1] = ACTIONS(3323), + [aux_sym_user_token1] = ACTIONS(3325), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3323), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3323), + [aux_sym_visual_host_key_token1] = ACTIONS(3323), + [aux_sym_xauth_location_token1] = ACTIONS(3323), }, [553] = { - [ts_builtin_sym_end] = ACTIONS(3308), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3310), - [aux_sym_match_token1] = ACTIONS(3308), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3308), - [aux_sym_address_family_token1] = ACTIONS(3308), - [aux_sym_batch_mode_token1] = ACTIONS(3308), - [aux_sym_bind_address_token1] = ACTIONS(3308), - [aux_sym_bind_interface_token1] = ACTIONS(3308), - [aux_sym_canonical_domains_token1] = ACTIONS(3308), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3308), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3308), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3308), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3308), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3308), - [aux_sym_certificate_file_token1] = ACTIONS(3308), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3308), - [aux_sym_channel_timeout_token1] = ACTIONS(3308), - [aux_sym_check_host_ip_token1] = ACTIONS(3308), - [aux_sym_ciphers_token1] = ACTIONS(3308), - [aux_sym_cipher_token1] = ACTIONS(3310), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3308), - [aux_sym_compression_token1] = ACTIONS(3308), - [aux_sym_connection_attempts_token1] = ACTIONS(3308), - [aux_sym_connect_timeout_token1] = ACTIONS(3308), - [aux_sym_control_master_token1] = ACTIONS(3308), - [aux_sym_control_path_token1] = ACTIONS(3308), - [aux_sym_control_persist_token1] = ACTIONS(3308), - [aux_sym_dynamic_forward_token1] = ACTIONS(3308), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3308), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3308), - [aux_sym_escape_char_token1] = ACTIONS(3308), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3308), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3308), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3308), - [aux_sym_forward_agent_token1] = ACTIONS(3308), - [aux_sym_forward_x11_token1] = ACTIONS(3310), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3308), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3308), - [aux_sym_gateway_ports_token1] = ACTIONS(3308), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3308), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3308), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3308), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3308), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3308), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3308), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3308), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3308), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3308), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3308), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3308), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3308), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3308), - [aux_sym_host_key_alias_token1] = ACTIONS(3308), - [aux_sym_hostname_token1] = ACTIONS(3308), - [aux_sym_identities_only_token1] = ACTIONS(3308), - [aux_sym_identity_agent_token1] = ACTIONS(3308), - [aux_sym_identity_file_token1] = ACTIONS(3308), - [aux_sym_ignore_unknown_token1] = ACTIONS(3308), - [aux_sym_include_token1] = ACTIONS(3308), - [aux_sym_ip_qos_token1] = ACTIONS(3308), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3308), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3308), - [aux_sym_kex_algorithms_token1] = ACTIONS(3308), - [aux_sym_known_hosts_command_token1] = ACTIONS(3308), - [aux_sym_local_command_token1] = ACTIONS(3308), - [aux_sym_local_forward_token1] = ACTIONS(3308), - [aux_sym_log_level_token1] = ACTIONS(3308), - [aux_sym_log_verbose_token1] = ACTIONS(3308), - [aux_sym_macs_token1] = ACTIONS(3308), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3308), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3308), - [aux_sym_password_authentication_token1] = ACTIONS(3308), - [aux_sym_permit_local_command_token1] = ACTIONS(3308), - [aux_sym_permit_remote_open_token1] = ACTIONS(3308), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3308), - [aux_sym_port_token1] = ACTIONS(3308), - [aux_sym_preferred_authentications_token1] = ACTIONS(3308), - [aux_sym_protocol_token1] = ACTIONS(3308), - [aux_sym_proxy_command_token1] = ACTIONS(3308), - [aux_sym_proxy_jump_token1] = ACTIONS(3308), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3308), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3308), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3308), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3308), - [aux_sym_rekey_limit_token1] = ACTIONS(3308), - [aux_sym_remote_command_token1] = ACTIONS(3308), - [aux_sym_remote_forward_token1] = ACTIONS(3308), - [aux_sym_request_tty_token1] = ACTIONS(3308), - [aux_sym_required_rsa_size_token1] = ACTIONS(3308), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3308), - [aux_sym_security_key_provider_token1] = ACTIONS(3308), - [aux_sym_send_env_token1] = ACTIONS(3308), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3308), - [aux_sym_server_alive_interval_token1] = ACTIONS(3308), - [aux_sym_session_type_token1] = ACTIONS(3308), - [aux_sym_set_env_token1] = ACTIONS(3308), - [aux_sym_stdin_null_token1] = ACTIONS(3308), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3308), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3308), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3308), - [aux_sym_syslog_facility_token1] = ACTIONS(3308), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3308), - [aux_sym_keep_alive_token1] = ACTIONS(3308), - [aux_sym_tag_token1] = ACTIONS(3308), - [aux_sym_tunnel_token1] = ACTIONS(3310), - [aux_sym_tunnel_device_token1] = ACTIONS(3308), - [aux_sym_update_host_keys_token1] = ACTIONS(3308), - [aux_sym_use_keychain_token1] = ACTIONS(3308), - [aux_sym_use_roaming_token1] = ACTIONS(3308), - [aux_sym_user_token1] = ACTIONS(3310), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3308), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3308), - [aux_sym_visual_host_key_token1] = ACTIONS(3308), - [aux_sym_xauth_location_token1] = ACTIONS(3308), + [ts_builtin_sym_end] = ACTIONS(3327), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3329), + [aux_sym_match_token1] = ACTIONS(3327), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3327), + [aux_sym_address_family_token1] = ACTIONS(3327), + [aux_sym_batch_mode_token1] = ACTIONS(3327), + [aux_sym_bind_address_token1] = ACTIONS(3327), + [aux_sym_bind_interface_token1] = ACTIONS(3327), + [aux_sym_canonical_domains_token1] = ACTIONS(3327), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3327), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3327), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3327), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3327), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3327), + [aux_sym_certificate_file_token1] = ACTIONS(3327), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3327), + [aux_sym_channel_timeout_token1] = ACTIONS(3327), + [aux_sym_check_host_ip_token1] = ACTIONS(3327), + [aux_sym_ciphers_token1] = ACTIONS(3327), + [aux_sym_cipher_token1] = ACTIONS(3329), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3327), + [aux_sym_compression_token1] = ACTIONS(3327), + [aux_sym_connection_attempts_token1] = ACTIONS(3327), + [aux_sym_connect_timeout_token1] = ACTIONS(3327), + [aux_sym_control_master_token1] = ACTIONS(3327), + [aux_sym_control_path_token1] = ACTIONS(3327), + [aux_sym_control_persist_token1] = ACTIONS(3327), + [aux_sym_dynamic_forward_token1] = ACTIONS(3327), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3327), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3327), + [aux_sym_escape_char_token1] = ACTIONS(3327), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3327), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3327), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3327), + [aux_sym_forward_agent_token1] = ACTIONS(3327), + [aux_sym_forward_x11_token1] = ACTIONS(3329), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3327), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3327), + [aux_sym_gateway_ports_token1] = ACTIONS(3327), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3327), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3327), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3327), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3327), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3327), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3327), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3327), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3327), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3327), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3327), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3327), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3327), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3327), + [aux_sym_host_key_alias_token1] = ACTIONS(3327), + [aux_sym_hostname_token1] = ACTIONS(3327), + [aux_sym_identities_only_token1] = ACTIONS(3327), + [aux_sym_identity_agent_token1] = ACTIONS(3327), + [aux_sym_identity_file_token1] = ACTIONS(3327), + [aux_sym_ignore_unknown_token1] = ACTIONS(3327), + [aux_sym_include_token1] = ACTIONS(3327), + [aux_sym_ip_qos_token1] = ACTIONS(3327), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3327), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3327), + [aux_sym_kex_algorithms_token1] = ACTIONS(3327), + [aux_sym_known_hosts_command_token1] = ACTIONS(3327), + [aux_sym_local_command_token1] = ACTIONS(3327), + [aux_sym_local_forward_token1] = ACTIONS(3327), + [aux_sym_log_level_token1] = ACTIONS(3327), + [aux_sym_log_verbose_token1] = ACTIONS(3327), + [aux_sym_macs_token1] = ACTIONS(3327), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3327), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3327), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3327), + [aux_sym_password_authentication_token1] = ACTIONS(3327), + [aux_sym_permit_local_command_token1] = ACTIONS(3327), + [aux_sym_permit_remote_open_token1] = ACTIONS(3327), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3327), + [aux_sym_port_token1] = ACTIONS(3327), + [aux_sym_preferred_authentications_token1] = ACTIONS(3327), + [aux_sym_protocol_token1] = ACTIONS(3327), + [aux_sym_proxy_command_token1] = ACTIONS(3327), + [aux_sym_proxy_jump_token1] = ACTIONS(3327), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3327), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3327), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3327), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3327), + [aux_sym_rekey_limit_token1] = ACTIONS(3327), + [aux_sym_remote_command_token1] = ACTIONS(3327), + [aux_sym_remote_forward_token1] = ACTIONS(3327), + [aux_sym_request_tty_token1] = ACTIONS(3327), + [aux_sym_required_rsa_size_token1] = ACTIONS(3327), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3327), + [aux_sym_security_key_provider_token1] = ACTIONS(3327), + [aux_sym_send_env_token1] = ACTIONS(3327), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3327), + [aux_sym_server_alive_interval_token1] = ACTIONS(3327), + [aux_sym_session_type_token1] = ACTIONS(3327), + [aux_sym_set_env_token1] = ACTIONS(3327), + [aux_sym_stdin_null_token1] = ACTIONS(3327), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3327), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3327), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3327), + [aux_sym_syslog_facility_token1] = ACTIONS(3327), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3327), + [aux_sym_keep_alive_token1] = ACTIONS(3327), + [aux_sym_tag_token1] = ACTIONS(3327), + [aux_sym_tunnel_token1] = ACTIONS(3329), + [aux_sym_tunnel_device_token1] = ACTIONS(3327), + [aux_sym_update_host_keys_token1] = ACTIONS(3327), + [aux_sym_use_keychain_token1] = ACTIONS(3327), + [aux_sym_use_roaming_token1] = ACTIONS(3327), + [aux_sym_user_token1] = ACTIONS(3329), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3327), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3327), + [aux_sym_visual_host_key_token1] = ACTIONS(3327), + [aux_sym_xauth_location_token1] = ACTIONS(3327), }, [554] = { - [ts_builtin_sym_end] = ACTIONS(3312), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3314), - [aux_sym_match_token1] = ACTIONS(3312), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3312), - [aux_sym_address_family_token1] = ACTIONS(3312), - [aux_sym_batch_mode_token1] = ACTIONS(3312), - [aux_sym_bind_address_token1] = ACTIONS(3312), - [aux_sym_bind_interface_token1] = ACTIONS(3312), - [aux_sym_canonical_domains_token1] = ACTIONS(3312), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3312), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3312), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3312), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3312), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3312), - [aux_sym_certificate_file_token1] = ACTIONS(3312), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3312), - [aux_sym_channel_timeout_token1] = ACTIONS(3312), - [aux_sym_check_host_ip_token1] = ACTIONS(3312), - [aux_sym_ciphers_token1] = ACTIONS(3312), - [aux_sym_cipher_token1] = ACTIONS(3314), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3312), - [aux_sym_compression_token1] = ACTIONS(3312), - [aux_sym_connection_attempts_token1] = ACTIONS(3312), - [aux_sym_connect_timeout_token1] = ACTIONS(3312), - [aux_sym_control_master_token1] = ACTIONS(3312), - [aux_sym_control_path_token1] = ACTIONS(3312), - [aux_sym_control_persist_token1] = ACTIONS(3312), - [aux_sym_dynamic_forward_token1] = ACTIONS(3312), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3312), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3312), - [aux_sym_escape_char_token1] = ACTIONS(3312), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3312), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3312), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3312), - [aux_sym_forward_agent_token1] = ACTIONS(3312), - [aux_sym_forward_x11_token1] = ACTIONS(3314), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3312), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3312), - [aux_sym_gateway_ports_token1] = ACTIONS(3312), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3312), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3312), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3312), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3312), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3312), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3312), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3312), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3312), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3312), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3312), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3312), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3312), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3312), - [aux_sym_host_key_alias_token1] = ACTIONS(3312), - [aux_sym_hostname_token1] = ACTIONS(3312), - [aux_sym_identities_only_token1] = ACTIONS(3312), - [aux_sym_identity_agent_token1] = ACTIONS(3312), - [aux_sym_identity_file_token1] = ACTIONS(3312), - [aux_sym_ignore_unknown_token1] = ACTIONS(3312), - [aux_sym_include_token1] = ACTIONS(3312), - [aux_sym_ip_qos_token1] = ACTIONS(3312), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3312), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3312), - [aux_sym_kex_algorithms_token1] = ACTIONS(3312), - [aux_sym_known_hosts_command_token1] = ACTIONS(3312), - [aux_sym_local_command_token1] = ACTIONS(3312), - [aux_sym_local_forward_token1] = ACTIONS(3312), - [aux_sym_log_level_token1] = ACTIONS(3312), - [aux_sym_log_verbose_token1] = ACTIONS(3312), - [aux_sym_macs_token1] = ACTIONS(3312), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3312), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3312), - [aux_sym_password_authentication_token1] = ACTIONS(3312), - [aux_sym_permit_local_command_token1] = ACTIONS(3312), - [aux_sym_permit_remote_open_token1] = ACTIONS(3312), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3312), - [aux_sym_port_token1] = ACTIONS(3312), - [aux_sym_preferred_authentications_token1] = ACTIONS(3312), - [aux_sym_protocol_token1] = ACTIONS(3312), - [aux_sym_proxy_command_token1] = ACTIONS(3312), - [aux_sym_proxy_jump_token1] = ACTIONS(3312), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3312), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3312), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3312), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3312), - [aux_sym_rekey_limit_token1] = ACTIONS(3312), - [aux_sym_remote_command_token1] = ACTIONS(3312), - [aux_sym_remote_forward_token1] = ACTIONS(3312), - [aux_sym_request_tty_token1] = ACTIONS(3312), - [aux_sym_required_rsa_size_token1] = ACTIONS(3312), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3312), - [aux_sym_security_key_provider_token1] = ACTIONS(3312), - [aux_sym_send_env_token1] = ACTIONS(3312), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3312), - [aux_sym_server_alive_interval_token1] = ACTIONS(3312), - [aux_sym_session_type_token1] = ACTIONS(3312), - [aux_sym_set_env_token1] = ACTIONS(3312), - [aux_sym_stdin_null_token1] = ACTIONS(3312), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3312), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3312), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3312), - [aux_sym_syslog_facility_token1] = ACTIONS(3312), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3312), - [aux_sym_keep_alive_token1] = ACTIONS(3312), - [aux_sym_tag_token1] = ACTIONS(3312), - [aux_sym_tunnel_token1] = ACTIONS(3314), - [aux_sym_tunnel_device_token1] = ACTIONS(3312), - [aux_sym_update_host_keys_token1] = ACTIONS(3312), - [aux_sym_use_keychain_token1] = ACTIONS(3312), - [aux_sym_use_roaming_token1] = ACTIONS(3312), - [aux_sym_user_token1] = ACTIONS(3314), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3312), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3312), - [aux_sym_visual_host_key_token1] = ACTIONS(3312), - [aux_sym_xauth_location_token1] = ACTIONS(3312), + [ts_builtin_sym_end] = ACTIONS(3331), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3333), + [aux_sym_match_token1] = ACTIONS(3331), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3331), + [aux_sym_address_family_token1] = ACTIONS(3331), + [aux_sym_batch_mode_token1] = ACTIONS(3331), + [aux_sym_bind_address_token1] = ACTIONS(3331), + [aux_sym_bind_interface_token1] = ACTIONS(3331), + [aux_sym_canonical_domains_token1] = ACTIONS(3331), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3331), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3331), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3331), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3331), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3331), + [aux_sym_certificate_file_token1] = ACTIONS(3331), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3331), + [aux_sym_channel_timeout_token1] = ACTIONS(3331), + [aux_sym_check_host_ip_token1] = ACTIONS(3331), + [aux_sym_ciphers_token1] = ACTIONS(3331), + [aux_sym_cipher_token1] = ACTIONS(3333), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3331), + [aux_sym_compression_token1] = ACTIONS(3331), + [aux_sym_connection_attempts_token1] = ACTIONS(3331), + [aux_sym_connect_timeout_token1] = ACTIONS(3331), + [aux_sym_control_master_token1] = ACTIONS(3331), + [aux_sym_control_path_token1] = ACTIONS(3331), + [aux_sym_control_persist_token1] = ACTIONS(3331), + [aux_sym_dynamic_forward_token1] = ACTIONS(3331), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3331), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3331), + [aux_sym_escape_char_token1] = ACTIONS(3331), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3331), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3331), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3331), + [aux_sym_forward_agent_token1] = ACTIONS(3331), + [aux_sym_forward_x11_token1] = ACTIONS(3333), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3331), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3331), + [aux_sym_gateway_ports_token1] = ACTIONS(3331), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3331), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3331), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3331), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3331), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3331), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3331), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3331), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3331), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3331), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3331), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3331), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3331), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3331), + [aux_sym_host_key_alias_token1] = ACTIONS(3331), + [aux_sym_hostname_token1] = ACTIONS(3331), + [aux_sym_identities_only_token1] = ACTIONS(3331), + [aux_sym_identity_agent_token1] = ACTIONS(3331), + [aux_sym_identity_file_token1] = ACTIONS(3331), + [aux_sym_ignore_unknown_token1] = ACTIONS(3331), + [aux_sym_include_token1] = ACTIONS(3331), + [aux_sym_ip_qos_token1] = ACTIONS(3331), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3331), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3331), + [aux_sym_kex_algorithms_token1] = ACTIONS(3331), + [aux_sym_known_hosts_command_token1] = ACTIONS(3331), + [aux_sym_local_command_token1] = ACTIONS(3331), + [aux_sym_local_forward_token1] = ACTIONS(3331), + [aux_sym_log_level_token1] = ACTIONS(3331), + [aux_sym_log_verbose_token1] = ACTIONS(3331), + [aux_sym_macs_token1] = ACTIONS(3331), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3331), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3331), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3331), + [aux_sym_password_authentication_token1] = ACTIONS(3331), + [aux_sym_permit_local_command_token1] = ACTIONS(3331), + [aux_sym_permit_remote_open_token1] = ACTIONS(3331), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3331), + [aux_sym_port_token1] = ACTIONS(3331), + [aux_sym_preferred_authentications_token1] = ACTIONS(3331), + [aux_sym_protocol_token1] = ACTIONS(3331), + [aux_sym_proxy_command_token1] = ACTIONS(3331), + [aux_sym_proxy_jump_token1] = ACTIONS(3331), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3331), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3331), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3331), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3331), + [aux_sym_rekey_limit_token1] = ACTIONS(3331), + [aux_sym_remote_command_token1] = ACTIONS(3331), + [aux_sym_remote_forward_token1] = ACTIONS(3331), + [aux_sym_request_tty_token1] = ACTIONS(3331), + [aux_sym_required_rsa_size_token1] = ACTIONS(3331), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3331), + [aux_sym_security_key_provider_token1] = ACTIONS(3331), + [aux_sym_send_env_token1] = ACTIONS(3331), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3331), + [aux_sym_server_alive_interval_token1] = ACTIONS(3331), + [aux_sym_session_type_token1] = ACTIONS(3331), + [aux_sym_set_env_token1] = ACTIONS(3331), + [aux_sym_stdin_null_token1] = ACTIONS(3331), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3331), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3331), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3331), + [aux_sym_syslog_facility_token1] = ACTIONS(3331), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3331), + [aux_sym_keep_alive_token1] = ACTIONS(3331), + [aux_sym_tag_token1] = ACTIONS(3331), + [aux_sym_tunnel_token1] = ACTIONS(3333), + [aux_sym_tunnel_device_token1] = ACTIONS(3331), + [aux_sym_update_host_keys_token1] = ACTIONS(3331), + [aux_sym_use_keychain_token1] = ACTIONS(3331), + [aux_sym_use_roaming_token1] = ACTIONS(3331), + [aux_sym_user_token1] = ACTIONS(3333), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3331), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3331), + [aux_sym_visual_host_key_token1] = ACTIONS(3331), + [aux_sym_xauth_location_token1] = ACTIONS(3331), }, [555] = { - [ts_builtin_sym_end] = ACTIONS(3316), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3318), - [aux_sym_match_token1] = ACTIONS(3316), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3316), - [aux_sym_address_family_token1] = ACTIONS(3316), - [aux_sym_batch_mode_token1] = ACTIONS(3316), - [aux_sym_bind_address_token1] = ACTIONS(3316), - [aux_sym_bind_interface_token1] = ACTIONS(3316), - [aux_sym_canonical_domains_token1] = ACTIONS(3316), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3316), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3316), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3316), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3316), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3316), - [aux_sym_certificate_file_token1] = ACTIONS(3316), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3316), - [aux_sym_channel_timeout_token1] = ACTIONS(3316), - [aux_sym_check_host_ip_token1] = ACTIONS(3316), - [aux_sym_ciphers_token1] = ACTIONS(3316), - [aux_sym_cipher_token1] = ACTIONS(3318), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3316), - [aux_sym_compression_token1] = ACTIONS(3316), - [aux_sym_connection_attempts_token1] = ACTIONS(3316), - [aux_sym_connect_timeout_token1] = ACTIONS(3316), - [aux_sym_control_master_token1] = ACTIONS(3316), - [aux_sym_control_path_token1] = ACTIONS(3316), - [aux_sym_control_persist_token1] = ACTIONS(3316), - [aux_sym_dynamic_forward_token1] = ACTIONS(3316), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3316), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3316), - [aux_sym_escape_char_token1] = ACTIONS(3316), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3316), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3316), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3316), - [aux_sym_forward_agent_token1] = ACTIONS(3316), - [aux_sym_forward_x11_token1] = ACTIONS(3318), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3316), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3316), - [aux_sym_gateway_ports_token1] = ACTIONS(3316), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3316), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3316), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3316), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3316), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3316), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3316), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3316), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3316), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3316), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3316), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3316), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3316), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3316), - [aux_sym_host_key_alias_token1] = ACTIONS(3316), - [aux_sym_hostname_token1] = ACTIONS(3316), - [aux_sym_identities_only_token1] = ACTIONS(3316), - [aux_sym_identity_agent_token1] = ACTIONS(3316), - [aux_sym_identity_file_token1] = ACTIONS(3316), - [aux_sym_ignore_unknown_token1] = ACTIONS(3316), - [aux_sym_include_token1] = ACTIONS(3316), - [aux_sym_ip_qos_token1] = ACTIONS(3316), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3316), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3316), - [aux_sym_kex_algorithms_token1] = ACTIONS(3316), - [aux_sym_known_hosts_command_token1] = ACTIONS(3316), - [aux_sym_local_command_token1] = ACTIONS(3316), - [aux_sym_local_forward_token1] = ACTIONS(3316), - [aux_sym_log_level_token1] = ACTIONS(3316), - [aux_sym_log_verbose_token1] = ACTIONS(3316), - [aux_sym_macs_token1] = ACTIONS(3316), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3316), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3316), - [aux_sym_password_authentication_token1] = ACTIONS(3316), - [aux_sym_permit_local_command_token1] = ACTIONS(3316), - [aux_sym_permit_remote_open_token1] = ACTIONS(3316), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3316), - [aux_sym_port_token1] = ACTIONS(3316), - [aux_sym_preferred_authentications_token1] = ACTIONS(3316), - [aux_sym_protocol_token1] = ACTIONS(3316), - [aux_sym_proxy_command_token1] = ACTIONS(3316), - [aux_sym_proxy_jump_token1] = ACTIONS(3316), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3316), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3316), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3316), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3316), - [aux_sym_rekey_limit_token1] = ACTIONS(3316), - [aux_sym_remote_command_token1] = ACTIONS(3316), - [aux_sym_remote_forward_token1] = ACTIONS(3316), - [aux_sym_request_tty_token1] = ACTIONS(3316), - [aux_sym_required_rsa_size_token1] = ACTIONS(3316), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3316), - [aux_sym_security_key_provider_token1] = ACTIONS(3316), - [aux_sym_send_env_token1] = ACTIONS(3316), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3316), - [aux_sym_server_alive_interval_token1] = ACTIONS(3316), - [aux_sym_session_type_token1] = ACTIONS(3316), - [aux_sym_set_env_token1] = ACTIONS(3316), - [aux_sym_stdin_null_token1] = ACTIONS(3316), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3316), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3316), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3316), - [aux_sym_syslog_facility_token1] = ACTIONS(3316), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3316), - [aux_sym_keep_alive_token1] = ACTIONS(3316), - [aux_sym_tag_token1] = ACTIONS(3316), - [aux_sym_tunnel_token1] = ACTIONS(3318), - [aux_sym_tunnel_device_token1] = ACTIONS(3316), - [aux_sym_update_host_keys_token1] = ACTIONS(3316), - [aux_sym_use_keychain_token1] = ACTIONS(3316), - [aux_sym_use_roaming_token1] = ACTIONS(3316), - [aux_sym_user_token1] = ACTIONS(3318), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3316), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3316), - [aux_sym_visual_host_key_token1] = ACTIONS(3316), - [aux_sym_xauth_location_token1] = ACTIONS(3316), + [ts_builtin_sym_end] = ACTIONS(1253), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1255), + [aux_sym_match_token1] = ACTIONS(1253), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1253), + [aux_sym_address_family_token1] = ACTIONS(1253), + [aux_sym_batch_mode_token1] = ACTIONS(1253), + [aux_sym_bind_address_token1] = ACTIONS(1253), + [aux_sym_bind_interface_token1] = ACTIONS(1253), + [aux_sym_canonical_domains_token1] = ACTIONS(1253), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1253), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1253), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1253), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1253), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1253), + [aux_sym_certificate_file_token1] = ACTIONS(1253), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1253), + [aux_sym_channel_timeout_token1] = ACTIONS(1253), + [aux_sym_check_host_ip_token1] = ACTIONS(1253), + [aux_sym_ciphers_token1] = ACTIONS(1253), + [aux_sym_cipher_token1] = ACTIONS(1255), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1253), + [aux_sym_compression_token1] = ACTIONS(1253), + [aux_sym_connection_attempts_token1] = ACTIONS(1253), + [aux_sym_connect_timeout_token1] = ACTIONS(1253), + [aux_sym_control_master_token1] = ACTIONS(1253), + [aux_sym_control_path_token1] = ACTIONS(1253), + [aux_sym_control_persist_token1] = ACTIONS(1253), + [aux_sym_dynamic_forward_token1] = ACTIONS(1253), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1253), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1253), + [aux_sym_escape_char_token1] = ACTIONS(1253), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1253), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1253), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1253), + [aux_sym_forward_agent_token1] = ACTIONS(1253), + [aux_sym_forward_x11_token1] = ACTIONS(1255), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1253), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1253), + [aux_sym_gateway_ports_token1] = ACTIONS(1253), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1253), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1253), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1253), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1253), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1253), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1253), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1253), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1253), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1253), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1253), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1253), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1253), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1253), + [aux_sym_host_key_alias_token1] = ACTIONS(1253), + [aux_sym_hostname_token1] = ACTIONS(1253), + [aux_sym_identities_only_token1] = ACTIONS(1253), + [aux_sym_identity_agent_token1] = ACTIONS(1253), + [aux_sym_identity_file_token1] = ACTIONS(1253), + [aux_sym_ignore_unknown_token1] = ACTIONS(1253), + [aux_sym_include_token1] = ACTIONS(1253), + [aux_sym_ip_qos_token1] = ACTIONS(1253), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1253), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1253), + [aux_sym_kex_algorithms_token1] = ACTIONS(1253), + [aux_sym_known_hosts_command_token1] = ACTIONS(1253), + [aux_sym_local_command_token1] = ACTIONS(1253), + [aux_sym_local_forward_token1] = ACTIONS(1253), + [aux_sym_log_level_token1] = ACTIONS(1253), + [aux_sym_log_verbose_token1] = ACTIONS(1253), + [aux_sym_macs_token1] = ACTIONS(1253), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1253), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1253), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1253), + [aux_sym_password_authentication_token1] = ACTIONS(1253), + [aux_sym_permit_local_command_token1] = ACTIONS(1253), + [aux_sym_permit_remote_open_token1] = ACTIONS(1253), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1253), + [aux_sym_port_token1] = ACTIONS(1253), + [aux_sym_preferred_authentications_token1] = ACTIONS(1253), + [aux_sym_protocol_token1] = ACTIONS(1253), + [aux_sym_proxy_command_token1] = ACTIONS(1253), + [aux_sym_proxy_jump_token1] = ACTIONS(1253), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1253), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1253), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1253), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1253), + [aux_sym_rekey_limit_token1] = ACTIONS(1253), + [aux_sym_remote_command_token1] = ACTIONS(1253), + [aux_sym_remote_forward_token1] = ACTIONS(1253), + [aux_sym_request_tty_token1] = ACTIONS(1253), + [aux_sym_required_rsa_size_token1] = ACTIONS(1253), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1253), + [aux_sym_security_key_provider_token1] = ACTIONS(1253), + [aux_sym_send_env_token1] = ACTIONS(1253), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1253), + [aux_sym_server_alive_interval_token1] = ACTIONS(1253), + [aux_sym_session_type_token1] = ACTIONS(1253), + [aux_sym_set_env_token1] = ACTIONS(1253), + [aux_sym_stdin_null_token1] = ACTIONS(1253), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1253), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1253), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1253), + [aux_sym_syslog_facility_token1] = ACTIONS(1253), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1253), + [aux_sym_keep_alive_token1] = ACTIONS(1253), + [aux_sym_tag_token1] = ACTIONS(1253), + [aux_sym_tunnel_token1] = ACTIONS(1255), + [aux_sym_tunnel_device_token1] = ACTIONS(1253), + [aux_sym_update_host_keys_token1] = ACTIONS(1253), + [aux_sym_use_keychain_token1] = ACTIONS(1253), + [aux_sym_use_roaming_token1] = ACTIONS(1253), + [aux_sym_user_token1] = ACTIONS(1255), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1253), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1253), + [aux_sym_visual_host_key_token1] = ACTIONS(1253), + [aux_sym_xauth_location_token1] = ACTIONS(1253), }, [556] = { - [ts_builtin_sym_end] = ACTIONS(3320), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3322), - [aux_sym_match_token1] = ACTIONS(3320), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3320), - [aux_sym_address_family_token1] = ACTIONS(3320), - [aux_sym_batch_mode_token1] = ACTIONS(3320), - [aux_sym_bind_address_token1] = ACTIONS(3320), - [aux_sym_bind_interface_token1] = ACTIONS(3320), - [aux_sym_canonical_domains_token1] = ACTIONS(3320), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3320), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3320), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3320), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3320), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3320), - [aux_sym_certificate_file_token1] = ACTIONS(3320), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3320), - [aux_sym_channel_timeout_token1] = ACTIONS(3320), - [aux_sym_check_host_ip_token1] = ACTIONS(3320), - [aux_sym_ciphers_token1] = ACTIONS(3320), - [aux_sym_cipher_token1] = ACTIONS(3322), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3320), - [aux_sym_compression_token1] = ACTIONS(3320), - [aux_sym_connection_attempts_token1] = ACTIONS(3320), - [aux_sym_connect_timeout_token1] = ACTIONS(3320), - [aux_sym_control_master_token1] = ACTIONS(3320), - [aux_sym_control_path_token1] = ACTIONS(3320), - [aux_sym_control_persist_token1] = ACTIONS(3320), - [aux_sym_dynamic_forward_token1] = ACTIONS(3320), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3320), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3320), - [aux_sym_escape_char_token1] = ACTIONS(3320), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3320), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3320), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3320), - [aux_sym_forward_agent_token1] = ACTIONS(3320), - [aux_sym_forward_x11_token1] = ACTIONS(3322), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3320), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3320), - [aux_sym_gateway_ports_token1] = ACTIONS(3320), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3320), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3320), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3320), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3320), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3320), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3320), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3320), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3320), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3320), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3320), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3320), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3320), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3320), - [aux_sym_host_key_alias_token1] = ACTIONS(3320), - [aux_sym_hostname_token1] = ACTIONS(3320), - [aux_sym_identities_only_token1] = ACTIONS(3320), - [aux_sym_identity_agent_token1] = ACTIONS(3320), - [aux_sym_identity_file_token1] = ACTIONS(3320), - [aux_sym_ignore_unknown_token1] = ACTIONS(3320), - [aux_sym_include_token1] = ACTIONS(3320), - [aux_sym_ip_qos_token1] = ACTIONS(3320), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3320), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3320), - [aux_sym_kex_algorithms_token1] = ACTIONS(3320), - [aux_sym_known_hosts_command_token1] = ACTIONS(3320), - [aux_sym_local_command_token1] = ACTIONS(3320), - [aux_sym_local_forward_token1] = ACTIONS(3320), - [aux_sym_log_level_token1] = ACTIONS(3320), - [aux_sym_log_verbose_token1] = ACTIONS(3320), - [aux_sym_macs_token1] = ACTIONS(3320), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3320), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3320), - [aux_sym_password_authentication_token1] = ACTIONS(3320), - [aux_sym_permit_local_command_token1] = ACTIONS(3320), - [aux_sym_permit_remote_open_token1] = ACTIONS(3320), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3320), - [aux_sym_port_token1] = ACTIONS(3320), - [aux_sym_preferred_authentications_token1] = ACTIONS(3320), - [aux_sym_protocol_token1] = ACTIONS(3320), - [aux_sym_proxy_command_token1] = ACTIONS(3320), - [aux_sym_proxy_jump_token1] = ACTIONS(3320), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3320), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3320), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3320), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3320), - [aux_sym_rekey_limit_token1] = ACTIONS(3320), - [aux_sym_remote_command_token1] = ACTIONS(3320), - [aux_sym_remote_forward_token1] = ACTIONS(3320), - [aux_sym_request_tty_token1] = ACTIONS(3320), - [aux_sym_required_rsa_size_token1] = ACTIONS(3320), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3320), - [aux_sym_security_key_provider_token1] = ACTIONS(3320), - [aux_sym_send_env_token1] = ACTIONS(3320), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3320), - [aux_sym_server_alive_interval_token1] = ACTIONS(3320), - [aux_sym_session_type_token1] = ACTIONS(3320), - [aux_sym_set_env_token1] = ACTIONS(3320), - [aux_sym_stdin_null_token1] = ACTIONS(3320), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3320), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3320), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3320), - [aux_sym_syslog_facility_token1] = ACTIONS(3320), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3320), - [aux_sym_keep_alive_token1] = ACTIONS(3320), - [aux_sym_tag_token1] = ACTIONS(3320), - [aux_sym_tunnel_token1] = ACTIONS(3322), - [aux_sym_tunnel_device_token1] = ACTIONS(3320), - [aux_sym_update_host_keys_token1] = ACTIONS(3320), - [aux_sym_use_keychain_token1] = ACTIONS(3320), - [aux_sym_use_roaming_token1] = ACTIONS(3320), - [aux_sym_user_token1] = ACTIONS(3322), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3320), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3320), - [aux_sym_visual_host_key_token1] = ACTIONS(3320), - [aux_sym_xauth_location_token1] = ACTIONS(3320), + [ts_builtin_sym_end] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1069), + [aux_sym_match_token1] = ACTIONS(1067), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1067), + [aux_sym_address_family_token1] = ACTIONS(1067), + [aux_sym_batch_mode_token1] = ACTIONS(1067), + [aux_sym_bind_address_token1] = ACTIONS(1067), + [aux_sym_bind_interface_token1] = ACTIONS(1067), + [aux_sym_canonical_domains_token1] = ACTIONS(1067), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1067), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1067), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1067), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1067), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1067), + [aux_sym_certificate_file_token1] = ACTIONS(1067), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1067), + [aux_sym_channel_timeout_token1] = ACTIONS(1067), + [aux_sym_check_host_ip_token1] = ACTIONS(1067), + [aux_sym_ciphers_token1] = ACTIONS(1067), + [aux_sym_cipher_token1] = ACTIONS(1069), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1067), + [aux_sym_compression_token1] = ACTIONS(1067), + [aux_sym_connection_attempts_token1] = ACTIONS(1067), + [aux_sym_connect_timeout_token1] = ACTIONS(1067), + [aux_sym_control_master_token1] = ACTIONS(1067), + [aux_sym_control_path_token1] = ACTIONS(1067), + [aux_sym_control_persist_token1] = ACTIONS(1067), + [aux_sym_dynamic_forward_token1] = ACTIONS(1067), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1067), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1067), + [aux_sym_escape_char_token1] = ACTIONS(1067), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1067), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1067), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1067), + [aux_sym_forward_agent_token1] = ACTIONS(1067), + [aux_sym_forward_x11_token1] = ACTIONS(1069), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1067), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1067), + [aux_sym_gateway_ports_token1] = ACTIONS(1067), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1067), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1067), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1067), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1067), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1067), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1067), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1067), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1067), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1067), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1067), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1067), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1067), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1067), + [aux_sym_host_key_alias_token1] = ACTIONS(1067), + [aux_sym_hostname_token1] = ACTIONS(1067), + [aux_sym_identities_only_token1] = ACTIONS(1067), + [aux_sym_identity_agent_token1] = ACTIONS(1067), + [aux_sym_identity_file_token1] = ACTIONS(1067), + [aux_sym_ignore_unknown_token1] = ACTIONS(1067), + [aux_sym_include_token1] = ACTIONS(1067), + [aux_sym_ip_qos_token1] = ACTIONS(1067), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1067), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1067), + [aux_sym_kex_algorithms_token1] = ACTIONS(1067), + [aux_sym_known_hosts_command_token1] = ACTIONS(1067), + [aux_sym_local_command_token1] = ACTIONS(1067), + [aux_sym_local_forward_token1] = ACTIONS(1067), + [aux_sym_log_level_token1] = ACTIONS(1067), + [aux_sym_log_verbose_token1] = ACTIONS(1067), + [aux_sym_macs_token1] = ACTIONS(1067), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1067), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1067), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1067), + [aux_sym_password_authentication_token1] = ACTIONS(1067), + [aux_sym_permit_local_command_token1] = ACTIONS(1067), + [aux_sym_permit_remote_open_token1] = ACTIONS(1067), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1067), + [aux_sym_port_token1] = ACTIONS(1067), + [aux_sym_preferred_authentications_token1] = ACTIONS(1067), + [aux_sym_protocol_token1] = ACTIONS(1067), + [aux_sym_proxy_command_token1] = ACTIONS(1067), + [aux_sym_proxy_jump_token1] = ACTIONS(1067), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1067), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1067), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1067), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1067), + [aux_sym_rekey_limit_token1] = ACTIONS(1067), + [aux_sym_remote_command_token1] = ACTIONS(1067), + [aux_sym_remote_forward_token1] = ACTIONS(1067), + [aux_sym_request_tty_token1] = ACTIONS(1067), + [aux_sym_required_rsa_size_token1] = ACTIONS(1067), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1067), + [aux_sym_security_key_provider_token1] = ACTIONS(1067), + [aux_sym_send_env_token1] = ACTIONS(1067), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1067), + [aux_sym_server_alive_interval_token1] = ACTIONS(1067), + [aux_sym_session_type_token1] = ACTIONS(1067), + [aux_sym_set_env_token1] = ACTIONS(1067), + [aux_sym_stdin_null_token1] = ACTIONS(1067), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1067), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1067), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1067), + [aux_sym_syslog_facility_token1] = ACTIONS(1067), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1067), + [aux_sym_keep_alive_token1] = ACTIONS(1067), + [aux_sym_tag_token1] = ACTIONS(1067), + [aux_sym_tunnel_token1] = ACTIONS(1069), + [aux_sym_tunnel_device_token1] = ACTIONS(1067), + [aux_sym_update_host_keys_token1] = ACTIONS(1067), + [aux_sym_use_keychain_token1] = ACTIONS(1067), + [aux_sym_use_roaming_token1] = ACTIONS(1067), + [aux_sym_user_token1] = ACTIONS(1069), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1067), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1067), + [aux_sym_visual_host_key_token1] = ACTIONS(1067), + [aux_sym_xauth_location_token1] = ACTIONS(1067), }, [557] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1478), - [aux_sym_match_token1] = ACTIONS(1476), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1476), - [aux_sym_address_family_token1] = ACTIONS(1476), - [aux_sym_batch_mode_token1] = ACTIONS(1476), - [aux_sym_bind_address_token1] = ACTIONS(1476), - [aux_sym_bind_interface_token1] = ACTIONS(1476), - [aux_sym_canonical_domains_token1] = ACTIONS(1476), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1476), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1476), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1476), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1476), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1476), - [aux_sym_certificate_file_token1] = ACTIONS(1476), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1476), - [aux_sym_channel_timeout_token1] = ACTIONS(1476), - [aux_sym_check_host_ip_token1] = ACTIONS(1476), - [aux_sym_ciphers_token1] = ACTIONS(1476), - [aux_sym_cipher_token1] = ACTIONS(1478), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1476), - [aux_sym_compression_token1] = ACTIONS(1476), - [aux_sym_connection_attempts_token1] = ACTIONS(1476), - [aux_sym_connect_timeout_token1] = ACTIONS(1476), - [aux_sym_control_master_token1] = ACTIONS(1476), - [aux_sym_control_path_token1] = ACTIONS(1476), - [aux_sym_control_persist_token1] = ACTIONS(1476), - [aux_sym_dynamic_forward_token1] = ACTIONS(1476), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1476), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1476), - [aux_sym_escape_char_token1] = ACTIONS(1476), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1476), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1476), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1476), - [aux_sym_forward_agent_token1] = ACTIONS(1476), - [aux_sym_forward_x11_token1] = ACTIONS(1478), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1476), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1476), - [aux_sym_gateway_ports_token1] = ACTIONS(1476), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1476), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1476), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1476), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1476), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1476), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1476), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1476), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1476), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1476), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1476), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1476), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1476), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1476), - [aux_sym_host_key_alias_token1] = ACTIONS(1476), - [aux_sym_hostname_token1] = ACTIONS(1476), - [aux_sym_identities_only_token1] = ACTIONS(1476), - [aux_sym_identity_agent_token1] = ACTIONS(1476), - [aux_sym_identity_file_token1] = ACTIONS(1476), - [aux_sym_ignore_unknown_token1] = ACTIONS(1476), - [aux_sym_include_token1] = ACTIONS(1476), - [aux_sym_ip_qos_token1] = ACTIONS(1476), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1476), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1476), - [aux_sym_kex_algorithms_token1] = ACTIONS(1476), - [aux_sym_known_hosts_command_token1] = ACTIONS(1476), - [aux_sym_local_command_token1] = ACTIONS(1476), - [aux_sym_local_forward_token1] = ACTIONS(1476), - [aux_sym_log_level_token1] = ACTIONS(1476), - [aux_sym_log_verbose_token1] = ACTIONS(1476), - [aux_sym_macs_token1] = ACTIONS(1476), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1476), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1476), - [aux_sym_password_authentication_token1] = ACTIONS(1476), - [aux_sym_permit_local_command_token1] = ACTIONS(1476), - [aux_sym_permit_remote_open_token1] = ACTIONS(1476), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1476), - [aux_sym_port_token1] = ACTIONS(1476), - [aux_sym_preferred_authentications_token1] = ACTIONS(1476), - [aux_sym_protocol_token1] = ACTIONS(1476), - [aux_sym_proxy_command_token1] = ACTIONS(1476), - [aux_sym_proxy_jump_token1] = ACTIONS(1476), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1476), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1476), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1476), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1476), - [aux_sym_rekey_limit_token1] = ACTIONS(1476), - [aux_sym_remote_command_token1] = ACTIONS(1476), - [aux_sym_remote_forward_token1] = ACTIONS(1476), - [aux_sym_request_tty_token1] = ACTIONS(1476), - [aux_sym_required_rsa_size_token1] = ACTIONS(1476), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1476), - [aux_sym_security_key_provider_token1] = ACTIONS(1476), - [aux_sym_send_env_token1] = ACTIONS(1476), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1476), - [aux_sym_server_alive_interval_token1] = ACTIONS(1476), - [aux_sym_session_type_token1] = ACTIONS(1476), - [aux_sym_set_env_token1] = ACTIONS(1476), - [aux_sym_stdin_null_token1] = ACTIONS(1476), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1476), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1476), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1476), - [aux_sym_syslog_facility_token1] = ACTIONS(1476), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1476), - [aux_sym_keep_alive_token1] = ACTIONS(1476), - [aux_sym_tag_token1] = ACTIONS(1476), - [aux_sym_tunnel_token1] = ACTIONS(1478), - [aux_sym_tunnel_device_token1] = ACTIONS(1476), - [aux_sym_update_host_keys_token1] = ACTIONS(1476), - [aux_sym_use_keychain_token1] = ACTIONS(1476), - [aux_sym_use_roaming_token1] = ACTIONS(1476), - [aux_sym_user_token1] = ACTIONS(1478), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1476), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1476), - [aux_sym_visual_host_key_token1] = ACTIONS(1476), - [aux_sym_xauth_location_token1] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1259), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1261), + [aux_sym_match_token1] = ACTIONS(1259), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1259), + [aux_sym_address_family_token1] = ACTIONS(1259), + [aux_sym_batch_mode_token1] = ACTIONS(1259), + [aux_sym_bind_address_token1] = ACTIONS(1259), + [aux_sym_bind_interface_token1] = ACTIONS(1259), + [aux_sym_canonical_domains_token1] = ACTIONS(1259), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1259), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1259), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1259), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1259), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1259), + [aux_sym_certificate_file_token1] = ACTIONS(1259), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1259), + [aux_sym_channel_timeout_token1] = ACTIONS(1259), + [aux_sym_check_host_ip_token1] = ACTIONS(1259), + [aux_sym_ciphers_token1] = ACTIONS(1259), + [aux_sym_cipher_token1] = ACTIONS(1261), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1259), + [aux_sym_compression_token1] = ACTIONS(1259), + [aux_sym_connection_attempts_token1] = ACTIONS(1259), + [aux_sym_connect_timeout_token1] = ACTIONS(1259), + [aux_sym_control_master_token1] = ACTIONS(1259), + [aux_sym_control_path_token1] = ACTIONS(1259), + [aux_sym_control_persist_token1] = ACTIONS(1259), + [aux_sym_dynamic_forward_token1] = ACTIONS(1259), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1259), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1259), + [aux_sym_escape_char_token1] = ACTIONS(1259), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1259), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1259), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1259), + [aux_sym_forward_agent_token1] = ACTIONS(1259), + [aux_sym_forward_x11_token1] = ACTIONS(1261), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1259), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1259), + [aux_sym_gateway_ports_token1] = ACTIONS(1259), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1259), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1259), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1259), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1259), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1259), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1259), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1259), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1259), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1259), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1259), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1259), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1259), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1259), + [aux_sym_host_key_alias_token1] = ACTIONS(1259), + [aux_sym_hostname_token1] = ACTIONS(1259), + [aux_sym_identities_only_token1] = ACTIONS(1259), + [aux_sym_identity_agent_token1] = ACTIONS(1259), + [aux_sym_identity_file_token1] = ACTIONS(1259), + [aux_sym_ignore_unknown_token1] = ACTIONS(1259), + [aux_sym_include_token1] = ACTIONS(1259), + [aux_sym_ip_qos_token1] = ACTIONS(1259), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1259), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1259), + [aux_sym_kex_algorithms_token1] = ACTIONS(1259), + [aux_sym_known_hosts_command_token1] = ACTIONS(1259), + [aux_sym_local_command_token1] = ACTIONS(1259), + [aux_sym_local_forward_token1] = ACTIONS(1259), + [aux_sym_log_level_token1] = ACTIONS(1259), + [aux_sym_log_verbose_token1] = ACTIONS(1259), + [aux_sym_macs_token1] = ACTIONS(1259), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1259), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1259), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1259), + [aux_sym_password_authentication_token1] = ACTIONS(1259), + [aux_sym_permit_local_command_token1] = ACTIONS(1259), + [aux_sym_permit_remote_open_token1] = ACTIONS(1259), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1259), + [aux_sym_port_token1] = ACTIONS(1259), + [aux_sym_preferred_authentications_token1] = ACTIONS(1259), + [aux_sym_protocol_token1] = ACTIONS(1259), + [aux_sym_proxy_command_token1] = ACTIONS(1259), + [aux_sym_proxy_jump_token1] = ACTIONS(1259), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1259), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1259), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1259), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1259), + [aux_sym_rekey_limit_token1] = ACTIONS(1259), + [aux_sym_remote_command_token1] = ACTIONS(1259), + [aux_sym_remote_forward_token1] = ACTIONS(1259), + [aux_sym_request_tty_token1] = ACTIONS(1259), + [aux_sym_required_rsa_size_token1] = ACTIONS(1259), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1259), + [aux_sym_security_key_provider_token1] = ACTIONS(1259), + [aux_sym_send_env_token1] = ACTIONS(1259), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1259), + [aux_sym_server_alive_interval_token1] = ACTIONS(1259), + [aux_sym_session_type_token1] = ACTIONS(1259), + [aux_sym_set_env_token1] = ACTIONS(1259), + [aux_sym_stdin_null_token1] = ACTIONS(1259), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1259), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1259), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1259), + [aux_sym_syslog_facility_token1] = ACTIONS(1259), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1259), + [aux_sym_keep_alive_token1] = ACTIONS(1259), + [aux_sym_tag_token1] = ACTIONS(1259), + [aux_sym_tunnel_token1] = ACTIONS(1261), + [aux_sym_tunnel_device_token1] = ACTIONS(1259), + [aux_sym_update_host_keys_token1] = ACTIONS(1259), + [aux_sym_use_keychain_token1] = ACTIONS(1259), + [aux_sym_use_roaming_token1] = ACTIONS(1259), + [aux_sym_user_token1] = ACTIONS(1261), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1259), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1259), + [aux_sym_visual_host_key_token1] = ACTIONS(1259), + [aux_sym_xauth_location_token1] = ACTIONS(1259), }, [558] = { - [ts_builtin_sym_end] = ACTIONS(1242), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1244), - [aux_sym_match_token1] = ACTIONS(1242), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1242), - [aux_sym_address_family_token1] = ACTIONS(1242), - [aux_sym_batch_mode_token1] = ACTIONS(1242), - [aux_sym_bind_address_token1] = ACTIONS(1242), - [aux_sym_bind_interface_token1] = ACTIONS(1242), - [aux_sym_canonical_domains_token1] = ACTIONS(1242), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1242), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1242), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1242), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1242), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1242), - [aux_sym_certificate_file_token1] = ACTIONS(1242), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1242), - [aux_sym_channel_timeout_token1] = ACTIONS(1242), - [aux_sym_check_host_ip_token1] = ACTIONS(1242), - [aux_sym_ciphers_token1] = ACTIONS(1242), - [aux_sym_cipher_token1] = ACTIONS(1244), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1242), - [aux_sym_compression_token1] = ACTIONS(1242), - [aux_sym_connection_attempts_token1] = ACTIONS(1242), - [aux_sym_connect_timeout_token1] = ACTIONS(1242), - [aux_sym_control_master_token1] = ACTIONS(1242), - [aux_sym_control_path_token1] = ACTIONS(1242), - [aux_sym_control_persist_token1] = ACTIONS(1242), - [aux_sym_dynamic_forward_token1] = ACTIONS(1242), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1242), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1242), - [aux_sym_escape_char_token1] = ACTIONS(1242), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1242), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1242), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1242), - [aux_sym_forward_agent_token1] = ACTIONS(1242), - [aux_sym_forward_x11_token1] = ACTIONS(1244), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1242), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1242), - [aux_sym_gateway_ports_token1] = ACTIONS(1242), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1242), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1242), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1242), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1242), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1242), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1242), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1242), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1242), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1242), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1242), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1242), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1242), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1242), - [aux_sym_host_key_alias_token1] = ACTIONS(1242), - [aux_sym_hostname_token1] = ACTIONS(1242), - [aux_sym_identities_only_token1] = ACTIONS(1242), - [aux_sym_identity_agent_token1] = ACTIONS(1242), - [aux_sym_identity_file_token1] = ACTIONS(1242), - [aux_sym_ignore_unknown_token1] = ACTIONS(1242), - [aux_sym_include_token1] = ACTIONS(1242), - [aux_sym_ip_qos_token1] = ACTIONS(1242), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1242), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1242), - [aux_sym_kex_algorithms_token1] = ACTIONS(1242), - [aux_sym_known_hosts_command_token1] = ACTIONS(1242), - [aux_sym_local_command_token1] = ACTIONS(1242), - [aux_sym_local_forward_token1] = ACTIONS(1242), - [aux_sym_log_level_token1] = ACTIONS(1242), - [aux_sym_log_verbose_token1] = ACTIONS(1242), - [aux_sym_macs_token1] = ACTIONS(1242), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1242), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1242), - [aux_sym_password_authentication_token1] = ACTIONS(1242), - [aux_sym_permit_local_command_token1] = ACTIONS(1242), - [aux_sym_permit_remote_open_token1] = ACTIONS(1242), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1242), - [aux_sym_port_token1] = ACTIONS(1242), - [aux_sym_preferred_authentications_token1] = ACTIONS(1242), - [aux_sym_protocol_token1] = ACTIONS(1242), - [aux_sym_proxy_command_token1] = ACTIONS(1242), - [aux_sym_proxy_jump_token1] = ACTIONS(1242), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1242), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1242), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1242), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1242), - [aux_sym_rekey_limit_token1] = ACTIONS(1242), - [aux_sym_remote_command_token1] = ACTIONS(1242), - [aux_sym_remote_forward_token1] = ACTIONS(1242), - [aux_sym_request_tty_token1] = ACTIONS(1242), - [aux_sym_required_rsa_size_token1] = ACTIONS(1242), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1242), - [aux_sym_security_key_provider_token1] = ACTIONS(1242), - [aux_sym_send_env_token1] = ACTIONS(1242), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1242), - [aux_sym_server_alive_interval_token1] = ACTIONS(1242), - [aux_sym_session_type_token1] = ACTIONS(1242), - [aux_sym_set_env_token1] = ACTIONS(1242), - [aux_sym_stdin_null_token1] = ACTIONS(1242), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1242), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1242), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1242), - [aux_sym_syslog_facility_token1] = ACTIONS(1242), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1242), - [aux_sym_keep_alive_token1] = ACTIONS(1242), - [aux_sym_tag_token1] = ACTIONS(1242), - [aux_sym_tunnel_token1] = ACTIONS(1244), - [aux_sym_tunnel_device_token1] = ACTIONS(1242), - [aux_sym_update_host_keys_token1] = ACTIONS(1242), - [aux_sym_use_keychain_token1] = ACTIONS(1242), - [aux_sym_use_roaming_token1] = ACTIONS(1242), - [aux_sym_user_token1] = ACTIONS(1244), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1242), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1242), - [aux_sym_visual_host_key_token1] = ACTIONS(1242), - [aux_sym_xauth_location_token1] = ACTIONS(1242), + [ts_builtin_sym_end] = ACTIONS(1061), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1063), + [aux_sym_match_token1] = ACTIONS(1061), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1061), + [aux_sym_address_family_token1] = ACTIONS(1061), + [aux_sym_batch_mode_token1] = ACTIONS(1061), + [aux_sym_bind_address_token1] = ACTIONS(1061), + [aux_sym_bind_interface_token1] = ACTIONS(1061), + [aux_sym_canonical_domains_token1] = ACTIONS(1061), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1061), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1061), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1061), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1061), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1061), + [aux_sym_certificate_file_token1] = ACTIONS(1061), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1061), + [aux_sym_channel_timeout_token1] = ACTIONS(1061), + [aux_sym_check_host_ip_token1] = ACTIONS(1061), + [aux_sym_ciphers_token1] = ACTIONS(1061), + [aux_sym_cipher_token1] = ACTIONS(1063), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1061), + [aux_sym_compression_token1] = ACTIONS(1061), + [aux_sym_connection_attempts_token1] = ACTIONS(1061), + [aux_sym_connect_timeout_token1] = ACTIONS(1061), + [aux_sym_control_master_token1] = ACTIONS(1061), + [aux_sym_control_path_token1] = ACTIONS(1061), + [aux_sym_control_persist_token1] = ACTIONS(1061), + [aux_sym_dynamic_forward_token1] = ACTIONS(1061), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1061), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1061), + [aux_sym_escape_char_token1] = ACTIONS(1061), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1061), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1061), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1061), + [aux_sym_forward_agent_token1] = ACTIONS(1061), + [aux_sym_forward_x11_token1] = ACTIONS(1063), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1061), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1061), + [aux_sym_gateway_ports_token1] = ACTIONS(1061), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1061), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1061), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1061), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1061), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1061), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1061), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1061), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1061), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1061), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1061), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1061), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1061), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1061), + [aux_sym_host_key_alias_token1] = ACTIONS(1061), + [aux_sym_hostname_token1] = ACTIONS(1061), + [aux_sym_identities_only_token1] = ACTIONS(1061), + [aux_sym_identity_agent_token1] = ACTIONS(1061), + [aux_sym_identity_file_token1] = ACTIONS(1061), + [aux_sym_ignore_unknown_token1] = ACTIONS(1061), + [aux_sym_include_token1] = ACTIONS(1061), + [aux_sym_ip_qos_token1] = ACTIONS(1061), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1061), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1061), + [aux_sym_kex_algorithms_token1] = ACTIONS(1061), + [aux_sym_known_hosts_command_token1] = ACTIONS(1061), + [aux_sym_local_command_token1] = ACTIONS(1061), + [aux_sym_local_forward_token1] = ACTIONS(1061), + [aux_sym_log_level_token1] = ACTIONS(1061), + [aux_sym_log_verbose_token1] = ACTIONS(1061), + [aux_sym_macs_token1] = ACTIONS(1061), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1061), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1061), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1061), + [aux_sym_password_authentication_token1] = ACTIONS(1061), + [aux_sym_permit_local_command_token1] = ACTIONS(1061), + [aux_sym_permit_remote_open_token1] = ACTIONS(1061), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1061), + [aux_sym_port_token1] = ACTIONS(1061), + [aux_sym_preferred_authentications_token1] = ACTIONS(1061), + [aux_sym_protocol_token1] = ACTIONS(1061), + [aux_sym_proxy_command_token1] = ACTIONS(1061), + [aux_sym_proxy_jump_token1] = ACTIONS(1061), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1061), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1061), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1061), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1061), + [aux_sym_rekey_limit_token1] = ACTIONS(1061), + [aux_sym_remote_command_token1] = ACTIONS(1061), + [aux_sym_remote_forward_token1] = ACTIONS(1061), + [aux_sym_request_tty_token1] = ACTIONS(1061), + [aux_sym_required_rsa_size_token1] = ACTIONS(1061), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1061), + [aux_sym_security_key_provider_token1] = ACTIONS(1061), + [aux_sym_send_env_token1] = ACTIONS(1061), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1061), + [aux_sym_server_alive_interval_token1] = ACTIONS(1061), + [aux_sym_session_type_token1] = ACTIONS(1061), + [aux_sym_set_env_token1] = ACTIONS(1061), + [aux_sym_stdin_null_token1] = ACTIONS(1061), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1061), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1061), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1061), + [aux_sym_syslog_facility_token1] = ACTIONS(1061), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1061), + [aux_sym_keep_alive_token1] = ACTIONS(1061), + [aux_sym_tag_token1] = ACTIONS(1061), + [aux_sym_tunnel_token1] = ACTIONS(1063), + [aux_sym_tunnel_device_token1] = ACTIONS(1061), + [aux_sym_update_host_keys_token1] = ACTIONS(1061), + [aux_sym_use_keychain_token1] = ACTIONS(1061), + [aux_sym_use_roaming_token1] = ACTIONS(1061), + [aux_sym_user_token1] = ACTIONS(1063), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1061), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1061), + [aux_sym_visual_host_key_token1] = ACTIONS(1061), + [aux_sym_xauth_location_token1] = ACTIONS(1061), }, [559] = { - [ts_builtin_sym_end] = ACTIONS(3324), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3326), - [aux_sym_match_token1] = ACTIONS(3324), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3324), - [aux_sym_address_family_token1] = ACTIONS(3324), - [aux_sym_batch_mode_token1] = ACTIONS(3324), - [aux_sym_bind_address_token1] = ACTIONS(3324), - [aux_sym_bind_interface_token1] = ACTIONS(3324), - [aux_sym_canonical_domains_token1] = ACTIONS(3324), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3324), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3324), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3324), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3324), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3324), - [aux_sym_certificate_file_token1] = ACTIONS(3324), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3324), - [aux_sym_channel_timeout_token1] = ACTIONS(3324), - [aux_sym_check_host_ip_token1] = ACTIONS(3324), - [aux_sym_ciphers_token1] = ACTIONS(3324), - [aux_sym_cipher_token1] = ACTIONS(3326), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3324), - [aux_sym_compression_token1] = ACTIONS(3324), - [aux_sym_connection_attempts_token1] = ACTIONS(3324), - [aux_sym_connect_timeout_token1] = ACTIONS(3324), - [aux_sym_control_master_token1] = ACTIONS(3324), - [aux_sym_control_path_token1] = ACTIONS(3324), - [aux_sym_control_persist_token1] = ACTIONS(3324), - [aux_sym_dynamic_forward_token1] = ACTIONS(3324), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3324), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3324), - [aux_sym_escape_char_token1] = ACTIONS(3324), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3324), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3324), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3324), - [aux_sym_forward_agent_token1] = ACTIONS(3324), - [aux_sym_forward_x11_token1] = ACTIONS(3326), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3324), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3324), - [aux_sym_gateway_ports_token1] = ACTIONS(3324), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3324), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3324), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3324), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3324), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3324), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3324), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3324), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3324), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3324), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3324), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3324), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3324), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3324), - [aux_sym_host_key_alias_token1] = ACTIONS(3324), - [aux_sym_hostname_token1] = ACTIONS(3324), - [aux_sym_identities_only_token1] = ACTIONS(3324), - [aux_sym_identity_agent_token1] = ACTIONS(3324), - [aux_sym_identity_file_token1] = ACTIONS(3324), - [aux_sym_ignore_unknown_token1] = ACTIONS(3324), - [aux_sym_include_token1] = ACTIONS(3324), - [aux_sym_ip_qos_token1] = ACTIONS(3324), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3324), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3324), - [aux_sym_kex_algorithms_token1] = ACTIONS(3324), - [aux_sym_known_hosts_command_token1] = ACTIONS(3324), - [aux_sym_local_command_token1] = ACTIONS(3324), - [aux_sym_local_forward_token1] = ACTIONS(3324), - [aux_sym_log_level_token1] = ACTIONS(3324), - [aux_sym_log_verbose_token1] = ACTIONS(3324), - [aux_sym_macs_token1] = ACTIONS(3324), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3324), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3324), - [aux_sym_password_authentication_token1] = ACTIONS(3324), - [aux_sym_permit_local_command_token1] = ACTIONS(3324), - [aux_sym_permit_remote_open_token1] = ACTIONS(3324), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3324), - [aux_sym_port_token1] = ACTIONS(3324), - [aux_sym_preferred_authentications_token1] = ACTIONS(3324), - [aux_sym_protocol_token1] = ACTIONS(3324), - [aux_sym_proxy_command_token1] = ACTIONS(3324), - [aux_sym_proxy_jump_token1] = ACTIONS(3324), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3324), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3324), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3324), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3324), - [aux_sym_rekey_limit_token1] = ACTIONS(3324), - [aux_sym_remote_command_token1] = ACTIONS(3324), - [aux_sym_remote_forward_token1] = ACTIONS(3324), - [aux_sym_request_tty_token1] = ACTIONS(3324), - [aux_sym_required_rsa_size_token1] = ACTIONS(3324), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3324), - [aux_sym_security_key_provider_token1] = ACTIONS(3324), - [aux_sym_send_env_token1] = ACTIONS(3324), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3324), - [aux_sym_server_alive_interval_token1] = ACTIONS(3324), - [aux_sym_session_type_token1] = ACTIONS(3324), - [aux_sym_set_env_token1] = ACTIONS(3324), - [aux_sym_stdin_null_token1] = ACTIONS(3324), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3324), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3324), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3324), - [aux_sym_syslog_facility_token1] = ACTIONS(3324), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3324), - [aux_sym_keep_alive_token1] = ACTIONS(3324), - [aux_sym_tag_token1] = ACTIONS(3324), - [aux_sym_tunnel_token1] = ACTIONS(3326), - [aux_sym_tunnel_device_token1] = ACTIONS(3324), - [aux_sym_update_host_keys_token1] = ACTIONS(3324), - [aux_sym_use_keychain_token1] = ACTIONS(3324), - [aux_sym_use_roaming_token1] = ACTIONS(3324), - [aux_sym_user_token1] = ACTIONS(3326), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3324), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3324), - [aux_sym_visual_host_key_token1] = ACTIONS(3324), - [aux_sym_xauth_location_token1] = ACTIONS(3324), + [ts_builtin_sym_end] = ACTIONS(3335), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3337), + [aux_sym_match_token1] = ACTIONS(3335), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3335), + [aux_sym_address_family_token1] = ACTIONS(3335), + [aux_sym_batch_mode_token1] = ACTIONS(3335), + [aux_sym_bind_address_token1] = ACTIONS(3335), + [aux_sym_bind_interface_token1] = ACTIONS(3335), + [aux_sym_canonical_domains_token1] = ACTIONS(3335), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3335), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3335), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3335), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3335), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3335), + [aux_sym_certificate_file_token1] = ACTIONS(3335), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3335), + [aux_sym_channel_timeout_token1] = ACTIONS(3335), + [aux_sym_check_host_ip_token1] = ACTIONS(3335), + [aux_sym_ciphers_token1] = ACTIONS(3335), + [aux_sym_cipher_token1] = ACTIONS(3337), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3335), + [aux_sym_compression_token1] = ACTIONS(3335), + [aux_sym_connection_attempts_token1] = ACTIONS(3335), + [aux_sym_connect_timeout_token1] = ACTIONS(3335), + [aux_sym_control_master_token1] = ACTIONS(3335), + [aux_sym_control_path_token1] = ACTIONS(3335), + [aux_sym_control_persist_token1] = ACTIONS(3335), + [aux_sym_dynamic_forward_token1] = ACTIONS(3335), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3335), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3335), + [aux_sym_escape_char_token1] = ACTIONS(3335), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3335), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3335), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3335), + [aux_sym_forward_agent_token1] = ACTIONS(3335), + [aux_sym_forward_x11_token1] = ACTIONS(3337), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3335), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3335), + [aux_sym_gateway_ports_token1] = ACTIONS(3335), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3335), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3335), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3335), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3335), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3335), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3335), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3335), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3335), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3335), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3335), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3335), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3335), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3335), + [aux_sym_host_key_alias_token1] = ACTIONS(3335), + [aux_sym_hostname_token1] = ACTIONS(3335), + [aux_sym_identities_only_token1] = ACTIONS(3335), + [aux_sym_identity_agent_token1] = ACTIONS(3335), + [aux_sym_identity_file_token1] = ACTIONS(3335), + [aux_sym_ignore_unknown_token1] = ACTIONS(3335), + [aux_sym_include_token1] = ACTIONS(3335), + [aux_sym_ip_qos_token1] = ACTIONS(3335), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3335), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3335), + [aux_sym_kex_algorithms_token1] = ACTIONS(3335), + [aux_sym_known_hosts_command_token1] = ACTIONS(3335), + [aux_sym_local_command_token1] = ACTIONS(3335), + [aux_sym_local_forward_token1] = ACTIONS(3335), + [aux_sym_log_level_token1] = ACTIONS(3335), + [aux_sym_log_verbose_token1] = ACTIONS(3335), + [aux_sym_macs_token1] = ACTIONS(3335), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3335), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3335), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3335), + [aux_sym_password_authentication_token1] = ACTIONS(3335), + [aux_sym_permit_local_command_token1] = ACTIONS(3335), + [aux_sym_permit_remote_open_token1] = ACTIONS(3335), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3335), + [aux_sym_port_token1] = ACTIONS(3335), + [aux_sym_preferred_authentications_token1] = ACTIONS(3335), + [aux_sym_protocol_token1] = ACTIONS(3335), + [aux_sym_proxy_command_token1] = ACTIONS(3335), + [aux_sym_proxy_jump_token1] = ACTIONS(3335), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3335), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3335), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3335), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3335), + [aux_sym_rekey_limit_token1] = ACTIONS(3335), + [aux_sym_remote_command_token1] = ACTIONS(3335), + [aux_sym_remote_forward_token1] = ACTIONS(3335), + [aux_sym_request_tty_token1] = ACTIONS(3335), + [aux_sym_required_rsa_size_token1] = ACTIONS(3335), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3335), + [aux_sym_security_key_provider_token1] = ACTIONS(3335), + [aux_sym_send_env_token1] = ACTIONS(3335), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3335), + [aux_sym_server_alive_interval_token1] = ACTIONS(3335), + [aux_sym_session_type_token1] = ACTIONS(3335), + [aux_sym_set_env_token1] = ACTIONS(3335), + [aux_sym_stdin_null_token1] = ACTIONS(3335), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3335), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3335), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3335), + [aux_sym_syslog_facility_token1] = ACTIONS(3335), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3335), + [aux_sym_keep_alive_token1] = ACTIONS(3335), + [aux_sym_tag_token1] = ACTIONS(3335), + [aux_sym_tunnel_token1] = ACTIONS(3337), + [aux_sym_tunnel_device_token1] = ACTIONS(3335), + [aux_sym_update_host_keys_token1] = ACTIONS(3335), + [aux_sym_use_keychain_token1] = ACTIONS(3335), + [aux_sym_use_roaming_token1] = ACTIONS(3335), + [aux_sym_user_token1] = ACTIONS(3337), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3335), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3335), + [aux_sym_visual_host_key_token1] = ACTIONS(3335), + [aux_sym_xauth_location_token1] = ACTIONS(3335), }, [560] = { - [ts_builtin_sym_end] = ACTIONS(3328), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3330), - [aux_sym_match_token1] = ACTIONS(3328), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3328), - [aux_sym_address_family_token1] = ACTIONS(3328), - [aux_sym_batch_mode_token1] = ACTIONS(3328), - [aux_sym_bind_address_token1] = ACTIONS(3328), - [aux_sym_bind_interface_token1] = ACTIONS(3328), - [aux_sym_canonical_domains_token1] = ACTIONS(3328), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3328), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3328), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3328), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3328), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3328), - [aux_sym_certificate_file_token1] = ACTIONS(3328), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3328), - [aux_sym_channel_timeout_token1] = ACTIONS(3328), - [aux_sym_check_host_ip_token1] = ACTIONS(3328), - [aux_sym_ciphers_token1] = ACTIONS(3328), - [aux_sym_cipher_token1] = ACTIONS(3330), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3328), - [aux_sym_compression_token1] = ACTIONS(3328), - [aux_sym_connection_attempts_token1] = ACTIONS(3328), - [aux_sym_connect_timeout_token1] = ACTIONS(3328), - [aux_sym_control_master_token1] = ACTIONS(3328), - [aux_sym_control_path_token1] = ACTIONS(3328), - [aux_sym_control_persist_token1] = ACTIONS(3328), - [aux_sym_dynamic_forward_token1] = ACTIONS(3328), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3328), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3328), - [aux_sym_escape_char_token1] = ACTIONS(3328), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3328), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3328), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3328), - [aux_sym_forward_agent_token1] = ACTIONS(3328), - [aux_sym_forward_x11_token1] = ACTIONS(3330), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3328), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3328), - [aux_sym_gateway_ports_token1] = ACTIONS(3328), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3328), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3328), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3328), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3328), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3328), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3328), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3328), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3328), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3328), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3328), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3328), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3328), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3328), - [aux_sym_host_key_alias_token1] = ACTIONS(3328), - [aux_sym_hostname_token1] = ACTIONS(3328), - [aux_sym_identities_only_token1] = ACTIONS(3328), - [aux_sym_identity_agent_token1] = ACTIONS(3328), - [aux_sym_identity_file_token1] = ACTIONS(3328), - [aux_sym_ignore_unknown_token1] = ACTIONS(3328), - [aux_sym_include_token1] = ACTIONS(3328), - [aux_sym_ip_qos_token1] = ACTIONS(3328), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3328), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3328), - [aux_sym_kex_algorithms_token1] = ACTIONS(3328), - [aux_sym_known_hosts_command_token1] = ACTIONS(3328), - [aux_sym_local_command_token1] = ACTIONS(3328), - [aux_sym_local_forward_token1] = ACTIONS(3328), - [aux_sym_log_level_token1] = ACTIONS(3328), - [aux_sym_log_verbose_token1] = ACTIONS(3328), - [aux_sym_macs_token1] = ACTIONS(3328), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3328), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3328), - [aux_sym_password_authentication_token1] = ACTIONS(3328), - [aux_sym_permit_local_command_token1] = ACTIONS(3328), - [aux_sym_permit_remote_open_token1] = ACTIONS(3328), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3328), - [aux_sym_port_token1] = ACTIONS(3328), - [aux_sym_preferred_authentications_token1] = ACTIONS(3328), - [aux_sym_protocol_token1] = ACTIONS(3328), - [aux_sym_proxy_command_token1] = ACTIONS(3328), - [aux_sym_proxy_jump_token1] = ACTIONS(3328), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3328), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3328), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3328), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3328), - [aux_sym_rekey_limit_token1] = ACTIONS(3328), - [aux_sym_remote_command_token1] = ACTIONS(3328), - [aux_sym_remote_forward_token1] = ACTIONS(3328), - [aux_sym_request_tty_token1] = ACTIONS(3328), - [aux_sym_required_rsa_size_token1] = ACTIONS(3328), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3328), - [aux_sym_security_key_provider_token1] = ACTIONS(3328), - [aux_sym_send_env_token1] = ACTIONS(3328), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3328), - [aux_sym_server_alive_interval_token1] = ACTIONS(3328), - [aux_sym_session_type_token1] = ACTIONS(3328), - [aux_sym_set_env_token1] = ACTIONS(3328), - [aux_sym_stdin_null_token1] = ACTIONS(3328), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3328), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3328), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3328), - [aux_sym_syslog_facility_token1] = ACTIONS(3328), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3328), - [aux_sym_keep_alive_token1] = ACTIONS(3328), - [aux_sym_tag_token1] = ACTIONS(3328), - [aux_sym_tunnel_token1] = ACTIONS(3330), - [aux_sym_tunnel_device_token1] = ACTIONS(3328), - [aux_sym_update_host_keys_token1] = ACTIONS(3328), - [aux_sym_use_keychain_token1] = ACTIONS(3328), - [aux_sym_use_roaming_token1] = ACTIONS(3328), - [aux_sym_user_token1] = ACTIONS(3330), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3328), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3328), - [aux_sym_visual_host_key_token1] = ACTIONS(3328), - [aux_sym_xauth_location_token1] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3339), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3341), + [aux_sym_match_token1] = ACTIONS(3339), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3339), + [aux_sym_address_family_token1] = ACTIONS(3339), + [aux_sym_batch_mode_token1] = ACTIONS(3339), + [aux_sym_bind_address_token1] = ACTIONS(3339), + [aux_sym_bind_interface_token1] = ACTIONS(3339), + [aux_sym_canonical_domains_token1] = ACTIONS(3339), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3339), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3339), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3339), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3339), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3339), + [aux_sym_certificate_file_token1] = ACTIONS(3339), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3339), + [aux_sym_channel_timeout_token1] = ACTIONS(3339), + [aux_sym_check_host_ip_token1] = ACTIONS(3339), + [aux_sym_ciphers_token1] = ACTIONS(3339), + [aux_sym_cipher_token1] = ACTIONS(3341), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3339), + [aux_sym_compression_token1] = ACTIONS(3339), + [aux_sym_connection_attempts_token1] = ACTIONS(3339), + [aux_sym_connect_timeout_token1] = ACTIONS(3339), + [aux_sym_control_master_token1] = ACTIONS(3339), + [aux_sym_control_path_token1] = ACTIONS(3339), + [aux_sym_control_persist_token1] = ACTIONS(3339), + [aux_sym_dynamic_forward_token1] = ACTIONS(3339), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3339), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3339), + [aux_sym_escape_char_token1] = ACTIONS(3339), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3339), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3339), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3339), + [aux_sym_forward_agent_token1] = ACTIONS(3339), + [aux_sym_forward_x11_token1] = ACTIONS(3341), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3339), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3339), + [aux_sym_gateway_ports_token1] = ACTIONS(3339), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3339), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3339), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3339), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3339), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3339), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3339), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3339), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3339), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3339), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3339), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3339), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3339), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3339), + [aux_sym_host_key_alias_token1] = ACTIONS(3339), + [aux_sym_hostname_token1] = ACTIONS(3339), + [aux_sym_identities_only_token1] = ACTIONS(3339), + [aux_sym_identity_agent_token1] = ACTIONS(3339), + [aux_sym_identity_file_token1] = ACTIONS(3339), + [aux_sym_ignore_unknown_token1] = ACTIONS(3339), + [aux_sym_include_token1] = ACTIONS(3339), + [aux_sym_ip_qos_token1] = ACTIONS(3339), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3339), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3339), + [aux_sym_kex_algorithms_token1] = ACTIONS(3339), + [aux_sym_known_hosts_command_token1] = ACTIONS(3339), + [aux_sym_local_command_token1] = ACTIONS(3339), + [aux_sym_local_forward_token1] = ACTIONS(3339), + [aux_sym_log_level_token1] = ACTIONS(3339), + [aux_sym_log_verbose_token1] = ACTIONS(3339), + [aux_sym_macs_token1] = ACTIONS(3339), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3339), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3339), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3339), + [aux_sym_password_authentication_token1] = ACTIONS(3339), + [aux_sym_permit_local_command_token1] = ACTIONS(3339), + [aux_sym_permit_remote_open_token1] = ACTIONS(3339), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3339), + [aux_sym_port_token1] = ACTIONS(3339), + [aux_sym_preferred_authentications_token1] = ACTIONS(3339), + [aux_sym_protocol_token1] = ACTIONS(3339), + [aux_sym_proxy_command_token1] = ACTIONS(3339), + [aux_sym_proxy_jump_token1] = ACTIONS(3339), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3339), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3339), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3339), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3339), + [aux_sym_rekey_limit_token1] = ACTIONS(3339), + [aux_sym_remote_command_token1] = ACTIONS(3339), + [aux_sym_remote_forward_token1] = ACTIONS(3339), + [aux_sym_request_tty_token1] = ACTIONS(3339), + [aux_sym_required_rsa_size_token1] = ACTIONS(3339), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3339), + [aux_sym_security_key_provider_token1] = ACTIONS(3339), + [aux_sym_send_env_token1] = ACTIONS(3339), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3339), + [aux_sym_server_alive_interval_token1] = ACTIONS(3339), + [aux_sym_session_type_token1] = ACTIONS(3339), + [aux_sym_set_env_token1] = ACTIONS(3339), + [aux_sym_stdin_null_token1] = ACTIONS(3339), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3339), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3339), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3339), + [aux_sym_syslog_facility_token1] = ACTIONS(3339), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3339), + [aux_sym_keep_alive_token1] = ACTIONS(3339), + [aux_sym_tag_token1] = ACTIONS(3339), + [aux_sym_tunnel_token1] = ACTIONS(3341), + [aux_sym_tunnel_device_token1] = ACTIONS(3339), + [aux_sym_update_host_keys_token1] = ACTIONS(3339), + [aux_sym_use_keychain_token1] = ACTIONS(3339), + [aux_sym_use_roaming_token1] = ACTIONS(3339), + [aux_sym_user_token1] = ACTIONS(3341), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3339), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3339), + [aux_sym_visual_host_key_token1] = ACTIONS(3339), + [aux_sym_xauth_location_token1] = ACTIONS(3339), }, [561] = { - [ts_builtin_sym_end] = ACTIONS(3332), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3334), - [aux_sym_match_token1] = ACTIONS(3332), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3332), - [aux_sym_address_family_token1] = ACTIONS(3332), - [aux_sym_batch_mode_token1] = ACTIONS(3332), - [aux_sym_bind_address_token1] = ACTIONS(3332), - [aux_sym_bind_interface_token1] = ACTIONS(3332), - [aux_sym_canonical_domains_token1] = ACTIONS(3332), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3332), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3332), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3332), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3332), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3332), - [aux_sym_certificate_file_token1] = ACTIONS(3332), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3332), - [aux_sym_channel_timeout_token1] = ACTIONS(3332), - [aux_sym_check_host_ip_token1] = ACTIONS(3332), - [aux_sym_ciphers_token1] = ACTIONS(3332), - [aux_sym_cipher_token1] = ACTIONS(3334), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3332), - [aux_sym_compression_token1] = ACTIONS(3332), - [aux_sym_connection_attempts_token1] = ACTIONS(3332), - [aux_sym_connect_timeout_token1] = ACTIONS(3332), - [aux_sym_control_master_token1] = ACTIONS(3332), - [aux_sym_control_path_token1] = ACTIONS(3332), - [aux_sym_control_persist_token1] = ACTIONS(3332), - [aux_sym_dynamic_forward_token1] = ACTIONS(3332), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3332), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3332), - [aux_sym_escape_char_token1] = ACTIONS(3332), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3332), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3332), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3332), - [aux_sym_forward_agent_token1] = ACTIONS(3332), - [aux_sym_forward_x11_token1] = ACTIONS(3334), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3332), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3332), - [aux_sym_gateway_ports_token1] = ACTIONS(3332), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3332), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3332), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3332), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3332), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3332), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3332), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3332), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3332), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3332), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3332), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3332), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3332), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3332), - [aux_sym_host_key_alias_token1] = ACTIONS(3332), - [aux_sym_hostname_token1] = ACTIONS(3332), - [aux_sym_identities_only_token1] = ACTIONS(3332), - [aux_sym_identity_agent_token1] = ACTIONS(3332), - [aux_sym_identity_file_token1] = ACTIONS(3332), - [aux_sym_ignore_unknown_token1] = ACTIONS(3332), - [aux_sym_include_token1] = ACTIONS(3332), - [aux_sym_ip_qos_token1] = ACTIONS(3332), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3332), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3332), - [aux_sym_kex_algorithms_token1] = ACTIONS(3332), - [aux_sym_known_hosts_command_token1] = ACTIONS(3332), - [aux_sym_local_command_token1] = ACTIONS(3332), - [aux_sym_local_forward_token1] = ACTIONS(3332), - [aux_sym_log_level_token1] = ACTIONS(3332), - [aux_sym_log_verbose_token1] = ACTIONS(3332), - [aux_sym_macs_token1] = ACTIONS(3332), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3332), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3332), - [aux_sym_password_authentication_token1] = ACTIONS(3332), - [aux_sym_permit_local_command_token1] = ACTIONS(3332), - [aux_sym_permit_remote_open_token1] = ACTIONS(3332), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3332), - [aux_sym_port_token1] = ACTIONS(3332), - [aux_sym_preferred_authentications_token1] = ACTIONS(3332), - [aux_sym_protocol_token1] = ACTIONS(3332), - [aux_sym_proxy_command_token1] = ACTIONS(3332), - [aux_sym_proxy_jump_token1] = ACTIONS(3332), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3332), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3332), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3332), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3332), - [aux_sym_rekey_limit_token1] = ACTIONS(3332), - [aux_sym_remote_command_token1] = ACTIONS(3332), - [aux_sym_remote_forward_token1] = ACTIONS(3332), - [aux_sym_request_tty_token1] = ACTIONS(3332), - [aux_sym_required_rsa_size_token1] = ACTIONS(3332), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3332), - [aux_sym_security_key_provider_token1] = ACTIONS(3332), - [aux_sym_send_env_token1] = ACTIONS(3332), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3332), - [aux_sym_server_alive_interval_token1] = ACTIONS(3332), - [aux_sym_session_type_token1] = ACTIONS(3332), - [aux_sym_set_env_token1] = ACTIONS(3332), - [aux_sym_stdin_null_token1] = ACTIONS(3332), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3332), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3332), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3332), - [aux_sym_syslog_facility_token1] = ACTIONS(3332), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3332), - [aux_sym_keep_alive_token1] = ACTIONS(3332), - [aux_sym_tag_token1] = ACTIONS(3332), - [aux_sym_tunnel_token1] = ACTIONS(3334), - [aux_sym_tunnel_device_token1] = ACTIONS(3332), - [aux_sym_update_host_keys_token1] = ACTIONS(3332), - [aux_sym_use_keychain_token1] = ACTIONS(3332), - [aux_sym_use_roaming_token1] = ACTIONS(3332), - [aux_sym_user_token1] = ACTIONS(3334), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3332), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3332), - [aux_sym_visual_host_key_token1] = ACTIONS(3332), - [aux_sym_xauth_location_token1] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3343), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3345), + [aux_sym_match_token1] = ACTIONS(3343), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3343), + [aux_sym_address_family_token1] = ACTIONS(3343), + [aux_sym_batch_mode_token1] = ACTIONS(3343), + [aux_sym_bind_address_token1] = ACTIONS(3343), + [aux_sym_bind_interface_token1] = ACTIONS(3343), + [aux_sym_canonical_domains_token1] = ACTIONS(3343), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3343), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3343), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3343), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3343), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3343), + [aux_sym_certificate_file_token1] = ACTIONS(3343), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3343), + [aux_sym_channel_timeout_token1] = ACTIONS(3343), + [aux_sym_check_host_ip_token1] = ACTIONS(3343), + [aux_sym_ciphers_token1] = ACTIONS(3343), + [aux_sym_cipher_token1] = ACTIONS(3345), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3343), + [aux_sym_compression_token1] = ACTIONS(3343), + [aux_sym_connection_attempts_token1] = ACTIONS(3343), + [aux_sym_connect_timeout_token1] = ACTIONS(3343), + [aux_sym_control_master_token1] = ACTIONS(3343), + [aux_sym_control_path_token1] = ACTIONS(3343), + [aux_sym_control_persist_token1] = ACTIONS(3343), + [aux_sym_dynamic_forward_token1] = ACTIONS(3343), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3343), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3343), + [aux_sym_escape_char_token1] = ACTIONS(3343), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3343), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3343), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3343), + [aux_sym_forward_agent_token1] = ACTIONS(3343), + [aux_sym_forward_x11_token1] = ACTIONS(3345), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3343), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3343), + [aux_sym_gateway_ports_token1] = ACTIONS(3343), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3343), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3343), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3343), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3343), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3343), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3343), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3343), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3343), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3343), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3343), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3343), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3343), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3343), + [aux_sym_host_key_alias_token1] = ACTIONS(3343), + [aux_sym_hostname_token1] = ACTIONS(3343), + [aux_sym_identities_only_token1] = ACTIONS(3343), + [aux_sym_identity_agent_token1] = ACTIONS(3343), + [aux_sym_identity_file_token1] = ACTIONS(3343), + [aux_sym_ignore_unknown_token1] = ACTIONS(3343), + [aux_sym_include_token1] = ACTIONS(3343), + [aux_sym_ip_qos_token1] = ACTIONS(3343), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3343), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3343), + [aux_sym_kex_algorithms_token1] = ACTIONS(3343), + [aux_sym_known_hosts_command_token1] = ACTIONS(3343), + [aux_sym_local_command_token1] = ACTIONS(3343), + [aux_sym_local_forward_token1] = ACTIONS(3343), + [aux_sym_log_level_token1] = ACTIONS(3343), + [aux_sym_log_verbose_token1] = ACTIONS(3343), + [aux_sym_macs_token1] = ACTIONS(3343), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3343), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3343), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3343), + [aux_sym_password_authentication_token1] = ACTIONS(3343), + [aux_sym_permit_local_command_token1] = ACTIONS(3343), + [aux_sym_permit_remote_open_token1] = ACTIONS(3343), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3343), + [aux_sym_port_token1] = ACTIONS(3343), + [aux_sym_preferred_authentications_token1] = ACTIONS(3343), + [aux_sym_protocol_token1] = ACTIONS(3343), + [aux_sym_proxy_command_token1] = ACTIONS(3343), + [aux_sym_proxy_jump_token1] = ACTIONS(3343), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3343), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3343), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3343), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3343), + [aux_sym_rekey_limit_token1] = ACTIONS(3343), + [aux_sym_remote_command_token1] = ACTIONS(3343), + [aux_sym_remote_forward_token1] = ACTIONS(3343), + [aux_sym_request_tty_token1] = ACTIONS(3343), + [aux_sym_required_rsa_size_token1] = ACTIONS(3343), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3343), + [aux_sym_security_key_provider_token1] = ACTIONS(3343), + [aux_sym_send_env_token1] = ACTIONS(3343), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3343), + [aux_sym_server_alive_interval_token1] = ACTIONS(3343), + [aux_sym_session_type_token1] = ACTIONS(3343), + [aux_sym_set_env_token1] = ACTIONS(3343), + [aux_sym_stdin_null_token1] = ACTIONS(3343), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3343), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3343), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3343), + [aux_sym_syslog_facility_token1] = ACTIONS(3343), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3343), + [aux_sym_keep_alive_token1] = ACTIONS(3343), + [aux_sym_tag_token1] = ACTIONS(3343), + [aux_sym_tunnel_token1] = ACTIONS(3345), + [aux_sym_tunnel_device_token1] = ACTIONS(3343), + [aux_sym_update_host_keys_token1] = ACTIONS(3343), + [aux_sym_use_keychain_token1] = ACTIONS(3343), + [aux_sym_use_roaming_token1] = ACTIONS(3343), + [aux_sym_user_token1] = ACTIONS(3345), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3343), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3343), + [aux_sym_visual_host_key_token1] = ACTIONS(3343), + [aux_sym_xauth_location_token1] = ACTIONS(3343), }, [562] = { - [ts_builtin_sym_end] = ACTIONS(3336), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3338), - [aux_sym_match_token1] = ACTIONS(3336), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3336), - [aux_sym_address_family_token1] = ACTIONS(3336), - [aux_sym_batch_mode_token1] = ACTIONS(3336), - [aux_sym_bind_address_token1] = ACTIONS(3336), - [aux_sym_bind_interface_token1] = ACTIONS(3336), - [aux_sym_canonical_domains_token1] = ACTIONS(3336), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3336), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3336), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3336), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3336), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3336), - [aux_sym_certificate_file_token1] = ACTIONS(3336), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3336), - [aux_sym_channel_timeout_token1] = ACTIONS(3336), - [aux_sym_check_host_ip_token1] = ACTIONS(3336), - [aux_sym_ciphers_token1] = ACTIONS(3336), - [aux_sym_cipher_token1] = ACTIONS(3338), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3336), - [aux_sym_compression_token1] = ACTIONS(3336), - [aux_sym_connection_attempts_token1] = ACTIONS(3336), - [aux_sym_connect_timeout_token1] = ACTIONS(3336), - [aux_sym_control_master_token1] = ACTIONS(3336), - [aux_sym_control_path_token1] = ACTIONS(3336), - [aux_sym_control_persist_token1] = ACTIONS(3336), - [aux_sym_dynamic_forward_token1] = ACTIONS(3336), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3336), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3336), - [aux_sym_escape_char_token1] = ACTIONS(3336), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3336), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3336), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3336), - [aux_sym_forward_agent_token1] = ACTIONS(3336), - [aux_sym_forward_x11_token1] = ACTIONS(3338), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3336), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3336), - [aux_sym_gateway_ports_token1] = ACTIONS(3336), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3336), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3336), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3336), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3336), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3336), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3336), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3336), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3336), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3336), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3336), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3336), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3336), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3336), - [aux_sym_host_key_alias_token1] = ACTIONS(3336), - [aux_sym_hostname_token1] = ACTIONS(3336), - [aux_sym_identities_only_token1] = ACTIONS(3336), - [aux_sym_identity_agent_token1] = ACTIONS(3336), - [aux_sym_identity_file_token1] = ACTIONS(3336), - [aux_sym_ignore_unknown_token1] = ACTIONS(3336), - [aux_sym_include_token1] = ACTIONS(3336), - [aux_sym_ip_qos_token1] = ACTIONS(3336), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3336), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3336), - [aux_sym_kex_algorithms_token1] = ACTIONS(3336), - [aux_sym_known_hosts_command_token1] = ACTIONS(3336), - [aux_sym_local_command_token1] = ACTIONS(3336), - [aux_sym_local_forward_token1] = ACTIONS(3336), - [aux_sym_log_level_token1] = ACTIONS(3336), - [aux_sym_log_verbose_token1] = ACTIONS(3336), - [aux_sym_macs_token1] = ACTIONS(3336), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3336), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3336), - [aux_sym_password_authentication_token1] = ACTIONS(3336), - [aux_sym_permit_local_command_token1] = ACTIONS(3336), - [aux_sym_permit_remote_open_token1] = ACTIONS(3336), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3336), - [aux_sym_port_token1] = ACTIONS(3336), - [aux_sym_preferred_authentications_token1] = ACTIONS(3336), - [aux_sym_protocol_token1] = ACTIONS(3336), - [aux_sym_proxy_command_token1] = ACTIONS(3336), - [aux_sym_proxy_jump_token1] = ACTIONS(3336), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3336), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3336), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3336), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3336), - [aux_sym_rekey_limit_token1] = ACTIONS(3336), - [aux_sym_remote_command_token1] = ACTIONS(3336), - [aux_sym_remote_forward_token1] = ACTIONS(3336), - [aux_sym_request_tty_token1] = ACTIONS(3336), - [aux_sym_required_rsa_size_token1] = ACTIONS(3336), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3336), - [aux_sym_security_key_provider_token1] = ACTIONS(3336), - [aux_sym_send_env_token1] = ACTIONS(3336), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3336), - [aux_sym_server_alive_interval_token1] = ACTIONS(3336), - [aux_sym_session_type_token1] = ACTIONS(3336), - [aux_sym_set_env_token1] = ACTIONS(3336), - [aux_sym_stdin_null_token1] = ACTIONS(3336), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3336), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3336), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3336), - [aux_sym_syslog_facility_token1] = ACTIONS(3336), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3336), - [aux_sym_keep_alive_token1] = ACTIONS(3336), - [aux_sym_tag_token1] = ACTIONS(3336), - [aux_sym_tunnel_token1] = ACTIONS(3338), - [aux_sym_tunnel_device_token1] = ACTIONS(3336), - [aux_sym_update_host_keys_token1] = ACTIONS(3336), - [aux_sym_use_keychain_token1] = ACTIONS(3336), - [aux_sym_use_roaming_token1] = ACTIONS(3336), - [aux_sym_user_token1] = ACTIONS(3338), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3336), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3336), - [aux_sym_visual_host_key_token1] = ACTIONS(3336), - [aux_sym_xauth_location_token1] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3347), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3349), + [aux_sym_match_token1] = ACTIONS(3347), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3347), + [aux_sym_address_family_token1] = ACTIONS(3347), + [aux_sym_batch_mode_token1] = ACTIONS(3347), + [aux_sym_bind_address_token1] = ACTIONS(3347), + [aux_sym_bind_interface_token1] = ACTIONS(3347), + [aux_sym_canonical_domains_token1] = ACTIONS(3347), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3347), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3347), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3347), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3347), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3347), + [aux_sym_certificate_file_token1] = ACTIONS(3347), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3347), + [aux_sym_channel_timeout_token1] = ACTIONS(3347), + [aux_sym_check_host_ip_token1] = ACTIONS(3347), + [aux_sym_ciphers_token1] = ACTIONS(3347), + [aux_sym_cipher_token1] = ACTIONS(3349), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3347), + [aux_sym_compression_token1] = ACTIONS(3347), + [aux_sym_connection_attempts_token1] = ACTIONS(3347), + [aux_sym_connect_timeout_token1] = ACTIONS(3347), + [aux_sym_control_master_token1] = ACTIONS(3347), + [aux_sym_control_path_token1] = ACTIONS(3347), + [aux_sym_control_persist_token1] = ACTIONS(3347), + [aux_sym_dynamic_forward_token1] = ACTIONS(3347), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3347), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3347), + [aux_sym_escape_char_token1] = ACTIONS(3347), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3347), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3347), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3347), + [aux_sym_forward_agent_token1] = ACTIONS(3347), + [aux_sym_forward_x11_token1] = ACTIONS(3349), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3347), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3347), + [aux_sym_gateway_ports_token1] = ACTIONS(3347), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3347), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3347), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3347), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3347), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3347), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3347), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3347), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3347), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3347), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3347), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3347), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3347), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3347), + [aux_sym_host_key_alias_token1] = ACTIONS(3347), + [aux_sym_hostname_token1] = ACTIONS(3347), + [aux_sym_identities_only_token1] = ACTIONS(3347), + [aux_sym_identity_agent_token1] = ACTIONS(3347), + [aux_sym_identity_file_token1] = ACTIONS(3347), + [aux_sym_ignore_unknown_token1] = ACTIONS(3347), + [aux_sym_include_token1] = ACTIONS(3347), + [aux_sym_ip_qos_token1] = ACTIONS(3347), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3347), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3347), + [aux_sym_kex_algorithms_token1] = ACTIONS(3347), + [aux_sym_known_hosts_command_token1] = ACTIONS(3347), + [aux_sym_local_command_token1] = ACTIONS(3347), + [aux_sym_local_forward_token1] = ACTIONS(3347), + [aux_sym_log_level_token1] = ACTIONS(3347), + [aux_sym_log_verbose_token1] = ACTIONS(3347), + [aux_sym_macs_token1] = ACTIONS(3347), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3347), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3347), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3347), + [aux_sym_password_authentication_token1] = ACTIONS(3347), + [aux_sym_permit_local_command_token1] = ACTIONS(3347), + [aux_sym_permit_remote_open_token1] = ACTIONS(3347), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3347), + [aux_sym_port_token1] = ACTIONS(3347), + [aux_sym_preferred_authentications_token1] = ACTIONS(3347), + [aux_sym_protocol_token1] = ACTIONS(3347), + [aux_sym_proxy_command_token1] = ACTIONS(3347), + [aux_sym_proxy_jump_token1] = ACTIONS(3347), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3347), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3347), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3347), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3347), + [aux_sym_rekey_limit_token1] = ACTIONS(3347), + [aux_sym_remote_command_token1] = ACTIONS(3347), + [aux_sym_remote_forward_token1] = ACTIONS(3347), + [aux_sym_request_tty_token1] = ACTIONS(3347), + [aux_sym_required_rsa_size_token1] = ACTIONS(3347), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3347), + [aux_sym_security_key_provider_token1] = ACTIONS(3347), + [aux_sym_send_env_token1] = ACTIONS(3347), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3347), + [aux_sym_server_alive_interval_token1] = ACTIONS(3347), + [aux_sym_session_type_token1] = ACTIONS(3347), + [aux_sym_set_env_token1] = ACTIONS(3347), + [aux_sym_stdin_null_token1] = ACTIONS(3347), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3347), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3347), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3347), + [aux_sym_syslog_facility_token1] = ACTIONS(3347), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3347), + [aux_sym_keep_alive_token1] = ACTIONS(3347), + [aux_sym_tag_token1] = ACTIONS(3347), + [aux_sym_tunnel_token1] = ACTIONS(3349), + [aux_sym_tunnel_device_token1] = ACTIONS(3347), + [aux_sym_update_host_keys_token1] = ACTIONS(3347), + [aux_sym_use_keychain_token1] = ACTIONS(3347), + [aux_sym_use_roaming_token1] = ACTIONS(3347), + [aux_sym_user_token1] = ACTIONS(3349), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3347), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3347), + [aux_sym_visual_host_key_token1] = ACTIONS(3347), + [aux_sym_xauth_location_token1] = ACTIONS(3347), }, [563] = { - [ts_builtin_sym_end] = ACTIONS(1482), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1484), - [aux_sym_match_token1] = ACTIONS(1482), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1482), - [aux_sym_address_family_token1] = ACTIONS(1482), - [aux_sym_batch_mode_token1] = ACTIONS(1482), - [aux_sym_bind_address_token1] = ACTIONS(1482), - [aux_sym_bind_interface_token1] = ACTIONS(1482), - [aux_sym_canonical_domains_token1] = ACTIONS(1482), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1482), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1482), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1482), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1482), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1482), - [aux_sym_certificate_file_token1] = ACTIONS(1482), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1482), - [aux_sym_channel_timeout_token1] = ACTIONS(1482), - [aux_sym_check_host_ip_token1] = ACTIONS(1482), - [aux_sym_ciphers_token1] = ACTIONS(1482), - [aux_sym_cipher_token1] = ACTIONS(1484), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1482), - [aux_sym_compression_token1] = ACTIONS(1482), - [aux_sym_connection_attempts_token1] = ACTIONS(1482), - [aux_sym_connect_timeout_token1] = ACTIONS(1482), - [aux_sym_control_master_token1] = ACTIONS(1482), - [aux_sym_control_path_token1] = ACTIONS(1482), - [aux_sym_control_persist_token1] = ACTIONS(1482), - [aux_sym_dynamic_forward_token1] = ACTIONS(1482), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1482), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1482), - [aux_sym_escape_char_token1] = ACTIONS(1482), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1482), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1482), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1482), - [aux_sym_forward_agent_token1] = ACTIONS(1482), - [aux_sym_forward_x11_token1] = ACTIONS(1484), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1482), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1482), - [aux_sym_gateway_ports_token1] = ACTIONS(1482), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1482), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1482), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1482), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1482), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1482), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1482), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1482), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1482), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1482), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1482), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1482), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1482), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1482), - [aux_sym_host_key_alias_token1] = ACTIONS(1482), - [aux_sym_hostname_token1] = ACTIONS(1482), - [aux_sym_identities_only_token1] = ACTIONS(1482), - [aux_sym_identity_agent_token1] = ACTIONS(1482), - [aux_sym_identity_file_token1] = ACTIONS(1482), - [aux_sym_ignore_unknown_token1] = ACTIONS(1482), - [aux_sym_include_token1] = ACTIONS(1482), - [aux_sym_ip_qos_token1] = ACTIONS(1482), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1482), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1482), - [aux_sym_kex_algorithms_token1] = ACTIONS(1482), - [aux_sym_known_hosts_command_token1] = ACTIONS(1482), - [aux_sym_local_command_token1] = ACTIONS(1482), - [aux_sym_local_forward_token1] = ACTIONS(1482), - [aux_sym_log_level_token1] = ACTIONS(1482), - [aux_sym_log_verbose_token1] = ACTIONS(1482), - [aux_sym_macs_token1] = ACTIONS(1482), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1482), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1482), - [aux_sym_password_authentication_token1] = ACTIONS(1482), - [aux_sym_permit_local_command_token1] = ACTIONS(1482), - [aux_sym_permit_remote_open_token1] = ACTIONS(1482), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1482), - [aux_sym_port_token1] = ACTIONS(1482), - [aux_sym_preferred_authentications_token1] = ACTIONS(1482), - [aux_sym_protocol_token1] = ACTIONS(1482), - [aux_sym_proxy_command_token1] = ACTIONS(1482), - [aux_sym_proxy_jump_token1] = ACTIONS(1482), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1482), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1482), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1482), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1482), - [aux_sym_rekey_limit_token1] = ACTIONS(1482), - [aux_sym_remote_command_token1] = ACTIONS(1482), - [aux_sym_remote_forward_token1] = ACTIONS(1482), - [aux_sym_request_tty_token1] = ACTIONS(1482), - [aux_sym_required_rsa_size_token1] = ACTIONS(1482), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1482), - [aux_sym_security_key_provider_token1] = ACTIONS(1482), - [aux_sym_send_env_token1] = ACTIONS(1482), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1482), - [aux_sym_server_alive_interval_token1] = ACTIONS(1482), - [aux_sym_session_type_token1] = ACTIONS(1482), - [aux_sym_set_env_token1] = ACTIONS(1482), - [aux_sym_stdin_null_token1] = ACTIONS(1482), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1482), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1482), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1482), - [aux_sym_syslog_facility_token1] = ACTIONS(1482), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1482), - [aux_sym_keep_alive_token1] = ACTIONS(1482), - [aux_sym_tag_token1] = ACTIONS(1482), - [aux_sym_tunnel_token1] = ACTIONS(1484), - [aux_sym_tunnel_device_token1] = ACTIONS(1482), - [aux_sym_update_host_keys_token1] = ACTIONS(1482), - [aux_sym_use_keychain_token1] = ACTIONS(1482), - [aux_sym_use_roaming_token1] = ACTIONS(1482), - [aux_sym_user_token1] = ACTIONS(1484), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1482), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1482), - [aux_sym_visual_host_key_token1] = ACTIONS(1482), - [aux_sym_xauth_location_token1] = ACTIONS(1482), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1267), + [aux_sym_match_token1] = ACTIONS(1265), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1265), + [aux_sym_address_family_token1] = ACTIONS(1265), + [aux_sym_batch_mode_token1] = ACTIONS(1265), + [aux_sym_bind_address_token1] = ACTIONS(1265), + [aux_sym_bind_interface_token1] = ACTIONS(1265), + [aux_sym_canonical_domains_token1] = ACTIONS(1265), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1265), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1265), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1265), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1265), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1265), + [aux_sym_certificate_file_token1] = ACTIONS(1265), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1265), + [aux_sym_channel_timeout_token1] = ACTIONS(1265), + [aux_sym_check_host_ip_token1] = ACTIONS(1265), + [aux_sym_ciphers_token1] = ACTIONS(1265), + [aux_sym_cipher_token1] = ACTIONS(1267), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1265), + [aux_sym_compression_token1] = ACTIONS(1265), + [aux_sym_connection_attempts_token1] = ACTIONS(1265), + [aux_sym_connect_timeout_token1] = ACTIONS(1265), + [aux_sym_control_master_token1] = ACTIONS(1265), + [aux_sym_control_path_token1] = ACTIONS(1265), + [aux_sym_control_persist_token1] = ACTIONS(1265), + [aux_sym_dynamic_forward_token1] = ACTIONS(1265), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1265), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1265), + [aux_sym_escape_char_token1] = ACTIONS(1265), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1265), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1265), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1265), + [aux_sym_forward_agent_token1] = ACTIONS(1265), + [aux_sym_forward_x11_token1] = ACTIONS(1267), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1265), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1265), + [aux_sym_gateway_ports_token1] = ACTIONS(1265), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1265), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1265), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1265), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1265), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1265), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1265), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1265), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1265), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1265), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1265), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1265), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1265), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1265), + [aux_sym_host_key_alias_token1] = ACTIONS(1265), + [aux_sym_hostname_token1] = ACTIONS(1265), + [aux_sym_identities_only_token1] = ACTIONS(1265), + [aux_sym_identity_agent_token1] = ACTIONS(1265), + [aux_sym_identity_file_token1] = ACTIONS(1265), + [aux_sym_ignore_unknown_token1] = ACTIONS(1265), + [aux_sym_include_token1] = ACTIONS(1265), + [aux_sym_ip_qos_token1] = ACTIONS(1265), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1265), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1265), + [aux_sym_kex_algorithms_token1] = ACTIONS(1265), + [aux_sym_known_hosts_command_token1] = ACTIONS(1265), + [aux_sym_local_command_token1] = ACTIONS(1265), + [aux_sym_local_forward_token1] = ACTIONS(1265), + [aux_sym_log_level_token1] = ACTIONS(1265), + [aux_sym_log_verbose_token1] = ACTIONS(1265), + [aux_sym_macs_token1] = ACTIONS(1265), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1265), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1265), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1265), + [aux_sym_password_authentication_token1] = ACTIONS(1265), + [aux_sym_permit_local_command_token1] = ACTIONS(1265), + [aux_sym_permit_remote_open_token1] = ACTIONS(1265), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1265), + [aux_sym_port_token1] = ACTIONS(1265), + [aux_sym_preferred_authentications_token1] = ACTIONS(1265), + [aux_sym_protocol_token1] = ACTIONS(1265), + [aux_sym_proxy_command_token1] = ACTIONS(1265), + [aux_sym_proxy_jump_token1] = ACTIONS(1265), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1265), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1265), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1265), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1265), + [aux_sym_rekey_limit_token1] = ACTIONS(1265), + [aux_sym_remote_command_token1] = ACTIONS(1265), + [aux_sym_remote_forward_token1] = ACTIONS(1265), + [aux_sym_request_tty_token1] = ACTIONS(1265), + [aux_sym_required_rsa_size_token1] = ACTIONS(1265), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1265), + [aux_sym_security_key_provider_token1] = ACTIONS(1265), + [aux_sym_send_env_token1] = ACTIONS(1265), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1265), + [aux_sym_server_alive_interval_token1] = ACTIONS(1265), + [aux_sym_session_type_token1] = ACTIONS(1265), + [aux_sym_set_env_token1] = ACTIONS(1265), + [aux_sym_stdin_null_token1] = ACTIONS(1265), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1265), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1265), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1265), + [aux_sym_syslog_facility_token1] = ACTIONS(1265), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1265), + [aux_sym_keep_alive_token1] = ACTIONS(1265), + [aux_sym_tag_token1] = ACTIONS(1265), + [aux_sym_tunnel_token1] = ACTIONS(1267), + [aux_sym_tunnel_device_token1] = ACTIONS(1265), + [aux_sym_update_host_keys_token1] = ACTIONS(1265), + [aux_sym_use_keychain_token1] = ACTIONS(1265), + [aux_sym_use_roaming_token1] = ACTIONS(1265), + [aux_sym_user_token1] = ACTIONS(1267), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1265), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1265), + [aux_sym_visual_host_key_token1] = ACTIONS(1265), + [aux_sym_xauth_location_token1] = ACTIONS(1265), }, [564] = { - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1238), - [aux_sym_match_token1] = ACTIONS(1236), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1236), - [aux_sym_address_family_token1] = ACTIONS(1236), - [aux_sym_batch_mode_token1] = ACTIONS(1236), - [aux_sym_bind_address_token1] = ACTIONS(1236), - [aux_sym_bind_interface_token1] = ACTIONS(1236), - [aux_sym_canonical_domains_token1] = ACTIONS(1236), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1236), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1236), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1236), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1236), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1236), - [aux_sym_certificate_file_token1] = ACTIONS(1236), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1236), - [aux_sym_channel_timeout_token1] = ACTIONS(1236), - [aux_sym_check_host_ip_token1] = ACTIONS(1236), - [aux_sym_ciphers_token1] = ACTIONS(1236), - [aux_sym_cipher_token1] = ACTIONS(1238), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1236), - [aux_sym_compression_token1] = ACTIONS(1236), - [aux_sym_connection_attempts_token1] = ACTIONS(1236), - [aux_sym_connect_timeout_token1] = ACTIONS(1236), - [aux_sym_control_master_token1] = ACTIONS(1236), - [aux_sym_control_path_token1] = ACTIONS(1236), - [aux_sym_control_persist_token1] = ACTIONS(1236), - [aux_sym_dynamic_forward_token1] = ACTIONS(1236), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1236), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1236), - [aux_sym_escape_char_token1] = ACTIONS(1236), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1236), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1236), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1236), - [aux_sym_forward_agent_token1] = ACTIONS(1236), - [aux_sym_forward_x11_token1] = ACTIONS(1238), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1236), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1236), - [aux_sym_gateway_ports_token1] = ACTIONS(1236), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1236), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1236), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1236), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1236), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1236), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1236), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1236), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1236), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1236), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1236), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1236), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1236), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1236), - [aux_sym_host_key_alias_token1] = ACTIONS(1236), - [aux_sym_hostname_token1] = ACTIONS(1236), - [aux_sym_identities_only_token1] = ACTIONS(1236), - [aux_sym_identity_agent_token1] = ACTIONS(1236), - [aux_sym_identity_file_token1] = ACTIONS(1236), - [aux_sym_ignore_unknown_token1] = ACTIONS(1236), - [aux_sym_include_token1] = ACTIONS(1236), - [aux_sym_ip_qos_token1] = ACTIONS(1236), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1236), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1236), - [aux_sym_kex_algorithms_token1] = ACTIONS(1236), - [aux_sym_known_hosts_command_token1] = ACTIONS(1236), - [aux_sym_local_command_token1] = ACTIONS(1236), - [aux_sym_local_forward_token1] = ACTIONS(1236), - [aux_sym_log_level_token1] = ACTIONS(1236), - [aux_sym_log_verbose_token1] = ACTIONS(1236), - [aux_sym_macs_token1] = ACTIONS(1236), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1236), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1236), - [aux_sym_password_authentication_token1] = ACTIONS(1236), - [aux_sym_permit_local_command_token1] = ACTIONS(1236), - [aux_sym_permit_remote_open_token1] = ACTIONS(1236), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1236), - [aux_sym_port_token1] = ACTIONS(1236), - [aux_sym_preferred_authentications_token1] = ACTIONS(1236), - [aux_sym_protocol_token1] = ACTIONS(1236), - [aux_sym_proxy_command_token1] = ACTIONS(1236), - [aux_sym_proxy_jump_token1] = ACTIONS(1236), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1236), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1236), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1236), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1236), - [aux_sym_rekey_limit_token1] = ACTIONS(1236), - [aux_sym_remote_command_token1] = ACTIONS(1236), - [aux_sym_remote_forward_token1] = ACTIONS(1236), - [aux_sym_request_tty_token1] = ACTIONS(1236), - [aux_sym_required_rsa_size_token1] = ACTIONS(1236), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1236), - [aux_sym_security_key_provider_token1] = ACTIONS(1236), - [aux_sym_send_env_token1] = ACTIONS(1236), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1236), - [aux_sym_server_alive_interval_token1] = ACTIONS(1236), - [aux_sym_session_type_token1] = ACTIONS(1236), - [aux_sym_set_env_token1] = ACTIONS(1236), - [aux_sym_stdin_null_token1] = ACTIONS(1236), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1236), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1236), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1236), - [aux_sym_syslog_facility_token1] = ACTIONS(1236), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1236), - [aux_sym_keep_alive_token1] = ACTIONS(1236), - [aux_sym_tag_token1] = ACTIONS(1236), - [aux_sym_tunnel_token1] = ACTIONS(1238), - [aux_sym_tunnel_device_token1] = ACTIONS(1236), - [aux_sym_update_host_keys_token1] = ACTIONS(1236), - [aux_sym_use_keychain_token1] = ACTIONS(1236), - [aux_sym_use_roaming_token1] = ACTIONS(1236), - [aux_sym_user_token1] = ACTIONS(1238), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1236), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1236), - [aux_sym_visual_host_key_token1] = ACTIONS(1236), - [aux_sym_xauth_location_token1] = ACTIONS(1236), + [ts_builtin_sym_end] = ACTIONS(1055), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1057), + [aux_sym_match_token1] = ACTIONS(1055), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1055), + [aux_sym_address_family_token1] = ACTIONS(1055), + [aux_sym_batch_mode_token1] = ACTIONS(1055), + [aux_sym_bind_address_token1] = ACTIONS(1055), + [aux_sym_bind_interface_token1] = ACTIONS(1055), + [aux_sym_canonical_domains_token1] = ACTIONS(1055), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1055), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1055), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1055), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1055), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1055), + [aux_sym_certificate_file_token1] = ACTIONS(1055), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1055), + [aux_sym_channel_timeout_token1] = ACTIONS(1055), + [aux_sym_check_host_ip_token1] = ACTIONS(1055), + [aux_sym_ciphers_token1] = ACTIONS(1055), + [aux_sym_cipher_token1] = ACTIONS(1057), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1055), + [aux_sym_compression_token1] = ACTIONS(1055), + [aux_sym_connection_attempts_token1] = ACTIONS(1055), + [aux_sym_connect_timeout_token1] = ACTIONS(1055), + [aux_sym_control_master_token1] = ACTIONS(1055), + [aux_sym_control_path_token1] = ACTIONS(1055), + [aux_sym_control_persist_token1] = ACTIONS(1055), + [aux_sym_dynamic_forward_token1] = ACTIONS(1055), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1055), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1055), + [aux_sym_escape_char_token1] = ACTIONS(1055), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1055), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1055), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1055), + [aux_sym_forward_agent_token1] = ACTIONS(1055), + [aux_sym_forward_x11_token1] = ACTIONS(1057), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1055), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1055), + [aux_sym_gateway_ports_token1] = ACTIONS(1055), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1055), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1055), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1055), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1055), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1055), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1055), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1055), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1055), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1055), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1055), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1055), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1055), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1055), + [aux_sym_host_key_alias_token1] = ACTIONS(1055), + [aux_sym_hostname_token1] = ACTIONS(1055), + [aux_sym_identities_only_token1] = ACTIONS(1055), + [aux_sym_identity_agent_token1] = ACTIONS(1055), + [aux_sym_identity_file_token1] = ACTIONS(1055), + [aux_sym_ignore_unknown_token1] = ACTIONS(1055), + [aux_sym_include_token1] = ACTIONS(1055), + [aux_sym_ip_qos_token1] = ACTIONS(1055), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1055), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1055), + [aux_sym_kex_algorithms_token1] = ACTIONS(1055), + [aux_sym_known_hosts_command_token1] = ACTIONS(1055), + [aux_sym_local_command_token1] = ACTIONS(1055), + [aux_sym_local_forward_token1] = ACTIONS(1055), + [aux_sym_log_level_token1] = ACTIONS(1055), + [aux_sym_log_verbose_token1] = ACTIONS(1055), + [aux_sym_macs_token1] = ACTIONS(1055), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1055), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1055), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1055), + [aux_sym_password_authentication_token1] = ACTIONS(1055), + [aux_sym_permit_local_command_token1] = ACTIONS(1055), + [aux_sym_permit_remote_open_token1] = ACTIONS(1055), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1055), + [aux_sym_port_token1] = ACTIONS(1055), + [aux_sym_preferred_authentications_token1] = ACTIONS(1055), + [aux_sym_protocol_token1] = ACTIONS(1055), + [aux_sym_proxy_command_token1] = ACTIONS(1055), + [aux_sym_proxy_jump_token1] = ACTIONS(1055), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1055), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1055), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1055), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1055), + [aux_sym_rekey_limit_token1] = ACTIONS(1055), + [aux_sym_remote_command_token1] = ACTIONS(1055), + [aux_sym_remote_forward_token1] = ACTIONS(1055), + [aux_sym_request_tty_token1] = ACTIONS(1055), + [aux_sym_required_rsa_size_token1] = ACTIONS(1055), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1055), + [aux_sym_security_key_provider_token1] = ACTIONS(1055), + [aux_sym_send_env_token1] = ACTIONS(1055), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1055), + [aux_sym_server_alive_interval_token1] = ACTIONS(1055), + [aux_sym_session_type_token1] = ACTIONS(1055), + [aux_sym_set_env_token1] = ACTIONS(1055), + [aux_sym_stdin_null_token1] = ACTIONS(1055), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1055), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1055), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1055), + [aux_sym_syslog_facility_token1] = ACTIONS(1055), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1055), + [aux_sym_keep_alive_token1] = ACTIONS(1055), + [aux_sym_tag_token1] = ACTIONS(1055), + [aux_sym_tunnel_token1] = ACTIONS(1057), + [aux_sym_tunnel_device_token1] = ACTIONS(1055), + [aux_sym_update_host_keys_token1] = ACTIONS(1055), + [aux_sym_use_keychain_token1] = ACTIONS(1055), + [aux_sym_use_roaming_token1] = ACTIONS(1055), + [aux_sym_user_token1] = ACTIONS(1057), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1055), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1055), + [aux_sym_visual_host_key_token1] = ACTIONS(1055), + [aux_sym_xauth_location_token1] = ACTIONS(1055), }, [565] = { - [ts_builtin_sym_end] = ACTIONS(1230), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1232), - [aux_sym_match_token1] = ACTIONS(1230), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1230), - [aux_sym_address_family_token1] = ACTIONS(1230), - [aux_sym_batch_mode_token1] = ACTIONS(1230), - [aux_sym_bind_address_token1] = ACTIONS(1230), - [aux_sym_bind_interface_token1] = ACTIONS(1230), - [aux_sym_canonical_domains_token1] = ACTIONS(1230), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1230), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1230), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1230), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1230), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1230), - [aux_sym_certificate_file_token1] = ACTIONS(1230), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1230), - [aux_sym_channel_timeout_token1] = ACTIONS(1230), - [aux_sym_check_host_ip_token1] = ACTIONS(1230), - [aux_sym_ciphers_token1] = ACTIONS(1230), - [aux_sym_cipher_token1] = ACTIONS(1232), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1230), - [aux_sym_compression_token1] = ACTIONS(1230), - [aux_sym_connection_attempts_token1] = ACTIONS(1230), - [aux_sym_connect_timeout_token1] = ACTIONS(1230), - [aux_sym_control_master_token1] = ACTIONS(1230), - [aux_sym_control_path_token1] = ACTIONS(1230), - [aux_sym_control_persist_token1] = ACTIONS(1230), - [aux_sym_dynamic_forward_token1] = ACTIONS(1230), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1230), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1230), - [aux_sym_escape_char_token1] = ACTIONS(1230), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1230), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1230), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1230), - [aux_sym_forward_agent_token1] = ACTIONS(1230), - [aux_sym_forward_x11_token1] = ACTIONS(1232), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1230), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1230), - [aux_sym_gateway_ports_token1] = ACTIONS(1230), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1230), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1230), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1230), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1230), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1230), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1230), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1230), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1230), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1230), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1230), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1230), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1230), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1230), - [aux_sym_host_key_alias_token1] = ACTIONS(1230), - [aux_sym_hostname_token1] = ACTIONS(1230), - [aux_sym_identities_only_token1] = ACTIONS(1230), - [aux_sym_identity_agent_token1] = ACTIONS(1230), - [aux_sym_identity_file_token1] = ACTIONS(1230), - [aux_sym_ignore_unknown_token1] = ACTIONS(1230), - [aux_sym_include_token1] = ACTIONS(1230), - [aux_sym_ip_qos_token1] = ACTIONS(1230), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1230), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1230), - [aux_sym_kex_algorithms_token1] = ACTIONS(1230), - [aux_sym_known_hosts_command_token1] = ACTIONS(1230), - [aux_sym_local_command_token1] = ACTIONS(1230), - [aux_sym_local_forward_token1] = ACTIONS(1230), - [aux_sym_log_level_token1] = ACTIONS(1230), - [aux_sym_log_verbose_token1] = ACTIONS(1230), - [aux_sym_macs_token1] = ACTIONS(1230), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1230), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1230), - [aux_sym_password_authentication_token1] = ACTIONS(1230), - [aux_sym_permit_local_command_token1] = ACTIONS(1230), - [aux_sym_permit_remote_open_token1] = ACTIONS(1230), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1230), - [aux_sym_port_token1] = ACTIONS(1230), - [aux_sym_preferred_authentications_token1] = ACTIONS(1230), - [aux_sym_protocol_token1] = ACTIONS(1230), - [aux_sym_proxy_command_token1] = ACTIONS(1230), - [aux_sym_proxy_jump_token1] = ACTIONS(1230), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1230), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1230), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1230), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1230), - [aux_sym_rekey_limit_token1] = ACTIONS(1230), - [aux_sym_remote_command_token1] = ACTIONS(1230), - [aux_sym_remote_forward_token1] = ACTIONS(1230), - [aux_sym_request_tty_token1] = ACTIONS(1230), - [aux_sym_required_rsa_size_token1] = ACTIONS(1230), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1230), - [aux_sym_security_key_provider_token1] = ACTIONS(1230), - [aux_sym_send_env_token1] = ACTIONS(1230), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1230), - [aux_sym_server_alive_interval_token1] = ACTIONS(1230), - [aux_sym_session_type_token1] = ACTIONS(1230), - [aux_sym_set_env_token1] = ACTIONS(1230), - [aux_sym_stdin_null_token1] = ACTIONS(1230), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1230), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1230), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1230), - [aux_sym_syslog_facility_token1] = ACTIONS(1230), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1230), - [aux_sym_keep_alive_token1] = ACTIONS(1230), - [aux_sym_tag_token1] = ACTIONS(1230), - [aux_sym_tunnel_token1] = ACTIONS(1232), - [aux_sym_tunnel_device_token1] = ACTIONS(1230), - [aux_sym_update_host_keys_token1] = ACTIONS(1230), - [aux_sym_use_keychain_token1] = ACTIONS(1230), - [aux_sym_use_roaming_token1] = ACTIONS(1230), - [aux_sym_user_token1] = ACTIONS(1232), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1230), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1230), - [aux_sym_visual_host_key_token1] = ACTIONS(1230), - [aux_sym_xauth_location_token1] = ACTIONS(1230), + [ts_builtin_sym_end] = ACTIONS(3351), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3353), + [aux_sym_match_token1] = ACTIONS(3351), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3351), + [aux_sym_address_family_token1] = ACTIONS(3351), + [aux_sym_batch_mode_token1] = ACTIONS(3351), + [aux_sym_bind_address_token1] = ACTIONS(3351), + [aux_sym_bind_interface_token1] = ACTIONS(3351), + [aux_sym_canonical_domains_token1] = ACTIONS(3351), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3351), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3351), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3351), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3351), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3351), + [aux_sym_certificate_file_token1] = ACTIONS(3351), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3351), + [aux_sym_channel_timeout_token1] = ACTIONS(3351), + [aux_sym_check_host_ip_token1] = ACTIONS(3351), + [aux_sym_ciphers_token1] = ACTIONS(3351), + [aux_sym_cipher_token1] = ACTIONS(3353), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3351), + [aux_sym_compression_token1] = ACTIONS(3351), + [aux_sym_connection_attempts_token1] = ACTIONS(3351), + [aux_sym_connect_timeout_token1] = ACTIONS(3351), + [aux_sym_control_master_token1] = ACTIONS(3351), + [aux_sym_control_path_token1] = ACTIONS(3351), + [aux_sym_control_persist_token1] = ACTIONS(3351), + [aux_sym_dynamic_forward_token1] = ACTIONS(3351), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3351), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3351), + [aux_sym_escape_char_token1] = ACTIONS(3351), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3351), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3351), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3351), + [aux_sym_forward_agent_token1] = ACTIONS(3351), + [aux_sym_forward_x11_token1] = ACTIONS(3353), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3351), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3351), + [aux_sym_gateway_ports_token1] = ACTIONS(3351), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3351), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3351), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3351), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3351), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3351), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3351), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3351), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3351), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3351), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3351), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3351), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3351), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3351), + [aux_sym_host_key_alias_token1] = ACTIONS(3351), + [aux_sym_hostname_token1] = ACTIONS(3351), + [aux_sym_identities_only_token1] = ACTIONS(3351), + [aux_sym_identity_agent_token1] = ACTIONS(3351), + [aux_sym_identity_file_token1] = ACTIONS(3351), + [aux_sym_ignore_unknown_token1] = ACTIONS(3351), + [aux_sym_include_token1] = ACTIONS(3351), + [aux_sym_ip_qos_token1] = ACTIONS(3351), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3351), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3351), + [aux_sym_kex_algorithms_token1] = ACTIONS(3351), + [aux_sym_known_hosts_command_token1] = ACTIONS(3351), + [aux_sym_local_command_token1] = ACTIONS(3351), + [aux_sym_local_forward_token1] = ACTIONS(3351), + [aux_sym_log_level_token1] = ACTIONS(3351), + [aux_sym_log_verbose_token1] = ACTIONS(3351), + [aux_sym_macs_token1] = ACTIONS(3351), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3351), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3351), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3351), + [aux_sym_password_authentication_token1] = ACTIONS(3351), + [aux_sym_permit_local_command_token1] = ACTIONS(3351), + [aux_sym_permit_remote_open_token1] = ACTIONS(3351), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3351), + [aux_sym_port_token1] = ACTIONS(3351), + [aux_sym_preferred_authentications_token1] = ACTIONS(3351), + [aux_sym_protocol_token1] = ACTIONS(3351), + [aux_sym_proxy_command_token1] = ACTIONS(3351), + [aux_sym_proxy_jump_token1] = ACTIONS(3351), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3351), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3351), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3351), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3351), + [aux_sym_rekey_limit_token1] = ACTIONS(3351), + [aux_sym_remote_command_token1] = ACTIONS(3351), + [aux_sym_remote_forward_token1] = ACTIONS(3351), + [aux_sym_request_tty_token1] = ACTIONS(3351), + [aux_sym_required_rsa_size_token1] = ACTIONS(3351), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3351), + [aux_sym_security_key_provider_token1] = ACTIONS(3351), + [aux_sym_send_env_token1] = ACTIONS(3351), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3351), + [aux_sym_server_alive_interval_token1] = ACTIONS(3351), + [aux_sym_session_type_token1] = ACTIONS(3351), + [aux_sym_set_env_token1] = ACTIONS(3351), + [aux_sym_stdin_null_token1] = ACTIONS(3351), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3351), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3351), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3351), + [aux_sym_syslog_facility_token1] = ACTIONS(3351), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3351), + [aux_sym_keep_alive_token1] = ACTIONS(3351), + [aux_sym_tag_token1] = ACTIONS(3351), + [aux_sym_tunnel_token1] = ACTIONS(3353), + [aux_sym_tunnel_device_token1] = ACTIONS(3351), + [aux_sym_update_host_keys_token1] = ACTIONS(3351), + [aux_sym_use_keychain_token1] = ACTIONS(3351), + [aux_sym_use_roaming_token1] = ACTIONS(3351), + [aux_sym_user_token1] = ACTIONS(3353), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3351), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3351), + [aux_sym_visual_host_key_token1] = ACTIONS(3351), + [aux_sym_xauth_location_token1] = ACTIONS(3351), }, [566] = { - [ts_builtin_sym_end] = ACTIONS(1488), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1490), - [aux_sym_match_token1] = ACTIONS(1488), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1488), - [aux_sym_address_family_token1] = ACTIONS(1488), - [aux_sym_batch_mode_token1] = ACTIONS(1488), - [aux_sym_bind_address_token1] = ACTIONS(1488), - [aux_sym_bind_interface_token1] = ACTIONS(1488), - [aux_sym_canonical_domains_token1] = ACTIONS(1488), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1488), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1488), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1488), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1488), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1488), - [aux_sym_certificate_file_token1] = ACTIONS(1488), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1488), - [aux_sym_channel_timeout_token1] = ACTIONS(1488), - [aux_sym_check_host_ip_token1] = ACTIONS(1488), - [aux_sym_ciphers_token1] = ACTIONS(1488), - [aux_sym_cipher_token1] = ACTIONS(1490), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1488), - [aux_sym_compression_token1] = ACTIONS(1488), - [aux_sym_connection_attempts_token1] = ACTIONS(1488), - [aux_sym_connect_timeout_token1] = ACTIONS(1488), - [aux_sym_control_master_token1] = ACTIONS(1488), - [aux_sym_control_path_token1] = ACTIONS(1488), - [aux_sym_control_persist_token1] = ACTIONS(1488), - [aux_sym_dynamic_forward_token1] = ACTIONS(1488), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1488), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1488), - [aux_sym_escape_char_token1] = ACTIONS(1488), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1488), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1488), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1488), - [aux_sym_forward_agent_token1] = ACTIONS(1488), - [aux_sym_forward_x11_token1] = ACTIONS(1490), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1488), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1488), - [aux_sym_gateway_ports_token1] = ACTIONS(1488), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1488), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1488), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1488), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1488), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1488), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1488), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1488), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1488), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1488), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1488), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1488), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1488), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1488), - [aux_sym_host_key_alias_token1] = ACTIONS(1488), - [aux_sym_hostname_token1] = ACTIONS(1488), - [aux_sym_identities_only_token1] = ACTIONS(1488), - [aux_sym_identity_agent_token1] = ACTIONS(1488), - [aux_sym_identity_file_token1] = ACTIONS(1488), - [aux_sym_ignore_unknown_token1] = ACTIONS(1488), - [aux_sym_include_token1] = ACTIONS(1488), - [aux_sym_ip_qos_token1] = ACTIONS(1488), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1488), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1488), - [aux_sym_kex_algorithms_token1] = ACTIONS(1488), - [aux_sym_known_hosts_command_token1] = ACTIONS(1488), - [aux_sym_local_command_token1] = ACTIONS(1488), - [aux_sym_local_forward_token1] = ACTIONS(1488), - [aux_sym_log_level_token1] = ACTIONS(1488), - [aux_sym_log_verbose_token1] = ACTIONS(1488), - [aux_sym_macs_token1] = ACTIONS(1488), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1488), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1488), - [aux_sym_password_authentication_token1] = ACTIONS(1488), - [aux_sym_permit_local_command_token1] = ACTIONS(1488), - [aux_sym_permit_remote_open_token1] = ACTIONS(1488), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1488), - [aux_sym_port_token1] = ACTIONS(1488), - [aux_sym_preferred_authentications_token1] = ACTIONS(1488), - [aux_sym_protocol_token1] = ACTIONS(1488), - [aux_sym_proxy_command_token1] = ACTIONS(1488), - [aux_sym_proxy_jump_token1] = ACTIONS(1488), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1488), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1488), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1488), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1488), - [aux_sym_rekey_limit_token1] = ACTIONS(1488), - [aux_sym_remote_command_token1] = ACTIONS(1488), - [aux_sym_remote_forward_token1] = ACTIONS(1488), - [aux_sym_request_tty_token1] = ACTIONS(1488), - [aux_sym_required_rsa_size_token1] = ACTIONS(1488), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1488), - [aux_sym_security_key_provider_token1] = ACTIONS(1488), - [aux_sym_send_env_token1] = ACTIONS(1488), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1488), - [aux_sym_server_alive_interval_token1] = ACTIONS(1488), - [aux_sym_session_type_token1] = ACTIONS(1488), - [aux_sym_set_env_token1] = ACTIONS(1488), - [aux_sym_stdin_null_token1] = ACTIONS(1488), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1488), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1488), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1488), - [aux_sym_syslog_facility_token1] = ACTIONS(1488), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1488), - [aux_sym_keep_alive_token1] = ACTIONS(1488), - [aux_sym_tag_token1] = ACTIONS(1488), - [aux_sym_tunnel_token1] = ACTIONS(1490), - [aux_sym_tunnel_device_token1] = ACTIONS(1488), - [aux_sym_update_host_keys_token1] = ACTIONS(1488), - [aux_sym_use_keychain_token1] = ACTIONS(1488), - [aux_sym_use_roaming_token1] = ACTIONS(1488), - [aux_sym_user_token1] = ACTIONS(1490), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1488), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1488), - [aux_sym_visual_host_key_token1] = ACTIONS(1488), - [aux_sym_xauth_location_token1] = ACTIONS(1488), + [ts_builtin_sym_end] = ACTIONS(3355), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3357), + [aux_sym_match_token1] = ACTIONS(3355), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3355), + [aux_sym_address_family_token1] = ACTIONS(3355), + [aux_sym_batch_mode_token1] = ACTIONS(3355), + [aux_sym_bind_address_token1] = ACTIONS(3355), + [aux_sym_bind_interface_token1] = ACTIONS(3355), + [aux_sym_canonical_domains_token1] = ACTIONS(3355), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3355), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3355), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3355), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3355), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3355), + [aux_sym_certificate_file_token1] = ACTIONS(3355), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3355), + [aux_sym_channel_timeout_token1] = ACTIONS(3355), + [aux_sym_check_host_ip_token1] = ACTIONS(3355), + [aux_sym_ciphers_token1] = ACTIONS(3355), + [aux_sym_cipher_token1] = ACTIONS(3357), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3355), + [aux_sym_compression_token1] = ACTIONS(3355), + [aux_sym_connection_attempts_token1] = ACTIONS(3355), + [aux_sym_connect_timeout_token1] = ACTIONS(3355), + [aux_sym_control_master_token1] = ACTIONS(3355), + [aux_sym_control_path_token1] = ACTIONS(3355), + [aux_sym_control_persist_token1] = ACTIONS(3355), + [aux_sym_dynamic_forward_token1] = ACTIONS(3355), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3355), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3355), + [aux_sym_escape_char_token1] = ACTIONS(3355), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3355), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3355), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3355), + [aux_sym_forward_agent_token1] = ACTIONS(3355), + [aux_sym_forward_x11_token1] = ACTIONS(3357), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3355), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3355), + [aux_sym_gateway_ports_token1] = ACTIONS(3355), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3355), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3355), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3355), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3355), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3355), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3355), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3355), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3355), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3355), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3355), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3355), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3355), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3355), + [aux_sym_host_key_alias_token1] = ACTIONS(3355), + [aux_sym_hostname_token1] = ACTIONS(3355), + [aux_sym_identities_only_token1] = ACTIONS(3355), + [aux_sym_identity_agent_token1] = ACTIONS(3355), + [aux_sym_identity_file_token1] = ACTIONS(3355), + [aux_sym_ignore_unknown_token1] = ACTIONS(3355), + [aux_sym_include_token1] = ACTIONS(3355), + [aux_sym_ip_qos_token1] = ACTIONS(3355), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3355), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3355), + [aux_sym_kex_algorithms_token1] = ACTIONS(3355), + [aux_sym_known_hosts_command_token1] = ACTIONS(3355), + [aux_sym_local_command_token1] = ACTIONS(3355), + [aux_sym_local_forward_token1] = ACTIONS(3355), + [aux_sym_log_level_token1] = ACTIONS(3355), + [aux_sym_log_verbose_token1] = ACTIONS(3355), + [aux_sym_macs_token1] = ACTIONS(3355), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3355), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3355), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3355), + [aux_sym_password_authentication_token1] = ACTIONS(3355), + [aux_sym_permit_local_command_token1] = ACTIONS(3355), + [aux_sym_permit_remote_open_token1] = ACTIONS(3355), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3355), + [aux_sym_port_token1] = ACTIONS(3355), + [aux_sym_preferred_authentications_token1] = ACTIONS(3355), + [aux_sym_protocol_token1] = ACTIONS(3355), + [aux_sym_proxy_command_token1] = ACTIONS(3355), + [aux_sym_proxy_jump_token1] = ACTIONS(3355), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3355), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3355), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3355), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3355), + [aux_sym_rekey_limit_token1] = ACTIONS(3355), + [aux_sym_remote_command_token1] = ACTIONS(3355), + [aux_sym_remote_forward_token1] = ACTIONS(3355), + [aux_sym_request_tty_token1] = ACTIONS(3355), + [aux_sym_required_rsa_size_token1] = ACTIONS(3355), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3355), + [aux_sym_security_key_provider_token1] = ACTIONS(3355), + [aux_sym_send_env_token1] = ACTIONS(3355), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3355), + [aux_sym_server_alive_interval_token1] = ACTIONS(3355), + [aux_sym_session_type_token1] = ACTIONS(3355), + [aux_sym_set_env_token1] = ACTIONS(3355), + [aux_sym_stdin_null_token1] = ACTIONS(3355), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3355), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3355), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3355), + [aux_sym_syslog_facility_token1] = ACTIONS(3355), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3355), + [aux_sym_keep_alive_token1] = ACTIONS(3355), + [aux_sym_tag_token1] = ACTIONS(3355), + [aux_sym_tunnel_token1] = ACTIONS(3357), + [aux_sym_tunnel_device_token1] = ACTIONS(3355), + [aux_sym_update_host_keys_token1] = ACTIONS(3355), + [aux_sym_use_keychain_token1] = ACTIONS(3355), + [aux_sym_use_roaming_token1] = ACTIONS(3355), + [aux_sym_user_token1] = ACTIONS(3357), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3355), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3355), + [aux_sym_visual_host_key_token1] = ACTIONS(3355), + [aux_sym_xauth_location_token1] = ACTIONS(3355), }, [567] = { - [ts_builtin_sym_end] = ACTIONS(3340), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3342), - [aux_sym_match_token1] = ACTIONS(3340), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3340), - [aux_sym_address_family_token1] = ACTIONS(3340), - [aux_sym_batch_mode_token1] = ACTIONS(3340), - [aux_sym_bind_address_token1] = ACTIONS(3340), - [aux_sym_bind_interface_token1] = ACTIONS(3340), - [aux_sym_canonical_domains_token1] = ACTIONS(3340), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3340), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3340), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3340), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3340), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3340), - [aux_sym_certificate_file_token1] = ACTIONS(3340), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3340), - [aux_sym_channel_timeout_token1] = ACTIONS(3340), - [aux_sym_check_host_ip_token1] = ACTIONS(3340), - [aux_sym_ciphers_token1] = ACTIONS(3340), - [aux_sym_cipher_token1] = ACTIONS(3342), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3340), - [aux_sym_compression_token1] = ACTIONS(3340), - [aux_sym_connection_attempts_token1] = ACTIONS(3340), - [aux_sym_connect_timeout_token1] = ACTIONS(3340), - [aux_sym_control_master_token1] = ACTIONS(3340), - [aux_sym_control_path_token1] = ACTIONS(3340), - [aux_sym_control_persist_token1] = ACTIONS(3340), - [aux_sym_dynamic_forward_token1] = ACTIONS(3340), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3340), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3340), - [aux_sym_escape_char_token1] = ACTIONS(3340), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3340), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3340), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3340), - [aux_sym_forward_agent_token1] = ACTIONS(3340), - [aux_sym_forward_x11_token1] = ACTIONS(3342), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3340), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3340), - [aux_sym_gateway_ports_token1] = ACTIONS(3340), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3340), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3340), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3340), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3340), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3340), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3340), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3340), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3340), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3340), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3340), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3340), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3340), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3340), - [aux_sym_host_key_alias_token1] = ACTIONS(3340), - [aux_sym_hostname_token1] = ACTIONS(3340), - [aux_sym_identities_only_token1] = ACTIONS(3340), - [aux_sym_identity_agent_token1] = ACTIONS(3340), - [aux_sym_identity_file_token1] = ACTIONS(3340), - [aux_sym_ignore_unknown_token1] = ACTIONS(3340), - [aux_sym_include_token1] = ACTIONS(3340), - [aux_sym_ip_qos_token1] = ACTIONS(3340), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3340), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3340), - [aux_sym_kex_algorithms_token1] = ACTIONS(3340), - [aux_sym_known_hosts_command_token1] = ACTIONS(3340), - [aux_sym_local_command_token1] = ACTIONS(3340), - [aux_sym_local_forward_token1] = ACTIONS(3340), - [aux_sym_log_level_token1] = ACTIONS(3340), - [aux_sym_log_verbose_token1] = ACTIONS(3340), - [aux_sym_macs_token1] = ACTIONS(3340), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3340), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3340), - [aux_sym_password_authentication_token1] = ACTIONS(3340), - [aux_sym_permit_local_command_token1] = ACTIONS(3340), - [aux_sym_permit_remote_open_token1] = ACTIONS(3340), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3340), - [aux_sym_port_token1] = ACTIONS(3340), - [aux_sym_preferred_authentications_token1] = ACTIONS(3340), - [aux_sym_protocol_token1] = ACTIONS(3340), - [aux_sym_proxy_command_token1] = ACTIONS(3340), - [aux_sym_proxy_jump_token1] = ACTIONS(3340), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3340), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3340), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3340), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3340), - [aux_sym_rekey_limit_token1] = ACTIONS(3340), - [aux_sym_remote_command_token1] = ACTIONS(3340), - [aux_sym_remote_forward_token1] = ACTIONS(3340), - [aux_sym_request_tty_token1] = ACTIONS(3340), - [aux_sym_required_rsa_size_token1] = ACTIONS(3340), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3340), - [aux_sym_security_key_provider_token1] = ACTIONS(3340), - [aux_sym_send_env_token1] = ACTIONS(3340), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3340), - [aux_sym_server_alive_interval_token1] = ACTIONS(3340), - [aux_sym_session_type_token1] = ACTIONS(3340), - [aux_sym_set_env_token1] = ACTIONS(3340), - [aux_sym_stdin_null_token1] = ACTIONS(3340), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3340), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3340), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3340), - [aux_sym_syslog_facility_token1] = ACTIONS(3340), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3340), - [aux_sym_keep_alive_token1] = ACTIONS(3340), - [aux_sym_tag_token1] = ACTIONS(3340), - [aux_sym_tunnel_token1] = ACTIONS(3342), - [aux_sym_tunnel_device_token1] = ACTIONS(3340), - [aux_sym_update_host_keys_token1] = ACTIONS(3340), - [aux_sym_use_keychain_token1] = ACTIONS(3340), - [aux_sym_use_roaming_token1] = ACTIONS(3340), - [aux_sym_user_token1] = ACTIONS(3342), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3340), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3340), - [aux_sym_visual_host_key_token1] = ACTIONS(3340), - [aux_sym_xauth_location_token1] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3359), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3361), + [aux_sym_match_token1] = ACTIONS(3359), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3359), + [aux_sym_address_family_token1] = ACTIONS(3359), + [aux_sym_batch_mode_token1] = ACTIONS(3359), + [aux_sym_bind_address_token1] = ACTIONS(3359), + [aux_sym_bind_interface_token1] = ACTIONS(3359), + [aux_sym_canonical_domains_token1] = ACTIONS(3359), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3359), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3359), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3359), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3359), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3359), + [aux_sym_certificate_file_token1] = ACTIONS(3359), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3359), + [aux_sym_channel_timeout_token1] = ACTIONS(3359), + [aux_sym_check_host_ip_token1] = ACTIONS(3359), + [aux_sym_ciphers_token1] = ACTIONS(3359), + [aux_sym_cipher_token1] = ACTIONS(3361), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3359), + [aux_sym_compression_token1] = ACTIONS(3359), + [aux_sym_connection_attempts_token1] = ACTIONS(3359), + [aux_sym_connect_timeout_token1] = ACTIONS(3359), + [aux_sym_control_master_token1] = ACTIONS(3359), + [aux_sym_control_path_token1] = ACTIONS(3359), + [aux_sym_control_persist_token1] = ACTIONS(3359), + [aux_sym_dynamic_forward_token1] = ACTIONS(3359), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3359), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3359), + [aux_sym_escape_char_token1] = ACTIONS(3359), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3359), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3359), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3359), + [aux_sym_forward_agent_token1] = ACTIONS(3359), + [aux_sym_forward_x11_token1] = ACTIONS(3361), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3359), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3359), + [aux_sym_gateway_ports_token1] = ACTIONS(3359), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3359), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3359), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3359), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3359), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3359), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3359), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3359), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3359), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3359), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3359), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3359), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3359), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3359), + [aux_sym_host_key_alias_token1] = ACTIONS(3359), + [aux_sym_hostname_token1] = ACTIONS(3359), + [aux_sym_identities_only_token1] = ACTIONS(3359), + [aux_sym_identity_agent_token1] = ACTIONS(3359), + [aux_sym_identity_file_token1] = ACTIONS(3359), + [aux_sym_ignore_unknown_token1] = ACTIONS(3359), + [aux_sym_include_token1] = ACTIONS(3359), + [aux_sym_ip_qos_token1] = ACTIONS(3359), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3359), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3359), + [aux_sym_kex_algorithms_token1] = ACTIONS(3359), + [aux_sym_known_hosts_command_token1] = ACTIONS(3359), + [aux_sym_local_command_token1] = ACTIONS(3359), + [aux_sym_local_forward_token1] = ACTIONS(3359), + [aux_sym_log_level_token1] = ACTIONS(3359), + [aux_sym_log_verbose_token1] = ACTIONS(3359), + [aux_sym_macs_token1] = ACTIONS(3359), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3359), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3359), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3359), + [aux_sym_password_authentication_token1] = ACTIONS(3359), + [aux_sym_permit_local_command_token1] = ACTIONS(3359), + [aux_sym_permit_remote_open_token1] = ACTIONS(3359), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3359), + [aux_sym_port_token1] = ACTIONS(3359), + [aux_sym_preferred_authentications_token1] = ACTIONS(3359), + [aux_sym_protocol_token1] = ACTIONS(3359), + [aux_sym_proxy_command_token1] = ACTIONS(3359), + [aux_sym_proxy_jump_token1] = ACTIONS(3359), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3359), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3359), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3359), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3359), + [aux_sym_rekey_limit_token1] = ACTIONS(3359), + [aux_sym_remote_command_token1] = ACTIONS(3359), + [aux_sym_remote_forward_token1] = ACTIONS(3359), + [aux_sym_request_tty_token1] = ACTIONS(3359), + [aux_sym_required_rsa_size_token1] = ACTIONS(3359), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3359), + [aux_sym_security_key_provider_token1] = ACTIONS(3359), + [aux_sym_send_env_token1] = ACTIONS(3359), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3359), + [aux_sym_server_alive_interval_token1] = ACTIONS(3359), + [aux_sym_session_type_token1] = ACTIONS(3359), + [aux_sym_set_env_token1] = ACTIONS(3359), + [aux_sym_stdin_null_token1] = ACTIONS(3359), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3359), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3359), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3359), + [aux_sym_syslog_facility_token1] = ACTIONS(3359), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3359), + [aux_sym_keep_alive_token1] = ACTIONS(3359), + [aux_sym_tag_token1] = ACTIONS(3359), + [aux_sym_tunnel_token1] = ACTIONS(3361), + [aux_sym_tunnel_device_token1] = ACTIONS(3359), + [aux_sym_update_host_keys_token1] = ACTIONS(3359), + [aux_sym_use_keychain_token1] = ACTIONS(3359), + [aux_sym_use_roaming_token1] = ACTIONS(3359), + [aux_sym_user_token1] = ACTIONS(3361), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3359), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3359), + [aux_sym_visual_host_key_token1] = ACTIONS(3359), + [aux_sym_xauth_location_token1] = ACTIONS(3359), }, [568] = { - [ts_builtin_sym_end] = ACTIONS(3344), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3346), - [aux_sym_match_token1] = ACTIONS(3344), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3344), - [aux_sym_address_family_token1] = ACTIONS(3344), - [aux_sym_batch_mode_token1] = ACTIONS(3344), - [aux_sym_bind_address_token1] = ACTIONS(3344), - [aux_sym_bind_interface_token1] = ACTIONS(3344), - [aux_sym_canonical_domains_token1] = ACTIONS(3344), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3344), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3344), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3344), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3344), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3344), - [aux_sym_certificate_file_token1] = ACTIONS(3344), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3344), - [aux_sym_channel_timeout_token1] = ACTIONS(3344), - [aux_sym_check_host_ip_token1] = ACTIONS(3344), - [aux_sym_ciphers_token1] = ACTIONS(3344), - [aux_sym_cipher_token1] = ACTIONS(3346), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3344), - [aux_sym_compression_token1] = ACTIONS(3344), - [aux_sym_connection_attempts_token1] = ACTIONS(3344), - [aux_sym_connect_timeout_token1] = ACTIONS(3344), - [aux_sym_control_master_token1] = ACTIONS(3344), - [aux_sym_control_path_token1] = ACTIONS(3344), - [aux_sym_control_persist_token1] = ACTIONS(3344), - [aux_sym_dynamic_forward_token1] = ACTIONS(3344), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3344), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3344), - [aux_sym_escape_char_token1] = ACTIONS(3344), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3344), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3344), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3344), - [aux_sym_forward_agent_token1] = ACTIONS(3344), - [aux_sym_forward_x11_token1] = ACTIONS(3346), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3344), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3344), - [aux_sym_gateway_ports_token1] = ACTIONS(3344), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3344), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3344), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3344), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3344), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3344), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3344), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3344), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3344), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3344), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3344), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3344), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3344), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3344), - [aux_sym_host_key_alias_token1] = ACTIONS(3344), - [aux_sym_hostname_token1] = ACTIONS(3344), - [aux_sym_identities_only_token1] = ACTIONS(3344), - [aux_sym_identity_agent_token1] = ACTIONS(3344), - [aux_sym_identity_file_token1] = ACTIONS(3344), - [aux_sym_ignore_unknown_token1] = ACTIONS(3344), - [aux_sym_include_token1] = ACTIONS(3344), - [aux_sym_ip_qos_token1] = ACTIONS(3344), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3344), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3344), - [aux_sym_kex_algorithms_token1] = ACTIONS(3344), - [aux_sym_known_hosts_command_token1] = ACTIONS(3344), - [aux_sym_local_command_token1] = ACTIONS(3344), - [aux_sym_local_forward_token1] = ACTIONS(3344), - [aux_sym_log_level_token1] = ACTIONS(3344), - [aux_sym_log_verbose_token1] = ACTIONS(3344), - [aux_sym_macs_token1] = ACTIONS(3344), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3344), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3344), - [aux_sym_password_authentication_token1] = ACTIONS(3344), - [aux_sym_permit_local_command_token1] = ACTIONS(3344), - [aux_sym_permit_remote_open_token1] = ACTIONS(3344), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3344), - [aux_sym_port_token1] = ACTIONS(3344), - [aux_sym_preferred_authentications_token1] = ACTIONS(3344), - [aux_sym_protocol_token1] = ACTIONS(3344), - [aux_sym_proxy_command_token1] = ACTIONS(3344), - [aux_sym_proxy_jump_token1] = ACTIONS(3344), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3344), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3344), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3344), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3344), - [aux_sym_rekey_limit_token1] = ACTIONS(3344), - [aux_sym_remote_command_token1] = ACTIONS(3344), - [aux_sym_remote_forward_token1] = ACTIONS(3344), - [aux_sym_request_tty_token1] = ACTIONS(3344), - [aux_sym_required_rsa_size_token1] = ACTIONS(3344), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3344), - [aux_sym_security_key_provider_token1] = ACTIONS(3344), - [aux_sym_send_env_token1] = ACTIONS(3344), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3344), - [aux_sym_server_alive_interval_token1] = ACTIONS(3344), - [aux_sym_session_type_token1] = ACTIONS(3344), - [aux_sym_set_env_token1] = ACTIONS(3344), - [aux_sym_stdin_null_token1] = ACTIONS(3344), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3344), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3344), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3344), - [aux_sym_syslog_facility_token1] = ACTIONS(3344), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3344), - [aux_sym_keep_alive_token1] = ACTIONS(3344), - [aux_sym_tag_token1] = ACTIONS(3344), - [aux_sym_tunnel_token1] = ACTIONS(3346), - [aux_sym_tunnel_device_token1] = ACTIONS(3344), - [aux_sym_update_host_keys_token1] = ACTIONS(3344), - [aux_sym_use_keychain_token1] = ACTIONS(3344), - [aux_sym_use_roaming_token1] = ACTIONS(3344), - [aux_sym_user_token1] = ACTIONS(3346), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3344), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3344), - [aux_sym_visual_host_key_token1] = ACTIONS(3344), - [aux_sym_xauth_location_token1] = ACTIONS(3344), + [ts_builtin_sym_end] = ACTIONS(1271), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1273), + [aux_sym_match_token1] = ACTIONS(1271), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1271), + [aux_sym_address_family_token1] = ACTIONS(1271), + [aux_sym_batch_mode_token1] = ACTIONS(1271), + [aux_sym_bind_address_token1] = ACTIONS(1271), + [aux_sym_bind_interface_token1] = ACTIONS(1271), + [aux_sym_canonical_domains_token1] = ACTIONS(1271), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1271), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1271), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1271), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1271), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1271), + [aux_sym_certificate_file_token1] = ACTIONS(1271), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1271), + [aux_sym_channel_timeout_token1] = ACTIONS(1271), + [aux_sym_check_host_ip_token1] = ACTIONS(1271), + [aux_sym_ciphers_token1] = ACTIONS(1271), + [aux_sym_cipher_token1] = ACTIONS(1273), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1271), + [aux_sym_compression_token1] = ACTIONS(1271), + [aux_sym_connection_attempts_token1] = ACTIONS(1271), + [aux_sym_connect_timeout_token1] = ACTIONS(1271), + [aux_sym_control_master_token1] = ACTIONS(1271), + [aux_sym_control_path_token1] = ACTIONS(1271), + [aux_sym_control_persist_token1] = ACTIONS(1271), + [aux_sym_dynamic_forward_token1] = ACTIONS(1271), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1271), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1271), + [aux_sym_escape_char_token1] = ACTIONS(1271), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1271), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1271), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1271), + [aux_sym_forward_agent_token1] = ACTIONS(1271), + [aux_sym_forward_x11_token1] = ACTIONS(1273), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1271), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1271), + [aux_sym_gateway_ports_token1] = ACTIONS(1271), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1271), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1271), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1271), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1271), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1271), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1271), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1271), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1271), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1271), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1271), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1271), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1271), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1271), + [aux_sym_host_key_alias_token1] = ACTIONS(1271), + [aux_sym_hostname_token1] = ACTIONS(1271), + [aux_sym_identities_only_token1] = ACTIONS(1271), + [aux_sym_identity_agent_token1] = ACTIONS(1271), + [aux_sym_identity_file_token1] = ACTIONS(1271), + [aux_sym_ignore_unknown_token1] = ACTIONS(1271), + [aux_sym_include_token1] = ACTIONS(1271), + [aux_sym_ip_qos_token1] = ACTIONS(1271), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1271), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1271), + [aux_sym_kex_algorithms_token1] = ACTIONS(1271), + [aux_sym_known_hosts_command_token1] = ACTIONS(1271), + [aux_sym_local_command_token1] = ACTIONS(1271), + [aux_sym_local_forward_token1] = ACTIONS(1271), + [aux_sym_log_level_token1] = ACTIONS(1271), + [aux_sym_log_verbose_token1] = ACTIONS(1271), + [aux_sym_macs_token1] = ACTIONS(1271), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1271), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1271), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1271), + [aux_sym_password_authentication_token1] = ACTIONS(1271), + [aux_sym_permit_local_command_token1] = ACTIONS(1271), + [aux_sym_permit_remote_open_token1] = ACTIONS(1271), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1271), + [aux_sym_port_token1] = ACTIONS(1271), + [aux_sym_preferred_authentications_token1] = ACTIONS(1271), + [aux_sym_protocol_token1] = ACTIONS(1271), + [aux_sym_proxy_command_token1] = ACTIONS(1271), + [aux_sym_proxy_jump_token1] = ACTIONS(1271), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1271), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1271), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1271), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1271), + [aux_sym_rekey_limit_token1] = ACTIONS(1271), + [aux_sym_remote_command_token1] = ACTIONS(1271), + [aux_sym_remote_forward_token1] = ACTIONS(1271), + [aux_sym_request_tty_token1] = ACTIONS(1271), + [aux_sym_required_rsa_size_token1] = ACTIONS(1271), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1271), + [aux_sym_security_key_provider_token1] = ACTIONS(1271), + [aux_sym_send_env_token1] = ACTIONS(1271), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1271), + [aux_sym_server_alive_interval_token1] = ACTIONS(1271), + [aux_sym_session_type_token1] = ACTIONS(1271), + [aux_sym_set_env_token1] = ACTIONS(1271), + [aux_sym_stdin_null_token1] = ACTIONS(1271), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1271), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1271), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1271), + [aux_sym_syslog_facility_token1] = ACTIONS(1271), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1271), + [aux_sym_keep_alive_token1] = ACTIONS(1271), + [aux_sym_tag_token1] = ACTIONS(1271), + [aux_sym_tunnel_token1] = ACTIONS(1273), + [aux_sym_tunnel_device_token1] = ACTIONS(1271), + [aux_sym_update_host_keys_token1] = ACTIONS(1271), + [aux_sym_use_keychain_token1] = ACTIONS(1271), + [aux_sym_use_roaming_token1] = ACTIONS(1271), + [aux_sym_user_token1] = ACTIONS(1273), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1271), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1271), + [aux_sym_visual_host_key_token1] = ACTIONS(1271), + [aux_sym_xauth_location_token1] = ACTIONS(1271), }, [569] = { - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3350), - [aux_sym_match_token1] = ACTIONS(3348), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3348), - [aux_sym_address_family_token1] = ACTIONS(3348), - [aux_sym_batch_mode_token1] = ACTIONS(3348), - [aux_sym_bind_address_token1] = ACTIONS(3348), - [aux_sym_bind_interface_token1] = ACTIONS(3348), - [aux_sym_canonical_domains_token1] = ACTIONS(3348), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3348), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3348), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3348), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3348), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3348), - [aux_sym_certificate_file_token1] = ACTIONS(3348), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3348), - [aux_sym_channel_timeout_token1] = ACTIONS(3348), - [aux_sym_check_host_ip_token1] = ACTIONS(3348), - [aux_sym_ciphers_token1] = ACTIONS(3348), - [aux_sym_cipher_token1] = ACTIONS(3350), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3348), - [aux_sym_compression_token1] = ACTIONS(3348), - [aux_sym_connection_attempts_token1] = ACTIONS(3348), - [aux_sym_connect_timeout_token1] = ACTIONS(3348), - [aux_sym_control_master_token1] = ACTIONS(3348), - [aux_sym_control_path_token1] = ACTIONS(3348), - [aux_sym_control_persist_token1] = ACTIONS(3348), - [aux_sym_dynamic_forward_token1] = ACTIONS(3348), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3348), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3348), - [aux_sym_escape_char_token1] = ACTIONS(3348), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3348), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3348), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3348), - [aux_sym_forward_agent_token1] = ACTIONS(3348), - [aux_sym_forward_x11_token1] = ACTIONS(3350), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3348), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3348), - [aux_sym_gateway_ports_token1] = ACTIONS(3348), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3348), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3348), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3348), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3348), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3348), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3348), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3348), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3348), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3348), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3348), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3348), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3348), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3348), - [aux_sym_host_key_alias_token1] = ACTIONS(3348), - [aux_sym_hostname_token1] = ACTIONS(3348), - [aux_sym_identities_only_token1] = ACTIONS(3348), - [aux_sym_identity_agent_token1] = ACTIONS(3348), - [aux_sym_identity_file_token1] = ACTIONS(3348), - [aux_sym_ignore_unknown_token1] = ACTIONS(3348), - [aux_sym_include_token1] = ACTIONS(3348), - [aux_sym_ip_qos_token1] = ACTIONS(3348), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3348), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3348), - [aux_sym_kex_algorithms_token1] = ACTIONS(3348), - [aux_sym_known_hosts_command_token1] = ACTIONS(3348), - [aux_sym_local_command_token1] = ACTIONS(3348), - [aux_sym_local_forward_token1] = ACTIONS(3348), - [aux_sym_log_level_token1] = ACTIONS(3348), - [aux_sym_log_verbose_token1] = ACTIONS(3348), - [aux_sym_macs_token1] = ACTIONS(3348), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3348), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3348), - [aux_sym_password_authentication_token1] = ACTIONS(3348), - [aux_sym_permit_local_command_token1] = ACTIONS(3348), - [aux_sym_permit_remote_open_token1] = ACTIONS(3348), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3348), - [aux_sym_port_token1] = ACTIONS(3348), - [aux_sym_preferred_authentications_token1] = ACTIONS(3348), - [aux_sym_protocol_token1] = ACTIONS(3348), - [aux_sym_proxy_command_token1] = ACTIONS(3348), - [aux_sym_proxy_jump_token1] = ACTIONS(3348), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3348), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3348), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3348), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3348), - [aux_sym_rekey_limit_token1] = ACTIONS(3348), - [aux_sym_remote_command_token1] = ACTIONS(3348), - [aux_sym_remote_forward_token1] = ACTIONS(3348), - [aux_sym_request_tty_token1] = ACTIONS(3348), - [aux_sym_required_rsa_size_token1] = ACTIONS(3348), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3348), - [aux_sym_security_key_provider_token1] = ACTIONS(3348), - [aux_sym_send_env_token1] = ACTIONS(3348), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3348), - [aux_sym_server_alive_interval_token1] = ACTIONS(3348), - [aux_sym_session_type_token1] = ACTIONS(3348), - [aux_sym_set_env_token1] = ACTIONS(3348), - [aux_sym_stdin_null_token1] = ACTIONS(3348), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3348), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3348), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3348), - [aux_sym_syslog_facility_token1] = ACTIONS(3348), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3348), - [aux_sym_keep_alive_token1] = ACTIONS(3348), - [aux_sym_tag_token1] = ACTIONS(3348), - [aux_sym_tunnel_token1] = ACTIONS(3350), - [aux_sym_tunnel_device_token1] = ACTIONS(3348), - [aux_sym_update_host_keys_token1] = ACTIONS(3348), - [aux_sym_use_keychain_token1] = ACTIONS(3348), - [aux_sym_use_roaming_token1] = ACTIONS(3348), - [aux_sym_user_token1] = ACTIONS(3350), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3348), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3348), - [aux_sym_visual_host_key_token1] = ACTIONS(3348), - [aux_sym_xauth_location_token1] = ACTIONS(3348), + [ts_builtin_sym_end] = ACTIONS(857), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(859), + [aux_sym_match_token1] = ACTIONS(857), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(857), + [aux_sym_address_family_token1] = ACTIONS(857), + [aux_sym_batch_mode_token1] = ACTIONS(857), + [aux_sym_bind_address_token1] = ACTIONS(857), + [aux_sym_bind_interface_token1] = ACTIONS(857), + [aux_sym_canonical_domains_token1] = ACTIONS(857), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(857), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(857), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(857), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(857), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(857), + [aux_sym_certificate_file_token1] = ACTIONS(857), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(857), + [aux_sym_channel_timeout_token1] = ACTIONS(857), + [aux_sym_check_host_ip_token1] = ACTIONS(857), + [aux_sym_ciphers_token1] = ACTIONS(857), + [aux_sym_cipher_token1] = ACTIONS(859), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(857), + [aux_sym_compression_token1] = ACTIONS(857), + [aux_sym_connection_attempts_token1] = ACTIONS(857), + [aux_sym_connect_timeout_token1] = ACTIONS(857), + [aux_sym_control_master_token1] = ACTIONS(857), + [aux_sym_control_path_token1] = ACTIONS(857), + [aux_sym_control_persist_token1] = ACTIONS(857), + [aux_sym_dynamic_forward_token1] = ACTIONS(857), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(857), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(857), + [aux_sym_escape_char_token1] = ACTIONS(857), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(857), + [aux_sym_fingerprint_hash_token1] = ACTIONS(857), + [aux_sym_fork_after_authentication_token1] = ACTIONS(857), + [aux_sym_forward_agent_token1] = ACTIONS(857), + [aux_sym_forward_x11_token1] = ACTIONS(859), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(857), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(857), + [aux_sym_gateway_ports_token1] = ACTIONS(857), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(857), + [aux_sym_gssapi_authentication_token1] = ACTIONS(857), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(857), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(857), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(857), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(857), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(857), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(857), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(857), + [aux_sym_hash_known_hosts_token1] = ACTIONS(857), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(857), + [aux_sym_hostbased_authentication_token1] = ACTIONS(857), + [aux_sym_host_key_algorithms_token1] = ACTIONS(857), + [aux_sym_host_key_alias_token1] = ACTIONS(857), + [aux_sym_hostname_token1] = ACTIONS(857), + [aux_sym_identities_only_token1] = ACTIONS(857), + [aux_sym_identity_agent_token1] = ACTIONS(857), + [aux_sym_identity_file_token1] = ACTIONS(857), + [aux_sym_ignore_unknown_token1] = ACTIONS(857), + [aux_sym_include_token1] = ACTIONS(857), + [aux_sym_ip_qos_token1] = ACTIONS(857), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(857), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(857), + [aux_sym_kex_algorithms_token1] = ACTIONS(857), + [aux_sym_known_hosts_command_token1] = ACTIONS(857), + [aux_sym_local_command_token1] = ACTIONS(857), + [aux_sym_local_forward_token1] = ACTIONS(857), + [aux_sym_log_level_token1] = ACTIONS(857), + [aux_sym_log_verbose_token1] = ACTIONS(857), + [aux_sym_macs_token1] = ACTIONS(857), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(857), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(857), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(857), + [aux_sym_password_authentication_token1] = ACTIONS(857), + [aux_sym_permit_local_command_token1] = ACTIONS(857), + [aux_sym_permit_remote_open_token1] = ACTIONS(857), + [aux_sym_pkcs11_provider_token1] = ACTIONS(857), + [aux_sym_port_token1] = ACTIONS(857), + [aux_sym_preferred_authentications_token1] = ACTIONS(857), + [aux_sym_protocol_token1] = ACTIONS(857), + [aux_sym_proxy_command_token1] = ACTIONS(857), + [aux_sym_proxy_jump_token1] = ACTIONS(857), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(857), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(857), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(857), + [aux_sym_pubkey_authentication_token1] = ACTIONS(857), + [aux_sym_rekey_limit_token1] = ACTIONS(857), + [aux_sym_remote_command_token1] = ACTIONS(857), + [aux_sym_remote_forward_token1] = ACTIONS(857), + [aux_sym_request_tty_token1] = ACTIONS(857), + [aux_sym_required_rsa_size_token1] = ACTIONS(857), + [aux_sym_revoked_host_keys_token1] = ACTIONS(857), + [aux_sym_security_key_provider_token1] = ACTIONS(857), + [aux_sym_send_env_token1] = ACTIONS(857), + [aux_sym_server_alive_count_max_token1] = ACTIONS(857), + [aux_sym_server_alive_interval_token1] = ACTIONS(857), + [aux_sym_session_type_token1] = ACTIONS(857), + [aux_sym_set_env_token1] = ACTIONS(857), + [aux_sym_stdin_null_token1] = ACTIONS(857), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(857), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(857), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(857), + [aux_sym_syslog_facility_token1] = ACTIONS(857), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(857), + [aux_sym_keep_alive_token1] = ACTIONS(857), + [aux_sym_tag_token1] = ACTIONS(857), + [aux_sym_tunnel_token1] = ACTIONS(859), + [aux_sym_tunnel_device_token1] = ACTIONS(857), + [aux_sym_update_host_keys_token1] = ACTIONS(857), + [aux_sym_use_keychain_token1] = ACTIONS(857), + [aux_sym_use_roaming_token1] = ACTIONS(857), + [aux_sym_user_token1] = ACTIONS(859), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(857), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(857), + [aux_sym_visual_host_key_token1] = ACTIONS(857), + [aux_sym_xauth_location_token1] = ACTIONS(857), }, [570] = { - [ts_builtin_sym_end] = ACTIONS(3352), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3354), - [aux_sym_match_token1] = ACTIONS(3352), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3352), - [aux_sym_address_family_token1] = ACTIONS(3352), - [aux_sym_batch_mode_token1] = ACTIONS(3352), - [aux_sym_bind_address_token1] = ACTIONS(3352), - [aux_sym_bind_interface_token1] = ACTIONS(3352), - [aux_sym_canonical_domains_token1] = ACTIONS(3352), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3352), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3352), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3352), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3352), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3352), - [aux_sym_certificate_file_token1] = ACTIONS(3352), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3352), - [aux_sym_channel_timeout_token1] = ACTIONS(3352), - [aux_sym_check_host_ip_token1] = ACTIONS(3352), - [aux_sym_ciphers_token1] = ACTIONS(3352), - [aux_sym_cipher_token1] = ACTIONS(3354), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3352), - [aux_sym_compression_token1] = ACTIONS(3352), - [aux_sym_connection_attempts_token1] = ACTIONS(3352), - [aux_sym_connect_timeout_token1] = ACTIONS(3352), - [aux_sym_control_master_token1] = ACTIONS(3352), - [aux_sym_control_path_token1] = ACTIONS(3352), - [aux_sym_control_persist_token1] = ACTIONS(3352), - [aux_sym_dynamic_forward_token1] = ACTIONS(3352), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3352), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3352), - [aux_sym_escape_char_token1] = ACTIONS(3352), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3352), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3352), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3352), - [aux_sym_forward_agent_token1] = ACTIONS(3352), - [aux_sym_forward_x11_token1] = ACTIONS(3354), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3352), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3352), - [aux_sym_gateway_ports_token1] = ACTIONS(3352), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3352), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3352), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3352), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3352), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3352), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3352), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3352), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3352), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3352), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3352), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3352), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3352), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3352), - [aux_sym_host_key_alias_token1] = ACTIONS(3352), - [aux_sym_hostname_token1] = ACTIONS(3352), - [aux_sym_identities_only_token1] = ACTIONS(3352), - [aux_sym_identity_agent_token1] = ACTIONS(3352), - [aux_sym_identity_file_token1] = ACTIONS(3352), - [aux_sym_ignore_unknown_token1] = ACTIONS(3352), - [aux_sym_include_token1] = ACTIONS(3352), - [aux_sym_ip_qos_token1] = ACTIONS(3352), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3352), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3352), - [aux_sym_kex_algorithms_token1] = ACTIONS(3352), - [aux_sym_known_hosts_command_token1] = ACTIONS(3352), - [aux_sym_local_command_token1] = ACTIONS(3352), - [aux_sym_local_forward_token1] = ACTIONS(3352), - [aux_sym_log_level_token1] = ACTIONS(3352), - [aux_sym_log_verbose_token1] = ACTIONS(3352), - [aux_sym_macs_token1] = ACTIONS(3352), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3352), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3352), - [aux_sym_password_authentication_token1] = ACTIONS(3352), - [aux_sym_permit_local_command_token1] = ACTIONS(3352), - [aux_sym_permit_remote_open_token1] = ACTIONS(3352), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3352), - [aux_sym_port_token1] = ACTIONS(3352), - [aux_sym_preferred_authentications_token1] = ACTIONS(3352), - [aux_sym_protocol_token1] = ACTIONS(3352), - [aux_sym_proxy_command_token1] = ACTIONS(3352), - [aux_sym_proxy_jump_token1] = ACTIONS(3352), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3352), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3352), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3352), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3352), - [aux_sym_rekey_limit_token1] = ACTIONS(3352), - [aux_sym_remote_command_token1] = ACTIONS(3352), - [aux_sym_remote_forward_token1] = ACTIONS(3352), - [aux_sym_request_tty_token1] = ACTIONS(3352), - [aux_sym_required_rsa_size_token1] = ACTIONS(3352), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3352), - [aux_sym_security_key_provider_token1] = ACTIONS(3352), - [aux_sym_send_env_token1] = ACTIONS(3352), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3352), - [aux_sym_server_alive_interval_token1] = ACTIONS(3352), - [aux_sym_session_type_token1] = ACTIONS(3352), - [aux_sym_set_env_token1] = ACTIONS(3352), - [aux_sym_stdin_null_token1] = ACTIONS(3352), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3352), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3352), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3352), - [aux_sym_syslog_facility_token1] = ACTIONS(3352), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3352), - [aux_sym_keep_alive_token1] = ACTIONS(3352), - [aux_sym_tag_token1] = ACTIONS(3352), - [aux_sym_tunnel_token1] = ACTIONS(3354), - [aux_sym_tunnel_device_token1] = ACTIONS(3352), - [aux_sym_update_host_keys_token1] = ACTIONS(3352), - [aux_sym_use_keychain_token1] = ACTIONS(3352), - [aux_sym_use_roaming_token1] = ACTIONS(3352), - [aux_sym_user_token1] = ACTIONS(3354), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3352), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3352), - [aux_sym_visual_host_key_token1] = ACTIONS(3352), - [aux_sym_xauth_location_token1] = ACTIONS(3352), + [ts_builtin_sym_end] = ACTIONS(1277), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1279), + [aux_sym_match_token1] = ACTIONS(1277), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1277), + [aux_sym_address_family_token1] = ACTIONS(1277), + [aux_sym_batch_mode_token1] = ACTIONS(1277), + [aux_sym_bind_address_token1] = ACTIONS(1277), + [aux_sym_bind_interface_token1] = ACTIONS(1277), + [aux_sym_canonical_domains_token1] = ACTIONS(1277), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1277), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1277), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1277), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1277), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1277), + [aux_sym_certificate_file_token1] = ACTIONS(1277), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1277), + [aux_sym_channel_timeout_token1] = ACTIONS(1277), + [aux_sym_check_host_ip_token1] = ACTIONS(1277), + [aux_sym_ciphers_token1] = ACTIONS(1277), + [aux_sym_cipher_token1] = ACTIONS(1279), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1277), + [aux_sym_compression_token1] = ACTIONS(1277), + [aux_sym_connection_attempts_token1] = ACTIONS(1277), + [aux_sym_connect_timeout_token1] = ACTIONS(1277), + [aux_sym_control_master_token1] = ACTIONS(1277), + [aux_sym_control_path_token1] = ACTIONS(1277), + [aux_sym_control_persist_token1] = ACTIONS(1277), + [aux_sym_dynamic_forward_token1] = ACTIONS(1277), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1277), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1277), + [aux_sym_escape_char_token1] = ACTIONS(1277), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1277), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1277), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1277), + [aux_sym_forward_agent_token1] = ACTIONS(1277), + [aux_sym_forward_x11_token1] = ACTIONS(1279), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1277), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1277), + [aux_sym_gateway_ports_token1] = ACTIONS(1277), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1277), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1277), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1277), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1277), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1277), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1277), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1277), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1277), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1277), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1277), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1277), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1277), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1277), + [aux_sym_host_key_alias_token1] = ACTIONS(1277), + [aux_sym_hostname_token1] = ACTIONS(1277), + [aux_sym_identities_only_token1] = ACTIONS(1277), + [aux_sym_identity_agent_token1] = ACTIONS(1277), + [aux_sym_identity_file_token1] = ACTIONS(1277), + [aux_sym_ignore_unknown_token1] = ACTIONS(1277), + [aux_sym_include_token1] = ACTIONS(1277), + [aux_sym_ip_qos_token1] = ACTIONS(1277), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1277), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1277), + [aux_sym_kex_algorithms_token1] = ACTIONS(1277), + [aux_sym_known_hosts_command_token1] = ACTIONS(1277), + [aux_sym_local_command_token1] = ACTIONS(1277), + [aux_sym_local_forward_token1] = ACTIONS(1277), + [aux_sym_log_level_token1] = ACTIONS(1277), + [aux_sym_log_verbose_token1] = ACTIONS(1277), + [aux_sym_macs_token1] = ACTIONS(1277), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1277), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1277), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1277), + [aux_sym_password_authentication_token1] = ACTIONS(1277), + [aux_sym_permit_local_command_token1] = ACTIONS(1277), + [aux_sym_permit_remote_open_token1] = ACTIONS(1277), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1277), + [aux_sym_port_token1] = ACTIONS(1277), + [aux_sym_preferred_authentications_token1] = ACTIONS(1277), + [aux_sym_protocol_token1] = ACTIONS(1277), + [aux_sym_proxy_command_token1] = ACTIONS(1277), + [aux_sym_proxy_jump_token1] = ACTIONS(1277), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1277), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1277), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1277), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1277), + [aux_sym_rekey_limit_token1] = ACTIONS(1277), + [aux_sym_remote_command_token1] = ACTIONS(1277), + [aux_sym_remote_forward_token1] = ACTIONS(1277), + [aux_sym_request_tty_token1] = ACTIONS(1277), + [aux_sym_required_rsa_size_token1] = ACTIONS(1277), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1277), + [aux_sym_security_key_provider_token1] = ACTIONS(1277), + [aux_sym_send_env_token1] = ACTIONS(1277), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1277), + [aux_sym_server_alive_interval_token1] = ACTIONS(1277), + [aux_sym_session_type_token1] = ACTIONS(1277), + [aux_sym_set_env_token1] = ACTIONS(1277), + [aux_sym_stdin_null_token1] = ACTIONS(1277), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1277), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1277), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1277), + [aux_sym_syslog_facility_token1] = ACTIONS(1277), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1277), + [aux_sym_keep_alive_token1] = ACTIONS(1277), + [aux_sym_tag_token1] = ACTIONS(1277), + [aux_sym_tunnel_token1] = ACTIONS(1279), + [aux_sym_tunnel_device_token1] = ACTIONS(1277), + [aux_sym_update_host_keys_token1] = ACTIONS(1277), + [aux_sym_use_keychain_token1] = ACTIONS(1277), + [aux_sym_use_roaming_token1] = ACTIONS(1277), + [aux_sym_user_token1] = ACTIONS(1279), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1277), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1277), + [aux_sym_visual_host_key_token1] = ACTIONS(1277), + [aux_sym_xauth_location_token1] = ACTIONS(1277), }, [571] = { - [ts_builtin_sym_end] = ACTIONS(3356), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3358), - [aux_sym_match_token1] = ACTIONS(3356), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3356), - [aux_sym_address_family_token1] = ACTIONS(3356), - [aux_sym_batch_mode_token1] = ACTIONS(3356), - [aux_sym_bind_address_token1] = ACTIONS(3356), - [aux_sym_bind_interface_token1] = ACTIONS(3356), - [aux_sym_canonical_domains_token1] = ACTIONS(3356), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3356), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3356), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3356), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3356), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3356), - [aux_sym_certificate_file_token1] = ACTIONS(3356), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3356), - [aux_sym_channel_timeout_token1] = ACTIONS(3356), - [aux_sym_check_host_ip_token1] = ACTIONS(3356), - [aux_sym_ciphers_token1] = ACTIONS(3356), - [aux_sym_cipher_token1] = ACTIONS(3358), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3356), - [aux_sym_compression_token1] = ACTIONS(3356), - [aux_sym_connection_attempts_token1] = ACTIONS(3356), - [aux_sym_connect_timeout_token1] = ACTIONS(3356), - [aux_sym_control_master_token1] = ACTIONS(3356), - [aux_sym_control_path_token1] = ACTIONS(3356), - [aux_sym_control_persist_token1] = ACTIONS(3356), - [aux_sym_dynamic_forward_token1] = ACTIONS(3356), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3356), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3356), - [aux_sym_escape_char_token1] = ACTIONS(3356), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3356), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3356), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3356), - [aux_sym_forward_agent_token1] = ACTIONS(3356), - [aux_sym_forward_x11_token1] = ACTIONS(3358), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3356), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3356), - [aux_sym_gateway_ports_token1] = ACTIONS(3356), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3356), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3356), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3356), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3356), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3356), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3356), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3356), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3356), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3356), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3356), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3356), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3356), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3356), - [aux_sym_host_key_alias_token1] = ACTIONS(3356), - [aux_sym_hostname_token1] = ACTIONS(3356), - [aux_sym_identities_only_token1] = ACTIONS(3356), - [aux_sym_identity_agent_token1] = ACTIONS(3356), - [aux_sym_identity_file_token1] = ACTIONS(3356), - [aux_sym_ignore_unknown_token1] = ACTIONS(3356), - [aux_sym_include_token1] = ACTIONS(3356), - [aux_sym_ip_qos_token1] = ACTIONS(3356), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3356), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3356), - [aux_sym_kex_algorithms_token1] = ACTIONS(3356), - [aux_sym_known_hosts_command_token1] = ACTIONS(3356), - [aux_sym_local_command_token1] = ACTIONS(3356), - [aux_sym_local_forward_token1] = ACTIONS(3356), - [aux_sym_log_level_token1] = ACTIONS(3356), - [aux_sym_log_verbose_token1] = ACTIONS(3356), - [aux_sym_macs_token1] = ACTIONS(3356), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3356), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3356), - [aux_sym_password_authentication_token1] = ACTIONS(3356), - [aux_sym_permit_local_command_token1] = ACTIONS(3356), - [aux_sym_permit_remote_open_token1] = ACTIONS(3356), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3356), - [aux_sym_port_token1] = ACTIONS(3356), - [aux_sym_preferred_authentications_token1] = ACTIONS(3356), - [aux_sym_protocol_token1] = ACTIONS(3356), - [aux_sym_proxy_command_token1] = ACTIONS(3356), - [aux_sym_proxy_jump_token1] = ACTIONS(3356), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3356), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3356), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3356), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3356), - [aux_sym_rekey_limit_token1] = ACTIONS(3356), - [aux_sym_remote_command_token1] = ACTIONS(3356), - [aux_sym_remote_forward_token1] = ACTIONS(3356), - [aux_sym_request_tty_token1] = ACTIONS(3356), - [aux_sym_required_rsa_size_token1] = ACTIONS(3356), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3356), - [aux_sym_security_key_provider_token1] = ACTIONS(3356), - [aux_sym_send_env_token1] = ACTIONS(3356), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3356), - [aux_sym_server_alive_interval_token1] = ACTIONS(3356), - [aux_sym_session_type_token1] = ACTIONS(3356), - [aux_sym_set_env_token1] = ACTIONS(3356), - [aux_sym_stdin_null_token1] = ACTIONS(3356), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3356), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3356), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3356), - [aux_sym_syslog_facility_token1] = ACTIONS(3356), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3356), - [aux_sym_keep_alive_token1] = ACTIONS(3356), - [aux_sym_tag_token1] = ACTIONS(3356), - [aux_sym_tunnel_token1] = ACTIONS(3358), - [aux_sym_tunnel_device_token1] = ACTIONS(3356), - [aux_sym_update_host_keys_token1] = ACTIONS(3356), - [aux_sym_use_keychain_token1] = ACTIONS(3356), - [aux_sym_use_roaming_token1] = ACTIONS(3356), - [aux_sym_user_token1] = ACTIONS(3358), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3356), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3356), - [aux_sym_visual_host_key_token1] = ACTIONS(3356), - [aux_sym_xauth_location_token1] = ACTIONS(3356), + [ts_builtin_sym_end] = ACTIONS(1049), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1051), + [aux_sym_match_token1] = ACTIONS(1049), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1049), + [aux_sym_address_family_token1] = ACTIONS(1049), + [aux_sym_batch_mode_token1] = ACTIONS(1049), + [aux_sym_bind_address_token1] = ACTIONS(1049), + [aux_sym_bind_interface_token1] = ACTIONS(1049), + [aux_sym_canonical_domains_token1] = ACTIONS(1049), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1049), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1049), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1049), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1049), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1049), + [aux_sym_certificate_file_token1] = ACTIONS(1049), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1049), + [aux_sym_channel_timeout_token1] = ACTIONS(1049), + [aux_sym_check_host_ip_token1] = ACTIONS(1049), + [aux_sym_ciphers_token1] = ACTIONS(1049), + [aux_sym_cipher_token1] = ACTIONS(1051), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1049), + [aux_sym_compression_token1] = ACTIONS(1049), + [aux_sym_connection_attempts_token1] = ACTIONS(1049), + [aux_sym_connect_timeout_token1] = ACTIONS(1049), + [aux_sym_control_master_token1] = ACTIONS(1049), + [aux_sym_control_path_token1] = ACTIONS(1049), + [aux_sym_control_persist_token1] = ACTIONS(1049), + [aux_sym_dynamic_forward_token1] = ACTIONS(1049), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1049), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1049), + [aux_sym_escape_char_token1] = ACTIONS(1049), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1049), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1049), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1049), + [aux_sym_forward_agent_token1] = ACTIONS(1049), + [aux_sym_forward_x11_token1] = ACTIONS(1051), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1049), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1049), + [aux_sym_gateway_ports_token1] = ACTIONS(1049), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1049), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1049), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1049), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1049), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1049), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1049), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1049), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1049), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1049), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1049), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1049), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1049), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1049), + [aux_sym_host_key_alias_token1] = ACTIONS(1049), + [aux_sym_hostname_token1] = ACTIONS(1049), + [aux_sym_identities_only_token1] = ACTIONS(1049), + [aux_sym_identity_agent_token1] = ACTIONS(1049), + [aux_sym_identity_file_token1] = ACTIONS(1049), + [aux_sym_ignore_unknown_token1] = ACTIONS(1049), + [aux_sym_include_token1] = ACTIONS(1049), + [aux_sym_ip_qos_token1] = ACTIONS(1049), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1049), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1049), + [aux_sym_kex_algorithms_token1] = ACTIONS(1049), + [aux_sym_known_hosts_command_token1] = ACTIONS(1049), + [aux_sym_local_command_token1] = ACTIONS(1049), + [aux_sym_local_forward_token1] = ACTIONS(1049), + [aux_sym_log_level_token1] = ACTIONS(1049), + [aux_sym_log_verbose_token1] = ACTIONS(1049), + [aux_sym_macs_token1] = ACTIONS(1049), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1049), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1049), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1049), + [aux_sym_password_authentication_token1] = ACTIONS(1049), + [aux_sym_permit_local_command_token1] = ACTIONS(1049), + [aux_sym_permit_remote_open_token1] = ACTIONS(1049), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1049), + [aux_sym_port_token1] = ACTIONS(1049), + [aux_sym_preferred_authentications_token1] = ACTIONS(1049), + [aux_sym_protocol_token1] = ACTIONS(1049), + [aux_sym_proxy_command_token1] = ACTIONS(1049), + [aux_sym_proxy_jump_token1] = ACTIONS(1049), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1049), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1049), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1049), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1049), + [aux_sym_rekey_limit_token1] = ACTIONS(1049), + [aux_sym_remote_command_token1] = ACTIONS(1049), + [aux_sym_remote_forward_token1] = ACTIONS(1049), + [aux_sym_request_tty_token1] = ACTIONS(1049), + [aux_sym_required_rsa_size_token1] = ACTIONS(1049), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1049), + [aux_sym_security_key_provider_token1] = ACTIONS(1049), + [aux_sym_send_env_token1] = ACTIONS(1049), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1049), + [aux_sym_server_alive_interval_token1] = ACTIONS(1049), + [aux_sym_session_type_token1] = ACTIONS(1049), + [aux_sym_set_env_token1] = ACTIONS(1049), + [aux_sym_stdin_null_token1] = ACTIONS(1049), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1049), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1049), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1049), + [aux_sym_syslog_facility_token1] = ACTIONS(1049), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1049), + [aux_sym_keep_alive_token1] = ACTIONS(1049), + [aux_sym_tag_token1] = ACTIONS(1049), + [aux_sym_tunnel_token1] = ACTIONS(1051), + [aux_sym_tunnel_device_token1] = ACTIONS(1049), + [aux_sym_update_host_keys_token1] = ACTIONS(1049), + [aux_sym_use_keychain_token1] = ACTIONS(1049), + [aux_sym_use_roaming_token1] = ACTIONS(1049), + [aux_sym_user_token1] = ACTIONS(1051), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1049), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1049), + [aux_sym_visual_host_key_token1] = ACTIONS(1049), + [aux_sym_xauth_location_token1] = ACTIONS(1049), }, [572] = { - [ts_builtin_sym_end] = ACTIONS(3360), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3362), - [aux_sym_match_token1] = ACTIONS(3360), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3360), - [aux_sym_address_family_token1] = ACTIONS(3360), - [aux_sym_batch_mode_token1] = ACTIONS(3360), - [aux_sym_bind_address_token1] = ACTIONS(3360), - [aux_sym_bind_interface_token1] = ACTIONS(3360), - [aux_sym_canonical_domains_token1] = ACTIONS(3360), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3360), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3360), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3360), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3360), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3360), - [aux_sym_certificate_file_token1] = ACTIONS(3360), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3360), - [aux_sym_channel_timeout_token1] = ACTIONS(3360), - [aux_sym_check_host_ip_token1] = ACTIONS(3360), - [aux_sym_ciphers_token1] = ACTIONS(3360), - [aux_sym_cipher_token1] = ACTIONS(3362), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3360), - [aux_sym_compression_token1] = ACTIONS(3360), - [aux_sym_connection_attempts_token1] = ACTIONS(3360), - [aux_sym_connect_timeout_token1] = ACTIONS(3360), - [aux_sym_control_master_token1] = ACTIONS(3360), - [aux_sym_control_path_token1] = ACTIONS(3360), - [aux_sym_control_persist_token1] = ACTIONS(3360), - [aux_sym_dynamic_forward_token1] = ACTIONS(3360), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3360), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3360), - [aux_sym_escape_char_token1] = ACTIONS(3360), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3360), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3360), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3360), - [aux_sym_forward_agent_token1] = ACTIONS(3360), - [aux_sym_forward_x11_token1] = ACTIONS(3362), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3360), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3360), - [aux_sym_gateway_ports_token1] = ACTIONS(3360), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3360), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3360), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3360), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3360), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3360), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3360), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3360), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3360), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3360), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3360), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3360), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3360), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3360), - [aux_sym_host_key_alias_token1] = ACTIONS(3360), - [aux_sym_hostname_token1] = ACTIONS(3360), - [aux_sym_identities_only_token1] = ACTIONS(3360), - [aux_sym_identity_agent_token1] = ACTIONS(3360), - [aux_sym_identity_file_token1] = ACTIONS(3360), - [aux_sym_ignore_unknown_token1] = ACTIONS(3360), - [aux_sym_include_token1] = ACTIONS(3360), - [aux_sym_ip_qos_token1] = ACTIONS(3360), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3360), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3360), - [aux_sym_kex_algorithms_token1] = ACTIONS(3360), - [aux_sym_known_hosts_command_token1] = ACTIONS(3360), - [aux_sym_local_command_token1] = ACTIONS(3360), - [aux_sym_local_forward_token1] = ACTIONS(3360), - [aux_sym_log_level_token1] = ACTIONS(3360), - [aux_sym_log_verbose_token1] = ACTIONS(3360), - [aux_sym_macs_token1] = ACTIONS(3360), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3360), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3360), - [aux_sym_password_authentication_token1] = ACTIONS(3360), - [aux_sym_permit_local_command_token1] = ACTIONS(3360), - [aux_sym_permit_remote_open_token1] = ACTIONS(3360), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3360), - [aux_sym_port_token1] = ACTIONS(3360), - [aux_sym_preferred_authentications_token1] = ACTIONS(3360), - [aux_sym_protocol_token1] = ACTIONS(3360), - [aux_sym_proxy_command_token1] = ACTIONS(3360), - [aux_sym_proxy_jump_token1] = ACTIONS(3360), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3360), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3360), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3360), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3360), - [aux_sym_rekey_limit_token1] = ACTIONS(3360), - [aux_sym_remote_command_token1] = ACTIONS(3360), - [aux_sym_remote_forward_token1] = ACTIONS(3360), - [aux_sym_request_tty_token1] = ACTIONS(3360), - [aux_sym_required_rsa_size_token1] = ACTIONS(3360), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3360), - [aux_sym_security_key_provider_token1] = ACTIONS(3360), - [aux_sym_send_env_token1] = ACTIONS(3360), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3360), - [aux_sym_server_alive_interval_token1] = ACTIONS(3360), - [aux_sym_session_type_token1] = ACTIONS(3360), - [aux_sym_set_env_token1] = ACTIONS(3360), - [aux_sym_stdin_null_token1] = ACTIONS(3360), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3360), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3360), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3360), - [aux_sym_syslog_facility_token1] = ACTIONS(3360), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3360), - [aux_sym_keep_alive_token1] = ACTIONS(3360), - [aux_sym_tag_token1] = ACTIONS(3360), - [aux_sym_tunnel_token1] = ACTIONS(3362), - [aux_sym_tunnel_device_token1] = ACTIONS(3360), - [aux_sym_update_host_keys_token1] = ACTIONS(3360), - [aux_sym_use_keychain_token1] = ACTIONS(3360), - [aux_sym_use_roaming_token1] = ACTIONS(3360), - [aux_sym_user_token1] = ACTIONS(3362), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3360), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3360), - [aux_sym_visual_host_key_token1] = ACTIONS(3360), - [aux_sym_xauth_location_token1] = ACTIONS(3360), + [ts_builtin_sym_end] = ACTIONS(1595), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1597), + [aux_sym_match_token1] = ACTIONS(1595), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1595), + [aux_sym_address_family_token1] = ACTIONS(1595), + [aux_sym_batch_mode_token1] = ACTIONS(1595), + [aux_sym_bind_address_token1] = ACTIONS(1595), + [aux_sym_bind_interface_token1] = ACTIONS(1595), + [aux_sym_canonical_domains_token1] = ACTIONS(1595), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1595), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1595), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1595), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1595), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1595), + [aux_sym_certificate_file_token1] = ACTIONS(1595), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1595), + [aux_sym_channel_timeout_token1] = ACTIONS(1595), + [aux_sym_check_host_ip_token1] = ACTIONS(1595), + [aux_sym_ciphers_token1] = ACTIONS(1595), + [aux_sym_cipher_token1] = ACTIONS(1597), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1595), + [aux_sym_compression_token1] = ACTIONS(1595), + [aux_sym_connection_attempts_token1] = ACTIONS(1595), + [aux_sym_connect_timeout_token1] = ACTIONS(1595), + [aux_sym_control_master_token1] = ACTIONS(1595), + [aux_sym_control_path_token1] = ACTIONS(1595), + [aux_sym_control_persist_token1] = ACTIONS(1595), + [aux_sym_dynamic_forward_token1] = ACTIONS(1595), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1595), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1595), + [aux_sym_escape_char_token1] = ACTIONS(1595), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1595), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1595), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1595), + [aux_sym_forward_agent_token1] = ACTIONS(1595), + [aux_sym_forward_x11_token1] = ACTIONS(1597), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1595), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1595), + [aux_sym_gateway_ports_token1] = ACTIONS(1595), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1595), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1595), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1595), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1595), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1595), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1595), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1595), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1595), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1595), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1595), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1595), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1595), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1595), + [aux_sym_host_key_alias_token1] = ACTIONS(1595), + [aux_sym_hostname_token1] = ACTIONS(1595), + [aux_sym_identities_only_token1] = ACTIONS(1595), + [aux_sym_identity_agent_token1] = ACTIONS(1595), + [aux_sym_identity_file_token1] = ACTIONS(1595), + [aux_sym_ignore_unknown_token1] = ACTIONS(1595), + [aux_sym_include_token1] = ACTIONS(1595), + [aux_sym_ip_qos_token1] = ACTIONS(1595), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1595), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1595), + [aux_sym_kex_algorithms_token1] = ACTIONS(1595), + [aux_sym_known_hosts_command_token1] = ACTIONS(1595), + [aux_sym_local_command_token1] = ACTIONS(1595), + [aux_sym_local_forward_token1] = ACTIONS(1595), + [aux_sym_log_level_token1] = ACTIONS(1595), + [aux_sym_log_verbose_token1] = ACTIONS(1595), + [aux_sym_macs_token1] = ACTIONS(1595), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1595), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1595), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1595), + [aux_sym_password_authentication_token1] = ACTIONS(1595), + [aux_sym_permit_local_command_token1] = ACTIONS(1595), + [aux_sym_permit_remote_open_token1] = ACTIONS(1595), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1595), + [aux_sym_port_token1] = ACTIONS(1595), + [aux_sym_preferred_authentications_token1] = ACTIONS(1595), + [aux_sym_protocol_token1] = ACTIONS(1595), + [aux_sym_proxy_command_token1] = ACTIONS(1595), + [aux_sym_proxy_jump_token1] = ACTIONS(1595), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1595), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1595), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1595), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1595), + [aux_sym_rekey_limit_token1] = ACTIONS(1595), + [aux_sym_remote_command_token1] = ACTIONS(1595), + [aux_sym_remote_forward_token1] = ACTIONS(1595), + [aux_sym_request_tty_token1] = ACTIONS(1595), + [aux_sym_required_rsa_size_token1] = ACTIONS(1595), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1595), + [aux_sym_security_key_provider_token1] = ACTIONS(1595), + [aux_sym_send_env_token1] = ACTIONS(1595), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1595), + [aux_sym_server_alive_interval_token1] = ACTIONS(1595), + [aux_sym_session_type_token1] = ACTIONS(1595), + [aux_sym_set_env_token1] = ACTIONS(1595), + [aux_sym_stdin_null_token1] = ACTIONS(1595), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1595), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1595), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1595), + [aux_sym_syslog_facility_token1] = ACTIONS(1595), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1595), + [aux_sym_keep_alive_token1] = ACTIONS(1595), + [aux_sym_tag_token1] = ACTIONS(1595), + [aux_sym_tunnel_token1] = ACTIONS(1597), + [aux_sym_tunnel_device_token1] = ACTIONS(1595), + [aux_sym_update_host_keys_token1] = ACTIONS(1595), + [aux_sym_use_keychain_token1] = ACTIONS(1595), + [aux_sym_use_roaming_token1] = ACTIONS(1595), + [aux_sym_user_token1] = ACTIONS(1597), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1595), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1595), + [aux_sym_visual_host_key_token1] = ACTIONS(1595), + [aux_sym_xauth_location_token1] = ACTIONS(1595), }, [573] = { - [ts_builtin_sym_end] = ACTIONS(1224), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1226), - [aux_sym_match_token1] = ACTIONS(1224), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1224), - [aux_sym_address_family_token1] = ACTIONS(1224), - [aux_sym_batch_mode_token1] = ACTIONS(1224), - [aux_sym_bind_address_token1] = ACTIONS(1224), - [aux_sym_bind_interface_token1] = ACTIONS(1224), - [aux_sym_canonical_domains_token1] = ACTIONS(1224), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1224), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1224), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1224), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1224), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1224), - [aux_sym_certificate_file_token1] = ACTIONS(1224), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1224), - [aux_sym_channel_timeout_token1] = ACTIONS(1224), - [aux_sym_check_host_ip_token1] = ACTIONS(1224), - [aux_sym_ciphers_token1] = ACTIONS(1224), - [aux_sym_cipher_token1] = ACTIONS(1226), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1224), - [aux_sym_compression_token1] = ACTIONS(1224), - [aux_sym_connection_attempts_token1] = ACTIONS(1224), - [aux_sym_connect_timeout_token1] = ACTIONS(1224), - [aux_sym_control_master_token1] = ACTIONS(1224), - [aux_sym_control_path_token1] = ACTIONS(1224), - [aux_sym_control_persist_token1] = ACTIONS(1224), - [aux_sym_dynamic_forward_token1] = ACTIONS(1224), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1224), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1224), - [aux_sym_escape_char_token1] = ACTIONS(1224), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1224), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1224), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1224), - [aux_sym_forward_agent_token1] = ACTIONS(1224), - [aux_sym_forward_x11_token1] = ACTIONS(1226), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1224), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1224), - [aux_sym_gateway_ports_token1] = ACTIONS(1224), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1224), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1224), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1224), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1224), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1224), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1224), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1224), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1224), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1224), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1224), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1224), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1224), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1224), - [aux_sym_host_key_alias_token1] = ACTIONS(1224), - [aux_sym_hostname_token1] = ACTIONS(1224), - [aux_sym_identities_only_token1] = ACTIONS(1224), - [aux_sym_identity_agent_token1] = ACTIONS(1224), - [aux_sym_identity_file_token1] = ACTIONS(1224), - [aux_sym_ignore_unknown_token1] = ACTIONS(1224), - [aux_sym_include_token1] = ACTIONS(1224), - [aux_sym_ip_qos_token1] = ACTIONS(1224), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1224), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1224), - [aux_sym_kex_algorithms_token1] = ACTIONS(1224), - [aux_sym_known_hosts_command_token1] = ACTIONS(1224), - [aux_sym_local_command_token1] = ACTIONS(1224), - [aux_sym_local_forward_token1] = ACTIONS(1224), - [aux_sym_log_level_token1] = ACTIONS(1224), - [aux_sym_log_verbose_token1] = ACTIONS(1224), - [aux_sym_macs_token1] = ACTIONS(1224), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1224), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1224), - [aux_sym_password_authentication_token1] = ACTIONS(1224), - [aux_sym_permit_local_command_token1] = ACTIONS(1224), - [aux_sym_permit_remote_open_token1] = ACTIONS(1224), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1224), - [aux_sym_port_token1] = ACTIONS(1224), - [aux_sym_preferred_authentications_token1] = ACTIONS(1224), - [aux_sym_protocol_token1] = ACTIONS(1224), - [aux_sym_proxy_command_token1] = ACTIONS(1224), - [aux_sym_proxy_jump_token1] = ACTIONS(1224), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1224), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1224), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1224), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1224), - [aux_sym_rekey_limit_token1] = ACTIONS(1224), - [aux_sym_remote_command_token1] = ACTIONS(1224), - [aux_sym_remote_forward_token1] = ACTIONS(1224), - [aux_sym_request_tty_token1] = ACTIONS(1224), - [aux_sym_required_rsa_size_token1] = ACTIONS(1224), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1224), - [aux_sym_security_key_provider_token1] = ACTIONS(1224), - [aux_sym_send_env_token1] = ACTIONS(1224), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1224), - [aux_sym_server_alive_interval_token1] = ACTIONS(1224), - [aux_sym_session_type_token1] = ACTIONS(1224), - [aux_sym_set_env_token1] = ACTIONS(1224), - [aux_sym_stdin_null_token1] = ACTIONS(1224), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1224), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1224), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1224), - [aux_sym_syslog_facility_token1] = ACTIONS(1224), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1224), - [aux_sym_keep_alive_token1] = ACTIONS(1224), - [aux_sym_tag_token1] = ACTIONS(1224), - [aux_sym_tunnel_token1] = ACTIONS(1226), - [aux_sym_tunnel_device_token1] = ACTIONS(1224), - [aux_sym_update_host_keys_token1] = ACTIONS(1224), - [aux_sym_use_keychain_token1] = ACTIONS(1224), - [aux_sym_use_roaming_token1] = ACTIONS(1224), - [aux_sym_user_token1] = ACTIONS(1226), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1224), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1224), - [aux_sym_visual_host_key_token1] = ACTIONS(1224), - [aux_sym_xauth_location_token1] = ACTIONS(1224), + [ts_builtin_sym_end] = ACTIONS(3363), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3365), + [aux_sym_match_token1] = ACTIONS(3363), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3363), + [aux_sym_address_family_token1] = ACTIONS(3363), + [aux_sym_batch_mode_token1] = ACTIONS(3363), + [aux_sym_bind_address_token1] = ACTIONS(3363), + [aux_sym_bind_interface_token1] = ACTIONS(3363), + [aux_sym_canonical_domains_token1] = ACTIONS(3363), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3363), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3363), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3363), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3363), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3363), + [aux_sym_certificate_file_token1] = ACTIONS(3363), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3363), + [aux_sym_channel_timeout_token1] = ACTIONS(3363), + [aux_sym_check_host_ip_token1] = ACTIONS(3363), + [aux_sym_ciphers_token1] = ACTIONS(3363), + [aux_sym_cipher_token1] = ACTIONS(3365), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3363), + [aux_sym_compression_token1] = ACTIONS(3363), + [aux_sym_connection_attempts_token1] = ACTIONS(3363), + [aux_sym_connect_timeout_token1] = ACTIONS(3363), + [aux_sym_control_master_token1] = ACTIONS(3363), + [aux_sym_control_path_token1] = ACTIONS(3363), + [aux_sym_control_persist_token1] = ACTIONS(3363), + [aux_sym_dynamic_forward_token1] = ACTIONS(3363), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3363), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3363), + [aux_sym_escape_char_token1] = ACTIONS(3363), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3363), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3363), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3363), + [aux_sym_forward_agent_token1] = ACTIONS(3363), + [aux_sym_forward_x11_token1] = ACTIONS(3365), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3363), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3363), + [aux_sym_gateway_ports_token1] = ACTIONS(3363), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3363), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3363), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3363), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3363), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3363), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3363), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3363), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3363), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3363), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3363), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3363), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3363), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3363), + [aux_sym_host_key_alias_token1] = ACTIONS(3363), + [aux_sym_hostname_token1] = ACTIONS(3363), + [aux_sym_identities_only_token1] = ACTIONS(3363), + [aux_sym_identity_agent_token1] = ACTIONS(3363), + [aux_sym_identity_file_token1] = ACTIONS(3363), + [aux_sym_ignore_unknown_token1] = ACTIONS(3363), + [aux_sym_include_token1] = ACTIONS(3363), + [aux_sym_ip_qos_token1] = ACTIONS(3363), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3363), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3363), + [aux_sym_kex_algorithms_token1] = ACTIONS(3363), + [aux_sym_known_hosts_command_token1] = ACTIONS(3363), + [aux_sym_local_command_token1] = ACTIONS(3363), + [aux_sym_local_forward_token1] = ACTIONS(3363), + [aux_sym_log_level_token1] = ACTIONS(3363), + [aux_sym_log_verbose_token1] = ACTIONS(3363), + [aux_sym_macs_token1] = ACTIONS(3363), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3363), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3363), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3363), + [aux_sym_password_authentication_token1] = ACTIONS(3363), + [aux_sym_permit_local_command_token1] = ACTIONS(3363), + [aux_sym_permit_remote_open_token1] = ACTIONS(3363), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3363), + [aux_sym_port_token1] = ACTIONS(3363), + [aux_sym_preferred_authentications_token1] = ACTIONS(3363), + [aux_sym_protocol_token1] = ACTIONS(3363), + [aux_sym_proxy_command_token1] = ACTIONS(3363), + [aux_sym_proxy_jump_token1] = ACTIONS(3363), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3363), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3363), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3363), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3363), + [aux_sym_rekey_limit_token1] = ACTIONS(3363), + [aux_sym_remote_command_token1] = ACTIONS(3363), + [aux_sym_remote_forward_token1] = ACTIONS(3363), + [aux_sym_request_tty_token1] = ACTIONS(3363), + [aux_sym_required_rsa_size_token1] = ACTIONS(3363), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3363), + [aux_sym_security_key_provider_token1] = ACTIONS(3363), + [aux_sym_send_env_token1] = ACTIONS(3363), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3363), + [aux_sym_server_alive_interval_token1] = ACTIONS(3363), + [aux_sym_session_type_token1] = ACTIONS(3363), + [aux_sym_set_env_token1] = ACTIONS(3363), + [aux_sym_stdin_null_token1] = ACTIONS(3363), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3363), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3363), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3363), + [aux_sym_syslog_facility_token1] = ACTIONS(3363), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3363), + [aux_sym_keep_alive_token1] = ACTIONS(3363), + [aux_sym_tag_token1] = ACTIONS(3363), + [aux_sym_tunnel_token1] = ACTIONS(3365), + [aux_sym_tunnel_device_token1] = ACTIONS(3363), + [aux_sym_update_host_keys_token1] = ACTIONS(3363), + [aux_sym_use_keychain_token1] = ACTIONS(3363), + [aux_sym_use_roaming_token1] = ACTIONS(3363), + [aux_sym_user_token1] = ACTIONS(3365), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3363), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3363), + [aux_sym_visual_host_key_token1] = ACTIONS(3363), + [aux_sym_xauth_location_token1] = ACTIONS(3363), }, [574] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1496), - [aux_sym_match_token1] = ACTIONS(1494), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1494), - [aux_sym_address_family_token1] = ACTIONS(1494), - [aux_sym_batch_mode_token1] = ACTIONS(1494), - [aux_sym_bind_address_token1] = ACTIONS(1494), - [aux_sym_bind_interface_token1] = ACTIONS(1494), - [aux_sym_canonical_domains_token1] = ACTIONS(1494), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1494), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1494), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1494), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1494), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1494), - [aux_sym_certificate_file_token1] = ACTIONS(1494), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1494), - [aux_sym_channel_timeout_token1] = ACTIONS(1494), - [aux_sym_check_host_ip_token1] = ACTIONS(1494), - [aux_sym_ciphers_token1] = ACTIONS(1494), - [aux_sym_cipher_token1] = ACTIONS(1496), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1494), - [aux_sym_compression_token1] = ACTIONS(1494), - [aux_sym_connection_attempts_token1] = ACTIONS(1494), - [aux_sym_connect_timeout_token1] = ACTIONS(1494), - [aux_sym_control_master_token1] = ACTIONS(1494), - [aux_sym_control_path_token1] = ACTIONS(1494), - [aux_sym_control_persist_token1] = ACTIONS(1494), - [aux_sym_dynamic_forward_token1] = ACTIONS(1494), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1494), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1494), - [aux_sym_escape_char_token1] = ACTIONS(1494), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1494), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1494), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1494), - [aux_sym_forward_agent_token1] = ACTIONS(1494), - [aux_sym_forward_x11_token1] = ACTIONS(1496), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1494), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1494), - [aux_sym_gateway_ports_token1] = ACTIONS(1494), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1494), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1494), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1494), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1494), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1494), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1494), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1494), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1494), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1494), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1494), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1494), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1494), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1494), - [aux_sym_host_key_alias_token1] = ACTIONS(1494), - [aux_sym_hostname_token1] = ACTIONS(1494), - [aux_sym_identities_only_token1] = ACTIONS(1494), - [aux_sym_identity_agent_token1] = ACTIONS(1494), - [aux_sym_identity_file_token1] = ACTIONS(1494), - [aux_sym_ignore_unknown_token1] = ACTIONS(1494), - [aux_sym_include_token1] = ACTIONS(1494), - [aux_sym_ip_qos_token1] = ACTIONS(1494), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1494), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1494), - [aux_sym_kex_algorithms_token1] = ACTIONS(1494), - [aux_sym_known_hosts_command_token1] = ACTIONS(1494), - [aux_sym_local_command_token1] = ACTIONS(1494), - [aux_sym_local_forward_token1] = ACTIONS(1494), - [aux_sym_log_level_token1] = ACTIONS(1494), - [aux_sym_log_verbose_token1] = ACTIONS(1494), - [aux_sym_macs_token1] = ACTIONS(1494), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1494), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1494), - [aux_sym_password_authentication_token1] = ACTIONS(1494), - [aux_sym_permit_local_command_token1] = ACTIONS(1494), - [aux_sym_permit_remote_open_token1] = ACTIONS(1494), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1494), - [aux_sym_port_token1] = ACTIONS(1494), - [aux_sym_preferred_authentications_token1] = ACTIONS(1494), - [aux_sym_protocol_token1] = ACTIONS(1494), - [aux_sym_proxy_command_token1] = ACTIONS(1494), - [aux_sym_proxy_jump_token1] = ACTIONS(1494), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1494), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1494), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1494), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1494), - [aux_sym_rekey_limit_token1] = ACTIONS(1494), - [aux_sym_remote_command_token1] = ACTIONS(1494), - [aux_sym_remote_forward_token1] = ACTIONS(1494), - [aux_sym_request_tty_token1] = ACTIONS(1494), - [aux_sym_required_rsa_size_token1] = ACTIONS(1494), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1494), - [aux_sym_security_key_provider_token1] = ACTIONS(1494), - [aux_sym_send_env_token1] = ACTIONS(1494), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1494), - [aux_sym_server_alive_interval_token1] = ACTIONS(1494), - [aux_sym_session_type_token1] = ACTIONS(1494), - [aux_sym_set_env_token1] = ACTIONS(1494), - [aux_sym_stdin_null_token1] = ACTIONS(1494), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1494), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1494), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1494), - [aux_sym_syslog_facility_token1] = ACTIONS(1494), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1494), - [aux_sym_keep_alive_token1] = ACTIONS(1494), - [aux_sym_tag_token1] = ACTIONS(1494), - [aux_sym_tunnel_token1] = ACTIONS(1496), - [aux_sym_tunnel_device_token1] = ACTIONS(1494), - [aux_sym_update_host_keys_token1] = ACTIONS(1494), - [aux_sym_use_keychain_token1] = ACTIONS(1494), - [aux_sym_use_roaming_token1] = ACTIONS(1494), - [aux_sym_user_token1] = ACTIONS(1496), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1494), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1494), - [aux_sym_visual_host_key_token1] = ACTIONS(1494), - [aux_sym_xauth_location_token1] = ACTIONS(1494), + [ts_builtin_sym_end] = ACTIONS(3367), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3369), + [aux_sym_match_token1] = ACTIONS(3367), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3367), + [aux_sym_address_family_token1] = ACTIONS(3367), + [aux_sym_batch_mode_token1] = ACTIONS(3367), + [aux_sym_bind_address_token1] = ACTIONS(3367), + [aux_sym_bind_interface_token1] = ACTIONS(3367), + [aux_sym_canonical_domains_token1] = ACTIONS(3367), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3367), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3367), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3367), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3367), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3367), + [aux_sym_certificate_file_token1] = ACTIONS(3367), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3367), + [aux_sym_channel_timeout_token1] = ACTIONS(3367), + [aux_sym_check_host_ip_token1] = ACTIONS(3367), + [aux_sym_ciphers_token1] = ACTIONS(3367), + [aux_sym_cipher_token1] = ACTIONS(3369), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3367), + [aux_sym_compression_token1] = ACTIONS(3367), + [aux_sym_connection_attempts_token1] = ACTIONS(3367), + [aux_sym_connect_timeout_token1] = ACTIONS(3367), + [aux_sym_control_master_token1] = ACTIONS(3367), + [aux_sym_control_path_token1] = ACTIONS(3367), + [aux_sym_control_persist_token1] = ACTIONS(3367), + [aux_sym_dynamic_forward_token1] = ACTIONS(3367), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3367), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3367), + [aux_sym_escape_char_token1] = ACTIONS(3367), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3367), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3367), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3367), + [aux_sym_forward_agent_token1] = ACTIONS(3367), + [aux_sym_forward_x11_token1] = ACTIONS(3369), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3367), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3367), + [aux_sym_gateway_ports_token1] = ACTIONS(3367), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3367), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3367), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3367), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3367), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3367), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3367), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3367), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3367), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3367), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3367), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3367), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3367), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3367), + [aux_sym_host_key_alias_token1] = ACTIONS(3367), + [aux_sym_hostname_token1] = ACTIONS(3367), + [aux_sym_identities_only_token1] = ACTIONS(3367), + [aux_sym_identity_agent_token1] = ACTIONS(3367), + [aux_sym_identity_file_token1] = ACTIONS(3367), + [aux_sym_ignore_unknown_token1] = ACTIONS(3367), + [aux_sym_include_token1] = ACTIONS(3367), + [aux_sym_ip_qos_token1] = ACTIONS(3367), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3367), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3367), + [aux_sym_kex_algorithms_token1] = ACTIONS(3367), + [aux_sym_known_hosts_command_token1] = ACTIONS(3367), + [aux_sym_local_command_token1] = ACTIONS(3367), + [aux_sym_local_forward_token1] = ACTIONS(3367), + [aux_sym_log_level_token1] = ACTIONS(3367), + [aux_sym_log_verbose_token1] = ACTIONS(3367), + [aux_sym_macs_token1] = ACTIONS(3367), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3367), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3367), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3367), + [aux_sym_password_authentication_token1] = ACTIONS(3367), + [aux_sym_permit_local_command_token1] = ACTIONS(3367), + [aux_sym_permit_remote_open_token1] = ACTIONS(3367), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3367), + [aux_sym_port_token1] = ACTIONS(3367), + [aux_sym_preferred_authentications_token1] = ACTIONS(3367), + [aux_sym_protocol_token1] = ACTIONS(3367), + [aux_sym_proxy_command_token1] = ACTIONS(3367), + [aux_sym_proxy_jump_token1] = ACTIONS(3367), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3367), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3367), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3367), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3367), + [aux_sym_rekey_limit_token1] = ACTIONS(3367), + [aux_sym_remote_command_token1] = ACTIONS(3367), + [aux_sym_remote_forward_token1] = ACTIONS(3367), + [aux_sym_request_tty_token1] = ACTIONS(3367), + [aux_sym_required_rsa_size_token1] = ACTIONS(3367), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3367), + [aux_sym_security_key_provider_token1] = ACTIONS(3367), + [aux_sym_send_env_token1] = ACTIONS(3367), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3367), + [aux_sym_server_alive_interval_token1] = ACTIONS(3367), + [aux_sym_session_type_token1] = ACTIONS(3367), + [aux_sym_set_env_token1] = ACTIONS(3367), + [aux_sym_stdin_null_token1] = ACTIONS(3367), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3367), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3367), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3367), + [aux_sym_syslog_facility_token1] = ACTIONS(3367), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3367), + [aux_sym_keep_alive_token1] = ACTIONS(3367), + [aux_sym_tag_token1] = ACTIONS(3367), + [aux_sym_tunnel_token1] = ACTIONS(3369), + [aux_sym_tunnel_device_token1] = ACTIONS(3367), + [aux_sym_update_host_keys_token1] = ACTIONS(3367), + [aux_sym_use_keychain_token1] = ACTIONS(3367), + [aux_sym_use_roaming_token1] = ACTIONS(3367), + [aux_sym_user_token1] = ACTIONS(3369), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3367), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3367), + [aux_sym_visual_host_key_token1] = ACTIONS(3367), + [aux_sym_xauth_location_token1] = ACTIONS(3367), }, [575] = { - [ts_builtin_sym_end] = ACTIONS(3364), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3366), - [aux_sym_match_token1] = ACTIONS(3364), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3364), - [aux_sym_address_family_token1] = ACTIONS(3364), - [aux_sym_batch_mode_token1] = ACTIONS(3364), - [aux_sym_bind_address_token1] = ACTIONS(3364), - [aux_sym_bind_interface_token1] = ACTIONS(3364), - [aux_sym_canonical_domains_token1] = ACTIONS(3364), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3364), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3364), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3364), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3364), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3364), - [aux_sym_certificate_file_token1] = ACTIONS(3364), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3364), - [aux_sym_channel_timeout_token1] = ACTIONS(3364), - [aux_sym_check_host_ip_token1] = ACTIONS(3364), - [aux_sym_ciphers_token1] = ACTIONS(3364), - [aux_sym_cipher_token1] = ACTIONS(3366), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3364), - [aux_sym_compression_token1] = ACTIONS(3364), - [aux_sym_connection_attempts_token1] = ACTIONS(3364), - [aux_sym_connect_timeout_token1] = ACTIONS(3364), - [aux_sym_control_master_token1] = ACTIONS(3364), - [aux_sym_control_path_token1] = ACTIONS(3364), - [aux_sym_control_persist_token1] = ACTIONS(3364), - [aux_sym_dynamic_forward_token1] = ACTIONS(3364), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3364), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3364), - [aux_sym_escape_char_token1] = ACTIONS(3364), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3364), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3364), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3364), - [aux_sym_forward_agent_token1] = ACTIONS(3364), - [aux_sym_forward_x11_token1] = ACTIONS(3366), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3364), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3364), - [aux_sym_gateway_ports_token1] = ACTIONS(3364), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3364), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3364), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3364), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3364), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3364), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3364), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3364), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3364), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3364), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3364), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3364), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3364), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3364), - [aux_sym_host_key_alias_token1] = ACTIONS(3364), - [aux_sym_hostname_token1] = ACTIONS(3364), - [aux_sym_identities_only_token1] = ACTIONS(3364), - [aux_sym_identity_agent_token1] = ACTIONS(3364), - [aux_sym_identity_file_token1] = ACTIONS(3364), - [aux_sym_ignore_unknown_token1] = ACTIONS(3364), - [aux_sym_include_token1] = ACTIONS(3364), - [aux_sym_ip_qos_token1] = ACTIONS(3364), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3364), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3364), - [aux_sym_kex_algorithms_token1] = ACTIONS(3364), - [aux_sym_known_hosts_command_token1] = ACTIONS(3364), - [aux_sym_local_command_token1] = ACTIONS(3364), - [aux_sym_local_forward_token1] = ACTIONS(3364), - [aux_sym_log_level_token1] = ACTIONS(3364), - [aux_sym_log_verbose_token1] = ACTIONS(3364), - [aux_sym_macs_token1] = ACTIONS(3364), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3364), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3364), - [aux_sym_password_authentication_token1] = ACTIONS(3364), - [aux_sym_permit_local_command_token1] = ACTIONS(3364), - [aux_sym_permit_remote_open_token1] = ACTIONS(3364), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3364), - [aux_sym_port_token1] = ACTIONS(3364), - [aux_sym_preferred_authentications_token1] = ACTIONS(3364), - [aux_sym_protocol_token1] = ACTIONS(3364), - [aux_sym_proxy_command_token1] = ACTIONS(3364), - [aux_sym_proxy_jump_token1] = ACTIONS(3364), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3364), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3364), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3364), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3364), - [aux_sym_rekey_limit_token1] = ACTIONS(3364), - [aux_sym_remote_command_token1] = ACTIONS(3364), - [aux_sym_remote_forward_token1] = ACTIONS(3364), - [aux_sym_request_tty_token1] = ACTIONS(3364), - [aux_sym_required_rsa_size_token1] = ACTIONS(3364), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3364), - [aux_sym_security_key_provider_token1] = ACTIONS(3364), - [aux_sym_send_env_token1] = ACTIONS(3364), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3364), - [aux_sym_server_alive_interval_token1] = ACTIONS(3364), - [aux_sym_session_type_token1] = ACTIONS(3364), - [aux_sym_set_env_token1] = ACTIONS(3364), - [aux_sym_stdin_null_token1] = ACTIONS(3364), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3364), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3364), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3364), - [aux_sym_syslog_facility_token1] = ACTIONS(3364), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3364), - [aux_sym_keep_alive_token1] = ACTIONS(3364), - [aux_sym_tag_token1] = ACTIONS(3364), - [aux_sym_tunnel_token1] = ACTIONS(3366), - [aux_sym_tunnel_device_token1] = ACTIONS(3364), - [aux_sym_update_host_keys_token1] = ACTIONS(3364), - [aux_sym_use_keychain_token1] = ACTIONS(3364), - [aux_sym_use_roaming_token1] = ACTIONS(3364), - [aux_sym_user_token1] = ACTIONS(3366), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3364), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3364), - [aux_sym_visual_host_key_token1] = ACTIONS(3364), - [aux_sym_xauth_location_token1] = ACTIONS(3364), + [ts_builtin_sym_end] = ACTIONS(3371), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3373), + [aux_sym_match_token1] = ACTIONS(3371), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3371), + [aux_sym_address_family_token1] = ACTIONS(3371), + [aux_sym_batch_mode_token1] = ACTIONS(3371), + [aux_sym_bind_address_token1] = ACTIONS(3371), + [aux_sym_bind_interface_token1] = ACTIONS(3371), + [aux_sym_canonical_domains_token1] = ACTIONS(3371), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3371), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3371), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3371), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3371), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3371), + [aux_sym_certificate_file_token1] = ACTIONS(3371), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3371), + [aux_sym_channel_timeout_token1] = ACTIONS(3371), + [aux_sym_check_host_ip_token1] = ACTIONS(3371), + [aux_sym_ciphers_token1] = ACTIONS(3371), + [aux_sym_cipher_token1] = ACTIONS(3373), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3371), + [aux_sym_compression_token1] = ACTIONS(3371), + [aux_sym_connection_attempts_token1] = ACTIONS(3371), + [aux_sym_connect_timeout_token1] = ACTIONS(3371), + [aux_sym_control_master_token1] = ACTIONS(3371), + [aux_sym_control_path_token1] = ACTIONS(3371), + [aux_sym_control_persist_token1] = ACTIONS(3371), + [aux_sym_dynamic_forward_token1] = ACTIONS(3371), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3371), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3371), + [aux_sym_escape_char_token1] = ACTIONS(3371), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3371), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3371), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3371), + [aux_sym_forward_agent_token1] = ACTIONS(3371), + [aux_sym_forward_x11_token1] = ACTIONS(3373), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3371), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3371), + [aux_sym_gateway_ports_token1] = ACTIONS(3371), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3371), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3371), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3371), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3371), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3371), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3371), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3371), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3371), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3371), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3371), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3371), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3371), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3371), + [aux_sym_host_key_alias_token1] = ACTIONS(3371), + [aux_sym_hostname_token1] = ACTIONS(3371), + [aux_sym_identities_only_token1] = ACTIONS(3371), + [aux_sym_identity_agent_token1] = ACTIONS(3371), + [aux_sym_identity_file_token1] = ACTIONS(3371), + [aux_sym_ignore_unknown_token1] = ACTIONS(3371), + [aux_sym_include_token1] = ACTIONS(3371), + [aux_sym_ip_qos_token1] = ACTIONS(3371), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3371), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3371), + [aux_sym_kex_algorithms_token1] = ACTIONS(3371), + [aux_sym_known_hosts_command_token1] = ACTIONS(3371), + [aux_sym_local_command_token1] = ACTIONS(3371), + [aux_sym_local_forward_token1] = ACTIONS(3371), + [aux_sym_log_level_token1] = ACTIONS(3371), + [aux_sym_log_verbose_token1] = ACTIONS(3371), + [aux_sym_macs_token1] = ACTIONS(3371), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3371), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3371), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3371), + [aux_sym_password_authentication_token1] = ACTIONS(3371), + [aux_sym_permit_local_command_token1] = ACTIONS(3371), + [aux_sym_permit_remote_open_token1] = ACTIONS(3371), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3371), + [aux_sym_port_token1] = ACTIONS(3371), + [aux_sym_preferred_authentications_token1] = ACTIONS(3371), + [aux_sym_protocol_token1] = ACTIONS(3371), + [aux_sym_proxy_command_token1] = ACTIONS(3371), + [aux_sym_proxy_jump_token1] = ACTIONS(3371), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3371), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3371), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3371), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3371), + [aux_sym_rekey_limit_token1] = ACTIONS(3371), + [aux_sym_remote_command_token1] = ACTIONS(3371), + [aux_sym_remote_forward_token1] = ACTIONS(3371), + [aux_sym_request_tty_token1] = ACTIONS(3371), + [aux_sym_required_rsa_size_token1] = ACTIONS(3371), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3371), + [aux_sym_security_key_provider_token1] = ACTIONS(3371), + [aux_sym_send_env_token1] = ACTIONS(3371), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3371), + [aux_sym_server_alive_interval_token1] = ACTIONS(3371), + [aux_sym_session_type_token1] = ACTIONS(3371), + [aux_sym_set_env_token1] = ACTIONS(3371), + [aux_sym_stdin_null_token1] = ACTIONS(3371), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3371), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3371), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3371), + [aux_sym_syslog_facility_token1] = ACTIONS(3371), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3371), + [aux_sym_keep_alive_token1] = ACTIONS(3371), + [aux_sym_tag_token1] = ACTIONS(3371), + [aux_sym_tunnel_token1] = ACTIONS(3373), + [aux_sym_tunnel_device_token1] = ACTIONS(3371), + [aux_sym_update_host_keys_token1] = ACTIONS(3371), + [aux_sym_use_keychain_token1] = ACTIONS(3371), + [aux_sym_use_roaming_token1] = ACTIONS(3371), + [aux_sym_user_token1] = ACTIONS(3373), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3371), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3371), + [aux_sym_visual_host_key_token1] = ACTIONS(3371), + [aux_sym_xauth_location_token1] = ACTIONS(3371), }, [576] = { - [ts_builtin_sym_end] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3370), - [aux_sym_match_token1] = ACTIONS(3368), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3368), - [aux_sym_address_family_token1] = ACTIONS(3368), - [aux_sym_batch_mode_token1] = ACTIONS(3368), - [aux_sym_bind_address_token1] = ACTIONS(3368), - [aux_sym_bind_interface_token1] = ACTIONS(3368), - [aux_sym_canonical_domains_token1] = ACTIONS(3368), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3368), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3368), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3368), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3368), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3368), - [aux_sym_certificate_file_token1] = ACTIONS(3368), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3368), - [aux_sym_channel_timeout_token1] = ACTIONS(3368), - [aux_sym_check_host_ip_token1] = ACTIONS(3368), - [aux_sym_ciphers_token1] = ACTIONS(3368), - [aux_sym_cipher_token1] = ACTIONS(3370), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3368), - [aux_sym_compression_token1] = ACTIONS(3368), - [aux_sym_connection_attempts_token1] = ACTIONS(3368), - [aux_sym_connect_timeout_token1] = ACTIONS(3368), - [aux_sym_control_master_token1] = ACTIONS(3368), - [aux_sym_control_path_token1] = ACTIONS(3368), - [aux_sym_control_persist_token1] = ACTIONS(3368), - [aux_sym_dynamic_forward_token1] = ACTIONS(3368), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3368), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3368), - [aux_sym_escape_char_token1] = ACTIONS(3368), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3368), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3368), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3368), - [aux_sym_forward_agent_token1] = ACTIONS(3368), - [aux_sym_forward_x11_token1] = ACTIONS(3370), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3368), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3368), - [aux_sym_gateway_ports_token1] = ACTIONS(3368), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3368), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3368), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3368), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3368), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3368), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3368), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3368), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3368), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3368), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3368), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3368), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3368), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3368), - [aux_sym_host_key_alias_token1] = ACTIONS(3368), - [aux_sym_hostname_token1] = ACTIONS(3368), - [aux_sym_identities_only_token1] = ACTIONS(3368), - [aux_sym_identity_agent_token1] = ACTIONS(3368), - [aux_sym_identity_file_token1] = ACTIONS(3368), - [aux_sym_ignore_unknown_token1] = ACTIONS(3368), - [aux_sym_include_token1] = ACTIONS(3368), - [aux_sym_ip_qos_token1] = ACTIONS(3368), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3368), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3368), - [aux_sym_kex_algorithms_token1] = ACTIONS(3368), - [aux_sym_known_hosts_command_token1] = ACTIONS(3368), - [aux_sym_local_command_token1] = ACTIONS(3368), - [aux_sym_local_forward_token1] = ACTIONS(3368), - [aux_sym_log_level_token1] = ACTIONS(3368), - [aux_sym_log_verbose_token1] = ACTIONS(3368), - [aux_sym_macs_token1] = ACTIONS(3368), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3368), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3368), - [aux_sym_password_authentication_token1] = ACTIONS(3368), - [aux_sym_permit_local_command_token1] = ACTIONS(3368), - [aux_sym_permit_remote_open_token1] = ACTIONS(3368), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3368), - [aux_sym_port_token1] = ACTIONS(3368), - [aux_sym_preferred_authentications_token1] = ACTIONS(3368), - [aux_sym_protocol_token1] = ACTIONS(3368), - [aux_sym_proxy_command_token1] = ACTIONS(3368), - [aux_sym_proxy_jump_token1] = ACTIONS(3368), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3368), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3368), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3368), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3368), - [aux_sym_rekey_limit_token1] = ACTIONS(3368), - [aux_sym_remote_command_token1] = ACTIONS(3368), - [aux_sym_remote_forward_token1] = ACTIONS(3368), - [aux_sym_request_tty_token1] = ACTIONS(3368), - [aux_sym_required_rsa_size_token1] = ACTIONS(3368), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3368), - [aux_sym_security_key_provider_token1] = ACTIONS(3368), - [aux_sym_send_env_token1] = ACTIONS(3368), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3368), - [aux_sym_server_alive_interval_token1] = ACTIONS(3368), - [aux_sym_session_type_token1] = ACTIONS(3368), - [aux_sym_set_env_token1] = ACTIONS(3368), - [aux_sym_stdin_null_token1] = ACTIONS(3368), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3368), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3368), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3368), - [aux_sym_syslog_facility_token1] = ACTIONS(3368), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3368), - [aux_sym_keep_alive_token1] = ACTIONS(3368), - [aux_sym_tag_token1] = ACTIONS(3368), - [aux_sym_tunnel_token1] = ACTIONS(3370), - [aux_sym_tunnel_device_token1] = ACTIONS(3368), - [aux_sym_update_host_keys_token1] = ACTIONS(3368), - [aux_sym_use_keychain_token1] = ACTIONS(3368), - [aux_sym_use_roaming_token1] = ACTIONS(3368), - [aux_sym_user_token1] = ACTIONS(3370), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3368), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3368), - [aux_sym_visual_host_key_token1] = ACTIONS(3368), - [aux_sym_xauth_location_token1] = ACTIONS(3368), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1291), + [aux_sym_match_token1] = ACTIONS(1289), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1289), + [aux_sym_address_family_token1] = ACTIONS(1289), + [aux_sym_batch_mode_token1] = ACTIONS(1289), + [aux_sym_bind_address_token1] = ACTIONS(1289), + [aux_sym_bind_interface_token1] = ACTIONS(1289), + [aux_sym_canonical_domains_token1] = ACTIONS(1289), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1289), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1289), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1289), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1289), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1289), + [aux_sym_certificate_file_token1] = ACTIONS(1289), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1289), + [aux_sym_channel_timeout_token1] = ACTIONS(1289), + [aux_sym_check_host_ip_token1] = ACTIONS(1289), + [aux_sym_ciphers_token1] = ACTIONS(1289), + [aux_sym_cipher_token1] = ACTIONS(1291), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1289), + [aux_sym_compression_token1] = ACTIONS(1289), + [aux_sym_connection_attempts_token1] = ACTIONS(1289), + [aux_sym_connect_timeout_token1] = ACTIONS(1289), + [aux_sym_control_master_token1] = ACTIONS(1289), + [aux_sym_control_path_token1] = ACTIONS(1289), + [aux_sym_control_persist_token1] = ACTIONS(1289), + [aux_sym_dynamic_forward_token1] = ACTIONS(1289), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1289), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1289), + [aux_sym_escape_char_token1] = ACTIONS(1289), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1289), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1289), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1289), + [aux_sym_forward_agent_token1] = ACTIONS(1289), + [aux_sym_forward_x11_token1] = ACTIONS(1291), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1289), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1289), + [aux_sym_gateway_ports_token1] = ACTIONS(1289), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1289), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1289), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1289), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1289), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1289), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1289), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1289), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1289), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1289), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1289), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1289), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1289), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1289), + [aux_sym_host_key_alias_token1] = ACTIONS(1289), + [aux_sym_hostname_token1] = ACTIONS(1289), + [aux_sym_identities_only_token1] = ACTIONS(1289), + [aux_sym_identity_agent_token1] = ACTIONS(1289), + [aux_sym_identity_file_token1] = ACTIONS(1289), + [aux_sym_ignore_unknown_token1] = ACTIONS(1289), + [aux_sym_include_token1] = ACTIONS(1289), + [aux_sym_ip_qos_token1] = ACTIONS(1289), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1289), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1289), + [aux_sym_kex_algorithms_token1] = ACTIONS(1289), + [aux_sym_known_hosts_command_token1] = ACTIONS(1289), + [aux_sym_local_command_token1] = ACTIONS(1289), + [aux_sym_local_forward_token1] = ACTIONS(1289), + [aux_sym_log_level_token1] = ACTIONS(1289), + [aux_sym_log_verbose_token1] = ACTIONS(1289), + [aux_sym_macs_token1] = ACTIONS(1289), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1289), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1289), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1289), + [aux_sym_password_authentication_token1] = ACTIONS(1289), + [aux_sym_permit_local_command_token1] = ACTIONS(1289), + [aux_sym_permit_remote_open_token1] = ACTIONS(1289), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1289), + [aux_sym_port_token1] = ACTIONS(1289), + [aux_sym_preferred_authentications_token1] = ACTIONS(1289), + [aux_sym_protocol_token1] = ACTIONS(1289), + [aux_sym_proxy_command_token1] = ACTIONS(1289), + [aux_sym_proxy_jump_token1] = ACTIONS(1289), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1289), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1289), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1289), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1289), + [aux_sym_rekey_limit_token1] = ACTIONS(1289), + [aux_sym_remote_command_token1] = ACTIONS(1289), + [aux_sym_remote_forward_token1] = ACTIONS(1289), + [aux_sym_request_tty_token1] = ACTIONS(1289), + [aux_sym_required_rsa_size_token1] = ACTIONS(1289), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1289), + [aux_sym_security_key_provider_token1] = ACTIONS(1289), + [aux_sym_send_env_token1] = ACTIONS(1289), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1289), + [aux_sym_server_alive_interval_token1] = ACTIONS(1289), + [aux_sym_session_type_token1] = ACTIONS(1289), + [aux_sym_set_env_token1] = ACTIONS(1289), + [aux_sym_stdin_null_token1] = ACTIONS(1289), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1289), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1289), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1289), + [aux_sym_syslog_facility_token1] = ACTIONS(1289), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1289), + [aux_sym_keep_alive_token1] = ACTIONS(1289), + [aux_sym_tag_token1] = ACTIONS(1289), + [aux_sym_tunnel_token1] = ACTIONS(1291), + [aux_sym_tunnel_device_token1] = ACTIONS(1289), + [aux_sym_update_host_keys_token1] = ACTIONS(1289), + [aux_sym_use_keychain_token1] = ACTIONS(1289), + [aux_sym_use_roaming_token1] = ACTIONS(1289), + [aux_sym_user_token1] = ACTIONS(1291), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1289), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1289), + [aux_sym_visual_host_key_token1] = ACTIONS(1289), + [aux_sym_xauth_location_token1] = ACTIONS(1289), }, [577] = { - [ts_builtin_sym_end] = ACTIONS(1218), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1220), - [aux_sym_match_token1] = ACTIONS(1218), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1218), - [aux_sym_address_family_token1] = ACTIONS(1218), - [aux_sym_batch_mode_token1] = ACTIONS(1218), - [aux_sym_bind_address_token1] = ACTIONS(1218), - [aux_sym_bind_interface_token1] = ACTIONS(1218), - [aux_sym_canonical_domains_token1] = ACTIONS(1218), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1218), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1218), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1218), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1218), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1218), - [aux_sym_certificate_file_token1] = ACTIONS(1218), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1218), - [aux_sym_channel_timeout_token1] = ACTIONS(1218), - [aux_sym_check_host_ip_token1] = ACTIONS(1218), - [aux_sym_ciphers_token1] = ACTIONS(1218), - [aux_sym_cipher_token1] = ACTIONS(1220), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1218), - [aux_sym_compression_token1] = ACTIONS(1218), - [aux_sym_connection_attempts_token1] = ACTIONS(1218), - [aux_sym_connect_timeout_token1] = ACTIONS(1218), - [aux_sym_control_master_token1] = ACTIONS(1218), - [aux_sym_control_path_token1] = ACTIONS(1218), - [aux_sym_control_persist_token1] = ACTIONS(1218), - [aux_sym_dynamic_forward_token1] = ACTIONS(1218), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1218), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1218), - [aux_sym_escape_char_token1] = ACTIONS(1218), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1218), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1218), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1218), - [aux_sym_forward_agent_token1] = ACTIONS(1218), - [aux_sym_forward_x11_token1] = ACTIONS(1220), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1218), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1218), - [aux_sym_gateway_ports_token1] = ACTIONS(1218), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1218), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1218), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1218), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1218), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1218), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1218), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1218), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1218), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1218), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1218), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1218), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1218), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1218), - [aux_sym_host_key_alias_token1] = ACTIONS(1218), - [aux_sym_hostname_token1] = ACTIONS(1218), - [aux_sym_identities_only_token1] = ACTIONS(1218), - [aux_sym_identity_agent_token1] = ACTIONS(1218), - [aux_sym_identity_file_token1] = ACTIONS(1218), - [aux_sym_ignore_unknown_token1] = ACTIONS(1218), - [aux_sym_include_token1] = ACTIONS(1218), - [aux_sym_ip_qos_token1] = ACTIONS(1218), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1218), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1218), - [aux_sym_kex_algorithms_token1] = ACTIONS(1218), - [aux_sym_known_hosts_command_token1] = ACTIONS(1218), - [aux_sym_local_command_token1] = ACTIONS(1218), - [aux_sym_local_forward_token1] = ACTIONS(1218), - [aux_sym_log_level_token1] = ACTIONS(1218), - [aux_sym_log_verbose_token1] = ACTIONS(1218), - [aux_sym_macs_token1] = ACTIONS(1218), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1218), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1218), - [aux_sym_password_authentication_token1] = ACTIONS(1218), - [aux_sym_permit_local_command_token1] = ACTIONS(1218), - [aux_sym_permit_remote_open_token1] = ACTIONS(1218), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1218), - [aux_sym_port_token1] = ACTIONS(1218), - [aux_sym_preferred_authentications_token1] = ACTIONS(1218), - [aux_sym_protocol_token1] = ACTIONS(1218), - [aux_sym_proxy_command_token1] = ACTIONS(1218), - [aux_sym_proxy_jump_token1] = ACTIONS(1218), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1218), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1218), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1218), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1218), - [aux_sym_rekey_limit_token1] = ACTIONS(1218), - [aux_sym_remote_command_token1] = ACTIONS(1218), - [aux_sym_remote_forward_token1] = ACTIONS(1218), - [aux_sym_request_tty_token1] = ACTIONS(1218), - [aux_sym_required_rsa_size_token1] = ACTIONS(1218), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1218), - [aux_sym_security_key_provider_token1] = ACTIONS(1218), - [aux_sym_send_env_token1] = ACTIONS(1218), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1218), - [aux_sym_server_alive_interval_token1] = ACTIONS(1218), - [aux_sym_session_type_token1] = ACTIONS(1218), - [aux_sym_set_env_token1] = ACTIONS(1218), - [aux_sym_stdin_null_token1] = ACTIONS(1218), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1218), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1218), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1218), - [aux_sym_syslog_facility_token1] = ACTIONS(1218), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1218), - [aux_sym_keep_alive_token1] = ACTIONS(1218), - [aux_sym_tag_token1] = ACTIONS(1218), - [aux_sym_tunnel_token1] = ACTIONS(1220), - [aux_sym_tunnel_device_token1] = ACTIONS(1218), - [aux_sym_update_host_keys_token1] = ACTIONS(1218), - [aux_sym_use_keychain_token1] = ACTIONS(1218), - [aux_sym_use_roaming_token1] = ACTIONS(1218), - [aux_sym_user_token1] = ACTIONS(1220), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1218), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1218), - [aux_sym_visual_host_key_token1] = ACTIONS(1218), - [aux_sym_xauth_location_token1] = ACTIONS(1218), + [ts_builtin_sym_end] = ACTIONS(3375), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3377), + [aux_sym_match_token1] = ACTIONS(3375), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3375), + [aux_sym_address_family_token1] = ACTIONS(3375), + [aux_sym_batch_mode_token1] = ACTIONS(3375), + [aux_sym_bind_address_token1] = ACTIONS(3375), + [aux_sym_bind_interface_token1] = ACTIONS(3375), + [aux_sym_canonical_domains_token1] = ACTIONS(3375), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3375), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3375), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3375), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3375), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3375), + [aux_sym_certificate_file_token1] = ACTIONS(3375), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3375), + [aux_sym_channel_timeout_token1] = ACTIONS(3375), + [aux_sym_check_host_ip_token1] = ACTIONS(3375), + [aux_sym_ciphers_token1] = ACTIONS(3375), + [aux_sym_cipher_token1] = ACTIONS(3377), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3375), + [aux_sym_compression_token1] = ACTIONS(3375), + [aux_sym_connection_attempts_token1] = ACTIONS(3375), + [aux_sym_connect_timeout_token1] = ACTIONS(3375), + [aux_sym_control_master_token1] = ACTIONS(3375), + [aux_sym_control_path_token1] = ACTIONS(3375), + [aux_sym_control_persist_token1] = ACTIONS(3375), + [aux_sym_dynamic_forward_token1] = ACTIONS(3375), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3375), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3375), + [aux_sym_escape_char_token1] = ACTIONS(3375), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3375), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3375), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3375), + [aux_sym_forward_agent_token1] = ACTIONS(3375), + [aux_sym_forward_x11_token1] = ACTIONS(3377), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3375), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3375), + [aux_sym_gateway_ports_token1] = ACTIONS(3375), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3375), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3375), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3375), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3375), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3375), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3375), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3375), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3375), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3375), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3375), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3375), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3375), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3375), + [aux_sym_host_key_alias_token1] = ACTIONS(3375), + [aux_sym_hostname_token1] = ACTIONS(3375), + [aux_sym_identities_only_token1] = ACTIONS(3375), + [aux_sym_identity_agent_token1] = ACTIONS(3375), + [aux_sym_identity_file_token1] = ACTIONS(3375), + [aux_sym_ignore_unknown_token1] = ACTIONS(3375), + [aux_sym_include_token1] = ACTIONS(3375), + [aux_sym_ip_qos_token1] = ACTIONS(3375), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3375), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3375), + [aux_sym_kex_algorithms_token1] = ACTIONS(3375), + [aux_sym_known_hosts_command_token1] = ACTIONS(3375), + [aux_sym_local_command_token1] = ACTIONS(3375), + [aux_sym_local_forward_token1] = ACTIONS(3375), + [aux_sym_log_level_token1] = ACTIONS(3375), + [aux_sym_log_verbose_token1] = ACTIONS(3375), + [aux_sym_macs_token1] = ACTIONS(3375), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3375), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3375), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3375), + [aux_sym_password_authentication_token1] = ACTIONS(3375), + [aux_sym_permit_local_command_token1] = ACTIONS(3375), + [aux_sym_permit_remote_open_token1] = ACTIONS(3375), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3375), + [aux_sym_port_token1] = ACTIONS(3375), + [aux_sym_preferred_authentications_token1] = ACTIONS(3375), + [aux_sym_protocol_token1] = ACTIONS(3375), + [aux_sym_proxy_command_token1] = ACTIONS(3375), + [aux_sym_proxy_jump_token1] = ACTIONS(3375), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3375), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3375), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3375), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3375), + [aux_sym_rekey_limit_token1] = ACTIONS(3375), + [aux_sym_remote_command_token1] = ACTIONS(3375), + [aux_sym_remote_forward_token1] = ACTIONS(3375), + [aux_sym_request_tty_token1] = ACTIONS(3375), + [aux_sym_required_rsa_size_token1] = ACTIONS(3375), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3375), + [aux_sym_security_key_provider_token1] = ACTIONS(3375), + [aux_sym_send_env_token1] = ACTIONS(3375), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3375), + [aux_sym_server_alive_interval_token1] = ACTIONS(3375), + [aux_sym_session_type_token1] = ACTIONS(3375), + [aux_sym_set_env_token1] = ACTIONS(3375), + [aux_sym_stdin_null_token1] = ACTIONS(3375), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3375), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3375), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3375), + [aux_sym_syslog_facility_token1] = ACTIONS(3375), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3375), + [aux_sym_keep_alive_token1] = ACTIONS(3375), + [aux_sym_tag_token1] = ACTIONS(3375), + [aux_sym_tunnel_token1] = ACTIONS(3377), + [aux_sym_tunnel_device_token1] = ACTIONS(3375), + [aux_sym_update_host_keys_token1] = ACTIONS(3375), + [aux_sym_use_keychain_token1] = ACTIONS(3375), + [aux_sym_use_roaming_token1] = ACTIONS(3375), + [aux_sym_user_token1] = ACTIONS(3377), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3375), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3375), + [aux_sym_visual_host_key_token1] = ACTIONS(3375), + [aux_sym_xauth_location_token1] = ACTIONS(3375), }, [578] = { - [ts_builtin_sym_end] = ACTIONS(1212), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1214), - [aux_sym_match_token1] = ACTIONS(1212), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1212), - [aux_sym_address_family_token1] = ACTIONS(1212), - [aux_sym_batch_mode_token1] = ACTIONS(1212), - [aux_sym_bind_address_token1] = ACTIONS(1212), - [aux_sym_bind_interface_token1] = ACTIONS(1212), - [aux_sym_canonical_domains_token1] = ACTIONS(1212), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1212), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1212), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1212), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1212), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1212), - [aux_sym_certificate_file_token1] = ACTIONS(1212), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1212), - [aux_sym_channel_timeout_token1] = ACTIONS(1212), - [aux_sym_check_host_ip_token1] = ACTIONS(1212), - [aux_sym_ciphers_token1] = ACTIONS(1212), - [aux_sym_cipher_token1] = ACTIONS(1214), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1212), - [aux_sym_compression_token1] = ACTIONS(1212), - [aux_sym_connection_attempts_token1] = ACTIONS(1212), - [aux_sym_connect_timeout_token1] = ACTIONS(1212), - [aux_sym_control_master_token1] = ACTIONS(1212), - [aux_sym_control_path_token1] = ACTIONS(1212), - [aux_sym_control_persist_token1] = ACTIONS(1212), - [aux_sym_dynamic_forward_token1] = ACTIONS(1212), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1212), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1212), - [aux_sym_escape_char_token1] = ACTIONS(1212), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1212), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1212), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1212), - [aux_sym_forward_agent_token1] = ACTIONS(1212), - [aux_sym_forward_x11_token1] = ACTIONS(1214), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1212), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1212), - [aux_sym_gateway_ports_token1] = ACTIONS(1212), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1212), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1212), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1212), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1212), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1212), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1212), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1212), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1212), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1212), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1212), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1212), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1212), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1212), - [aux_sym_host_key_alias_token1] = ACTIONS(1212), - [aux_sym_hostname_token1] = ACTIONS(1212), - [aux_sym_identities_only_token1] = ACTIONS(1212), - [aux_sym_identity_agent_token1] = ACTIONS(1212), - [aux_sym_identity_file_token1] = ACTIONS(1212), - [aux_sym_ignore_unknown_token1] = ACTIONS(1212), - [aux_sym_include_token1] = ACTIONS(1212), - [aux_sym_ip_qos_token1] = ACTIONS(1212), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1212), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1212), - [aux_sym_kex_algorithms_token1] = ACTIONS(1212), - [aux_sym_known_hosts_command_token1] = ACTIONS(1212), - [aux_sym_local_command_token1] = ACTIONS(1212), - [aux_sym_local_forward_token1] = ACTIONS(1212), - [aux_sym_log_level_token1] = ACTIONS(1212), - [aux_sym_log_verbose_token1] = ACTIONS(1212), - [aux_sym_macs_token1] = ACTIONS(1212), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1212), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1212), - [aux_sym_password_authentication_token1] = ACTIONS(1212), - [aux_sym_permit_local_command_token1] = ACTIONS(1212), - [aux_sym_permit_remote_open_token1] = ACTIONS(1212), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1212), - [aux_sym_port_token1] = ACTIONS(1212), - [aux_sym_preferred_authentications_token1] = ACTIONS(1212), - [aux_sym_protocol_token1] = ACTIONS(1212), - [aux_sym_proxy_command_token1] = ACTIONS(1212), - [aux_sym_proxy_jump_token1] = ACTIONS(1212), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1212), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1212), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1212), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1212), - [aux_sym_rekey_limit_token1] = ACTIONS(1212), - [aux_sym_remote_command_token1] = ACTIONS(1212), - [aux_sym_remote_forward_token1] = ACTIONS(1212), - [aux_sym_request_tty_token1] = ACTIONS(1212), - [aux_sym_required_rsa_size_token1] = ACTIONS(1212), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1212), - [aux_sym_security_key_provider_token1] = ACTIONS(1212), - [aux_sym_send_env_token1] = ACTIONS(1212), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1212), - [aux_sym_server_alive_interval_token1] = ACTIONS(1212), - [aux_sym_session_type_token1] = ACTIONS(1212), - [aux_sym_set_env_token1] = ACTIONS(1212), - [aux_sym_stdin_null_token1] = ACTIONS(1212), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1212), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1212), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1212), - [aux_sym_syslog_facility_token1] = ACTIONS(1212), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1212), - [aux_sym_keep_alive_token1] = ACTIONS(1212), - [aux_sym_tag_token1] = ACTIONS(1212), - [aux_sym_tunnel_token1] = ACTIONS(1214), - [aux_sym_tunnel_device_token1] = ACTIONS(1212), - [aux_sym_update_host_keys_token1] = ACTIONS(1212), - [aux_sym_use_keychain_token1] = ACTIONS(1212), - [aux_sym_use_roaming_token1] = ACTIONS(1212), - [aux_sym_user_token1] = ACTIONS(1214), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1212), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1212), - [aux_sym_visual_host_key_token1] = ACTIONS(1212), - [aux_sym_xauth_location_token1] = ACTIONS(1212), + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3381), + [aux_sym_match_token1] = ACTIONS(3379), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3379), + [aux_sym_address_family_token1] = ACTIONS(3379), + [aux_sym_batch_mode_token1] = ACTIONS(3379), + [aux_sym_bind_address_token1] = ACTIONS(3379), + [aux_sym_bind_interface_token1] = ACTIONS(3379), + [aux_sym_canonical_domains_token1] = ACTIONS(3379), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3379), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3379), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3379), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3379), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3379), + [aux_sym_certificate_file_token1] = ACTIONS(3379), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3379), + [aux_sym_channel_timeout_token1] = ACTIONS(3379), + [aux_sym_check_host_ip_token1] = ACTIONS(3379), + [aux_sym_ciphers_token1] = ACTIONS(3379), + [aux_sym_cipher_token1] = ACTIONS(3381), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3379), + [aux_sym_compression_token1] = ACTIONS(3379), + [aux_sym_connection_attempts_token1] = ACTIONS(3379), + [aux_sym_connect_timeout_token1] = ACTIONS(3379), + [aux_sym_control_master_token1] = ACTIONS(3379), + [aux_sym_control_path_token1] = ACTIONS(3379), + [aux_sym_control_persist_token1] = ACTIONS(3379), + [aux_sym_dynamic_forward_token1] = ACTIONS(3379), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3379), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3379), + [aux_sym_escape_char_token1] = ACTIONS(3379), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3379), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3379), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3379), + [aux_sym_forward_agent_token1] = ACTIONS(3379), + [aux_sym_forward_x11_token1] = ACTIONS(3381), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3379), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3379), + [aux_sym_gateway_ports_token1] = ACTIONS(3379), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3379), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3379), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3379), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3379), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3379), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3379), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3379), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3379), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3379), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3379), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3379), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3379), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3379), + [aux_sym_host_key_alias_token1] = ACTIONS(3379), + [aux_sym_hostname_token1] = ACTIONS(3379), + [aux_sym_identities_only_token1] = ACTIONS(3379), + [aux_sym_identity_agent_token1] = ACTIONS(3379), + [aux_sym_identity_file_token1] = ACTIONS(3379), + [aux_sym_ignore_unknown_token1] = ACTIONS(3379), + [aux_sym_include_token1] = ACTIONS(3379), + [aux_sym_ip_qos_token1] = ACTIONS(3379), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3379), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3379), + [aux_sym_kex_algorithms_token1] = ACTIONS(3379), + [aux_sym_known_hosts_command_token1] = ACTIONS(3379), + [aux_sym_local_command_token1] = ACTIONS(3379), + [aux_sym_local_forward_token1] = ACTIONS(3379), + [aux_sym_log_level_token1] = ACTIONS(3379), + [aux_sym_log_verbose_token1] = ACTIONS(3379), + [aux_sym_macs_token1] = ACTIONS(3379), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3379), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3379), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3379), + [aux_sym_password_authentication_token1] = ACTIONS(3379), + [aux_sym_permit_local_command_token1] = ACTIONS(3379), + [aux_sym_permit_remote_open_token1] = ACTIONS(3379), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3379), + [aux_sym_port_token1] = ACTIONS(3379), + [aux_sym_preferred_authentications_token1] = ACTIONS(3379), + [aux_sym_protocol_token1] = ACTIONS(3379), + [aux_sym_proxy_command_token1] = ACTIONS(3379), + [aux_sym_proxy_jump_token1] = ACTIONS(3379), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3379), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3379), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3379), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3379), + [aux_sym_rekey_limit_token1] = ACTIONS(3379), + [aux_sym_remote_command_token1] = ACTIONS(3379), + [aux_sym_remote_forward_token1] = ACTIONS(3379), + [aux_sym_request_tty_token1] = ACTIONS(3379), + [aux_sym_required_rsa_size_token1] = ACTIONS(3379), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3379), + [aux_sym_security_key_provider_token1] = ACTIONS(3379), + [aux_sym_send_env_token1] = ACTIONS(3379), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3379), + [aux_sym_server_alive_interval_token1] = ACTIONS(3379), + [aux_sym_session_type_token1] = ACTIONS(3379), + [aux_sym_set_env_token1] = ACTIONS(3379), + [aux_sym_stdin_null_token1] = ACTIONS(3379), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3379), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3379), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3379), + [aux_sym_syslog_facility_token1] = ACTIONS(3379), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3379), + [aux_sym_keep_alive_token1] = ACTIONS(3379), + [aux_sym_tag_token1] = ACTIONS(3379), + [aux_sym_tunnel_token1] = ACTIONS(3381), + [aux_sym_tunnel_device_token1] = ACTIONS(3379), + [aux_sym_update_host_keys_token1] = ACTIONS(3379), + [aux_sym_use_keychain_token1] = ACTIONS(3379), + [aux_sym_use_roaming_token1] = ACTIONS(3379), + [aux_sym_user_token1] = ACTIONS(3381), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3379), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3379), + [aux_sym_visual_host_key_token1] = ACTIONS(3379), + [aux_sym_xauth_location_token1] = ACTIONS(3379), }, [579] = { - [ts_builtin_sym_end] = ACTIONS(1500), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1502), - [aux_sym_match_token1] = ACTIONS(1500), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1500), - [aux_sym_address_family_token1] = ACTIONS(1500), - [aux_sym_batch_mode_token1] = ACTIONS(1500), - [aux_sym_bind_address_token1] = ACTIONS(1500), - [aux_sym_bind_interface_token1] = ACTIONS(1500), - [aux_sym_canonical_domains_token1] = ACTIONS(1500), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1500), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1500), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1500), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1500), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1500), - [aux_sym_certificate_file_token1] = ACTIONS(1500), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1500), - [aux_sym_channel_timeout_token1] = ACTIONS(1500), - [aux_sym_check_host_ip_token1] = ACTIONS(1500), - [aux_sym_ciphers_token1] = ACTIONS(1500), - [aux_sym_cipher_token1] = ACTIONS(1502), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1500), - [aux_sym_compression_token1] = ACTIONS(1500), - [aux_sym_connection_attempts_token1] = ACTIONS(1500), - [aux_sym_connect_timeout_token1] = ACTIONS(1500), - [aux_sym_control_master_token1] = ACTIONS(1500), - [aux_sym_control_path_token1] = ACTIONS(1500), - [aux_sym_control_persist_token1] = ACTIONS(1500), - [aux_sym_dynamic_forward_token1] = ACTIONS(1500), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1500), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1500), - [aux_sym_escape_char_token1] = ACTIONS(1500), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1500), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1500), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1500), - [aux_sym_forward_agent_token1] = ACTIONS(1500), - [aux_sym_forward_x11_token1] = ACTIONS(1502), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1500), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1500), - [aux_sym_gateway_ports_token1] = ACTIONS(1500), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1500), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1500), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1500), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1500), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1500), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1500), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1500), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1500), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1500), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1500), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1500), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1500), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1500), - [aux_sym_host_key_alias_token1] = ACTIONS(1500), - [aux_sym_hostname_token1] = ACTIONS(1500), - [aux_sym_identities_only_token1] = ACTIONS(1500), - [aux_sym_identity_agent_token1] = ACTIONS(1500), - [aux_sym_identity_file_token1] = ACTIONS(1500), - [aux_sym_ignore_unknown_token1] = ACTIONS(1500), - [aux_sym_include_token1] = ACTIONS(1500), - [aux_sym_ip_qos_token1] = ACTIONS(1500), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1500), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1500), - [aux_sym_kex_algorithms_token1] = ACTIONS(1500), - [aux_sym_known_hosts_command_token1] = ACTIONS(1500), - [aux_sym_local_command_token1] = ACTIONS(1500), - [aux_sym_local_forward_token1] = ACTIONS(1500), - [aux_sym_log_level_token1] = ACTIONS(1500), - [aux_sym_log_verbose_token1] = ACTIONS(1500), - [aux_sym_macs_token1] = ACTIONS(1500), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1500), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1500), - [aux_sym_password_authentication_token1] = ACTIONS(1500), - [aux_sym_permit_local_command_token1] = ACTIONS(1500), - [aux_sym_permit_remote_open_token1] = ACTIONS(1500), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1500), - [aux_sym_port_token1] = ACTIONS(1500), - [aux_sym_preferred_authentications_token1] = ACTIONS(1500), - [aux_sym_protocol_token1] = ACTIONS(1500), - [aux_sym_proxy_command_token1] = ACTIONS(1500), - [aux_sym_proxy_jump_token1] = ACTIONS(1500), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1500), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1500), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1500), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1500), - [aux_sym_rekey_limit_token1] = ACTIONS(1500), - [aux_sym_remote_command_token1] = ACTIONS(1500), - [aux_sym_remote_forward_token1] = ACTIONS(1500), - [aux_sym_request_tty_token1] = ACTIONS(1500), - [aux_sym_required_rsa_size_token1] = ACTIONS(1500), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1500), - [aux_sym_security_key_provider_token1] = ACTIONS(1500), - [aux_sym_send_env_token1] = ACTIONS(1500), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1500), - [aux_sym_server_alive_interval_token1] = ACTIONS(1500), - [aux_sym_session_type_token1] = ACTIONS(1500), - [aux_sym_set_env_token1] = ACTIONS(1500), - [aux_sym_stdin_null_token1] = ACTIONS(1500), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1500), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1500), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1500), - [aux_sym_syslog_facility_token1] = ACTIONS(1500), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1500), - [aux_sym_keep_alive_token1] = ACTIONS(1500), - [aux_sym_tag_token1] = ACTIONS(1500), - [aux_sym_tunnel_token1] = ACTIONS(1502), - [aux_sym_tunnel_device_token1] = ACTIONS(1500), - [aux_sym_update_host_keys_token1] = ACTIONS(1500), - [aux_sym_use_keychain_token1] = ACTIONS(1500), - [aux_sym_use_roaming_token1] = ACTIONS(1500), - [aux_sym_user_token1] = ACTIONS(1502), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1500), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1500), - [aux_sym_visual_host_key_token1] = ACTIONS(1500), - [aux_sym_xauth_location_token1] = ACTIONS(1500), + [ts_builtin_sym_end] = ACTIONS(851), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(853), + [aux_sym_match_token1] = ACTIONS(851), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(851), + [aux_sym_address_family_token1] = ACTIONS(851), + [aux_sym_batch_mode_token1] = ACTIONS(851), + [aux_sym_bind_address_token1] = ACTIONS(851), + [aux_sym_bind_interface_token1] = ACTIONS(851), + [aux_sym_canonical_domains_token1] = ACTIONS(851), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(851), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(851), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(851), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(851), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(851), + [aux_sym_certificate_file_token1] = ACTIONS(851), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(851), + [aux_sym_channel_timeout_token1] = ACTIONS(851), + [aux_sym_check_host_ip_token1] = ACTIONS(851), + [aux_sym_ciphers_token1] = ACTIONS(851), + [aux_sym_cipher_token1] = ACTIONS(853), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(851), + [aux_sym_compression_token1] = ACTIONS(851), + [aux_sym_connection_attempts_token1] = ACTIONS(851), + [aux_sym_connect_timeout_token1] = ACTIONS(851), + [aux_sym_control_master_token1] = ACTIONS(851), + [aux_sym_control_path_token1] = ACTIONS(851), + [aux_sym_control_persist_token1] = ACTIONS(851), + [aux_sym_dynamic_forward_token1] = ACTIONS(851), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(851), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(851), + [aux_sym_escape_char_token1] = ACTIONS(851), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(851), + [aux_sym_fingerprint_hash_token1] = ACTIONS(851), + [aux_sym_fork_after_authentication_token1] = ACTIONS(851), + [aux_sym_forward_agent_token1] = ACTIONS(851), + [aux_sym_forward_x11_token1] = ACTIONS(853), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(851), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(851), + [aux_sym_gateway_ports_token1] = ACTIONS(851), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(851), + [aux_sym_gssapi_authentication_token1] = ACTIONS(851), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(851), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(851), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(851), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(851), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(851), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(851), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(851), + [aux_sym_hash_known_hosts_token1] = ACTIONS(851), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(851), + [aux_sym_hostbased_authentication_token1] = ACTIONS(851), + [aux_sym_host_key_algorithms_token1] = ACTIONS(851), + [aux_sym_host_key_alias_token1] = ACTIONS(851), + [aux_sym_hostname_token1] = ACTIONS(851), + [aux_sym_identities_only_token1] = ACTIONS(851), + [aux_sym_identity_agent_token1] = ACTIONS(851), + [aux_sym_identity_file_token1] = ACTIONS(851), + [aux_sym_ignore_unknown_token1] = ACTIONS(851), + [aux_sym_include_token1] = ACTIONS(851), + [aux_sym_ip_qos_token1] = ACTIONS(851), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(851), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(851), + [aux_sym_kex_algorithms_token1] = ACTIONS(851), + [aux_sym_known_hosts_command_token1] = ACTIONS(851), + [aux_sym_local_command_token1] = ACTIONS(851), + [aux_sym_local_forward_token1] = ACTIONS(851), + [aux_sym_log_level_token1] = ACTIONS(851), + [aux_sym_log_verbose_token1] = ACTIONS(851), + [aux_sym_macs_token1] = ACTIONS(851), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(851), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(851), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(851), + [aux_sym_password_authentication_token1] = ACTIONS(851), + [aux_sym_permit_local_command_token1] = ACTIONS(851), + [aux_sym_permit_remote_open_token1] = ACTIONS(851), + [aux_sym_pkcs11_provider_token1] = ACTIONS(851), + [aux_sym_port_token1] = ACTIONS(851), + [aux_sym_preferred_authentications_token1] = ACTIONS(851), + [aux_sym_protocol_token1] = ACTIONS(851), + [aux_sym_proxy_command_token1] = ACTIONS(851), + [aux_sym_proxy_jump_token1] = ACTIONS(851), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(851), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(851), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(851), + [aux_sym_pubkey_authentication_token1] = ACTIONS(851), + [aux_sym_rekey_limit_token1] = ACTIONS(851), + [aux_sym_remote_command_token1] = ACTIONS(851), + [aux_sym_remote_forward_token1] = ACTIONS(851), + [aux_sym_request_tty_token1] = ACTIONS(851), + [aux_sym_required_rsa_size_token1] = ACTIONS(851), + [aux_sym_revoked_host_keys_token1] = ACTIONS(851), + [aux_sym_security_key_provider_token1] = ACTIONS(851), + [aux_sym_send_env_token1] = ACTIONS(851), + [aux_sym_server_alive_count_max_token1] = ACTIONS(851), + [aux_sym_server_alive_interval_token1] = ACTIONS(851), + [aux_sym_session_type_token1] = ACTIONS(851), + [aux_sym_set_env_token1] = ACTIONS(851), + [aux_sym_stdin_null_token1] = ACTIONS(851), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(851), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(851), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(851), + [aux_sym_syslog_facility_token1] = ACTIONS(851), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(851), + [aux_sym_keep_alive_token1] = ACTIONS(851), + [aux_sym_tag_token1] = ACTIONS(851), + [aux_sym_tunnel_token1] = ACTIONS(853), + [aux_sym_tunnel_device_token1] = ACTIONS(851), + [aux_sym_update_host_keys_token1] = ACTIONS(851), + [aux_sym_use_keychain_token1] = ACTIONS(851), + [aux_sym_use_roaming_token1] = ACTIONS(851), + [aux_sym_user_token1] = ACTIONS(853), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(851), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(851), + [aux_sym_visual_host_key_token1] = ACTIONS(851), + [aux_sym_xauth_location_token1] = ACTIONS(851), }, [580] = { - [ts_builtin_sym_end] = ACTIONS(1206), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1208), - [aux_sym_match_token1] = ACTIONS(1206), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1206), - [aux_sym_address_family_token1] = ACTIONS(1206), - [aux_sym_batch_mode_token1] = ACTIONS(1206), - [aux_sym_bind_address_token1] = ACTIONS(1206), - [aux_sym_bind_interface_token1] = ACTIONS(1206), - [aux_sym_canonical_domains_token1] = ACTIONS(1206), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1206), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1206), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1206), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1206), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1206), - [aux_sym_certificate_file_token1] = ACTIONS(1206), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1206), - [aux_sym_channel_timeout_token1] = ACTIONS(1206), - [aux_sym_check_host_ip_token1] = ACTIONS(1206), - [aux_sym_ciphers_token1] = ACTIONS(1206), - [aux_sym_cipher_token1] = ACTIONS(1208), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1206), - [aux_sym_compression_token1] = ACTIONS(1206), - [aux_sym_connection_attempts_token1] = ACTIONS(1206), - [aux_sym_connect_timeout_token1] = ACTIONS(1206), - [aux_sym_control_master_token1] = ACTIONS(1206), - [aux_sym_control_path_token1] = ACTIONS(1206), - [aux_sym_control_persist_token1] = ACTIONS(1206), - [aux_sym_dynamic_forward_token1] = ACTIONS(1206), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1206), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1206), - [aux_sym_escape_char_token1] = ACTIONS(1206), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1206), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1206), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1206), - [aux_sym_forward_agent_token1] = ACTIONS(1206), - [aux_sym_forward_x11_token1] = ACTIONS(1208), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1206), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1206), - [aux_sym_gateway_ports_token1] = ACTIONS(1206), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1206), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1206), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1206), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1206), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1206), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1206), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1206), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1206), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1206), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1206), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1206), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1206), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1206), - [aux_sym_host_key_alias_token1] = ACTIONS(1206), - [aux_sym_hostname_token1] = ACTIONS(1206), - [aux_sym_identities_only_token1] = ACTIONS(1206), - [aux_sym_identity_agent_token1] = ACTIONS(1206), - [aux_sym_identity_file_token1] = ACTIONS(1206), - [aux_sym_ignore_unknown_token1] = ACTIONS(1206), - [aux_sym_include_token1] = ACTIONS(1206), - [aux_sym_ip_qos_token1] = ACTIONS(1206), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1206), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1206), - [aux_sym_kex_algorithms_token1] = ACTIONS(1206), - [aux_sym_known_hosts_command_token1] = ACTIONS(1206), - [aux_sym_local_command_token1] = ACTIONS(1206), - [aux_sym_local_forward_token1] = ACTIONS(1206), - [aux_sym_log_level_token1] = ACTIONS(1206), - [aux_sym_log_verbose_token1] = ACTIONS(1206), - [aux_sym_macs_token1] = ACTIONS(1206), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1206), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1206), - [aux_sym_password_authentication_token1] = ACTIONS(1206), - [aux_sym_permit_local_command_token1] = ACTIONS(1206), - [aux_sym_permit_remote_open_token1] = ACTIONS(1206), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1206), - [aux_sym_port_token1] = ACTIONS(1206), - [aux_sym_preferred_authentications_token1] = ACTIONS(1206), - [aux_sym_protocol_token1] = ACTIONS(1206), - [aux_sym_proxy_command_token1] = ACTIONS(1206), - [aux_sym_proxy_jump_token1] = ACTIONS(1206), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1206), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1206), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1206), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1206), - [aux_sym_rekey_limit_token1] = ACTIONS(1206), - [aux_sym_remote_command_token1] = ACTIONS(1206), - [aux_sym_remote_forward_token1] = ACTIONS(1206), - [aux_sym_request_tty_token1] = ACTIONS(1206), - [aux_sym_required_rsa_size_token1] = ACTIONS(1206), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1206), - [aux_sym_security_key_provider_token1] = ACTIONS(1206), - [aux_sym_send_env_token1] = ACTIONS(1206), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1206), - [aux_sym_server_alive_interval_token1] = ACTIONS(1206), - [aux_sym_session_type_token1] = ACTIONS(1206), - [aux_sym_set_env_token1] = ACTIONS(1206), - [aux_sym_stdin_null_token1] = ACTIONS(1206), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1206), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1206), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1206), - [aux_sym_syslog_facility_token1] = ACTIONS(1206), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1206), - [aux_sym_keep_alive_token1] = ACTIONS(1206), - [aux_sym_tag_token1] = ACTIONS(1206), - [aux_sym_tunnel_token1] = ACTIONS(1208), - [aux_sym_tunnel_device_token1] = ACTIONS(1206), - [aux_sym_update_host_keys_token1] = ACTIONS(1206), - [aux_sym_use_keychain_token1] = ACTIONS(1206), - [aux_sym_use_roaming_token1] = ACTIONS(1206), - [aux_sym_user_token1] = ACTIONS(1208), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1206), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1206), - [aux_sym_visual_host_key_token1] = ACTIONS(1206), - [aux_sym_xauth_location_token1] = ACTIONS(1206), + [ts_builtin_sym_end] = ACTIONS(1295), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1297), + [aux_sym_match_token1] = ACTIONS(1295), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1295), + [aux_sym_address_family_token1] = ACTIONS(1295), + [aux_sym_batch_mode_token1] = ACTIONS(1295), + [aux_sym_bind_address_token1] = ACTIONS(1295), + [aux_sym_bind_interface_token1] = ACTIONS(1295), + [aux_sym_canonical_domains_token1] = ACTIONS(1295), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1295), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1295), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1295), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1295), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1295), + [aux_sym_certificate_file_token1] = ACTIONS(1295), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1295), + [aux_sym_channel_timeout_token1] = ACTIONS(1295), + [aux_sym_check_host_ip_token1] = ACTIONS(1295), + [aux_sym_ciphers_token1] = ACTIONS(1295), + [aux_sym_cipher_token1] = ACTIONS(1297), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1295), + [aux_sym_compression_token1] = ACTIONS(1295), + [aux_sym_connection_attempts_token1] = ACTIONS(1295), + [aux_sym_connect_timeout_token1] = ACTIONS(1295), + [aux_sym_control_master_token1] = ACTIONS(1295), + [aux_sym_control_path_token1] = ACTIONS(1295), + [aux_sym_control_persist_token1] = ACTIONS(1295), + [aux_sym_dynamic_forward_token1] = ACTIONS(1295), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1295), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1295), + [aux_sym_escape_char_token1] = ACTIONS(1295), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1295), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1295), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1295), + [aux_sym_forward_agent_token1] = ACTIONS(1295), + [aux_sym_forward_x11_token1] = ACTIONS(1297), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1295), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1295), + [aux_sym_gateway_ports_token1] = ACTIONS(1295), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1295), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1295), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1295), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1295), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1295), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1295), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1295), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1295), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1295), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1295), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1295), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1295), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1295), + [aux_sym_host_key_alias_token1] = ACTIONS(1295), + [aux_sym_hostname_token1] = ACTIONS(1295), + [aux_sym_identities_only_token1] = ACTIONS(1295), + [aux_sym_identity_agent_token1] = ACTIONS(1295), + [aux_sym_identity_file_token1] = ACTIONS(1295), + [aux_sym_ignore_unknown_token1] = ACTIONS(1295), + [aux_sym_include_token1] = ACTIONS(1295), + [aux_sym_ip_qos_token1] = ACTIONS(1295), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1295), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1295), + [aux_sym_kex_algorithms_token1] = ACTIONS(1295), + [aux_sym_known_hosts_command_token1] = ACTIONS(1295), + [aux_sym_local_command_token1] = ACTIONS(1295), + [aux_sym_local_forward_token1] = ACTIONS(1295), + [aux_sym_log_level_token1] = ACTIONS(1295), + [aux_sym_log_verbose_token1] = ACTIONS(1295), + [aux_sym_macs_token1] = ACTIONS(1295), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1295), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1295), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1295), + [aux_sym_password_authentication_token1] = ACTIONS(1295), + [aux_sym_permit_local_command_token1] = ACTIONS(1295), + [aux_sym_permit_remote_open_token1] = ACTIONS(1295), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1295), + [aux_sym_port_token1] = ACTIONS(1295), + [aux_sym_preferred_authentications_token1] = ACTIONS(1295), + [aux_sym_protocol_token1] = ACTIONS(1295), + [aux_sym_proxy_command_token1] = ACTIONS(1295), + [aux_sym_proxy_jump_token1] = ACTIONS(1295), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1295), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1295), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1295), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1295), + [aux_sym_rekey_limit_token1] = ACTIONS(1295), + [aux_sym_remote_command_token1] = ACTIONS(1295), + [aux_sym_remote_forward_token1] = ACTIONS(1295), + [aux_sym_request_tty_token1] = ACTIONS(1295), + [aux_sym_required_rsa_size_token1] = ACTIONS(1295), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1295), + [aux_sym_security_key_provider_token1] = ACTIONS(1295), + [aux_sym_send_env_token1] = ACTIONS(1295), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1295), + [aux_sym_server_alive_interval_token1] = ACTIONS(1295), + [aux_sym_session_type_token1] = ACTIONS(1295), + [aux_sym_set_env_token1] = ACTIONS(1295), + [aux_sym_stdin_null_token1] = ACTIONS(1295), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1295), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1295), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1295), + [aux_sym_syslog_facility_token1] = ACTIONS(1295), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1295), + [aux_sym_keep_alive_token1] = ACTIONS(1295), + [aux_sym_tag_token1] = ACTIONS(1295), + [aux_sym_tunnel_token1] = ACTIONS(1297), + [aux_sym_tunnel_device_token1] = ACTIONS(1295), + [aux_sym_update_host_keys_token1] = ACTIONS(1295), + [aux_sym_use_keychain_token1] = ACTIONS(1295), + [aux_sym_use_roaming_token1] = ACTIONS(1295), + [aux_sym_user_token1] = ACTIONS(1297), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1295), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1295), + [aux_sym_visual_host_key_token1] = ACTIONS(1295), + [aux_sym_xauth_location_token1] = ACTIONS(1295), }, [581] = { - [ts_builtin_sym_end] = ACTIONS(3372), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3374), - [aux_sym_match_token1] = ACTIONS(3372), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3372), - [aux_sym_address_family_token1] = ACTIONS(3372), - [aux_sym_batch_mode_token1] = ACTIONS(3372), - [aux_sym_bind_address_token1] = ACTIONS(3372), - [aux_sym_bind_interface_token1] = ACTIONS(3372), - [aux_sym_canonical_domains_token1] = ACTIONS(3372), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3372), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3372), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3372), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3372), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3372), - [aux_sym_certificate_file_token1] = ACTIONS(3372), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3372), - [aux_sym_channel_timeout_token1] = ACTIONS(3372), - [aux_sym_check_host_ip_token1] = ACTIONS(3372), - [aux_sym_ciphers_token1] = ACTIONS(3372), - [aux_sym_cipher_token1] = ACTIONS(3374), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3372), - [aux_sym_compression_token1] = ACTIONS(3372), - [aux_sym_connection_attempts_token1] = ACTIONS(3372), - [aux_sym_connect_timeout_token1] = ACTIONS(3372), - [aux_sym_control_master_token1] = ACTIONS(3372), - [aux_sym_control_path_token1] = ACTIONS(3372), - [aux_sym_control_persist_token1] = ACTIONS(3372), - [aux_sym_dynamic_forward_token1] = ACTIONS(3372), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3372), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3372), - [aux_sym_escape_char_token1] = ACTIONS(3372), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3372), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3372), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3372), - [aux_sym_forward_agent_token1] = ACTIONS(3372), - [aux_sym_forward_x11_token1] = ACTIONS(3374), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3372), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3372), - [aux_sym_gateway_ports_token1] = ACTIONS(3372), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3372), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3372), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3372), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3372), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3372), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3372), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3372), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3372), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3372), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3372), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3372), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3372), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3372), - [aux_sym_host_key_alias_token1] = ACTIONS(3372), - [aux_sym_hostname_token1] = ACTIONS(3372), - [aux_sym_identities_only_token1] = ACTIONS(3372), - [aux_sym_identity_agent_token1] = ACTIONS(3372), - [aux_sym_identity_file_token1] = ACTIONS(3372), - [aux_sym_ignore_unknown_token1] = ACTIONS(3372), - [aux_sym_include_token1] = ACTIONS(3372), - [aux_sym_ip_qos_token1] = ACTIONS(3372), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3372), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3372), - [aux_sym_kex_algorithms_token1] = ACTIONS(3372), - [aux_sym_known_hosts_command_token1] = ACTIONS(3372), - [aux_sym_local_command_token1] = ACTIONS(3372), - [aux_sym_local_forward_token1] = ACTIONS(3372), - [aux_sym_log_level_token1] = ACTIONS(3372), - [aux_sym_log_verbose_token1] = ACTIONS(3372), - [aux_sym_macs_token1] = ACTIONS(3372), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3372), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3372), - [aux_sym_password_authentication_token1] = ACTIONS(3372), - [aux_sym_permit_local_command_token1] = ACTIONS(3372), - [aux_sym_permit_remote_open_token1] = ACTIONS(3372), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3372), - [aux_sym_port_token1] = ACTIONS(3372), - [aux_sym_preferred_authentications_token1] = ACTIONS(3372), - [aux_sym_protocol_token1] = ACTIONS(3372), - [aux_sym_proxy_command_token1] = ACTIONS(3372), - [aux_sym_proxy_jump_token1] = ACTIONS(3372), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3372), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3372), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3372), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3372), - [aux_sym_rekey_limit_token1] = ACTIONS(3372), - [aux_sym_remote_command_token1] = ACTIONS(3372), - [aux_sym_remote_forward_token1] = ACTIONS(3372), - [aux_sym_request_tty_token1] = ACTIONS(3372), - [aux_sym_required_rsa_size_token1] = ACTIONS(3372), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3372), - [aux_sym_security_key_provider_token1] = ACTIONS(3372), - [aux_sym_send_env_token1] = ACTIONS(3372), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3372), - [aux_sym_server_alive_interval_token1] = ACTIONS(3372), - [aux_sym_session_type_token1] = ACTIONS(3372), - [aux_sym_set_env_token1] = ACTIONS(3372), - [aux_sym_stdin_null_token1] = ACTIONS(3372), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3372), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3372), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3372), - [aux_sym_syslog_facility_token1] = ACTIONS(3372), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3372), - [aux_sym_keep_alive_token1] = ACTIONS(3372), - [aux_sym_tag_token1] = ACTIONS(3372), - [aux_sym_tunnel_token1] = ACTIONS(3374), - [aux_sym_tunnel_device_token1] = ACTIONS(3372), - [aux_sym_update_host_keys_token1] = ACTIONS(3372), - [aux_sym_use_keychain_token1] = ACTIONS(3372), - [aux_sym_use_roaming_token1] = ACTIONS(3372), - [aux_sym_user_token1] = ACTIONS(3374), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3372), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3372), - [aux_sym_visual_host_key_token1] = ACTIONS(3372), - [aux_sym_xauth_location_token1] = ACTIONS(3372), + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3385), + [aux_sym_match_token1] = ACTIONS(3383), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3383), + [aux_sym_address_family_token1] = ACTIONS(3383), + [aux_sym_batch_mode_token1] = ACTIONS(3383), + [aux_sym_bind_address_token1] = ACTIONS(3383), + [aux_sym_bind_interface_token1] = ACTIONS(3383), + [aux_sym_canonical_domains_token1] = ACTIONS(3383), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3383), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3383), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3383), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3383), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3383), + [aux_sym_certificate_file_token1] = ACTIONS(3383), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3383), + [aux_sym_channel_timeout_token1] = ACTIONS(3383), + [aux_sym_check_host_ip_token1] = ACTIONS(3383), + [aux_sym_ciphers_token1] = ACTIONS(3383), + [aux_sym_cipher_token1] = ACTIONS(3385), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3383), + [aux_sym_compression_token1] = ACTIONS(3383), + [aux_sym_connection_attempts_token1] = ACTIONS(3383), + [aux_sym_connect_timeout_token1] = ACTIONS(3383), + [aux_sym_control_master_token1] = ACTIONS(3383), + [aux_sym_control_path_token1] = ACTIONS(3383), + [aux_sym_control_persist_token1] = ACTIONS(3383), + [aux_sym_dynamic_forward_token1] = ACTIONS(3383), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3383), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3383), + [aux_sym_escape_char_token1] = ACTIONS(3383), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3383), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3383), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3383), + [aux_sym_forward_agent_token1] = ACTIONS(3383), + [aux_sym_forward_x11_token1] = ACTIONS(3385), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3383), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3383), + [aux_sym_gateway_ports_token1] = ACTIONS(3383), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3383), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3383), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3383), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3383), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3383), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3383), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3383), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3383), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3383), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3383), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3383), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3383), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3383), + [aux_sym_host_key_alias_token1] = ACTIONS(3383), + [aux_sym_hostname_token1] = ACTIONS(3383), + [aux_sym_identities_only_token1] = ACTIONS(3383), + [aux_sym_identity_agent_token1] = ACTIONS(3383), + [aux_sym_identity_file_token1] = ACTIONS(3383), + [aux_sym_ignore_unknown_token1] = ACTIONS(3383), + [aux_sym_include_token1] = ACTIONS(3383), + [aux_sym_ip_qos_token1] = ACTIONS(3383), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3383), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3383), + [aux_sym_kex_algorithms_token1] = ACTIONS(3383), + [aux_sym_known_hosts_command_token1] = ACTIONS(3383), + [aux_sym_local_command_token1] = ACTIONS(3383), + [aux_sym_local_forward_token1] = ACTIONS(3383), + [aux_sym_log_level_token1] = ACTIONS(3383), + [aux_sym_log_verbose_token1] = ACTIONS(3383), + [aux_sym_macs_token1] = ACTIONS(3383), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3383), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3383), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3383), + [aux_sym_password_authentication_token1] = ACTIONS(3383), + [aux_sym_permit_local_command_token1] = ACTIONS(3383), + [aux_sym_permit_remote_open_token1] = ACTIONS(3383), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3383), + [aux_sym_port_token1] = ACTIONS(3383), + [aux_sym_preferred_authentications_token1] = ACTIONS(3383), + [aux_sym_protocol_token1] = ACTIONS(3383), + [aux_sym_proxy_command_token1] = ACTIONS(3383), + [aux_sym_proxy_jump_token1] = ACTIONS(3383), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3383), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3383), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3383), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3383), + [aux_sym_rekey_limit_token1] = ACTIONS(3383), + [aux_sym_remote_command_token1] = ACTIONS(3383), + [aux_sym_remote_forward_token1] = ACTIONS(3383), + [aux_sym_request_tty_token1] = ACTIONS(3383), + [aux_sym_required_rsa_size_token1] = ACTIONS(3383), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3383), + [aux_sym_security_key_provider_token1] = ACTIONS(3383), + [aux_sym_send_env_token1] = ACTIONS(3383), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3383), + [aux_sym_server_alive_interval_token1] = ACTIONS(3383), + [aux_sym_session_type_token1] = ACTIONS(3383), + [aux_sym_set_env_token1] = ACTIONS(3383), + [aux_sym_stdin_null_token1] = ACTIONS(3383), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3383), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3383), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3383), + [aux_sym_syslog_facility_token1] = ACTIONS(3383), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3383), + [aux_sym_keep_alive_token1] = ACTIONS(3383), + [aux_sym_tag_token1] = ACTIONS(3383), + [aux_sym_tunnel_token1] = ACTIONS(3385), + [aux_sym_tunnel_device_token1] = ACTIONS(3383), + [aux_sym_update_host_keys_token1] = ACTIONS(3383), + [aux_sym_use_keychain_token1] = ACTIONS(3383), + [aux_sym_use_roaming_token1] = ACTIONS(3383), + [aux_sym_user_token1] = ACTIONS(3385), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3383), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3383), + [aux_sym_visual_host_key_token1] = ACTIONS(3383), + [aux_sym_xauth_location_token1] = ACTIONS(3383), }, [582] = { - [ts_builtin_sym_end] = ACTIONS(3376), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3378), - [aux_sym_match_token1] = ACTIONS(3376), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3376), - [aux_sym_address_family_token1] = ACTIONS(3376), - [aux_sym_batch_mode_token1] = ACTIONS(3376), - [aux_sym_bind_address_token1] = ACTIONS(3376), - [aux_sym_bind_interface_token1] = ACTIONS(3376), - [aux_sym_canonical_domains_token1] = ACTIONS(3376), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3376), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3376), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3376), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3376), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3376), - [aux_sym_certificate_file_token1] = ACTIONS(3376), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3376), - [aux_sym_channel_timeout_token1] = ACTIONS(3376), - [aux_sym_check_host_ip_token1] = ACTIONS(3376), - [aux_sym_ciphers_token1] = ACTIONS(3376), - [aux_sym_cipher_token1] = ACTIONS(3378), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3376), - [aux_sym_compression_token1] = ACTIONS(3376), - [aux_sym_connection_attempts_token1] = ACTIONS(3376), - [aux_sym_connect_timeout_token1] = ACTIONS(3376), - [aux_sym_control_master_token1] = ACTIONS(3376), - [aux_sym_control_path_token1] = ACTIONS(3376), - [aux_sym_control_persist_token1] = ACTIONS(3376), - [aux_sym_dynamic_forward_token1] = ACTIONS(3376), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3376), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3376), - [aux_sym_escape_char_token1] = ACTIONS(3376), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3376), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3376), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3376), - [aux_sym_forward_agent_token1] = ACTIONS(3376), - [aux_sym_forward_x11_token1] = ACTIONS(3378), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3376), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3376), - [aux_sym_gateway_ports_token1] = ACTIONS(3376), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3376), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3376), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3376), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3376), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3376), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3376), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3376), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3376), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3376), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3376), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3376), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3376), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3376), - [aux_sym_host_key_alias_token1] = ACTIONS(3376), - [aux_sym_hostname_token1] = ACTIONS(3376), - [aux_sym_identities_only_token1] = ACTIONS(3376), - [aux_sym_identity_agent_token1] = ACTIONS(3376), - [aux_sym_identity_file_token1] = ACTIONS(3376), - [aux_sym_ignore_unknown_token1] = ACTIONS(3376), - [aux_sym_include_token1] = ACTIONS(3376), - [aux_sym_ip_qos_token1] = ACTIONS(3376), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3376), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3376), - [aux_sym_kex_algorithms_token1] = ACTIONS(3376), - [aux_sym_known_hosts_command_token1] = ACTIONS(3376), - [aux_sym_local_command_token1] = ACTIONS(3376), - [aux_sym_local_forward_token1] = ACTIONS(3376), - [aux_sym_log_level_token1] = ACTIONS(3376), - [aux_sym_log_verbose_token1] = ACTIONS(3376), - [aux_sym_macs_token1] = ACTIONS(3376), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3376), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3376), - [aux_sym_password_authentication_token1] = ACTIONS(3376), - [aux_sym_permit_local_command_token1] = ACTIONS(3376), - [aux_sym_permit_remote_open_token1] = ACTIONS(3376), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3376), - [aux_sym_port_token1] = ACTIONS(3376), - [aux_sym_preferred_authentications_token1] = ACTIONS(3376), - [aux_sym_protocol_token1] = ACTIONS(3376), - [aux_sym_proxy_command_token1] = ACTIONS(3376), - [aux_sym_proxy_jump_token1] = ACTIONS(3376), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3376), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3376), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3376), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3376), - [aux_sym_rekey_limit_token1] = ACTIONS(3376), - [aux_sym_remote_command_token1] = ACTIONS(3376), - [aux_sym_remote_forward_token1] = ACTIONS(3376), - [aux_sym_request_tty_token1] = ACTIONS(3376), - [aux_sym_required_rsa_size_token1] = ACTIONS(3376), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3376), - [aux_sym_security_key_provider_token1] = ACTIONS(3376), - [aux_sym_send_env_token1] = ACTIONS(3376), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3376), - [aux_sym_server_alive_interval_token1] = ACTIONS(3376), - [aux_sym_session_type_token1] = ACTIONS(3376), - [aux_sym_set_env_token1] = ACTIONS(3376), - [aux_sym_stdin_null_token1] = ACTIONS(3376), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3376), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3376), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3376), - [aux_sym_syslog_facility_token1] = ACTIONS(3376), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3376), - [aux_sym_keep_alive_token1] = ACTIONS(3376), - [aux_sym_tag_token1] = ACTIONS(3376), - [aux_sym_tunnel_token1] = ACTIONS(3378), - [aux_sym_tunnel_device_token1] = ACTIONS(3376), - [aux_sym_update_host_keys_token1] = ACTIONS(3376), - [aux_sym_use_keychain_token1] = ACTIONS(3376), - [aux_sym_use_roaming_token1] = ACTIONS(3376), - [aux_sym_user_token1] = ACTIONS(3378), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3376), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3376), - [aux_sym_visual_host_key_token1] = ACTIONS(3376), - [aux_sym_xauth_location_token1] = ACTIONS(3376), + [ts_builtin_sym_end] = ACTIONS(3387), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3389), + [aux_sym_match_token1] = ACTIONS(3387), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3387), + [aux_sym_address_family_token1] = ACTIONS(3387), + [aux_sym_batch_mode_token1] = ACTIONS(3387), + [aux_sym_bind_address_token1] = ACTIONS(3387), + [aux_sym_bind_interface_token1] = ACTIONS(3387), + [aux_sym_canonical_domains_token1] = ACTIONS(3387), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3387), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3387), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3387), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3387), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3387), + [aux_sym_certificate_file_token1] = ACTIONS(3387), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3387), + [aux_sym_channel_timeout_token1] = ACTIONS(3387), + [aux_sym_check_host_ip_token1] = ACTIONS(3387), + [aux_sym_ciphers_token1] = ACTIONS(3387), + [aux_sym_cipher_token1] = ACTIONS(3389), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3387), + [aux_sym_compression_token1] = ACTIONS(3387), + [aux_sym_connection_attempts_token1] = ACTIONS(3387), + [aux_sym_connect_timeout_token1] = ACTIONS(3387), + [aux_sym_control_master_token1] = ACTIONS(3387), + [aux_sym_control_path_token1] = ACTIONS(3387), + [aux_sym_control_persist_token1] = ACTIONS(3387), + [aux_sym_dynamic_forward_token1] = ACTIONS(3387), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3387), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3387), + [aux_sym_escape_char_token1] = ACTIONS(3387), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3387), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3387), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3387), + [aux_sym_forward_agent_token1] = ACTIONS(3387), + [aux_sym_forward_x11_token1] = ACTIONS(3389), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3387), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3387), + [aux_sym_gateway_ports_token1] = ACTIONS(3387), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3387), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3387), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3387), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3387), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3387), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3387), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3387), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3387), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3387), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3387), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3387), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3387), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3387), + [aux_sym_host_key_alias_token1] = ACTIONS(3387), + [aux_sym_hostname_token1] = ACTIONS(3387), + [aux_sym_identities_only_token1] = ACTIONS(3387), + [aux_sym_identity_agent_token1] = ACTIONS(3387), + [aux_sym_identity_file_token1] = ACTIONS(3387), + [aux_sym_ignore_unknown_token1] = ACTIONS(3387), + [aux_sym_include_token1] = ACTIONS(3387), + [aux_sym_ip_qos_token1] = ACTIONS(3387), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3387), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3387), + [aux_sym_kex_algorithms_token1] = ACTIONS(3387), + [aux_sym_known_hosts_command_token1] = ACTIONS(3387), + [aux_sym_local_command_token1] = ACTIONS(3387), + [aux_sym_local_forward_token1] = ACTIONS(3387), + [aux_sym_log_level_token1] = ACTIONS(3387), + [aux_sym_log_verbose_token1] = ACTIONS(3387), + [aux_sym_macs_token1] = ACTIONS(3387), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3387), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3387), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3387), + [aux_sym_password_authentication_token1] = ACTIONS(3387), + [aux_sym_permit_local_command_token1] = ACTIONS(3387), + [aux_sym_permit_remote_open_token1] = ACTIONS(3387), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3387), + [aux_sym_port_token1] = ACTIONS(3387), + [aux_sym_preferred_authentications_token1] = ACTIONS(3387), + [aux_sym_protocol_token1] = ACTIONS(3387), + [aux_sym_proxy_command_token1] = ACTIONS(3387), + [aux_sym_proxy_jump_token1] = ACTIONS(3387), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3387), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3387), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3387), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3387), + [aux_sym_rekey_limit_token1] = ACTIONS(3387), + [aux_sym_remote_command_token1] = ACTIONS(3387), + [aux_sym_remote_forward_token1] = ACTIONS(3387), + [aux_sym_request_tty_token1] = ACTIONS(3387), + [aux_sym_required_rsa_size_token1] = ACTIONS(3387), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3387), + [aux_sym_security_key_provider_token1] = ACTIONS(3387), + [aux_sym_send_env_token1] = ACTIONS(3387), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3387), + [aux_sym_server_alive_interval_token1] = ACTIONS(3387), + [aux_sym_session_type_token1] = ACTIONS(3387), + [aux_sym_set_env_token1] = ACTIONS(3387), + [aux_sym_stdin_null_token1] = ACTIONS(3387), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3387), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3387), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3387), + [aux_sym_syslog_facility_token1] = ACTIONS(3387), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3387), + [aux_sym_keep_alive_token1] = ACTIONS(3387), + [aux_sym_tag_token1] = ACTIONS(3387), + [aux_sym_tunnel_token1] = ACTIONS(3389), + [aux_sym_tunnel_device_token1] = ACTIONS(3387), + [aux_sym_update_host_keys_token1] = ACTIONS(3387), + [aux_sym_use_keychain_token1] = ACTIONS(3387), + [aux_sym_use_roaming_token1] = ACTIONS(3387), + [aux_sym_user_token1] = ACTIONS(3389), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3387), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3387), + [aux_sym_visual_host_key_token1] = ACTIONS(3387), + [aux_sym_xauth_location_token1] = ACTIONS(3387), }, [583] = { - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3382), - [aux_sym_match_token1] = ACTIONS(3380), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3380), - [aux_sym_address_family_token1] = ACTIONS(3380), - [aux_sym_batch_mode_token1] = ACTIONS(3380), - [aux_sym_bind_address_token1] = ACTIONS(3380), - [aux_sym_bind_interface_token1] = ACTIONS(3380), - [aux_sym_canonical_domains_token1] = ACTIONS(3380), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3380), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3380), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3380), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3380), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3380), - [aux_sym_certificate_file_token1] = ACTIONS(3380), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3380), - [aux_sym_channel_timeout_token1] = ACTIONS(3380), - [aux_sym_check_host_ip_token1] = ACTIONS(3380), - [aux_sym_ciphers_token1] = ACTIONS(3380), - [aux_sym_cipher_token1] = ACTIONS(3382), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3380), - [aux_sym_compression_token1] = ACTIONS(3380), - [aux_sym_connection_attempts_token1] = ACTIONS(3380), - [aux_sym_connect_timeout_token1] = ACTIONS(3380), - [aux_sym_control_master_token1] = ACTIONS(3380), - [aux_sym_control_path_token1] = ACTIONS(3380), - [aux_sym_control_persist_token1] = ACTIONS(3380), - [aux_sym_dynamic_forward_token1] = ACTIONS(3380), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3380), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3380), - [aux_sym_escape_char_token1] = ACTIONS(3380), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3380), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3380), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3380), - [aux_sym_forward_agent_token1] = ACTIONS(3380), - [aux_sym_forward_x11_token1] = ACTIONS(3382), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3380), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3380), - [aux_sym_gateway_ports_token1] = ACTIONS(3380), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3380), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3380), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3380), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3380), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3380), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3380), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3380), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3380), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3380), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3380), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3380), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3380), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3380), - [aux_sym_host_key_alias_token1] = ACTIONS(3380), - [aux_sym_hostname_token1] = ACTIONS(3380), - [aux_sym_identities_only_token1] = ACTIONS(3380), - [aux_sym_identity_agent_token1] = ACTIONS(3380), - [aux_sym_identity_file_token1] = ACTIONS(3380), - [aux_sym_ignore_unknown_token1] = ACTIONS(3380), - [aux_sym_include_token1] = ACTIONS(3380), - [aux_sym_ip_qos_token1] = ACTIONS(3380), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3380), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3380), - [aux_sym_kex_algorithms_token1] = ACTIONS(3380), - [aux_sym_known_hosts_command_token1] = ACTIONS(3380), - [aux_sym_local_command_token1] = ACTIONS(3380), - [aux_sym_local_forward_token1] = ACTIONS(3380), - [aux_sym_log_level_token1] = ACTIONS(3380), - [aux_sym_log_verbose_token1] = ACTIONS(3380), - [aux_sym_macs_token1] = ACTIONS(3380), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3380), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3380), - [aux_sym_password_authentication_token1] = ACTIONS(3380), - [aux_sym_permit_local_command_token1] = ACTIONS(3380), - [aux_sym_permit_remote_open_token1] = ACTIONS(3380), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3380), - [aux_sym_port_token1] = ACTIONS(3380), - [aux_sym_preferred_authentications_token1] = ACTIONS(3380), - [aux_sym_protocol_token1] = ACTIONS(3380), - [aux_sym_proxy_command_token1] = ACTIONS(3380), - [aux_sym_proxy_jump_token1] = ACTIONS(3380), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3380), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3380), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3380), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3380), - [aux_sym_rekey_limit_token1] = ACTIONS(3380), - [aux_sym_remote_command_token1] = ACTIONS(3380), - [aux_sym_remote_forward_token1] = ACTIONS(3380), - [aux_sym_request_tty_token1] = ACTIONS(3380), - [aux_sym_required_rsa_size_token1] = ACTIONS(3380), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3380), - [aux_sym_security_key_provider_token1] = ACTIONS(3380), - [aux_sym_send_env_token1] = ACTIONS(3380), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3380), - [aux_sym_server_alive_interval_token1] = ACTIONS(3380), - [aux_sym_session_type_token1] = ACTIONS(3380), - [aux_sym_set_env_token1] = ACTIONS(3380), - [aux_sym_stdin_null_token1] = ACTIONS(3380), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3380), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3380), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3380), - [aux_sym_syslog_facility_token1] = ACTIONS(3380), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3380), - [aux_sym_keep_alive_token1] = ACTIONS(3380), - [aux_sym_tag_token1] = ACTIONS(3380), - [aux_sym_tunnel_token1] = ACTIONS(3382), - [aux_sym_tunnel_device_token1] = ACTIONS(3380), - [aux_sym_update_host_keys_token1] = ACTIONS(3380), - [aux_sym_use_keychain_token1] = ACTIONS(3380), - [aux_sym_use_roaming_token1] = ACTIONS(3380), - [aux_sym_user_token1] = ACTIONS(3382), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3380), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3380), - [aux_sym_visual_host_key_token1] = ACTIONS(3380), - [aux_sym_xauth_location_token1] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(1043), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1045), + [aux_sym_match_token1] = ACTIONS(1043), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1043), + [aux_sym_address_family_token1] = ACTIONS(1043), + [aux_sym_batch_mode_token1] = ACTIONS(1043), + [aux_sym_bind_address_token1] = ACTIONS(1043), + [aux_sym_bind_interface_token1] = ACTIONS(1043), + [aux_sym_canonical_domains_token1] = ACTIONS(1043), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1043), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1043), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1043), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1043), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1043), + [aux_sym_certificate_file_token1] = ACTIONS(1043), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1043), + [aux_sym_channel_timeout_token1] = ACTIONS(1043), + [aux_sym_check_host_ip_token1] = ACTIONS(1043), + [aux_sym_ciphers_token1] = ACTIONS(1043), + [aux_sym_cipher_token1] = ACTIONS(1045), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1043), + [aux_sym_compression_token1] = ACTIONS(1043), + [aux_sym_connection_attempts_token1] = ACTIONS(1043), + [aux_sym_connect_timeout_token1] = ACTIONS(1043), + [aux_sym_control_master_token1] = ACTIONS(1043), + [aux_sym_control_path_token1] = ACTIONS(1043), + [aux_sym_control_persist_token1] = ACTIONS(1043), + [aux_sym_dynamic_forward_token1] = ACTIONS(1043), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1043), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1043), + [aux_sym_escape_char_token1] = ACTIONS(1043), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1043), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1043), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1043), + [aux_sym_forward_agent_token1] = ACTIONS(1043), + [aux_sym_forward_x11_token1] = ACTIONS(1045), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1043), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1043), + [aux_sym_gateway_ports_token1] = ACTIONS(1043), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1043), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1043), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1043), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1043), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1043), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1043), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1043), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1043), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1043), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1043), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1043), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1043), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1043), + [aux_sym_host_key_alias_token1] = ACTIONS(1043), + [aux_sym_hostname_token1] = ACTIONS(1043), + [aux_sym_identities_only_token1] = ACTIONS(1043), + [aux_sym_identity_agent_token1] = ACTIONS(1043), + [aux_sym_identity_file_token1] = ACTIONS(1043), + [aux_sym_ignore_unknown_token1] = ACTIONS(1043), + [aux_sym_include_token1] = ACTIONS(1043), + [aux_sym_ip_qos_token1] = ACTIONS(1043), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1043), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1043), + [aux_sym_kex_algorithms_token1] = ACTIONS(1043), + [aux_sym_known_hosts_command_token1] = ACTIONS(1043), + [aux_sym_local_command_token1] = ACTIONS(1043), + [aux_sym_local_forward_token1] = ACTIONS(1043), + [aux_sym_log_level_token1] = ACTIONS(1043), + [aux_sym_log_verbose_token1] = ACTIONS(1043), + [aux_sym_macs_token1] = ACTIONS(1043), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1043), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1043), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1043), + [aux_sym_password_authentication_token1] = ACTIONS(1043), + [aux_sym_permit_local_command_token1] = ACTIONS(1043), + [aux_sym_permit_remote_open_token1] = ACTIONS(1043), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1043), + [aux_sym_port_token1] = ACTIONS(1043), + [aux_sym_preferred_authentications_token1] = ACTIONS(1043), + [aux_sym_protocol_token1] = ACTIONS(1043), + [aux_sym_proxy_command_token1] = ACTIONS(1043), + [aux_sym_proxy_jump_token1] = ACTIONS(1043), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1043), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1043), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1043), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1043), + [aux_sym_rekey_limit_token1] = ACTIONS(1043), + [aux_sym_remote_command_token1] = ACTIONS(1043), + [aux_sym_remote_forward_token1] = ACTIONS(1043), + [aux_sym_request_tty_token1] = ACTIONS(1043), + [aux_sym_required_rsa_size_token1] = ACTIONS(1043), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1043), + [aux_sym_security_key_provider_token1] = ACTIONS(1043), + [aux_sym_send_env_token1] = ACTIONS(1043), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1043), + [aux_sym_server_alive_interval_token1] = ACTIONS(1043), + [aux_sym_session_type_token1] = ACTIONS(1043), + [aux_sym_set_env_token1] = ACTIONS(1043), + [aux_sym_stdin_null_token1] = ACTIONS(1043), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1043), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1043), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1043), + [aux_sym_syslog_facility_token1] = ACTIONS(1043), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1043), + [aux_sym_keep_alive_token1] = ACTIONS(1043), + [aux_sym_tag_token1] = ACTIONS(1043), + [aux_sym_tunnel_token1] = ACTIONS(1045), + [aux_sym_tunnel_device_token1] = ACTIONS(1043), + [aux_sym_update_host_keys_token1] = ACTIONS(1043), + [aux_sym_use_keychain_token1] = ACTIONS(1043), + [aux_sym_use_roaming_token1] = ACTIONS(1043), + [aux_sym_user_token1] = ACTIONS(1045), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1043), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1043), + [aux_sym_visual_host_key_token1] = ACTIONS(1043), + [aux_sym_xauth_location_token1] = ACTIONS(1043), }, [584] = { - [ts_builtin_sym_end] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3386), - [aux_sym_match_token1] = ACTIONS(3384), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3384), - [aux_sym_address_family_token1] = ACTIONS(3384), - [aux_sym_batch_mode_token1] = ACTIONS(3384), - [aux_sym_bind_address_token1] = ACTIONS(3384), - [aux_sym_bind_interface_token1] = ACTIONS(3384), - [aux_sym_canonical_domains_token1] = ACTIONS(3384), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3384), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3384), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3384), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3384), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3384), - [aux_sym_certificate_file_token1] = ACTIONS(3384), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3384), - [aux_sym_channel_timeout_token1] = ACTIONS(3384), - [aux_sym_check_host_ip_token1] = ACTIONS(3384), - [aux_sym_ciphers_token1] = ACTIONS(3384), - [aux_sym_cipher_token1] = ACTIONS(3386), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3384), - [aux_sym_compression_token1] = ACTIONS(3384), - [aux_sym_connection_attempts_token1] = ACTIONS(3384), - [aux_sym_connect_timeout_token1] = ACTIONS(3384), - [aux_sym_control_master_token1] = ACTIONS(3384), - [aux_sym_control_path_token1] = ACTIONS(3384), - [aux_sym_control_persist_token1] = ACTIONS(3384), - [aux_sym_dynamic_forward_token1] = ACTIONS(3384), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3384), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3384), - [aux_sym_escape_char_token1] = ACTIONS(3384), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3384), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3384), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3384), - [aux_sym_forward_agent_token1] = ACTIONS(3384), - [aux_sym_forward_x11_token1] = ACTIONS(3386), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3384), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3384), - [aux_sym_gateway_ports_token1] = ACTIONS(3384), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3384), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3384), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3384), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3384), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3384), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3384), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3384), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3384), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3384), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3384), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3384), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3384), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3384), - [aux_sym_host_key_alias_token1] = ACTIONS(3384), - [aux_sym_hostname_token1] = ACTIONS(3384), - [aux_sym_identities_only_token1] = ACTIONS(3384), - [aux_sym_identity_agent_token1] = ACTIONS(3384), - [aux_sym_identity_file_token1] = ACTIONS(3384), - [aux_sym_ignore_unknown_token1] = ACTIONS(3384), - [aux_sym_include_token1] = ACTIONS(3384), - [aux_sym_ip_qos_token1] = ACTIONS(3384), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3384), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3384), - [aux_sym_kex_algorithms_token1] = ACTIONS(3384), - [aux_sym_known_hosts_command_token1] = ACTIONS(3384), - [aux_sym_local_command_token1] = ACTIONS(3384), - [aux_sym_local_forward_token1] = ACTIONS(3384), - [aux_sym_log_level_token1] = ACTIONS(3384), - [aux_sym_log_verbose_token1] = ACTIONS(3384), - [aux_sym_macs_token1] = ACTIONS(3384), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3384), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3384), - [aux_sym_password_authentication_token1] = ACTIONS(3384), - [aux_sym_permit_local_command_token1] = ACTIONS(3384), - [aux_sym_permit_remote_open_token1] = ACTIONS(3384), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3384), - [aux_sym_port_token1] = ACTIONS(3384), - [aux_sym_preferred_authentications_token1] = ACTIONS(3384), - [aux_sym_protocol_token1] = ACTIONS(3384), - [aux_sym_proxy_command_token1] = ACTIONS(3384), - [aux_sym_proxy_jump_token1] = ACTIONS(3384), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3384), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3384), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3384), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3384), - [aux_sym_rekey_limit_token1] = ACTIONS(3384), - [aux_sym_remote_command_token1] = ACTIONS(3384), - [aux_sym_remote_forward_token1] = ACTIONS(3384), - [aux_sym_request_tty_token1] = ACTIONS(3384), - [aux_sym_required_rsa_size_token1] = ACTIONS(3384), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3384), - [aux_sym_security_key_provider_token1] = ACTIONS(3384), - [aux_sym_send_env_token1] = ACTIONS(3384), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3384), - [aux_sym_server_alive_interval_token1] = ACTIONS(3384), - [aux_sym_session_type_token1] = ACTIONS(3384), - [aux_sym_set_env_token1] = ACTIONS(3384), - [aux_sym_stdin_null_token1] = ACTIONS(3384), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3384), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3384), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3384), - [aux_sym_syslog_facility_token1] = ACTIONS(3384), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3384), - [aux_sym_keep_alive_token1] = ACTIONS(3384), - [aux_sym_tag_token1] = ACTIONS(3384), - [aux_sym_tunnel_token1] = ACTIONS(3386), - [aux_sym_tunnel_device_token1] = ACTIONS(3384), - [aux_sym_update_host_keys_token1] = ACTIONS(3384), - [aux_sym_use_keychain_token1] = ACTIONS(3384), - [aux_sym_use_roaming_token1] = ACTIONS(3384), - [aux_sym_user_token1] = ACTIONS(3386), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3384), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3384), - [aux_sym_visual_host_key_token1] = ACTIONS(3384), - [aux_sym_xauth_location_token1] = ACTIONS(3384), + [ts_builtin_sym_end] = ACTIONS(1301), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1303), + [aux_sym_match_token1] = ACTIONS(1301), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1301), + [aux_sym_address_family_token1] = ACTIONS(1301), + [aux_sym_batch_mode_token1] = ACTIONS(1301), + [aux_sym_bind_address_token1] = ACTIONS(1301), + [aux_sym_bind_interface_token1] = ACTIONS(1301), + [aux_sym_canonical_domains_token1] = ACTIONS(1301), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1301), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1301), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1301), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1301), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1301), + [aux_sym_certificate_file_token1] = ACTIONS(1301), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1301), + [aux_sym_channel_timeout_token1] = ACTIONS(1301), + [aux_sym_check_host_ip_token1] = ACTIONS(1301), + [aux_sym_ciphers_token1] = ACTIONS(1301), + [aux_sym_cipher_token1] = ACTIONS(1303), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1301), + [aux_sym_compression_token1] = ACTIONS(1301), + [aux_sym_connection_attempts_token1] = ACTIONS(1301), + [aux_sym_connect_timeout_token1] = ACTIONS(1301), + [aux_sym_control_master_token1] = ACTIONS(1301), + [aux_sym_control_path_token1] = ACTIONS(1301), + [aux_sym_control_persist_token1] = ACTIONS(1301), + [aux_sym_dynamic_forward_token1] = ACTIONS(1301), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1301), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1301), + [aux_sym_escape_char_token1] = ACTIONS(1301), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1301), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1301), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1301), + [aux_sym_forward_agent_token1] = ACTIONS(1301), + [aux_sym_forward_x11_token1] = ACTIONS(1303), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1301), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1301), + [aux_sym_gateway_ports_token1] = ACTIONS(1301), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1301), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1301), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1301), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1301), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1301), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1301), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1301), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1301), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1301), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1301), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1301), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1301), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1301), + [aux_sym_host_key_alias_token1] = ACTIONS(1301), + [aux_sym_hostname_token1] = ACTIONS(1301), + [aux_sym_identities_only_token1] = ACTIONS(1301), + [aux_sym_identity_agent_token1] = ACTIONS(1301), + [aux_sym_identity_file_token1] = ACTIONS(1301), + [aux_sym_ignore_unknown_token1] = ACTIONS(1301), + [aux_sym_include_token1] = ACTIONS(1301), + [aux_sym_ip_qos_token1] = ACTIONS(1301), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1301), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1301), + [aux_sym_kex_algorithms_token1] = ACTIONS(1301), + [aux_sym_known_hosts_command_token1] = ACTIONS(1301), + [aux_sym_local_command_token1] = ACTIONS(1301), + [aux_sym_local_forward_token1] = ACTIONS(1301), + [aux_sym_log_level_token1] = ACTIONS(1301), + [aux_sym_log_verbose_token1] = ACTIONS(1301), + [aux_sym_macs_token1] = ACTIONS(1301), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1301), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1301), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1301), + [aux_sym_password_authentication_token1] = ACTIONS(1301), + [aux_sym_permit_local_command_token1] = ACTIONS(1301), + [aux_sym_permit_remote_open_token1] = ACTIONS(1301), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1301), + [aux_sym_port_token1] = ACTIONS(1301), + [aux_sym_preferred_authentications_token1] = ACTIONS(1301), + [aux_sym_protocol_token1] = ACTIONS(1301), + [aux_sym_proxy_command_token1] = ACTIONS(1301), + [aux_sym_proxy_jump_token1] = ACTIONS(1301), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1301), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1301), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1301), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1301), + [aux_sym_rekey_limit_token1] = ACTIONS(1301), + [aux_sym_remote_command_token1] = ACTIONS(1301), + [aux_sym_remote_forward_token1] = ACTIONS(1301), + [aux_sym_request_tty_token1] = ACTIONS(1301), + [aux_sym_required_rsa_size_token1] = ACTIONS(1301), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1301), + [aux_sym_security_key_provider_token1] = ACTIONS(1301), + [aux_sym_send_env_token1] = ACTIONS(1301), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1301), + [aux_sym_server_alive_interval_token1] = ACTIONS(1301), + [aux_sym_session_type_token1] = ACTIONS(1301), + [aux_sym_set_env_token1] = ACTIONS(1301), + [aux_sym_stdin_null_token1] = ACTIONS(1301), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1301), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1301), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1301), + [aux_sym_syslog_facility_token1] = ACTIONS(1301), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1301), + [aux_sym_keep_alive_token1] = ACTIONS(1301), + [aux_sym_tag_token1] = ACTIONS(1301), + [aux_sym_tunnel_token1] = ACTIONS(1303), + [aux_sym_tunnel_device_token1] = ACTIONS(1301), + [aux_sym_update_host_keys_token1] = ACTIONS(1301), + [aux_sym_use_keychain_token1] = ACTIONS(1301), + [aux_sym_use_roaming_token1] = ACTIONS(1301), + [aux_sym_user_token1] = ACTIONS(1303), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1301), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1301), + [aux_sym_visual_host_key_token1] = ACTIONS(1301), + [aux_sym_xauth_location_token1] = ACTIONS(1301), }, [585] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1508), - [aux_sym_match_token1] = ACTIONS(1506), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1506), - [aux_sym_address_family_token1] = ACTIONS(1506), - [aux_sym_batch_mode_token1] = ACTIONS(1506), - [aux_sym_bind_address_token1] = ACTIONS(1506), - [aux_sym_bind_interface_token1] = ACTIONS(1506), - [aux_sym_canonical_domains_token1] = ACTIONS(1506), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1506), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1506), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1506), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1506), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1506), - [aux_sym_certificate_file_token1] = ACTIONS(1506), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1506), - [aux_sym_channel_timeout_token1] = ACTIONS(1506), - [aux_sym_check_host_ip_token1] = ACTIONS(1506), - [aux_sym_ciphers_token1] = ACTIONS(1506), - [aux_sym_cipher_token1] = ACTIONS(1508), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1506), - [aux_sym_compression_token1] = ACTIONS(1506), - [aux_sym_connection_attempts_token1] = ACTIONS(1506), - [aux_sym_connect_timeout_token1] = ACTIONS(1506), - [aux_sym_control_master_token1] = ACTIONS(1506), - [aux_sym_control_path_token1] = ACTIONS(1506), - [aux_sym_control_persist_token1] = ACTIONS(1506), - [aux_sym_dynamic_forward_token1] = ACTIONS(1506), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1506), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1506), - [aux_sym_escape_char_token1] = ACTIONS(1506), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1506), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1506), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1506), - [aux_sym_forward_agent_token1] = ACTIONS(1506), - [aux_sym_forward_x11_token1] = ACTIONS(1508), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1506), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1506), - [aux_sym_gateway_ports_token1] = ACTIONS(1506), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1506), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1506), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1506), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1506), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1506), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1506), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1506), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1506), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1506), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1506), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1506), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1506), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1506), - [aux_sym_host_key_alias_token1] = ACTIONS(1506), - [aux_sym_hostname_token1] = ACTIONS(1506), - [aux_sym_identities_only_token1] = ACTIONS(1506), - [aux_sym_identity_agent_token1] = ACTIONS(1506), - [aux_sym_identity_file_token1] = ACTIONS(1506), - [aux_sym_ignore_unknown_token1] = ACTIONS(1506), - [aux_sym_include_token1] = ACTIONS(1506), - [aux_sym_ip_qos_token1] = ACTIONS(1506), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1506), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1506), - [aux_sym_kex_algorithms_token1] = ACTIONS(1506), - [aux_sym_known_hosts_command_token1] = ACTIONS(1506), - [aux_sym_local_command_token1] = ACTIONS(1506), - [aux_sym_local_forward_token1] = ACTIONS(1506), - [aux_sym_log_level_token1] = ACTIONS(1506), - [aux_sym_log_verbose_token1] = ACTIONS(1506), - [aux_sym_macs_token1] = ACTIONS(1506), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1506), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1506), - [aux_sym_password_authentication_token1] = ACTIONS(1506), - [aux_sym_permit_local_command_token1] = ACTIONS(1506), - [aux_sym_permit_remote_open_token1] = ACTIONS(1506), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1506), - [aux_sym_port_token1] = ACTIONS(1506), - [aux_sym_preferred_authentications_token1] = ACTIONS(1506), - [aux_sym_protocol_token1] = ACTIONS(1506), - [aux_sym_proxy_command_token1] = ACTIONS(1506), - [aux_sym_proxy_jump_token1] = ACTIONS(1506), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1506), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1506), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1506), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1506), - [aux_sym_rekey_limit_token1] = ACTIONS(1506), - [aux_sym_remote_command_token1] = ACTIONS(1506), - [aux_sym_remote_forward_token1] = ACTIONS(1506), - [aux_sym_request_tty_token1] = ACTIONS(1506), - [aux_sym_required_rsa_size_token1] = ACTIONS(1506), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1506), - [aux_sym_security_key_provider_token1] = ACTIONS(1506), - [aux_sym_send_env_token1] = ACTIONS(1506), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1506), - [aux_sym_server_alive_interval_token1] = ACTIONS(1506), - [aux_sym_session_type_token1] = ACTIONS(1506), - [aux_sym_set_env_token1] = ACTIONS(1506), - [aux_sym_stdin_null_token1] = ACTIONS(1506), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1506), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1506), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1506), - [aux_sym_syslog_facility_token1] = ACTIONS(1506), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1506), - [aux_sym_keep_alive_token1] = ACTIONS(1506), - [aux_sym_tag_token1] = ACTIONS(1506), - [aux_sym_tunnel_token1] = ACTIONS(1508), - [aux_sym_tunnel_device_token1] = ACTIONS(1506), - [aux_sym_update_host_keys_token1] = ACTIONS(1506), - [aux_sym_use_keychain_token1] = ACTIONS(1506), - [aux_sym_use_roaming_token1] = ACTIONS(1506), - [aux_sym_user_token1] = ACTIONS(1508), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1506), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1506), - [aux_sym_visual_host_key_token1] = ACTIONS(1506), - [aux_sym_xauth_location_token1] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1601), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1603), + [aux_sym_match_token1] = ACTIONS(1601), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1601), + [aux_sym_address_family_token1] = ACTIONS(1601), + [aux_sym_batch_mode_token1] = ACTIONS(1601), + [aux_sym_bind_address_token1] = ACTIONS(1601), + [aux_sym_bind_interface_token1] = ACTIONS(1601), + [aux_sym_canonical_domains_token1] = ACTIONS(1601), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1601), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1601), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1601), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1601), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1601), + [aux_sym_certificate_file_token1] = ACTIONS(1601), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1601), + [aux_sym_channel_timeout_token1] = ACTIONS(1601), + [aux_sym_check_host_ip_token1] = ACTIONS(1601), + [aux_sym_ciphers_token1] = ACTIONS(1601), + [aux_sym_cipher_token1] = ACTIONS(1603), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1601), + [aux_sym_compression_token1] = ACTIONS(1601), + [aux_sym_connection_attempts_token1] = ACTIONS(1601), + [aux_sym_connect_timeout_token1] = ACTIONS(1601), + [aux_sym_control_master_token1] = ACTIONS(1601), + [aux_sym_control_path_token1] = ACTIONS(1601), + [aux_sym_control_persist_token1] = ACTIONS(1601), + [aux_sym_dynamic_forward_token1] = ACTIONS(1601), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1601), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1601), + [aux_sym_escape_char_token1] = ACTIONS(1601), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1601), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1601), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1601), + [aux_sym_forward_agent_token1] = ACTIONS(1601), + [aux_sym_forward_x11_token1] = ACTIONS(1603), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1601), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1601), + [aux_sym_gateway_ports_token1] = ACTIONS(1601), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1601), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1601), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1601), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1601), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1601), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1601), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1601), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1601), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1601), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1601), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1601), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1601), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1601), + [aux_sym_host_key_alias_token1] = ACTIONS(1601), + [aux_sym_hostname_token1] = ACTIONS(1601), + [aux_sym_identities_only_token1] = ACTIONS(1601), + [aux_sym_identity_agent_token1] = ACTIONS(1601), + [aux_sym_identity_file_token1] = ACTIONS(1601), + [aux_sym_ignore_unknown_token1] = ACTIONS(1601), + [aux_sym_include_token1] = ACTIONS(1601), + [aux_sym_ip_qos_token1] = ACTIONS(1601), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1601), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1601), + [aux_sym_kex_algorithms_token1] = ACTIONS(1601), + [aux_sym_known_hosts_command_token1] = ACTIONS(1601), + [aux_sym_local_command_token1] = ACTIONS(1601), + [aux_sym_local_forward_token1] = ACTIONS(1601), + [aux_sym_log_level_token1] = ACTIONS(1601), + [aux_sym_log_verbose_token1] = ACTIONS(1601), + [aux_sym_macs_token1] = ACTIONS(1601), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1601), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1601), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1601), + [aux_sym_password_authentication_token1] = ACTIONS(1601), + [aux_sym_permit_local_command_token1] = ACTIONS(1601), + [aux_sym_permit_remote_open_token1] = ACTIONS(1601), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1601), + [aux_sym_port_token1] = ACTIONS(1601), + [aux_sym_preferred_authentications_token1] = ACTIONS(1601), + [aux_sym_protocol_token1] = ACTIONS(1601), + [aux_sym_proxy_command_token1] = ACTIONS(1601), + [aux_sym_proxy_jump_token1] = ACTIONS(1601), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1601), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1601), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1601), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1601), + [aux_sym_rekey_limit_token1] = ACTIONS(1601), + [aux_sym_remote_command_token1] = ACTIONS(1601), + [aux_sym_remote_forward_token1] = ACTIONS(1601), + [aux_sym_request_tty_token1] = ACTIONS(1601), + [aux_sym_required_rsa_size_token1] = ACTIONS(1601), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1601), + [aux_sym_security_key_provider_token1] = ACTIONS(1601), + [aux_sym_send_env_token1] = ACTIONS(1601), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1601), + [aux_sym_server_alive_interval_token1] = ACTIONS(1601), + [aux_sym_session_type_token1] = ACTIONS(1601), + [aux_sym_set_env_token1] = ACTIONS(1601), + [aux_sym_stdin_null_token1] = ACTIONS(1601), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1601), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1601), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1601), + [aux_sym_syslog_facility_token1] = ACTIONS(1601), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1601), + [aux_sym_keep_alive_token1] = ACTIONS(1601), + [aux_sym_tag_token1] = ACTIONS(1601), + [aux_sym_tunnel_token1] = ACTIONS(1603), + [aux_sym_tunnel_device_token1] = ACTIONS(1601), + [aux_sym_update_host_keys_token1] = ACTIONS(1601), + [aux_sym_use_keychain_token1] = ACTIONS(1601), + [aux_sym_use_roaming_token1] = ACTIONS(1601), + [aux_sym_user_token1] = ACTIONS(1603), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1601), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1601), + [aux_sym_visual_host_key_token1] = ACTIONS(1601), + [aux_sym_xauth_location_token1] = ACTIONS(1601), }, [586] = { - [ts_builtin_sym_end] = ACTIONS(1200), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1202), - [aux_sym_match_token1] = ACTIONS(1200), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1200), - [aux_sym_address_family_token1] = ACTIONS(1200), - [aux_sym_batch_mode_token1] = ACTIONS(1200), - [aux_sym_bind_address_token1] = ACTIONS(1200), - [aux_sym_bind_interface_token1] = ACTIONS(1200), - [aux_sym_canonical_domains_token1] = ACTIONS(1200), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1200), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1200), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1200), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1200), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1200), - [aux_sym_certificate_file_token1] = ACTIONS(1200), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1200), - [aux_sym_channel_timeout_token1] = ACTIONS(1200), - [aux_sym_check_host_ip_token1] = ACTIONS(1200), - [aux_sym_ciphers_token1] = ACTIONS(1200), - [aux_sym_cipher_token1] = ACTIONS(1202), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1200), - [aux_sym_compression_token1] = ACTIONS(1200), - [aux_sym_connection_attempts_token1] = ACTIONS(1200), - [aux_sym_connect_timeout_token1] = ACTIONS(1200), - [aux_sym_control_master_token1] = ACTIONS(1200), - [aux_sym_control_path_token1] = ACTIONS(1200), - [aux_sym_control_persist_token1] = ACTIONS(1200), - [aux_sym_dynamic_forward_token1] = ACTIONS(1200), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1200), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1200), - [aux_sym_escape_char_token1] = ACTIONS(1200), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1200), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1200), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1200), - [aux_sym_forward_agent_token1] = ACTIONS(1200), - [aux_sym_forward_x11_token1] = ACTIONS(1202), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1200), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1200), - [aux_sym_gateway_ports_token1] = ACTIONS(1200), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1200), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1200), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1200), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1200), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1200), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1200), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1200), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1200), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1200), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1200), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1200), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1200), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1200), - [aux_sym_host_key_alias_token1] = ACTIONS(1200), - [aux_sym_hostname_token1] = ACTIONS(1200), - [aux_sym_identities_only_token1] = ACTIONS(1200), - [aux_sym_identity_agent_token1] = ACTIONS(1200), - [aux_sym_identity_file_token1] = ACTIONS(1200), - [aux_sym_ignore_unknown_token1] = ACTIONS(1200), - [aux_sym_include_token1] = ACTIONS(1200), - [aux_sym_ip_qos_token1] = ACTIONS(1200), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1200), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1200), - [aux_sym_kex_algorithms_token1] = ACTIONS(1200), - [aux_sym_known_hosts_command_token1] = ACTIONS(1200), - [aux_sym_local_command_token1] = ACTIONS(1200), - [aux_sym_local_forward_token1] = ACTIONS(1200), - [aux_sym_log_level_token1] = ACTIONS(1200), - [aux_sym_log_verbose_token1] = ACTIONS(1200), - [aux_sym_macs_token1] = ACTIONS(1200), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1200), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1200), - [aux_sym_password_authentication_token1] = ACTIONS(1200), - [aux_sym_permit_local_command_token1] = ACTIONS(1200), - [aux_sym_permit_remote_open_token1] = ACTIONS(1200), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1200), - [aux_sym_port_token1] = ACTIONS(1200), - [aux_sym_preferred_authentications_token1] = ACTIONS(1200), - [aux_sym_protocol_token1] = ACTIONS(1200), - [aux_sym_proxy_command_token1] = ACTIONS(1200), - [aux_sym_proxy_jump_token1] = ACTIONS(1200), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1200), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1200), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1200), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1200), - [aux_sym_rekey_limit_token1] = ACTIONS(1200), - [aux_sym_remote_command_token1] = ACTIONS(1200), - [aux_sym_remote_forward_token1] = ACTIONS(1200), - [aux_sym_request_tty_token1] = ACTIONS(1200), - [aux_sym_required_rsa_size_token1] = ACTIONS(1200), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1200), - [aux_sym_security_key_provider_token1] = ACTIONS(1200), - [aux_sym_send_env_token1] = ACTIONS(1200), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1200), - [aux_sym_server_alive_interval_token1] = ACTIONS(1200), - [aux_sym_session_type_token1] = ACTIONS(1200), - [aux_sym_set_env_token1] = ACTIONS(1200), - [aux_sym_stdin_null_token1] = ACTIONS(1200), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1200), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1200), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1200), - [aux_sym_syslog_facility_token1] = ACTIONS(1200), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1200), - [aux_sym_keep_alive_token1] = ACTIONS(1200), - [aux_sym_tag_token1] = ACTIONS(1200), - [aux_sym_tunnel_token1] = ACTIONS(1202), - [aux_sym_tunnel_device_token1] = ACTIONS(1200), - [aux_sym_update_host_keys_token1] = ACTIONS(1200), - [aux_sym_use_keychain_token1] = ACTIONS(1200), - [aux_sym_use_roaming_token1] = ACTIONS(1200), - [aux_sym_user_token1] = ACTIONS(1202), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1200), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1200), - [aux_sym_visual_host_key_token1] = ACTIONS(1200), - [aux_sym_xauth_location_token1] = ACTIONS(1200), + [ts_builtin_sym_end] = ACTIONS(1037), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1039), + [aux_sym_match_token1] = ACTIONS(1037), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1037), + [aux_sym_address_family_token1] = ACTIONS(1037), + [aux_sym_batch_mode_token1] = ACTIONS(1037), + [aux_sym_bind_address_token1] = ACTIONS(1037), + [aux_sym_bind_interface_token1] = ACTIONS(1037), + [aux_sym_canonical_domains_token1] = ACTIONS(1037), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1037), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1037), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1037), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1037), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1037), + [aux_sym_certificate_file_token1] = ACTIONS(1037), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1037), + [aux_sym_channel_timeout_token1] = ACTIONS(1037), + [aux_sym_check_host_ip_token1] = ACTIONS(1037), + [aux_sym_ciphers_token1] = ACTIONS(1037), + [aux_sym_cipher_token1] = ACTIONS(1039), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1037), + [aux_sym_compression_token1] = ACTIONS(1037), + [aux_sym_connection_attempts_token1] = ACTIONS(1037), + [aux_sym_connect_timeout_token1] = ACTIONS(1037), + [aux_sym_control_master_token1] = ACTIONS(1037), + [aux_sym_control_path_token1] = ACTIONS(1037), + [aux_sym_control_persist_token1] = ACTIONS(1037), + [aux_sym_dynamic_forward_token1] = ACTIONS(1037), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1037), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1037), + [aux_sym_escape_char_token1] = ACTIONS(1037), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1037), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1037), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1037), + [aux_sym_forward_agent_token1] = ACTIONS(1037), + [aux_sym_forward_x11_token1] = ACTIONS(1039), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1037), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1037), + [aux_sym_gateway_ports_token1] = ACTIONS(1037), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1037), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1037), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1037), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1037), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1037), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1037), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1037), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1037), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1037), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1037), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1037), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1037), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1037), + [aux_sym_host_key_alias_token1] = ACTIONS(1037), + [aux_sym_hostname_token1] = ACTIONS(1037), + [aux_sym_identities_only_token1] = ACTIONS(1037), + [aux_sym_identity_agent_token1] = ACTIONS(1037), + [aux_sym_identity_file_token1] = ACTIONS(1037), + [aux_sym_ignore_unknown_token1] = ACTIONS(1037), + [aux_sym_include_token1] = ACTIONS(1037), + [aux_sym_ip_qos_token1] = ACTIONS(1037), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1037), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1037), + [aux_sym_kex_algorithms_token1] = ACTIONS(1037), + [aux_sym_known_hosts_command_token1] = ACTIONS(1037), + [aux_sym_local_command_token1] = ACTIONS(1037), + [aux_sym_local_forward_token1] = ACTIONS(1037), + [aux_sym_log_level_token1] = ACTIONS(1037), + [aux_sym_log_verbose_token1] = ACTIONS(1037), + [aux_sym_macs_token1] = ACTIONS(1037), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1037), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1037), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1037), + [aux_sym_password_authentication_token1] = ACTIONS(1037), + [aux_sym_permit_local_command_token1] = ACTIONS(1037), + [aux_sym_permit_remote_open_token1] = ACTIONS(1037), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1037), + [aux_sym_port_token1] = ACTIONS(1037), + [aux_sym_preferred_authentications_token1] = ACTIONS(1037), + [aux_sym_protocol_token1] = ACTIONS(1037), + [aux_sym_proxy_command_token1] = ACTIONS(1037), + [aux_sym_proxy_jump_token1] = ACTIONS(1037), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1037), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1037), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1037), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1037), + [aux_sym_rekey_limit_token1] = ACTIONS(1037), + [aux_sym_remote_command_token1] = ACTIONS(1037), + [aux_sym_remote_forward_token1] = ACTIONS(1037), + [aux_sym_request_tty_token1] = ACTIONS(1037), + [aux_sym_required_rsa_size_token1] = ACTIONS(1037), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1037), + [aux_sym_security_key_provider_token1] = ACTIONS(1037), + [aux_sym_send_env_token1] = ACTIONS(1037), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1037), + [aux_sym_server_alive_interval_token1] = ACTIONS(1037), + [aux_sym_session_type_token1] = ACTIONS(1037), + [aux_sym_set_env_token1] = ACTIONS(1037), + [aux_sym_stdin_null_token1] = ACTIONS(1037), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1037), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1037), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1037), + [aux_sym_syslog_facility_token1] = ACTIONS(1037), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1037), + [aux_sym_keep_alive_token1] = ACTIONS(1037), + [aux_sym_tag_token1] = ACTIONS(1037), + [aux_sym_tunnel_token1] = ACTIONS(1039), + [aux_sym_tunnel_device_token1] = ACTIONS(1037), + [aux_sym_update_host_keys_token1] = ACTIONS(1037), + [aux_sym_use_keychain_token1] = ACTIONS(1037), + [aux_sym_use_roaming_token1] = ACTIONS(1037), + [aux_sym_user_token1] = ACTIONS(1039), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1037), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1037), + [aux_sym_visual_host_key_token1] = ACTIONS(1037), + [aux_sym_xauth_location_token1] = ACTIONS(1037), }, [587] = { - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3390), - [aux_sym_match_token1] = ACTIONS(3388), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3388), - [aux_sym_address_family_token1] = ACTIONS(3388), - [aux_sym_batch_mode_token1] = ACTIONS(3388), - [aux_sym_bind_address_token1] = ACTIONS(3388), - [aux_sym_bind_interface_token1] = ACTIONS(3388), - [aux_sym_canonical_domains_token1] = ACTIONS(3388), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3388), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3388), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3388), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3388), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3388), - [aux_sym_certificate_file_token1] = ACTIONS(3388), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3388), - [aux_sym_channel_timeout_token1] = ACTIONS(3388), - [aux_sym_check_host_ip_token1] = ACTIONS(3388), - [aux_sym_ciphers_token1] = ACTIONS(3388), - [aux_sym_cipher_token1] = ACTIONS(3390), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3388), - [aux_sym_compression_token1] = ACTIONS(3388), - [aux_sym_connection_attempts_token1] = ACTIONS(3388), - [aux_sym_connect_timeout_token1] = ACTIONS(3388), - [aux_sym_control_master_token1] = ACTIONS(3388), - [aux_sym_control_path_token1] = ACTIONS(3388), - [aux_sym_control_persist_token1] = ACTIONS(3388), - [aux_sym_dynamic_forward_token1] = ACTIONS(3388), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3388), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3388), - [aux_sym_escape_char_token1] = ACTIONS(3388), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3388), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3388), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3388), - [aux_sym_forward_agent_token1] = ACTIONS(3388), - [aux_sym_forward_x11_token1] = ACTIONS(3390), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3388), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3388), - [aux_sym_gateway_ports_token1] = ACTIONS(3388), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3388), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3388), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3388), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3388), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3388), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3388), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3388), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3388), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3388), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3388), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3388), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3388), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3388), - [aux_sym_host_key_alias_token1] = ACTIONS(3388), - [aux_sym_hostname_token1] = ACTIONS(3388), - [aux_sym_identities_only_token1] = ACTIONS(3388), - [aux_sym_identity_agent_token1] = ACTIONS(3388), - [aux_sym_identity_file_token1] = ACTIONS(3388), - [aux_sym_ignore_unknown_token1] = ACTIONS(3388), - [aux_sym_include_token1] = ACTIONS(3388), - [aux_sym_ip_qos_token1] = ACTIONS(3388), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3388), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3388), - [aux_sym_kex_algorithms_token1] = ACTIONS(3388), - [aux_sym_known_hosts_command_token1] = ACTIONS(3388), - [aux_sym_local_command_token1] = ACTIONS(3388), - [aux_sym_local_forward_token1] = ACTIONS(3388), - [aux_sym_log_level_token1] = ACTIONS(3388), - [aux_sym_log_verbose_token1] = ACTIONS(3388), - [aux_sym_macs_token1] = ACTIONS(3388), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3388), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3388), - [aux_sym_password_authentication_token1] = ACTIONS(3388), - [aux_sym_permit_local_command_token1] = ACTIONS(3388), - [aux_sym_permit_remote_open_token1] = ACTIONS(3388), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3388), - [aux_sym_port_token1] = ACTIONS(3388), - [aux_sym_preferred_authentications_token1] = ACTIONS(3388), - [aux_sym_protocol_token1] = ACTIONS(3388), - [aux_sym_proxy_command_token1] = ACTIONS(3388), - [aux_sym_proxy_jump_token1] = ACTIONS(3388), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3388), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3388), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3388), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3388), - [aux_sym_rekey_limit_token1] = ACTIONS(3388), - [aux_sym_remote_command_token1] = ACTIONS(3388), - [aux_sym_remote_forward_token1] = ACTIONS(3388), - [aux_sym_request_tty_token1] = ACTIONS(3388), - [aux_sym_required_rsa_size_token1] = ACTIONS(3388), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3388), - [aux_sym_security_key_provider_token1] = ACTIONS(3388), - [aux_sym_send_env_token1] = ACTIONS(3388), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3388), - [aux_sym_server_alive_interval_token1] = ACTIONS(3388), - [aux_sym_session_type_token1] = ACTIONS(3388), - [aux_sym_set_env_token1] = ACTIONS(3388), - [aux_sym_stdin_null_token1] = ACTIONS(3388), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3388), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3388), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3388), - [aux_sym_syslog_facility_token1] = ACTIONS(3388), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3388), - [aux_sym_keep_alive_token1] = ACTIONS(3388), - [aux_sym_tag_token1] = ACTIONS(3388), - [aux_sym_tunnel_token1] = ACTIONS(3390), - [aux_sym_tunnel_device_token1] = ACTIONS(3388), - [aux_sym_update_host_keys_token1] = ACTIONS(3388), - [aux_sym_use_keychain_token1] = ACTIONS(3388), - [aux_sym_use_roaming_token1] = ACTIONS(3388), - [aux_sym_user_token1] = ACTIONS(3390), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3388), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3388), - [aux_sym_visual_host_key_token1] = ACTIONS(3388), - [aux_sym_xauth_location_token1] = ACTIONS(3388), + [ts_builtin_sym_end] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3393), + [aux_sym_match_token1] = ACTIONS(3391), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3391), + [aux_sym_address_family_token1] = ACTIONS(3391), + [aux_sym_batch_mode_token1] = ACTIONS(3391), + [aux_sym_bind_address_token1] = ACTIONS(3391), + [aux_sym_bind_interface_token1] = ACTIONS(3391), + [aux_sym_canonical_domains_token1] = ACTIONS(3391), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3391), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3391), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3391), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3391), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3391), + [aux_sym_certificate_file_token1] = ACTIONS(3391), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3391), + [aux_sym_channel_timeout_token1] = ACTIONS(3391), + [aux_sym_check_host_ip_token1] = ACTIONS(3391), + [aux_sym_ciphers_token1] = ACTIONS(3391), + [aux_sym_cipher_token1] = ACTIONS(3393), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3391), + [aux_sym_compression_token1] = ACTIONS(3391), + [aux_sym_connection_attempts_token1] = ACTIONS(3391), + [aux_sym_connect_timeout_token1] = ACTIONS(3391), + [aux_sym_control_master_token1] = ACTIONS(3391), + [aux_sym_control_path_token1] = ACTIONS(3391), + [aux_sym_control_persist_token1] = ACTIONS(3391), + [aux_sym_dynamic_forward_token1] = ACTIONS(3391), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3391), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3391), + [aux_sym_escape_char_token1] = ACTIONS(3391), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3391), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3391), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3391), + [aux_sym_forward_agent_token1] = ACTIONS(3391), + [aux_sym_forward_x11_token1] = ACTIONS(3393), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3391), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3391), + [aux_sym_gateway_ports_token1] = ACTIONS(3391), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3391), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3391), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3391), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3391), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3391), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3391), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3391), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3391), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3391), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3391), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3391), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3391), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3391), + [aux_sym_host_key_alias_token1] = ACTIONS(3391), + [aux_sym_hostname_token1] = ACTIONS(3391), + [aux_sym_identities_only_token1] = ACTIONS(3391), + [aux_sym_identity_agent_token1] = ACTIONS(3391), + [aux_sym_identity_file_token1] = ACTIONS(3391), + [aux_sym_ignore_unknown_token1] = ACTIONS(3391), + [aux_sym_include_token1] = ACTIONS(3391), + [aux_sym_ip_qos_token1] = ACTIONS(3391), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3391), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3391), + [aux_sym_kex_algorithms_token1] = ACTIONS(3391), + [aux_sym_known_hosts_command_token1] = ACTIONS(3391), + [aux_sym_local_command_token1] = ACTIONS(3391), + [aux_sym_local_forward_token1] = ACTIONS(3391), + [aux_sym_log_level_token1] = ACTIONS(3391), + [aux_sym_log_verbose_token1] = ACTIONS(3391), + [aux_sym_macs_token1] = ACTIONS(3391), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3391), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3391), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3391), + [aux_sym_password_authentication_token1] = ACTIONS(3391), + [aux_sym_permit_local_command_token1] = ACTIONS(3391), + [aux_sym_permit_remote_open_token1] = ACTIONS(3391), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3391), + [aux_sym_port_token1] = ACTIONS(3391), + [aux_sym_preferred_authentications_token1] = ACTIONS(3391), + [aux_sym_protocol_token1] = ACTIONS(3391), + [aux_sym_proxy_command_token1] = ACTIONS(3391), + [aux_sym_proxy_jump_token1] = ACTIONS(3391), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3391), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3391), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3391), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3391), + [aux_sym_rekey_limit_token1] = ACTIONS(3391), + [aux_sym_remote_command_token1] = ACTIONS(3391), + [aux_sym_remote_forward_token1] = ACTIONS(3391), + [aux_sym_request_tty_token1] = ACTIONS(3391), + [aux_sym_required_rsa_size_token1] = ACTIONS(3391), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3391), + [aux_sym_security_key_provider_token1] = ACTIONS(3391), + [aux_sym_send_env_token1] = ACTIONS(3391), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3391), + [aux_sym_server_alive_interval_token1] = ACTIONS(3391), + [aux_sym_session_type_token1] = ACTIONS(3391), + [aux_sym_set_env_token1] = ACTIONS(3391), + [aux_sym_stdin_null_token1] = ACTIONS(3391), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3391), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3391), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3391), + [aux_sym_syslog_facility_token1] = ACTIONS(3391), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3391), + [aux_sym_keep_alive_token1] = ACTIONS(3391), + [aux_sym_tag_token1] = ACTIONS(3391), + [aux_sym_tunnel_token1] = ACTIONS(3393), + [aux_sym_tunnel_device_token1] = ACTIONS(3391), + [aux_sym_update_host_keys_token1] = ACTIONS(3391), + [aux_sym_use_keychain_token1] = ACTIONS(3391), + [aux_sym_use_roaming_token1] = ACTIONS(3391), + [aux_sym_user_token1] = ACTIONS(3393), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3391), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3391), + [aux_sym_visual_host_key_token1] = ACTIONS(3391), + [aux_sym_xauth_location_token1] = ACTIONS(3391), }, [588] = { - [ts_builtin_sym_end] = ACTIONS(3392), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3394), - [aux_sym_match_token1] = ACTIONS(3392), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3392), - [aux_sym_address_family_token1] = ACTIONS(3392), - [aux_sym_batch_mode_token1] = ACTIONS(3392), - [aux_sym_bind_address_token1] = ACTIONS(3392), - [aux_sym_bind_interface_token1] = ACTIONS(3392), - [aux_sym_canonical_domains_token1] = ACTIONS(3392), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3392), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3392), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3392), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3392), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3392), - [aux_sym_certificate_file_token1] = ACTIONS(3392), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3392), - [aux_sym_channel_timeout_token1] = ACTIONS(3392), - [aux_sym_check_host_ip_token1] = ACTIONS(3392), - [aux_sym_ciphers_token1] = ACTIONS(3392), - [aux_sym_cipher_token1] = ACTIONS(3394), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3392), - [aux_sym_compression_token1] = ACTIONS(3392), - [aux_sym_connection_attempts_token1] = ACTIONS(3392), - [aux_sym_connect_timeout_token1] = ACTIONS(3392), - [aux_sym_control_master_token1] = ACTIONS(3392), - [aux_sym_control_path_token1] = ACTIONS(3392), - [aux_sym_control_persist_token1] = ACTIONS(3392), - [aux_sym_dynamic_forward_token1] = ACTIONS(3392), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3392), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3392), - [aux_sym_escape_char_token1] = ACTIONS(3392), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3392), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3392), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3392), - [aux_sym_forward_agent_token1] = ACTIONS(3392), - [aux_sym_forward_x11_token1] = ACTIONS(3394), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3392), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3392), - [aux_sym_gateway_ports_token1] = ACTIONS(3392), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3392), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3392), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3392), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3392), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3392), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3392), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3392), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3392), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3392), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3392), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3392), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3392), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3392), - [aux_sym_host_key_alias_token1] = ACTIONS(3392), - [aux_sym_hostname_token1] = ACTIONS(3392), - [aux_sym_identities_only_token1] = ACTIONS(3392), - [aux_sym_identity_agent_token1] = ACTIONS(3392), - [aux_sym_identity_file_token1] = ACTIONS(3392), - [aux_sym_ignore_unknown_token1] = ACTIONS(3392), - [aux_sym_include_token1] = ACTIONS(3392), - [aux_sym_ip_qos_token1] = ACTIONS(3392), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3392), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3392), - [aux_sym_kex_algorithms_token1] = ACTIONS(3392), - [aux_sym_known_hosts_command_token1] = ACTIONS(3392), - [aux_sym_local_command_token1] = ACTIONS(3392), - [aux_sym_local_forward_token1] = ACTIONS(3392), - [aux_sym_log_level_token1] = ACTIONS(3392), - [aux_sym_log_verbose_token1] = ACTIONS(3392), - [aux_sym_macs_token1] = ACTIONS(3392), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3392), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3392), - [aux_sym_password_authentication_token1] = ACTIONS(3392), - [aux_sym_permit_local_command_token1] = ACTIONS(3392), - [aux_sym_permit_remote_open_token1] = ACTIONS(3392), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3392), - [aux_sym_port_token1] = ACTIONS(3392), - [aux_sym_preferred_authentications_token1] = ACTIONS(3392), - [aux_sym_protocol_token1] = ACTIONS(3392), - [aux_sym_proxy_command_token1] = ACTIONS(3392), - [aux_sym_proxy_jump_token1] = ACTIONS(3392), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3392), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3392), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3392), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3392), - [aux_sym_rekey_limit_token1] = ACTIONS(3392), - [aux_sym_remote_command_token1] = ACTIONS(3392), - [aux_sym_remote_forward_token1] = ACTIONS(3392), - [aux_sym_request_tty_token1] = ACTIONS(3392), - [aux_sym_required_rsa_size_token1] = ACTIONS(3392), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3392), - [aux_sym_security_key_provider_token1] = ACTIONS(3392), - [aux_sym_send_env_token1] = ACTIONS(3392), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3392), - [aux_sym_server_alive_interval_token1] = ACTIONS(3392), - [aux_sym_session_type_token1] = ACTIONS(3392), - [aux_sym_set_env_token1] = ACTIONS(3392), - [aux_sym_stdin_null_token1] = ACTIONS(3392), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3392), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3392), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3392), - [aux_sym_syslog_facility_token1] = ACTIONS(3392), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3392), - [aux_sym_keep_alive_token1] = ACTIONS(3392), - [aux_sym_tag_token1] = ACTIONS(3392), - [aux_sym_tunnel_token1] = ACTIONS(3394), - [aux_sym_tunnel_device_token1] = ACTIONS(3392), - [aux_sym_update_host_keys_token1] = ACTIONS(3392), - [aux_sym_use_keychain_token1] = ACTIONS(3392), - [aux_sym_use_roaming_token1] = ACTIONS(3392), - [aux_sym_user_token1] = ACTIONS(3394), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3392), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3392), - [aux_sym_visual_host_key_token1] = ACTIONS(3392), - [aux_sym_xauth_location_token1] = ACTIONS(3392), + [ts_builtin_sym_end] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3397), + [aux_sym_match_token1] = ACTIONS(3395), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3395), + [aux_sym_address_family_token1] = ACTIONS(3395), + [aux_sym_batch_mode_token1] = ACTIONS(3395), + [aux_sym_bind_address_token1] = ACTIONS(3395), + [aux_sym_bind_interface_token1] = ACTIONS(3395), + [aux_sym_canonical_domains_token1] = ACTIONS(3395), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3395), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3395), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3395), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3395), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3395), + [aux_sym_certificate_file_token1] = ACTIONS(3395), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3395), + [aux_sym_channel_timeout_token1] = ACTIONS(3395), + [aux_sym_check_host_ip_token1] = ACTIONS(3395), + [aux_sym_ciphers_token1] = ACTIONS(3395), + [aux_sym_cipher_token1] = ACTIONS(3397), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3395), + [aux_sym_compression_token1] = ACTIONS(3395), + [aux_sym_connection_attempts_token1] = ACTIONS(3395), + [aux_sym_connect_timeout_token1] = ACTIONS(3395), + [aux_sym_control_master_token1] = ACTIONS(3395), + [aux_sym_control_path_token1] = ACTIONS(3395), + [aux_sym_control_persist_token1] = ACTIONS(3395), + [aux_sym_dynamic_forward_token1] = ACTIONS(3395), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3395), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3395), + [aux_sym_escape_char_token1] = ACTIONS(3395), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3395), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3395), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3395), + [aux_sym_forward_agent_token1] = ACTIONS(3395), + [aux_sym_forward_x11_token1] = ACTIONS(3397), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3395), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3395), + [aux_sym_gateway_ports_token1] = ACTIONS(3395), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3395), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3395), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3395), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3395), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3395), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3395), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3395), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3395), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3395), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3395), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3395), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3395), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3395), + [aux_sym_host_key_alias_token1] = ACTIONS(3395), + [aux_sym_hostname_token1] = ACTIONS(3395), + [aux_sym_identities_only_token1] = ACTIONS(3395), + [aux_sym_identity_agent_token1] = ACTIONS(3395), + [aux_sym_identity_file_token1] = ACTIONS(3395), + [aux_sym_ignore_unknown_token1] = ACTIONS(3395), + [aux_sym_include_token1] = ACTIONS(3395), + [aux_sym_ip_qos_token1] = ACTIONS(3395), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3395), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3395), + [aux_sym_kex_algorithms_token1] = ACTIONS(3395), + [aux_sym_known_hosts_command_token1] = ACTIONS(3395), + [aux_sym_local_command_token1] = ACTIONS(3395), + [aux_sym_local_forward_token1] = ACTIONS(3395), + [aux_sym_log_level_token1] = ACTIONS(3395), + [aux_sym_log_verbose_token1] = ACTIONS(3395), + [aux_sym_macs_token1] = ACTIONS(3395), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3395), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3395), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3395), + [aux_sym_password_authentication_token1] = ACTIONS(3395), + [aux_sym_permit_local_command_token1] = ACTIONS(3395), + [aux_sym_permit_remote_open_token1] = ACTIONS(3395), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3395), + [aux_sym_port_token1] = ACTIONS(3395), + [aux_sym_preferred_authentications_token1] = ACTIONS(3395), + [aux_sym_protocol_token1] = ACTIONS(3395), + [aux_sym_proxy_command_token1] = ACTIONS(3395), + [aux_sym_proxy_jump_token1] = ACTIONS(3395), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3395), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3395), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3395), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3395), + [aux_sym_rekey_limit_token1] = ACTIONS(3395), + [aux_sym_remote_command_token1] = ACTIONS(3395), + [aux_sym_remote_forward_token1] = ACTIONS(3395), + [aux_sym_request_tty_token1] = ACTIONS(3395), + [aux_sym_required_rsa_size_token1] = ACTIONS(3395), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3395), + [aux_sym_security_key_provider_token1] = ACTIONS(3395), + [aux_sym_send_env_token1] = ACTIONS(3395), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3395), + [aux_sym_server_alive_interval_token1] = ACTIONS(3395), + [aux_sym_session_type_token1] = ACTIONS(3395), + [aux_sym_set_env_token1] = ACTIONS(3395), + [aux_sym_stdin_null_token1] = ACTIONS(3395), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3395), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3395), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3395), + [aux_sym_syslog_facility_token1] = ACTIONS(3395), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3395), + [aux_sym_keep_alive_token1] = ACTIONS(3395), + [aux_sym_tag_token1] = ACTIONS(3395), + [aux_sym_tunnel_token1] = ACTIONS(3397), + [aux_sym_tunnel_device_token1] = ACTIONS(3395), + [aux_sym_update_host_keys_token1] = ACTIONS(3395), + [aux_sym_use_keychain_token1] = ACTIONS(3395), + [aux_sym_use_roaming_token1] = ACTIONS(3395), + [aux_sym_user_token1] = ACTIONS(3397), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3395), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3395), + [aux_sym_visual_host_key_token1] = ACTIONS(3395), + [aux_sym_xauth_location_token1] = ACTIONS(3395), }, [589] = { - [ts_builtin_sym_end] = ACTIONS(3396), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3398), - [aux_sym_match_token1] = ACTIONS(3396), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3396), - [aux_sym_address_family_token1] = ACTIONS(3396), - [aux_sym_batch_mode_token1] = ACTIONS(3396), - [aux_sym_bind_address_token1] = ACTIONS(3396), - [aux_sym_bind_interface_token1] = ACTIONS(3396), - [aux_sym_canonical_domains_token1] = ACTIONS(3396), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3396), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3396), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3396), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3396), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3396), - [aux_sym_certificate_file_token1] = ACTIONS(3396), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3396), - [aux_sym_channel_timeout_token1] = ACTIONS(3396), - [aux_sym_check_host_ip_token1] = ACTIONS(3396), - [aux_sym_ciphers_token1] = ACTIONS(3396), - [aux_sym_cipher_token1] = ACTIONS(3398), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3396), - [aux_sym_compression_token1] = ACTIONS(3396), - [aux_sym_connection_attempts_token1] = ACTIONS(3396), - [aux_sym_connect_timeout_token1] = ACTIONS(3396), - [aux_sym_control_master_token1] = ACTIONS(3396), - [aux_sym_control_path_token1] = ACTIONS(3396), - [aux_sym_control_persist_token1] = ACTIONS(3396), - [aux_sym_dynamic_forward_token1] = ACTIONS(3396), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3396), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3396), - [aux_sym_escape_char_token1] = ACTIONS(3396), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3396), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3396), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3396), - [aux_sym_forward_agent_token1] = ACTIONS(3396), - [aux_sym_forward_x11_token1] = ACTIONS(3398), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3396), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3396), - [aux_sym_gateway_ports_token1] = ACTIONS(3396), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3396), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3396), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3396), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3396), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3396), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3396), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3396), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3396), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3396), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3396), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3396), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3396), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3396), - [aux_sym_host_key_alias_token1] = ACTIONS(3396), - [aux_sym_hostname_token1] = ACTIONS(3396), - [aux_sym_identities_only_token1] = ACTIONS(3396), - [aux_sym_identity_agent_token1] = ACTIONS(3396), - [aux_sym_identity_file_token1] = ACTIONS(3396), - [aux_sym_ignore_unknown_token1] = ACTIONS(3396), - [aux_sym_include_token1] = ACTIONS(3396), - [aux_sym_ip_qos_token1] = ACTIONS(3396), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3396), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3396), - [aux_sym_kex_algorithms_token1] = ACTIONS(3396), - [aux_sym_known_hosts_command_token1] = ACTIONS(3396), - [aux_sym_local_command_token1] = ACTIONS(3396), - [aux_sym_local_forward_token1] = ACTIONS(3396), - [aux_sym_log_level_token1] = ACTIONS(3396), - [aux_sym_log_verbose_token1] = ACTIONS(3396), - [aux_sym_macs_token1] = ACTIONS(3396), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3396), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3396), - [aux_sym_password_authentication_token1] = ACTIONS(3396), - [aux_sym_permit_local_command_token1] = ACTIONS(3396), - [aux_sym_permit_remote_open_token1] = ACTIONS(3396), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3396), - [aux_sym_port_token1] = ACTIONS(3396), - [aux_sym_preferred_authentications_token1] = ACTIONS(3396), - [aux_sym_protocol_token1] = ACTIONS(3396), - [aux_sym_proxy_command_token1] = ACTIONS(3396), - [aux_sym_proxy_jump_token1] = ACTIONS(3396), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3396), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3396), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3396), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3396), - [aux_sym_rekey_limit_token1] = ACTIONS(3396), - [aux_sym_remote_command_token1] = ACTIONS(3396), - [aux_sym_remote_forward_token1] = ACTIONS(3396), - [aux_sym_request_tty_token1] = ACTIONS(3396), - [aux_sym_required_rsa_size_token1] = ACTIONS(3396), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3396), - [aux_sym_security_key_provider_token1] = ACTIONS(3396), - [aux_sym_send_env_token1] = ACTIONS(3396), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3396), - [aux_sym_server_alive_interval_token1] = ACTIONS(3396), - [aux_sym_session_type_token1] = ACTIONS(3396), - [aux_sym_set_env_token1] = ACTIONS(3396), - [aux_sym_stdin_null_token1] = ACTIONS(3396), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3396), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3396), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3396), - [aux_sym_syslog_facility_token1] = ACTIONS(3396), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3396), - [aux_sym_keep_alive_token1] = ACTIONS(3396), - [aux_sym_tag_token1] = ACTIONS(3396), - [aux_sym_tunnel_token1] = ACTIONS(3398), - [aux_sym_tunnel_device_token1] = ACTIONS(3396), - [aux_sym_update_host_keys_token1] = ACTIONS(3396), - [aux_sym_use_keychain_token1] = ACTIONS(3396), - [aux_sym_use_roaming_token1] = ACTIONS(3396), - [aux_sym_user_token1] = ACTIONS(3398), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3396), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3396), - [aux_sym_visual_host_key_token1] = ACTIONS(3396), - [aux_sym_xauth_location_token1] = ACTIONS(3396), + [ts_builtin_sym_end] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3401), + [aux_sym_match_token1] = ACTIONS(3399), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3399), + [aux_sym_address_family_token1] = ACTIONS(3399), + [aux_sym_batch_mode_token1] = ACTIONS(3399), + [aux_sym_bind_address_token1] = ACTIONS(3399), + [aux_sym_bind_interface_token1] = ACTIONS(3399), + [aux_sym_canonical_domains_token1] = ACTIONS(3399), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3399), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3399), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3399), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3399), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3399), + [aux_sym_certificate_file_token1] = ACTIONS(3399), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3399), + [aux_sym_channel_timeout_token1] = ACTIONS(3399), + [aux_sym_check_host_ip_token1] = ACTIONS(3399), + [aux_sym_ciphers_token1] = ACTIONS(3399), + [aux_sym_cipher_token1] = ACTIONS(3401), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3399), + [aux_sym_compression_token1] = ACTIONS(3399), + [aux_sym_connection_attempts_token1] = ACTIONS(3399), + [aux_sym_connect_timeout_token1] = ACTIONS(3399), + [aux_sym_control_master_token1] = ACTIONS(3399), + [aux_sym_control_path_token1] = ACTIONS(3399), + [aux_sym_control_persist_token1] = ACTIONS(3399), + [aux_sym_dynamic_forward_token1] = ACTIONS(3399), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3399), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3399), + [aux_sym_escape_char_token1] = ACTIONS(3399), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3399), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3399), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3399), + [aux_sym_forward_agent_token1] = ACTIONS(3399), + [aux_sym_forward_x11_token1] = ACTIONS(3401), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3399), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3399), + [aux_sym_gateway_ports_token1] = ACTIONS(3399), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3399), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3399), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3399), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3399), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3399), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3399), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3399), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3399), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3399), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3399), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3399), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3399), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3399), + [aux_sym_host_key_alias_token1] = ACTIONS(3399), + [aux_sym_hostname_token1] = ACTIONS(3399), + [aux_sym_identities_only_token1] = ACTIONS(3399), + [aux_sym_identity_agent_token1] = ACTIONS(3399), + [aux_sym_identity_file_token1] = ACTIONS(3399), + [aux_sym_ignore_unknown_token1] = ACTIONS(3399), + [aux_sym_include_token1] = ACTIONS(3399), + [aux_sym_ip_qos_token1] = ACTIONS(3399), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3399), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3399), + [aux_sym_kex_algorithms_token1] = ACTIONS(3399), + [aux_sym_known_hosts_command_token1] = ACTIONS(3399), + [aux_sym_local_command_token1] = ACTIONS(3399), + [aux_sym_local_forward_token1] = ACTIONS(3399), + [aux_sym_log_level_token1] = ACTIONS(3399), + [aux_sym_log_verbose_token1] = ACTIONS(3399), + [aux_sym_macs_token1] = ACTIONS(3399), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3399), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3399), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3399), + [aux_sym_password_authentication_token1] = ACTIONS(3399), + [aux_sym_permit_local_command_token1] = ACTIONS(3399), + [aux_sym_permit_remote_open_token1] = ACTIONS(3399), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3399), + [aux_sym_port_token1] = ACTIONS(3399), + [aux_sym_preferred_authentications_token1] = ACTIONS(3399), + [aux_sym_protocol_token1] = ACTIONS(3399), + [aux_sym_proxy_command_token1] = ACTIONS(3399), + [aux_sym_proxy_jump_token1] = ACTIONS(3399), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3399), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3399), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3399), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3399), + [aux_sym_rekey_limit_token1] = ACTIONS(3399), + [aux_sym_remote_command_token1] = ACTIONS(3399), + [aux_sym_remote_forward_token1] = ACTIONS(3399), + [aux_sym_request_tty_token1] = ACTIONS(3399), + [aux_sym_required_rsa_size_token1] = ACTIONS(3399), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3399), + [aux_sym_security_key_provider_token1] = ACTIONS(3399), + [aux_sym_send_env_token1] = ACTIONS(3399), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3399), + [aux_sym_server_alive_interval_token1] = ACTIONS(3399), + [aux_sym_session_type_token1] = ACTIONS(3399), + [aux_sym_set_env_token1] = ACTIONS(3399), + [aux_sym_stdin_null_token1] = ACTIONS(3399), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3399), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3399), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3399), + [aux_sym_syslog_facility_token1] = ACTIONS(3399), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3399), + [aux_sym_keep_alive_token1] = ACTIONS(3399), + [aux_sym_tag_token1] = ACTIONS(3399), + [aux_sym_tunnel_token1] = ACTIONS(3401), + [aux_sym_tunnel_device_token1] = ACTIONS(3399), + [aux_sym_update_host_keys_token1] = ACTIONS(3399), + [aux_sym_use_keychain_token1] = ACTIONS(3399), + [aux_sym_use_roaming_token1] = ACTIONS(3399), + [aux_sym_user_token1] = ACTIONS(3401), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3399), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3399), + [aux_sym_visual_host_key_token1] = ACTIONS(3399), + [aux_sym_xauth_location_token1] = ACTIONS(3399), }, [590] = { - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3402), - [aux_sym_match_token1] = ACTIONS(3400), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3400), - [aux_sym_address_family_token1] = ACTIONS(3400), - [aux_sym_batch_mode_token1] = ACTIONS(3400), - [aux_sym_bind_address_token1] = ACTIONS(3400), - [aux_sym_bind_interface_token1] = ACTIONS(3400), - [aux_sym_canonical_domains_token1] = ACTIONS(3400), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3400), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3400), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3400), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3400), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3400), - [aux_sym_certificate_file_token1] = ACTIONS(3400), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3400), - [aux_sym_channel_timeout_token1] = ACTIONS(3400), - [aux_sym_check_host_ip_token1] = ACTIONS(3400), - [aux_sym_ciphers_token1] = ACTIONS(3400), - [aux_sym_cipher_token1] = ACTIONS(3402), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3400), - [aux_sym_compression_token1] = ACTIONS(3400), - [aux_sym_connection_attempts_token1] = ACTIONS(3400), - [aux_sym_connect_timeout_token1] = ACTIONS(3400), - [aux_sym_control_master_token1] = ACTIONS(3400), - [aux_sym_control_path_token1] = ACTIONS(3400), - [aux_sym_control_persist_token1] = ACTIONS(3400), - [aux_sym_dynamic_forward_token1] = ACTIONS(3400), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3400), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3400), - [aux_sym_escape_char_token1] = ACTIONS(3400), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3400), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3400), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3400), - [aux_sym_forward_agent_token1] = ACTIONS(3400), - [aux_sym_forward_x11_token1] = ACTIONS(3402), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3400), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3400), - [aux_sym_gateway_ports_token1] = ACTIONS(3400), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3400), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3400), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3400), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3400), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3400), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3400), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3400), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3400), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3400), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3400), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3400), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3400), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3400), - [aux_sym_host_key_alias_token1] = ACTIONS(3400), - [aux_sym_hostname_token1] = ACTIONS(3400), - [aux_sym_identities_only_token1] = ACTIONS(3400), - [aux_sym_identity_agent_token1] = ACTIONS(3400), - [aux_sym_identity_file_token1] = ACTIONS(3400), - [aux_sym_ignore_unknown_token1] = ACTIONS(3400), - [aux_sym_include_token1] = ACTIONS(3400), - [aux_sym_ip_qos_token1] = ACTIONS(3400), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3400), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3400), - [aux_sym_kex_algorithms_token1] = ACTIONS(3400), - [aux_sym_known_hosts_command_token1] = ACTIONS(3400), - [aux_sym_local_command_token1] = ACTIONS(3400), - [aux_sym_local_forward_token1] = ACTIONS(3400), - [aux_sym_log_level_token1] = ACTIONS(3400), - [aux_sym_log_verbose_token1] = ACTIONS(3400), - [aux_sym_macs_token1] = ACTIONS(3400), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3400), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3400), - [aux_sym_password_authentication_token1] = ACTIONS(3400), - [aux_sym_permit_local_command_token1] = ACTIONS(3400), - [aux_sym_permit_remote_open_token1] = ACTIONS(3400), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3400), - [aux_sym_port_token1] = ACTIONS(3400), - [aux_sym_preferred_authentications_token1] = ACTIONS(3400), - [aux_sym_protocol_token1] = ACTIONS(3400), - [aux_sym_proxy_command_token1] = ACTIONS(3400), - [aux_sym_proxy_jump_token1] = ACTIONS(3400), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3400), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3400), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3400), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3400), - [aux_sym_rekey_limit_token1] = ACTIONS(3400), - [aux_sym_remote_command_token1] = ACTIONS(3400), - [aux_sym_remote_forward_token1] = ACTIONS(3400), - [aux_sym_request_tty_token1] = ACTIONS(3400), - [aux_sym_required_rsa_size_token1] = ACTIONS(3400), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3400), - [aux_sym_security_key_provider_token1] = ACTIONS(3400), - [aux_sym_send_env_token1] = ACTIONS(3400), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3400), - [aux_sym_server_alive_interval_token1] = ACTIONS(3400), - [aux_sym_session_type_token1] = ACTIONS(3400), - [aux_sym_set_env_token1] = ACTIONS(3400), - [aux_sym_stdin_null_token1] = ACTIONS(3400), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3400), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3400), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3400), - [aux_sym_syslog_facility_token1] = ACTIONS(3400), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3400), - [aux_sym_keep_alive_token1] = ACTIONS(3400), - [aux_sym_tag_token1] = ACTIONS(3400), - [aux_sym_tunnel_token1] = ACTIONS(3402), - [aux_sym_tunnel_device_token1] = ACTIONS(3400), - [aux_sym_update_host_keys_token1] = ACTIONS(3400), - [aux_sym_use_keychain_token1] = ACTIONS(3400), - [aux_sym_use_roaming_token1] = ACTIONS(3400), - [aux_sym_user_token1] = ACTIONS(3402), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3400), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3400), - [aux_sym_visual_host_key_token1] = ACTIONS(3400), - [aux_sym_xauth_location_token1] = ACTIONS(3400), + [ts_builtin_sym_end] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3405), + [aux_sym_match_token1] = ACTIONS(3403), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3403), + [aux_sym_address_family_token1] = ACTIONS(3403), + [aux_sym_batch_mode_token1] = ACTIONS(3403), + [aux_sym_bind_address_token1] = ACTIONS(3403), + [aux_sym_bind_interface_token1] = ACTIONS(3403), + [aux_sym_canonical_domains_token1] = ACTIONS(3403), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3403), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3403), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3403), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3403), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3403), + [aux_sym_certificate_file_token1] = ACTIONS(3403), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3403), + [aux_sym_channel_timeout_token1] = ACTIONS(3403), + [aux_sym_check_host_ip_token1] = ACTIONS(3403), + [aux_sym_ciphers_token1] = ACTIONS(3403), + [aux_sym_cipher_token1] = ACTIONS(3405), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3403), + [aux_sym_compression_token1] = ACTIONS(3403), + [aux_sym_connection_attempts_token1] = ACTIONS(3403), + [aux_sym_connect_timeout_token1] = ACTIONS(3403), + [aux_sym_control_master_token1] = ACTIONS(3403), + [aux_sym_control_path_token1] = ACTIONS(3403), + [aux_sym_control_persist_token1] = ACTIONS(3403), + [aux_sym_dynamic_forward_token1] = ACTIONS(3403), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3403), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3403), + [aux_sym_escape_char_token1] = ACTIONS(3403), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3403), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3403), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3403), + [aux_sym_forward_agent_token1] = ACTIONS(3403), + [aux_sym_forward_x11_token1] = ACTIONS(3405), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3403), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3403), + [aux_sym_gateway_ports_token1] = ACTIONS(3403), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3403), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3403), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3403), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3403), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3403), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3403), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3403), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3403), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3403), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3403), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3403), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3403), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3403), + [aux_sym_host_key_alias_token1] = ACTIONS(3403), + [aux_sym_hostname_token1] = ACTIONS(3403), + [aux_sym_identities_only_token1] = ACTIONS(3403), + [aux_sym_identity_agent_token1] = ACTIONS(3403), + [aux_sym_identity_file_token1] = ACTIONS(3403), + [aux_sym_ignore_unknown_token1] = ACTIONS(3403), + [aux_sym_include_token1] = ACTIONS(3403), + [aux_sym_ip_qos_token1] = ACTIONS(3403), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3403), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3403), + [aux_sym_kex_algorithms_token1] = ACTIONS(3403), + [aux_sym_known_hosts_command_token1] = ACTIONS(3403), + [aux_sym_local_command_token1] = ACTIONS(3403), + [aux_sym_local_forward_token1] = ACTIONS(3403), + [aux_sym_log_level_token1] = ACTIONS(3403), + [aux_sym_log_verbose_token1] = ACTIONS(3403), + [aux_sym_macs_token1] = ACTIONS(3403), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3403), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3403), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3403), + [aux_sym_password_authentication_token1] = ACTIONS(3403), + [aux_sym_permit_local_command_token1] = ACTIONS(3403), + [aux_sym_permit_remote_open_token1] = ACTIONS(3403), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3403), + [aux_sym_port_token1] = ACTIONS(3403), + [aux_sym_preferred_authentications_token1] = ACTIONS(3403), + [aux_sym_protocol_token1] = ACTIONS(3403), + [aux_sym_proxy_command_token1] = ACTIONS(3403), + [aux_sym_proxy_jump_token1] = ACTIONS(3403), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3403), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3403), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3403), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3403), + [aux_sym_rekey_limit_token1] = ACTIONS(3403), + [aux_sym_remote_command_token1] = ACTIONS(3403), + [aux_sym_remote_forward_token1] = ACTIONS(3403), + [aux_sym_request_tty_token1] = ACTIONS(3403), + [aux_sym_required_rsa_size_token1] = ACTIONS(3403), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3403), + [aux_sym_security_key_provider_token1] = ACTIONS(3403), + [aux_sym_send_env_token1] = ACTIONS(3403), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3403), + [aux_sym_server_alive_interval_token1] = ACTIONS(3403), + [aux_sym_session_type_token1] = ACTIONS(3403), + [aux_sym_set_env_token1] = ACTIONS(3403), + [aux_sym_stdin_null_token1] = ACTIONS(3403), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3403), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3403), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3403), + [aux_sym_syslog_facility_token1] = ACTIONS(3403), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3403), + [aux_sym_keep_alive_token1] = ACTIONS(3403), + [aux_sym_tag_token1] = ACTIONS(3403), + [aux_sym_tunnel_token1] = ACTIONS(3405), + [aux_sym_tunnel_device_token1] = ACTIONS(3403), + [aux_sym_update_host_keys_token1] = ACTIONS(3403), + [aux_sym_use_keychain_token1] = ACTIONS(3403), + [aux_sym_use_roaming_token1] = ACTIONS(3403), + [aux_sym_user_token1] = ACTIONS(3405), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3403), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3403), + [aux_sym_visual_host_key_token1] = ACTIONS(3403), + [aux_sym_xauth_location_token1] = ACTIONS(3403), }, [591] = { - [ts_builtin_sym_end] = ACTIONS(3404), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3406), - [aux_sym_match_token1] = ACTIONS(3404), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3404), - [aux_sym_address_family_token1] = ACTIONS(3404), - [aux_sym_batch_mode_token1] = ACTIONS(3404), - [aux_sym_bind_address_token1] = ACTIONS(3404), - [aux_sym_bind_interface_token1] = ACTIONS(3404), - [aux_sym_canonical_domains_token1] = ACTIONS(3404), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3404), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3404), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3404), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3404), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3404), - [aux_sym_certificate_file_token1] = ACTIONS(3404), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3404), - [aux_sym_channel_timeout_token1] = ACTIONS(3404), - [aux_sym_check_host_ip_token1] = ACTIONS(3404), - [aux_sym_ciphers_token1] = ACTIONS(3404), - [aux_sym_cipher_token1] = ACTIONS(3406), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3404), - [aux_sym_compression_token1] = ACTIONS(3404), - [aux_sym_connection_attempts_token1] = ACTIONS(3404), - [aux_sym_connect_timeout_token1] = ACTIONS(3404), - [aux_sym_control_master_token1] = ACTIONS(3404), - [aux_sym_control_path_token1] = ACTIONS(3404), - [aux_sym_control_persist_token1] = ACTIONS(3404), - [aux_sym_dynamic_forward_token1] = ACTIONS(3404), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3404), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3404), - [aux_sym_escape_char_token1] = ACTIONS(3404), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3404), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3404), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3404), - [aux_sym_forward_agent_token1] = ACTIONS(3404), - [aux_sym_forward_x11_token1] = ACTIONS(3406), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3404), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3404), - [aux_sym_gateway_ports_token1] = ACTIONS(3404), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3404), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3404), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3404), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3404), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3404), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3404), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3404), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3404), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3404), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3404), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3404), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3404), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3404), - [aux_sym_host_key_alias_token1] = ACTIONS(3404), - [aux_sym_hostname_token1] = ACTIONS(3404), - [aux_sym_identities_only_token1] = ACTIONS(3404), - [aux_sym_identity_agent_token1] = ACTIONS(3404), - [aux_sym_identity_file_token1] = ACTIONS(3404), - [aux_sym_ignore_unknown_token1] = ACTIONS(3404), - [aux_sym_include_token1] = ACTIONS(3404), - [aux_sym_ip_qos_token1] = ACTIONS(3404), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3404), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3404), - [aux_sym_kex_algorithms_token1] = ACTIONS(3404), - [aux_sym_known_hosts_command_token1] = ACTIONS(3404), - [aux_sym_local_command_token1] = ACTIONS(3404), - [aux_sym_local_forward_token1] = ACTIONS(3404), - [aux_sym_log_level_token1] = ACTIONS(3404), - [aux_sym_log_verbose_token1] = ACTIONS(3404), - [aux_sym_macs_token1] = ACTIONS(3404), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3404), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3404), - [aux_sym_password_authentication_token1] = ACTIONS(3404), - [aux_sym_permit_local_command_token1] = ACTIONS(3404), - [aux_sym_permit_remote_open_token1] = ACTIONS(3404), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3404), - [aux_sym_port_token1] = ACTIONS(3404), - [aux_sym_preferred_authentications_token1] = ACTIONS(3404), - [aux_sym_protocol_token1] = ACTIONS(3404), - [aux_sym_proxy_command_token1] = ACTIONS(3404), - [aux_sym_proxy_jump_token1] = ACTIONS(3404), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3404), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3404), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3404), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3404), - [aux_sym_rekey_limit_token1] = ACTIONS(3404), - [aux_sym_remote_command_token1] = ACTIONS(3404), - [aux_sym_remote_forward_token1] = ACTIONS(3404), - [aux_sym_request_tty_token1] = ACTIONS(3404), - [aux_sym_required_rsa_size_token1] = ACTIONS(3404), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3404), - [aux_sym_security_key_provider_token1] = ACTIONS(3404), - [aux_sym_send_env_token1] = ACTIONS(3404), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3404), - [aux_sym_server_alive_interval_token1] = ACTIONS(3404), - [aux_sym_session_type_token1] = ACTIONS(3404), - [aux_sym_set_env_token1] = ACTIONS(3404), - [aux_sym_stdin_null_token1] = ACTIONS(3404), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3404), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3404), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3404), - [aux_sym_syslog_facility_token1] = ACTIONS(3404), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3404), - [aux_sym_keep_alive_token1] = ACTIONS(3404), - [aux_sym_tag_token1] = ACTIONS(3404), - [aux_sym_tunnel_token1] = ACTIONS(3406), - [aux_sym_tunnel_device_token1] = ACTIONS(3404), - [aux_sym_update_host_keys_token1] = ACTIONS(3404), - [aux_sym_use_keychain_token1] = ACTIONS(3404), - [aux_sym_use_roaming_token1] = ACTIONS(3404), - [aux_sym_user_token1] = ACTIONS(3406), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3404), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3404), - [aux_sym_visual_host_key_token1] = ACTIONS(3404), - [aux_sym_xauth_location_token1] = ACTIONS(3404), + [ts_builtin_sym_end] = ACTIONS(1307), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1309), + [aux_sym_match_token1] = ACTIONS(1307), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1307), + [aux_sym_address_family_token1] = ACTIONS(1307), + [aux_sym_batch_mode_token1] = ACTIONS(1307), + [aux_sym_bind_address_token1] = ACTIONS(1307), + [aux_sym_bind_interface_token1] = ACTIONS(1307), + [aux_sym_canonical_domains_token1] = ACTIONS(1307), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1307), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1307), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1307), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1307), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1307), + [aux_sym_certificate_file_token1] = ACTIONS(1307), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1307), + [aux_sym_channel_timeout_token1] = ACTIONS(1307), + [aux_sym_check_host_ip_token1] = ACTIONS(1307), + [aux_sym_ciphers_token1] = ACTIONS(1307), + [aux_sym_cipher_token1] = ACTIONS(1309), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1307), + [aux_sym_compression_token1] = ACTIONS(1307), + [aux_sym_connection_attempts_token1] = ACTIONS(1307), + [aux_sym_connect_timeout_token1] = ACTIONS(1307), + [aux_sym_control_master_token1] = ACTIONS(1307), + [aux_sym_control_path_token1] = ACTIONS(1307), + [aux_sym_control_persist_token1] = ACTIONS(1307), + [aux_sym_dynamic_forward_token1] = ACTIONS(1307), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1307), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1307), + [aux_sym_escape_char_token1] = ACTIONS(1307), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1307), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1307), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1307), + [aux_sym_forward_agent_token1] = ACTIONS(1307), + [aux_sym_forward_x11_token1] = ACTIONS(1309), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1307), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1307), + [aux_sym_gateway_ports_token1] = ACTIONS(1307), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1307), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1307), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1307), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1307), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1307), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1307), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1307), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1307), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1307), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1307), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1307), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1307), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1307), + [aux_sym_host_key_alias_token1] = ACTIONS(1307), + [aux_sym_hostname_token1] = ACTIONS(1307), + [aux_sym_identities_only_token1] = ACTIONS(1307), + [aux_sym_identity_agent_token1] = ACTIONS(1307), + [aux_sym_identity_file_token1] = ACTIONS(1307), + [aux_sym_ignore_unknown_token1] = ACTIONS(1307), + [aux_sym_include_token1] = ACTIONS(1307), + [aux_sym_ip_qos_token1] = ACTIONS(1307), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1307), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1307), + [aux_sym_kex_algorithms_token1] = ACTIONS(1307), + [aux_sym_known_hosts_command_token1] = ACTIONS(1307), + [aux_sym_local_command_token1] = ACTIONS(1307), + [aux_sym_local_forward_token1] = ACTIONS(1307), + [aux_sym_log_level_token1] = ACTIONS(1307), + [aux_sym_log_verbose_token1] = ACTIONS(1307), + [aux_sym_macs_token1] = ACTIONS(1307), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1307), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1307), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1307), + [aux_sym_password_authentication_token1] = ACTIONS(1307), + [aux_sym_permit_local_command_token1] = ACTIONS(1307), + [aux_sym_permit_remote_open_token1] = ACTIONS(1307), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1307), + [aux_sym_port_token1] = ACTIONS(1307), + [aux_sym_preferred_authentications_token1] = ACTIONS(1307), + [aux_sym_protocol_token1] = ACTIONS(1307), + [aux_sym_proxy_command_token1] = ACTIONS(1307), + [aux_sym_proxy_jump_token1] = ACTIONS(1307), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1307), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1307), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1307), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1307), + [aux_sym_rekey_limit_token1] = ACTIONS(1307), + [aux_sym_remote_command_token1] = ACTIONS(1307), + [aux_sym_remote_forward_token1] = ACTIONS(1307), + [aux_sym_request_tty_token1] = ACTIONS(1307), + [aux_sym_required_rsa_size_token1] = ACTIONS(1307), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1307), + [aux_sym_security_key_provider_token1] = ACTIONS(1307), + [aux_sym_send_env_token1] = ACTIONS(1307), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1307), + [aux_sym_server_alive_interval_token1] = ACTIONS(1307), + [aux_sym_session_type_token1] = ACTIONS(1307), + [aux_sym_set_env_token1] = ACTIONS(1307), + [aux_sym_stdin_null_token1] = ACTIONS(1307), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1307), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1307), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1307), + [aux_sym_syslog_facility_token1] = ACTIONS(1307), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1307), + [aux_sym_keep_alive_token1] = ACTIONS(1307), + [aux_sym_tag_token1] = ACTIONS(1307), + [aux_sym_tunnel_token1] = ACTIONS(1309), + [aux_sym_tunnel_device_token1] = ACTIONS(1307), + [aux_sym_update_host_keys_token1] = ACTIONS(1307), + [aux_sym_use_keychain_token1] = ACTIONS(1307), + [aux_sym_use_roaming_token1] = ACTIONS(1307), + [aux_sym_user_token1] = ACTIONS(1309), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1307), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1307), + [aux_sym_visual_host_key_token1] = ACTIONS(1307), + [aux_sym_xauth_location_token1] = ACTIONS(1307), }, [592] = { - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3410), - [aux_sym_match_token1] = ACTIONS(3408), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3408), - [aux_sym_address_family_token1] = ACTIONS(3408), - [aux_sym_batch_mode_token1] = ACTIONS(3408), - [aux_sym_bind_address_token1] = ACTIONS(3408), - [aux_sym_bind_interface_token1] = ACTIONS(3408), - [aux_sym_canonical_domains_token1] = ACTIONS(3408), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3408), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3408), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3408), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3408), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3408), - [aux_sym_certificate_file_token1] = ACTIONS(3408), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3408), - [aux_sym_channel_timeout_token1] = ACTIONS(3408), - [aux_sym_check_host_ip_token1] = ACTIONS(3408), - [aux_sym_ciphers_token1] = ACTIONS(3408), - [aux_sym_cipher_token1] = ACTIONS(3410), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3408), - [aux_sym_compression_token1] = ACTIONS(3408), - [aux_sym_connection_attempts_token1] = ACTIONS(3408), - [aux_sym_connect_timeout_token1] = ACTIONS(3408), - [aux_sym_control_master_token1] = ACTIONS(3408), - [aux_sym_control_path_token1] = ACTIONS(3408), - [aux_sym_control_persist_token1] = ACTIONS(3408), - [aux_sym_dynamic_forward_token1] = ACTIONS(3408), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3408), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3408), - [aux_sym_escape_char_token1] = ACTIONS(3408), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3408), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3408), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3408), - [aux_sym_forward_agent_token1] = ACTIONS(3408), - [aux_sym_forward_x11_token1] = ACTIONS(3410), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3408), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3408), - [aux_sym_gateway_ports_token1] = ACTIONS(3408), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3408), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3408), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3408), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3408), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3408), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3408), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3408), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3408), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3408), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3408), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3408), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3408), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3408), - [aux_sym_host_key_alias_token1] = ACTIONS(3408), - [aux_sym_hostname_token1] = ACTIONS(3408), - [aux_sym_identities_only_token1] = ACTIONS(3408), - [aux_sym_identity_agent_token1] = ACTIONS(3408), - [aux_sym_identity_file_token1] = ACTIONS(3408), - [aux_sym_ignore_unknown_token1] = ACTIONS(3408), - [aux_sym_include_token1] = ACTIONS(3408), - [aux_sym_ip_qos_token1] = ACTIONS(3408), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3408), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3408), - [aux_sym_kex_algorithms_token1] = ACTIONS(3408), - [aux_sym_known_hosts_command_token1] = ACTIONS(3408), - [aux_sym_local_command_token1] = ACTIONS(3408), - [aux_sym_local_forward_token1] = ACTIONS(3408), - [aux_sym_log_level_token1] = ACTIONS(3408), - [aux_sym_log_verbose_token1] = ACTIONS(3408), - [aux_sym_macs_token1] = ACTIONS(3408), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3408), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3408), - [aux_sym_password_authentication_token1] = ACTIONS(3408), - [aux_sym_permit_local_command_token1] = ACTIONS(3408), - [aux_sym_permit_remote_open_token1] = ACTIONS(3408), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3408), - [aux_sym_port_token1] = ACTIONS(3408), - [aux_sym_preferred_authentications_token1] = ACTIONS(3408), - [aux_sym_protocol_token1] = ACTIONS(3408), - [aux_sym_proxy_command_token1] = ACTIONS(3408), - [aux_sym_proxy_jump_token1] = ACTIONS(3408), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3408), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3408), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3408), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3408), - [aux_sym_rekey_limit_token1] = ACTIONS(3408), - [aux_sym_remote_command_token1] = ACTIONS(3408), - [aux_sym_remote_forward_token1] = ACTIONS(3408), - [aux_sym_request_tty_token1] = ACTIONS(3408), - [aux_sym_required_rsa_size_token1] = ACTIONS(3408), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3408), - [aux_sym_security_key_provider_token1] = ACTIONS(3408), - [aux_sym_send_env_token1] = ACTIONS(3408), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3408), - [aux_sym_server_alive_interval_token1] = ACTIONS(3408), - [aux_sym_session_type_token1] = ACTIONS(3408), - [aux_sym_set_env_token1] = ACTIONS(3408), - [aux_sym_stdin_null_token1] = ACTIONS(3408), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3408), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3408), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3408), - [aux_sym_syslog_facility_token1] = ACTIONS(3408), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3408), - [aux_sym_keep_alive_token1] = ACTIONS(3408), - [aux_sym_tag_token1] = ACTIONS(3408), - [aux_sym_tunnel_token1] = ACTIONS(3410), - [aux_sym_tunnel_device_token1] = ACTIONS(3408), - [aux_sym_update_host_keys_token1] = ACTIONS(3408), - [aux_sym_use_keychain_token1] = ACTIONS(3408), - [aux_sym_use_roaming_token1] = ACTIONS(3408), - [aux_sym_user_token1] = ACTIONS(3410), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3408), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3408), - [aux_sym_visual_host_key_token1] = ACTIONS(3408), - [aux_sym_xauth_location_token1] = ACTIONS(3408), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1609), + [aux_sym_match_token1] = ACTIONS(1607), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1607), + [aux_sym_address_family_token1] = ACTIONS(1607), + [aux_sym_batch_mode_token1] = ACTIONS(1607), + [aux_sym_bind_address_token1] = ACTIONS(1607), + [aux_sym_bind_interface_token1] = ACTIONS(1607), + [aux_sym_canonical_domains_token1] = ACTIONS(1607), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1607), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1607), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1607), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1607), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1607), + [aux_sym_certificate_file_token1] = ACTIONS(1607), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1607), + [aux_sym_channel_timeout_token1] = ACTIONS(1607), + [aux_sym_check_host_ip_token1] = ACTIONS(1607), + [aux_sym_ciphers_token1] = ACTIONS(1607), + [aux_sym_cipher_token1] = ACTIONS(1609), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1607), + [aux_sym_compression_token1] = ACTIONS(1607), + [aux_sym_connection_attempts_token1] = ACTIONS(1607), + [aux_sym_connect_timeout_token1] = ACTIONS(1607), + [aux_sym_control_master_token1] = ACTIONS(1607), + [aux_sym_control_path_token1] = ACTIONS(1607), + [aux_sym_control_persist_token1] = ACTIONS(1607), + [aux_sym_dynamic_forward_token1] = ACTIONS(1607), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1607), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1607), + [aux_sym_escape_char_token1] = ACTIONS(1607), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1607), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1607), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1607), + [aux_sym_forward_agent_token1] = ACTIONS(1607), + [aux_sym_forward_x11_token1] = ACTIONS(1609), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1607), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1607), + [aux_sym_gateway_ports_token1] = ACTIONS(1607), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1607), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1607), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1607), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1607), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1607), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1607), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1607), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1607), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1607), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1607), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1607), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1607), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1607), + [aux_sym_host_key_alias_token1] = ACTIONS(1607), + [aux_sym_hostname_token1] = ACTIONS(1607), + [aux_sym_identities_only_token1] = ACTIONS(1607), + [aux_sym_identity_agent_token1] = ACTIONS(1607), + [aux_sym_identity_file_token1] = ACTIONS(1607), + [aux_sym_ignore_unknown_token1] = ACTIONS(1607), + [aux_sym_include_token1] = ACTIONS(1607), + [aux_sym_ip_qos_token1] = ACTIONS(1607), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1607), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1607), + [aux_sym_kex_algorithms_token1] = ACTIONS(1607), + [aux_sym_known_hosts_command_token1] = ACTIONS(1607), + [aux_sym_local_command_token1] = ACTIONS(1607), + [aux_sym_local_forward_token1] = ACTIONS(1607), + [aux_sym_log_level_token1] = ACTIONS(1607), + [aux_sym_log_verbose_token1] = ACTIONS(1607), + [aux_sym_macs_token1] = ACTIONS(1607), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1607), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1607), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1607), + [aux_sym_password_authentication_token1] = ACTIONS(1607), + [aux_sym_permit_local_command_token1] = ACTIONS(1607), + [aux_sym_permit_remote_open_token1] = ACTIONS(1607), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1607), + [aux_sym_port_token1] = ACTIONS(1607), + [aux_sym_preferred_authentications_token1] = ACTIONS(1607), + [aux_sym_protocol_token1] = ACTIONS(1607), + [aux_sym_proxy_command_token1] = ACTIONS(1607), + [aux_sym_proxy_jump_token1] = ACTIONS(1607), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1607), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1607), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1607), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1607), + [aux_sym_rekey_limit_token1] = ACTIONS(1607), + [aux_sym_remote_command_token1] = ACTIONS(1607), + [aux_sym_remote_forward_token1] = ACTIONS(1607), + [aux_sym_request_tty_token1] = ACTIONS(1607), + [aux_sym_required_rsa_size_token1] = ACTIONS(1607), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1607), + [aux_sym_security_key_provider_token1] = ACTIONS(1607), + [aux_sym_send_env_token1] = ACTIONS(1607), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1607), + [aux_sym_server_alive_interval_token1] = ACTIONS(1607), + [aux_sym_session_type_token1] = ACTIONS(1607), + [aux_sym_set_env_token1] = ACTIONS(1607), + [aux_sym_stdin_null_token1] = ACTIONS(1607), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1607), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1607), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1607), + [aux_sym_syslog_facility_token1] = ACTIONS(1607), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1607), + [aux_sym_keep_alive_token1] = ACTIONS(1607), + [aux_sym_tag_token1] = ACTIONS(1607), + [aux_sym_tunnel_token1] = ACTIONS(1609), + [aux_sym_tunnel_device_token1] = ACTIONS(1607), + [aux_sym_update_host_keys_token1] = ACTIONS(1607), + [aux_sym_use_keychain_token1] = ACTIONS(1607), + [aux_sym_use_roaming_token1] = ACTIONS(1607), + [aux_sym_user_token1] = ACTIONS(1609), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1607), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1607), + [aux_sym_visual_host_key_token1] = ACTIONS(1607), + [aux_sym_xauth_location_token1] = ACTIONS(1607), }, [593] = { - [ts_builtin_sym_end] = ACTIONS(1512), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1514), - [aux_sym_match_token1] = ACTIONS(1512), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1512), - [aux_sym_address_family_token1] = ACTIONS(1512), - [aux_sym_batch_mode_token1] = ACTIONS(1512), - [aux_sym_bind_address_token1] = ACTIONS(1512), - [aux_sym_bind_interface_token1] = ACTIONS(1512), - [aux_sym_canonical_domains_token1] = ACTIONS(1512), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1512), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1512), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1512), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1512), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1512), - [aux_sym_certificate_file_token1] = ACTIONS(1512), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1512), - [aux_sym_channel_timeout_token1] = ACTIONS(1512), - [aux_sym_check_host_ip_token1] = ACTIONS(1512), - [aux_sym_ciphers_token1] = ACTIONS(1512), - [aux_sym_cipher_token1] = ACTIONS(1514), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1512), - [aux_sym_compression_token1] = ACTIONS(1512), - [aux_sym_connection_attempts_token1] = ACTIONS(1512), - [aux_sym_connect_timeout_token1] = ACTIONS(1512), - [aux_sym_control_master_token1] = ACTIONS(1512), - [aux_sym_control_path_token1] = ACTIONS(1512), - [aux_sym_control_persist_token1] = ACTIONS(1512), - [aux_sym_dynamic_forward_token1] = ACTIONS(1512), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1512), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1512), - [aux_sym_escape_char_token1] = ACTIONS(1512), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1512), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1512), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1512), - [aux_sym_forward_agent_token1] = ACTIONS(1512), - [aux_sym_forward_x11_token1] = ACTIONS(1514), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1512), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1512), - [aux_sym_gateway_ports_token1] = ACTIONS(1512), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1512), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1512), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1512), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1512), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1512), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1512), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1512), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1512), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1512), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1512), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1512), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1512), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1512), - [aux_sym_host_key_alias_token1] = ACTIONS(1512), - [aux_sym_hostname_token1] = ACTIONS(1512), - [aux_sym_identities_only_token1] = ACTIONS(1512), - [aux_sym_identity_agent_token1] = ACTIONS(1512), - [aux_sym_identity_file_token1] = ACTIONS(1512), - [aux_sym_ignore_unknown_token1] = ACTIONS(1512), - [aux_sym_include_token1] = ACTIONS(1512), - [aux_sym_ip_qos_token1] = ACTIONS(1512), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1512), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1512), - [aux_sym_kex_algorithms_token1] = ACTIONS(1512), - [aux_sym_known_hosts_command_token1] = ACTIONS(1512), - [aux_sym_local_command_token1] = ACTIONS(1512), - [aux_sym_local_forward_token1] = ACTIONS(1512), - [aux_sym_log_level_token1] = ACTIONS(1512), - [aux_sym_log_verbose_token1] = ACTIONS(1512), - [aux_sym_macs_token1] = ACTIONS(1512), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1512), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1512), - [aux_sym_password_authentication_token1] = ACTIONS(1512), - [aux_sym_permit_local_command_token1] = ACTIONS(1512), - [aux_sym_permit_remote_open_token1] = ACTIONS(1512), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1512), - [aux_sym_port_token1] = ACTIONS(1512), - [aux_sym_preferred_authentications_token1] = ACTIONS(1512), - [aux_sym_protocol_token1] = ACTIONS(1512), - [aux_sym_proxy_command_token1] = ACTIONS(1512), - [aux_sym_proxy_jump_token1] = ACTIONS(1512), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1512), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1512), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1512), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1512), - [aux_sym_rekey_limit_token1] = ACTIONS(1512), - [aux_sym_remote_command_token1] = ACTIONS(1512), - [aux_sym_remote_forward_token1] = ACTIONS(1512), - [aux_sym_request_tty_token1] = ACTIONS(1512), - [aux_sym_required_rsa_size_token1] = ACTIONS(1512), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1512), - [aux_sym_security_key_provider_token1] = ACTIONS(1512), - [aux_sym_send_env_token1] = ACTIONS(1512), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1512), - [aux_sym_server_alive_interval_token1] = ACTIONS(1512), - [aux_sym_session_type_token1] = ACTIONS(1512), - [aux_sym_set_env_token1] = ACTIONS(1512), - [aux_sym_stdin_null_token1] = ACTIONS(1512), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1512), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1512), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1512), - [aux_sym_syslog_facility_token1] = ACTIONS(1512), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1512), - [aux_sym_keep_alive_token1] = ACTIONS(1512), - [aux_sym_tag_token1] = ACTIONS(1512), - [aux_sym_tunnel_token1] = ACTIONS(1514), - [aux_sym_tunnel_device_token1] = ACTIONS(1512), - [aux_sym_update_host_keys_token1] = ACTIONS(1512), - [aux_sym_use_keychain_token1] = ACTIONS(1512), - [aux_sym_use_roaming_token1] = ACTIONS(1512), - [aux_sym_user_token1] = ACTIONS(1514), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1512), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1512), - [aux_sym_visual_host_key_token1] = ACTIONS(1512), - [aux_sym_xauth_location_token1] = ACTIONS(1512), + [ts_builtin_sym_end] = ACTIONS(3407), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3409), + [aux_sym_match_token1] = ACTIONS(3407), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3407), + [aux_sym_address_family_token1] = ACTIONS(3407), + [aux_sym_batch_mode_token1] = ACTIONS(3407), + [aux_sym_bind_address_token1] = ACTIONS(3407), + [aux_sym_bind_interface_token1] = ACTIONS(3407), + [aux_sym_canonical_domains_token1] = ACTIONS(3407), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3407), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3407), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3407), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3407), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3407), + [aux_sym_certificate_file_token1] = ACTIONS(3407), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3407), + [aux_sym_channel_timeout_token1] = ACTIONS(3407), + [aux_sym_check_host_ip_token1] = ACTIONS(3407), + [aux_sym_ciphers_token1] = ACTIONS(3407), + [aux_sym_cipher_token1] = ACTIONS(3409), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3407), + [aux_sym_compression_token1] = ACTIONS(3407), + [aux_sym_connection_attempts_token1] = ACTIONS(3407), + [aux_sym_connect_timeout_token1] = ACTIONS(3407), + [aux_sym_control_master_token1] = ACTIONS(3407), + [aux_sym_control_path_token1] = ACTIONS(3407), + [aux_sym_control_persist_token1] = ACTIONS(3407), + [aux_sym_dynamic_forward_token1] = ACTIONS(3407), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3407), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3407), + [aux_sym_escape_char_token1] = ACTIONS(3407), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3407), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3407), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3407), + [aux_sym_forward_agent_token1] = ACTIONS(3407), + [aux_sym_forward_x11_token1] = ACTIONS(3409), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3407), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3407), + [aux_sym_gateway_ports_token1] = ACTIONS(3407), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3407), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3407), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3407), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3407), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3407), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3407), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3407), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3407), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3407), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3407), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3407), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3407), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3407), + [aux_sym_host_key_alias_token1] = ACTIONS(3407), + [aux_sym_hostname_token1] = ACTIONS(3407), + [aux_sym_identities_only_token1] = ACTIONS(3407), + [aux_sym_identity_agent_token1] = ACTIONS(3407), + [aux_sym_identity_file_token1] = ACTIONS(3407), + [aux_sym_ignore_unknown_token1] = ACTIONS(3407), + [aux_sym_include_token1] = ACTIONS(3407), + [aux_sym_ip_qos_token1] = ACTIONS(3407), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3407), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3407), + [aux_sym_kex_algorithms_token1] = ACTIONS(3407), + [aux_sym_known_hosts_command_token1] = ACTIONS(3407), + [aux_sym_local_command_token1] = ACTIONS(3407), + [aux_sym_local_forward_token1] = ACTIONS(3407), + [aux_sym_log_level_token1] = ACTIONS(3407), + [aux_sym_log_verbose_token1] = ACTIONS(3407), + [aux_sym_macs_token1] = ACTIONS(3407), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3407), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3407), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3407), + [aux_sym_password_authentication_token1] = ACTIONS(3407), + [aux_sym_permit_local_command_token1] = ACTIONS(3407), + [aux_sym_permit_remote_open_token1] = ACTIONS(3407), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3407), + [aux_sym_port_token1] = ACTIONS(3407), + [aux_sym_preferred_authentications_token1] = ACTIONS(3407), + [aux_sym_protocol_token1] = ACTIONS(3407), + [aux_sym_proxy_command_token1] = ACTIONS(3407), + [aux_sym_proxy_jump_token1] = ACTIONS(3407), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3407), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3407), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3407), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3407), + [aux_sym_rekey_limit_token1] = ACTIONS(3407), + [aux_sym_remote_command_token1] = ACTIONS(3407), + [aux_sym_remote_forward_token1] = ACTIONS(3407), + [aux_sym_request_tty_token1] = ACTIONS(3407), + [aux_sym_required_rsa_size_token1] = ACTIONS(3407), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3407), + [aux_sym_security_key_provider_token1] = ACTIONS(3407), + [aux_sym_send_env_token1] = ACTIONS(3407), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3407), + [aux_sym_server_alive_interval_token1] = ACTIONS(3407), + [aux_sym_session_type_token1] = ACTIONS(3407), + [aux_sym_set_env_token1] = ACTIONS(3407), + [aux_sym_stdin_null_token1] = ACTIONS(3407), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3407), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3407), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3407), + [aux_sym_syslog_facility_token1] = ACTIONS(3407), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3407), + [aux_sym_keep_alive_token1] = ACTIONS(3407), + [aux_sym_tag_token1] = ACTIONS(3407), + [aux_sym_tunnel_token1] = ACTIONS(3409), + [aux_sym_tunnel_device_token1] = ACTIONS(3407), + [aux_sym_update_host_keys_token1] = ACTIONS(3407), + [aux_sym_use_keychain_token1] = ACTIONS(3407), + [aux_sym_use_roaming_token1] = ACTIONS(3407), + [aux_sym_user_token1] = ACTIONS(3409), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3407), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3407), + [aux_sym_visual_host_key_token1] = ACTIONS(3407), + [aux_sym_xauth_location_token1] = ACTIONS(3407), }, [594] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1520), - [aux_sym_match_token1] = ACTIONS(1518), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1518), - [aux_sym_address_family_token1] = ACTIONS(1518), - [aux_sym_batch_mode_token1] = ACTIONS(1518), - [aux_sym_bind_address_token1] = ACTIONS(1518), - [aux_sym_bind_interface_token1] = ACTIONS(1518), - [aux_sym_canonical_domains_token1] = ACTIONS(1518), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1518), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1518), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1518), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1518), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1518), - [aux_sym_certificate_file_token1] = ACTIONS(1518), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1518), - [aux_sym_channel_timeout_token1] = ACTIONS(1518), - [aux_sym_check_host_ip_token1] = ACTIONS(1518), - [aux_sym_ciphers_token1] = ACTIONS(1518), - [aux_sym_cipher_token1] = ACTIONS(1520), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1518), - [aux_sym_compression_token1] = ACTIONS(1518), - [aux_sym_connection_attempts_token1] = ACTIONS(1518), - [aux_sym_connect_timeout_token1] = ACTIONS(1518), - [aux_sym_control_master_token1] = ACTIONS(1518), - [aux_sym_control_path_token1] = ACTIONS(1518), - [aux_sym_control_persist_token1] = ACTIONS(1518), - [aux_sym_dynamic_forward_token1] = ACTIONS(1518), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1518), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1518), - [aux_sym_escape_char_token1] = ACTIONS(1518), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1518), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1518), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1518), - [aux_sym_forward_agent_token1] = ACTIONS(1518), - [aux_sym_forward_x11_token1] = ACTIONS(1520), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1518), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1518), - [aux_sym_gateway_ports_token1] = ACTIONS(1518), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1518), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1518), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1518), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1518), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1518), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1518), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1518), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1518), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1518), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1518), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1518), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1518), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1518), - [aux_sym_host_key_alias_token1] = ACTIONS(1518), - [aux_sym_hostname_token1] = ACTIONS(1518), - [aux_sym_identities_only_token1] = ACTIONS(1518), - [aux_sym_identity_agent_token1] = ACTIONS(1518), - [aux_sym_identity_file_token1] = ACTIONS(1518), - [aux_sym_ignore_unknown_token1] = ACTIONS(1518), - [aux_sym_include_token1] = ACTIONS(1518), - [aux_sym_ip_qos_token1] = ACTIONS(1518), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1518), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1518), - [aux_sym_kex_algorithms_token1] = ACTIONS(1518), - [aux_sym_known_hosts_command_token1] = ACTIONS(1518), - [aux_sym_local_command_token1] = ACTIONS(1518), - [aux_sym_local_forward_token1] = ACTIONS(1518), - [aux_sym_log_level_token1] = ACTIONS(1518), - [aux_sym_log_verbose_token1] = ACTIONS(1518), - [aux_sym_macs_token1] = ACTIONS(1518), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1518), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1518), - [aux_sym_password_authentication_token1] = ACTIONS(1518), - [aux_sym_permit_local_command_token1] = ACTIONS(1518), - [aux_sym_permit_remote_open_token1] = ACTIONS(1518), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1518), - [aux_sym_port_token1] = ACTIONS(1518), - [aux_sym_preferred_authentications_token1] = ACTIONS(1518), - [aux_sym_protocol_token1] = ACTIONS(1518), - [aux_sym_proxy_command_token1] = ACTIONS(1518), - [aux_sym_proxy_jump_token1] = ACTIONS(1518), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1518), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1518), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1518), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1518), - [aux_sym_rekey_limit_token1] = ACTIONS(1518), - [aux_sym_remote_command_token1] = ACTIONS(1518), - [aux_sym_remote_forward_token1] = ACTIONS(1518), - [aux_sym_request_tty_token1] = ACTIONS(1518), - [aux_sym_required_rsa_size_token1] = ACTIONS(1518), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1518), - [aux_sym_security_key_provider_token1] = ACTIONS(1518), - [aux_sym_send_env_token1] = ACTIONS(1518), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1518), - [aux_sym_server_alive_interval_token1] = ACTIONS(1518), - [aux_sym_session_type_token1] = ACTIONS(1518), - [aux_sym_set_env_token1] = ACTIONS(1518), - [aux_sym_stdin_null_token1] = ACTIONS(1518), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1518), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1518), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1518), - [aux_sym_syslog_facility_token1] = ACTIONS(1518), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1518), - [aux_sym_keep_alive_token1] = ACTIONS(1518), - [aux_sym_tag_token1] = ACTIONS(1518), - [aux_sym_tunnel_token1] = ACTIONS(1520), - [aux_sym_tunnel_device_token1] = ACTIONS(1518), - [aux_sym_update_host_keys_token1] = ACTIONS(1518), - [aux_sym_use_keychain_token1] = ACTIONS(1518), - [aux_sym_use_roaming_token1] = ACTIONS(1518), - [aux_sym_user_token1] = ACTIONS(1520), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1518), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1518), - [aux_sym_visual_host_key_token1] = ACTIONS(1518), - [aux_sym_xauth_location_token1] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(3411), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3413), + [aux_sym_match_token1] = ACTIONS(3411), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3411), + [aux_sym_address_family_token1] = ACTIONS(3411), + [aux_sym_batch_mode_token1] = ACTIONS(3411), + [aux_sym_bind_address_token1] = ACTIONS(3411), + [aux_sym_bind_interface_token1] = ACTIONS(3411), + [aux_sym_canonical_domains_token1] = ACTIONS(3411), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3411), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3411), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3411), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3411), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3411), + [aux_sym_certificate_file_token1] = ACTIONS(3411), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3411), + [aux_sym_channel_timeout_token1] = ACTIONS(3411), + [aux_sym_check_host_ip_token1] = ACTIONS(3411), + [aux_sym_ciphers_token1] = ACTIONS(3411), + [aux_sym_cipher_token1] = ACTIONS(3413), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3411), + [aux_sym_compression_token1] = ACTIONS(3411), + [aux_sym_connection_attempts_token1] = ACTIONS(3411), + [aux_sym_connect_timeout_token1] = ACTIONS(3411), + [aux_sym_control_master_token1] = ACTIONS(3411), + [aux_sym_control_path_token1] = ACTIONS(3411), + [aux_sym_control_persist_token1] = ACTIONS(3411), + [aux_sym_dynamic_forward_token1] = ACTIONS(3411), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3411), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3411), + [aux_sym_escape_char_token1] = ACTIONS(3411), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3411), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3411), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3411), + [aux_sym_forward_agent_token1] = ACTIONS(3411), + [aux_sym_forward_x11_token1] = ACTIONS(3413), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3411), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3411), + [aux_sym_gateway_ports_token1] = ACTIONS(3411), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3411), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3411), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3411), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3411), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3411), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3411), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3411), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3411), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3411), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3411), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3411), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3411), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3411), + [aux_sym_host_key_alias_token1] = ACTIONS(3411), + [aux_sym_hostname_token1] = ACTIONS(3411), + [aux_sym_identities_only_token1] = ACTIONS(3411), + [aux_sym_identity_agent_token1] = ACTIONS(3411), + [aux_sym_identity_file_token1] = ACTIONS(3411), + [aux_sym_ignore_unknown_token1] = ACTIONS(3411), + [aux_sym_include_token1] = ACTIONS(3411), + [aux_sym_ip_qos_token1] = ACTIONS(3411), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3411), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3411), + [aux_sym_kex_algorithms_token1] = ACTIONS(3411), + [aux_sym_known_hosts_command_token1] = ACTIONS(3411), + [aux_sym_local_command_token1] = ACTIONS(3411), + [aux_sym_local_forward_token1] = ACTIONS(3411), + [aux_sym_log_level_token1] = ACTIONS(3411), + [aux_sym_log_verbose_token1] = ACTIONS(3411), + [aux_sym_macs_token1] = ACTIONS(3411), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3411), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3411), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3411), + [aux_sym_password_authentication_token1] = ACTIONS(3411), + [aux_sym_permit_local_command_token1] = ACTIONS(3411), + [aux_sym_permit_remote_open_token1] = ACTIONS(3411), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3411), + [aux_sym_port_token1] = ACTIONS(3411), + [aux_sym_preferred_authentications_token1] = ACTIONS(3411), + [aux_sym_protocol_token1] = ACTIONS(3411), + [aux_sym_proxy_command_token1] = ACTIONS(3411), + [aux_sym_proxy_jump_token1] = ACTIONS(3411), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3411), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3411), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3411), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3411), + [aux_sym_rekey_limit_token1] = ACTIONS(3411), + [aux_sym_remote_command_token1] = ACTIONS(3411), + [aux_sym_remote_forward_token1] = ACTIONS(3411), + [aux_sym_request_tty_token1] = ACTIONS(3411), + [aux_sym_required_rsa_size_token1] = ACTIONS(3411), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3411), + [aux_sym_security_key_provider_token1] = ACTIONS(3411), + [aux_sym_send_env_token1] = ACTIONS(3411), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3411), + [aux_sym_server_alive_interval_token1] = ACTIONS(3411), + [aux_sym_session_type_token1] = ACTIONS(3411), + [aux_sym_set_env_token1] = ACTIONS(3411), + [aux_sym_stdin_null_token1] = ACTIONS(3411), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3411), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3411), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3411), + [aux_sym_syslog_facility_token1] = ACTIONS(3411), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3411), + [aux_sym_keep_alive_token1] = ACTIONS(3411), + [aux_sym_tag_token1] = ACTIONS(3411), + [aux_sym_tunnel_token1] = ACTIONS(3413), + [aux_sym_tunnel_device_token1] = ACTIONS(3411), + [aux_sym_update_host_keys_token1] = ACTIONS(3411), + [aux_sym_use_keychain_token1] = ACTIONS(3411), + [aux_sym_use_roaming_token1] = ACTIONS(3411), + [aux_sym_user_token1] = ACTIONS(3413), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3411), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3411), + [aux_sym_visual_host_key_token1] = ACTIONS(3411), + [aux_sym_xauth_location_token1] = ACTIONS(3411), }, [595] = { - [ts_builtin_sym_end] = ACTIONS(3412), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3414), - [aux_sym_match_token1] = ACTIONS(3412), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3412), - [aux_sym_address_family_token1] = ACTIONS(3412), - [aux_sym_batch_mode_token1] = ACTIONS(3412), - [aux_sym_bind_address_token1] = ACTIONS(3412), - [aux_sym_bind_interface_token1] = ACTIONS(3412), - [aux_sym_canonical_domains_token1] = ACTIONS(3412), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3412), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3412), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3412), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3412), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3412), - [aux_sym_certificate_file_token1] = ACTIONS(3412), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3412), - [aux_sym_channel_timeout_token1] = ACTIONS(3412), - [aux_sym_check_host_ip_token1] = ACTIONS(3412), - [aux_sym_ciphers_token1] = ACTIONS(3412), - [aux_sym_cipher_token1] = ACTIONS(3414), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3412), - [aux_sym_compression_token1] = ACTIONS(3412), - [aux_sym_connection_attempts_token1] = ACTIONS(3412), - [aux_sym_connect_timeout_token1] = ACTIONS(3412), - [aux_sym_control_master_token1] = ACTIONS(3412), - [aux_sym_control_path_token1] = ACTIONS(3412), - [aux_sym_control_persist_token1] = ACTIONS(3412), - [aux_sym_dynamic_forward_token1] = ACTIONS(3412), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3412), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3412), - [aux_sym_escape_char_token1] = ACTIONS(3412), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3412), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3412), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3412), - [aux_sym_forward_agent_token1] = ACTIONS(3412), - [aux_sym_forward_x11_token1] = ACTIONS(3414), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3412), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3412), - [aux_sym_gateway_ports_token1] = ACTIONS(3412), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3412), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3412), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3412), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3412), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3412), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3412), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3412), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3412), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3412), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3412), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3412), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3412), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3412), - [aux_sym_host_key_alias_token1] = ACTIONS(3412), - [aux_sym_hostname_token1] = ACTIONS(3412), - [aux_sym_identities_only_token1] = ACTIONS(3412), - [aux_sym_identity_agent_token1] = ACTIONS(3412), - [aux_sym_identity_file_token1] = ACTIONS(3412), - [aux_sym_ignore_unknown_token1] = ACTIONS(3412), - [aux_sym_include_token1] = ACTIONS(3412), - [aux_sym_ip_qos_token1] = ACTIONS(3412), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3412), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3412), - [aux_sym_kex_algorithms_token1] = ACTIONS(3412), - [aux_sym_known_hosts_command_token1] = ACTIONS(3412), - [aux_sym_local_command_token1] = ACTIONS(3412), - [aux_sym_local_forward_token1] = ACTIONS(3412), - [aux_sym_log_level_token1] = ACTIONS(3412), - [aux_sym_log_verbose_token1] = ACTIONS(3412), - [aux_sym_macs_token1] = ACTIONS(3412), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3412), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3412), - [aux_sym_password_authentication_token1] = ACTIONS(3412), - [aux_sym_permit_local_command_token1] = ACTIONS(3412), - [aux_sym_permit_remote_open_token1] = ACTIONS(3412), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3412), - [aux_sym_port_token1] = ACTIONS(3412), - [aux_sym_preferred_authentications_token1] = ACTIONS(3412), - [aux_sym_protocol_token1] = ACTIONS(3412), - [aux_sym_proxy_command_token1] = ACTIONS(3412), - [aux_sym_proxy_jump_token1] = ACTIONS(3412), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3412), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3412), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3412), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3412), - [aux_sym_rekey_limit_token1] = ACTIONS(3412), - [aux_sym_remote_command_token1] = ACTIONS(3412), - [aux_sym_remote_forward_token1] = ACTIONS(3412), - [aux_sym_request_tty_token1] = ACTIONS(3412), - [aux_sym_required_rsa_size_token1] = ACTIONS(3412), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3412), - [aux_sym_security_key_provider_token1] = ACTIONS(3412), - [aux_sym_send_env_token1] = ACTIONS(3412), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3412), - [aux_sym_server_alive_interval_token1] = ACTIONS(3412), - [aux_sym_session_type_token1] = ACTIONS(3412), - [aux_sym_set_env_token1] = ACTIONS(3412), - [aux_sym_stdin_null_token1] = ACTIONS(3412), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3412), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3412), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3412), - [aux_sym_syslog_facility_token1] = ACTIONS(3412), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3412), - [aux_sym_keep_alive_token1] = ACTIONS(3412), - [aux_sym_tag_token1] = ACTIONS(3412), - [aux_sym_tunnel_token1] = ACTIONS(3414), - [aux_sym_tunnel_device_token1] = ACTIONS(3412), - [aux_sym_update_host_keys_token1] = ACTIONS(3412), - [aux_sym_use_keychain_token1] = ACTIONS(3412), - [aux_sym_use_roaming_token1] = ACTIONS(3412), - [aux_sym_user_token1] = ACTIONS(3414), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3412), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3412), - [aux_sym_visual_host_key_token1] = ACTIONS(3412), - [aux_sym_xauth_location_token1] = ACTIONS(3412), + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3417), + [aux_sym_match_token1] = ACTIONS(3415), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3415), + [aux_sym_address_family_token1] = ACTIONS(3415), + [aux_sym_batch_mode_token1] = ACTIONS(3415), + [aux_sym_bind_address_token1] = ACTIONS(3415), + [aux_sym_bind_interface_token1] = ACTIONS(3415), + [aux_sym_canonical_domains_token1] = ACTIONS(3415), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3415), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3415), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3415), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3415), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3415), + [aux_sym_certificate_file_token1] = ACTIONS(3415), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3415), + [aux_sym_channel_timeout_token1] = ACTIONS(3415), + [aux_sym_check_host_ip_token1] = ACTIONS(3415), + [aux_sym_ciphers_token1] = ACTIONS(3415), + [aux_sym_cipher_token1] = ACTIONS(3417), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3415), + [aux_sym_compression_token1] = ACTIONS(3415), + [aux_sym_connection_attempts_token1] = ACTIONS(3415), + [aux_sym_connect_timeout_token1] = ACTIONS(3415), + [aux_sym_control_master_token1] = ACTIONS(3415), + [aux_sym_control_path_token1] = ACTIONS(3415), + [aux_sym_control_persist_token1] = ACTIONS(3415), + [aux_sym_dynamic_forward_token1] = ACTIONS(3415), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3415), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3415), + [aux_sym_escape_char_token1] = ACTIONS(3415), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3415), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3415), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3415), + [aux_sym_forward_agent_token1] = ACTIONS(3415), + [aux_sym_forward_x11_token1] = ACTIONS(3417), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3415), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3415), + [aux_sym_gateway_ports_token1] = ACTIONS(3415), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3415), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3415), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3415), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3415), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3415), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3415), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3415), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3415), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3415), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3415), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3415), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3415), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3415), + [aux_sym_host_key_alias_token1] = ACTIONS(3415), + [aux_sym_hostname_token1] = ACTIONS(3415), + [aux_sym_identities_only_token1] = ACTIONS(3415), + [aux_sym_identity_agent_token1] = ACTIONS(3415), + [aux_sym_identity_file_token1] = ACTIONS(3415), + [aux_sym_ignore_unknown_token1] = ACTIONS(3415), + [aux_sym_include_token1] = ACTIONS(3415), + [aux_sym_ip_qos_token1] = ACTIONS(3415), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3415), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3415), + [aux_sym_kex_algorithms_token1] = ACTIONS(3415), + [aux_sym_known_hosts_command_token1] = ACTIONS(3415), + [aux_sym_local_command_token1] = ACTIONS(3415), + [aux_sym_local_forward_token1] = ACTIONS(3415), + [aux_sym_log_level_token1] = ACTIONS(3415), + [aux_sym_log_verbose_token1] = ACTIONS(3415), + [aux_sym_macs_token1] = ACTIONS(3415), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3415), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3415), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3415), + [aux_sym_password_authentication_token1] = ACTIONS(3415), + [aux_sym_permit_local_command_token1] = ACTIONS(3415), + [aux_sym_permit_remote_open_token1] = ACTIONS(3415), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3415), + [aux_sym_port_token1] = ACTIONS(3415), + [aux_sym_preferred_authentications_token1] = ACTIONS(3415), + [aux_sym_protocol_token1] = ACTIONS(3415), + [aux_sym_proxy_command_token1] = ACTIONS(3415), + [aux_sym_proxy_jump_token1] = ACTIONS(3415), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3415), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3415), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3415), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3415), + [aux_sym_rekey_limit_token1] = ACTIONS(3415), + [aux_sym_remote_command_token1] = ACTIONS(3415), + [aux_sym_remote_forward_token1] = ACTIONS(3415), + [aux_sym_request_tty_token1] = ACTIONS(3415), + [aux_sym_required_rsa_size_token1] = ACTIONS(3415), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3415), + [aux_sym_security_key_provider_token1] = ACTIONS(3415), + [aux_sym_send_env_token1] = ACTIONS(3415), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3415), + [aux_sym_server_alive_interval_token1] = ACTIONS(3415), + [aux_sym_session_type_token1] = ACTIONS(3415), + [aux_sym_set_env_token1] = ACTIONS(3415), + [aux_sym_stdin_null_token1] = ACTIONS(3415), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3415), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3415), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3415), + [aux_sym_syslog_facility_token1] = ACTIONS(3415), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3415), + [aux_sym_keep_alive_token1] = ACTIONS(3415), + [aux_sym_tag_token1] = ACTIONS(3415), + [aux_sym_tunnel_token1] = ACTIONS(3417), + [aux_sym_tunnel_device_token1] = ACTIONS(3415), + [aux_sym_update_host_keys_token1] = ACTIONS(3415), + [aux_sym_use_keychain_token1] = ACTIONS(3415), + [aux_sym_use_roaming_token1] = ACTIONS(3415), + [aux_sym_user_token1] = ACTIONS(3417), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3415), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3415), + [aux_sym_visual_host_key_token1] = ACTIONS(3415), + [aux_sym_xauth_location_token1] = ACTIONS(3415), }, [596] = { - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3418), - [aux_sym_match_token1] = ACTIONS(3416), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3416), - [aux_sym_address_family_token1] = ACTIONS(3416), - [aux_sym_batch_mode_token1] = ACTIONS(3416), - [aux_sym_bind_address_token1] = ACTIONS(3416), - [aux_sym_bind_interface_token1] = ACTIONS(3416), - [aux_sym_canonical_domains_token1] = ACTIONS(3416), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3416), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3416), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3416), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3416), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3416), - [aux_sym_certificate_file_token1] = ACTIONS(3416), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3416), - [aux_sym_channel_timeout_token1] = ACTIONS(3416), - [aux_sym_check_host_ip_token1] = ACTIONS(3416), - [aux_sym_ciphers_token1] = ACTIONS(3416), - [aux_sym_cipher_token1] = ACTIONS(3418), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3416), - [aux_sym_compression_token1] = ACTIONS(3416), - [aux_sym_connection_attempts_token1] = ACTIONS(3416), - [aux_sym_connect_timeout_token1] = ACTIONS(3416), - [aux_sym_control_master_token1] = ACTIONS(3416), - [aux_sym_control_path_token1] = ACTIONS(3416), - [aux_sym_control_persist_token1] = ACTIONS(3416), - [aux_sym_dynamic_forward_token1] = ACTIONS(3416), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3416), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3416), - [aux_sym_escape_char_token1] = ACTIONS(3416), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3416), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3416), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3416), - [aux_sym_forward_agent_token1] = ACTIONS(3416), - [aux_sym_forward_x11_token1] = ACTIONS(3418), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3416), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3416), - [aux_sym_gateway_ports_token1] = ACTIONS(3416), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3416), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3416), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3416), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3416), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3416), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3416), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3416), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3416), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3416), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3416), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3416), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3416), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3416), - [aux_sym_host_key_alias_token1] = ACTIONS(3416), - [aux_sym_hostname_token1] = ACTIONS(3416), - [aux_sym_identities_only_token1] = ACTIONS(3416), - [aux_sym_identity_agent_token1] = ACTIONS(3416), - [aux_sym_identity_file_token1] = ACTIONS(3416), - [aux_sym_ignore_unknown_token1] = ACTIONS(3416), - [aux_sym_include_token1] = ACTIONS(3416), - [aux_sym_ip_qos_token1] = ACTIONS(3416), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3416), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3416), - [aux_sym_kex_algorithms_token1] = ACTIONS(3416), - [aux_sym_known_hosts_command_token1] = ACTIONS(3416), - [aux_sym_local_command_token1] = ACTIONS(3416), - [aux_sym_local_forward_token1] = ACTIONS(3416), - [aux_sym_log_level_token1] = ACTIONS(3416), - [aux_sym_log_verbose_token1] = ACTIONS(3416), - [aux_sym_macs_token1] = ACTIONS(3416), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3416), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3416), - [aux_sym_password_authentication_token1] = ACTIONS(3416), - [aux_sym_permit_local_command_token1] = ACTIONS(3416), - [aux_sym_permit_remote_open_token1] = ACTIONS(3416), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3416), - [aux_sym_port_token1] = ACTIONS(3416), - [aux_sym_preferred_authentications_token1] = ACTIONS(3416), - [aux_sym_protocol_token1] = ACTIONS(3416), - [aux_sym_proxy_command_token1] = ACTIONS(3416), - [aux_sym_proxy_jump_token1] = ACTIONS(3416), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3416), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3416), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3416), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3416), - [aux_sym_rekey_limit_token1] = ACTIONS(3416), - [aux_sym_remote_command_token1] = ACTIONS(3416), - [aux_sym_remote_forward_token1] = ACTIONS(3416), - [aux_sym_request_tty_token1] = ACTIONS(3416), - [aux_sym_required_rsa_size_token1] = ACTIONS(3416), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3416), - [aux_sym_security_key_provider_token1] = ACTIONS(3416), - [aux_sym_send_env_token1] = ACTIONS(3416), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3416), - [aux_sym_server_alive_interval_token1] = ACTIONS(3416), - [aux_sym_session_type_token1] = ACTIONS(3416), - [aux_sym_set_env_token1] = ACTIONS(3416), - [aux_sym_stdin_null_token1] = ACTIONS(3416), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3416), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3416), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3416), - [aux_sym_syslog_facility_token1] = ACTIONS(3416), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3416), - [aux_sym_keep_alive_token1] = ACTIONS(3416), - [aux_sym_tag_token1] = ACTIONS(3416), - [aux_sym_tunnel_token1] = ACTIONS(3418), - [aux_sym_tunnel_device_token1] = ACTIONS(3416), - [aux_sym_update_host_keys_token1] = ACTIONS(3416), - [aux_sym_use_keychain_token1] = ACTIONS(3416), - [aux_sym_use_roaming_token1] = ACTIONS(3416), - [aux_sym_user_token1] = ACTIONS(3418), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3416), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3416), - [aux_sym_visual_host_key_token1] = ACTIONS(3416), - [aux_sym_xauth_location_token1] = ACTIONS(3416), + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3421), + [aux_sym_match_token1] = ACTIONS(3419), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3419), + [aux_sym_address_family_token1] = ACTIONS(3419), + [aux_sym_batch_mode_token1] = ACTIONS(3419), + [aux_sym_bind_address_token1] = ACTIONS(3419), + [aux_sym_bind_interface_token1] = ACTIONS(3419), + [aux_sym_canonical_domains_token1] = ACTIONS(3419), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3419), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3419), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3419), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3419), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3419), + [aux_sym_certificate_file_token1] = ACTIONS(3419), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3419), + [aux_sym_channel_timeout_token1] = ACTIONS(3419), + [aux_sym_check_host_ip_token1] = ACTIONS(3419), + [aux_sym_ciphers_token1] = ACTIONS(3419), + [aux_sym_cipher_token1] = ACTIONS(3421), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3419), + [aux_sym_compression_token1] = ACTIONS(3419), + [aux_sym_connection_attempts_token1] = ACTIONS(3419), + [aux_sym_connect_timeout_token1] = ACTIONS(3419), + [aux_sym_control_master_token1] = ACTIONS(3419), + [aux_sym_control_path_token1] = ACTIONS(3419), + [aux_sym_control_persist_token1] = ACTIONS(3419), + [aux_sym_dynamic_forward_token1] = ACTIONS(3419), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3419), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3419), + [aux_sym_escape_char_token1] = ACTIONS(3419), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3419), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3419), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3419), + [aux_sym_forward_agent_token1] = ACTIONS(3419), + [aux_sym_forward_x11_token1] = ACTIONS(3421), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3419), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3419), + [aux_sym_gateway_ports_token1] = ACTIONS(3419), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3419), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3419), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3419), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3419), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3419), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3419), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3419), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3419), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3419), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3419), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3419), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3419), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3419), + [aux_sym_host_key_alias_token1] = ACTIONS(3419), + [aux_sym_hostname_token1] = ACTIONS(3419), + [aux_sym_identities_only_token1] = ACTIONS(3419), + [aux_sym_identity_agent_token1] = ACTIONS(3419), + [aux_sym_identity_file_token1] = ACTIONS(3419), + [aux_sym_ignore_unknown_token1] = ACTIONS(3419), + [aux_sym_include_token1] = ACTIONS(3419), + [aux_sym_ip_qos_token1] = ACTIONS(3419), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3419), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3419), + [aux_sym_kex_algorithms_token1] = ACTIONS(3419), + [aux_sym_known_hosts_command_token1] = ACTIONS(3419), + [aux_sym_local_command_token1] = ACTIONS(3419), + [aux_sym_local_forward_token1] = ACTIONS(3419), + [aux_sym_log_level_token1] = ACTIONS(3419), + [aux_sym_log_verbose_token1] = ACTIONS(3419), + [aux_sym_macs_token1] = ACTIONS(3419), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3419), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3419), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3419), + [aux_sym_password_authentication_token1] = ACTIONS(3419), + [aux_sym_permit_local_command_token1] = ACTIONS(3419), + [aux_sym_permit_remote_open_token1] = ACTIONS(3419), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3419), + [aux_sym_port_token1] = ACTIONS(3419), + [aux_sym_preferred_authentications_token1] = ACTIONS(3419), + [aux_sym_protocol_token1] = ACTIONS(3419), + [aux_sym_proxy_command_token1] = ACTIONS(3419), + [aux_sym_proxy_jump_token1] = ACTIONS(3419), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3419), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3419), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3419), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3419), + [aux_sym_rekey_limit_token1] = ACTIONS(3419), + [aux_sym_remote_command_token1] = ACTIONS(3419), + [aux_sym_remote_forward_token1] = ACTIONS(3419), + [aux_sym_request_tty_token1] = ACTIONS(3419), + [aux_sym_required_rsa_size_token1] = ACTIONS(3419), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3419), + [aux_sym_security_key_provider_token1] = ACTIONS(3419), + [aux_sym_send_env_token1] = ACTIONS(3419), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3419), + [aux_sym_server_alive_interval_token1] = ACTIONS(3419), + [aux_sym_session_type_token1] = ACTIONS(3419), + [aux_sym_set_env_token1] = ACTIONS(3419), + [aux_sym_stdin_null_token1] = ACTIONS(3419), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3419), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3419), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3419), + [aux_sym_syslog_facility_token1] = ACTIONS(3419), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3419), + [aux_sym_keep_alive_token1] = ACTIONS(3419), + [aux_sym_tag_token1] = ACTIONS(3419), + [aux_sym_tunnel_token1] = ACTIONS(3421), + [aux_sym_tunnel_device_token1] = ACTIONS(3419), + [aux_sym_update_host_keys_token1] = ACTIONS(3419), + [aux_sym_use_keychain_token1] = ACTIONS(3419), + [aux_sym_use_roaming_token1] = ACTIONS(3419), + [aux_sym_user_token1] = ACTIONS(3421), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3419), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3419), + [aux_sym_visual_host_key_token1] = ACTIONS(3419), + [aux_sym_xauth_location_token1] = ACTIONS(3419), }, [597] = { - [ts_builtin_sym_end] = ACTIONS(3420), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3422), - [aux_sym_match_token1] = ACTIONS(3420), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3420), - [aux_sym_address_family_token1] = ACTIONS(3420), - [aux_sym_batch_mode_token1] = ACTIONS(3420), - [aux_sym_bind_address_token1] = ACTIONS(3420), - [aux_sym_bind_interface_token1] = ACTIONS(3420), - [aux_sym_canonical_domains_token1] = ACTIONS(3420), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3420), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3420), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3420), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3420), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3420), - [aux_sym_certificate_file_token1] = ACTIONS(3420), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3420), - [aux_sym_channel_timeout_token1] = ACTIONS(3420), - [aux_sym_check_host_ip_token1] = ACTIONS(3420), - [aux_sym_ciphers_token1] = ACTIONS(3420), - [aux_sym_cipher_token1] = ACTIONS(3422), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3420), - [aux_sym_compression_token1] = ACTIONS(3420), - [aux_sym_connection_attempts_token1] = ACTIONS(3420), - [aux_sym_connect_timeout_token1] = ACTIONS(3420), - [aux_sym_control_master_token1] = ACTIONS(3420), - [aux_sym_control_path_token1] = ACTIONS(3420), - [aux_sym_control_persist_token1] = ACTIONS(3420), - [aux_sym_dynamic_forward_token1] = ACTIONS(3420), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3420), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3420), - [aux_sym_escape_char_token1] = ACTIONS(3420), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3420), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3420), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3420), - [aux_sym_forward_agent_token1] = ACTIONS(3420), - [aux_sym_forward_x11_token1] = ACTIONS(3422), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3420), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3420), - [aux_sym_gateway_ports_token1] = ACTIONS(3420), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3420), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3420), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3420), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3420), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3420), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3420), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3420), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3420), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3420), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3420), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3420), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3420), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3420), - [aux_sym_host_key_alias_token1] = ACTIONS(3420), - [aux_sym_hostname_token1] = ACTIONS(3420), - [aux_sym_identities_only_token1] = ACTIONS(3420), - [aux_sym_identity_agent_token1] = ACTIONS(3420), - [aux_sym_identity_file_token1] = ACTIONS(3420), - [aux_sym_ignore_unknown_token1] = ACTIONS(3420), - [aux_sym_include_token1] = ACTIONS(3420), - [aux_sym_ip_qos_token1] = ACTIONS(3420), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3420), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3420), - [aux_sym_kex_algorithms_token1] = ACTIONS(3420), - [aux_sym_known_hosts_command_token1] = ACTIONS(3420), - [aux_sym_local_command_token1] = ACTIONS(3420), - [aux_sym_local_forward_token1] = ACTIONS(3420), - [aux_sym_log_level_token1] = ACTIONS(3420), - [aux_sym_log_verbose_token1] = ACTIONS(3420), - [aux_sym_macs_token1] = ACTIONS(3420), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3420), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3420), - [aux_sym_password_authentication_token1] = ACTIONS(3420), - [aux_sym_permit_local_command_token1] = ACTIONS(3420), - [aux_sym_permit_remote_open_token1] = ACTIONS(3420), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3420), - [aux_sym_port_token1] = ACTIONS(3420), - [aux_sym_preferred_authentications_token1] = ACTIONS(3420), - [aux_sym_protocol_token1] = ACTIONS(3420), - [aux_sym_proxy_command_token1] = ACTIONS(3420), - [aux_sym_proxy_jump_token1] = ACTIONS(3420), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3420), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3420), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3420), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3420), - [aux_sym_rekey_limit_token1] = ACTIONS(3420), - [aux_sym_remote_command_token1] = ACTIONS(3420), - [aux_sym_remote_forward_token1] = ACTIONS(3420), - [aux_sym_request_tty_token1] = ACTIONS(3420), - [aux_sym_required_rsa_size_token1] = ACTIONS(3420), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3420), - [aux_sym_security_key_provider_token1] = ACTIONS(3420), - [aux_sym_send_env_token1] = ACTIONS(3420), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3420), - [aux_sym_server_alive_interval_token1] = ACTIONS(3420), - [aux_sym_session_type_token1] = ACTIONS(3420), - [aux_sym_set_env_token1] = ACTIONS(3420), - [aux_sym_stdin_null_token1] = ACTIONS(3420), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3420), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3420), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3420), - [aux_sym_syslog_facility_token1] = ACTIONS(3420), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3420), - [aux_sym_keep_alive_token1] = ACTIONS(3420), - [aux_sym_tag_token1] = ACTIONS(3420), - [aux_sym_tunnel_token1] = ACTIONS(3422), - [aux_sym_tunnel_device_token1] = ACTIONS(3420), - [aux_sym_update_host_keys_token1] = ACTIONS(3420), - [aux_sym_use_keychain_token1] = ACTIONS(3420), - [aux_sym_use_roaming_token1] = ACTIONS(3420), - [aux_sym_user_token1] = ACTIONS(3422), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3420), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3420), - [aux_sym_visual_host_key_token1] = ACTIONS(3420), - [aux_sym_xauth_location_token1] = ACTIONS(3420), + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3425), + [aux_sym_match_token1] = ACTIONS(3423), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3423), + [aux_sym_address_family_token1] = ACTIONS(3423), + [aux_sym_batch_mode_token1] = ACTIONS(3423), + [aux_sym_bind_address_token1] = ACTIONS(3423), + [aux_sym_bind_interface_token1] = ACTIONS(3423), + [aux_sym_canonical_domains_token1] = ACTIONS(3423), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3423), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3423), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3423), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3423), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3423), + [aux_sym_certificate_file_token1] = ACTIONS(3423), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3423), + [aux_sym_channel_timeout_token1] = ACTIONS(3423), + [aux_sym_check_host_ip_token1] = ACTIONS(3423), + [aux_sym_ciphers_token1] = ACTIONS(3423), + [aux_sym_cipher_token1] = ACTIONS(3425), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3423), + [aux_sym_compression_token1] = ACTIONS(3423), + [aux_sym_connection_attempts_token1] = ACTIONS(3423), + [aux_sym_connect_timeout_token1] = ACTIONS(3423), + [aux_sym_control_master_token1] = ACTIONS(3423), + [aux_sym_control_path_token1] = ACTIONS(3423), + [aux_sym_control_persist_token1] = ACTIONS(3423), + [aux_sym_dynamic_forward_token1] = ACTIONS(3423), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3423), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3423), + [aux_sym_escape_char_token1] = ACTIONS(3423), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3423), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3423), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3423), + [aux_sym_forward_agent_token1] = ACTIONS(3423), + [aux_sym_forward_x11_token1] = ACTIONS(3425), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3423), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3423), + [aux_sym_gateway_ports_token1] = ACTIONS(3423), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3423), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3423), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3423), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3423), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3423), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3423), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3423), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3423), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3423), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3423), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3423), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3423), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3423), + [aux_sym_host_key_alias_token1] = ACTIONS(3423), + [aux_sym_hostname_token1] = ACTIONS(3423), + [aux_sym_identities_only_token1] = ACTIONS(3423), + [aux_sym_identity_agent_token1] = ACTIONS(3423), + [aux_sym_identity_file_token1] = ACTIONS(3423), + [aux_sym_ignore_unknown_token1] = ACTIONS(3423), + [aux_sym_include_token1] = ACTIONS(3423), + [aux_sym_ip_qos_token1] = ACTIONS(3423), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3423), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3423), + [aux_sym_kex_algorithms_token1] = ACTIONS(3423), + [aux_sym_known_hosts_command_token1] = ACTIONS(3423), + [aux_sym_local_command_token1] = ACTIONS(3423), + [aux_sym_local_forward_token1] = ACTIONS(3423), + [aux_sym_log_level_token1] = ACTIONS(3423), + [aux_sym_log_verbose_token1] = ACTIONS(3423), + [aux_sym_macs_token1] = ACTIONS(3423), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3423), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3423), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3423), + [aux_sym_password_authentication_token1] = ACTIONS(3423), + [aux_sym_permit_local_command_token1] = ACTIONS(3423), + [aux_sym_permit_remote_open_token1] = ACTIONS(3423), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3423), + [aux_sym_port_token1] = ACTIONS(3423), + [aux_sym_preferred_authentications_token1] = ACTIONS(3423), + [aux_sym_protocol_token1] = ACTIONS(3423), + [aux_sym_proxy_command_token1] = ACTIONS(3423), + [aux_sym_proxy_jump_token1] = ACTIONS(3423), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3423), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3423), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3423), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3423), + [aux_sym_rekey_limit_token1] = ACTIONS(3423), + [aux_sym_remote_command_token1] = ACTIONS(3423), + [aux_sym_remote_forward_token1] = ACTIONS(3423), + [aux_sym_request_tty_token1] = ACTIONS(3423), + [aux_sym_required_rsa_size_token1] = ACTIONS(3423), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3423), + [aux_sym_security_key_provider_token1] = ACTIONS(3423), + [aux_sym_send_env_token1] = ACTIONS(3423), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3423), + [aux_sym_server_alive_interval_token1] = ACTIONS(3423), + [aux_sym_session_type_token1] = ACTIONS(3423), + [aux_sym_set_env_token1] = ACTIONS(3423), + [aux_sym_stdin_null_token1] = ACTIONS(3423), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3423), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3423), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3423), + [aux_sym_syslog_facility_token1] = ACTIONS(3423), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3423), + [aux_sym_keep_alive_token1] = ACTIONS(3423), + [aux_sym_tag_token1] = ACTIONS(3423), + [aux_sym_tunnel_token1] = ACTIONS(3425), + [aux_sym_tunnel_device_token1] = ACTIONS(3423), + [aux_sym_update_host_keys_token1] = ACTIONS(3423), + [aux_sym_use_keychain_token1] = ACTIONS(3423), + [aux_sym_use_roaming_token1] = ACTIONS(3423), + [aux_sym_user_token1] = ACTIONS(3425), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3423), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3423), + [aux_sym_visual_host_key_token1] = ACTIONS(3423), + [aux_sym_xauth_location_token1] = ACTIONS(3423), }, [598] = { - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3426), - [aux_sym_match_token1] = ACTIONS(3424), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3424), - [aux_sym_address_family_token1] = ACTIONS(3424), - [aux_sym_batch_mode_token1] = ACTIONS(3424), - [aux_sym_bind_address_token1] = ACTIONS(3424), - [aux_sym_bind_interface_token1] = ACTIONS(3424), - [aux_sym_canonical_domains_token1] = ACTIONS(3424), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3424), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3424), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3424), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3424), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3424), - [aux_sym_certificate_file_token1] = ACTIONS(3424), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3424), - [aux_sym_channel_timeout_token1] = ACTIONS(3424), - [aux_sym_check_host_ip_token1] = ACTIONS(3424), - [aux_sym_ciphers_token1] = ACTIONS(3424), - [aux_sym_cipher_token1] = ACTIONS(3426), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3424), - [aux_sym_compression_token1] = ACTIONS(3424), - [aux_sym_connection_attempts_token1] = ACTIONS(3424), - [aux_sym_connect_timeout_token1] = ACTIONS(3424), - [aux_sym_control_master_token1] = ACTIONS(3424), - [aux_sym_control_path_token1] = ACTIONS(3424), - [aux_sym_control_persist_token1] = ACTIONS(3424), - [aux_sym_dynamic_forward_token1] = ACTIONS(3424), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3424), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3424), - [aux_sym_escape_char_token1] = ACTIONS(3424), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3424), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3424), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3424), - [aux_sym_forward_agent_token1] = ACTIONS(3424), - [aux_sym_forward_x11_token1] = ACTIONS(3426), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3424), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3424), - [aux_sym_gateway_ports_token1] = ACTIONS(3424), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3424), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3424), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3424), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3424), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3424), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3424), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3424), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3424), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3424), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3424), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3424), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3424), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3424), - [aux_sym_host_key_alias_token1] = ACTIONS(3424), - [aux_sym_hostname_token1] = ACTIONS(3424), - [aux_sym_identities_only_token1] = ACTIONS(3424), - [aux_sym_identity_agent_token1] = ACTIONS(3424), - [aux_sym_identity_file_token1] = ACTIONS(3424), - [aux_sym_ignore_unknown_token1] = ACTIONS(3424), - [aux_sym_include_token1] = ACTIONS(3424), - [aux_sym_ip_qos_token1] = ACTIONS(3424), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3424), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3424), - [aux_sym_kex_algorithms_token1] = ACTIONS(3424), - [aux_sym_known_hosts_command_token1] = ACTIONS(3424), - [aux_sym_local_command_token1] = ACTIONS(3424), - [aux_sym_local_forward_token1] = ACTIONS(3424), - [aux_sym_log_level_token1] = ACTIONS(3424), - [aux_sym_log_verbose_token1] = ACTIONS(3424), - [aux_sym_macs_token1] = ACTIONS(3424), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3424), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3424), - [aux_sym_password_authentication_token1] = ACTIONS(3424), - [aux_sym_permit_local_command_token1] = ACTIONS(3424), - [aux_sym_permit_remote_open_token1] = ACTIONS(3424), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3424), - [aux_sym_port_token1] = ACTIONS(3424), - [aux_sym_preferred_authentications_token1] = ACTIONS(3424), - [aux_sym_protocol_token1] = ACTIONS(3424), - [aux_sym_proxy_command_token1] = ACTIONS(3424), - [aux_sym_proxy_jump_token1] = ACTIONS(3424), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3424), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3424), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3424), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3424), - [aux_sym_rekey_limit_token1] = ACTIONS(3424), - [aux_sym_remote_command_token1] = ACTIONS(3424), - [aux_sym_remote_forward_token1] = ACTIONS(3424), - [aux_sym_request_tty_token1] = ACTIONS(3424), - [aux_sym_required_rsa_size_token1] = ACTIONS(3424), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3424), - [aux_sym_security_key_provider_token1] = ACTIONS(3424), - [aux_sym_send_env_token1] = ACTIONS(3424), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3424), - [aux_sym_server_alive_interval_token1] = ACTIONS(3424), - [aux_sym_session_type_token1] = ACTIONS(3424), - [aux_sym_set_env_token1] = ACTIONS(3424), - [aux_sym_stdin_null_token1] = ACTIONS(3424), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3424), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3424), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3424), - [aux_sym_syslog_facility_token1] = ACTIONS(3424), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3424), - [aux_sym_keep_alive_token1] = ACTIONS(3424), - [aux_sym_tag_token1] = ACTIONS(3424), - [aux_sym_tunnel_token1] = ACTIONS(3426), - [aux_sym_tunnel_device_token1] = ACTIONS(3424), - [aux_sym_update_host_keys_token1] = ACTIONS(3424), - [aux_sym_use_keychain_token1] = ACTIONS(3424), - [aux_sym_use_roaming_token1] = ACTIONS(3424), - [aux_sym_user_token1] = ACTIONS(3426), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3424), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3424), - [aux_sym_visual_host_key_token1] = ACTIONS(3424), - [aux_sym_xauth_location_token1] = ACTIONS(3424), + [ts_builtin_sym_end] = ACTIONS(3427), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3429), + [aux_sym_match_token1] = ACTIONS(3427), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3427), + [aux_sym_address_family_token1] = ACTIONS(3427), + [aux_sym_batch_mode_token1] = ACTIONS(3427), + [aux_sym_bind_address_token1] = ACTIONS(3427), + [aux_sym_bind_interface_token1] = ACTIONS(3427), + [aux_sym_canonical_domains_token1] = ACTIONS(3427), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3427), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3427), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3427), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3427), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3427), + [aux_sym_certificate_file_token1] = ACTIONS(3427), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3427), + [aux_sym_channel_timeout_token1] = ACTIONS(3427), + [aux_sym_check_host_ip_token1] = ACTIONS(3427), + [aux_sym_ciphers_token1] = ACTIONS(3427), + [aux_sym_cipher_token1] = ACTIONS(3429), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3427), + [aux_sym_compression_token1] = ACTIONS(3427), + [aux_sym_connection_attempts_token1] = ACTIONS(3427), + [aux_sym_connect_timeout_token1] = ACTIONS(3427), + [aux_sym_control_master_token1] = ACTIONS(3427), + [aux_sym_control_path_token1] = ACTIONS(3427), + [aux_sym_control_persist_token1] = ACTIONS(3427), + [aux_sym_dynamic_forward_token1] = ACTIONS(3427), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3427), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3427), + [aux_sym_escape_char_token1] = ACTIONS(3427), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3427), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3427), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3427), + [aux_sym_forward_agent_token1] = ACTIONS(3427), + [aux_sym_forward_x11_token1] = ACTIONS(3429), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3427), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3427), + [aux_sym_gateway_ports_token1] = ACTIONS(3427), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3427), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3427), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3427), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3427), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3427), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3427), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3427), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3427), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3427), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3427), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3427), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3427), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3427), + [aux_sym_host_key_alias_token1] = ACTIONS(3427), + [aux_sym_hostname_token1] = ACTIONS(3427), + [aux_sym_identities_only_token1] = ACTIONS(3427), + [aux_sym_identity_agent_token1] = ACTIONS(3427), + [aux_sym_identity_file_token1] = ACTIONS(3427), + [aux_sym_ignore_unknown_token1] = ACTIONS(3427), + [aux_sym_include_token1] = ACTIONS(3427), + [aux_sym_ip_qos_token1] = ACTIONS(3427), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3427), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3427), + [aux_sym_kex_algorithms_token1] = ACTIONS(3427), + [aux_sym_known_hosts_command_token1] = ACTIONS(3427), + [aux_sym_local_command_token1] = ACTIONS(3427), + [aux_sym_local_forward_token1] = ACTIONS(3427), + [aux_sym_log_level_token1] = ACTIONS(3427), + [aux_sym_log_verbose_token1] = ACTIONS(3427), + [aux_sym_macs_token1] = ACTIONS(3427), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3427), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3427), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3427), + [aux_sym_password_authentication_token1] = ACTIONS(3427), + [aux_sym_permit_local_command_token1] = ACTIONS(3427), + [aux_sym_permit_remote_open_token1] = ACTIONS(3427), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3427), + [aux_sym_port_token1] = ACTIONS(3427), + [aux_sym_preferred_authentications_token1] = ACTIONS(3427), + [aux_sym_protocol_token1] = ACTIONS(3427), + [aux_sym_proxy_command_token1] = ACTIONS(3427), + [aux_sym_proxy_jump_token1] = ACTIONS(3427), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3427), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3427), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3427), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3427), + [aux_sym_rekey_limit_token1] = ACTIONS(3427), + [aux_sym_remote_command_token1] = ACTIONS(3427), + [aux_sym_remote_forward_token1] = ACTIONS(3427), + [aux_sym_request_tty_token1] = ACTIONS(3427), + [aux_sym_required_rsa_size_token1] = ACTIONS(3427), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3427), + [aux_sym_security_key_provider_token1] = ACTIONS(3427), + [aux_sym_send_env_token1] = ACTIONS(3427), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3427), + [aux_sym_server_alive_interval_token1] = ACTIONS(3427), + [aux_sym_session_type_token1] = ACTIONS(3427), + [aux_sym_set_env_token1] = ACTIONS(3427), + [aux_sym_stdin_null_token1] = ACTIONS(3427), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3427), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3427), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3427), + [aux_sym_syslog_facility_token1] = ACTIONS(3427), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3427), + [aux_sym_keep_alive_token1] = ACTIONS(3427), + [aux_sym_tag_token1] = ACTIONS(3427), + [aux_sym_tunnel_token1] = ACTIONS(3429), + [aux_sym_tunnel_device_token1] = ACTIONS(3427), + [aux_sym_update_host_keys_token1] = ACTIONS(3427), + [aux_sym_use_keychain_token1] = ACTIONS(3427), + [aux_sym_use_roaming_token1] = ACTIONS(3427), + [aux_sym_user_token1] = ACTIONS(3429), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3427), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3427), + [aux_sym_visual_host_key_token1] = ACTIONS(3427), + [aux_sym_xauth_location_token1] = ACTIONS(3427), }, [599] = { - [ts_builtin_sym_end] = ACTIONS(3428), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3430), - [aux_sym_match_token1] = ACTIONS(3428), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3428), - [aux_sym_address_family_token1] = ACTIONS(3428), - [aux_sym_batch_mode_token1] = ACTIONS(3428), - [aux_sym_bind_address_token1] = ACTIONS(3428), - [aux_sym_bind_interface_token1] = ACTIONS(3428), - [aux_sym_canonical_domains_token1] = ACTIONS(3428), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3428), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3428), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3428), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3428), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3428), - [aux_sym_certificate_file_token1] = ACTIONS(3428), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3428), - [aux_sym_channel_timeout_token1] = ACTIONS(3428), - [aux_sym_check_host_ip_token1] = ACTIONS(3428), - [aux_sym_ciphers_token1] = ACTIONS(3428), - [aux_sym_cipher_token1] = ACTIONS(3430), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3428), - [aux_sym_compression_token1] = ACTIONS(3428), - [aux_sym_connection_attempts_token1] = ACTIONS(3428), - [aux_sym_connect_timeout_token1] = ACTIONS(3428), - [aux_sym_control_master_token1] = ACTIONS(3428), - [aux_sym_control_path_token1] = ACTIONS(3428), - [aux_sym_control_persist_token1] = ACTIONS(3428), - [aux_sym_dynamic_forward_token1] = ACTIONS(3428), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3428), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3428), - [aux_sym_escape_char_token1] = ACTIONS(3428), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3428), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3428), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3428), - [aux_sym_forward_agent_token1] = ACTIONS(3428), - [aux_sym_forward_x11_token1] = ACTIONS(3430), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3428), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3428), - [aux_sym_gateway_ports_token1] = ACTIONS(3428), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3428), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3428), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3428), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3428), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3428), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3428), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3428), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3428), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3428), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3428), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3428), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3428), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3428), - [aux_sym_host_key_alias_token1] = ACTIONS(3428), - [aux_sym_hostname_token1] = ACTIONS(3428), - [aux_sym_identities_only_token1] = ACTIONS(3428), - [aux_sym_identity_agent_token1] = ACTIONS(3428), - [aux_sym_identity_file_token1] = ACTIONS(3428), - [aux_sym_ignore_unknown_token1] = ACTIONS(3428), - [aux_sym_include_token1] = ACTIONS(3428), - [aux_sym_ip_qos_token1] = ACTIONS(3428), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3428), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3428), - [aux_sym_kex_algorithms_token1] = ACTIONS(3428), - [aux_sym_known_hosts_command_token1] = ACTIONS(3428), - [aux_sym_local_command_token1] = ACTIONS(3428), - [aux_sym_local_forward_token1] = ACTIONS(3428), - [aux_sym_log_level_token1] = ACTIONS(3428), - [aux_sym_log_verbose_token1] = ACTIONS(3428), - [aux_sym_macs_token1] = ACTIONS(3428), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3428), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3428), - [aux_sym_password_authentication_token1] = ACTIONS(3428), - [aux_sym_permit_local_command_token1] = ACTIONS(3428), - [aux_sym_permit_remote_open_token1] = ACTIONS(3428), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3428), - [aux_sym_port_token1] = ACTIONS(3428), - [aux_sym_preferred_authentications_token1] = ACTIONS(3428), - [aux_sym_protocol_token1] = ACTIONS(3428), - [aux_sym_proxy_command_token1] = ACTIONS(3428), - [aux_sym_proxy_jump_token1] = ACTIONS(3428), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3428), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3428), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3428), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3428), - [aux_sym_rekey_limit_token1] = ACTIONS(3428), - [aux_sym_remote_command_token1] = ACTIONS(3428), - [aux_sym_remote_forward_token1] = ACTIONS(3428), - [aux_sym_request_tty_token1] = ACTIONS(3428), - [aux_sym_required_rsa_size_token1] = ACTIONS(3428), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3428), - [aux_sym_security_key_provider_token1] = ACTIONS(3428), - [aux_sym_send_env_token1] = ACTIONS(3428), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3428), - [aux_sym_server_alive_interval_token1] = ACTIONS(3428), - [aux_sym_session_type_token1] = ACTIONS(3428), - [aux_sym_set_env_token1] = ACTIONS(3428), - [aux_sym_stdin_null_token1] = ACTIONS(3428), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3428), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3428), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3428), - [aux_sym_syslog_facility_token1] = ACTIONS(3428), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3428), - [aux_sym_keep_alive_token1] = ACTIONS(3428), - [aux_sym_tag_token1] = ACTIONS(3428), - [aux_sym_tunnel_token1] = ACTIONS(3430), - [aux_sym_tunnel_device_token1] = ACTIONS(3428), - [aux_sym_update_host_keys_token1] = ACTIONS(3428), - [aux_sym_use_keychain_token1] = ACTIONS(3428), - [aux_sym_use_roaming_token1] = ACTIONS(3428), - [aux_sym_user_token1] = ACTIONS(3430), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3428), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3428), - [aux_sym_visual_host_key_token1] = ACTIONS(3428), - [aux_sym_xauth_location_token1] = ACTIONS(3428), + [ts_builtin_sym_end] = ACTIONS(1613), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1615), + [aux_sym_match_token1] = ACTIONS(1613), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1613), + [aux_sym_address_family_token1] = ACTIONS(1613), + [aux_sym_batch_mode_token1] = ACTIONS(1613), + [aux_sym_bind_address_token1] = ACTIONS(1613), + [aux_sym_bind_interface_token1] = ACTIONS(1613), + [aux_sym_canonical_domains_token1] = ACTIONS(1613), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1613), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1613), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1613), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1613), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1613), + [aux_sym_certificate_file_token1] = ACTIONS(1613), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1613), + [aux_sym_channel_timeout_token1] = ACTIONS(1613), + [aux_sym_check_host_ip_token1] = ACTIONS(1613), + [aux_sym_ciphers_token1] = ACTIONS(1613), + [aux_sym_cipher_token1] = ACTIONS(1615), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1613), + [aux_sym_compression_token1] = ACTIONS(1613), + [aux_sym_connection_attempts_token1] = ACTIONS(1613), + [aux_sym_connect_timeout_token1] = ACTIONS(1613), + [aux_sym_control_master_token1] = ACTIONS(1613), + [aux_sym_control_path_token1] = ACTIONS(1613), + [aux_sym_control_persist_token1] = ACTIONS(1613), + [aux_sym_dynamic_forward_token1] = ACTIONS(1613), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1613), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1613), + [aux_sym_escape_char_token1] = ACTIONS(1613), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1613), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1613), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1613), + [aux_sym_forward_agent_token1] = ACTIONS(1613), + [aux_sym_forward_x11_token1] = ACTIONS(1615), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1613), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1613), + [aux_sym_gateway_ports_token1] = ACTIONS(1613), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1613), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1613), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1613), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1613), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1613), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1613), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1613), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1613), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1613), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1613), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1613), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1613), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1613), + [aux_sym_host_key_alias_token1] = ACTIONS(1613), + [aux_sym_hostname_token1] = ACTIONS(1613), + [aux_sym_identities_only_token1] = ACTIONS(1613), + [aux_sym_identity_agent_token1] = ACTIONS(1613), + [aux_sym_identity_file_token1] = ACTIONS(1613), + [aux_sym_ignore_unknown_token1] = ACTIONS(1613), + [aux_sym_include_token1] = ACTIONS(1613), + [aux_sym_ip_qos_token1] = ACTIONS(1613), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1613), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1613), + [aux_sym_kex_algorithms_token1] = ACTIONS(1613), + [aux_sym_known_hosts_command_token1] = ACTIONS(1613), + [aux_sym_local_command_token1] = ACTIONS(1613), + [aux_sym_local_forward_token1] = ACTIONS(1613), + [aux_sym_log_level_token1] = ACTIONS(1613), + [aux_sym_log_verbose_token1] = ACTIONS(1613), + [aux_sym_macs_token1] = ACTIONS(1613), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1613), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1613), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1613), + [aux_sym_password_authentication_token1] = ACTIONS(1613), + [aux_sym_permit_local_command_token1] = ACTIONS(1613), + [aux_sym_permit_remote_open_token1] = ACTIONS(1613), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1613), + [aux_sym_port_token1] = ACTIONS(1613), + [aux_sym_preferred_authentications_token1] = ACTIONS(1613), + [aux_sym_protocol_token1] = ACTIONS(1613), + [aux_sym_proxy_command_token1] = ACTIONS(1613), + [aux_sym_proxy_jump_token1] = ACTIONS(1613), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1613), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1613), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1613), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1613), + [aux_sym_rekey_limit_token1] = ACTIONS(1613), + [aux_sym_remote_command_token1] = ACTIONS(1613), + [aux_sym_remote_forward_token1] = ACTIONS(1613), + [aux_sym_request_tty_token1] = ACTIONS(1613), + [aux_sym_required_rsa_size_token1] = ACTIONS(1613), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1613), + [aux_sym_security_key_provider_token1] = ACTIONS(1613), + [aux_sym_send_env_token1] = ACTIONS(1613), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1613), + [aux_sym_server_alive_interval_token1] = ACTIONS(1613), + [aux_sym_session_type_token1] = ACTIONS(1613), + [aux_sym_set_env_token1] = ACTIONS(1613), + [aux_sym_stdin_null_token1] = ACTIONS(1613), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1613), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1613), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1613), + [aux_sym_syslog_facility_token1] = ACTIONS(1613), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1613), + [aux_sym_keep_alive_token1] = ACTIONS(1613), + [aux_sym_tag_token1] = ACTIONS(1613), + [aux_sym_tunnel_token1] = ACTIONS(1615), + [aux_sym_tunnel_device_token1] = ACTIONS(1613), + [aux_sym_update_host_keys_token1] = ACTIONS(1613), + [aux_sym_use_keychain_token1] = ACTIONS(1613), + [aux_sym_use_roaming_token1] = ACTIONS(1613), + [aux_sym_user_token1] = ACTIONS(1615), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1613), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1613), + [aux_sym_visual_host_key_token1] = ACTIONS(1613), + [aux_sym_xauth_location_token1] = ACTIONS(1613), }, [600] = { - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3434), - [aux_sym_match_token1] = ACTIONS(3432), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3432), - [aux_sym_address_family_token1] = ACTIONS(3432), - [aux_sym_batch_mode_token1] = ACTIONS(3432), - [aux_sym_bind_address_token1] = ACTIONS(3432), - [aux_sym_bind_interface_token1] = ACTIONS(3432), - [aux_sym_canonical_domains_token1] = ACTIONS(3432), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3432), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3432), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3432), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3432), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3432), - [aux_sym_certificate_file_token1] = ACTIONS(3432), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3432), - [aux_sym_channel_timeout_token1] = ACTIONS(3432), - [aux_sym_check_host_ip_token1] = ACTIONS(3432), - [aux_sym_ciphers_token1] = ACTIONS(3432), - [aux_sym_cipher_token1] = ACTIONS(3434), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3432), - [aux_sym_compression_token1] = ACTIONS(3432), - [aux_sym_connection_attempts_token1] = ACTIONS(3432), - [aux_sym_connect_timeout_token1] = ACTIONS(3432), - [aux_sym_control_master_token1] = ACTIONS(3432), - [aux_sym_control_path_token1] = ACTIONS(3432), - [aux_sym_control_persist_token1] = ACTIONS(3432), - [aux_sym_dynamic_forward_token1] = ACTIONS(3432), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3432), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3432), - [aux_sym_escape_char_token1] = ACTIONS(3432), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3432), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3432), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3432), - [aux_sym_forward_agent_token1] = ACTIONS(3432), - [aux_sym_forward_x11_token1] = ACTIONS(3434), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3432), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3432), - [aux_sym_gateway_ports_token1] = ACTIONS(3432), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3432), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3432), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3432), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3432), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3432), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3432), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3432), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3432), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3432), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3432), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3432), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3432), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3432), - [aux_sym_host_key_alias_token1] = ACTIONS(3432), - [aux_sym_hostname_token1] = ACTIONS(3432), - [aux_sym_identities_only_token1] = ACTIONS(3432), - [aux_sym_identity_agent_token1] = ACTIONS(3432), - [aux_sym_identity_file_token1] = ACTIONS(3432), - [aux_sym_ignore_unknown_token1] = ACTIONS(3432), - [aux_sym_include_token1] = ACTIONS(3432), - [aux_sym_ip_qos_token1] = ACTIONS(3432), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3432), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3432), - [aux_sym_kex_algorithms_token1] = ACTIONS(3432), - [aux_sym_known_hosts_command_token1] = ACTIONS(3432), - [aux_sym_local_command_token1] = ACTIONS(3432), - [aux_sym_local_forward_token1] = ACTIONS(3432), - [aux_sym_log_level_token1] = ACTIONS(3432), - [aux_sym_log_verbose_token1] = ACTIONS(3432), - [aux_sym_macs_token1] = ACTIONS(3432), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3432), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3432), - [aux_sym_password_authentication_token1] = ACTIONS(3432), - [aux_sym_permit_local_command_token1] = ACTIONS(3432), - [aux_sym_permit_remote_open_token1] = ACTIONS(3432), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3432), - [aux_sym_port_token1] = ACTIONS(3432), - [aux_sym_preferred_authentications_token1] = ACTIONS(3432), - [aux_sym_protocol_token1] = ACTIONS(3432), - [aux_sym_proxy_command_token1] = ACTIONS(3432), - [aux_sym_proxy_jump_token1] = ACTIONS(3432), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3432), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3432), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3432), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3432), - [aux_sym_rekey_limit_token1] = ACTIONS(3432), - [aux_sym_remote_command_token1] = ACTIONS(3432), - [aux_sym_remote_forward_token1] = ACTIONS(3432), - [aux_sym_request_tty_token1] = ACTIONS(3432), - [aux_sym_required_rsa_size_token1] = ACTIONS(3432), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3432), - [aux_sym_security_key_provider_token1] = ACTIONS(3432), - [aux_sym_send_env_token1] = ACTIONS(3432), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3432), - [aux_sym_server_alive_interval_token1] = ACTIONS(3432), - [aux_sym_session_type_token1] = ACTIONS(3432), - [aux_sym_set_env_token1] = ACTIONS(3432), - [aux_sym_stdin_null_token1] = ACTIONS(3432), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3432), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3432), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3432), - [aux_sym_syslog_facility_token1] = ACTIONS(3432), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3432), - [aux_sym_keep_alive_token1] = ACTIONS(3432), - [aux_sym_tag_token1] = ACTIONS(3432), - [aux_sym_tunnel_token1] = ACTIONS(3434), - [aux_sym_tunnel_device_token1] = ACTIONS(3432), - [aux_sym_update_host_keys_token1] = ACTIONS(3432), - [aux_sym_use_keychain_token1] = ACTIONS(3432), - [aux_sym_use_roaming_token1] = ACTIONS(3432), - [aux_sym_user_token1] = ACTIONS(3434), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3432), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3432), - [aux_sym_visual_host_key_token1] = ACTIONS(3432), - [aux_sym_xauth_location_token1] = ACTIONS(3432), + [ts_builtin_sym_end] = ACTIONS(845), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(847), + [aux_sym_match_token1] = ACTIONS(845), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(845), + [aux_sym_address_family_token1] = ACTIONS(845), + [aux_sym_batch_mode_token1] = ACTIONS(845), + [aux_sym_bind_address_token1] = ACTIONS(845), + [aux_sym_bind_interface_token1] = ACTIONS(845), + [aux_sym_canonical_domains_token1] = ACTIONS(845), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(845), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(845), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(845), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(845), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(845), + [aux_sym_certificate_file_token1] = ACTIONS(845), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(845), + [aux_sym_channel_timeout_token1] = ACTIONS(845), + [aux_sym_check_host_ip_token1] = ACTIONS(845), + [aux_sym_ciphers_token1] = ACTIONS(845), + [aux_sym_cipher_token1] = ACTIONS(847), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(845), + [aux_sym_compression_token1] = ACTIONS(845), + [aux_sym_connection_attempts_token1] = ACTIONS(845), + [aux_sym_connect_timeout_token1] = ACTIONS(845), + [aux_sym_control_master_token1] = ACTIONS(845), + [aux_sym_control_path_token1] = ACTIONS(845), + [aux_sym_control_persist_token1] = ACTIONS(845), + [aux_sym_dynamic_forward_token1] = ACTIONS(845), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(845), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(845), + [aux_sym_escape_char_token1] = ACTIONS(845), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(845), + [aux_sym_fingerprint_hash_token1] = ACTIONS(845), + [aux_sym_fork_after_authentication_token1] = ACTIONS(845), + [aux_sym_forward_agent_token1] = ACTIONS(845), + [aux_sym_forward_x11_token1] = ACTIONS(847), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(845), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(845), + [aux_sym_gateway_ports_token1] = ACTIONS(845), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(845), + [aux_sym_gssapi_authentication_token1] = ACTIONS(845), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(845), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(845), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(845), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(845), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(845), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(845), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(845), + [aux_sym_hash_known_hosts_token1] = ACTIONS(845), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(845), + [aux_sym_hostbased_authentication_token1] = ACTIONS(845), + [aux_sym_host_key_algorithms_token1] = ACTIONS(845), + [aux_sym_host_key_alias_token1] = ACTIONS(845), + [aux_sym_hostname_token1] = ACTIONS(845), + [aux_sym_identities_only_token1] = ACTIONS(845), + [aux_sym_identity_agent_token1] = ACTIONS(845), + [aux_sym_identity_file_token1] = ACTIONS(845), + [aux_sym_ignore_unknown_token1] = ACTIONS(845), + [aux_sym_include_token1] = ACTIONS(845), + [aux_sym_ip_qos_token1] = ACTIONS(845), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(845), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(845), + [aux_sym_kex_algorithms_token1] = ACTIONS(845), + [aux_sym_known_hosts_command_token1] = ACTIONS(845), + [aux_sym_local_command_token1] = ACTIONS(845), + [aux_sym_local_forward_token1] = ACTIONS(845), + [aux_sym_log_level_token1] = ACTIONS(845), + [aux_sym_log_verbose_token1] = ACTIONS(845), + [aux_sym_macs_token1] = ACTIONS(845), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(845), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(845), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(845), + [aux_sym_password_authentication_token1] = ACTIONS(845), + [aux_sym_permit_local_command_token1] = ACTIONS(845), + [aux_sym_permit_remote_open_token1] = ACTIONS(845), + [aux_sym_pkcs11_provider_token1] = ACTIONS(845), + [aux_sym_port_token1] = ACTIONS(845), + [aux_sym_preferred_authentications_token1] = ACTIONS(845), + [aux_sym_protocol_token1] = ACTIONS(845), + [aux_sym_proxy_command_token1] = ACTIONS(845), + [aux_sym_proxy_jump_token1] = ACTIONS(845), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(845), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(845), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(845), + [aux_sym_pubkey_authentication_token1] = ACTIONS(845), + [aux_sym_rekey_limit_token1] = ACTIONS(845), + [aux_sym_remote_command_token1] = ACTIONS(845), + [aux_sym_remote_forward_token1] = ACTIONS(845), + [aux_sym_request_tty_token1] = ACTIONS(845), + [aux_sym_required_rsa_size_token1] = ACTIONS(845), + [aux_sym_revoked_host_keys_token1] = ACTIONS(845), + [aux_sym_security_key_provider_token1] = ACTIONS(845), + [aux_sym_send_env_token1] = ACTIONS(845), + [aux_sym_server_alive_count_max_token1] = ACTIONS(845), + [aux_sym_server_alive_interval_token1] = ACTIONS(845), + [aux_sym_session_type_token1] = ACTIONS(845), + [aux_sym_set_env_token1] = ACTIONS(845), + [aux_sym_stdin_null_token1] = ACTIONS(845), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(845), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(845), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(845), + [aux_sym_syslog_facility_token1] = ACTIONS(845), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(845), + [aux_sym_keep_alive_token1] = ACTIONS(845), + [aux_sym_tag_token1] = ACTIONS(845), + [aux_sym_tunnel_token1] = ACTIONS(847), + [aux_sym_tunnel_device_token1] = ACTIONS(845), + [aux_sym_update_host_keys_token1] = ACTIONS(845), + [aux_sym_use_keychain_token1] = ACTIONS(845), + [aux_sym_use_roaming_token1] = ACTIONS(845), + [aux_sym_user_token1] = ACTIONS(847), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(845), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(845), + [aux_sym_visual_host_key_token1] = ACTIONS(845), + [aux_sym_xauth_location_token1] = ACTIONS(845), }, [601] = { - [ts_builtin_sym_end] = ACTIONS(3436), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3438), - [aux_sym_match_token1] = ACTIONS(3436), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3436), - [aux_sym_address_family_token1] = ACTIONS(3436), - [aux_sym_batch_mode_token1] = ACTIONS(3436), - [aux_sym_bind_address_token1] = ACTIONS(3436), - [aux_sym_bind_interface_token1] = ACTIONS(3436), - [aux_sym_canonical_domains_token1] = ACTIONS(3436), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3436), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3436), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3436), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3436), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3436), - [aux_sym_certificate_file_token1] = ACTIONS(3436), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3436), - [aux_sym_channel_timeout_token1] = ACTIONS(3436), - [aux_sym_check_host_ip_token1] = ACTIONS(3436), - [aux_sym_ciphers_token1] = ACTIONS(3436), - [aux_sym_cipher_token1] = ACTIONS(3438), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3436), - [aux_sym_compression_token1] = ACTIONS(3436), - [aux_sym_connection_attempts_token1] = ACTIONS(3436), - [aux_sym_connect_timeout_token1] = ACTIONS(3436), - [aux_sym_control_master_token1] = ACTIONS(3436), - [aux_sym_control_path_token1] = ACTIONS(3436), - [aux_sym_control_persist_token1] = ACTIONS(3436), - [aux_sym_dynamic_forward_token1] = ACTIONS(3436), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3436), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3436), - [aux_sym_escape_char_token1] = ACTIONS(3436), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3436), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3436), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3436), - [aux_sym_forward_agent_token1] = ACTIONS(3436), - [aux_sym_forward_x11_token1] = ACTIONS(3438), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3436), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3436), - [aux_sym_gateway_ports_token1] = ACTIONS(3436), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3436), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3436), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3436), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3436), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3436), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3436), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3436), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3436), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3436), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3436), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3436), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3436), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3436), - [aux_sym_host_key_alias_token1] = ACTIONS(3436), - [aux_sym_hostname_token1] = ACTIONS(3436), - [aux_sym_identities_only_token1] = ACTIONS(3436), - [aux_sym_identity_agent_token1] = ACTIONS(3436), - [aux_sym_identity_file_token1] = ACTIONS(3436), - [aux_sym_ignore_unknown_token1] = ACTIONS(3436), - [aux_sym_include_token1] = ACTIONS(3436), - [aux_sym_ip_qos_token1] = ACTIONS(3436), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3436), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3436), - [aux_sym_kex_algorithms_token1] = ACTIONS(3436), - [aux_sym_known_hosts_command_token1] = ACTIONS(3436), - [aux_sym_local_command_token1] = ACTIONS(3436), - [aux_sym_local_forward_token1] = ACTIONS(3436), - [aux_sym_log_level_token1] = ACTIONS(3436), - [aux_sym_log_verbose_token1] = ACTIONS(3436), - [aux_sym_macs_token1] = ACTIONS(3436), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3436), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3436), - [aux_sym_password_authentication_token1] = ACTIONS(3436), - [aux_sym_permit_local_command_token1] = ACTIONS(3436), - [aux_sym_permit_remote_open_token1] = ACTIONS(3436), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3436), - [aux_sym_port_token1] = ACTIONS(3436), - [aux_sym_preferred_authentications_token1] = ACTIONS(3436), - [aux_sym_protocol_token1] = ACTIONS(3436), - [aux_sym_proxy_command_token1] = ACTIONS(3436), - [aux_sym_proxy_jump_token1] = ACTIONS(3436), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3436), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3436), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3436), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3436), - [aux_sym_rekey_limit_token1] = ACTIONS(3436), - [aux_sym_remote_command_token1] = ACTIONS(3436), - [aux_sym_remote_forward_token1] = ACTIONS(3436), - [aux_sym_request_tty_token1] = ACTIONS(3436), - [aux_sym_required_rsa_size_token1] = ACTIONS(3436), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3436), - [aux_sym_security_key_provider_token1] = ACTIONS(3436), - [aux_sym_send_env_token1] = ACTIONS(3436), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3436), - [aux_sym_server_alive_interval_token1] = ACTIONS(3436), - [aux_sym_session_type_token1] = ACTIONS(3436), - [aux_sym_set_env_token1] = ACTIONS(3436), - [aux_sym_stdin_null_token1] = ACTIONS(3436), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3436), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3436), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3436), - [aux_sym_syslog_facility_token1] = ACTIONS(3436), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3436), - [aux_sym_keep_alive_token1] = ACTIONS(3436), - [aux_sym_tag_token1] = ACTIONS(3436), - [aux_sym_tunnel_token1] = ACTIONS(3438), - [aux_sym_tunnel_device_token1] = ACTIONS(3436), - [aux_sym_update_host_keys_token1] = ACTIONS(3436), - [aux_sym_use_keychain_token1] = ACTIONS(3436), - [aux_sym_use_roaming_token1] = ACTIONS(3436), - [aux_sym_user_token1] = ACTIONS(3438), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3436), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3436), - [aux_sym_visual_host_key_token1] = ACTIONS(3436), - [aux_sym_xauth_location_token1] = ACTIONS(3436), + [ts_builtin_sym_end] = ACTIONS(3431), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3433), + [aux_sym_match_token1] = ACTIONS(3431), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3431), + [aux_sym_address_family_token1] = ACTIONS(3431), + [aux_sym_batch_mode_token1] = ACTIONS(3431), + [aux_sym_bind_address_token1] = ACTIONS(3431), + [aux_sym_bind_interface_token1] = ACTIONS(3431), + [aux_sym_canonical_domains_token1] = ACTIONS(3431), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3431), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3431), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3431), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3431), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3431), + [aux_sym_certificate_file_token1] = ACTIONS(3431), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3431), + [aux_sym_channel_timeout_token1] = ACTIONS(3431), + [aux_sym_check_host_ip_token1] = ACTIONS(3431), + [aux_sym_ciphers_token1] = ACTIONS(3431), + [aux_sym_cipher_token1] = ACTIONS(3433), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3431), + [aux_sym_compression_token1] = ACTIONS(3431), + [aux_sym_connection_attempts_token1] = ACTIONS(3431), + [aux_sym_connect_timeout_token1] = ACTIONS(3431), + [aux_sym_control_master_token1] = ACTIONS(3431), + [aux_sym_control_path_token1] = ACTIONS(3431), + [aux_sym_control_persist_token1] = ACTIONS(3431), + [aux_sym_dynamic_forward_token1] = ACTIONS(3431), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3431), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3431), + [aux_sym_escape_char_token1] = ACTIONS(3431), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3431), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3431), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3431), + [aux_sym_forward_agent_token1] = ACTIONS(3431), + [aux_sym_forward_x11_token1] = ACTIONS(3433), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3431), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3431), + [aux_sym_gateway_ports_token1] = ACTIONS(3431), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3431), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3431), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3431), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3431), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3431), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3431), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3431), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3431), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3431), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3431), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3431), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3431), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3431), + [aux_sym_host_key_alias_token1] = ACTIONS(3431), + [aux_sym_hostname_token1] = ACTIONS(3431), + [aux_sym_identities_only_token1] = ACTIONS(3431), + [aux_sym_identity_agent_token1] = ACTIONS(3431), + [aux_sym_identity_file_token1] = ACTIONS(3431), + [aux_sym_ignore_unknown_token1] = ACTIONS(3431), + [aux_sym_include_token1] = ACTIONS(3431), + [aux_sym_ip_qos_token1] = ACTIONS(3431), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3431), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3431), + [aux_sym_kex_algorithms_token1] = ACTIONS(3431), + [aux_sym_known_hosts_command_token1] = ACTIONS(3431), + [aux_sym_local_command_token1] = ACTIONS(3431), + [aux_sym_local_forward_token1] = ACTIONS(3431), + [aux_sym_log_level_token1] = ACTIONS(3431), + [aux_sym_log_verbose_token1] = ACTIONS(3431), + [aux_sym_macs_token1] = ACTIONS(3431), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3431), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3431), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3431), + [aux_sym_password_authentication_token1] = ACTIONS(3431), + [aux_sym_permit_local_command_token1] = ACTIONS(3431), + [aux_sym_permit_remote_open_token1] = ACTIONS(3431), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3431), + [aux_sym_port_token1] = ACTIONS(3431), + [aux_sym_preferred_authentications_token1] = ACTIONS(3431), + [aux_sym_protocol_token1] = ACTIONS(3431), + [aux_sym_proxy_command_token1] = ACTIONS(3431), + [aux_sym_proxy_jump_token1] = ACTIONS(3431), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3431), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3431), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3431), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3431), + [aux_sym_rekey_limit_token1] = ACTIONS(3431), + [aux_sym_remote_command_token1] = ACTIONS(3431), + [aux_sym_remote_forward_token1] = ACTIONS(3431), + [aux_sym_request_tty_token1] = ACTIONS(3431), + [aux_sym_required_rsa_size_token1] = ACTIONS(3431), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3431), + [aux_sym_security_key_provider_token1] = ACTIONS(3431), + [aux_sym_send_env_token1] = ACTIONS(3431), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3431), + [aux_sym_server_alive_interval_token1] = ACTIONS(3431), + [aux_sym_session_type_token1] = ACTIONS(3431), + [aux_sym_set_env_token1] = ACTIONS(3431), + [aux_sym_stdin_null_token1] = ACTIONS(3431), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3431), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3431), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3431), + [aux_sym_syslog_facility_token1] = ACTIONS(3431), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3431), + [aux_sym_keep_alive_token1] = ACTIONS(3431), + [aux_sym_tag_token1] = ACTIONS(3431), + [aux_sym_tunnel_token1] = ACTIONS(3433), + [aux_sym_tunnel_device_token1] = ACTIONS(3431), + [aux_sym_update_host_keys_token1] = ACTIONS(3431), + [aux_sym_use_keychain_token1] = ACTIONS(3431), + [aux_sym_use_roaming_token1] = ACTIONS(3431), + [aux_sym_user_token1] = ACTIONS(3433), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3431), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3431), + [aux_sym_visual_host_key_token1] = ACTIONS(3431), + [aux_sym_xauth_location_token1] = ACTIONS(3431), }, [602] = { - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3442), - [aux_sym_match_token1] = ACTIONS(3440), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3440), - [aux_sym_address_family_token1] = ACTIONS(3440), - [aux_sym_batch_mode_token1] = ACTIONS(3440), - [aux_sym_bind_address_token1] = ACTIONS(3440), - [aux_sym_bind_interface_token1] = ACTIONS(3440), - [aux_sym_canonical_domains_token1] = ACTIONS(3440), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3440), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3440), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3440), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3440), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3440), - [aux_sym_certificate_file_token1] = ACTIONS(3440), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3440), - [aux_sym_channel_timeout_token1] = ACTIONS(3440), - [aux_sym_check_host_ip_token1] = ACTIONS(3440), - [aux_sym_ciphers_token1] = ACTIONS(3440), - [aux_sym_cipher_token1] = ACTIONS(3442), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3440), - [aux_sym_compression_token1] = ACTIONS(3440), - [aux_sym_connection_attempts_token1] = ACTIONS(3440), - [aux_sym_connect_timeout_token1] = ACTIONS(3440), - [aux_sym_control_master_token1] = ACTIONS(3440), - [aux_sym_control_path_token1] = ACTIONS(3440), - [aux_sym_control_persist_token1] = ACTIONS(3440), - [aux_sym_dynamic_forward_token1] = ACTIONS(3440), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3440), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3440), - [aux_sym_escape_char_token1] = ACTIONS(3440), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3440), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3440), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3440), - [aux_sym_forward_agent_token1] = ACTIONS(3440), - [aux_sym_forward_x11_token1] = ACTIONS(3442), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3440), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3440), - [aux_sym_gateway_ports_token1] = ACTIONS(3440), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3440), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3440), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3440), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3440), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3440), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3440), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3440), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3440), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3440), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3440), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3440), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3440), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3440), - [aux_sym_host_key_alias_token1] = ACTIONS(3440), - [aux_sym_hostname_token1] = ACTIONS(3440), - [aux_sym_identities_only_token1] = ACTIONS(3440), - [aux_sym_identity_agent_token1] = ACTIONS(3440), - [aux_sym_identity_file_token1] = ACTIONS(3440), - [aux_sym_ignore_unknown_token1] = ACTIONS(3440), - [aux_sym_include_token1] = ACTIONS(3440), - [aux_sym_ip_qos_token1] = ACTIONS(3440), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3440), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3440), - [aux_sym_kex_algorithms_token1] = ACTIONS(3440), - [aux_sym_known_hosts_command_token1] = ACTIONS(3440), - [aux_sym_local_command_token1] = ACTIONS(3440), - [aux_sym_local_forward_token1] = ACTIONS(3440), - [aux_sym_log_level_token1] = ACTIONS(3440), - [aux_sym_log_verbose_token1] = ACTIONS(3440), - [aux_sym_macs_token1] = ACTIONS(3440), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3440), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3440), - [aux_sym_password_authentication_token1] = ACTIONS(3440), - [aux_sym_permit_local_command_token1] = ACTIONS(3440), - [aux_sym_permit_remote_open_token1] = ACTIONS(3440), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3440), - [aux_sym_port_token1] = ACTIONS(3440), - [aux_sym_preferred_authentications_token1] = ACTIONS(3440), - [aux_sym_protocol_token1] = ACTIONS(3440), - [aux_sym_proxy_command_token1] = ACTIONS(3440), - [aux_sym_proxy_jump_token1] = ACTIONS(3440), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3440), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3440), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3440), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3440), - [aux_sym_rekey_limit_token1] = ACTIONS(3440), - [aux_sym_remote_command_token1] = ACTIONS(3440), - [aux_sym_remote_forward_token1] = ACTIONS(3440), - [aux_sym_request_tty_token1] = ACTIONS(3440), - [aux_sym_required_rsa_size_token1] = ACTIONS(3440), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3440), - [aux_sym_security_key_provider_token1] = ACTIONS(3440), - [aux_sym_send_env_token1] = ACTIONS(3440), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3440), - [aux_sym_server_alive_interval_token1] = ACTIONS(3440), - [aux_sym_session_type_token1] = ACTIONS(3440), - [aux_sym_set_env_token1] = ACTIONS(3440), - [aux_sym_stdin_null_token1] = ACTIONS(3440), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3440), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3440), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3440), - [aux_sym_syslog_facility_token1] = ACTIONS(3440), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3440), - [aux_sym_keep_alive_token1] = ACTIONS(3440), - [aux_sym_tag_token1] = ACTIONS(3440), - [aux_sym_tunnel_token1] = ACTIONS(3442), - [aux_sym_tunnel_device_token1] = ACTIONS(3440), - [aux_sym_update_host_keys_token1] = ACTIONS(3440), - [aux_sym_use_keychain_token1] = ACTIONS(3440), - [aux_sym_use_roaming_token1] = ACTIONS(3440), - [aux_sym_user_token1] = ACTIONS(3442), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3440), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3440), - [aux_sym_visual_host_key_token1] = ACTIONS(3440), - [aux_sym_xauth_location_token1] = ACTIONS(3440), + [ts_builtin_sym_end] = ACTIONS(3435), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3437), + [aux_sym_match_token1] = ACTIONS(3435), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3435), + [aux_sym_address_family_token1] = ACTIONS(3435), + [aux_sym_batch_mode_token1] = ACTIONS(3435), + [aux_sym_bind_address_token1] = ACTIONS(3435), + [aux_sym_bind_interface_token1] = ACTIONS(3435), + [aux_sym_canonical_domains_token1] = ACTIONS(3435), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3435), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3435), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3435), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3435), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3435), + [aux_sym_certificate_file_token1] = ACTIONS(3435), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3435), + [aux_sym_channel_timeout_token1] = ACTIONS(3435), + [aux_sym_check_host_ip_token1] = ACTIONS(3435), + [aux_sym_ciphers_token1] = ACTIONS(3435), + [aux_sym_cipher_token1] = ACTIONS(3437), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3435), + [aux_sym_compression_token1] = ACTIONS(3435), + [aux_sym_connection_attempts_token1] = ACTIONS(3435), + [aux_sym_connect_timeout_token1] = ACTIONS(3435), + [aux_sym_control_master_token1] = ACTIONS(3435), + [aux_sym_control_path_token1] = ACTIONS(3435), + [aux_sym_control_persist_token1] = ACTIONS(3435), + [aux_sym_dynamic_forward_token1] = ACTIONS(3435), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3435), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3435), + [aux_sym_escape_char_token1] = ACTIONS(3435), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3435), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3435), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3435), + [aux_sym_forward_agent_token1] = ACTIONS(3435), + [aux_sym_forward_x11_token1] = ACTIONS(3437), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3435), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3435), + [aux_sym_gateway_ports_token1] = ACTIONS(3435), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3435), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3435), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3435), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3435), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3435), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3435), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3435), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3435), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3435), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3435), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3435), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3435), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3435), + [aux_sym_host_key_alias_token1] = ACTIONS(3435), + [aux_sym_hostname_token1] = ACTIONS(3435), + [aux_sym_identities_only_token1] = ACTIONS(3435), + [aux_sym_identity_agent_token1] = ACTIONS(3435), + [aux_sym_identity_file_token1] = ACTIONS(3435), + [aux_sym_ignore_unknown_token1] = ACTIONS(3435), + [aux_sym_include_token1] = ACTIONS(3435), + [aux_sym_ip_qos_token1] = ACTIONS(3435), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3435), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3435), + [aux_sym_kex_algorithms_token1] = ACTIONS(3435), + [aux_sym_known_hosts_command_token1] = ACTIONS(3435), + [aux_sym_local_command_token1] = ACTIONS(3435), + [aux_sym_local_forward_token1] = ACTIONS(3435), + [aux_sym_log_level_token1] = ACTIONS(3435), + [aux_sym_log_verbose_token1] = ACTIONS(3435), + [aux_sym_macs_token1] = ACTIONS(3435), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3435), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3435), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3435), + [aux_sym_password_authentication_token1] = ACTIONS(3435), + [aux_sym_permit_local_command_token1] = ACTIONS(3435), + [aux_sym_permit_remote_open_token1] = ACTIONS(3435), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3435), + [aux_sym_port_token1] = ACTIONS(3435), + [aux_sym_preferred_authentications_token1] = ACTIONS(3435), + [aux_sym_protocol_token1] = ACTIONS(3435), + [aux_sym_proxy_command_token1] = ACTIONS(3435), + [aux_sym_proxy_jump_token1] = ACTIONS(3435), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3435), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3435), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3435), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3435), + [aux_sym_rekey_limit_token1] = ACTIONS(3435), + [aux_sym_remote_command_token1] = ACTIONS(3435), + [aux_sym_remote_forward_token1] = ACTIONS(3435), + [aux_sym_request_tty_token1] = ACTIONS(3435), + [aux_sym_required_rsa_size_token1] = ACTIONS(3435), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3435), + [aux_sym_security_key_provider_token1] = ACTIONS(3435), + [aux_sym_send_env_token1] = ACTIONS(3435), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3435), + [aux_sym_server_alive_interval_token1] = ACTIONS(3435), + [aux_sym_session_type_token1] = ACTIONS(3435), + [aux_sym_set_env_token1] = ACTIONS(3435), + [aux_sym_stdin_null_token1] = ACTIONS(3435), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3435), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3435), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3435), + [aux_sym_syslog_facility_token1] = ACTIONS(3435), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3435), + [aux_sym_keep_alive_token1] = ACTIONS(3435), + [aux_sym_tag_token1] = ACTIONS(3435), + [aux_sym_tunnel_token1] = ACTIONS(3437), + [aux_sym_tunnel_device_token1] = ACTIONS(3435), + [aux_sym_update_host_keys_token1] = ACTIONS(3435), + [aux_sym_use_keychain_token1] = ACTIONS(3435), + [aux_sym_use_roaming_token1] = ACTIONS(3435), + [aux_sym_user_token1] = ACTIONS(3437), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3435), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3435), + [aux_sym_visual_host_key_token1] = ACTIONS(3435), + [aux_sym_xauth_location_token1] = ACTIONS(3435), }, [603] = { - [ts_builtin_sym_end] = ACTIONS(3444), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3446), - [aux_sym_match_token1] = ACTIONS(3444), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3444), - [aux_sym_address_family_token1] = ACTIONS(3444), - [aux_sym_batch_mode_token1] = ACTIONS(3444), - [aux_sym_bind_address_token1] = ACTIONS(3444), - [aux_sym_bind_interface_token1] = ACTIONS(3444), - [aux_sym_canonical_domains_token1] = ACTIONS(3444), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3444), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3444), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3444), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3444), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3444), - [aux_sym_certificate_file_token1] = ACTIONS(3444), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3444), - [aux_sym_channel_timeout_token1] = ACTIONS(3444), - [aux_sym_check_host_ip_token1] = ACTIONS(3444), - [aux_sym_ciphers_token1] = ACTIONS(3444), - [aux_sym_cipher_token1] = ACTIONS(3446), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3444), - [aux_sym_compression_token1] = ACTIONS(3444), - [aux_sym_connection_attempts_token1] = ACTIONS(3444), - [aux_sym_connect_timeout_token1] = ACTIONS(3444), - [aux_sym_control_master_token1] = ACTIONS(3444), - [aux_sym_control_path_token1] = ACTIONS(3444), - [aux_sym_control_persist_token1] = ACTIONS(3444), - [aux_sym_dynamic_forward_token1] = ACTIONS(3444), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3444), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3444), - [aux_sym_escape_char_token1] = ACTIONS(3444), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3444), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3444), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3444), - [aux_sym_forward_agent_token1] = ACTIONS(3444), - [aux_sym_forward_x11_token1] = ACTIONS(3446), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3444), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3444), - [aux_sym_gateway_ports_token1] = ACTIONS(3444), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3444), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3444), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3444), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3444), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3444), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3444), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3444), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3444), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3444), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3444), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3444), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3444), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3444), - [aux_sym_host_key_alias_token1] = ACTIONS(3444), - [aux_sym_hostname_token1] = ACTIONS(3444), - [aux_sym_identities_only_token1] = ACTIONS(3444), - [aux_sym_identity_agent_token1] = ACTIONS(3444), - [aux_sym_identity_file_token1] = ACTIONS(3444), - [aux_sym_ignore_unknown_token1] = ACTIONS(3444), - [aux_sym_include_token1] = ACTIONS(3444), - [aux_sym_ip_qos_token1] = ACTIONS(3444), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3444), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3444), - [aux_sym_kex_algorithms_token1] = ACTIONS(3444), - [aux_sym_known_hosts_command_token1] = ACTIONS(3444), - [aux_sym_local_command_token1] = ACTIONS(3444), - [aux_sym_local_forward_token1] = ACTIONS(3444), - [aux_sym_log_level_token1] = ACTIONS(3444), - [aux_sym_log_verbose_token1] = ACTIONS(3444), - [aux_sym_macs_token1] = ACTIONS(3444), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3444), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3444), - [aux_sym_password_authentication_token1] = ACTIONS(3444), - [aux_sym_permit_local_command_token1] = ACTIONS(3444), - [aux_sym_permit_remote_open_token1] = ACTIONS(3444), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3444), - [aux_sym_port_token1] = ACTIONS(3444), - [aux_sym_preferred_authentications_token1] = ACTIONS(3444), - [aux_sym_protocol_token1] = ACTIONS(3444), - [aux_sym_proxy_command_token1] = ACTIONS(3444), - [aux_sym_proxy_jump_token1] = ACTIONS(3444), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3444), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3444), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3444), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3444), - [aux_sym_rekey_limit_token1] = ACTIONS(3444), - [aux_sym_remote_command_token1] = ACTIONS(3444), - [aux_sym_remote_forward_token1] = ACTIONS(3444), - [aux_sym_request_tty_token1] = ACTIONS(3444), - [aux_sym_required_rsa_size_token1] = ACTIONS(3444), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3444), - [aux_sym_security_key_provider_token1] = ACTIONS(3444), - [aux_sym_send_env_token1] = ACTIONS(3444), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3444), - [aux_sym_server_alive_interval_token1] = ACTIONS(3444), - [aux_sym_session_type_token1] = ACTIONS(3444), - [aux_sym_set_env_token1] = ACTIONS(3444), - [aux_sym_stdin_null_token1] = ACTIONS(3444), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3444), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3444), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3444), - [aux_sym_syslog_facility_token1] = ACTIONS(3444), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3444), - [aux_sym_keep_alive_token1] = ACTIONS(3444), - [aux_sym_tag_token1] = ACTIONS(3444), - [aux_sym_tunnel_token1] = ACTIONS(3446), - [aux_sym_tunnel_device_token1] = ACTIONS(3444), - [aux_sym_update_host_keys_token1] = ACTIONS(3444), - [aux_sym_use_keychain_token1] = ACTIONS(3444), - [aux_sym_use_roaming_token1] = ACTIONS(3444), - [aux_sym_user_token1] = ACTIONS(3446), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3444), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3444), - [aux_sym_visual_host_key_token1] = ACTIONS(3444), - [aux_sym_xauth_location_token1] = ACTIONS(3444), + [ts_builtin_sym_end] = ACTIONS(3439), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3441), + [aux_sym_match_token1] = ACTIONS(3439), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3439), + [aux_sym_address_family_token1] = ACTIONS(3439), + [aux_sym_batch_mode_token1] = ACTIONS(3439), + [aux_sym_bind_address_token1] = ACTIONS(3439), + [aux_sym_bind_interface_token1] = ACTIONS(3439), + [aux_sym_canonical_domains_token1] = ACTIONS(3439), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3439), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3439), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3439), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3439), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3439), + [aux_sym_certificate_file_token1] = ACTIONS(3439), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3439), + [aux_sym_channel_timeout_token1] = ACTIONS(3439), + [aux_sym_check_host_ip_token1] = ACTIONS(3439), + [aux_sym_ciphers_token1] = ACTIONS(3439), + [aux_sym_cipher_token1] = ACTIONS(3441), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3439), + [aux_sym_compression_token1] = ACTIONS(3439), + [aux_sym_connection_attempts_token1] = ACTIONS(3439), + [aux_sym_connect_timeout_token1] = ACTIONS(3439), + [aux_sym_control_master_token1] = ACTIONS(3439), + [aux_sym_control_path_token1] = ACTIONS(3439), + [aux_sym_control_persist_token1] = ACTIONS(3439), + [aux_sym_dynamic_forward_token1] = ACTIONS(3439), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3439), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3439), + [aux_sym_escape_char_token1] = ACTIONS(3439), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3439), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3439), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3439), + [aux_sym_forward_agent_token1] = ACTIONS(3439), + [aux_sym_forward_x11_token1] = ACTIONS(3441), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3439), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3439), + [aux_sym_gateway_ports_token1] = ACTIONS(3439), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3439), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3439), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3439), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3439), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3439), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3439), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3439), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3439), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3439), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3439), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3439), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3439), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3439), + [aux_sym_host_key_alias_token1] = ACTIONS(3439), + [aux_sym_hostname_token1] = ACTIONS(3439), + [aux_sym_identities_only_token1] = ACTIONS(3439), + [aux_sym_identity_agent_token1] = ACTIONS(3439), + [aux_sym_identity_file_token1] = ACTIONS(3439), + [aux_sym_ignore_unknown_token1] = ACTIONS(3439), + [aux_sym_include_token1] = ACTIONS(3439), + [aux_sym_ip_qos_token1] = ACTIONS(3439), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3439), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3439), + [aux_sym_kex_algorithms_token1] = ACTIONS(3439), + [aux_sym_known_hosts_command_token1] = ACTIONS(3439), + [aux_sym_local_command_token1] = ACTIONS(3439), + [aux_sym_local_forward_token1] = ACTIONS(3439), + [aux_sym_log_level_token1] = ACTIONS(3439), + [aux_sym_log_verbose_token1] = ACTIONS(3439), + [aux_sym_macs_token1] = ACTIONS(3439), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3439), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3439), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3439), + [aux_sym_password_authentication_token1] = ACTIONS(3439), + [aux_sym_permit_local_command_token1] = ACTIONS(3439), + [aux_sym_permit_remote_open_token1] = ACTIONS(3439), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3439), + [aux_sym_port_token1] = ACTIONS(3439), + [aux_sym_preferred_authentications_token1] = ACTIONS(3439), + [aux_sym_protocol_token1] = ACTIONS(3439), + [aux_sym_proxy_command_token1] = ACTIONS(3439), + [aux_sym_proxy_jump_token1] = ACTIONS(3439), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3439), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3439), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3439), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3439), + [aux_sym_rekey_limit_token1] = ACTIONS(3439), + [aux_sym_remote_command_token1] = ACTIONS(3439), + [aux_sym_remote_forward_token1] = ACTIONS(3439), + [aux_sym_request_tty_token1] = ACTIONS(3439), + [aux_sym_required_rsa_size_token1] = ACTIONS(3439), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3439), + [aux_sym_security_key_provider_token1] = ACTIONS(3439), + [aux_sym_send_env_token1] = ACTIONS(3439), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3439), + [aux_sym_server_alive_interval_token1] = ACTIONS(3439), + [aux_sym_session_type_token1] = ACTIONS(3439), + [aux_sym_set_env_token1] = ACTIONS(3439), + [aux_sym_stdin_null_token1] = ACTIONS(3439), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3439), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3439), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3439), + [aux_sym_syslog_facility_token1] = ACTIONS(3439), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3439), + [aux_sym_keep_alive_token1] = ACTIONS(3439), + [aux_sym_tag_token1] = ACTIONS(3439), + [aux_sym_tunnel_token1] = ACTIONS(3441), + [aux_sym_tunnel_device_token1] = ACTIONS(3439), + [aux_sym_update_host_keys_token1] = ACTIONS(3439), + [aux_sym_use_keychain_token1] = ACTIONS(3439), + [aux_sym_use_roaming_token1] = ACTIONS(3439), + [aux_sym_user_token1] = ACTIONS(3441), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3439), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3439), + [aux_sym_visual_host_key_token1] = ACTIONS(3439), + [aux_sym_xauth_location_token1] = ACTIONS(3439), }, [604] = { - [ts_builtin_sym_end] = ACTIONS(3448), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3450), - [aux_sym_match_token1] = ACTIONS(3448), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3448), - [aux_sym_address_family_token1] = ACTIONS(3448), - [aux_sym_batch_mode_token1] = ACTIONS(3448), - [aux_sym_bind_address_token1] = ACTIONS(3448), - [aux_sym_bind_interface_token1] = ACTIONS(3448), - [aux_sym_canonical_domains_token1] = ACTIONS(3448), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3448), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3448), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3448), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3448), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3448), - [aux_sym_certificate_file_token1] = ACTIONS(3448), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3448), - [aux_sym_channel_timeout_token1] = ACTIONS(3448), - [aux_sym_check_host_ip_token1] = ACTIONS(3448), - [aux_sym_ciphers_token1] = ACTIONS(3448), - [aux_sym_cipher_token1] = ACTIONS(3450), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3448), - [aux_sym_compression_token1] = ACTIONS(3448), - [aux_sym_connection_attempts_token1] = ACTIONS(3448), - [aux_sym_connect_timeout_token1] = ACTIONS(3448), - [aux_sym_control_master_token1] = ACTIONS(3448), - [aux_sym_control_path_token1] = ACTIONS(3448), - [aux_sym_control_persist_token1] = ACTIONS(3448), - [aux_sym_dynamic_forward_token1] = ACTIONS(3448), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3448), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3448), - [aux_sym_escape_char_token1] = ACTIONS(3448), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3448), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3448), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3448), - [aux_sym_forward_agent_token1] = ACTIONS(3448), - [aux_sym_forward_x11_token1] = ACTIONS(3450), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3448), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3448), - [aux_sym_gateway_ports_token1] = ACTIONS(3448), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3448), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3448), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3448), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3448), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3448), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3448), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3448), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3448), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3448), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3448), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3448), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3448), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3448), - [aux_sym_host_key_alias_token1] = ACTIONS(3448), - [aux_sym_hostname_token1] = ACTIONS(3448), - [aux_sym_identities_only_token1] = ACTIONS(3448), - [aux_sym_identity_agent_token1] = ACTIONS(3448), - [aux_sym_identity_file_token1] = ACTIONS(3448), - [aux_sym_ignore_unknown_token1] = ACTIONS(3448), - [aux_sym_include_token1] = ACTIONS(3448), - [aux_sym_ip_qos_token1] = ACTIONS(3448), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3448), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3448), - [aux_sym_kex_algorithms_token1] = ACTIONS(3448), - [aux_sym_known_hosts_command_token1] = ACTIONS(3448), - [aux_sym_local_command_token1] = ACTIONS(3448), - [aux_sym_local_forward_token1] = ACTIONS(3448), - [aux_sym_log_level_token1] = ACTIONS(3448), - [aux_sym_log_verbose_token1] = ACTIONS(3448), - [aux_sym_macs_token1] = ACTIONS(3448), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3448), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3448), - [aux_sym_password_authentication_token1] = ACTIONS(3448), - [aux_sym_permit_local_command_token1] = ACTIONS(3448), - [aux_sym_permit_remote_open_token1] = ACTIONS(3448), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3448), - [aux_sym_port_token1] = ACTIONS(3448), - [aux_sym_preferred_authentications_token1] = ACTIONS(3448), - [aux_sym_protocol_token1] = ACTIONS(3448), - [aux_sym_proxy_command_token1] = ACTIONS(3448), - [aux_sym_proxy_jump_token1] = ACTIONS(3448), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3448), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3448), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3448), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3448), - [aux_sym_rekey_limit_token1] = ACTIONS(3448), - [aux_sym_remote_command_token1] = ACTIONS(3448), - [aux_sym_remote_forward_token1] = ACTIONS(3448), - [aux_sym_request_tty_token1] = ACTIONS(3448), - [aux_sym_required_rsa_size_token1] = ACTIONS(3448), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3448), - [aux_sym_security_key_provider_token1] = ACTIONS(3448), - [aux_sym_send_env_token1] = ACTIONS(3448), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3448), - [aux_sym_server_alive_interval_token1] = ACTIONS(3448), - [aux_sym_session_type_token1] = ACTIONS(3448), - [aux_sym_set_env_token1] = ACTIONS(3448), - [aux_sym_stdin_null_token1] = ACTIONS(3448), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3448), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3448), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3448), - [aux_sym_syslog_facility_token1] = ACTIONS(3448), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3448), - [aux_sym_keep_alive_token1] = ACTIONS(3448), - [aux_sym_tag_token1] = ACTIONS(3448), - [aux_sym_tunnel_token1] = ACTIONS(3450), - [aux_sym_tunnel_device_token1] = ACTIONS(3448), - [aux_sym_update_host_keys_token1] = ACTIONS(3448), - [aux_sym_use_keychain_token1] = ACTIONS(3448), - [aux_sym_use_roaming_token1] = ACTIONS(3448), - [aux_sym_user_token1] = ACTIONS(3450), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3448), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3448), - [aux_sym_visual_host_key_token1] = ACTIONS(3448), - [aux_sym_xauth_location_token1] = ACTIONS(3448), + [ts_builtin_sym_end] = ACTIONS(3443), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3445), + [aux_sym_match_token1] = ACTIONS(3443), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3443), + [aux_sym_address_family_token1] = ACTIONS(3443), + [aux_sym_batch_mode_token1] = ACTIONS(3443), + [aux_sym_bind_address_token1] = ACTIONS(3443), + [aux_sym_bind_interface_token1] = ACTIONS(3443), + [aux_sym_canonical_domains_token1] = ACTIONS(3443), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3443), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3443), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3443), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3443), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3443), + [aux_sym_certificate_file_token1] = ACTIONS(3443), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3443), + [aux_sym_channel_timeout_token1] = ACTIONS(3443), + [aux_sym_check_host_ip_token1] = ACTIONS(3443), + [aux_sym_ciphers_token1] = ACTIONS(3443), + [aux_sym_cipher_token1] = ACTIONS(3445), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3443), + [aux_sym_compression_token1] = ACTIONS(3443), + [aux_sym_connection_attempts_token1] = ACTIONS(3443), + [aux_sym_connect_timeout_token1] = ACTIONS(3443), + [aux_sym_control_master_token1] = ACTIONS(3443), + [aux_sym_control_path_token1] = ACTIONS(3443), + [aux_sym_control_persist_token1] = ACTIONS(3443), + [aux_sym_dynamic_forward_token1] = ACTIONS(3443), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3443), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3443), + [aux_sym_escape_char_token1] = ACTIONS(3443), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3443), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3443), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3443), + [aux_sym_forward_agent_token1] = ACTIONS(3443), + [aux_sym_forward_x11_token1] = ACTIONS(3445), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3443), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3443), + [aux_sym_gateway_ports_token1] = ACTIONS(3443), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3443), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3443), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3443), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3443), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3443), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3443), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3443), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3443), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3443), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3443), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3443), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3443), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3443), + [aux_sym_host_key_alias_token1] = ACTIONS(3443), + [aux_sym_hostname_token1] = ACTIONS(3443), + [aux_sym_identities_only_token1] = ACTIONS(3443), + [aux_sym_identity_agent_token1] = ACTIONS(3443), + [aux_sym_identity_file_token1] = ACTIONS(3443), + [aux_sym_ignore_unknown_token1] = ACTIONS(3443), + [aux_sym_include_token1] = ACTIONS(3443), + [aux_sym_ip_qos_token1] = ACTIONS(3443), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3443), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3443), + [aux_sym_kex_algorithms_token1] = ACTIONS(3443), + [aux_sym_known_hosts_command_token1] = ACTIONS(3443), + [aux_sym_local_command_token1] = ACTIONS(3443), + [aux_sym_local_forward_token1] = ACTIONS(3443), + [aux_sym_log_level_token1] = ACTIONS(3443), + [aux_sym_log_verbose_token1] = ACTIONS(3443), + [aux_sym_macs_token1] = ACTIONS(3443), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3443), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3443), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3443), + [aux_sym_password_authentication_token1] = ACTIONS(3443), + [aux_sym_permit_local_command_token1] = ACTIONS(3443), + [aux_sym_permit_remote_open_token1] = ACTIONS(3443), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3443), + [aux_sym_port_token1] = ACTIONS(3443), + [aux_sym_preferred_authentications_token1] = ACTIONS(3443), + [aux_sym_protocol_token1] = ACTIONS(3443), + [aux_sym_proxy_command_token1] = ACTIONS(3443), + [aux_sym_proxy_jump_token1] = ACTIONS(3443), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3443), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3443), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3443), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3443), + [aux_sym_rekey_limit_token1] = ACTIONS(3443), + [aux_sym_remote_command_token1] = ACTIONS(3443), + [aux_sym_remote_forward_token1] = ACTIONS(3443), + [aux_sym_request_tty_token1] = ACTIONS(3443), + [aux_sym_required_rsa_size_token1] = ACTIONS(3443), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3443), + [aux_sym_security_key_provider_token1] = ACTIONS(3443), + [aux_sym_send_env_token1] = ACTIONS(3443), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3443), + [aux_sym_server_alive_interval_token1] = ACTIONS(3443), + [aux_sym_session_type_token1] = ACTIONS(3443), + [aux_sym_set_env_token1] = ACTIONS(3443), + [aux_sym_stdin_null_token1] = ACTIONS(3443), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3443), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3443), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3443), + [aux_sym_syslog_facility_token1] = ACTIONS(3443), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3443), + [aux_sym_keep_alive_token1] = ACTIONS(3443), + [aux_sym_tag_token1] = ACTIONS(3443), + [aux_sym_tunnel_token1] = ACTIONS(3445), + [aux_sym_tunnel_device_token1] = ACTIONS(3443), + [aux_sym_update_host_keys_token1] = ACTIONS(3443), + [aux_sym_use_keychain_token1] = ACTIONS(3443), + [aux_sym_use_roaming_token1] = ACTIONS(3443), + [aux_sym_user_token1] = ACTIONS(3445), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3443), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3443), + [aux_sym_visual_host_key_token1] = ACTIONS(3443), + [aux_sym_xauth_location_token1] = ACTIONS(3443), }, [605] = { - [ts_builtin_sym_end] = ACTIONS(1194), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1196), - [aux_sym_match_token1] = ACTIONS(1194), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1194), - [aux_sym_address_family_token1] = ACTIONS(1194), - [aux_sym_batch_mode_token1] = ACTIONS(1194), - [aux_sym_bind_address_token1] = ACTIONS(1194), - [aux_sym_bind_interface_token1] = ACTIONS(1194), - [aux_sym_canonical_domains_token1] = ACTIONS(1194), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1194), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1194), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1194), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1194), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1194), - [aux_sym_certificate_file_token1] = ACTIONS(1194), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1194), - [aux_sym_channel_timeout_token1] = ACTIONS(1194), - [aux_sym_check_host_ip_token1] = ACTIONS(1194), - [aux_sym_ciphers_token1] = ACTIONS(1194), - [aux_sym_cipher_token1] = ACTIONS(1196), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1194), - [aux_sym_compression_token1] = ACTIONS(1194), - [aux_sym_connection_attempts_token1] = ACTIONS(1194), - [aux_sym_connect_timeout_token1] = ACTIONS(1194), - [aux_sym_control_master_token1] = ACTIONS(1194), - [aux_sym_control_path_token1] = ACTIONS(1194), - [aux_sym_control_persist_token1] = ACTIONS(1194), - [aux_sym_dynamic_forward_token1] = ACTIONS(1194), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1194), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1194), - [aux_sym_escape_char_token1] = ACTIONS(1194), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1194), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1194), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1194), - [aux_sym_forward_agent_token1] = ACTIONS(1194), - [aux_sym_forward_x11_token1] = ACTIONS(1196), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1194), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1194), - [aux_sym_gateway_ports_token1] = ACTIONS(1194), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1194), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1194), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1194), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1194), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1194), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1194), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1194), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1194), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1194), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1194), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1194), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1194), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1194), - [aux_sym_host_key_alias_token1] = ACTIONS(1194), - [aux_sym_hostname_token1] = ACTIONS(1194), - [aux_sym_identities_only_token1] = ACTIONS(1194), - [aux_sym_identity_agent_token1] = ACTIONS(1194), - [aux_sym_identity_file_token1] = ACTIONS(1194), - [aux_sym_ignore_unknown_token1] = ACTIONS(1194), - [aux_sym_include_token1] = ACTIONS(1194), - [aux_sym_ip_qos_token1] = ACTIONS(1194), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1194), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1194), - [aux_sym_kex_algorithms_token1] = ACTIONS(1194), - [aux_sym_known_hosts_command_token1] = ACTIONS(1194), - [aux_sym_local_command_token1] = ACTIONS(1194), - [aux_sym_local_forward_token1] = ACTIONS(1194), - [aux_sym_log_level_token1] = ACTIONS(1194), - [aux_sym_log_verbose_token1] = ACTIONS(1194), - [aux_sym_macs_token1] = ACTIONS(1194), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1194), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1194), - [aux_sym_password_authentication_token1] = ACTIONS(1194), - [aux_sym_permit_local_command_token1] = ACTIONS(1194), - [aux_sym_permit_remote_open_token1] = ACTIONS(1194), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1194), - [aux_sym_port_token1] = ACTIONS(1194), - [aux_sym_preferred_authentications_token1] = ACTIONS(1194), - [aux_sym_protocol_token1] = ACTIONS(1194), - [aux_sym_proxy_command_token1] = ACTIONS(1194), - [aux_sym_proxy_jump_token1] = ACTIONS(1194), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1194), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1194), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1194), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1194), - [aux_sym_rekey_limit_token1] = ACTIONS(1194), - [aux_sym_remote_command_token1] = ACTIONS(1194), - [aux_sym_remote_forward_token1] = ACTIONS(1194), - [aux_sym_request_tty_token1] = ACTIONS(1194), - [aux_sym_required_rsa_size_token1] = ACTIONS(1194), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1194), - [aux_sym_security_key_provider_token1] = ACTIONS(1194), - [aux_sym_send_env_token1] = ACTIONS(1194), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1194), - [aux_sym_server_alive_interval_token1] = ACTIONS(1194), - [aux_sym_session_type_token1] = ACTIONS(1194), - [aux_sym_set_env_token1] = ACTIONS(1194), - [aux_sym_stdin_null_token1] = ACTIONS(1194), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1194), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1194), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1194), - [aux_sym_syslog_facility_token1] = ACTIONS(1194), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1194), - [aux_sym_keep_alive_token1] = ACTIONS(1194), - [aux_sym_tag_token1] = ACTIONS(1194), - [aux_sym_tunnel_token1] = ACTIONS(1196), - [aux_sym_tunnel_device_token1] = ACTIONS(1194), - [aux_sym_update_host_keys_token1] = ACTIONS(1194), - [aux_sym_use_keychain_token1] = ACTIONS(1194), - [aux_sym_use_roaming_token1] = ACTIONS(1194), - [aux_sym_user_token1] = ACTIONS(1196), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1194), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1194), - [aux_sym_visual_host_key_token1] = ACTIONS(1194), - [aux_sym_xauth_location_token1] = ACTIONS(1194), + [ts_builtin_sym_end] = ACTIONS(3447), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3449), + [aux_sym_match_token1] = ACTIONS(3447), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3447), + [aux_sym_address_family_token1] = ACTIONS(3447), + [aux_sym_batch_mode_token1] = ACTIONS(3447), + [aux_sym_bind_address_token1] = ACTIONS(3447), + [aux_sym_bind_interface_token1] = ACTIONS(3447), + [aux_sym_canonical_domains_token1] = ACTIONS(3447), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3447), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3447), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3447), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3447), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3447), + [aux_sym_certificate_file_token1] = ACTIONS(3447), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3447), + [aux_sym_channel_timeout_token1] = ACTIONS(3447), + [aux_sym_check_host_ip_token1] = ACTIONS(3447), + [aux_sym_ciphers_token1] = ACTIONS(3447), + [aux_sym_cipher_token1] = ACTIONS(3449), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3447), + [aux_sym_compression_token1] = ACTIONS(3447), + [aux_sym_connection_attempts_token1] = ACTIONS(3447), + [aux_sym_connect_timeout_token1] = ACTIONS(3447), + [aux_sym_control_master_token1] = ACTIONS(3447), + [aux_sym_control_path_token1] = ACTIONS(3447), + [aux_sym_control_persist_token1] = ACTIONS(3447), + [aux_sym_dynamic_forward_token1] = ACTIONS(3447), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3447), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3447), + [aux_sym_escape_char_token1] = ACTIONS(3447), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3447), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3447), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3447), + [aux_sym_forward_agent_token1] = ACTIONS(3447), + [aux_sym_forward_x11_token1] = ACTIONS(3449), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3447), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3447), + [aux_sym_gateway_ports_token1] = ACTIONS(3447), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3447), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3447), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3447), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3447), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3447), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3447), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3447), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3447), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3447), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3447), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3447), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3447), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3447), + [aux_sym_host_key_alias_token1] = ACTIONS(3447), + [aux_sym_hostname_token1] = ACTIONS(3447), + [aux_sym_identities_only_token1] = ACTIONS(3447), + [aux_sym_identity_agent_token1] = ACTIONS(3447), + [aux_sym_identity_file_token1] = ACTIONS(3447), + [aux_sym_ignore_unknown_token1] = ACTIONS(3447), + [aux_sym_include_token1] = ACTIONS(3447), + [aux_sym_ip_qos_token1] = ACTIONS(3447), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3447), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3447), + [aux_sym_kex_algorithms_token1] = ACTIONS(3447), + [aux_sym_known_hosts_command_token1] = ACTIONS(3447), + [aux_sym_local_command_token1] = ACTIONS(3447), + [aux_sym_local_forward_token1] = ACTIONS(3447), + [aux_sym_log_level_token1] = ACTIONS(3447), + [aux_sym_log_verbose_token1] = ACTIONS(3447), + [aux_sym_macs_token1] = ACTIONS(3447), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3447), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3447), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3447), + [aux_sym_password_authentication_token1] = ACTIONS(3447), + [aux_sym_permit_local_command_token1] = ACTIONS(3447), + [aux_sym_permit_remote_open_token1] = ACTIONS(3447), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3447), + [aux_sym_port_token1] = ACTIONS(3447), + [aux_sym_preferred_authentications_token1] = ACTIONS(3447), + [aux_sym_protocol_token1] = ACTIONS(3447), + [aux_sym_proxy_command_token1] = ACTIONS(3447), + [aux_sym_proxy_jump_token1] = ACTIONS(3447), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3447), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3447), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3447), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3447), + [aux_sym_rekey_limit_token1] = ACTIONS(3447), + [aux_sym_remote_command_token1] = ACTIONS(3447), + [aux_sym_remote_forward_token1] = ACTIONS(3447), + [aux_sym_request_tty_token1] = ACTIONS(3447), + [aux_sym_required_rsa_size_token1] = ACTIONS(3447), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3447), + [aux_sym_security_key_provider_token1] = ACTIONS(3447), + [aux_sym_send_env_token1] = ACTIONS(3447), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3447), + [aux_sym_server_alive_interval_token1] = ACTIONS(3447), + [aux_sym_session_type_token1] = ACTIONS(3447), + [aux_sym_set_env_token1] = ACTIONS(3447), + [aux_sym_stdin_null_token1] = ACTIONS(3447), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3447), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3447), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3447), + [aux_sym_syslog_facility_token1] = ACTIONS(3447), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3447), + [aux_sym_keep_alive_token1] = ACTIONS(3447), + [aux_sym_tag_token1] = ACTIONS(3447), + [aux_sym_tunnel_token1] = ACTIONS(3449), + [aux_sym_tunnel_device_token1] = ACTIONS(3447), + [aux_sym_update_host_keys_token1] = ACTIONS(3447), + [aux_sym_use_keychain_token1] = ACTIONS(3447), + [aux_sym_use_roaming_token1] = ACTIONS(3447), + [aux_sym_user_token1] = ACTIONS(3449), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3447), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3447), + [aux_sym_visual_host_key_token1] = ACTIONS(3447), + [aux_sym_xauth_location_token1] = ACTIONS(3447), }, [606] = { - [ts_builtin_sym_end] = ACTIONS(1524), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1526), - [aux_sym_match_token1] = ACTIONS(1524), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1524), - [aux_sym_address_family_token1] = ACTIONS(1524), - [aux_sym_batch_mode_token1] = ACTIONS(1524), - [aux_sym_bind_address_token1] = ACTIONS(1524), - [aux_sym_bind_interface_token1] = ACTIONS(1524), - [aux_sym_canonical_domains_token1] = ACTIONS(1524), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1524), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1524), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1524), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1524), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1524), - [aux_sym_certificate_file_token1] = ACTIONS(1524), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1524), - [aux_sym_channel_timeout_token1] = ACTIONS(1524), - [aux_sym_check_host_ip_token1] = ACTIONS(1524), - [aux_sym_ciphers_token1] = ACTIONS(1524), - [aux_sym_cipher_token1] = ACTIONS(1526), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1524), - [aux_sym_compression_token1] = ACTIONS(1524), - [aux_sym_connection_attempts_token1] = ACTIONS(1524), - [aux_sym_connect_timeout_token1] = ACTIONS(1524), - [aux_sym_control_master_token1] = ACTIONS(1524), - [aux_sym_control_path_token1] = ACTIONS(1524), - [aux_sym_control_persist_token1] = ACTIONS(1524), - [aux_sym_dynamic_forward_token1] = ACTIONS(1524), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1524), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1524), - [aux_sym_escape_char_token1] = ACTIONS(1524), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1524), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1524), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1524), - [aux_sym_forward_agent_token1] = ACTIONS(1524), - [aux_sym_forward_x11_token1] = ACTIONS(1526), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1524), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1524), - [aux_sym_gateway_ports_token1] = ACTIONS(1524), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1524), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1524), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1524), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1524), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1524), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1524), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1524), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1524), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1524), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1524), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1524), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1524), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1524), - [aux_sym_host_key_alias_token1] = ACTIONS(1524), - [aux_sym_hostname_token1] = ACTIONS(1524), - [aux_sym_identities_only_token1] = ACTIONS(1524), - [aux_sym_identity_agent_token1] = ACTIONS(1524), - [aux_sym_identity_file_token1] = ACTIONS(1524), - [aux_sym_ignore_unknown_token1] = ACTIONS(1524), - [aux_sym_include_token1] = ACTIONS(1524), - [aux_sym_ip_qos_token1] = ACTIONS(1524), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1524), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1524), - [aux_sym_kex_algorithms_token1] = ACTIONS(1524), - [aux_sym_known_hosts_command_token1] = ACTIONS(1524), - [aux_sym_local_command_token1] = ACTIONS(1524), - [aux_sym_local_forward_token1] = ACTIONS(1524), - [aux_sym_log_level_token1] = ACTIONS(1524), - [aux_sym_log_verbose_token1] = ACTIONS(1524), - [aux_sym_macs_token1] = ACTIONS(1524), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1524), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1524), - [aux_sym_password_authentication_token1] = ACTIONS(1524), - [aux_sym_permit_local_command_token1] = ACTIONS(1524), - [aux_sym_permit_remote_open_token1] = ACTIONS(1524), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1524), - [aux_sym_port_token1] = ACTIONS(1524), - [aux_sym_preferred_authentications_token1] = ACTIONS(1524), - [aux_sym_protocol_token1] = ACTIONS(1524), - [aux_sym_proxy_command_token1] = ACTIONS(1524), - [aux_sym_proxy_jump_token1] = ACTIONS(1524), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1524), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1524), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1524), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1524), - [aux_sym_rekey_limit_token1] = ACTIONS(1524), - [aux_sym_remote_command_token1] = ACTIONS(1524), - [aux_sym_remote_forward_token1] = ACTIONS(1524), - [aux_sym_request_tty_token1] = ACTIONS(1524), - [aux_sym_required_rsa_size_token1] = ACTIONS(1524), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1524), - [aux_sym_security_key_provider_token1] = ACTIONS(1524), - [aux_sym_send_env_token1] = ACTIONS(1524), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1524), - [aux_sym_server_alive_interval_token1] = ACTIONS(1524), - [aux_sym_session_type_token1] = ACTIONS(1524), - [aux_sym_set_env_token1] = ACTIONS(1524), - [aux_sym_stdin_null_token1] = ACTIONS(1524), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1524), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1524), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1524), - [aux_sym_syslog_facility_token1] = ACTIONS(1524), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1524), - [aux_sym_keep_alive_token1] = ACTIONS(1524), - [aux_sym_tag_token1] = ACTIONS(1524), - [aux_sym_tunnel_token1] = ACTIONS(1526), - [aux_sym_tunnel_device_token1] = ACTIONS(1524), - [aux_sym_update_host_keys_token1] = ACTIONS(1524), - [aux_sym_use_keychain_token1] = ACTIONS(1524), - [aux_sym_use_roaming_token1] = ACTIONS(1524), - [aux_sym_user_token1] = ACTIONS(1526), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1524), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1524), - [aux_sym_visual_host_key_token1] = ACTIONS(1524), - [aux_sym_xauth_location_token1] = ACTIONS(1524), + [ts_builtin_sym_end] = ACTIONS(3451), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3453), + [aux_sym_match_token1] = ACTIONS(3451), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3451), + [aux_sym_address_family_token1] = ACTIONS(3451), + [aux_sym_batch_mode_token1] = ACTIONS(3451), + [aux_sym_bind_address_token1] = ACTIONS(3451), + [aux_sym_bind_interface_token1] = ACTIONS(3451), + [aux_sym_canonical_domains_token1] = ACTIONS(3451), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3451), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3451), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3451), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3451), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3451), + [aux_sym_certificate_file_token1] = ACTIONS(3451), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3451), + [aux_sym_channel_timeout_token1] = ACTIONS(3451), + [aux_sym_check_host_ip_token1] = ACTIONS(3451), + [aux_sym_ciphers_token1] = ACTIONS(3451), + [aux_sym_cipher_token1] = ACTIONS(3453), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3451), + [aux_sym_compression_token1] = ACTIONS(3451), + [aux_sym_connection_attempts_token1] = ACTIONS(3451), + [aux_sym_connect_timeout_token1] = ACTIONS(3451), + [aux_sym_control_master_token1] = ACTIONS(3451), + [aux_sym_control_path_token1] = ACTIONS(3451), + [aux_sym_control_persist_token1] = ACTIONS(3451), + [aux_sym_dynamic_forward_token1] = ACTIONS(3451), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3451), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3451), + [aux_sym_escape_char_token1] = ACTIONS(3451), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3451), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3451), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3451), + [aux_sym_forward_agent_token1] = ACTIONS(3451), + [aux_sym_forward_x11_token1] = ACTIONS(3453), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3451), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3451), + [aux_sym_gateway_ports_token1] = ACTIONS(3451), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3451), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3451), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3451), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3451), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3451), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3451), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3451), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3451), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3451), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3451), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3451), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3451), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3451), + [aux_sym_host_key_alias_token1] = ACTIONS(3451), + [aux_sym_hostname_token1] = ACTIONS(3451), + [aux_sym_identities_only_token1] = ACTIONS(3451), + [aux_sym_identity_agent_token1] = ACTIONS(3451), + [aux_sym_identity_file_token1] = ACTIONS(3451), + [aux_sym_ignore_unknown_token1] = ACTIONS(3451), + [aux_sym_include_token1] = ACTIONS(3451), + [aux_sym_ip_qos_token1] = ACTIONS(3451), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3451), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3451), + [aux_sym_kex_algorithms_token1] = ACTIONS(3451), + [aux_sym_known_hosts_command_token1] = ACTIONS(3451), + [aux_sym_local_command_token1] = ACTIONS(3451), + [aux_sym_local_forward_token1] = ACTIONS(3451), + [aux_sym_log_level_token1] = ACTIONS(3451), + [aux_sym_log_verbose_token1] = ACTIONS(3451), + [aux_sym_macs_token1] = ACTIONS(3451), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3451), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3451), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3451), + [aux_sym_password_authentication_token1] = ACTIONS(3451), + [aux_sym_permit_local_command_token1] = ACTIONS(3451), + [aux_sym_permit_remote_open_token1] = ACTIONS(3451), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3451), + [aux_sym_port_token1] = ACTIONS(3451), + [aux_sym_preferred_authentications_token1] = ACTIONS(3451), + [aux_sym_protocol_token1] = ACTIONS(3451), + [aux_sym_proxy_command_token1] = ACTIONS(3451), + [aux_sym_proxy_jump_token1] = ACTIONS(3451), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3451), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3451), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3451), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3451), + [aux_sym_rekey_limit_token1] = ACTIONS(3451), + [aux_sym_remote_command_token1] = ACTIONS(3451), + [aux_sym_remote_forward_token1] = ACTIONS(3451), + [aux_sym_request_tty_token1] = ACTIONS(3451), + [aux_sym_required_rsa_size_token1] = ACTIONS(3451), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3451), + [aux_sym_security_key_provider_token1] = ACTIONS(3451), + [aux_sym_send_env_token1] = ACTIONS(3451), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3451), + [aux_sym_server_alive_interval_token1] = ACTIONS(3451), + [aux_sym_session_type_token1] = ACTIONS(3451), + [aux_sym_set_env_token1] = ACTIONS(3451), + [aux_sym_stdin_null_token1] = ACTIONS(3451), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3451), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3451), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3451), + [aux_sym_syslog_facility_token1] = ACTIONS(3451), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3451), + [aux_sym_keep_alive_token1] = ACTIONS(3451), + [aux_sym_tag_token1] = ACTIONS(3451), + [aux_sym_tunnel_token1] = ACTIONS(3453), + [aux_sym_tunnel_device_token1] = ACTIONS(3451), + [aux_sym_update_host_keys_token1] = ACTIONS(3451), + [aux_sym_use_keychain_token1] = ACTIONS(3451), + [aux_sym_use_roaming_token1] = ACTIONS(3451), + [aux_sym_user_token1] = ACTIONS(3453), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3451), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3451), + [aux_sym_visual_host_key_token1] = ACTIONS(3451), + [aux_sym_xauth_location_token1] = ACTIONS(3451), }, [607] = { - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3454), - [aux_sym_match_token1] = ACTIONS(3452), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3452), - [aux_sym_address_family_token1] = ACTIONS(3452), - [aux_sym_batch_mode_token1] = ACTIONS(3452), - [aux_sym_bind_address_token1] = ACTIONS(3452), - [aux_sym_bind_interface_token1] = ACTIONS(3452), - [aux_sym_canonical_domains_token1] = ACTIONS(3452), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3452), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3452), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3452), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3452), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3452), - [aux_sym_certificate_file_token1] = ACTIONS(3452), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3452), - [aux_sym_channel_timeout_token1] = ACTIONS(3452), - [aux_sym_check_host_ip_token1] = ACTIONS(3452), - [aux_sym_ciphers_token1] = ACTIONS(3452), - [aux_sym_cipher_token1] = ACTIONS(3454), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3452), - [aux_sym_compression_token1] = ACTIONS(3452), - [aux_sym_connection_attempts_token1] = ACTIONS(3452), - [aux_sym_connect_timeout_token1] = ACTIONS(3452), - [aux_sym_control_master_token1] = ACTIONS(3452), - [aux_sym_control_path_token1] = ACTIONS(3452), - [aux_sym_control_persist_token1] = ACTIONS(3452), - [aux_sym_dynamic_forward_token1] = ACTIONS(3452), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3452), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3452), - [aux_sym_escape_char_token1] = ACTIONS(3452), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3452), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3452), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3452), - [aux_sym_forward_agent_token1] = ACTIONS(3452), - [aux_sym_forward_x11_token1] = ACTIONS(3454), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3452), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3452), - [aux_sym_gateway_ports_token1] = ACTIONS(3452), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3452), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3452), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3452), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3452), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3452), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3452), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3452), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3452), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3452), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3452), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3452), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3452), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3452), - [aux_sym_host_key_alias_token1] = ACTIONS(3452), - [aux_sym_hostname_token1] = ACTIONS(3452), - [aux_sym_identities_only_token1] = ACTIONS(3452), - [aux_sym_identity_agent_token1] = ACTIONS(3452), - [aux_sym_identity_file_token1] = ACTIONS(3452), - [aux_sym_ignore_unknown_token1] = ACTIONS(3452), - [aux_sym_include_token1] = ACTIONS(3452), - [aux_sym_ip_qos_token1] = ACTIONS(3452), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3452), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3452), - [aux_sym_kex_algorithms_token1] = ACTIONS(3452), - [aux_sym_known_hosts_command_token1] = ACTIONS(3452), - [aux_sym_local_command_token1] = ACTIONS(3452), - [aux_sym_local_forward_token1] = ACTIONS(3452), - [aux_sym_log_level_token1] = ACTIONS(3452), - [aux_sym_log_verbose_token1] = ACTIONS(3452), - [aux_sym_macs_token1] = ACTIONS(3452), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3452), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3452), - [aux_sym_password_authentication_token1] = ACTIONS(3452), - [aux_sym_permit_local_command_token1] = ACTIONS(3452), - [aux_sym_permit_remote_open_token1] = ACTIONS(3452), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3452), - [aux_sym_port_token1] = ACTIONS(3452), - [aux_sym_preferred_authentications_token1] = ACTIONS(3452), - [aux_sym_protocol_token1] = ACTIONS(3452), - [aux_sym_proxy_command_token1] = ACTIONS(3452), - [aux_sym_proxy_jump_token1] = ACTIONS(3452), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3452), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3452), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3452), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3452), - [aux_sym_rekey_limit_token1] = ACTIONS(3452), - [aux_sym_remote_command_token1] = ACTIONS(3452), - [aux_sym_remote_forward_token1] = ACTIONS(3452), - [aux_sym_request_tty_token1] = ACTIONS(3452), - [aux_sym_required_rsa_size_token1] = ACTIONS(3452), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3452), - [aux_sym_security_key_provider_token1] = ACTIONS(3452), - [aux_sym_send_env_token1] = ACTIONS(3452), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3452), - [aux_sym_server_alive_interval_token1] = ACTIONS(3452), - [aux_sym_session_type_token1] = ACTIONS(3452), - [aux_sym_set_env_token1] = ACTIONS(3452), - [aux_sym_stdin_null_token1] = ACTIONS(3452), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3452), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3452), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3452), - [aux_sym_syslog_facility_token1] = ACTIONS(3452), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3452), - [aux_sym_keep_alive_token1] = ACTIONS(3452), - [aux_sym_tag_token1] = ACTIONS(3452), - [aux_sym_tunnel_token1] = ACTIONS(3454), - [aux_sym_tunnel_device_token1] = ACTIONS(3452), - [aux_sym_update_host_keys_token1] = ACTIONS(3452), - [aux_sym_use_keychain_token1] = ACTIONS(3452), - [aux_sym_use_roaming_token1] = ACTIONS(3452), - [aux_sym_user_token1] = ACTIONS(3454), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3452), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3452), - [aux_sym_visual_host_key_token1] = ACTIONS(3452), - [aux_sym_xauth_location_token1] = ACTIONS(3452), + [ts_builtin_sym_end] = ACTIONS(3455), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3457), + [aux_sym_match_token1] = ACTIONS(3455), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3455), + [aux_sym_address_family_token1] = ACTIONS(3455), + [aux_sym_batch_mode_token1] = ACTIONS(3455), + [aux_sym_bind_address_token1] = ACTIONS(3455), + [aux_sym_bind_interface_token1] = ACTIONS(3455), + [aux_sym_canonical_domains_token1] = ACTIONS(3455), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3455), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3455), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3455), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3455), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3455), + [aux_sym_certificate_file_token1] = ACTIONS(3455), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3455), + [aux_sym_channel_timeout_token1] = ACTIONS(3455), + [aux_sym_check_host_ip_token1] = ACTIONS(3455), + [aux_sym_ciphers_token1] = ACTIONS(3455), + [aux_sym_cipher_token1] = ACTIONS(3457), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3455), + [aux_sym_compression_token1] = ACTIONS(3455), + [aux_sym_connection_attempts_token1] = ACTIONS(3455), + [aux_sym_connect_timeout_token1] = ACTIONS(3455), + [aux_sym_control_master_token1] = ACTIONS(3455), + [aux_sym_control_path_token1] = ACTIONS(3455), + [aux_sym_control_persist_token1] = ACTIONS(3455), + [aux_sym_dynamic_forward_token1] = ACTIONS(3455), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3455), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3455), + [aux_sym_escape_char_token1] = ACTIONS(3455), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3455), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3455), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3455), + [aux_sym_forward_agent_token1] = ACTIONS(3455), + [aux_sym_forward_x11_token1] = ACTIONS(3457), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3455), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3455), + [aux_sym_gateway_ports_token1] = ACTIONS(3455), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3455), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3455), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3455), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3455), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3455), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3455), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3455), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3455), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3455), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3455), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3455), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3455), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3455), + [aux_sym_host_key_alias_token1] = ACTIONS(3455), + [aux_sym_hostname_token1] = ACTIONS(3455), + [aux_sym_identities_only_token1] = ACTIONS(3455), + [aux_sym_identity_agent_token1] = ACTIONS(3455), + [aux_sym_identity_file_token1] = ACTIONS(3455), + [aux_sym_ignore_unknown_token1] = ACTIONS(3455), + [aux_sym_include_token1] = ACTIONS(3455), + [aux_sym_ip_qos_token1] = ACTIONS(3455), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3455), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3455), + [aux_sym_kex_algorithms_token1] = ACTIONS(3455), + [aux_sym_known_hosts_command_token1] = ACTIONS(3455), + [aux_sym_local_command_token1] = ACTIONS(3455), + [aux_sym_local_forward_token1] = ACTIONS(3455), + [aux_sym_log_level_token1] = ACTIONS(3455), + [aux_sym_log_verbose_token1] = ACTIONS(3455), + [aux_sym_macs_token1] = ACTIONS(3455), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3455), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3455), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3455), + [aux_sym_password_authentication_token1] = ACTIONS(3455), + [aux_sym_permit_local_command_token1] = ACTIONS(3455), + [aux_sym_permit_remote_open_token1] = ACTIONS(3455), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3455), + [aux_sym_port_token1] = ACTIONS(3455), + [aux_sym_preferred_authentications_token1] = ACTIONS(3455), + [aux_sym_protocol_token1] = ACTIONS(3455), + [aux_sym_proxy_command_token1] = ACTIONS(3455), + [aux_sym_proxy_jump_token1] = ACTIONS(3455), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3455), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3455), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3455), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3455), + [aux_sym_rekey_limit_token1] = ACTIONS(3455), + [aux_sym_remote_command_token1] = ACTIONS(3455), + [aux_sym_remote_forward_token1] = ACTIONS(3455), + [aux_sym_request_tty_token1] = ACTIONS(3455), + [aux_sym_required_rsa_size_token1] = ACTIONS(3455), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3455), + [aux_sym_security_key_provider_token1] = ACTIONS(3455), + [aux_sym_send_env_token1] = ACTIONS(3455), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3455), + [aux_sym_server_alive_interval_token1] = ACTIONS(3455), + [aux_sym_session_type_token1] = ACTIONS(3455), + [aux_sym_set_env_token1] = ACTIONS(3455), + [aux_sym_stdin_null_token1] = ACTIONS(3455), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3455), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3455), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3455), + [aux_sym_syslog_facility_token1] = ACTIONS(3455), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3455), + [aux_sym_keep_alive_token1] = ACTIONS(3455), + [aux_sym_tag_token1] = ACTIONS(3455), + [aux_sym_tunnel_token1] = ACTIONS(3457), + [aux_sym_tunnel_device_token1] = ACTIONS(3455), + [aux_sym_update_host_keys_token1] = ACTIONS(3455), + [aux_sym_use_keychain_token1] = ACTIONS(3455), + [aux_sym_use_roaming_token1] = ACTIONS(3455), + [aux_sym_user_token1] = ACTIONS(3457), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3455), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3455), + [aux_sym_visual_host_key_token1] = ACTIONS(3455), + [aux_sym_xauth_location_token1] = ACTIONS(3455), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(1188), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1190), - [aux_sym_match_token1] = ACTIONS(1188), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1188), - [aux_sym_address_family_token1] = ACTIONS(1188), - [aux_sym_batch_mode_token1] = ACTIONS(1188), - [aux_sym_bind_address_token1] = ACTIONS(1188), - [aux_sym_bind_interface_token1] = ACTIONS(1188), - [aux_sym_canonical_domains_token1] = ACTIONS(1188), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1188), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1188), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1188), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1188), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1188), - [aux_sym_certificate_file_token1] = ACTIONS(1188), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1188), - [aux_sym_channel_timeout_token1] = ACTIONS(1188), - [aux_sym_check_host_ip_token1] = ACTIONS(1188), - [aux_sym_ciphers_token1] = ACTIONS(1188), - [aux_sym_cipher_token1] = ACTIONS(1190), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1188), - [aux_sym_compression_token1] = ACTIONS(1188), - [aux_sym_connection_attempts_token1] = ACTIONS(1188), - [aux_sym_connect_timeout_token1] = ACTIONS(1188), - [aux_sym_control_master_token1] = ACTIONS(1188), - [aux_sym_control_path_token1] = ACTIONS(1188), - [aux_sym_control_persist_token1] = ACTIONS(1188), - [aux_sym_dynamic_forward_token1] = ACTIONS(1188), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1188), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1188), - [aux_sym_escape_char_token1] = ACTIONS(1188), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1188), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1188), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1188), - [aux_sym_forward_agent_token1] = ACTIONS(1188), - [aux_sym_forward_x11_token1] = ACTIONS(1190), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1188), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1188), - [aux_sym_gateway_ports_token1] = ACTIONS(1188), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1188), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1188), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1188), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1188), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1188), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1188), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1188), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1188), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1188), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1188), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1188), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1188), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1188), - [aux_sym_host_key_alias_token1] = ACTIONS(1188), - [aux_sym_hostname_token1] = ACTIONS(1188), - [aux_sym_identities_only_token1] = ACTIONS(1188), - [aux_sym_identity_agent_token1] = ACTIONS(1188), - [aux_sym_identity_file_token1] = ACTIONS(1188), - [aux_sym_ignore_unknown_token1] = ACTIONS(1188), - [aux_sym_include_token1] = ACTIONS(1188), - [aux_sym_ip_qos_token1] = ACTIONS(1188), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1188), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1188), - [aux_sym_kex_algorithms_token1] = ACTIONS(1188), - [aux_sym_known_hosts_command_token1] = ACTIONS(1188), - [aux_sym_local_command_token1] = ACTIONS(1188), - [aux_sym_local_forward_token1] = ACTIONS(1188), - [aux_sym_log_level_token1] = ACTIONS(1188), - [aux_sym_log_verbose_token1] = ACTIONS(1188), - [aux_sym_macs_token1] = ACTIONS(1188), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1188), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1188), - [aux_sym_password_authentication_token1] = ACTIONS(1188), - [aux_sym_permit_local_command_token1] = ACTIONS(1188), - [aux_sym_permit_remote_open_token1] = ACTIONS(1188), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1188), - [aux_sym_port_token1] = ACTIONS(1188), - [aux_sym_preferred_authentications_token1] = ACTIONS(1188), - [aux_sym_protocol_token1] = ACTIONS(1188), - [aux_sym_proxy_command_token1] = ACTIONS(1188), - [aux_sym_proxy_jump_token1] = ACTIONS(1188), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1188), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1188), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1188), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1188), - [aux_sym_rekey_limit_token1] = ACTIONS(1188), - [aux_sym_remote_command_token1] = ACTIONS(1188), - [aux_sym_remote_forward_token1] = ACTIONS(1188), - [aux_sym_request_tty_token1] = ACTIONS(1188), - [aux_sym_required_rsa_size_token1] = ACTIONS(1188), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1188), - [aux_sym_security_key_provider_token1] = ACTIONS(1188), - [aux_sym_send_env_token1] = ACTIONS(1188), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1188), - [aux_sym_server_alive_interval_token1] = ACTIONS(1188), - [aux_sym_session_type_token1] = ACTIONS(1188), - [aux_sym_set_env_token1] = ACTIONS(1188), - [aux_sym_stdin_null_token1] = ACTIONS(1188), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1188), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1188), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1188), - [aux_sym_syslog_facility_token1] = ACTIONS(1188), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1188), - [aux_sym_keep_alive_token1] = ACTIONS(1188), - [aux_sym_tag_token1] = ACTIONS(1188), - [aux_sym_tunnel_token1] = ACTIONS(1190), - [aux_sym_tunnel_device_token1] = ACTIONS(1188), - [aux_sym_update_host_keys_token1] = ACTIONS(1188), - [aux_sym_use_keychain_token1] = ACTIONS(1188), - [aux_sym_use_roaming_token1] = ACTIONS(1188), - [aux_sym_user_token1] = ACTIONS(1190), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1188), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1188), - [aux_sym_visual_host_key_token1] = ACTIONS(1188), - [aux_sym_xauth_location_token1] = ACTIONS(1188), + [ts_builtin_sym_end] = ACTIONS(3459), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3461), + [aux_sym_match_token1] = ACTIONS(3459), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3459), + [aux_sym_address_family_token1] = ACTIONS(3459), + [aux_sym_batch_mode_token1] = ACTIONS(3459), + [aux_sym_bind_address_token1] = ACTIONS(3459), + [aux_sym_bind_interface_token1] = ACTIONS(3459), + [aux_sym_canonical_domains_token1] = ACTIONS(3459), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3459), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3459), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3459), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3459), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3459), + [aux_sym_certificate_file_token1] = ACTIONS(3459), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3459), + [aux_sym_channel_timeout_token1] = ACTIONS(3459), + [aux_sym_check_host_ip_token1] = ACTIONS(3459), + [aux_sym_ciphers_token1] = ACTIONS(3459), + [aux_sym_cipher_token1] = ACTIONS(3461), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3459), + [aux_sym_compression_token1] = ACTIONS(3459), + [aux_sym_connection_attempts_token1] = ACTIONS(3459), + [aux_sym_connect_timeout_token1] = ACTIONS(3459), + [aux_sym_control_master_token1] = ACTIONS(3459), + [aux_sym_control_path_token1] = ACTIONS(3459), + [aux_sym_control_persist_token1] = ACTIONS(3459), + [aux_sym_dynamic_forward_token1] = ACTIONS(3459), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3459), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3459), + [aux_sym_escape_char_token1] = ACTIONS(3459), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3459), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3459), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3459), + [aux_sym_forward_agent_token1] = ACTIONS(3459), + [aux_sym_forward_x11_token1] = ACTIONS(3461), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3459), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3459), + [aux_sym_gateway_ports_token1] = ACTIONS(3459), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3459), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3459), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3459), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3459), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3459), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3459), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3459), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3459), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3459), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3459), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3459), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3459), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3459), + [aux_sym_host_key_alias_token1] = ACTIONS(3459), + [aux_sym_hostname_token1] = ACTIONS(3459), + [aux_sym_identities_only_token1] = ACTIONS(3459), + [aux_sym_identity_agent_token1] = ACTIONS(3459), + [aux_sym_identity_file_token1] = ACTIONS(3459), + [aux_sym_ignore_unknown_token1] = ACTIONS(3459), + [aux_sym_include_token1] = ACTIONS(3459), + [aux_sym_ip_qos_token1] = ACTIONS(3459), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3459), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3459), + [aux_sym_kex_algorithms_token1] = ACTIONS(3459), + [aux_sym_known_hosts_command_token1] = ACTIONS(3459), + [aux_sym_local_command_token1] = ACTIONS(3459), + [aux_sym_local_forward_token1] = ACTIONS(3459), + [aux_sym_log_level_token1] = ACTIONS(3459), + [aux_sym_log_verbose_token1] = ACTIONS(3459), + [aux_sym_macs_token1] = ACTIONS(3459), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3459), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3459), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3459), + [aux_sym_password_authentication_token1] = ACTIONS(3459), + [aux_sym_permit_local_command_token1] = ACTIONS(3459), + [aux_sym_permit_remote_open_token1] = ACTIONS(3459), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3459), + [aux_sym_port_token1] = ACTIONS(3459), + [aux_sym_preferred_authentications_token1] = ACTIONS(3459), + [aux_sym_protocol_token1] = ACTIONS(3459), + [aux_sym_proxy_command_token1] = ACTIONS(3459), + [aux_sym_proxy_jump_token1] = ACTIONS(3459), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3459), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3459), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3459), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3459), + [aux_sym_rekey_limit_token1] = ACTIONS(3459), + [aux_sym_remote_command_token1] = ACTIONS(3459), + [aux_sym_remote_forward_token1] = ACTIONS(3459), + [aux_sym_request_tty_token1] = ACTIONS(3459), + [aux_sym_required_rsa_size_token1] = ACTIONS(3459), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3459), + [aux_sym_security_key_provider_token1] = ACTIONS(3459), + [aux_sym_send_env_token1] = ACTIONS(3459), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3459), + [aux_sym_server_alive_interval_token1] = ACTIONS(3459), + [aux_sym_session_type_token1] = ACTIONS(3459), + [aux_sym_set_env_token1] = ACTIONS(3459), + [aux_sym_stdin_null_token1] = ACTIONS(3459), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3459), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3459), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3459), + [aux_sym_syslog_facility_token1] = ACTIONS(3459), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3459), + [aux_sym_keep_alive_token1] = ACTIONS(3459), + [aux_sym_tag_token1] = ACTIONS(3459), + [aux_sym_tunnel_token1] = ACTIONS(3461), + [aux_sym_tunnel_device_token1] = ACTIONS(3459), + [aux_sym_update_host_keys_token1] = ACTIONS(3459), + [aux_sym_use_keychain_token1] = ACTIONS(3459), + [aux_sym_use_roaming_token1] = ACTIONS(3459), + [aux_sym_user_token1] = ACTIONS(3461), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3459), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3459), + [aux_sym_visual_host_key_token1] = ACTIONS(3459), + [aux_sym_xauth_location_token1] = ACTIONS(3459), }, [609] = { - [ts_builtin_sym_end] = ACTIONS(1530), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1532), - [aux_sym_match_token1] = ACTIONS(1530), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1530), - [aux_sym_address_family_token1] = ACTIONS(1530), - [aux_sym_batch_mode_token1] = ACTIONS(1530), - [aux_sym_bind_address_token1] = ACTIONS(1530), - [aux_sym_bind_interface_token1] = ACTIONS(1530), - [aux_sym_canonical_domains_token1] = ACTIONS(1530), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1530), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1530), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1530), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1530), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1530), - [aux_sym_certificate_file_token1] = ACTIONS(1530), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1530), - [aux_sym_channel_timeout_token1] = ACTIONS(1530), - [aux_sym_check_host_ip_token1] = ACTIONS(1530), - [aux_sym_ciphers_token1] = ACTIONS(1530), - [aux_sym_cipher_token1] = ACTIONS(1532), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1530), - [aux_sym_compression_token1] = ACTIONS(1530), - [aux_sym_connection_attempts_token1] = ACTIONS(1530), - [aux_sym_connect_timeout_token1] = ACTIONS(1530), - [aux_sym_control_master_token1] = ACTIONS(1530), - [aux_sym_control_path_token1] = ACTIONS(1530), - [aux_sym_control_persist_token1] = ACTIONS(1530), - [aux_sym_dynamic_forward_token1] = ACTIONS(1530), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1530), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1530), - [aux_sym_escape_char_token1] = ACTIONS(1530), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1530), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1530), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1530), - [aux_sym_forward_agent_token1] = ACTIONS(1530), - [aux_sym_forward_x11_token1] = ACTIONS(1532), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1530), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1530), - [aux_sym_gateway_ports_token1] = ACTIONS(1530), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1530), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1530), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1530), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1530), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1530), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1530), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1530), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1530), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1530), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1530), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1530), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1530), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1530), - [aux_sym_host_key_alias_token1] = ACTIONS(1530), - [aux_sym_hostname_token1] = ACTIONS(1530), - [aux_sym_identities_only_token1] = ACTIONS(1530), - [aux_sym_identity_agent_token1] = ACTIONS(1530), - [aux_sym_identity_file_token1] = ACTIONS(1530), - [aux_sym_ignore_unknown_token1] = ACTIONS(1530), - [aux_sym_include_token1] = ACTIONS(1530), - [aux_sym_ip_qos_token1] = ACTIONS(1530), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1530), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1530), - [aux_sym_kex_algorithms_token1] = ACTIONS(1530), - [aux_sym_known_hosts_command_token1] = ACTIONS(1530), - [aux_sym_local_command_token1] = ACTIONS(1530), - [aux_sym_local_forward_token1] = ACTIONS(1530), - [aux_sym_log_level_token1] = ACTIONS(1530), - [aux_sym_log_verbose_token1] = ACTIONS(1530), - [aux_sym_macs_token1] = ACTIONS(1530), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1530), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1530), - [aux_sym_password_authentication_token1] = ACTIONS(1530), - [aux_sym_permit_local_command_token1] = ACTIONS(1530), - [aux_sym_permit_remote_open_token1] = ACTIONS(1530), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1530), - [aux_sym_port_token1] = ACTIONS(1530), - [aux_sym_preferred_authentications_token1] = ACTIONS(1530), - [aux_sym_protocol_token1] = ACTIONS(1530), - [aux_sym_proxy_command_token1] = ACTIONS(1530), - [aux_sym_proxy_jump_token1] = ACTIONS(1530), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1530), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1530), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1530), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1530), - [aux_sym_rekey_limit_token1] = ACTIONS(1530), - [aux_sym_remote_command_token1] = ACTIONS(1530), - [aux_sym_remote_forward_token1] = ACTIONS(1530), - [aux_sym_request_tty_token1] = ACTIONS(1530), - [aux_sym_required_rsa_size_token1] = ACTIONS(1530), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1530), - [aux_sym_security_key_provider_token1] = ACTIONS(1530), - [aux_sym_send_env_token1] = ACTIONS(1530), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1530), - [aux_sym_server_alive_interval_token1] = ACTIONS(1530), - [aux_sym_session_type_token1] = ACTIONS(1530), - [aux_sym_set_env_token1] = ACTIONS(1530), - [aux_sym_stdin_null_token1] = ACTIONS(1530), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1530), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1530), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1530), - [aux_sym_syslog_facility_token1] = ACTIONS(1530), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1530), - [aux_sym_keep_alive_token1] = ACTIONS(1530), - [aux_sym_tag_token1] = ACTIONS(1530), - [aux_sym_tunnel_token1] = ACTIONS(1532), - [aux_sym_tunnel_device_token1] = ACTIONS(1530), - [aux_sym_update_host_keys_token1] = ACTIONS(1530), - [aux_sym_use_keychain_token1] = ACTIONS(1530), - [aux_sym_use_roaming_token1] = ACTIONS(1530), - [aux_sym_user_token1] = ACTIONS(1532), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1530), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1530), - [aux_sym_visual_host_key_token1] = ACTIONS(1530), - [aux_sym_xauth_location_token1] = ACTIONS(1530), + [ts_builtin_sym_end] = ACTIONS(3463), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3465), + [aux_sym_match_token1] = ACTIONS(3463), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3463), + [aux_sym_address_family_token1] = ACTIONS(3463), + [aux_sym_batch_mode_token1] = ACTIONS(3463), + [aux_sym_bind_address_token1] = ACTIONS(3463), + [aux_sym_bind_interface_token1] = ACTIONS(3463), + [aux_sym_canonical_domains_token1] = ACTIONS(3463), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3463), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3463), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3463), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3463), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3463), + [aux_sym_certificate_file_token1] = ACTIONS(3463), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3463), + [aux_sym_channel_timeout_token1] = ACTIONS(3463), + [aux_sym_check_host_ip_token1] = ACTIONS(3463), + [aux_sym_ciphers_token1] = ACTIONS(3463), + [aux_sym_cipher_token1] = ACTIONS(3465), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3463), + [aux_sym_compression_token1] = ACTIONS(3463), + [aux_sym_connection_attempts_token1] = ACTIONS(3463), + [aux_sym_connect_timeout_token1] = ACTIONS(3463), + [aux_sym_control_master_token1] = ACTIONS(3463), + [aux_sym_control_path_token1] = ACTIONS(3463), + [aux_sym_control_persist_token1] = ACTIONS(3463), + [aux_sym_dynamic_forward_token1] = ACTIONS(3463), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3463), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3463), + [aux_sym_escape_char_token1] = ACTIONS(3463), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3463), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3463), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3463), + [aux_sym_forward_agent_token1] = ACTIONS(3463), + [aux_sym_forward_x11_token1] = ACTIONS(3465), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3463), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3463), + [aux_sym_gateway_ports_token1] = ACTIONS(3463), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3463), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3463), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3463), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3463), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3463), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3463), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3463), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3463), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3463), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3463), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3463), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3463), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3463), + [aux_sym_host_key_alias_token1] = ACTIONS(3463), + [aux_sym_hostname_token1] = ACTIONS(3463), + [aux_sym_identities_only_token1] = ACTIONS(3463), + [aux_sym_identity_agent_token1] = ACTIONS(3463), + [aux_sym_identity_file_token1] = ACTIONS(3463), + [aux_sym_ignore_unknown_token1] = ACTIONS(3463), + [aux_sym_include_token1] = ACTIONS(3463), + [aux_sym_ip_qos_token1] = ACTIONS(3463), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3463), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3463), + [aux_sym_kex_algorithms_token1] = ACTIONS(3463), + [aux_sym_known_hosts_command_token1] = ACTIONS(3463), + [aux_sym_local_command_token1] = ACTIONS(3463), + [aux_sym_local_forward_token1] = ACTIONS(3463), + [aux_sym_log_level_token1] = ACTIONS(3463), + [aux_sym_log_verbose_token1] = ACTIONS(3463), + [aux_sym_macs_token1] = ACTIONS(3463), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3463), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3463), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3463), + [aux_sym_password_authentication_token1] = ACTIONS(3463), + [aux_sym_permit_local_command_token1] = ACTIONS(3463), + [aux_sym_permit_remote_open_token1] = ACTIONS(3463), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3463), + [aux_sym_port_token1] = ACTIONS(3463), + [aux_sym_preferred_authentications_token1] = ACTIONS(3463), + [aux_sym_protocol_token1] = ACTIONS(3463), + [aux_sym_proxy_command_token1] = ACTIONS(3463), + [aux_sym_proxy_jump_token1] = ACTIONS(3463), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3463), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3463), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3463), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3463), + [aux_sym_rekey_limit_token1] = ACTIONS(3463), + [aux_sym_remote_command_token1] = ACTIONS(3463), + [aux_sym_remote_forward_token1] = ACTIONS(3463), + [aux_sym_request_tty_token1] = ACTIONS(3463), + [aux_sym_required_rsa_size_token1] = ACTIONS(3463), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3463), + [aux_sym_security_key_provider_token1] = ACTIONS(3463), + [aux_sym_send_env_token1] = ACTIONS(3463), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3463), + [aux_sym_server_alive_interval_token1] = ACTIONS(3463), + [aux_sym_session_type_token1] = ACTIONS(3463), + [aux_sym_set_env_token1] = ACTIONS(3463), + [aux_sym_stdin_null_token1] = ACTIONS(3463), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3463), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3463), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3463), + [aux_sym_syslog_facility_token1] = ACTIONS(3463), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3463), + [aux_sym_keep_alive_token1] = ACTIONS(3463), + [aux_sym_tag_token1] = ACTIONS(3463), + [aux_sym_tunnel_token1] = ACTIONS(3465), + [aux_sym_tunnel_device_token1] = ACTIONS(3463), + [aux_sym_update_host_keys_token1] = ACTIONS(3463), + [aux_sym_use_keychain_token1] = ACTIONS(3463), + [aux_sym_use_roaming_token1] = ACTIONS(3463), + [aux_sym_user_token1] = ACTIONS(3465), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3463), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3463), + [aux_sym_visual_host_key_token1] = ACTIONS(3463), + [aux_sym_xauth_location_token1] = ACTIONS(3463), }, [610] = { - [ts_builtin_sym_end] = ACTIONS(1182), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1184), - [aux_sym_match_token1] = ACTIONS(1182), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1182), - [aux_sym_address_family_token1] = ACTIONS(1182), - [aux_sym_batch_mode_token1] = ACTIONS(1182), - [aux_sym_bind_address_token1] = ACTIONS(1182), - [aux_sym_bind_interface_token1] = ACTIONS(1182), - [aux_sym_canonical_domains_token1] = ACTIONS(1182), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1182), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1182), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1182), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1182), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1182), - [aux_sym_certificate_file_token1] = ACTIONS(1182), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1182), - [aux_sym_channel_timeout_token1] = ACTIONS(1182), - [aux_sym_check_host_ip_token1] = ACTIONS(1182), - [aux_sym_ciphers_token1] = ACTIONS(1182), - [aux_sym_cipher_token1] = ACTIONS(1184), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1182), - [aux_sym_compression_token1] = ACTIONS(1182), - [aux_sym_connection_attempts_token1] = ACTIONS(1182), - [aux_sym_connect_timeout_token1] = ACTIONS(1182), - [aux_sym_control_master_token1] = ACTIONS(1182), - [aux_sym_control_path_token1] = ACTIONS(1182), - [aux_sym_control_persist_token1] = ACTIONS(1182), - [aux_sym_dynamic_forward_token1] = ACTIONS(1182), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1182), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1182), - [aux_sym_escape_char_token1] = ACTIONS(1182), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1182), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1182), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1182), - [aux_sym_forward_agent_token1] = ACTIONS(1182), - [aux_sym_forward_x11_token1] = ACTIONS(1184), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1182), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1182), - [aux_sym_gateway_ports_token1] = ACTIONS(1182), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1182), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1182), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1182), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1182), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1182), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1182), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1182), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1182), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1182), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1182), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1182), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1182), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1182), - [aux_sym_host_key_alias_token1] = ACTIONS(1182), - [aux_sym_hostname_token1] = ACTIONS(1182), - [aux_sym_identities_only_token1] = ACTIONS(1182), - [aux_sym_identity_agent_token1] = ACTIONS(1182), - [aux_sym_identity_file_token1] = ACTIONS(1182), - [aux_sym_ignore_unknown_token1] = ACTIONS(1182), - [aux_sym_include_token1] = ACTIONS(1182), - [aux_sym_ip_qos_token1] = ACTIONS(1182), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1182), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1182), - [aux_sym_kex_algorithms_token1] = ACTIONS(1182), - [aux_sym_known_hosts_command_token1] = ACTIONS(1182), - [aux_sym_local_command_token1] = ACTIONS(1182), - [aux_sym_local_forward_token1] = ACTIONS(1182), - [aux_sym_log_level_token1] = ACTIONS(1182), - [aux_sym_log_verbose_token1] = ACTIONS(1182), - [aux_sym_macs_token1] = ACTIONS(1182), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1182), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1182), - [aux_sym_password_authentication_token1] = ACTIONS(1182), - [aux_sym_permit_local_command_token1] = ACTIONS(1182), - [aux_sym_permit_remote_open_token1] = ACTIONS(1182), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1182), - [aux_sym_port_token1] = ACTIONS(1182), - [aux_sym_preferred_authentications_token1] = ACTIONS(1182), - [aux_sym_protocol_token1] = ACTIONS(1182), - [aux_sym_proxy_command_token1] = ACTIONS(1182), - [aux_sym_proxy_jump_token1] = ACTIONS(1182), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1182), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1182), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1182), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1182), - [aux_sym_rekey_limit_token1] = ACTIONS(1182), - [aux_sym_remote_command_token1] = ACTIONS(1182), - [aux_sym_remote_forward_token1] = ACTIONS(1182), - [aux_sym_request_tty_token1] = ACTIONS(1182), - [aux_sym_required_rsa_size_token1] = ACTIONS(1182), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1182), - [aux_sym_security_key_provider_token1] = ACTIONS(1182), - [aux_sym_send_env_token1] = ACTIONS(1182), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1182), - [aux_sym_server_alive_interval_token1] = ACTIONS(1182), - [aux_sym_session_type_token1] = ACTIONS(1182), - [aux_sym_set_env_token1] = ACTIONS(1182), - [aux_sym_stdin_null_token1] = ACTIONS(1182), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1182), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1182), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1182), - [aux_sym_syslog_facility_token1] = ACTIONS(1182), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1182), - [aux_sym_keep_alive_token1] = ACTIONS(1182), - [aux_sym_tag_token1] = ACTIONS(1182), - [aux_sym_tunnel_token1] = ACTIONS(1184), - [aux_sym_tunnel_device_token1] = ACTIONS(1182), - [aux_sym_update_host_keys_token1] = ACTIONS(1182), - [aux_sym_use_keychain_token1] = ACTIONS(1182), - [aux_sym_use_roaming_token1] = ACTIONS(1182), - [aux_sym_user_token1] = ACTIONS(1184), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1182), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1182), - [aux_sym_visual_host_key_token1] = ACTIONS(1182), - [aux_sym_xauth_location_token1] = ACTIONS(1182), + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3469), + [aux_sym_match_token1] = ACTIONS(3467), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3467), + [aux_sym_address_family_token1] = ACTIONS(3467), + [aux_sym_batch_mode_token1] = ACTIONS(3467), + [aux_sym_bind_address_token1] = ACTIONS(3467), + [aux_sym_bind_interface_token1] = ACTIONS(3467), + [aux_sym_canonical_domains_token1] = ACTIONS(3467), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3467), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3467), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3467), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3467), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3467), + [aux_sym_certificate_file_token1] = ACTIONS(3467), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3467), + [aux_sym_channel_timeout_token1] = ACTIONS(3467), + [aux_sym_check_host_ip_token1] = ACTIONS(3467), + [aux_sym_ciphers_token1] = ACTIONS(3467), + [aux_sym_cipher_token1] = ACTIONS(3469), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3467), + [aux_sym_compression_token1] = ACTIONS(3467), + [aux_sym_connection_attempts_token1] = ACTIONS(3467), + [aux_sym_connect_timeout_token1] = ACTIONS(3467), + [aux_sym_control_master_token1] = ACTIONS(3467), + [aux_sym_control_path_token1] = ACTIONS(3467), + [aux_sym_control_persist_token1] = ACTIONS(3467), + [aux_sym_dynamic_forward_token1] = ACTIONS(3467), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3467), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3467), + [aux_sym_escape_char_token1] = ACTIONS(3467), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3467), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3467), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3467), + [aux_sym_forward_agent_token1] = ACTIONS(3467), + [aux_sym_forward_x11_token1] = ACTIONS(3469), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3467), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3467), + [aux_sym_gateway_ports_token1] = ACTIONS(3467), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3467), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3467), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3467), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3467), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3467), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3467), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3467), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3467), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3467), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3467), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3467), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3467), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3467), + [aux_sym_host_key_alias_token1] = ACTIONS(3467), + [aux_sym_hostname_token1] = ACTIONS(3467), + [aux_sym_identities_only_token1] = ACTIONS(3467), + [aux_sym_identity_agent_token1] = ACTIONS(3467), + [aux_sym_identity_file_token1] = ACTIONS(3467), + [aux_sym_ignore_unknown_token1] = ACTIONS(3467), + [aux_sym_include_token1] = ACTIONS(3467), + [aux_sym_ip_qos_token1] = ACTIONS(3467), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3467), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3467), + [aux_sym_kex_algorithms_token1] = ACTIONS(3467), + [aux_sym_known_hosts_command_token1] = ACTIONS(3467), + [aux_sym_local_command_token1] = ACTIONS(3467), + [aux_sym_local_forward_token1] = ACTIONS(3467), + [aux_sym_log_level_token1] = ACTIONS(3467), + [aux_sym_log_verbose_token1] = ACTIONS(3467), + [aux_sym_macs_token1] = ACTIONS(3467), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3467), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3467), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3467), + [aux_sym_password_authentication_token1] = ACTIONS(3467), + [aux_sym_permit_local_command_token1] = ACTIONS(3467), + [aux_sym_permit_remote_open_token1] = ACTIONS(3467), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3467), + [aux_sym_port_token1] = ACTIONS(3467), + [aux_sym_preferred_authentications_token1] = ACTIONS(3467), + [aux_sym_protocol_token1] = ACTIONS(3467), + [aux_sym_proxy_command_token1] = ACTIONS(3467), + [aux_sym_proxy_jump_token1] = ACTIONS(3467), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3467), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3467), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3467), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3467), + [aux_sym_rekey_limit_token1] = ACTIONS(3467), + [aux_sym_remote_command_token1] = ACTIONS(3467), + [aux_sym_remote_forward_token1] = ACTIONS(3467), + [aux_sym_request_tty_token1] = ACTIONS(3467), + [aux_sym_required_rsa_size_token1] = ACTIONS(3467), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3467), + [aux_sym_security_key_provider_token1] = ACTIONS(3467), + [aux_sym_send_env_token1] = ACTIONS(3467), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3467), + [aux_sym_server_alive_interval_token1] = ACTIONS(3467), + [aux_sym_session_type_token1] = ACTIONS(3467), + [aux_sym_set_env_token1] = ACTIONS(3467), + [aux_sym_stdin_null_token1] = ACTIONS(3467), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3467), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3467), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3467), + [aux_sym_syslog_facility_token1] = ACTIONS(3467), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3467), + [aux_sym_keep_alive_token1] = ACTIONS(3467), + [aux_sym_tag_token1] = ACTIONS(3467), + [aux_sym_tunnel_token1] = ACTIONS(3469), + [aux_sym_tunnel_device_token1] = ACTIONS(3467), + [aux_sym_update_host_keys_token1] = ACTIONS(3467), + [aux_sym_use_keychain_token1] = ACTIONS(3467), + [aux_sym_use_roaming_token1] = ACTIONS(3467), + [aux_sym_user_token1] = ACTIONS(3469), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3467), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3467), + [aux_sym_visual_host_key_token1] = ACTIONS(3467), + [aux_sym_xauth_location_token1] = ACTIONS(3467), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3458), - [aux_sym_match_token1] = ACTIONS(3456), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3456), - [aux_sym_address_family_token1] = ACTIONS(3456), - [aux_sym_batch_mode_token1] = ACTIONS(3456), - [aux_sym_bind_address_token1] = ACTIONS(3456), - [aux_sym_bind_interface_token1] = ACTIONS(3456), - [aux_sym_canonical_domains_token1] = ACTIONS(3456), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3456), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3456), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3456), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3456), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3456), - [aux_sym_certificate_file_token1] = ACTIONS(3456), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3456), - [aux_sym_channel_timeout_token1] = ACTIONS(3456), - [aux_sym_check_host_ip_token1] = ACTIONS(3456), - [aux_sym_ciphers_token1] = ACTIONS(3456), - [aux_sym_cipher_token1] = ACTIONS(3458), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3456), - [aux_sym_compression_token1] = ACTIONS(3456), - [aux_sym_connection_attempts_token1] = ACTIONS(3456), - [aux_sym_connect_timeout_token1] = ACTIONS(3456), - [aux_sym_control_master_token1] = ACTIONS(3456), - [aux_sym_control_path_token1] = ACTIONS(3456), - [aux_sym_control_persist_token1] = ACTIONS(3456), - [aux_sym_dynamic_forward_token1] = ACTIONS(3456), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3456), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3456), - [aux_sym_escape_char_token1] = ACTIONS(3456), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3456), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3456), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3456), - [aux_sym_forward_agent_token1] = ACTIONS(3456), - [aux_sym_forward_x11_token1] = ACTIONS(3458), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3456), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3456), - [aux_sym_gateway_ports_token1] = ACTIONS(3456), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3456), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3456), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3456), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3456), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3456), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3456), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3456), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3456), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3456), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3456), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3456), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3456), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3456), - [aux_sym_host_key_alias_token1] = ACTIONS(3456), - [aux_sym_hostname_token1] = ACTIONS(3456), - [aux_sym_identities_only_token1] = ACTIONS(3456), - [aux_sym_identity_agent_token1] = ACTIONS(3456), - [aux_sym_identity_file_token1] = ACTIONS(3456), - [aux_sym_ignore_unknown_token1] = ACTIONS(3456), - [aux_sym_include_token1] = ACTIONS(3456), - [aux_sym_ip_qos_token1] = ACTIONS(3456), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3456), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3456), - [aux_sym_kex_algorithms_token1] = ACTIONS(3456), - [aux_sym_known_hosts_command_token1] = ACTIONS(3456), - [aux_sym_local_command_token1] = ACTIONS(3456), - [aux_sym_local_forward_token1] = ACTIONS(3456), - [aux_sym_log_level_token1] = ACTIONS(3456), - [aux_sym_log_verbose_token1] = ACTIONS(3456), - [aux_sym_macs_token1] = ACTIONS(3456), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3456), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3456), - [aux_sym_password_authentication_token1] = ACTIONS(3456), - [aux_sym_permit_local_command_token1] = ACTIONS(3456), - [aux_sym_permit_remote_open_token1] = ACTIONS(3456), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3456), - [aux_sym_port_token1] = ACTIONS(3456), - [aux_sym_preferred_authentications_token1] = ACTIONS(3456), - [aux_sym_protocol_token1] = ACTIONS(3456), - [aux_sym_proxy_command_token1] = ACTIONS(3456), - [aux_sym_proxy_jump_token1] = ACTIONS(3456), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3456), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3456), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3456), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3456), - [aux_sym_rekey_limit_token1] = ACTIONS(3456), - [aux_sym_remote_command_token1] = ACTIONS(3456), - [aux_sym_remote_forward_token1] = ACTIONS(3456), - [aux_sym_request_tty_token1] = ACTIONS(3456), - [aux_sym_required_rsa_size_token1] = ACTIONS(3456), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3456), - [aux_sym_security_key_provider_token1] = ACTIONS(3456), - [aux_sym_send_env_token1] = ACTIONS(3456), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3456), - [aux_sym_server_alive_interval_token1] = ACTIONS(3456), - [aux_sym_session_type_token1] = ACTIONS(3456), - [aux_sym_set_env_token1] = ACTIONS(3456), - [aux_sym_stdin_null_token1] = ACTIONS(3456), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3456), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3456), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3456), - [aux_sym_syslog_facility_token1] = ACTIONS(3456), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3456), - [aux_sym_keep_alive_token1] = ACTIONS(3456), - [aux_sym_tag_token1] = ACTIONS(3456), - [aux_sym_tunnel_token1] = ACTIONS(3458), - [aux_sym_tunnel_device_token1] = ACTIONS(3456), - [aux_sym_update_host_keys_token1] = ACTIONS(3456), - [aux_sym_use_keychain_token1] = ACTIONS(3456), - [aux_sym_use_roaming_token1] = ACTIONS(3456), - [aux_sym_user_token1] = ACTIONS(3458), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3456), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3456), - [aux_sym_visual_host_key_token1] = ACTIONS(3456), - [aux_sym_xauth_location_token1] = ACTIONS(3456), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1315), + [aux_sym_match_token1] = ACTIONS(1313), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1313), + [aux_sym_address_family_token1] = ACTIONS(1313), + [aux_sym_batch_mode_token1] = ACTIONS(1313), + [aux_sym_bind_address_token1] = ACTIONS(1313), + [aux_sym_bind_interface_token1] = ACTIONS(1313), + [aux_sym_canonical_domains_token1] = ACTIONS(1313), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1313), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1313), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1313), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1313), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1313), + [aux_sym_certificate_file_token1] = ACTIONS(1313), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1313), + [aux_sym_channel_timeout_token1] = ACTIONS(1313), + [aux_sym_check_host_ip_token1] = ACTIONS(1313), + [aux_sym_ciphers_token1] = ACTIONS(1313), + [aux_sym_cipher_token1] = ACTIONS(1315), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1313), + [aux_sym_compression_token1] = ACTIONS(1313), + [aux_sym_connection_attempts_token1] = ACTIONS(1313), + [aux_sym_connect_timeout_token1] = ACTIONS(1313), + [aux_sym_control_master_token1] = ACTIONS(1313), + [aux_sym_control_path_token1] = ACTIONS(1313), + [aux_sym_control_persist_token1] = ACTIONS(1313), + [aux_sym_dynamic_forward_token1] = ACTIONS(1313), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1313), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1313), + [aux_sym_escape_char_token1] = ACTIONS(1313), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1313), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1313), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1313), + [aux_sym_forward_agent_token1] = ACTIONS(1313), + [aux_sym_forward_x11_token1] = ACTIONS(1315), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1313), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1313), + [aux_sym_gateway_ports_token1] = ACTIONS(1313), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1313), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1313), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1313), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1313), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1313), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1313), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1313), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1313), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1313), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1313), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1313), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1313), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1313), + [aux_sym_host_key_alias_token1] = ACTIONS(1313), + [aux_sym_hostname_token1] = ACTIONS(1313), + [aux_sym_identities_only_token1] = ACTIONS(1313), + [aux_sym_identity_agent_token1] = ACTIONS(1313), + [aux_sym_identity_file_token1] = ACTIONS(1313), + [aux_sym_ignore_unknown_token1] = ACTIONS(1313), + [aux_sym_include_token1] = ACTIONS(1313), + [aux_sym_ip_qos_token1] = ACTIONS(1313), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1313), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1313), + [aux_sym_kex_algorithms_token1] = ACTIONS(1313), + [aux_sym_known_hosts_command_token1] = ACTIONS(1313), + [aux_sym_local_command_token1] = ACTIONS(1313), + [aux_sym_local_forward_token1] = ACTIONS(1313), + [aux_sym_log_level_token1] = ACTIONS(1313), + [aux_sym_log_verbose_token1] = ACTIONS(1313), + [aux_sym_macs_token1] = ACTIONS(1313), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1313), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1313), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1313), + [aux_sym_password_authentication_token1] = ACTIONS(1313), + [aux_sym_permit_local_command_token1] = ACTIONS(1313), + [aux_sym_permit_remote_open_token1] = ACTIONS(1313), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1313), + [aux_sym_port_token1] = ACTIONS(1313), + [aux_sym_preferred_authentications_token1] = ACTIONS(1313), + [aux_sym_protocol_token1] = ACTIONS(1313), + [aux_sym_proxy_command_token1] = ACTIONS(1313), + [aux_sym_proxy_jump_token1] = ACTIONS(1313), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1313), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1313), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1313), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1313), + [aux_sym_rekey_limit_token1] = ACTIONS(1313), + [aux_sym_remote_command_token1] = ACTIONS(1313), + [aux_sym_remote_forward_token1] = ACTIONS(1313), + [aux_sym_request_tty_token1] = ACTIONS(1313), + [aux_sym_required_rsa_size_token1] = ACTIONS(1313), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1313), + [aux_sym_security_key_provider_token1] = ACTIONS(1313), + [aux_sym_send_env_token1] = ACTIONS(1313), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1313), + [aux_sym_server_alive_interval_token1] = ACTIONS(1313), + [aux_sym_session_type_token1] = ACTIONS(1313), + [aux_sym_set_env_token1] = ACTIONS(1313), + [aux_sym_stdin_null_token1] = ACTIONS(1313), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1313), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1313), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1313), + [aux_sym_syslog_facility_token1] = ACTIONS(1313), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1313), + [aux_sym_keep_alive_token1] = ACTIONS(1313), + [aux_sym_tag_token1] = ACTIONS(1313), + [aux_sym_tunnel_token1] = ACTIONS(1315), + [aux_sym_tunnel_device_token1] = ACTIONS(1313), + [aux_sym_update_host_keys_token1] = ACTIONS(1313), + [aux_sym_use_keychain_token1] = ACTIONS(1313), + [aux_sym_use_roaming_token1] = ACTIONS(1313), + [aux_sym_user_token1] = ACTIONS(1315), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1313), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1313), + [aux_sym_visual_host_key_token1] = ACTIONS(1313), + [aux_sym_xauth_location_token1] = ACTIONS(1313), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3462), - [aux_sym_match_token1] = ACTIONS(3460), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3460), - [aux_sym_address_family_token1] = ACTIONS(3460), - [aux_sym_batch_mode_token1] = ACTIONS(3460), - [aux_sym_bind_address_token1] = ACTIONS(3460), - [aux_sym_bind_interface_token1] = ACTIONS(3460), - [aux_sym_canonical_domains_token1] = ACTIONS(3460), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3460), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3460), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3460), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3460), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3460), - [aux_sym_certificate_file_token1] = ACTIONS(3460), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3460), - [aux_sym_channel_timeout_token1] = ACTIONS(3460), - [aux_sym_check_host_ip_token1] = ACTIONS(3460), - [aux_sym_ciphers_token1] = ACTIONS(3460), - [aux_sym_cipher_token1] = ACTIONS(3462), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3460), - [aux_sym_compression_token1] = ACTIONS(3460), - [aux_sym_connection_attempts_token1] = ACTIONS(3460), - [aux_sym_connect_timeout_token1] = ACTIONS(3460), - [aux_sym_control_master_token1] = ACTIONS(3460), - [aux_sym_control_path_token1] = ACTIONS(3460), - [aux_sym_control_persist_token1] = ACTIONS(3460), - [aux_sym_dynamic_forward_token1] = ACTIONS(3460), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3460), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3460), - [aux_sym_escape_char_token1] = ACTIONS(3460), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3460), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3460), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3460), - [aux_sym_forward_agent_token1] = ACTIONS(3460), - [aux_sym_forward_x11_token1] = ACTIONS(3462), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3460), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3460), - [aux_sym_gateway_ports_token1] = ACTIONS(3460), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3460), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3460), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3460), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3460), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3460), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3460), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3460), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3460), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3460), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3460), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3460), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3460), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3460), - [aux_sym_host_key_alias_token1] = ACTIONS(3460), - [aux_sym_hostname_token1] = ACTIONS(3460), - [aux_sym_identities_only_token1] = ACTIONS(3460), - [aux_sym_identity_agent_token1] = ACTIONS(3460), - [aux_sym_identity_file_token1] = ACTIONS(3460), - [aux_sym_ignore_unknown_token1] = ACTIONS(3460), - [aux_sym_include_token1] = ACTIONS(3460), - [aux_sym_ip_qos_token1] = ACTIONS(3460), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3460), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3460), - [aux_sym_kex_algorithms_token1] = ACTIONS(3460), - [aux_sym_known_hosts_command_token1] = ACTIONS(3460), - [aux_sym_local_command_token1] = ACTIONS(3460), - [aux_sym_local_forward_token1] = ACTIONS(3460), - [aux_sym_log_level_token1] = ACTIONS(3460), - [aux_sym_log_verbose_token1] = ACTIONS(3460), - [aux_sym_macs_token1] = ACTIONS(3460), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3460), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3460), - [aux_sym_password_authentication_token1] = ACTIONS(3460), - [aux_sym_permit_local_command_token1] = ACTIONS(3460), - [aux_sym_permit_remote_open_token1] = ACTIONS(3460), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3460), - [aux_sym_port_token1] = ACTIONS(3460), - [aux_sym_preferred_authentications_token1] = ACTIONS(3460), - [aux_sym_protocol_token1] = ACTIONS(3460), - [aux_sym_proxy_command_token1] = ACTIONS(3460), - [aux_sym_proxy_jump_token1] = ACTIONS(3460), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3460), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3460), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3460), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3460), - [aux_sym_rekey_limit_token1] = ACTIONS(3460), - [aux_sym_remote_command_token1] = ACTIONS(3460), - [aux_sym_remote_forward_token1] = ACTIONS(3460), - [aux_sym_request_tty_token1] = ACTIONS(3460), - [aux_sym_required_rsa_size_token1] = ACTIONS(3460), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3460), - [aux_sym_security_key_provider_token1] = ACTIONS(3460), - [aux_sym_send_env_token1] = ACTIONS(3460), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3460), - [aux_sym_server_alive_interval_token1] = ACTIONS(3460), - [aux_sym_session_type_token1] = ACTIONS(3460), - [aux_sym_set_env_token1] = ACTIONS(3460), - [aux_sym_stdin_null_token1] = ACTIONS(3460), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3460), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3460), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3460), - [aux_sym_syslog_facility_token1] = ACTIONS(3460), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3460), - [aux_sym_keep_alive_token1] = ACTIONS(3460), - [aux_sym_tag_token1] = ACTIONS(3460), - [aux_sym_tunnel_token1] = ACTIONS(3462), - [aux_sym_tunnel_device_token1] = ACTIONS(3460), - [aux_sym_update_host_keys_token1] = ACTIONS(3460), - [aux_sym_use_keychain_token1] = ACTIONS(3460), - [aux_sym_use_roaming_token1] = ACTIONS(3460), - [aux_sym_user_token1] = ACTIONS(3462), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3460), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3460), - [aux_sym_visual_host_key_token1] = ACTIONS(3460), - [aux_sym_xauth_location_token1] = ACTIONS(3460), + [ts_builtin_sym_end] = ACTIONS(1619), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1621), + [aux_sym_match_token1] = ACTIONS(1619), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1619), + [aux_sym_address_family_token1] = ACTIONS(1619), + [aux_sym_batch_mode_token1] = ACTIONS(1619), + [aux_sym_bind_address_token1] = ACTIONS(1619), + [aux_sym_bind_interface_token1] = ACTIONS(1619), + [aux_sym_canonical_domains_token1] = ACTIONS(1619), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1619), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1619), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1619), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1619), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1619), + [aux_sym_certificate_file_token1] = ACTIONS(1619), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1619), + [aux_sym_channel_timeout_token1] = ACTIONS(1619), + [aux_sym_check_host_ip_token1] = ACTIONS(1619), + [aux_sym_ciphers_token1] = ACTIONS(1619), + [aux_sym_cipher_token1] = ACTIONS(1621), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1619), + [aux_sym_compression_token1] = ACTIONS(1619), + [aux_sym_connection_attempts_token1] = ACTIONS(1619), + [aux_sym_connect_timeout_token1] = ACTIONS(1619), + [aux_sym_control_master_token1] = ACTIONS(1619), + [aux_sym_control_path_token1] = ACTIONS(1619), + [aux_sym_control_persist_token1] = ACTIONS(1619), + [aux_sym_dynamic_forward_token1] = ACTIONS(1619), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1619), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1619), + [aux_sym_escape_char_token1] = ACTIONS(1619), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1619), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1619), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1619), + [aux_sym_forward_agent_token1] = ACTIONS(1619), + [aux_sym_forward_x11_token1] = ACTIONS(1621), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1619), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1619), + [aux_sym_gateway_ports_token1] = ACTIONS(1619), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1619), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1619), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1619), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1619), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1619), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1619), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1619), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1619), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1619), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1619), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1619), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1619), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1619), + [aux_sym_host_key_alias_token1] = ACTIONS(1619), + [aux_sym_hostname_token1] = ACTIONS(1619), + [aux_sym_identities_only_token1] = ACTIONS(1619), + [aux_sym_identity_agent_token1] = ACTIONS(1619), + [aux_sym_identity_file_token1] = ACTIONS(1619), + [aux_sym_ignore_unknown_token1] = ACTIONS(1619), + [aux_sym_include_token1] = ACTIONS(1619), + [aux_sym_ip_qos_token1] = ACTIONS(1619), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1619), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1619), + [aux_sym_kex_algorithms_token1] = ACTIONS(1619), + [aux_sym_known_hosts_command_token1] = ACTIONS(1619), + [aux_sym_local_command_token1] = ACTIONS(1619), + [aux_sym_local_forward_token1] = ACTIONS(1619), + [aux_sym_log_level_token1] = ACTIONS(1619), + [aux_sym_log_verbose_token1] = ACTIONS(1619), + [aux_sym_macs_token1] = ACTIONS(1619), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1619), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1619), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1619), + [aux_sym_password_authentication_token1] = ACTIONS(1619), + [aux_sym_permit_local_command_token1] = ACTIONS(1619), + [aux_sym_permit_remote_open_token1] = ACTIONS(1619), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1619), + [aux_sym_port_token1] = ACTIONS(1619), + [aux_sym_preferred_authentications_token1] = ACTIONS(1619), + [aux_sym_protocol_token1] = ACTIONS(1619), + [aux_sym_proxy_command_token1] = ACTIONS(1619), + [aux_sym_proxy_jump_token1] = ACTIONS(1619), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1619), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1619), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1619), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1619), + [aux_sym_rekey_limit_token1] = ACTIONS(1619), + [aux_sym_remote_command_token1] = ACTIONS(1619), + [aux_sym_remote_forward_token1] = ACTIONS(1619), + [aux_sym_request_tty_token1] = ACTIONS(1619), + [aux_sym_required_rsa_size_token1] = ACTIONS(1619), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1619), + [aux_sym_security_key_provider_token1] = ACTIONS(1619), + [aux_sym_send_env_token1] = ACTIONS(1619), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1619), + [aux_sym_server_alive_interval_token1] = ACTIONS(1619), + [aux_sym_session_type_token1] = ACTIONS(1619), + [aux_sym_set_env_token1] = ACTIONS(1619), + [aux_sym_stdin_null_token1] = ACTIONS(1619), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1619), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1619), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1619), + [aux_sym_syslog_facility_token1] = ACTIONS(1619), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1619), + [aux_sym_keep_alive_token1] = ACTIONS(1619), + [aux_sym_tag_token1] = ACTIONS(1619), + [aux_sym_tunnel_token1] = ACTIONS(1621), + [aux_sym_tunnel_device_token1] = ACTIONS(1619), + [aux_sym_update_host_keys_token1] = ACTIONS(1619), + [aux_sym_use_keychain_token1] = ACTIONS(1619), + [aux_sym_use_roaming_token1] = ACTIONS(1619), + [aux_sym_user_token1] = ACTIONS(1621), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1619), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1619), + [aux_sym_visual_host_key_token1] = ACTIONS(1619), + [aux_sym_xauth_location_token1] = ACTIONS(1619), }, [613] = { - [ts_builtin_sym_end] = ACTIONS(3464), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3466), - [aux_sym_match_token1] = ACTIONS(3464), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3464), - [aux_sym_address_family_token1] = ACTIONS(3464), - [aux_sym_batch_mode_token1] = ACTIONS(3464), - [aux_sym_bind_address_token1] = ACTIONS(3464), - [aux_sym_bind_interface_token1] = ACTIONS(3464), - [aux_sym_canonical_domains_token1] = ACTIONS(3464), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3464), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3464), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3464), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3464), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3464), - [aux_sym_certificate_file_token1] = ACTIONS(3464), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3464), - [aux_sym_channel_timeout_token1] = ACTIONS(3464), - [aux_sym_check_host_ip_token1] = ACTIONS(3464), - [aux_sym_ciphers_token1] = ACTIONS(3464), - [aux_sym_cipher_token1] = ACTIONS(3466), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3464), - [aux_sym_compression_token1] = ACTIONS(3464), - [aux_sym_connection_attempts_token1] = ACTIONS(3464), - [aux_sym_connect_timeout_token1] = ACTIONS(3464), - [aux_sym_control_master_token1] = ACTIONS(3464), - [aux_sym_control_path_token1] = ACTIONS(3464), - [aux_sym_control_persist_token1] = ACTIONS(3464), - [aux_sym_dynamic_forward_token1] = ACTIONS(3464), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3464), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3464), - [aux_sym_escape_char_token1] = ACTIONS(3464), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3464), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3464), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3464), - [aux_sym_forward_agent_token1] = ACTIONS(3464), - [aux_sym_forward_x11_token1] = ACTIONS(3466), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3464), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3464), - [aux_sym_gateway_ports_token1] = ACTIONS(3464), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3464), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3464), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3464), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3464), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3464), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3464), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3464), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3464), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3464), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3464), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3464), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3464), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3464), - [aux_sym_host_key_alias_token1] = ACTIONS(3464), - [aux_sym_hostname_token1] = ACTIONS(3464), - [aux_sym_identities_only_token1] = ACTIONS(3464), - [aux_sym_identity_agent_token1] = ACTIONS(3464), - [aux_sym_identity_file_token1] = ACTIONS(3464), - [aux_sym_ignore_unknown_token1] = ACTIONS(3464), - [aux_sym_include_token1] = ACTIONS(3464), - [aux_sym_ip_qos_token1] = ACTIONS(3464), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3464), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3464), - [aux_sym_kex_algorithms_token1] = ACTIONS(3464), - [aux_sym_known_hosts_command_token1] = ACTIONS(3464), - [aux_sym_local_command_token1] = ACTIONS(3464), - [aux_sym_local_forward_token1] = ACTIONS(3464), - [aux_sym_log_level_token1] = ACTIONS(3464), - [aux_sym_log_verbose_token1] = ACTIONS(3464), - [aux_sym_macs_token1] = ACTIONS(3464), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3464), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3464), - [aux_sym_password_authentication_token1] = ACTIONS(3464), - [aux_sym_permit_local_command_token1] = ACTIONS(3464), - [aux_sym_permit_remote_open_token1] = ACTIONS(3464), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3464), - [aux_sym_port_token1] = ACTIONS(3464), - [aux_sym_preferred_authentications_token1] = ACTIONS(3464), - [aux_sym_protocol_token1] = ACTIONS(3464), - [aux_sym_proxy_command_token1] = ACTIONS(3464), - [aux_sym_proxy_jump_token1] = ACTIONS(3464), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3464), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3464), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3464), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3464), - [aux_sym_rekey_limit_token1] = ACTIONS(3464), - [aux_sym_remote_command_token1] = ACTIONS(3464), - [aux_sym_remote_forward_token1] = ACTIONS(3464), - [aux_sym_request_tty_token1] = ACTIONS(3464), - [aux_sym_required_rsa_size_token1] = ACTIONS(3464), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3464), - [aux_sym_security_key_provider_token1] = ACTIONS(3464), - [aux_sym_send_env_token1] = ACTIONS(3464), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3464), - [aux_sym_server_alive_interval_token1] = ACTIONS(3464), - [aux_sym_session_type_token1] = ACTIONS(3464), - [aux_sym_set_env_token1] = ACTIONS(3464), - [aux_sym_stdin_null_token1] = ACTIONS(3464), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3464), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3464), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3464), - [aux_sym_syslog_facility_token1] = ACTIONS(3464), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3464), - [aux_sym_keep_alive_token1] = ACTIONS(3464), - [aux_sym_tag_token1] = ACTIONS(3464), - [aux_sym_tunnel_token1] = ACTIONS(3466), - [aux_sym_tunnel_device_token1] = ACTIONS(3464), - [aux_sym_update_host_keys_token1] = ACTIONS(3464), - [aux_sym_use_keychain_token1] = ACTIONS(3464), - [aux_sym_use_roaming_token1] = ACTIONS(3464), - [aux_sym_user_token1] = ACTIONS(3466), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3464), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3464), - [aux_sym_visual_host_key_token1] = ACTIONS(3464), - [aux_sym_xauth_location_token1] = ACTIONS(3464), + [ts_builtin_sym_end] = ACTIONS(1319), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1321), + [aux_sym_match_token1] = ACTIONS(1319), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1319), + [aux_sym_address_family_token1] = ACTIONS(1319), + [aux_sym_batch_mode_token1] = ACTIONS(1319), + [aux_sym_bind_address_token1] = ACTIONS(1319), + [aux_sym_bind_interface_token1] = ACTIONS(1319), + [aux_sym_canonical_domains_token1] = ACTIONS(1319), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1319), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1319), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1319), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1319), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1319), + [aux_sym_certificate_file_token1] = ACTIONS(1319), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1319), + [aux_sym_channel_timeout_token1] = ACTIONS(1319), + [aux_sym_check_host_ip_token1] = ACTIONS(1319), + [aux_sym_ciphers_token1] = ACTIONS(1319), + [aux_sym_cipher_token1] = ACTIONS(1321), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1319), + [aux_sym_compression_token1] = ACTIONS(1319), + [aux_sym_connection_attempts_token1] = ACTIONS(1319), + [aux_sym_connect_timeout_token1] = ACTIONS(1319), + [aux_sym_control_master_token1] = ACTIONS(1319), + [aux_sym_control_path_token1] = ACTIONS(1319), + [aux_sym_control_persist_token1] = ACTIONS(1319), + [aux_sym_dynamic_forward_token1] = ACTIONS(1319), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1319), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1319), + [aux_sym_escape_char_token1] = ACTIONS(1319), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1319), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1319), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1319), + [aux_sym_forward_agent_token1] = ACTIONS(1319), + [aux_sym_forward_x11_token1] = ACTIONS(1321), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1319), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1319), + [aux_sym_gateway_ports_token1] = ACTIONS(1319), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1319), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1319), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1319), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1319), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1319), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1319), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1319), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1319), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1319), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1319), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1319), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1319), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1319), + [aux_sym_host_key_alias_token1] = ACTIONS(1319), + [aux_sym_hostname_token1] = ACTIONS(1319), + [aux_sym_identities_only_token1] = ACTIONS(1319), + [aux_sym_identity_agent_token1] = ACTIONS(1319), + [aux_sym_identity_file_token1] = ACTIONS(1319), + [aux_sym_ignore_unknown_token1] = ACTIONS(1319), + [aux_sym_include_token1] = ACTIONS(1319), + [aux_sym_ip_qos_token1] = ACTIONS(1319), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1319), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1319), + [aux_sym_kex_algorithms_token1] = ACTIONS(1319), + [aux_sym_known_hosts_command_token1] = ACTIONS(1319), + [aux_sym_local_command_token1] = ACTIONS(1319), + [aux_sym_local_forward_token1] = ACTIONS(1319), + [aux_sym_log_level_token1] = ACTIONS(1319), + [aux_sym_log_verbose_token1] = ACTIONS(1319), + [aux_sym_macs_token1] = ACTIONS(1319), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1319), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1319), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1319), + [aux_sym_password_authentication_token1] = ACTIONS(1319), + [aux_sym_permit_local_command_token1] = ACTIONS(1319), + [aux_sym_permit_remote_open_token1] = ACTIONS(1319), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1319), + [aux_sym_port_token1] = ACTIONS(1319), + [aux_sym_preferred_authentications_token1] = ACTIONS(1319), + [aux_sym_protocol_token1] = ACTIONS(1319), + [aux_sym_proxy_command_token1] = ACTIONS(1319), + [aux_sym_proxy_jump_token1] = ACTIONS(1319), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1319), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1319), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1319), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1319), + [aux_sym_rekey_limit_token1] = ACTIONS(1319), + [aux_sym_remote_command_token1] = ACTIONS(1319), + [aux_sym_remote_forward_token1] = ACTIONS(1319), + [aux_sym_request_tty_token1] = ACTIONS(1319), + [aux_sym_required_rsa_size_token1] = ACTIONS(1319), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1319), + [aux_sym_security_key_provider_token1] = ACTIONS(1319), + [aux_sym_send_env_token1] = ACTIONS(1319), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1319), + [aux_sym_server_alive_interval_token1] = ACTIONS(1319), + [aux_sym_session_type_token1] = ACTIONS(1319), + [aux_sym_set_env_token1] = ACTIONS(1319), + [aux_sym_stdin_null_token1] = ACTIONS(1319), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1319), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1319), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1319), + [aux_sym_syslog_facility_token1] = ACTIONS(1319), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1319), + [aux_sym_keep_alive_token1] = ACTIONS(1319), + [aux_sym_tag_token1] = ACTIONS(1319), + [aux_sym_tunnel_token1] = ACTIONS(1321), + [aux_sym_tunnel_device_token1] = ACTIONS(1319), + [aux_sym_update_host_keys_token1] = ACTIONS(1319), + [aux_sym_use_keychain_token1] = ACTIONS(1319), + [aux_sym_use_roaming_token1] = ACTIONS(1319), + [aux_sym_user_token1] = ACTIONS(1321), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1319), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1319), + [aux_sym_visual_host_key_token1] = ACTIONS(1319), + [aux_sym_xauth_location_token1] = ACTIONS(1319), }, [614] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1538), - [aux_sym_match_token1] = ACTIONS(1536), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1536), - [aux_sym_address_family_token1] = ACTIONS(1536), - [aux_sym_batch_mode_token1] = ACTIONS(1536), - [aux_sym_bind_address_token1] = ACTIONS(1536), - [aux_sym_bind_interface_token1] = ACTIONS(1536), - [aux_sym_canonical_domains_token1] = ACTIONS(1536), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1536), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1536), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1536), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1536), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1536), - [aux_sym_certificate_file_token1] = ACTIONS(1536), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1536), - [aux_sym_channel_timeout_token1] = ACTIONS(1536), - [aux_sym_check_host_ip_token1] = ACTIONS(1536), - [aux_sym_ciphers_token1] = ACTIONS(1536), - [aux_sym_cipher_token1] = ACTIONS(1538), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1536), - [aux_sym_compression_token1] = ACTIONS(1536), - [aux_sym_connection_attempts_token1] = ACTIONS(1536), - [aux_sym_connect_timeout_token1] = ACTIONS(1536), - [aux_sym_control_master_token1] = ACTIONS(1536), - [aux_sym_control_path_token1] = ACTIONS(1536), - [aux_sym_control_persist_token1] = ACTIONS(1536), - [aux_sym_dynamic_forward_token1] = ACTIONS(1536), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1536), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1536), - [aux_sym_escape_char_token1] = ACTIONS(1536), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1536), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1536), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1536), - [aux_sym_forward_agent_token1] = ACTIONS(1536), - [aux_sym_forward_x11_token1] = ACTIONS(1538), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1536), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1536), - [aux_sym_gateway_ports_token1] = ACTIONS(1536), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1536), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1536), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1536), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1536), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1536), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1536), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1536), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1536), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1536), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1536), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1536), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1536), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1536), - [aux_sym_host_key_alias_token1] = ACTIONS(1536), - [aux_sym_hostname_token1] = ACTIONS(1536), - [aux_sym_identities_only_token1] = ACTIONS(1536), - [aux_sym_identity_agent_token1] = ACTIONS(1536), - [aux_sym_identity_file_token1] = ACTIONS(1536), - [aux_sym_ignore_unknown_token1] = ACTIONS(1536), - [aux_sym_include_token1] = ACTIONS(1536), - [aux_sym_ip_qos_token1] = ACTIONS(1536), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1536), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1536), - [aux_sym_kex_algorithms_token1] = ACTIONS(1536), - [aux_sym_known_hosts_command_token1] = ACTIONS(1536), - [aux_sym_local_command_token1] = ACTIONS(1536), - [aux_sym_local_forward_token1] = ACTIONS(1536), - [aux_sym_log_level_token1] = ACTIONS(1536), - [aux_sym_log_verbose_token1] = ACTIONS(1536), - [aux_sym_macs_token1] = ACTIONS(1536), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1536), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1536), - [aux_sym_password_authentication_token1] = ACTIONS(1536), - [aux_sym_permit_local_command_token1] = ACTIONS(1536), - [aux_sym_permit_remote_open_token1] = ACTIONS(1536), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1536), - [aux_sym_port_token1] = ACTIONS(1536), - [aux_sym_preferred_authentications_token1] = ACTIONS(1536), - [aux_sym_protocol_token1] = ACTIONS(1536), - [aux_sym_proxy_command_token1] = ACTIONS(1536), - [aux_sym_proxy_jump_token1] = ACTIONS(1536), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1536), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1536), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1536), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1536), - [aux_sym_rekey_limit_token1] = ACTIONS(1536), - [aux_sym_remote_command_token1] = ACTIONS(1536), - [aux_sym_remote_forward_token1] = ACTIONS(1536), - [aux_sym_request_tty_token1] = ACTIONS(1536), - [aux_sym_required_rsa_size_token1] = ACTIONS(1536), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1536), - [aux_sym_security_key_provider_token1] = ACTIONS(1536), - [aux_sym_send_env_token1] = ACTIONS(1536), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1536), - [aux_sym_server_alive_interval_token1] = ACTIONS(1536), - [aux_sym_session_type_token1] = ACTIONS(1536), - [aux_sym_set_env_token1] = ACTIONS(1536), - [aux_sym_stdin_null_token1] = ACTIONS(1536), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1536), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1536), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1536), - [aux_sym_syslog_facility_token1] = ACTIONS(1536), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1536), - [aux_sym_keep_alive_token1] = ACTIONS(1536), - [aux_sym_tag_token1] = ACTIONS(1536), - [aux_sym_tunnel_token1] = ACTIONS(1538), - [aux_sym_tunnel_device_token1] = ACTIONS(1536), - [aux_sym_update_host_keys_token1] = ACTIONS(1536), - [aux_sym_use_keychain_token1] = ACTIONS(1536), - [aux_sym_use_roaming_token1] = ACTIONS(1536), - [aux_sym_user_token1] = ACTIONS(1538), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1536), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1536), - [aux_sym_visual_host_key_token1] = ACTIONS(1536), - [aux_sym_xauth_location_token1] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(839), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(841), + [aux_sym_match_token1] = ACTIONS(839), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(839), + [aux_sym_address_family_token1] = ACTIONS(839), + [aux_sym_batch_mode_token1] = ACTIONS(839), + [aux_sym_bind_address_token1] = ACTIONS(839), + [aux_sym_bind_interface_token1] = ACTIONS(839), + [aux_sym_canonical_domains_token1] = ACTIONS(839), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(839), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(839), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(839), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(839), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(839), + [aux_sym_certificate_file_token1] = ACTIONS(839), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(839), + [aux_sym_channel_timeout_token1] = ACTIONS(839), + [aux_sym_check_host_ip_token1] = ACTIONS(839), + [aux_sym_ciphers_token1] = ACTIONS(839), + [aux_sym_cipher_token1] = ACTIONS(841), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(839), + [aux_sym_compression_token1] = ACTIONS(839), + [aux_sym_connection_attempts_token1] = ACTIONS(839), + [aux_sym_connect_timeout_token1] = ACTIONS(839), + [aux_sym_control_master_token1] = ACTIONS(839), + [aux_sym_control_path_token1] = ACTIONS(839), + [aux_sym_control_persist_token1] = ACTIONS(839), + [aux_sym_dynamic_forward_token1] = ACTIONS(839), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(839), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(839), + [aux_sym_escape_char_token1] = ACTIONS(839), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(839), + [aux_sym_fingerprint_hash_token1] = ACTIONS(839), + [aux_sym_fork_after_authentication_token1] = ACTIONS(839), + [aux_sym_forward_agent_token1] = ACTIONS(839), + [aux_sym_forward_x11_token1] = ACTIONS(841), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(839), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(839), + [aux_sym_gateway_ports_token1] = ACTIONS(839), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(839), + [aux_sym_gssapi_authentication_token1] = ACTIONS(839), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(839), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(839), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(839), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(839), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(839), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(839), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(839), + [aux_sym_hash_known_hosts_token1] = ACTIONS(839), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(839), + [aux_sym_hostbased_authentication_token1] = ACTIONS(839), + [aux_sym_host_key_algorithms_token1] = ACTIONS(839), + [aux_sym_host_key_alias_token1] = ACTIONS(839), + [aux_sym_hostname_token1] = ACTIONS(839), + [aux_sym_identities_only_token1] = ACTIONS(839), + [aux_sym_identity_agent_token1] = ACTIONS(839), + [aux_sym_identity_file_token1] = ACTIONS(839), + [aux_sym_ignore_unknown_token1] = ACTIONS(839), + [aux_sym_include_token1] = ACTIONS(839), + [aux_sym_ip_qos_token1] = ACTIONS(839), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(839), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(839), + [aux_sym_kex_algorithms_token1] = ACTIONS(839), + [aux_sym_known_hosts_command_token1] = ACTIONS(839), + [aux_sym_local_command_token1] = ACTIONS(839), + [aux_sym_local_forward_token1] = ACTIONS(839), + [aux_sym_log_level_token1] = ACTIONS(839), + [aux_sym_log_verbose_token1] = ACTIONS(839), + [aux_sym_macs_token1] = ACTIONS(839), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(839), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(839), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(839), + [aux_sym_password_authentication_token1] = ACTIONS(839), + [aux_sym_permit_local_command_token1] = ACTIONS(839), + [aux_sym_permit_remote_open_token1] = ACTIONS(839), + [aux_sym_pkcs11_provider_token1] = ACTIONS(839), + [aux_sym_port_token1] = ACTIONS(839), + [aux_sym_preferred_authentications_token1] = ACTIONS(839), + [aux_sym_protocol_token1] = ACTIONS(839), + [aux_sym_proxy_command_token1] = ACTIONS(839), + [aux_sym_proxy_jump_token1] = ACTIONS(839), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(839), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(839), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(839), + [aux_sym_pubkey_authentication_token1] = ACTIONS(839), + [aux_sym_rekey_limit_token1] = ACTIONS(839), + [aux_sym_remote_command_token1] = ACTIONS(839), + [aux_sym_remote_forward_token1] = ACTIONS(839), + [aux_sym_request_tty_token1] = ACTIONS(839), + [aux_sym_required_rsa_size_token1] = ACTIONS(839), + [aux_sym_revoked_host_keys_token1] = ACTIONS(839), + [aux_sym_security_key_provider_token1] = ACTIONS(839), + [aux_sym_send_env_token1] = ACTIONS(839), + [aux_sym_server_alive_count_max_token1] = ACTIONS(839), + [aux_sym_server_alive_interval_token1] = ACTIONS(839), + [aux_sym_session_type_token1] = ACTIONS(839), + [aux_sym_set_env_token1] = ACTIONS(839), + [aux_sym_stdin_null_token1] = ACTIONS(839), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(839), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(839), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(839), + [aux_sym_syslog_facility_token1] = ACTIONS(839), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(839), + [aux_sym_keep_alive_token1] = ACTIONS(839), + [aux_sym_tag_token1] = ACTIONS(839), + [aux_sym_tunnel_token1] = ACTIONS(841), + [aux_sym_tunnel_device_token1] = ACTIONS(839), + [aux_sym_update_host_keys_token1] = ACTIONS(839), + [aux_sym_use_keychain_token1] = ACTIONS(839), + [aux_sym_use_roaming_token1] = ACTIONS(839), + [aux_sym_user_token1] = ACTIONS(841), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(839), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(839), + [aux_sym_visual_host_key_token1] = ACTIONS(839), + [aux_sym_xauth_location_token1] = ACTIONS(839), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(1176), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1178), - [aux_sym_match_token1] = ACTIONS(1176), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1176), - [aux_sym_address_family_token1] = ACTIONS(1176), - [aux_sym_batch_mode_token1] = ACTIONS(1176), - [aux_sym_bind_address_token1] = ACTIONS(1176), - [aux_sym_bind_interface_token1] = ACTIONS(1176), - [aux_sym_canonical_domains_token1] = ACTIONS(1176), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1176), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1176), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1176), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1176), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1176), - [aux_sym_certificate_file_token1] = ACTIONS(1176), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1176), - [aux_sym_channel_timeout_token1] = ACTIONS(1176), - [aux_sym_check_host_ip_token1] = ACTIONS(1176), - [aux_sym_ciphers_token1] = ACTIONS(1176), - [aux_sym_cipher_token1] = ACTIONS(1178), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1176), - [aux_sym_compression_token1] = ACTIONS(1176), - [aux_sym_connection_attempts_token1] = ACTIONS(1176), - [aux_sym_connect_timeout_token1] = ACTIONS(1176), - [aux_sym_control_master_token1] = ACTIONS(1176), - [aux_sym_control_path_token1] = ACTIONS(1176), - [aux_sym_control_persist_token1] = ACTIONS(1176), - [aux_sym_dynamic_forward_token1] = ACTIONS(1176), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1176), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1176), - [aux_sym_escape_char_token1] = ACTIONS(1176), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1176), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1176), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1176), - [aux_sym_forward_agent_token1] = ACTIONS(1176), - [aux_sym_forward_x11_token1] = ACTIONS(1178), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1176), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1176), - [aux_sym_gateway_ports_token1] = ACTIONS(1176), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1176), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1176), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1176), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1176), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1176), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1176), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1176), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1176), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1176), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1176), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1176), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1176), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1176), - [aux_sym_host_key_alias_token1] = ACTIONS(1176), - [aux_sym_hostname_token1] = ACTIONS(1176), - [aux_sym_identities_only_token1] = ACTIONS(1176), - [aux_sym_identity_agent_token1] = ACTIONS(1176), - [aux_sym_identity_file_token1] = ACTIONS(1176), - [aux_sym_ignore_unknown_token1] = ACTIONS(1176), - [aux_sym_include_token1] = ACTIONS(1176), - [aux_sym_ip_qos_token1] = ACTIONS(1176), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1176), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1176), - [aux_sym_kex_algorithms_token1] = ACTIONS(1176), - [aux_sym_known_hosts_command_token1] = ACTIONS(1176), - [aux_sym_local_command_token1] = ACTIONS(1176), - [aux_sym_local_forward_token1] = ACTIONS(1176), - [aux_sym_log_level_token1] = ACTIONS(1176), - [aux_sym_log_verbose_token1] = ACTIONS(1176), - [aux_sym_macs_token1] = ACTIONS(1176), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1176), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1176), - [aux_sym_password_authentication_token1] = ACTIONS(1176), - [aux_sym_permit_local_command_token1] = ACTIONS(1176), - [aux_sym_permit_remote_open_token1] = ACTIONS(1176), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1176), - [aux_sym_port_token1] = ACTIONS(1176), - [aux_sym_preferred_authentications_token1] = ACTIONS(1176), - [aux_sym_protocol_token1] = ACTIONS(1176), - [aux_sym_proxy_command_token1] = ACTIONS(1176), - [aux_sym_proxy_jump_token1] = ACTIONS(1176), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1176), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1176), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1176), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1176), - [aux_sym_rekey_limit_token1] = ACTIONS(1176), - [aux_sym_remote_command_token1] = ACTIONS(1176), - [aux_sym_remote_forward_token1] = ACTIONS(1176), - [aux_sym_request_tty_token1] = ACTIONS(1176), - [aux_sym_required_rsa_size_token1] = ACTIONS(1176), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1176), - [aux_sym_security_key_provider_token1] = ACTIONS(1176), - [aux_sym_send_env_token1] = ACTIONS(1176), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1176), - [aux_sym_server_alive_interval_token1] = ACTIONS(1176), - [aux_sym_session_type_token1] = ACTIONS(1176), - [aux_sym_set_env_token1] = ACTIONS(1176), - [aux_sym_stdin_null_token1] = ACTIONS(1176), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1176), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1176), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1176), - [aux_sym_syslog_facility_token1] = ACTIONS(1176), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1176), - [aux_sym_keep_alive_token1] = ACTIONS(1176), - [aux_sym_tag_token1] = ACTIONS(1176), - [aux_sym_tunnel_token1] = ACTIONS(1178), - [aux_sym_tunnel_device_token1] = ACTIONS(1176), - [aux_sym_update_host_keys_token1] = ACTIONS(1176), - [aux_sym_use_keychain_token1] = ACTIONS(1176), - [aux_sym_use_roaming_token1] = ACTIONS(1176), - [aux_sym_user_token1] = ACTIONS(1178), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1176), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1176), - [aux_sym_visual_host_key_token1] = ACTIONS(1176), - [aux_sym_xauth_location_token1] = ACTIONS(1176), + [ts_builtin_sym_end] = ACTIONS(1325), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1327), + [aux_sym_match_token1] = ACTIONS(1325), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1325), + [aux_sym_address_family_token1] = ACTIONS(1325), + [aux_sym_batch_mode_token1] = ACTIONS(1325), + [aux_sym_bind_address_token1] = ACTIONS(1325), + [aux_sym_bind_interface_token1] = ACTIONS(1325), + [aux_sym_canonical_domains_token1] = ACTIONS(1325), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1325), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1325), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1325), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1325), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1325), + [aux_sym_certificate_file_token1] = ACTIONS(1325), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1325), + [aux_sym_channel_timeout_token1] = ACTIONS(1325), + [aux_sym_check_host_ip_token1] = ACTIONS(1325), + [aux_sym_ciphers_token1] = ACTIONS(1325), + [aux_sym_cipher_token1] = ACTIONS(1327), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1325), + [aux_sym_compression_token1] = ACTIONS(1325), + [aux_sym_connection_attempts_token1] = ACTIONS(1325), + [aux_sym_connect_timeout_token1] = ACTIONS(1325), + [aux_sym_control_master_token1] = ACTIONS(1325), + [aux_sym_control_path_token1] = ACTIONS(1325), + [aux_sym_control_persist_token1] = ACTIONS(1325), + [aux_sym_dynamic_forward_token1] = ACTIONS(1325), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1325), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1325), + [aux_sym_escape_char_token1] = ACTIONS(1325), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1325), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1325), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1325), + [aux_sym_forward_agent_token1] = ACTIONS(1325), + [aux_sym_forward_x11_token1] = ACTIONS(1327), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1325), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1325), + [aux_sym_gateway_ports_token1] = ACTIONS(1325), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1325), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1325), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1325), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1325), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1325), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1325), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1325), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1325), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1325), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1325), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1325), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1325), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1325), + [aux_sym_host_key_alias_token1] = ACTIONS(1325), + [aux_sym_hostname_token1] = ACTIONS(1325), + [aux_sym_identities_only_token1] = ACTIONS(1325), + [aux_sym_identity_agent_token1] = ACTIONS(1325), + [aux_sym_identity_file_token1] = ACTIONS(1325), + [aux_sym_ignore_unknown_token1] = ACTIONS(1325), + [aux_sym_include_token1] = ACTIONS(1325), + [aux_sym_ip_qos_token1] = ACTIONS(1325), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1325), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1325), + [aux_sym_kex_algorithms_token1] = ACTIONS(1325), + [aux_sym_known_hosts_command_token1] = ACTIONS(1325), + [aux_sym_local_command_token1] = ACTIONS(1325), + [aux_sym_local_forward_token1] = ACTIONS(1325), + [aux_sym_log_level_token1] = ACTIONS(1325), + [aux_sym_log_verbose_token1] = ACTIONS(1325), + [aux_sym_macs_token1] = ACTIONS(1325), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1325), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1325), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1325), + [aux_sym_password_authentication_token1] = ACTIONS(1325), + [aux_sym_permit_local_command_token1] = ACTIONS(1325), + [aux_sym_permit_remote_open_token1] = ACTIONS(1325), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1325), + [aux_sym_port_token1] = ACTIONS(1325), + [aux_sym_preferred_authentications_token1] = ACTIONS(1325), + [aux_sym_protocol_token1] = ACTIONS(1325), + [aux_sym_proxy_command_token1] = ACTIONS(1325), + [aux_sym_proxy_jump_token1] = ACTIONS(1325), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1325), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1325), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1325), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1325), + [aux_sym_rekey_limit_token1] = ACTIONS(1325), + [aux_sym_remote_command_token1] = ACTIONS(1325), + [aux_sym_remote_forward_token1] = ACTIONS(1325), + [aux_sym_request_tty_token1] = ACTIONS(1325), + [aux_sym_required_rsa_size_token1] = ACTIONS(1325), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1325), + [aux_sym_security_key_provider_token1] = ACTIONS(1325), + [aux_sym_send_env_token1] = ACTIONS(1325), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1325), + [aux_sym_server_alive_interval_token1] = ACTIONS(1325), + [aux_sym_session_type_token1] = ACTIONS(1325), + [aux_sym_set_env_token1] = ACTIONS(1325), + [aux_sym_stdin_null_token1] = ACTIONS(1325), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1325), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1325), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1325), + [aux_sym_syslog_facility_token1] = ACTIONS(1325), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1325), + [aux_sym_keep_alive_token1] = ACTIONS(1325), + [aux_sym_tag_token1] = ACTIONS(1325), + [aux_sym_tunnel_token1] = ACTIONS(1327), + [aux_sym_tunnel_device_token1] = ACTIONS(1325), + [aux_sym_update_host_keys_token1] = ACTIONS(1325), + [aux_sym_use_keychain_token1] = ACTIONS(1325), + [aux_sym_use_roaming_token1] = ACTIONS(1325), + [aux_sym_user_token1] = ACTIONS(1327), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1325), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1325), + [aux_sym_visual_host_key_token1] = ACTIONS(1325), + [aux_sym_xauth_location_token1] = ACTIONS(1325), }, [616] = { - [ts_builtin_sym_end] = ACTIONS(3468), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3470), - [aux_sym_match_token1] = ACTIONS(3468), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3468), - [aux_sym_address_family_token1] = ACTIONS(3468), - [aux_sym_batch_mode_token1] = ACTIONS(3468), - [aux_sym_bind_address_token1] = ACTIONS(3468), - [aux_sym_bind_interface_token1] = ACTIONS(3468), - [aux_sym_canonical_domains_token1] = ACTIONS(3468), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3468), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3468), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3468), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3468), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3468), - [aux_sym_certificate_file_token1] = ACTIONS(3468), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3468), - [aux_sym_channel_timeout_token1] = ACTIONS(3468), - [aux_sym_check_host_ip_token1] = ACTIONS(3468), - [aux_sym_ciphers_token1] = ACTIONS(3468), - [aux_sym_cipher_token1] = ACTIONS(3470), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3468), - [aux_sym_compression_token1] = ACTIONS(3468), - [aux_sym_connection_attempts_token1] = ACTIONS(3468), - [aux_sym_connect_timeout_token1] = ACTIONS(3468), - [aux_sym_control_master_token1] = ACTIONS(3468), - [aux_sym_control_path_token1] = ACTIONS(3468), - [aux_sym_control_persist_token1] = ACTIONS(3468), - [aux_sym_dynamic_forward_token1] = ACTIONS(3468), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3468), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3468), - [aux_sym_escape_char_token1] = ACTIONS(3468), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3468), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3468), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3468), - [aux_sym_forward_agent_token1] = ACTIONS(3468), - [aux_sym_forward_x11_token1] = ACTIONS(3470), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3468), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3468), - [aux_sym_gateway_ports_token1] = ACTIONS(3468), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3468), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3468), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3468), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3468), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3468), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3468), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3468), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3468), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3468), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3468), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3468), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3468), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3468), - [aux_sym_host_key_alias_token1] = ACTIONS(3468), - [aux_sym_hostname_token1] = ACTIONS(3468), - [aux_sym_identities_only_token1] = ACTIONS(3468), - [aux_sym_identity_agent_token1] = ACTIONS(3468), - [aux_sym_identity_file_token1] = ACTIONS(3468), - [aux_sym_ignore_unknown_token1] = ACTIONS(3468), - [aux_sym_include_token1] = ACTIONS(3468), - [aux_sym_ip_qos_token1] = ACTIONS(3468), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3468), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3468), - [aux_sym_kex_algorithms_token1] = ACTIONS(3468), - [aux_sym_known_hosts_command_token1] = ACTIONS(3468), - [aux_sym_local_command_token1] = ACTIONS(3468), - [aux_sym_local_forward_token1] = ACTIONS(3468), - [aux_sym_log_level_token1] = ACTIONS(3468), - [aux_sym_log_verbose_token1] = ACTIONS(3468), - [aux_sym_macs_token1] = ACTIONS(3468), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3468), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3468), - [aux_sym_password_authentication_token1] = ACTIONS(3468), - [aux_sym_permit_local_command_token1] = ACTIONS(3468), - [aux_sym_permit_remote_open_token1] = ACTIONS(3468), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3468), - [aux_sym_port_token1] = ACTIONS(3468), - [aux_sym_preferred_authentications_token1] = ACTIONS(3468), - [aux_sym_protocol_token1] = ACTIONS(3468), - [aux_sym_proxy_command_token1] = ACTIONS(3468), - [aux_sym_proxy_jump_token1] = ACTIONS(3468), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3468), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3468), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3468), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3468), - [aux_sym_rekey_limit_token1] = ACTIONS(3468), - [aux_sym_remote_command_token1] = ACTIONS(3468), - [aux_sym_remote_forward_token1] = ACTIONS(3468), - [aux_sym_request_tty_token1] = ACTIONS(3468), - [aux_sym_required_rsa_size_token1] = ACTIONS(3468), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3468), - [aux_sym_security_key_provider_token1] = ACTIONS(3468), - [aux_sym_send_env_token1] = ACTIONS(3468), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3468), - [aux_sym_server_alive_interval_token1] = ACTIONS(3468), - [aux_sym_session_type_token1] = ACTIONS(3468), - [aux_sym_set_env_token1] = ACTIONS(3468), - [aux_sym_stdin_null_token1] = ACTIONS(3468), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3468), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3468), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3468), - [aux_sym_syslog_facility_token1] = ACTIONS(3468), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3468), - [aux_sym_keep_alive_token1] = ACTIONS(3468), - [aux_sym_tag_token1] = ACTIONS(3468), - [aux_sym_tunnel_token1] = ACTIONS(3470), - [aux_sym_tunnel_device_token1] = ACTIONS(3468), - [aux_sym_update_host_keys_token1] = ACTIONS(3468), - [aux_sym_use_keychain_token1] = ACTIONS(3468), - [aux_sym_use_roaming_token1] = ACTIONS(3468), - [aux_sym_user_token1] = ACTIONS(3470), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3468), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3468), - [aux_sym_visual_host_key_token1] = ACTIONS(3468), - [aux_sym_xauth_location_token1] = ACTIONS(3468), + [ts_builtin_sym_end] = ACTIONS(1169), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1171), + [aux_sym_match_token1] = ACTIONS(1169), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1169), + [aux_sym_address_family_token1] = ACTIONS(1169), + [aux_sym_batch_mode_token1] = ACTIONS(1169), + [aux_sym_bind_address_token1] = ACTIONS(1169), + [aux_sym_bind_interface_token1] = ACTIONS(1169), + [aux_sym_canonical_domains_token1] = ACTIONS(1169), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1169), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1169), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1169), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1169), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1169), + [aux_sym_certificate_file_token1] = ACTIONS(1169), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1169), + [aux_sym_channel_timeout_token1] = ACTIONS(1169), + [aux_sym_check_host_ip_token1] = ACTIONS(1169), + [aux_sym_ciphers_token1] = ACTIONS(1169), + [aux_sym_cipher_token1] = ACTIONS(1171), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1169), + [aux_sym_compression_token1] = ACTIONS(1169), + [aux_sym_connection_attempts_token1] = ACTIONS(1169), + [aux_sym_connect_timeout_token1] = ACTIONS(1169), + [aux_sym_control_master_token1] = ACTIONS(1169), + [aux_sym_control_path_token1] = ACTIONS(1169), + [aux_sym_control_persist_token1] = ACTIONS(1169), + [aux_sym_dynamic_forward_token1] = ACTIONS(1169), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1169), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1169), + [aux_sym_escape_char_token1] = ACTIONS(1169), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1169), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1169), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1169), + [aux_sym_forward_agent_token1] = ACTIONS(1169), + [aux_sym_forward_x11_token1] = ACTIONS(1171), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1169), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1169), + [aux_sym_gateway_ports_token1] = ACTIONS(1169), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1169), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1169), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1169), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1169), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1169), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1169), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1169), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1169), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1169), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1169), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1169), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1169), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1169), + [aux_sym_host_key_alias_token1] = ACTIONS(1169), + [aux_sym_hostname_token1] = ACTIONS(1169), + [aux_sym_identities_only_token1] = ACTIONS(1169), + [aux_sym_identity_agent_token1] = ACTIONS(1169), + [aux_sym_identity_file_token1] = ACTIONS(1169), + [aux_sym_ignore_unknown_token1] = ACTIONS(1169), + [aux_sym_include_token1] = ACTIONS(1169), + [aux_sym_ip_qos_token1] = ACTIONS(1169), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1169), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1169), + [aux_sym_kex_algorithms_token1] = ACTIONS(1169), + [aux_sym_known_hosts_command_token1] = ACTIONS(1169), + [aux_sym_local_command_token1] = ACTIONS(1169), + [aux_sym_local_forward_token1] = ACTIONS(1169), + [aux_sym_log_level_token1] = ACTIONS(1169), + [aux_sym_log_verbose_token1] = ACTIONS(1169), + [aux_sym_macs_token1] = ACTIONS(1169), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1169), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1169), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1169), + [aux_sym_password_authentication_token1] = ACTIONS(1169), + [aux_sym_permit_local_command_token1] = ACTIONS(1169), + [aux_sym_permit_remote_open_token1] = ACTIONS(1169), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1169), + [aux_sym_port_token1] = ACTIONS(1169), + [aux_sym_preferred_authentications_token1] = ACTIONS(1169), + [aux_sym_protocol_token1] = ACTIONS(1169), + [aux_sym_proxy_command_token1] = ACTIONS(1169), + [aux_sym_proxy_jump_token1] = ACTIONS(1169), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1169), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1169), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1169), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1169), + [aux_sym_rekey_limit_token1] = ACTIONS(1169), + [aux_sym_remote_command_token1] = ACTIONS(1169), + [aux_sym_remote_forward_token1] = ACTIONS(1169), + [aux_sym_request_tty_token1] = ACTIONS(1169), + [aux_sym_required_rsa_size_token1] = ACTIONS(1169), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1169), + [aux_sym_security_key_provider_token1] = ACTIONS(1169), + [aux_sym_send_env_token1] = ACTIONS(1169), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1169), + [aux_sym_server_alive_interval_token1] = ACTIONS(1169), + [aux_sym_session_type_token1] = ACTIONS(1169), + [aux_sym_set_env_token1] = ACTIONS(1169), + [aux_sym_stdin_null_token1] = ACTIONS(1169), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1169), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1169), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1169), + [aux_sym_syslog_facility_token1] = ACTIONS(1169), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1169), + [aux_sym_keep_alive_token1] = ACTIONS(1169), + [aux_sym_tag_token1] = ACTIONS(1169), + [aux_sym_tunnel_token1] = ACTIONS(1171), + [aux_sym_tunnel_device_token1] = ACTIONS(1169), + [aux_sym_update_host_keys_token1] = ACTIONS(1169), + [aux_sym_use_keychain_token1] = ACTIONS(1169), + [aux_sym_use_roaming_token1] = ACTIONS(1169), + [aux_sym_user_token1] = ACTIONS(1171), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1169), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1169), + [aux_sym_visual_host_key_token1] = ACTIONS(1169), + [aux_sym_xauth_location_token1] = ACTIONS(1169), }, [617] = { - [ts_builtin_sym_end] = ACTIONS(3472), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3474), - [aux_sym_match_token1] = ACTIONS(3472), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3472), - [aux_sym_address_family_token1] = ACTIONS(3472), - [aux_sym_batch_mode_token1] = ACTIONS(3472), - [aux_sym_bind_address_token1] = ACTIONS(3472), - [aux_sym_bind_interface_token1] = ACTIONS(3472), - [aux_sym_canonical_domains_token1] = ACTIONS(3472), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3472), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3472), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3472), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3472), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3472), - [aux_sym_certificate_file_token1] = ACTIONS(3472), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3472), - [aux_sym_channel_timeout_token1] = ACTIONS(3472), - [aux_sym_check_host_ip_token1] = ACTIONS(3472), - [aux_sym_ciphers_token1] = ACTIONS(3472), - [aux_sym_cipher_token1] = ACTIONS(3474), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3472), - [aux_sym_compression_token1] = ACTIONS(3472), - [aux_sym_connection_attempts_token1] = ACTIONS(3472), - [aux_sym_connect_timeout_token1] = ACTIONS(3472), - [aux_sym_control_master_token1] = ACTIONS(3472), - [aux_sym_control_path_token1] = ACTIONS(3472), - [aux_sym_control_persist_token1] = ACTIONS(3472), - [aux_sym_dynamic_forward_token1] = ACTIONS(3472), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3472), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3472), - [aux_sym_escape_char_token1] = ACTIONS(3472), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3472), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3472), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3472), - [aux_sym_forward_agent_token1] = ACTIONS(3472), - [aux_sym_forward_x11_token1] = ACTIONS(3474), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3472), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3472), - [aux_sym_gateway_ports_token1] = ACTIONS(3472), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3472), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3472), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3472), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3472), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3472), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3472), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3472), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3472), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3472), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3472), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3472), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3472), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3472), - [aux_sym_host_key_alias_token1] = ACTIONS(3472), - [aux_sym_hostname_token1] = ACTIONS(3472), - [aux_sym_identities_only_token1] = ACTIONS(3472), - [aux_sym_identity_agent_token1] = ACTIONS(3472), - [aux_sym_identity_file_token1] = ACTIONS(3472), - [aux_sym_ignore_unknown_token1] = ACTIONS(3472), - [aux_sym_include_token1] = ACTIONS(3472), - [aux_sym_ip_qos_token1] = ACTIONS(3472), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3472), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3472), - [aux_sym_kex_algorithms_token1] = ACTIONS(3472), - [aux_sym_known_hosts_command_token1] = ACTIONS(3472), - [aux_sym_local_command_token1] = ACTIONS(3472), - [aux_sym_local_forward_token1] = ACTIONS(3472), - [aux_sym_log_level_token1] = ACTIONS(3472), - [aux_sym_log_verbose_token1] = ACTIONS(3472), - [aux_sym_macs_token1] = ACTIONS(3472), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3472), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3472), - [aux_sym_password_authentication_token1] = ACTIONS(3472), - [aux_sym_permit_local_command_token1] = ACTIONS(3472), - [aux_sym_permit_remote_open_token1] = ACTIONS(3472), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3472), - [aux_sym_port_token1] = ACTIONS(3472), - [aux_sym_preferred_authentications_token1] = ACTIONS(3472), - [aux_sym_protocol_token1] = ACTIONS(3472), - [aux_sym_proxy_command_token1] = ACTIONS(3472), - [aux_sym_proxy_jump_token1] = ACTIONS(3472), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3472), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3472), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3472), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3472), - [aux_sym_rekey_limit_token1] = ACTIONS(3472), - [aux_sym_remote_command_token1] = ACTIONS(3472), - [aux_sym_remote_forward_token1] = ACTIONS(3472), - [aux_sym_request_tty_token1] = ACTIONS(3472), - [aux_sym_required_rsa_size_token1] = ACTIONS(3472), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3472), - [aux_sym_security_key_provider_token1] = ACTIONS(3472), - [aux_sym_send_env_token1] = ACTIONS(3472), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3472), - [aux_sym_server_alive_interval_token1] = ACTIONS(3472), - [aux_sym_session_type_token1] = ACTIONS(3472), - [aux_sym_set_env_token1] = ACTIONS(3472), - [aux_sym_stdin_null_token1] = ACTIONS(3472), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3472), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3472), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3472), - [aux_sym_syslog_facility_token1] = ACTIONS(3472), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3472), - [aux_sym_keep_alive_token1] = ACTIONS(3472), - [aux_sym_tag_token1] = ACTIONS(3472), - [aux_sym_tunnel_token1] = ACTIONS(3474), - [aux_sym_tunnel_device_token1] = ACTIONS(3472), - [aux_sym_update_host_keys_token1] = ACTIONS(3472), - [aux_sym_use_keychain_token1] = ACTIONS(3472), - [aux_sym_use_roaming_token1] = ACTIONS(3472), - [aux_sym_user_token1] = ACTIONS(3474), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3472), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3472), - [aux_sym_visual_host_key_token1] = ACTIONS(3472), - [aux_sym_xauth_location_token1] = ACTIONS(3472), + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3473), + [aux_sym_match_token1] = ACTIONS(3471), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3471), + [aux_sym_address_family_token1] = ACTIONS(3471), + [aux_sym_batch_mode_token1] = ACTIONS(3471), + [aux_sym_bind_address_token1] = ACTIONS(3471), + [aux_sym_bind_interface_token1] = ACTIONS(3471), + [aux_sym_canonical_domains_token1] = ACTIONS(3471), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3471), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3471), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3471), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3471), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3471), + [aux_sym_certificate_file_token1] = ACTIONS(3471), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3471), + [aux_sym_channel_timeout_token1] = ACTIONS(3471), + [aux_sym_check_host_ip_token1] = ACTIONS(3471), + [aux_sym_ciphers_token1] = ACTIONS(3471), + [aux_sym_cipher_token1] = ACTIONS(3473), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3471), + [aux_sym_compression_token1] = ACTIONS(3471), + [aux_sym_connection_attempts_token1] = ACTIONS(3471), + [aux_sym_connect_timeout_token1] = ACTIONS(3471), + [aux_sym_control_master_token1] = ACTIONS(3471), + [aux_sym_control_path_token1] = ACTIONS(3471), + [aux_sym_control_persist_token1] = ACTIONS(3471), + [aux_sym_dynamic_forward_token1] = ACTIONS(3471), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3471), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3471), + [aux_sym_escape_char_token1] = ACTIONS(3471), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3471), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3471), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3471), + [aux_sym_forward_agent_token1] = ACTIONS(3471), + [aux_sym_forward_x11_token1] = ACTIONS(3473), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3471), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3471), + [aux_sym_gateway_ports_token1] = ACTIONS(3471), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3471), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3471), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3471), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3471), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3471), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3471), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3471), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3471), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3471), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3471), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3471), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3471), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3471), + [aux_sym_host_key_alias_token1] = ACTIONS(3471), + [aux_sym_hostname_token1] = ACTIONS(3471), + [aux_sym_identities_only_token1] = ACTIONS(3471), + [aux_sym_identity_agent_token1] = ACTIONS(3471), + [aux_sym_identity_file_token1] = ACTIONS(3471), + [aux_sym_ignore_unknown_token1] = ACTIONS(3471), + [aux_sym_include_token1] = ACTIONS(3471), + [aux_sym_ip_qos_token1] = ACTIONS(3471), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3471), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3471), + [aux_sym_kex_algorithms_token1] = ACTIONS(3471), + [aux_sym_known_hosts_command_token1] = ACTIONS(3471), + [aux_sym_local_command_token1] = ACTIONS(3471), + [aux_sym_local_forward_token1] = ACTIONS(3471), + [aux_sym_log_level_token1] = ACTIONS(3471), + [aux_sym_log_verbose_token1] = ACTIONS(3471), + [aux_sym_macs_token1] = ACTIONS(3471), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3471), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3471), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3471), + [aux_sym_password_authentication_token1] = ACTIONS(3471), + [aux_sym_permit_local_command_token1] = ACTIONS(3471), + [aux_sym_permit_remote_open_token1] = ACTIONS(3471), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3471), + [aux_sym_port_token1] = ACTIONS(3471), + [aux_sym_preferred_authentications_token1] = ACTIONS(3471), + [aux_sym_protocol_token1] = ACTIONS(3471), + [aux_sym_proxy_command_token1] = ACTIONS(3471), + [aux_sym_proxy_jump_token1] = ACTIONS(3471), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3471), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3471), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3471), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3471), + [aux_sym_rekey_limit_token1] = ACTIONS(3471), + [aux_sym_remote_command_token1] = ACTIONS(3471), + [aux_sym_remote_forward_token1] = ACTIONS(3471), + [aux_sym_request_tty_token1] = ACTIONS(3471), + [aux_sym_required_rsa_size_token1] = ACTIONS(3471), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3471), + [aux_sym_security_key_provider_token1] = ACTIONS(3471), + [aux_sym_send_env_token1] = ACTIONS(3471), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3471), + [aux_sym_server_alive_interval_token1] = ACTIONS(3471), + [aux_sym_session_type_token1] = ACTIONS(3471), + [aux_sym_set_env_token1] = ACTIONS(3471), + [aux_sym_stdin_null_token1] = ACTIONS(3471), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3471), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3471), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3471), + [aux_sym_syslog_facility_token1] = ACTIONS(3471), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3471), + [aux_sym_keep_alive_token1] = ACTIONS(3471), + [aux_sym_tag_token1] = ACTIONS(3471), + [aux_sym_tunnel_token1] = ACTIONS(3473), + [aux_sym_tunnel_device_token1] = ACTIONS(3471), + [aux_sym_update_host_keys_token1] = ACTIONS(3471), + [aux_sym_use_keychain_token1] = ACTIONS(3471), + [aux_sym_use_roaming_token1] = ACTIONS(3471), + [aux_sym_user_token1] = ACTIONS(3473), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3471), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3471), + [aux_sym_visual_host_key_token1] = ACTIONS(3471), + [aux_sym_xauth_location_token1] = ACTIONS(3471), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3478), - [aux_sym_match_token1] = ACTIONS(3476), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3476), - [aux_sym_address_family_token1] = ACTIONS(3476), - [aux_sym_batch_mode_token1] = ACTIONS(3476), - [aux_sym_bind_address_token1] = ACTIONS(3476), - [aux_sym_bind_interface_token1] = ACTIONS(3476), - [aux_sym_canonical_domains_token1] = ACTIONS(3476), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3476), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3476), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3476), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3476), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3476), - [aux_sym_certificate_file_token1] = ACTIONS(3476), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3476), - [aux_sym_channel_timeout_token1] = ACTIONS(3476), - [aux_sym_check_host_ip_token1] = ACTIONS(3476), - [aux_sym_ciphers_token1] = ACTIONS(3476), - [aux_sym_cipher_token1] = ACTIONS(3478), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3476), - [aux_sym_compression_token1] = ACTIONS(3476), - [aux_sym_connection_attempts_token1] = ACTIONS(3476), - [aux_sym_connect_timeout_token1] = ACTIONS(3476), - [aux_sym_control_master_token1] = ACTIONS(3476), - [aux_sym_control_path_token1] = ACTIONS(3476), - [aux_sym_control_persist_token1] = ACTIONS(3476), - [aux_sym_dynamic_forward_token1] = ACTIONS(3476), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3476), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3476), - [aux_sym_escape_char_token1] = ACTIONS(3476), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3476), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3476), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3476), - [aux_sym_forward_agent_token1] = ACTIONS(3476), - [aux_sym_forward_x11_token1] = ACTIONS(3478), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3476), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3476), - [aux_sym_gateway_ports_token1] = ACTIONS(3476), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3476), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3476), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3476), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3476), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3476), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3476), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3476), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3476), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3476), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3476), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3476), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3476), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3476), - [aux_sym_host_key_alias_token1] = ACTIONS(3476), - [aux_sym_hostname_token1] = ACTIONS(3476), - [aux_sym_identities_only_token1] = ACTIONS(3476), - [aux_sym_identity_agent_token1] = ACTIONS(3476), - [aux_sym_identity_file_token1] = ACTIONS(3476), - [aux_sym_ignore_unknown_token1] = ACTIONS(3476), - [aux_sym_include_token1] = ACTIONS(3476), - [aux_sym_ip_qos_token1] = ACTIONS(3476), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3476), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3476), - [aux_sym_kex_algorithms_token1] = ACTIONS(3476), - [aux_sym_known_hosts_command_token1] = ACTIONS(3476), - [aux_sym_local_command_token1] = ACTIONS(3476), - [aux_sym_local_forward_token1] = ACTIONS(3476), - [aux_sym_log_level_token1] = ACTIONS(3476), - [aux_sym_log_verbose_token1] = ACTIONS(3476), - [aux_sym_macs_token1] = ACTIONS(3476), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3476), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3476), - [aux_sym_password_authentication_token1] = ACTIONS(3476), - [aux_sym_permit_local_command_token1] = ACTIONS(3476), - [aux_sym_permit_remote_open_token1] = ACTIONS(3476), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3476), - [aux_sym_port_token1] = ACTIONS(3476), - [aux_sym_preferred_authentications_token1] = ACTIONS(3476), - [aux_sym_protocol_token1] = ACTIONS(3476), - [aux_sym_proxy_command_token1] = ACTIONS(3476), - [aux_sym_proxy_jump_token1] = ACTIONS(3476), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3476), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3476), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3476), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3476), - [aux_sym_rekey_limit_token1] = ACTIONS(3476), - [aux_sym_remote_command_token1] = ACTIONS(3476), - [aux_sym_remote_forward_token1] = ACTIONS(3476), - [aux_sym_request_tty_token1] = ACTIONS(3476), - [aux_sym_required_rsa_size_token1] = ACTIONS(3476), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3476), - [aux_sym_security_key_provider_token1] = ACTIONS(3476), - [aux_sym_send_env_token1] = ACTIONS(3476), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3476), - [aux_sym_server_alive_interval_token1] = ACTIONS(3476), - [aux_sym_session_type_token1] = ACTIONS(3476), - [aux_sym_set_env_token1] = ACTIONS(3476), - [aux_sym_stdin_null_token1] = ACTIONS(3476), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3476), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3476), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3476), - [aux_sym_syslog_facility_token1] = ACTIONS(3476), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3476), - [aux_sym_keep_alive_token1] = ACTIONS(3476), - [aux_sym_tag_token1] = ACTIONS(3476), - [aux_sym_tunnel_token1] = ACTIONS(3478), - [aux_sym_tunnel_device_token1] = ACTIONS(3476), - [aux_sym_update_host_keys_token1] = ACTIONS(3476), - [aux_sym_use_keychain_token1] = ACTIONS(3476), - [aux_sym_use_roaming_token1] = ACTIONS(3476), - [aux_sym_user_token1] = ACTIONS(3478), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3476), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3476), - [aux_sym_visual_host_key_token1] = ACTIONS(3476), - [aux_sym_xauth_location_token1] = ACTIONS(3476), + [ts_builtin_sym_end] = ACTIONS(3475), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3477), + [aux_sym_match_token1] = ACTIONS(3475), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3475), + [aux_sym_address_family_token1] = ACTIONS(3475), + [aux_sym_batch_mode_token1] = ACTIONS(3475), + [aux_sym_bind_address_token1] = ACTIONS(3475), + [aux_sym_bind_interface_token1] = ACTIONS(3475), + [aux_sym_canonical_domains_token1] = ACTIONS(3475), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3475), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3475), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3475), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3475), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3475), + [aux_sym_certificate_file_token1] = ACTIONS(3475), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3475), + [aux_sym_channel_timeout_token1] = ACTIONS(3475), + [aux_sym_check_host_ip_token1] = ACTIONS(3475), + [aux_sym_ciphers_token1] = ACTIONS(3475), + [aux_sym_cipher_token1] = ACTIONS(3477), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3475), + [aux_sym_compression_token1] = ACTIONS(3475), + [aux_sym_connection_attempts_token1] = ACTIONS(3475), + [aux_sym_connect_timeout_token1] = ACTIONS(3475), + [aux_sym_control_master_token1] = ACTIONS(3475), + [aux_sym_control_path_token1] = ACTIONS(3475), + [aux_sym_control_persist_token1] = ACTIONS(3475), + [aux_sym_dynamic_forward_token1] = ACTIONS(3475), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3475), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3475), + [aux_sym_escape_char_token1] = ACTIONS(3475), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3475), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3475), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3475), + [aux_sym_forward_agent_token1] = ACTIONS(3475), + [aux_sym_forward_x11_token1] = ACTIONS(3477), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3475), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3475), + [aux_sym_gateway_ports_token1] = ACTIONS(3475), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3475), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3475), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3475), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3475), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3475), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3475), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3475), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3475), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3475), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3475), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3475), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3475), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3475), + [aux_sym_host_key_alias_token1] = ACTIONS(3475), + [aux_sym_hostname_token1] = ACTIONS(3475), + [aux_sym_identities_only_token1] = ACTIONS(3475), + [aux_sym_identity_agent_token1] = ACTIONS(3475), + [aux_sym_identity_file_token1] = ACTIONS(3475), + [aux_sym_ignore_unknown_token1] = ACTIONS(3475), + [aux_sym_include_token1] = ACTIONS(3475), + [aux_sym_ip_qos_token1] = ACTIONS(3475), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3475), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3475), + [aux_sym_kex_algorithms_token1] = ACTIONS(3475), + [aux_sym_known_hosts_command_token1] = ACTIONS(3475), + [aux_sym_local_command_token1] = ACTIONS(3475), + [aux_sym_local_forward_token1] = ACTIONS(3475), + [aux_sym_log_level_token1] = ACTIONS(3475), + [aux_sym_log_verbose_token1] = ACTIONS(3475), + [aux_sym_macs_token1] = ACTIONS(3475), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3475), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3475), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3475), + [aux_sym_password_authentication_token1] = ACTIONS(3475), + [aux_sym_permit_local_command_token1] = ACTIONS(3475), + [aux_sym_permit_remote_open_token1] = ACTIONS(3475), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3475), + [aux_sym_port_token1] = ACTIONS(3475), + [aux_sym_preferred_authentications_token1] = ACTIONS(3475), + [aux_sym_protocol_token1] = ACTIONS(3475), + [aux_sym_proxy_command_token1] = ACTIONS(3475), + [aux_sym_proxy_jump_token1] = ACTIONS(3475), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3475), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3475), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3475), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3475), + [aux_sym_rekey_limit_token1] = ACTIONS(3475), + [aux_sym_remote_command_token1] = ACTIONS(3475), + [aux_sym_remote_forward_token1] = ACTIONS(3475), + [aux_sym_request_tty_token1] = ACTIONS(3475), + [aux_sym_required_rsa_size_token1] = ACTIONS(3475), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3475), + [aux_sym_security_key_provider_token1] = ACTIONS(3475), + [aux_sym_send_env_token1] = ACTIONS(3475), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3475), + [aux_sym_server_alive_interval_token1] = ACTIONS(3475), + [aux_sym_session_type_token1] = ACTIONS(3475), + [aux_sym_set_env_token1] = ACTIONS(3475), + [aux_sym_stdin_null_token1] = ACTIONS(3475), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3475), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3475), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3475), + [aux_sym_syslog_facility_token1] = ACTIONS(3475), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3475), + [aux_sym_keep_alive_token1] = ACTIONS(3475), + [aux_sym_tag_token1] = ACTIONS(3475), + [aux_sym_tunnel_token1] = ACTIONS(3477), + [aux_sym_tunnel_device_token1] = ACTIONS(3475), + [aux_sym_update_host_keys_token1] = ACTIONS(3475), + [aux_sym_use_keychain_token1] = ACTIONS(3475), + [aux_sym_use_roaming_token1] = ACTIONS(3475), + [aux_sym_user_token1] = ACTIONS(3477), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3475), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3475), + [aux_sym_visual_host_key_token1] = ACTIONS(3475), + [aux_sym_xauth_location_token1] = ACTIONS(3475), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3482), - [aux_sym_match_token1] = ACTIONS(3480), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3480), - [aux_sym_address_family_token1] = ACTIONS(3480), - [aux_sym_batch_mode_token1] = ACTIONS(3480), - [aux_sym_bind_address_token1] = ACTIONS(3480), - [aux_sym_bind_interface_token1] = ACTIONS(3480), - [aux_sym_canonical_domains_token1] = ACTIONS(3480), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3480), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3480), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3480), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3480), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3480), - [aux_sym_certificate_file_token1] = ACTIONS(3480), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3480), - [aux_sym_channel_timeout_token1] = ACTIONS(3480), - [aux_sym_check_host_ip_token1] = ACTIONS(3480), - [aux_sym_ciphers_token1] = ACTIONS(3480), - [aux_sym_cipher_token1] = ACTIONS(3482), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3480), - [aux_sym_compression_token1] = ACTIONS(3480), - [aux_sym_connection_attempts_token1] = ACTIONS(3480), - [aux_sym_connect_timeout_token1] = ACTIONS(3480), - [aux_sym_control_master_token1] = ACTIONS(3480), - [aux_sym_control_path_token1] = ACTIONS(3480), - [aux_sym_control_persist_token1] = ACTIONS(3480), - [aux_sym_dynamic_forward_token1] = ACTIONS(3480), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3480), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3480), - [aux_sym_escape_char_token1] = ACTIONS(3480), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3480), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3480), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3480), - [aux_sym_forward_agent_token1] = ACTIONS(3480), - [aux_sym_forward_x11_token1] = ACTIONS(3482), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3480), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3480), - [aux_sym_gateway_ports_token1] = ACTIONS(3480), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3480), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3480), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3480), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3480), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3480), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3480), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3480), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3480), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3480), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3480), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3480), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3480), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3480), - [aux_sym_host_key_alias_token1] = ACTIONS(3480), - [aux_sym_hostname_token1] = ACTIONS(3480), - [aux_sym_identities_only_token1] = ACTIONS(3480), - [aux_sym_identity_agent_token1] = ACTIONS(3480), - [aux_sym_identity_file_token1] = ACTIONS(3480), - [aux_sym_ignore_unknown_token1] = ACTIONS(3480), - [aux_sym_include_token1] = ACTIONS(3480), - [aux_sym_ip_qos_token1] = ACTIONS(3480), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3480), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3480), - [aux_sym_kex_algorithms_token1] = ACTIONS(3480), - [aux_sym_known_hosts_command_token1] = ACTIONS(3480), - [aux_sym_local_command_token1] = ACTIONS(3480), - [aux_sym_local_forward_token1] = ACTIONS(3480), - [aux_sym_log_level_token1] = ACTIONS(3480), - [aux_sym_log_verbose_token1] = ACTIONS(3480), - [aux_sym_macs_token1] = ACTIONS(3480), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3480), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3480), - [aux_sym_password_authentication_token1] = ACTIONS(3480), - [aux_sym_permit_local_command_token1] = ACTIONS(3480), - [aux_sym_permit_remote_open_token1] = ACTIONS(3480), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3480), - [aux_sym_port_token1] = ACTIONS(3480), - [aux_sym_preferred_authentications_token1] = ACTIONS(3480), - [aux_sym_protocol_token1] = ACTIONS(3480), - [aux_sym_proxy_command_token1] = ACTIONS(3480), - [aux_sym_proxy_jump_token1] = ACTIONS(3480), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3480), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3480), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3480), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3480), - [aux_sym_rekey_limit_token1] = ACTIONS(3480), - [aux_sym_remote_command_token1] = ACTIONS(3480), - [aux_sym_remote_forward_token1] = ACTIONS(3480), - [aux_sym_request_tty_token1] = ACTIONS(3480), - [aux_sym_required_rsa_size_token1] = ACTIONS(3480), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3480), - [aux_sym_security_key_provider_token1] = ACTIONS(3480), - [aux_sym_send_env_token1] = ACTIONS(3480), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3480), - [aux_sym_server_alive_interval_token1] = ACTIONS(3480), - [aux_sym_session_type_token1] = ACTIONS(3480), - [aux_sym_set_env_token1] = ACTIONS(3480), - [aux_sym_stdin_null_token1] = ACTIONS(3480), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3480), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3480), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3480), - [aux_sym_syslog_facility_token1] = ACTIONS(3480), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3480), - [aux_sym_keep_alive_token1] = ACTIONS(3480), - [aux_sym_tag_token1] = ACTIONS(3480), - [aux_sym_tunnel_token1] = ACTIONS(3482), - [aux_sym_tunnel_device_token1] = ACTIONS(3480), - [aux_sym_update_host_keys_token1] = ACTIONS(3480), - [aux_sym_use_keychain_token1] = ACTIONS(3480), - [aux_sym_use_roaming_token1] = ACTIONS(3480), - [aux_sym_user_token1] = ACTIONS(3482), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3480), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3480), - [aux_sym_visual_host_key_token1] = ACTIONS(3480), - [aux_sym_xauth_location_token1] = ACTIONS(3480), + [ts_builtin_sym_end] = ACTIONS(3479), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3481), + [aux_sym_match_token1] = ACTIONS(3479), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3479), + [aux_sym_address_family_token1] = ACTIONS(3479), + [aux_sym_batch_mode_token1] = ACTIONS(3479), + [aux_sym_bind_address_token1] = ACTIONS(3479), + [aux_sym_bind_interface_token1] = ACTIONS(3479), + [aux_sym_canonical_domains_token1] = ACTIONS(3479), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3479), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3479), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3479), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3479), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3479), + [aux_sym_certificate_file_token1] = ACTIONS(3479), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3479), + [aux_sym_channel_timeout_token1] = ACTIONS(3479), + [aux_sym_check_host_ip_token1] = ACTIONS(3479), + [aux_sym_ciphers_token1] = ACTIONS(3479), + [aux_sym_cipher_token1] = ACTIONS(3481), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3479), + [aux_sym_compression_token1] = ACTIONS(3479), + [aux_sym_connection_attempts_token1] = ACTIONS(3479), + [aux_sym_connect_timeout_token1] = ACTIONS(3479), + [aux_sym_control_master_token1] = ACTIONS(3479), + [aux_sym_control_path_token1] = ACTIONS(3479), + [aux_sym_control_persist_token1] = ACTIONS(3479), + [aux_sym_dynamic_forward_token1] = ACTIONS(3479), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3479), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3479), + [aux_sym_escape_char_token1] = ACTIONS(3479), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3479), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3479), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3479), + [aux_sym_forward_agent_token1] = ACTIONS(3479), + [aux_sym_forward_x11_token1] = ACTIONS(3481), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3479), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3479), + [aux_sym_gateway_ports_token1] = ACTIONS(3479), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3479), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3479), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3479), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3479), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3479), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3479), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3479), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3479), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3479), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3479), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3479), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3479), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3479), + [aux_sym_host_key_alias_token1] = ACTIONS(3479), + [aux_sym_hostname_token1] = ACTIONS(3479), + [aux_sym_identities_only_token1] = ACTIONS(3479), + [aux_sym_identity_agent_token1] = ACTIONS(3479), + [aux_sym_identity_file_token1] = ACTIONS(3479), + [aux_sym_ignore_unknown_token1] = ACTIONS(3479), + [aux_sym_include_token1] = ACTIONS(3479), + [aux_sym_ip_qos_token1] = ACTIONS(3479), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3479), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3479), + [aux_sym_kex_algorithms_token1] = ACTIONS(3479), + [aux_sym_known_hosts_command_token1] = ACTIONS(3479), + [aux_sym_local_command_token1] = ACTIONS(3479), + [aux_sym_local_forward_token1] = ACTIONS(3479), + [aux_sym_log_level_token1] = ACTIONS(3479), + [aux_sym_log_verbose_token1] = ACTIONS(3479), + [aux_sym_macs_token1] = ACTIONS(3479), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3479), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3479), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3479), + [aux_sym_password_authentication_token1] = ACTIONS(3479), + [aux_sym_permit_local_command_token1] = ACTIONS(3479), + [aux_sym_permit_remote_open_token1] = ACTIONS(3479), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3479), + [aux_sym_port_token1] = ACTIONS(3479), + [aux_sym_preferred_authentications_token1] = ACTIONS(3479), + [aux_sym_protocol_token1] = ACTIONS(3479), + [aux_sym_proxy_command_token1] = ACTIONS(3479), + [aux_sym_proxy_jump_token1] = ACTIONS(3479), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3479), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3479), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3479), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3479), + [aux_sym_rekey_limit_token1] = ACTIONS(3479), + [aux_sym_remote_command_token1] = ACTIONS(3479), + [aux_sym_remote_forward_token1] = ACTIONS(3479), + [aux_sym_request_tty_token1] = ACTIONS(3479), + [aux_sym_required_rsa_size_token1] = ACTIONS(3479), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3479), + [aux_sym_security_key_provider_token1] = ACTIONS(3479), + [aux_sym_send_env_token1] = ACTIONS(3479), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3479), + [aux_sym_server_alive_interval_token1] = ACTIONS(3479), + [aux_sym_session_type_token1] = ACTIONS(3479), + [aux_sym_set_env_token1] = ACTIONS(3479), + [aux_sym_stdin_null_token1] = ACTIONS(3479), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3479), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3479), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3479), + [aux_sym_syslog_facility_token1] = ACTIONS(3479), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3479), + [aux_sym_keep_alive_token1] = ACTIONS(3479), + [aux_sym_tag_token1] = ACTIONS(3479), + [aux_sym_tunnel_token1] = ACTIONS(3481), + [aux_sym_tunnel_device_token1] = ACTIONS(3479), + [aux_sym_update_host_keys_token1] = ACTIONS(3479), + [aux_sym_use_keychain_token1] = ACTIONS(3479), + [aux_sym_use_roaming_token1] = ACTIONS(3479), + [aux_sym_user_token1] = ACTIONS(3481), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3479), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3479), + [aux_sym_visual_host_key_token1] = ACTIONS(3479), + [aux_sym_xauth_location_token1] = ACTIONS(3479), }, [620] = { - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3486), - [aux_sym_match_token1] = ACTIONS(3484), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3484), - [aux_sym_address_family_token1] = ACTIONS(3484), - [aux_sym_batch_mode_token1] = ACTIONS(3484), - [aux_sym_bind_address_token1] = ACTIONS(3484), - [aux_sym_bind_interface_token1] = ACTIONS(3484), - [aux_sym_canonical_domains_token1] = ACTIONS(3484), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3484), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3484), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3484), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3484), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3484), - [aux_sym_certificate_file_token1] = ACTIONS(3484), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3484), - [aux_sym_channel_timeout_token1] = ACTIONS(3484), - [aux_sym_check_host_ip_token1] = ACTIONS(3484), - [aux_sym_ciphers_token1] = ACTIONS(3484), - [aux_sym_cipher_token1] = ACTIONS(3486), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3484), - [aux_sym_compression_token1] = ACTIONS(3484), - [aux_sym_connection_attempts_token1] = ACTIONS(3484), - [aux_sym_connect_timeout_token1] = ACTIONS(3484), - [aux_sym_control_master_token1] = ACTIONS(3484), - [aux_sym_control_path_token1] = ACTIONS(3484), - [aux_sym_control_persist_token1] = ACTIONS(3484), - [aux_sym_dynamic_forward_token1] = ACTIONS(3484), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3484), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3484), - [aux_sym_escape_char_token1] = ACTIONS(3484), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3484), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3484), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3484), - [aux_sym_forward_agent_token1] = ACTIONS(3484), - [aux_sym_forward_x11_token1] = ACTIONS(3486), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3484), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3484), - [aux_sym_gateway_ports_token1] = ACTIONS(3484), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3484), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3484), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3484), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3484), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3484), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3484), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3484), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3484), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3484), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3484), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3484), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3484), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3484), - [aux_sym_host_key_alias_token1] = ACTIONS(3484), - [aux_sym_hostname_token1] = ACTIONS(3484), - [aux_sym_identities_only_token1] = ACTIONS(3484), - [aux_sym_identity_agent_token1] = ACTIONS(3484), - [aux_sym_identity_file_token1] = ACTIONS(3484), - [aux_sym_ignore_unknown_token1] = ACTIONS(3484), - [aux_sym_include_token1] = ACTIONS(3484), - [aux_sym_ip_qos_token1] = ACTIONS(3484), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3484), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3484), - [aux_sym_kex_algorithms_token1] = ACTIONS(3484), - [aux_sym_known_hosts_command_token1] = ACTIONS(3484), - [aux_sym_local_command_token1] = ACTIONS(3484), - [aux_sym_local_forward_token1] = ACTIONS(3484), - [aux_sym_log_level_token1] = ACTIONS(3484), - [aux_sym_log_verbose_token1] = ACTIONS(3484), - [aux_sym_macs_token1] = ACTIONS(3484), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3484), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3484), - [aux_sym_password_authentication_token1] = ACTIONS(3484), - [aux_sym_permit_local_command_token1] = ACTIONS(3484), - [aux_sym_permit_remote_open_token1] = ACTIONS(3484), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3484), - [aux_sym_port_token1] = ACTIONS(3484), - [aux_sym_preferred_authentications_token1] = ACTIONS(3484), - [aux_sym_protocol_token1] = ACTIONS(3484), - [aux_sym_proxy_command_token1] = ACTIONS(3484), - [aux_sym_proxy_jump_token1] = ACTIONS(3484), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3484), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3484), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3484), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3484), - [aux_sym_rekey_limit_token1] = ACTIONS(3484), - [aux_sym_remote_command_token1] = ACTIONS(3484), - [aux_sym_remote_forward_token1] = ACTIONS(3484), - [aux_sym_request_tty_token1] = ACTIONS(3484), - [aux_sym_required_rsa_size_token1] = ACTIONS(3484), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3484), - [aux_sym_security_key_provider_token1] = ACTIONS(3484), - [aux_sym_send_env_token1] = ACTIONS(3484), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3484), - [aux_sym_server_alive_interval_token1] = ACTIONS(3484), - [aux_sym_session_type_token1] = ACTIONS(3484), - [aux_sym_set_env_token1] = ACTIONS(3484), - [aux_sym_stdin_null_token1] = ACTIONS(3484), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3484), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3484), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3484), - [aux_sym_syslog_facility_token1] = ACTIONS(3484), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3484), - [aux_sym_keep_alive_token1] = ACTIONS(3484), - [aux_sym_tag_token1] = ACTIONS(3484), - [aux_sym_tunnel_token1] = ACTIONS(3486), - [aux_sym_tunnel_device_token1] = ACTIONS(3484), - [aux_sym_update_host_keys_token1] = ACTIONS(3484), - [aux_sym_use_keychain_token1] = ACTIONS(3484), - [aux_sym_use_roaming_token1] = ACTIONS(3484), - [aux_sym_user_token1] = ACTIONS(3486), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3484), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3484), - [aux_sym_visual_host_key_token1] = ACTIONS(3484), - [aux_sym_xauth_location_token1] = ACTIONS(3484), + [ts_builtin_sym_end] = ACTIONS(1031), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1033), + [aux_sym_match_token1] = ACTIONS(1031), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1031), + [aux_sym_address_family_token1] = ACTIONS(1031), + [aux_sym_batch_mode_token1] = ACTIONS(1031), + [aux_sym_bind_address_token1] = ACTIONS(1031), + [aux_sym_bind_interface_token1] = ACTIONS(1031), + [aux_sym_canonical_domains_token1] = ACTIONS(1031), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1031), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1031), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1031), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1031), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1031), + [aux_sym_certificate_file_token1] = ACTIONS(1031), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1031), + [aux_sym_channel_timeout_token1] = ACTIONS(1031), + [aux_sym_check_host_ip_token1] = ACTIONS(1031), + [aux_sym_ciphers_token1] = ACTIONS(1031), + [aux_sym_cipher_token1] = ACTIONS(1033), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1031), + [aux_sym_compression_token1] = ACTIONS(1031), + [aux_sym_connection_attempts_token1] = ACTIONS(1031), + [aux_sym_connect_timeout_token1] = ACTIONS(1031), + [aux_sym_control_master_token1] = ACTIONS(1031), + [aux_sym_control_path_token1] = ACTIONS(1031), + [aux_sym_control_persist_token1] = ACTIONS(1031), + [aux_sym_dynamic_forward_token1] = ACTIONS(1031), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1031), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1031), + [aux_sym_escape_char_token1] = ACTIONS(1031), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1031), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1031), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1031), + [aux_sym_forward_agent_token1] = ACTIONS(1031), + [aux_sym_forward_x11_token1] = ACTIONS(1033), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1031), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1031), + [aux_sym_gateway_ports_token1] = ACTIONS(1031), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1031), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1031), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1031), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1031), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1031), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1031), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1031), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1031), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1031), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1031), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1031), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1031), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1031), + [aux_sym_host_key_alias_token1] = ACTIONS(1031), + [aux_sym_hostname_token1] = ACTIONS(1031), + [aux_sym_identities_only_token1] = ACTIONS(1031), + [aux_sym_identity_agent_token1] = ACTIONS(1031), + [aux_sym_identity_file_token1] = ACTIONS(1031), + [aux_sym_ignore_unknown_token1] = ACTIONS(1031), + [aux_sym_include_token1] = ACTIONS(1031), + [aux_sym_ip_qos_token1] = ACTIONS(1031), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1031), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1031), + [aux_sym_kex_algorithms_token1] = ACTIONS(1031), + [aux_sym_known_hosts_command_token1] = ACTIONS(1031), + [aux_sym_local_command_token1] = ACTIONS(1031), + [aux_sym_local_forward_token1] = ACTIONS(1031), + [aux_sym_log_level_token1] = ACTIONS(1031), + [aux_sym_log_verbose_token1] = ACTIONS(1031), + [aux_sym_macs_token1] = ACTIONS(1031), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1031), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1031), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1031), + [aux_sym_password_authentication_token1] = ACTIONS(1031), + [aux_sym_permit_local_command_token1] = ACTIONS(1031), + [aux_sym_permit_remote_open_token1] = ACTIONS(1031), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1031), + [aux_sym_port_token1] = ACTIONS(1031), + [aux_sym_preferred_authentications_token1] = ACTIONS(1031), + [aux_sym_protocol_token1] = ACTIONS(1031), + [aux_sym_proxy_command_token1] = ACTIONS(1031), + [aux_sym_proxy_jump_token1] = ACTIONS(1031), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1031), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1031), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1031), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1031), + [aux_sym_rekey_limit_token1] = ACTIONS(1031), + [aux_sym_remote_command_token1] = ACTIONS(1031), + [aux_sym_remote_forward_token1] = ACTIONS(1031), + [aux_sym_request_tty_token1] = ACTIONS(1031), + [aux_sym_required_rsa_size_token1] = ACTIONS(1031), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1031), + [aux_sym_security_key_provider_token1] = ACTIONS(1031), + [aux_sym_send_env_token1] = ACTIONS(1031), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1031), + [aux_sym_server_alive_interval_token1] = ACTIONS(1031), + [aux_sym_session_type_token1] = ACTIONS(1031), + [aux_sym_set_env_token1] = ACTIONS(1031), + [aux_sym_stdin_null_token1] = ACTIONS(1031), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1031), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1031), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1031), + [aux_sym_syslog_facility_token1] = ACTIONS(1031), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1031), + [aux_sym_keep_alive_token1] = ACTIONS(1031), + [aux_sym_tag_token1] = ACTIONS(1031), + [aux_sym_tunnel_token1] = ACTIONS(1033), + [aux_sym_tunnel_device_token1] = ACTIONS(1031), + [aux_sym_update_host_keys_token1] = ACTIONS(1031), + [aux_sym_use_keychain_token1] = ACTIONS(1031), + [aux_sym_use_roaming_token1] = ACTIONS(1031), + [aux_sym_user_token1] = ACTIONS(1033), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1031), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1031), + [aux_sym_visual_host_key_token1] = ACTIONS(1031), + [aux_sym_xauth_location_token1] = ACTIONS(1031), }, [621] = { - [ts_builtin_sym_end] = ACTIONS(1542), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1544), - [aux_sym_match_token1] = ACTIONS(1542), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1542), - [aux_sym_address_family_token1] = ACTIONS(1542), - [aux_sym_batch_mode_token1] = ACTIONS(1542), - [aux_sym_bind_address_token1] = ACTIONS(1542), - [aux_sym_bind_interface_token1] = ACTIONS(1542), - [aux_sym_canonical_domains_token1] = ACTIONS(1542), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1542), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1542), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1542), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1542), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1542), - [aux_sym_certificate_file_token1] = ACTIONS(1542), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1542), - [aux_sym_channel_timeout_token1] = ACTIONS(1542), - [aux_sym_check_host_ip_token1] = ACTIONS(1542), - [aux_sym_ciphers_token1] = ACTIONS(1542), - [aux_sym_cipher_token1] = ACTIONS(1544), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1542), - [aux_sym_compression_token1] = ACTIONS(1542), - [aux_sym_connection_attempts_token1] = ACTIONS(1542), - [aux_sym_connect_timeout_token1] = ACTIONS(1542), - [aux_sym_control_master_token1] = ACTIONS(1542), - [aux_sym_control_path_token1] = ACTIONS(1542), - [aux_sym_control_persist_token1] = ACTIONS(1542), - [aux_sym_dynamic_forward_token1] = ACTIONS(1542), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1542), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1542), - [aux_sym_escape_char_token1] = ACTIONS(1542), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1542), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1542), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1542), - [aux_sym_forward_agent_token1] = ACTIONS(1542), - [aux_sym_forward_x11_token1] = ACTIONS(1544), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1542), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1542), - [aux_sym_gateway_ports_token1] = ACTIONS(1542), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1542), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1542), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1542), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1542), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1542), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1542), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1542), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1542), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1542), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1542), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1542), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1542), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1542), - [aux_sym_host_key_alias_token1] = ACTIONS(1542), - [aux_sym_hostname_token1] = ACTIONS(1542), - [aux_sym_identities_only_token1] = ACTIONS(1542), - [aux_sym_identity_agent_token1] = ACTIONS(1542), - [aux_sym_identity_file_token1] = ACTIONS(1542), - [aux_sym_ignore_unknown_token1] = ACTIONS(1542), - [aux_sym_include_token1] = ACTIONS(1542), - [aux_sym_ip_qos_token1] = ACTIONS(1542), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1542), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1542), - [aux_sym_kex_algorithms_token1] = ACTIONS(1542), - [aux_sym_known_hosts_command_token1] = ACTIONS(1542), - [aux_sym_local_command_token1] = ACTIONS(1542), - [aux_sym_local_forward_token1] = ACTIONS(1542), - [aux_sym_log_level_token1] = ACTIONS(1542), - [aux_sym_log_verbose_token1] = ACTIONS(1542), - [aux_sym_macs_token1] = ACTIONS(1542), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1542), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1542), - [aux_sym_password_authentication_token1] = ACTIONS(1542), - [aux_sym_permit_local_command_token1] = ACTIONS(1542), - [aux_sym_permit_remote_open_token1] = ACTIONS(1542), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1542), - [aux_sym_port_token1] = ACTIONS(1542), - [aux_sym_preferred_authentications_token1] = ACTIONS(1542), - [aux_sym_protocol_token1] = ACTIONS(1542), - [aux_sym_proxy_command_token1] = ACTIONS(1542), - [aux_sym_proxy_jump_token1] = ACTIONS(1542), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1542), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1542), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1542), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1542), - [aux_sym_rekey_limit_token1] = ACTIONS(1542), - [aux_sym_remote_command_token1] = ACTIONS(1542), - [aux_sym_remote_forward_token1] = ACTIONS(1542), - [aux_sym_request_tty_token1] = ACTIONS(1542), - [aux_sym_required_rsa_size_token1] = ACTIONS(1542), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1542), - [aux_sym_security_key_provider_token1] = ACTIONS(1542), - [aux_sym_send_env_token1] = ACTIONS(1542), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1542), - [aux_sym_server_alive_interval_token1] = ACTIONS(1542), - [aux_sym_session_type_token1] = ACTIONS(1542), - [aux_sym_set_env_token1] = ACTIONS(1542), - [aux_sym_stdin_null_token1] = ACTIONS(1542), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1542), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1542), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1542), - [aux_sym_syslog_facility_token1] = ACTIONS(1542), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1542), - [aux_sym_keep_alive_token1] = ACTIONS(1542), - [aux_sym_tag_token1] = ACTIONS(1542), - [aux_sym_tunnel_token1] = ACTIONS(1544), - [aux_sym_tunnel_device_token1] = ACTIONS(1542), - [aux_sym_update_host_keys_token1] = ACTIONS(1542), - [aux_sym_use_keychain_token1] = ACTIONS(1542), - [aux_sym_use_roaming_token1] = ACTIONS(1542), - [aux_sym_user_token1] = ACTIONS(1544), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1542), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1542), - [aux_sym_visual_host_key_token1] = ACTIONS(1542), - [aux_sym_xauth_location_token1] = ACTIONS(1542), + [ts_builtin_sym_end] = ACTIONS(1025), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1027), + [aux_sym_match_token1] = ACTIONS(1025), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1025), + [aux_sym_address_family_token1] = ACTIONS(1025), + [aux_sym_batch_mode_token1] = ACTIONS(1025), + [aux_sym_bind_address_token1] = ACTIONS(1025), + [aux_sym_bind_interface_token1] = ACTIONS(1025), + [aux_sym_canonical_domains_token1] = ACTIONS(1025), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1025), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1025), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1025), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1025), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1025), + [aux_sym_certificate_file_token1] = ACTIONS(1025), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1025), + [aux_sym_channel_timeout_token1] = ACTIONS(1025), + [aux_sym_check_host_ip_token1] = ACTIONS(1025), + [aux_sym_ciphers_token1] = ACTIONS(1025), + [aux_sym_cipher_token1] = ACTIONS(1027), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1025), + [aux_sym_compression_token1] = ACTIONS(1025), + [aux_sym_connection_attempts_token1] = ACTIONS(1025), + [aux_sym_connect_timeout_token1] = ACTIONS(1025), + [aux_sym_control_master_token1] = ACTIONS(1025), + [aux_sym_control_path_token1] = ACTIONS(1025), + [aux_sym_control_persist_token1] = ACTIONS(1025), + [aux_sym_dynamic_forward_token1] = ACTIONS(1025), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1025), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1025), + [aux_sym_escape_char_token1] = ACTIONS(1025), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1025), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1025), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1025), + [aux_sym_forward_agent_token1] = ACTIONS(1025), + [aux_sym_forward_x11_token1] = ACTIONS(1027), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1025), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1025), + [aux_sym_gateway_ports_token1] = ACTIONS(1025), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1025), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1025), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1025), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1025), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1025), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1025), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1025), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1025), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1025), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1025), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1025), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1025), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1025), + [aux_sym_host_key_alias_token1] = ACTIONS(1025), + [aux_sym_hostname_token1] = ACTIONS(1025), + [aux_sym_identities_only_token1] = ACTIONS(1025), + [aux_sym_identity_agent_token1] = ACTIONS(1025), + [aux_sym_identity_file_token1] = ACTIONS(1025), + [aux_sym_ignore_unknown_token1] = ACTIONS(1025), + [aux_sym_include_token1] = ACTIONS(1025), + [aux_sym_ip_qos_token1] = ACTIONS(1025), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1025), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1025), + [aux_sym_kex_algorithms_token1] = ACTIONS(1025), + [aux_sym_known_hosts_command_token1] = ACTIONS(1025), + [aux_sym_local_command_token1] = ACTIONS(1025), + [aux_sym_local_forward_token1] = ACTIONS(1025), + [aux_sym_log_level_token1] = ACTIONS(1025), + [aux_sym_log_verbose_token1] = ACTIONS(1025), + [aux_sym_macs_token1] = ACTIONS(1025), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1025), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1025), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1025), + [aux_sym_password_authentication_token1] = ACTIONS(1025), + [aux_sym_permit_local_command_token1] = ACTIONS(1025), + [aux_sym_permit_remote_open_token1] = ACTIONS(1025), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1025), + [aux_sym_port_token1] = ACTIONS(1025), + [aux_sym_preferred_authentications_token1] = ACTIONS(1025), + [aux_sym_protocol_token1] = ACTIONS(1025), + [aux_sym_proxy_command_token1] = ACTIONS(1025), + [aux_sym_proxy_jump_token1] = ACTIONS(1025), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1025), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1025), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1025), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1025), + [aux_sym_rekey_limit_token1] = ACTIONS(1025), + [aux_sym_remote_command_token1] = ACTIONS(1025), + [aux_sym_remote_forward_token1] = ACTIONS(1025), + [aux_sym_request_tty_token1] = ACTIONS(1025), + [aux_sym_required_rsa_size_token1] = ACTIONS(1025), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1025), + [aux_sym_security_key_provider_token1] = ACTIONS(1025), + [aux_sym_send_env_token1] = ACTIONS(1025), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1025), + [aux_sym_server_alive_interval_token1] = ACTIONS(1025), + [aux_sym_session_type_token1] = ACTIONS(1025), + [aux_sym_set_env_token1] = ACTIONS(1025), + [aux_sym_stdin_null_token1] = ACTIONS(1025), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1025), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1025), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1025), + [aux_sym_syslog_facility_token1] = ACTIONS(1025), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1025), + [aux_sym_keep_alive_token1] = ACTIONS(1025), + [aux_sym_tag_token1] = ACTIONS(1025), + [aux_sym_tunnel_token1] = ACTIONS(1027), + [aux_sym_tunnel_device_token1] = ACTIONS(1025), + [aux_sym_update_host_keys_token1] = ACTIONS(1025), + [aux_sym_use_keychain_token1] = ACTIONS(1025), + [aux_sym_use_roaming_token1] = ACTIONS(1025), + [aux_sym_user_token1] = ACTIONS(1027), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1025), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1025), + [aux_sym_visual_host_key_token1] = ACTIONS(1025), + [aux_sym_xauth_location_token1] = ACTIONS(1025), }, [622] = { - [ts_builtin_sym_end] = ACTIONS(586), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(588), - [aux_sym_match_token1] = ACTIONS(586), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(586), - [aux_sym_address_family_token1] = ACTIONS(586), - [aux_sym_batch_mode_token1] = ACTIONS(586), - [aux_sym_bind_address_token1] = ACTIONS(586), - [aux_sym_bind_interface_token1] = ACTIONS(586), - [aux_sym_canonical_domains_token1] = ACTIONS(586), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(586), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(586), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(586), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(586), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(586), - [aux_sym_certificate_file_token1] = ACTIONS(586), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(586), - [aux_sym_channel_timeout_token1] = ACTIONS(586), - [aux_sym_check_host_ip_token1] = ACTIONS(586), - [aux_sym_ciphers_token1] = ACTIONS(586), - [aux_sym_cipher_token1] = ACTIONS(588), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(586), - [aux_sym_compression_token1] = ACTIONS(586), - [aux_sym_connection_attempts_token1] = ACTIONS(586), - [aux_sym_connect_timeout_token1] = ACTIONS(586), - [aux_sym_control_master_token1] = ACTIONS(586), - [aux_sym_control_path_token1] = ACTIONS(586), - [aux_sym_control_persist_token1] = ACTIONS(586), - [aux_sym_dynamic_forward_token1] = ACTIONS(586), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(586), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(586), - [aux_sym_escape_char_token1] = ACTIONS(586), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(586), - [aux_sym_fingerprint_hash_token1] = ACTIONS(586), - [aux_sym_fork_after_authentication_token1] = ACTIONS(586), - [aux_sym_forward_agent_token1] = ACTIONS(586), - [aux_sym_forward_x11_token1] = ACTIONS(588), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(586), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(586), - [aux_sym_gateway_ports_token1] = ACTIONS(586), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(586), - [aux_sym_gssapi_authentication_token1] = ACTIONS(586), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(586), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(586), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(586), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(586), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(586), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(586), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(586), - [aux_sym_hash_known_hosts_token1] = ACTIONS(586), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(586), - [aux_sym_hostbased_authentication_token1] = ACTIONS(586), - [aux_sym_host_key_algorithms_token1] = ACTIONS(586), - [aux_sym_host_key_alias_token1] = ACTIONS(586), - [aux_sym_hostname_token1] = ACTIONS(586), - [aux_sym_identities_only_token1] = ACTIONS(586), - [aux_sym_identity_agent_token1] = ACTIONS(586), - [aux_sym_identity_file_token1] = ACTIONS(586), - [aux_sym_ignore_unknown_token1] = ACTIONS(586), - [aux_sym_include_token1] = ACTIONS(586), - [aux_sym_ip_qos_token1] = ACTIONS(586), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(586), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(586), - [aux_sym_kex_algorithms_token1] = ACTIONS(586), - [aux_sym_known_hosts_command_token1] = ACTIONS(586), - [aux_sym_local_command_token1] = ACTIONS(586), - [aux_sym_local_forward_token1] = ACTIONS(586), - [aux_sym_log_level_token1] = ACTIONS(586), - [aux_sym_log_verbose_token1] = ACTIONS(586), - [aux_sym_macs_token1] = ACTIONS(586), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(586), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(586), - [aux_sym_password_authentication_token1] = ACTIONS(586), - [aux_sym_permit_local_command_token1] = ACTIONS(586), - [aux_sym_permit_remote_open_token1] = ACTIONS(586), - [aux_sym_pkcs11_provider_token1] = ACTIONS(586), - [aux_sym_port_token1] = ACTIONS(586), - [aux_sym_preferred_authentications_token1] = ACTIONS(586), - [aux_sym_protocol_token1] = ACTIONS(586), - [aux_sym_proxy_command_token1] = ACTIONS(586), - [aux_sym_proxy_jump_token1] = ACTIONS(586), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(586), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(586), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(586), - [aux_sym_pubkey_authentication_token1] = ACTIONS(586), - [aux_sym_rekey_limit_token1] = ACTIONS(586), - [aux_sym_remote_command_token1] = ACTIONS(586), - [aux_sym_remote_forward_token1] = ACTIONS(586), - [aux_sym_request_tty_token1] = ACTIONS(586), - [aux_sym_required_rsa_size_token1] = ACTIONS(586), - [aux_sym_revoked_host_keys_token1] = ACTIONS(586), - [aux_sym_security_key_provider_token1] = ACTIONS(586), - [aux_sym_send_env_token1] = ACTIONS(586), - [aux_sym_server_alive_count_max_token1] = ACTIONS(586), - [aux_sym_server_alive_interval_token1] = ACTIONS(586), - [aux_sym_session_type_token1] = ACTIONS(586), - [aux_sym_set_env_token1] = ACTIONS(586), - [aux_sym_stdin_null_token1] = ACTIONS(586), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(586), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(586), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(586), - [aux_sym_syslog_facility_token1] = ACTIONS(586), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(586), - [aux_sym_keep_alive_token1] = ACTIONS(586), - [aux_sym_tag_token1] = ACTIONS(586), - [aux_sym_tunnel_token1] = ACTIONS(588), - [aux_sym_tunnel_device_token1] = ACTIONS(586), - [aux_sym_update_host_keys_token1] = ACTIONS(586), - [aux_sym_use_keychain_token1] = ACTIONS(586), - [aux_sym_use_roaming_token1] = ACTIONS(586), - [aux_sym_user_token1] = ACTIONS(588), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(586), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(586), - [aux_sym_visual_host_key_token1] = ACTIONS(586), - [aux_sym_xauth_location_token1] = ACTIONS(586), + [ts_builtin_sym_end] = ACTIONS(3483), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3485), + [aux_sym_match_token1] = ACTIONS(3483), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3483), + [aux_sym_address_family_token1] = ACTIONS(3483), + [aux_sym_batch_mode_token1] = ACTIONS(3483), + [aux_sym_bind_address_token1] = ACTIONS(3483), + [aux_sym_bind_interface_token1] = ACTIONS(3483), + [aux_sym_canonical_domains_token1] = ACTIONS(3483), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3483), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3483), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3483), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3483), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3483), + [aux_sym_certificate_file_token1] = ACTIONS(3483), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3483), + [aux_sym_channel_timeout_token1] = ACTIONS(3483), + [aux_sym_check_host_ip_token1] = ACTIONS(3483), + [aux_sym_ciphers_token1] = ACTIONS(3483), + [aux_sym_cipher_token1] = ACTIONS(3485), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3483), + [aux_sym_compression_token1] = ACTIONS(3483), + [aux_sym_connection_attempts_token1] = ACTIONS(3483), + [aux_sym_connect_timeout_token1] = ACTIONS(3483), + [aux_sym_control_master_token1] = ACTIONS(3483), + [aux_sym_control_path_token1] = ACTIONS(3483), + [aux_sym_control_persist_token1] = ACTIONS(3483), + [aux_sym_dynamic_forward_token1] = ACTIONS(3483), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3483), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3483), + [aux_sym_escape_char_token1] = ACTIONS(3483), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3483), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3483), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3483), + [aux_sym_forward_agent_token1] = ACTIONS(3483), + [aux_sym_forward_x11_token1] = ACTIONS(3485), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3483), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3483), + [aux_sym_gateway_ports_token1] = ACTIONS(3483), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3483), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3483), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3483), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3483), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3483), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3483), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3483), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3483), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3483), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3483), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3483), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3483), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3483), + [aux_sym_host_key_alias_token1] = ACTIONS(3483), + [aux_sym_hostname_token1] = ACTIONS(3483), + [aux_sym_identities_only_token1] = ACTIONS(3483), + [aux_sym_identity_agent_token1] = ACTIONS(3483), + [aux_sym_identity_file_token1] = ACTIONS(3483), + [aux_sym_ignore_unknown_token1] = ACTIONS(3483), + [aux_sym_include_token1] = ACTIONS(3483), + [aux_sym_ip_qos_token1] = ACTIONS(3483), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3483), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3483), + [aux_sym_kex_algorithms_token1] = ACTIONS(3483), + [aux_sym_known_hosts_command_token1] = ACTIONS(3483), + [aux_sym_local_command_token1] = ACTIONS(3483), + [aux_sym_local_forward_token1] = ACTIONS(3483), + [aux_sym_log_level_token1] = ACTIONS(3483), + [aux_sym_log_verbose_token1] = ACTIONS(3483), + [aux_sym_macs_token1] = ACTIONS(3483), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3483), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3483), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3483), + [aux_sym_password_authentication_token1] = ACTIONS(3483), + [aux_sym_permit_local_command_token1] = ACTIONS(3483), + [aux_sym_permit_remote_open_token1] = ACTIONS(3483), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3483), + [aux_sym_port_token1] = ACTIONS(3483), + [aux_sym_preferred_authentications_token1] = ACTIONS(3483), + [aux_sym_protocol_token1] = ACTIONS(3483), + [aux_sym_proxy_command_token1] = ACTIONS(3483), + [aux_sym_proxy_jump_token1] = ACTIONS(3483), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3483), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3483), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3483), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3483), + [aux_sym_rekey_limit_token1] = ACTIONS(3483), + [aux_sym_remote_command_token1] = ACTIONS(3483), + [aux_sym_remote_forward_token1] = ACTIONS(3483), + [aux_sym_request_tty_token1] = ACTIONS(3483), + [aux_sym_required_rsa_size_token1] = ACTIONS(3483), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3483), + [aux_sym_security_key_provider_token1] = ACTIONS(3483), + [aux_sym_send_env_token1] = ACTIONS(3483), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3483), + [aux_sym_server_alive_interval_token1] = ACTIONS(3483), + [aux_sym_session_type_token1] = ACTIONS(3483), + [aux_sym_set_env_token1] = ACTIONS(3483), + [aux_sym_stdin_null_token1] = ACTIONS(3483), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3483), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3483), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3483), + [aux_sym_syslog_facility_token1] = ACTIONS(3483), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3483), + [aux_sym_keep_alive_token1] = ACTIONS(3483), + [aux_sym_tag_token1] = ACTIONS(3483), + [aux_sym_tunnel_token1] = ACTIONS(3485), + [aux_sym_tunnel_device_token1] = ACTIONS(3483), + [aux_sym_update_host_keys_token1] = ACTIONS(3483), + [aux_sym_use_keychain_token1] = ACTIONS(3483), + [aux_sym_use_roaming_token1] = ACTIONS(3483), + [aux_sym_user_token1] = ACTIONS(3485), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3483), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3483), + [aux_sym_visual_host_key_token1] = ACTIONS(3483), + [aux_sym_xauth_location_token1] = ACTIONS(3483), }, [623] = { - [ts_builtin_sym_end] = ACTIONS(1170), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1172), - [aux_sym_match_token1] = ACTIONS(1170), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1170), - [aux_sym_address_family_token1] = ACTIONS(1170), - [aux_sym_batch_mode_token1] = ACTIONS(1170), - [aux_sym_bind_address_token1] = ACTIONS(1170), - [aux_sym_bind_interface_token1] = ACTIONS(1170), - [aux_sym_canonical_domains_token1] = ACTIONS(1170), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1170), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1170), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1170), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1170), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1170), - [aux_sym_certificate_file_token1] = ACTIONS(1170), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1170), - [aux_sym_channel_timeout_token1] = ACTIONS(1170), - [aux_sym_check_host_ip_token1] = ACTIONS(1170), - [aux_sym_ciphers_token1] = ACTIONS(1170), - [aux_sym_cipher_token1] = ACTIONS(1172), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1170), - [aux_sym_compression_token1] = ACTIONS(1170), - [aux_sym_connection_attempts_token1] = ACTIONS(1170), - [aux_sym_connect_timeout_token1] = ACTIONS(1170), - [aux_sym_control_master_token1] = ACTIONS(1170), - [aux_sym_control_path_token1] = ACTIONS(1170), - [aux_sym_control_persist_token1] = ACTIONS(1170), - [aux_sym_dynamic_forward_token1] = ACTIONS(1170), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1170), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1170), - [aux_sym_escape_char_token1] = ACTIONS(1170), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1170), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1170), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1170), - [aux_sym_forward_agent_token1] = ACTIONS(1170), - [aux_sym_forward_x11_token1] = ACTIONS(1172), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1170), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1170), - [aux_sym_gateway_ports_token1] = ACTIONS(1170), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1170), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1170), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1170), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1170), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1170), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1170), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1170), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1170), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1170), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1170), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1170), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1170), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1170), - [aux_sym_host_key_alias_token1] = ACTIONS(1170), - [aux_sym_hostname_token1] = ACTIONS(1170), - [aux_sym_identities_only_token1] = ACTIONS(1170), - [aux_sym_identity_agent_token1] = ACTIONS(1170), - [aux_sym_identity_file_token1] = ACTIONS(1170), - [aux_sym_ignore_unknown_token1] = ACTIONS(1170), - [aux_sym_include_token1] = ACTIONS(1170), - [aux_sym_ip_qos_token1] = ACTIONS(1170), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1170), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1170), - [aux_sym_kex_algorithms_token1] = ACTIONS(1170), - [aux_sym_known_hosts_command_token1] = ACTIONS(1170), - [aux_sym_local_command_token1] = ACTIONS(1170), - [aux_sym_local_forward_token1] = ACTIONS(1170), - [aux_sym_log_level_token1] = ACTIONS(1170), - [aux_sym_log_verbose_token1] = ACTIONS(1170), - [aux_sym_macs_token1] = ACTIONS(1170), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1170), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1170), - [aux_sym_password_authentication_token1] = ACTIONS(1170), - [aux_sym_permit_local_command_token1] = ACTIONS(1170), - [aux_sym_permit_remote_open_token1] = ACTIONS(1170), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1170), - [aux_sym_port_token1] = ACTIONS(1170), - [aux_sym_preferred_authentications_token1] = ACTIONS(1170), - [aux_sym_protocol_token1] = ACTIONS(1170), - [aux_sym_proxy_command_token1] = ACTIONS(1170), - [aux_sym_proxy_jump_token1] = ACTIONS(1170), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1170), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1170), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1170), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1170), - [aux_sym_rekey_limit_token1] = ACTIONS(1170), - [aux_sym_remote_command_token1] = ACTIONS(1170), - [aux_sym_remote_forward_token1] = ACTIONS(1170), - [aux_sym_request_tty_token1] = ACTIONS(1170), - [aux_sym_required_rsa_size_token1] = ACTIONS(1170), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1170), - [aux_sym_security_key_provider_token1] = ACTIONS(1170), - [aux_sym_send_env_token1] = ACTIONS(1170), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1170), - [aux_sym_server_alive_interval_token1] = ACTIONS(1170), - [aux_sym_session_type_token1] = ACTIONS(1170), - [aux_sym_set_env_token1] = ACTIONS(1170), - [aux_sym_stdin_null_token1] = ACTIONS(1170), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1170), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1170), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1170), - [aux_sym_syslog_facility_token1] = ACTIONS(1170), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1170), - [aux_sym_keep_alive_token1] = ACTIONS(1170), - [aux_sym_tag_token1] = ACTIONS(1170), - [aux_sym_tunnel_token1] = ACTIONS(1172), - [aux_sym_tunnel_device_token1] = ACTIONS(1170), - [aux_sym_update_host_keys_token1] = ACTIONS(1170), - [aux_sym_use_keychain_token1] = ACTIONS(1170), - [aux_sym_use_roaming_token1] = ACTIONS(1170), - [aux_sym_user_token1] = ACTIONS(1172), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1170), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1170), - [aux_sym_visual_host_key_token1] = ACTIONS(1170), - [aux_sym_xauth_location_token1] = ACTIONS(1170), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3489), + [aux_sym_match_token1] = ACTIONS(3487), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3487), + [aux_sym_address_family_token1] = ACTIONS(3487), + [aux_sym_batch_mode_token1] = ACTIONS(3487), + [aux_sym_bind_address_token1] = ACTIONS(3487), + [aux_sym_bind_interface_token1] = ACTIONS(3487), + [aux_sym_canonical_domains_token1] = ACTIONS(3487), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3487), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3487), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3487), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3487), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3487), + [aux_sym_certificate_file_token1] = ACTIONS(3487), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3487), + [aux_sym_channel_timeout_token1] = ACTIONS(3487), + [aux_sym_check_host_ip_token1] = ACTIONS(3487), + [aux_sym_ciphers_token1] = ACTIONS(3487), + [aux_sym_cipher_token1] = ACTIONS(3489), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3487), + [aux_sym_compression_token1] = ACTIONS(3487), + [aux_sym_connection_attempts_token1] = ACTIONS(3487), + [aux_sym_connect_timeout_token1] = ACTIONS(3487), + [aux_sym_control_master_token1] = ACTIONS(3487), + [aux_sym_control_path_token1] = ACTIONS(3487), + [aux_sym_control_persist_token1] = ACTIONS(3487), + [aux_sym_dynamic_forward_token1] = ACTIONS(3487), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3487), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3487), + [aux_sym_escape_char_token1] = ACTIONS(3487), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3487), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3487), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3487), + [aux_sym_forward_agent_token1] = ACTIONS(3487), + [aux_sym_forward_x11_token1] = ACTIONS(3489), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3487), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3487), + [aux_sym_gateway_ports_token1] = ACTIONS(3487), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3487), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3487), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3487), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3487), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3487), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3487), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3487), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3487), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3487), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3487), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3487), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3487), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3487), + [aux_sym_host_key_alias_token1] = ACTIONS(3487), + [aux_sym_hostname_token1] = ACTIONS(3487), + [aux_sym_identities_only_token1] = ACTIONS(3487), + [aux_sym_identity_agent_token1] = ACTIONS(3487), + [aux_sym_identity_file_token1] = ACTIONS(3487), + [aux_sym_ignore_unknown_token1] = ACTIONS(3487), + [aux_sym_include_token1] = ACTIONS(3487), + [aux_sym_ip_qos_token1] = ACTIONS(3487), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3487), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3487), + [aux_sym_kex_algorithms_token1] = ACTIONS(3487), + [aux_sym_known_hosts_command_token1] = ACTIONS(3487), + [aux_sym_local_command_token1] = ACTIONS(3487), + [aux_sym_local_forward_token1] = ACTIONS(3487), + [aux_sym_log_level_token1] = ACTIONS(3487), + [aux_sym_log_verbose_token1] = ACTIONS(3487), + [aux_sym_macs_token1] = ACTIONS(3487), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3487), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3487), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3487), + [aux_sym_password_authentication_token1] = ACTIONS(3487), + [aux_sym_permit_local_command_token1] = ACTIONS(3487), + [aux_sym_permit_remote_open_token1] = ACTIONS(3487), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3487), + [aux_sym_port_token1] = ACTIONS(3487), + [aux_sym_preferred_authentications_token1] = ACTIONS(3487), + [aux_sym_protocol_token1] = ACTIONS(3487), + [aux_sym_proxy_command_token1] = ACTIONS(3487), + [aux_sym_proxy_jump_token1] = ACTIONS(3487), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3487), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3487), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3487), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3487), + [aux_sym_rekey_limit_token1] = ACTIONS(3487), + [aux_sym_remote_command_token1] = ACTIONS(3487), + [aux_sym_remote_forward_token1] = ACTIONS(3487), + [aux_sym_request_tty_token1] = ACTIONS(3487), + [aux_sym_required_rsa_size_token1] = ACTIONS(3487), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3487), + [aux_sym_security_key_provider_token1] = ACTIONS(3487), + [aux_sym_send_env_token1] = ACTIONS(3487), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3487), + [aux_sym_server_alive_interval_token1] = ACTIONS(3487), + [aux_sym_session_type_token1] = ACTIONS(3487), + [aux_sym_set_env_token1] = ACTIONS(3487), + [aux_sym_stdin_null_token1] = ACTIONS(3487), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3487), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3487), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3487), + [aux_sym_syslog_facility_token1] = ACTIONS(3487), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3487), + [aux_sym_keep_alive_token1] = ACTIONS(3487), + [aux_sym_tag_token1] = ACTIONS(3487), + [aux_sym_tunnel_token1] = ACTIONS(3489), + [aux_sym_tunnel_device_token1] = ACTIONS(3487), + [aux_sym_update_host_keys_token1] = ACTIONS(3487), + [aux_sym_use_keychain_token1] = ACTIONS(3487), + [aux_sym_use_roaming_token1] = ACTIONS(3487), + [aux_sym_user_token1] = ACTIONS(3489), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3487), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3487), + [aux_sym_visual_host_key_token1] = ACTIONS(3487), + [aux_sym_xauth_location_token1] = ACTIONS(3487), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1550), - [aux_sym_match_token1] = ACTIONS(1548), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1548), - [aux_sym_address_family_token1] = ACTIONS(1548), - [aux_sym_batch_mode_token1] = ACTIONS(1548), - [aux_sym_bind_address_token1] = ACTIONS(1548), - [aux_sym_bind_interface_token1] = ACTIONS(1548), - [aux_sym_canonical_domains_token1] = ACTIONS(1548), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1548), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1548), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1548), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1548), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1548), - [aux_sym_certificate_file_token1] = ACTIONS(1548), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1548), - [aux_sym_channel_timeout_token1] = ACTIONS(1548), - [aux_sym_check_host_ip_token1] = ACTIONS(1548), - [aux_sym_ciphers_token1] = ACTIONS(1548), - [aux_sym_cipher_token1] = ACTIONS(1550), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1548), - [aux_sym_compression_token1] = ACTIONS(1548), - [aux_sym_connection_attempts_token1] = ACTIONS(1548), - [aux_sym_connect_timeout_token1] = ACTIONS(1548), - [aux_sym_control_master_token1] = ACTIONS(1548), - [aux_sym_control_path_token1] = ACTIONS(1548), - [aux_sym_control_persist_token1] = ACTIONS(1548), - [aux_sym_dynamic_forward_token1] = ACTIONS(1548), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1548), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1548), - [aux_sym_escape_char_token1] = ACTIONS(1548), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1548), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1548), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1548), - [aux_sym_forward_agent_token1] = ACTIONS(1548), - [aux_sym_forward_x11_token1] = ACTIONS(1550), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1548), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1548), - [aux_sym_gateway_ports_token1] = ACTIONS(1548), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1548), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1548), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1548), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1548), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1548), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1548), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1548), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1548), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1548), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1548), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1548), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1548), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1548), - [aux_sym_host_key_alias_token1] = ACTIONS(1548), - [aux_sym_hostname_token1] = ACTIONS(1548), - [aux_sym_identities_only_token1] = ACTIONS(1548), - [aux_sym_identity_agent_token1] = ACTIONS(1548), - [aux_sym_identity_file_token1] = ACTIONS(1548), - [aux_sym_ignore_unknown_token1] = ACTIONS(1548), - [aux_sym_include_token1] = ACTIONS(1548), - [aux_sym_ip_qos_token1] = ACTIONS(1548), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1548), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1548), - [aux_sym_kex_algorithms_token1] = ACTIONS(1548), - [aux_sym_known_hosts_command_token1] = ACTIONS(1548), - [aux_sym_local_command_token1] = ACTIONS(1548), - [aux_sym_local_forward_token1] = ACTIONS(1548), - [aux_sym_log_level_token1] = ACTIONS(1548), - [aux_sym_log_verbose_token1] = ACTIONS(1548), - [aux_sym_macs_token1] = ACTIONS(1548), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1548), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1548), - [aux_sym_password_authentication_token1] = ACTIONS(1548), - [aux_sym_permit_local_command_token1] = ACTIONS(1548), - [aux_sym_permit_remote_open_token1] = ACTIONS(1548), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1548), - [aux_sym_port_token1] = ACTIONS(1548), - [aux_sym_preferred_authentications_token1] = ACTIONS(1548), - [aux_sym_protocol_token1] = ACTIONS(1548), - [aux_sym_proxy_command_token1] = ACTIONS(1548), - [aux_sym_proxy_jump_token1] = ACTIONS(1548), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1548), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1548), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1548), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1548), - [aux_sym_rekey_limit_token1] = ACTIONS(1548), - [aux_sym_remote_command_token1] = ACTIONS(1548), - [aux_sym_remote_forward_token1] = ACTIONS(1548), - [aux_sym_request_tty_token1] = ACTIONS(1548), - [aux_sym_required_rsa_size_token1] = ACTIONS(1548), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1548), - [aux_sym_security_key_provider_token1] = ACTIONS(1548), - [aux_sym_send_env_token1] = ACTIONS(1548), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1548), - [aux_sym_server_alive_interval_token1] = ACTIONS(1548), - [aux_sym_session_type_token1] = ACTIONS(1548), - [aux_sym_set_env_token1] = ACTIONS(1548), - [aux_sym_stdin_null_token1] = ACTIONS(1548), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1548), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1548), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1548), - [aux_sym_syslog_facility_token1] = ACTIONS(1548), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1548), - [aux_sym_keep_alive_token1] = ACTIONS(1548), - [aux_sym_tag_token1] = ACTIONS(1548), - [aux_sym_tunnel_token1] = ACTIONS(1550), - [aux_sym_tunnel_device_token1] = ACTIONS(1548), - [aux_sym_update_host_keys_token1] = ACTIONS(1548), - [aux_sym_use_keychain_token1] = ACTIONS(1548), - [aux_sym_use_roaming_token1] = ACTIONS(1548), - [aux_sym_user_token1] = ACTIONS(1550), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1548), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1548), - [aux_sym_visual_host_key_token1] = ACTIONS(1548), - [aux_sym_xauth_location_token1] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3493), + [aux_sym_match_token1] = ACTIONS(3491), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3491), + [aux_sym_address_family_token1] = ACTIONS(3491), + [aux_sym_batch_mode_token1] = ACTIONS(3491), + [aux_sym_bind_address_token1] = ACTIONS(3491), + [aux_sym_bind_interface_token1] = ACTIONS(3491), + [aux_sym_canonical_domains_token1] = ACTIONS(3491), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3491), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3491), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3491), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3491), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3491), + [aux_sym_certificate_file_token1] = ACTIONS(3491), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3491), + [aux_sym_channel_timeout_token1] = ACTIONS(3491), + [aux_sym_check_host_ip_token1] = ACTIONS(3491), + [aux_sym_ciphers_token1] = ACTIONS(3491), + [aux_sym_cipher_token1] = ACTIONS(3493), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3491), + [aux_sym_compression_token1] = ACTIONS(3491), + [aux_sym_connection_attempts_token1] = ACTIONS(3491), + [aux_sym_connect_timeout_token1] = ACTIONS(3491), + [aux_sym_control_master_token1] = ACTIONS(3491), + [aux_sym_control_path_token1] = ACTIONS(3491), + [aux_sym_control_persist_token1] = ACTIONS(3491), + [aux_sym_dynamic_forward_token1] = ACTIONS(3491), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3491), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3491), + [aux_sym_escape_char_token1] = ACTIONS(3491), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3491), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3491), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3491), + [aux_sym_forward_agent_token1] = ACTIONS(3491), + [aux_sym_forward_x11_token1] = ACTIONS(3493), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3491), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3491), + [aux_sym_gateway_ports_token1] = ACTIONS(3491), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3491), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3491), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3491), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3491), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3491), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3491), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3491), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3491), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3491), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3491), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3491), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3491), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3491), + [aux_sym_host_key_alias_token1] = ACTIONS(3491), + [aux_sym_hostname_token1] = ACTIONS(3491), + [aux_sym_identities_only_token1] = ACTIONS(3491), + [aux_sym_identity_agent_token1] = ACTIONS(3491), + [aux_sym_identity_file_token1] = ACTIONS(3491), + [aux_sym_ignore_unknown_token1] = ACTIONS(3491), + [aux_sym_include_token1] = ACTIONS(3491), + [aux_sym_ip_qos_token1] = ACTIONS(3491), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3491), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3491), + [aux_sym_kex_algorithms_token1] = ACTIONS(3491), + [aux_sym_known_hosts_command_token1] = ACTIONS(3491), + [aux_sym_local_command_token1] = ACTIONS(3491), + [aux_sym_local_forward_token1] = ACTIONS(3491), + [aux_sym_log_level_token1] = ACTIONS(3491), + [aux_sym_log_verbose_token1] = ACTIONS(3491), + [aux_sym_macs_token1] = ACTIONS(3491), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3491), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3491), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3491), + [aux_sym_password_authentication_token1] = ACTIONS(3491), + [aux_sym_permit_local_command_token1] = ACTIONS(3491), + [aux_sym_permit_remote_open_token1] = ACTIONS(3491), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3491), + [aux_sym_port_token1] = ACTIONS(3491), + [aux_sym_preferred_authentications_token1] = ACTIONS(3491), + [aux_sym_protocol_token1] = ACTIONS(3491), + [aux_sym_proxy_command_token1] = ACTIONS(3491), + [aux_sym_proxy_jump_token1] = ACTIONS(3491), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3491), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3491), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3491), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3491), + [aux_sym_rekey_limit_token1] = ACTIONS(3491), + [aux_sym_remote_command_token1] = ACTIONS(3491), + [aux_sym_remote_forward_token1] = ACTIONS(3491), + [aux_sym_request_tty_token1] = ACTIONS(3491), + [aux_sym_required_rsa_size_token1] = ACTIONS(3491), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3491), + [aux_sym_security_key_provider_token1] = ACTIONS(3491), + [aux_sym_send_env_token1] = ACTIONS(3491), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3491), + [aux_sym_server_alive_interval_token1] = ACTIONS(3491), + [aux_sym_session_type_token1] = ACTIONS(3491), + [aux_sym_set_env_token1] = ACTIONS(3491), + [aux_sym_stdin_null_token1] = ACTIONS(3491), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3491), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3491), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3491), + [aux_sym_syslog_facility_token1] = ACTIONS(3491), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3491), + [aux_sym_keep_alive_token1] = ACTIONS(3491), + [aux_sym_tag_token1] = ACTIONS(3491), + [aux_sym_tunnel_token1] = ACTIONS(3493), + [aux_sym_tunnel_device_token1] = ACTIONS(3491), + [aux_sym_update_host_keys_token1] = ACTIONS(3491), + [aux_sym_use_keychain_token1] = ACTIONS(3491), + [aux_sym_use_roaming_token1] = ACTIONS(3491), + [aux_sym_user_token1] = ACTIONS(3493), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3491), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3491), + [aux_sym_visual_host_key_token1] = ACTIONS(3491), + [aux_sym_xauth_location_token1] = ACTIONS(3491), }, [625] = { - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3490), - [aux_sym_match_token1] = ACTIONS(3488), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3488), - [aux_sym_address_family_token1] = ACTIONS(3488), - [aux_sym_batch_mode_token1] = ACTIONS(3488), - [aux_sym_bind_address_token1] = ACTIONS(3488), - [aux_sym_bind_interface_token1] = ACTIONS(3488), - [aux_sym_canonical_domains_token1] = ACTIONS(3488), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3488), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3488), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3488), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3488), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3488), - [aux_sym_certificate_file_token1] = ACTIONS(3488), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3488), - [aux_sym_channel_timeout_token1] = ACTIONS(3488), - [aux_sym_check_host_ip_token1] = ACTIONS(3488), - [aux_sym_ciphers_token1] = ACTIONS(3488), - [aux_sym_cipher_token1] = ACTIONS(3490), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3488), - [aux_sym_compression_token1] = ACTIONS(3488), - [aux_sym_connection_attempts_token1] = ACTIONS(3488), - [aux_sym_connect_timeout_token1] = ACTIONS(3488), - [aux_sym_control_master_token1] = ACTIONS(3488), - [aux_sym_control_path_token1] = ACTIONS(3488), - [aux_sym_control_persist_token1] = ACTIONS(3488), - [aux_sym_dynamic_forward_token1] = ACTIONS(3488), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3488), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3488), - [aux_sym_escape_char_token1] = ACTIONS(3488), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3488), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3488), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3488), - [aux_sym_forward_agent_token1] = ACTIONS(3488), - [aux_sym_forward_x11_token1] = ACTIONS(3490), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3488), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3488), - [aux_sym_gateway_ports_token1] = ACTIONS(3488), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3488), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3488), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3488), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3488), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3488), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3488), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3488), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3488), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3488), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3488), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3488), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3488), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3488), - [aux_sym_host_key_alias_token1] = ACTIONS(3488), - [aux_sym_hostname_token1] = ACTIONS(3488), - [aux_sym_identities_only_token1] = ACTIONS(3488), - [aux_sym_identity_agent_token1] = ACTIONS(3488), - [aux_sym_identity_file_token1] = ACTIONS(3488), - [aux_sym_ignore_unknown_token1] = ACTIONS(3488), - [aux_sym_include_token1] = ACTIONS(3488), - [aux_sym_ip_qos_token1] = ACTIONS(3488), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3488), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3488), - [aux_sym_kex_algorithms_token1] = ACTIONS(3488), - [aux_sym_known_hosts_command_token1] = ACTIONS(3488), - [aux_sym_local_command_token1] = ACTIONS(3488), - [aux_sym_local_forward_token1] = ACTIONS(3488), - [aux_sym_log_level_token1] = ACTIONS(3488), - [aux_sym_log_verbose_token1] = ACTIONS(3488), - [aux_sym_macs_token1] = ACTIONS(3488), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3488), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3488), - [aux_sym_password_authentication_token1] = ACTIONS(3488), - [aux_sym_permit_local_command_token1] = ACTIONS(3488), - [aux_sym_permit_remote_open_token1] = ACTIONS(3488), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3488), - [aux_sym_port_token1] = ACTIONS(3488), - [aux_sym_preferred_authentications_token1] = ACTIONS(3488), - [aux_sym_protocol_token1] = ACTIONS(3488), - [aux_sym_proxy_command_token1] = ACTIONS(3488), - [aux_sym_proxy_jump_token1] = ACTIONS(3488), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3488), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3488), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3488), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3488), - [aux_sym_rekey_limit_token1] = ACTIONS(3488), - [aux_sym_remote_command_token1] = ACTIONS(3488), - [aux_sym_remote_forward_token1] = ACTIONS(3488), - [aux_sym_request_tty_token1] = ACTIONS(3488), - [aux_sym_required_rsa_size_token1] = ACTIONS(3488), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3488), - [aux_sym_security_key_provider_token1] = ACTIONS(3488), - [aux_sym_send_env_token1] = ACTIONS(3488), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3488), - [aux_sym_server_alive_interval_token1] = ACTIONS(3488), - [aux_sym_session_type_token1] = ACTIONS(3488), - [aux_sym_set_env_token1] = ACTIONS(3488), - [aux_sym_stdin_null_token1] = ACTIONS(3488), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3488), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3488), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3488), - [aux_sym_syslog_facility_token1] = ACTIONS(3488), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3488), - [aux_sym_keep_alive_token1] = ACTIONS(3488), - [aux_sym_tag_token1] = ACTIONS(3488), - [aux_sym_tunnel_token1] = ACTIONS(3490), - [aux_sym_tunnel_device_token1] = ACTIONS(3488), - [aux_sym_update_host_keys_token1] = ACTIONS(3488), - [aux_sym_use_keychain_token1] = ACTIONS(3488), - [aux_sym_use_roaming_token1] = ACTIONS(3488), - [aux_sym_user_token1] = ACTIONS(3490), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3488), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3488), - [aux_sym_visual_host_key_token1] = ACTIONS(3488), - [aux_sym_xauth_location_token1] = ACTIONS(3488), + [ts_builtin_sym_end] = ACTIONS(3495), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3497), + [aux_sym_match_token1] = ACTIONS(3495), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3495), + [aux_sym_address_family_token1] = ACTIONS(3495), + [aux_sym_batch_mode_token1] = ACTIONS(3495), + [aux_sym_bind_address_token1] = ACTIONS(3495), + [aux_sym_bind_interface_token1] = ACTIONS(3495), + [aux_sym_canonical_domains_token1] = ACTIONS(3495), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3495), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3495), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3495), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3495), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3495), + [aux_sym_certificate_file_token1] = ACTIONS(3495), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3495), + [aux_sym_channel_timeout_token1] = ACTIONS(3495), + [aux_sym_check_host_ip_token1] = ACTIONS(3495), + [aux_sym_ciphers_token1] = ACTIONS(3495), + [aux_sym_cipher_token1] = ACTIONS(3497), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3495), + [aux_sym_compression_token1] = ACTIONS(3495), + [aux_sym_connection_attempts_token1] = ACTIONS(3495), + [aux_sym_connect_timeout_token1] = ACTIONS(3495), + [aux_sym_control_master_token1] = ACTIONS(3495), + [aux_sym_control_path_token1] = ACTIONS(3495), + [aux_sym_control_persist_token1] = ACTIONS(3495), + [aux_sym_dynamic_forward_token1] = ACTIONS(3495), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3495), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3495), + [aux_sym_escape_char_token1] = ACTIONS(3495), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3495), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3495), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3495), + [aux_sym_forward_agent_token1] = ACTIONS(3495), + [aux_sym_forward_x11_token1] = ACTIONS(3497), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3495), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3495), + [aux_sym_gateway_ports_token1] = ACTIONS(3495), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3495), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3495), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3495), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3495), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3495), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3495), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3495), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3495), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3495), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3495), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3495), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3495), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3495), + [aux_sym_host_key_alias_token1] = ACTIONS(3495), + [aux_sym_hostname_token1] = ACTIONS(3495), + [aux_sym_identities_only_token1] = ACTIONS(3495), + [aux_sym_identity_agent_token1] = ACTIONS(3495), + [aux_sym_identity_file_token1] = ACTIONS(3495), + [aux_sym_ignore_unknown_token1] = ACTIONS(3495), + [aux_sym_include_token1] = ACTIONS(3495), + [aux_sym_ip_qos_token1] = ACTIONS(3495), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3495), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3495), + [aux_sym_kex_algorithms_token1] = ACTIONS(3495), + [aux_sym_known_hosts_command_token1] = ACTIONS(3495), + [aux_sym_local_command_token1] = ACTIONS(3495), + [aux_sym_local_forward_token1] = ACTIONS(3495), + [aux_sym_log_level_token1] = ACTIONS(3495), + [aux_sym_log_verbose_token1] = ACTIONS(3495), + [aux_sym_macs_token1] = ACTIONS(3495), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3495), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3495), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3495), + [aux_sym_password_authentication_token1] = ACTIONS(3495), + [aux_sym_permit_local_command_token1] = ACTIONS(3495), + [aux_sym_permit_remote_open_token1] = ACTIONS(3495), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3495), + [aux_sym_port_token1] = ACTIONS(3495), + [aux_sym_preferred_authentications_token1] = ACTIONS(3495), + [aux_sym_protocol_token1] = ACTIONS(3495), + [aux_sym_proxy_command_token1] = ACTIONS(3495), + [aux_sym_proxy_jump_token1] = ACTIONS(3495), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3495), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3495), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3495), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3495), + [aux_sym_rekey_limit_token1] = ACTIONS(3495), + [aux_sym_remote_command_token1] = ACTIONS(3495), + [aux_sym_remote_forward_token1] = ACTIONS(3495), + [aux_sym_request_tty_token1] = ACTIONS(3495), + [aux_sym_required_rsa_size_token1] = ACTIONS(3495), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3495), + [aux_sym_security_key_provider_token1] = ACTIONS(3495), + [aux_sym_send_env_token1] = ACTIONS(3495), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3495), + [aux_sym_server_alive_interval_token1] = ACTIONS(3495), + [aux_sym_session_type_token1] = ACTIONS(3495), + [aux_sym_set_env_token1] = ACTIONS(3495), + [aux_sym_stdin_null_token1] = ACTIONS(3495), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3495), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3495), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3495), + [aux_sym_syslog_facility_token1] = ACTIONS(3495), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3495), + [aux_sym_keep_alive_token1] = ACTIONS(3495), + [aux_sym_tag_token1] = ACTIONS(3495), + [aux_sym_tunnel_token1] = ACTIONS(3497), + [aux_sym_tunnel_device_token1] = ACTIONS(3495), + [aux_sym_update_host_keys_token1] = ACTIONS(3495), + [aux_sym_use_keychain_token1] = ACTIONS(3495), + [aux_sym_use_roaming_token1] = ACTIONS(3495), + [aux_sym_user_token1] = ACTIONS(3497), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3495), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3495), + [aux_sym_visual_host_key_token1] = ACTIONS(3495), + [aux_sym_xauth_location_token1] = ACTIONS(3495), }, [626] = { - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3494), - [aux_sym_match_token1] = ACTIONS(3492), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3492), - [aux_sym_address_family_token1] = ACTIONS(3492), - [aux_sym_batch_mode_token1] = ACTIONS(3492), - [aux_sym_bind_address_token1] = ACTIONS(3492), - [aux_sym_bind_interface_token1] = ACTIONS(3492), - [aux_sym_canonical_domains_token1] = ACTIONS(3492), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3492), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3492), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3492), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3492), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3492), - [aux_sym_certificate_file_token1] = ACTIONS(3492), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3492), - [aux_sym_channel_timeout_token1] = ACTIONS(3492), - [aux_sym_check_host_ip_token1] = ACTIONS(3492), - [aux_sym_ciphers_token1] = ACTIONS(3492), - [aux_sym_cipher_token1] = ACTIONS(3494), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3492), - [aux_sym_compression_token1] = ACTIONS(3492), - [aux_sym_connection_attempts_token1] = ACTIONS(3492), - [aux_sym_connect_timeout_token1] = ACTIONS(3492), - [aux_sym_control_master_token1] = ACTIONS(3492), - [aux_sym_control_path_token1] = ACTIONS(3492), - [aux_sym_control_persist_token1] = ACTIONS(3492), - [aux_sym_dynamic_forward_token1] = ACTIONS(3492), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3492), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3492), - [aux_sym_escape_char_token1] = ACTIONS(3492), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3492), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3492), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3492), - [aux_sym_forward_agent_token1] = ACTIONS(3492), - [aux_sym_forward_x11_token1] = ACTIONS(3494), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3492), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3492), - [aux_sym_gateway_ports_token1] = ACTIONS(3492), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3492), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3492), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3492), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3492), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3492), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3492), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3492), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3492), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3492), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3492), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3492), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3492), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3492), - [aux_sym_host_key_alias_token1] = ACTIONS(3492), - [aux_sym_hostname_token1] = ACTIONS(3492), - [aux_sym_identities_only_token1] = ACTIONS(3492), - [aux_sym_identity_agent_token1] = ACTIONS(3492), - [aux_sym_identity_file_token1] = ACTIONS(3492), - [aux_sym_ignore_unknown_token1] = ACTIONS(3492), - [aux_sym_include_token1] = ACTIONS(3492), - [aux_sym_ip_qos_token1] = ACTIONS(3492), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3492), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3492), - [aux_sym_kex_algorithms_token1] = ACTIONS(3492), - [aux_sym_known_hosts_command_token1] = ACTIONS(3492), - [aux_sym_local_command_token1] = ACTIONS(3492), - [aux_sym_local_forward_token1] = ACTIONS(3492), - [aux_sym_log_level_token1] = ACTIONS(3492), - [aux_sym_log_verbose_token1] = ACTIONS(3492), - [aux_sym_macs_token1] = ACTIONS(3492), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3492), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3492), - [aux_sym_password_authentication_token1] = ACTIONS(3492), - [aux_sym_permit_local_command_token1] = ACTIONS(3492), - [aux_sym_permit_remote_open_token1] = ACTIONS(3492), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3492), - [aux_sym_port_token1] = ACTIONS(3492), - [aux_sym_preferred_authentications_token1] = ACTIONS(3492), - [aux_sym_protocol_token1] = ACTIONS(3492), - [aux_sym_proxy_command_token1] = ACTIONS(3492), - [aux_sym_proxy_jump_token1] = ACTIONS(3492), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3492), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3492), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3492), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3492), - [aux_sym_rekey_limit_token1] = ACTIONS(3492), - [aux_sym_remote_command_token1] = ACTIONS(3492), - [aux_sym_remote_forward_token1] = ACTIONS(3492), - [aux_sym_request_tty_token1] = ACTIONS(3492), - [aux_sym_required_rsa_size_token1] = ACTIONS(3492), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3492), - [aux_sym_security_key_provider_token1] = ACTIONS(3492), - [aux_sym_send_env_token1] = ACTIONS(3492), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3492), - [aux_sym_server_alive_interval_token1] = ACTIONS(3492), - [aux_sym_session_type_token1] = ACTIONS(3492), - [aux_sym_set_env_token1] = ACTIONS(3492), - [aux_sym_stdin_null_token1] = ACTIONS(3492), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3492), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3492), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3492), - [aux_sym_syslog_facility_token1] = ACTIONS(3492), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3492), - [aux_sym_keep_alive_token1] = ACTIONS(3492), - [aux_sym_tag_token1] = ACTIONS(3492), - [aux_sym_tunnel_token1] = ACTIONS(3494), - [aux_sym_tunnel_device_token1] = ACTIONS(3492), - [aux_sym_update_host_keys_token1] = ACTIONS(3492), - [aux_sym_use_keychain_token1] = ACTIONS(3492), - [aux_sym_use_roaming_token1] = ACTIONS(3492), - [aux_sym_user_token1] = ACTIONS(3494), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3492), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3492), - [aux_sym_visual_host_key_token1] = ACTIONS(3492), - [aux_sym_xauth_location_token1] = ACTIONS(3492), + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3501), + [aux_sym_match_token1] = ACTIONS(3499), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3499), + [aux_sym_address_family_token1] = ACTIONS(3499), + [aux_sym_batch_mode_token1] = ACTIONS(3499), + [aux_sym_bind_address_token1] = ACTIONS(3499), + [aux_sym_bind_interface_token1] = ACTIONS(3499), + [aux_sym_canonical_domains_token1] = ACTIONS(3499), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3499), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3499), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3499), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3499), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3499), + [aux_sym_certificate_file_token1] = ACTIONS(3499), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3499), + [aux_sym_channel_timeout_token1] = ACTIONS(3499), + [aux_sym_check_host_ip_token1] = ACTIONS(3499), + [aux_sym_ciphers_token1] = ACTIONS(3499), + [aux_sym_cipher_token1] = ACTIONS(3501), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3499), + [aux_sym_compression_token1] = ACTIONS(3499), + [aux_sym_connection_attempts_token1] = ACTIONS(3499), + [aux_sym_connect_timeout_token1] = ACTIONS(3499), + [aux_sym_control_master_token1] = ACTIONS(3499), + [aux_sym_control_path_token1] = ACTIONS(3499), + [aux_sym_control_persist_token1] = ACTIONS(3499), + [aux_sym_dynamic_forward_token1] = ACTIONS(3499), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3499), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3499), + [aux_sym_escape_char_token1] = ACTIONS(3499), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3499), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3499), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3499), + [aux_sym_forward_agent_token1] = ACTIONS(3499), + [aux_sym_forward_x11_token1] = ACTIONS(3501), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3499), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3499), + [aux_sym_gateway_ports_token1] = ACTIONS(3499), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3499), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3499), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3499), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3499), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3499), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3499), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3499), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3499), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3499), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3499), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3499), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3499), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3499), + [aux_sym_host_key_alias_token1] = ACTIONS(3499), + [aux_sym_hostname_token1] = ACTIONS(3499), + [aux_sym_identities_only_token1] = ACTIONS(3499), + [aux_sym_identity_agent_token1] = ACTIONS(3499), + [aux_sym_identity_file_token1] = ACTIONS(3499), + [aux_sym_ignore_unknown_token1] = ACTIONS(3499), + [aux_sym_include_token1] = ACTIONS(3499), + [aux_sym_ip_qos_token1] = ACTIONS(3499), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3499), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3499), + [aux_sym_kex_algorithms_token1] = ACTIONS(3499), + [aux_sym_known_hosts_command_token1] = ACTIONS(3499), + [aux_sym_local_command_token1] = ACTIONS(3499), + [aux_sym_local_forward_token1] = ACTIONS(3499), + [aux_sym_log_level_token1] = ACTIONS(3499), + [aux_sym_log_verbose_token1] = ACTIONS(3499), + [aux_sym_macs_token1] = ACTIONS(3499), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3499), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3499), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3499), + [aux_sym_password_authentication_token1] = ACTIONS(3499), + [aux_sym_permit_local_command_token1] = ACTIONS(3499), + [aux_sym_permit_remote_open_token1] = ACTIONS(3499), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3499), + [aux_sym_port_token1] = ACTIONS(3499), + [aux_sym_preferred_authentications_token1] = ACTIONS(3499), + [aux_sym_protocol_token1] = ACTIONS(3499), + [aux_sym_proxy_command_token1] = ACTIONS(3499), + [aux_sym_proxy_jump_token1] = ACTIONS(3499), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3499), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3499), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3499), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3499), + [aux_sym_rekey_limit_token1] = ACTIONS(3499), + [aux_sym_remote_command_token1] = ACTIONS(3499), + [aux_sym_remote_forward_token1] = ACTIONS(3499), + [aux_sym_request_tty_token1] = ACTIONS(3499), + [aux_sym_required_rsa_size_token1] = ACTIONS(3499), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3499), + [aux_sym_security_key_provider_token1] = ACTIONS(3499), + [aux_sym_send_env_token1] = ACTIONS(3499), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3499), + [aux_sym_server_alive_interval_token1] = ACTIONS(3499), + [aux_sym_session_type_token1] = ACTIONS(3499), + [aux_sym_set_env_token1] = ACTIONS(3499), + [aux_sym_stdin_null_token1] = ACTIONS(3499), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3499), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3499), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3499), + [aux_sym_syslog_facility_token1] = ACTIONS(3499), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3499), + [aux_sym_keep_alive_token1] = ACTIONS(3499), + [aux_sym_tag_token1] = ACTIONS(3499), + [aux_sym_tunnel_token1] = ACTIONS(3501), + [aux_sym_tunnel_device_token1] = ACTIONS(3499), + [aux_sym_update_host_keys_token1] = ACTIONS(3499), + [aux_sym_use_keychain_token1] = ACTIONS(3499), + [aux_sym_use_roaming_token1] = ACTIONS(3499), + [aux_sym_user_token1] = ACTIONS(3501), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3499), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3499), + [aux_sym_visual_host_key_token1] = ACTIONS(3499), + [aux_sym_xauth_location_token1] = ACTIONS(3499), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(1554), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1556), - [aux_sym_match_token1] = ACTIONS(1554), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1554), - [aux_sym_address_family_token1] = ACTIONS(1554), - [aux_sym_batch_mode_token1] = ACTIONS(1554), - [aux_sym_bind_address_token1] = ACTIONS(1554), - [aux_sym_bind_interface_token1] = ACTIONS(1554), - [aux_sym_canonical_domains_token1] = ACTIONS(1554), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1554), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1554), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1554), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1554), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1554), - [aux_sym_certificate_file_token1] = ACTIONS(1554), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1554), - [aux_sym_channel_timeout_token1] = ACTIONS(1554), - [aux_sym_check_host_ip_token1] = ACTIONS(1554), - [aux_sym_ciphers_token1] = ACTIONS(1554), - [aux_sym_cipher_token1] = ACTIONS(1556), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1554), - [aux_sym_compression_token1] = ACTIONS(1554), - [aux_sym_connection_attempts_token1] = ACTIONS(1554), - [aux_sym_connect_timeout_token1] = ACTIONS(1554), - [aux_sym_control_master_token1] = ACTIONS(1554), - [aux_sym_control_path_token1] = ACTIONS(1554), - [aux_sym_control_persist_token1] = ACTIONS(1554), - [aux_sym_dynamic_forward_token1] = ACTIONS(1554), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1554), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1554), - [aux_sym_escape_char_token1] = ACTIONS(1554), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1554), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1554), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1554), - [aux_sym_forward_agent_token1] = ACTIONS(1554), - [aux_sym_forward_x11_token1] = ACTIONS(1556), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1554), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1554), - [aux_sym_gateway_ports_token1] = ACTIONS(1554), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1554), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1554), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1554), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1554), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1554), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1554), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1554), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1554), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1554), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1554), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1554), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1554), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1554), - [aux_sym_host_key_alias_token1] = ACTIONS(1554), - [aux_sym_hostname_token1] = ACTIONS(1554), - [aux_sym_identities_only_token1] = ACTIONS(1554), - [aux_sym_identity_agent_token1] = ACTIONS(1554), - [aux_sym_identity_file_token1] = ACTIONS(1554), - [aux_sym_ignore_unknown_token1] = ACTIONS(1554), - [aux_sym_include_token1] = ACTIONS(1554), - [aux_sym_ip_qos_token1] = ACTIONS(1554), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1554), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1554), - [aux_sym_kex_algorithms_token1] = ACTIONS(1554), - [aux_sym_known_hosts_command_token1] = ACTIONS(1554), - [aux_sym_local_command_token1] = ACTIONS(1554), - [aux_sym_local_forward_token1] = ACTIONS(1554), - [aux_sym_log_level_token1] = ACTIONS(1554), - [aux_sym_log_verbose_token1] = ACTIONS(1554), - [aux_sym_macs_token1] = ACTIONS(1554), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1554), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1554), - [aux_sym_password_authentication_token1] = ACTIONS(1554), - [aux_sym_permit_local_command_token1] = ACTIONS(1554), - [aux_sym_permit_remote_open_token1] = ACTIONS(1554), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1554), - [aux_sym_port_token1] = ACTIONS(1554), - [aux_sym_preferred_authentications_token1] = ACTIONS(1554), - [aux_sym_protocol_token1] = ACTIONS(1554), - [aux_sym_proxy_command_token1] = ACTIONS(1554), - [aux_sym_proxy_jump_token1] = ACTIONS(1554), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1554), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1554), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1554), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1554), - [aux_sym_rekey_limit_token1] = ACTIONS(1554), - [aux_sym_remote_command_token1] = ACTIONS(1554), - [aux_sym_remote_forward_token1] = ACTIONS(1554), - [aux_sym_request_tty_token1] = ACTIONS(1554), - [aux_sym_required_rsa_size_token1] = ACTIONS(1554), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1554), - [aux_sym_security_key_provider_token1] = ACTIONS(1554), - [aux_sym_send_env_token1] = ACTIONS(1554), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1554), - [aux_sym_server_alive_interval_token1] = ACTIONS(1554), - [aux_sym_session_type_token1] = ACTIONS(1554), - [aux_sym_set_env_token1] = ACTIONS(1554), - [aux_sym_stdin_null_token1] = ACTIONS(1554), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1554), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1554), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1554), - [aux_sym_syslog_facility_token1] = ACTIONS(1554), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1554), - [aux_sym_keep_alive_token1] = ACTIONS(1554), - [aux_sym_tag_token1] = ACTIONS(1554), - [aux_sym_tunnel_token1] = ACTIONS(1556), - [aux_sym_tunnel_device_token1] = ACTIONS(1554), - [aux_sym_update_host_keys_token1] = ACTIONS(1554), - [aux_sym_use_keychain_token1] = ACTIONS(1554), - [aux_sym_use_roaming_token1] = ACTIONS(1554), - [aux_sym_user_token1] = ACTIONS(1556), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1554), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1554), - [aux_sym_visual_host_key_token1] = ACTIONS(1554), - [aux_sym_xauth_location_token1] = ACTIONS(1554), + [ts_builtin_sym_end] = ACTIONS(1331), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1333), + [aux_sym_match_token1] = ACTIONS(1331), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1331), + [aux_sym_address_family_token1] = ACTIONS(1331), + [aux_sym_batch_mode_token1] = ACTIONS(1331), + [aux_sym_bind_address_token1] = ACTIONS(1331), + [aux_sym_bind_interface_token1] = ACTIONS(1331), + [aux_sym_canonical_domains_token1] = ACTIONS(1331), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1331), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1331), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1331), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1331), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1331), + [aux_sym_certificate_file_token1] = ACTIONS(1331), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1331), + [aux_sym_channel_timeout_token1] = ACTIONS(1331), + [aux_sym_check_host_ip_token1] = ACTIONS(1331), + [aux_sym_ciphers_token1] = ACTIONS(1331), + [aux_sym_cipher_token1] = ACTIONS(1333), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1331), + [aux_sym_compression_token1] = ACTIONS(1331), + [aux_sym_connection_attempts_token1] = ACTIONS(1331), + [aux_sym_connect_timeout_token1] = ACTIONS(1331), + [aux_sym_control_master_token1] = ACTIONS(1331), + [aux_sym_control_path_token1] = ACTIONS(1331), + [aux_sym_control_persist_token1] = ACTIONS(1331), + [aux_sym_dynamic_forward_token1] = ACTIONS(1331), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1331), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1331), + [aux_sym_escape_char_token1] = ACTIONS(1331), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1331), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1331), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1331), + [aux_sym_forward_agent_token1] = ACTIONS(1331), + [aux_sym_forward_x11_token1] = ACTIONS(1333), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1331), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1331), + [aux_sym_gateway_ports_token1] = ACTIONS(1331), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1331), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1331), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1331), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1331), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1331), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1331), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1331), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1331), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1331), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1331), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1331), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1331), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1331), + [aux_sym_host_key_alias_token1] = ACTIONS(1331), + [aux_sym_hostname_token1] = ACTIONS(1331), + [aux_sym_identities_only_token1] = ACTIONS(1331), + [aux_sym_identity_agent_token1] = ACTIONS(1331), + [aux_sym_identity_file_token1] = ACTIONS(1331), + [aux_sym_ignore_unknown_token1] = ACTIONS(1331), + [aux_sym_include_token1] = ACTIONS(1331), + [aux_sym_ip_qos_token1] = ACTIONS(1331), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1331), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1331), + [aux_sym_kex_algorithms_token1] = ACTIONS(1331), + [aux_sym_known_hosts_command_token1] = ACTIONS(1331), + [aux_sym_local_command_token1] = ACTIONS(1331), + [aux_sym_local_forward_token1] = ACTIONS(1331), + [aux_sym_log_level_token1] = ACTIONS(1331), + [aux_sym_log_verbose_token1] = ACTIONS(1331), + [aux_sym_macs_token1] = ACTIONS(1331), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1331), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1331), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1331), + [aux_sym_password_authentication_token1] = ACTIONS(1331), + [aux_sym_permit_local_command_token1] = ACTIONS(1331), + [aux_sym_permit_remote_open_token1] = ACTIONS(1331), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1331), + [aux_sym_port_token1] = ACTIONS(1331), + [aux_sym_preferred_authentications_token1] = ACTIONS(1331), + [aux_sym_protocol_token1] = ACTIONS(1331), + [aux_sym_proxy_command_token1] = ACTIONS(1331), + [aux_sym_proxy_jump_token1] = ACTIONS(1331), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1331), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1331), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1331), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1331), + [aux_sym_rekey_limit_token1] = ACTIONS(1331), + [aux_sym_remote_command_token1] = ACTIONS(1331), + [aux_sym_remote_forward_token1] = ACTIONS(1331), + [aux_sym_request_tty_token1] = ACTIONS(1331), + [aux_sym_required_rsa_size_token1] = ACTIONS(1331), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1331), + [aux_sym_security_key_provider_token1] = ACTIONS(1331), + [aux_sym_send_env_token1] = ACTIONS(1331), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1331), + [aux_sym_server_alive_interval_token1] = ACTIONS(1331), + [aux_sym_session_type_token1] = ACTIONS(1331), + [aux_sym_set_env_token1] = ACTIONS(1331), + [aux_sym_stdin_null_token1] = ACTIONS(1331), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1331), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1331), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1331), + [aux_sym_syslog_facility_token1] = ACTIONS(1331), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1331), + [aux_sym_keep_alive_token1] = ACTIONS(1331), + [aux_sym_tag_token1] = ACTIONS(1331), + [aux_sym_tunnel_token1] = ACTIONS(1333), + [aux_sym_tunnel_device_token1] = ACTIONS(1331), + [aux_sym_update_host_keys_token1] = ACTIONS(1331), + [aux_sym_use_keychain_token1] = ACTIONS(1331), + [aux_sym_use_roaming_token1] = ACTIONS(1331), + [aux_sym_user_token1] = ACTIONS(1333), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1331), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1331), + [aux_sym_visual_host_key_token1] = ACTIONS(1331), + [aux_sym_xauth_location_token1] = ACTIONS(1331), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(1164), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1166), - [aux_sym_match_token1] = ACTIONS(1164), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1164), - [aux_sym_address_family_token1] = ACTIONS(1164), - [aux_sym_batch_mode_token1] = ACTIONS(1164), - [aux_sym_bind_address_token1] = ACTIONS(1164), - [aux_sym_bind_interface_token1] = ACTIONS(1164), - [aux_sym_canonical_domains_token1] = ACTIONS(1164), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1164), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1164), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1164), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1164), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1164), - [aux_sym_certificate_file_token1] = ACTIONS(1164), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1164), - [aux_sym_channel_timeout_token1] = ACTIONS(1164), - [aux_sym_check_host_ip_token1] = ACTIONS(1164), - [aux_sym_ciphers_token1] = ACTIONS(1164), - [aux_sym_cipher_token1] = ACTIONS(1166), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1164), - [aux_sym_compression_token1] = ACTIONS(1164), - [aux_sym_connection_attempts_token1] = ACTIONS(1164), - [aux_sym_connect_timeout_token1] = ACTIONS(1164), - [aux_sym_control_master_token1] = ACTIONS(1164), - [aux_sym_control_path_token1] = ACTIONS(1164), - [aux_sym_control_persist_token1] = ACTIONS(1164), - [aux_sym_dynamic_forward_token1] = ACTIONS(1164), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1164), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1164), - [aux_sym_escape_char_token1] = ACTIONS(1164), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1164), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1164), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1164), - [aux_sym_forward_agent_token1] = ACTIONS(1164), - [aux_sym_forward_x11_token1] = ACTIONS(1166), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1164), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1164), - [aux_sym_gateway_ports_token1] = ACTIONS(1164), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1164), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1164), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1164), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1164), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1164), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1164), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1164), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1164), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1164), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1164), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1164), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1164), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1164), - [aux_sym_host_key_alias_token1] = ACTIONS(1164), - [aux_sym_hostname_token1] = ACTIONS(1164), - [aux_sym_identities_only_token1] = ACTIONS(1164), - [aux_sym_identity_agent_token1] = ACTIONS(1164), - [aux_sym_identity_file_token1] = ACTIONS(1164), - [aux_sym_ignore_unknown_token1] = ACTIONS(1164), - [aux_sym_include_token1] = ACTIONS(1164), - [aux_sym_ip_qos_token1] = ACTIONS(1164), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1164), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1164), - [aux_sym_kex_algorithms_token1] = ACTIONS(1164), - [aux_sym_known_hosts_command_token1] = ACTIONS(1164), - [aux_sym_local_command_token1] = ACTIONS(1164), - [aux_sym_local_forward_token1] = ACTIONS(1164), - [aux_sym_log_level_token1] = ACTIONS(1164), - [aux_sym_log_verbose_token1] = ACTIONS(1164), - [aux_sym_macs_token1] = ACTIONS(1164), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1164), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1164), - [aux_sym_password_authentication_token1] = ACTIONS(1164), - [aux_sym_permit_local_command_token1] = ACTIONS(1164), - [aux_sym_permit_remote_open_token1] = ACTIONS(1164), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1164), - [aux_sym_port_token1] = ACTIONS(1164), - [aux_sym_preferred_authentications_token1] = ACTIONS(1164), - [aux_sym_protocol_token1] = ACTIONS(1164), - [aux_sym_proxy_command_token1] = ACTIONS(1164), - [aux_sym_proxy_jump_token1] = ACTIONS(1164), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1164), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1164), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1164), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1164), - [aux_sym_rekey_limit_token1] = ACTIONS(1164), - [aux_sym_remote_command_token1] = ACTIONS(1164), - [aux_sym_remote_forward_token1] = ACTIONS(1164), - [aux_sym_request_tty_token1] = ACTIONS(1164), - [aux_sym_required_rsa_size_token1] = ACTIONS(1164), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1164), - [aux_sym_security_key_provider_token1] = ACTIONS(1164), - [aux_sym_send_env_token1] = ACTIONS(1164), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1164), - [aux_sym_server_alive_interval_token1] = ACTIONS(1164), - [aux_sym_session_type_token1] = ACTIONS(1164), - [aux_sym_set_env_token1] = ACTIONS(1164), - [aux_sym_stdin_null_token1] = ACTIONS(1164), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1164), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1164), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1164), - [aux_sym_syslog_facility_token1] = ACTIONS(1164), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1164), - [aux_sym_keep_alive_token1] = ACTIONS(1164), - [aux_sym_tag_token1] = ACTIONS(1164), - [aux_sym_tunnel_token1] = ACTIONS(1166), - [aux_sym_tunnel_device_token1] = ACTIONS(1164), - [aux_sym_update_host_keys_token1] = ACTIONS(1164), - [aux_sym_use_keychain_token1] = ACTIONS(1164), - [aux_sym_use_roaming_token1] = ACTIONS(1164), - [aux_sym_user_token1] = ACTIONS(1166), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1164), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1164), - [aux_sym_visual_host_key_token1] = ACTIONS(1164), - [aux_sym_xauth_location_token1] = ACTIONS(1164), + [ts_builtin_sym_end] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1339), + [aux_sym_match_token1] = ACTIONS(1337), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1337), + [aux_sym_address_family_token1] = ACTIONS(1337), + [aux_sym_batch_mode_token1] = ACTIONS(1337), + [aux_sym_bind_address_token1] = ACTIONS(1337), + [aux_sym_bind_interface_token1] = ACTIONS(1337), + [aux_sym_canonical_domains_token1] = ACTIONS(1337), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1337), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1337), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1337), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1337), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1337), + [aux_sym_certificate_file_token1] = ACTIONS(1337), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1337), + [aux_sym_channel_timeout_token1] = ACTIONS(1337), + [aux_sym_check_host_ip_token1] = ACTIONS(1337), + [aux_sym_ciphers_token1] = ACTIONS(1337), + [aux_sym_cipher_token1] = ACTIONS(1339), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1337), + [aux_sym_compression_token1] = ACTIONS(1337), + [aux_sym_connection_attempts_token1] = ACTIONS(1337), + [aux_sym_connect_timeout_token1] = ACTIONS(1337), + [aux_sym_control_master_token1] = ACTIONS(1337), + [aux_sym_control_path_token1] = ACTIONS(1337), + [aux_sym_control_persist_token1] = ACTIONS(1337), + [aux_sym_dynamic_forward_token1] = ACTIONS(1337), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1337), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1337), + [aux_sym_escape_char_token1] = ACTIONS(1337), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1337), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1337), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1337), + [aux_sym_forward_agent_token1] = ACTIONS(1337), + [aux_sym_forward_x11_token1] = ACTIONS(1339), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1337), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1337), + [aux_sym_gateway_ports_token1] = ACTIONS(1337), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1337), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1337), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1337), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1337), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1337), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1337), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1337), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1337), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1337), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1337), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1337), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1337), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1337), + [aux_sym_host_key_alias_token1] = ACTIONS(1337), + [aux_sym_hostname_token1] = ACTIONS(1337), + [aux_sym_identities_only_token1] = ACTIONS(1337), + [aux_sym_identity_agent_token1] = ACTIONS(1337), + [aux_sym_identity_file_token1] = ACTIONS(1337), + [aux_sym_ignore_unknown_token1] = ACTIONS(1337), + [aux_sym_include_token1] = ACTIONS(1337), + [aux_sym_ip_qos_token1] = ACTIONS(1337), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1337), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1337), + [aux_sym_kex_algorithms_token1] = ACTIONS(1337), + [aux_sym_known_hosts_command_token1] = ACTIONS(1337), + [aux_sym_local_command_token1] = ACTIONS(1337), + [aux_sym_local_forward_token1] = ACTIONS(1337), + [aux_sym_log_level_token1] = ACTIONS(1337), + [aux_sym_log_verbose_token1] = ACTIONS(1337), + [aux_sym_macs_token1] = ACTIONS(1337), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1337), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1337), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1337), + [aux_sym_password_authentication_token1] = ACTIONS(1337), + [aux_sym_permit_local_command_token1] = ACTIONS(1337), + [aux_sym_permit_remote_open_token1] = ACTIONS(1337), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1337), + [aux_sym_port_token1] = ACTIONS(1337), + [aux_sym_preferred_authentications_token1] = ACTIONS(1337), + [aux_sym_protocol_token1] = ACTIONS(1337), + [aux_sym_proxy_command_token1] = ACTIONS(1337), + [aux_sym_proxy_jump_token1] = ACTIONS(1337), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1337), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1337), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1337), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1337), + [aux_sym_rekey_limit_token1] = ACTIONS(1337), + [aux_sym_remote_command_token1] = ACTIONS(1337), + [aux_sym_remote_forward_token1] = ACTIONS(1337), + [aux_sym_request_tty_token1] = ACTIONS(1337), + [aux_sym_required_rsa_size_token1] = ACTIONS(1337), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1337), + [aux_sym_security_key_provider_token1] = ACTIONS(1337), + [aux_sym_send_env_token1] = ACTIONS(1337), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1337), + [aux_sym_server_alive_interval_token1] = ACTIONS(1337), + [aux_sym_session_type_token1] = ACTIONS(1337), + [aux_sym_set_env_token1] = ACTIONS(1337), + [aux_sym_stdin_null_token1] = ACTIONS(1337), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1337), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1337), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1337), + [aux_sym_syslog_facility_token1] = ACTIONS(1337), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1337), + [aux_sym_keep_alive_token1] = ACTIONS(1337), + [aux_sym_tag_token1] = ACTIONS(1337), + [aux_sym_tunnel_token1] = ACTIONS(1339), + [aux_sym_tunnel_device_token1] = ACTIONS(1337), + [aux_sym_update_host_keys_token1] = ACTIONS(1337), + [aux_sym_use_keychain_token1] = ACTIONS(1337), + [aux_sym_use_roaming_token1] = ACTIONS(1337), + [aux_sym_user_token1] = ACTIONS(1339), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1337), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1337), + [aux_sym_visual_host_key_token1] = ACTIONS(1337), + [aux_sym_xauth_location_token1] = ACTIONS(1337), }, [629] = { - [ts_builtin_sym_end] = ACTIONS(1158), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1160), - [aux_sym_match_token1] = ACTIONS(1158), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1158), - [aux_sym_address_family_token1] = ACTIONS(1158), - [aux_sym_batch_mode_token1] = ACTIONS(1158), - [aux_sym_bind_address_token1] = ACTIONS(1158), - [aux_sym_bind_interface_token1] = ACTIONS(1158), - [aux_sym_canonical_domains_token1] = ACTIONS(1158), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1158), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1158), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1158), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1158), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1158), - [aux_sym_certificate_file_token1] = ACTIONS(1158), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1158), - [aux_sym_channel_timeout_token1] = ACTIONS(1158), - [aux_sym_check_host_ip_token1] = ACTIONS(1158), - [aux_sym_ciphers_token1] = ACTIONS(1158), - [aux_sym_cipher_token1] = ACTIONS(1160), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1158), - [aux_sym_compression_token1] = ACTIONS(1158), - [aux_sym_connection_attempts_token1] = ACTIONS(1158), - [aux_sym_connect_timeout_token1] = ACTIONS(1158), - [aux_sym_control_master_token1] = ACTIONS(1158), - [aux_sym_control_path_token1] = ACTIONS(1158), - [aux_sym_control_persist_token1] = ACTIONS(1158), - [aux_sym_dynamic_forward_token1] = ACTIONS(1158), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1158), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1158), - [aux_sym_escape_char_token1] = ACTIONS(1158), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1158), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1158), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1158), - [aux_sym_forward_agent_token1] = ACTIONS(1158), - [aux_sym_forward_x11_token1] = ACTIONS(1160), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1158), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1158), - [aux_sym_gateway_ports_token1] = ACTIONS(1158), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1158), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1158), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1158), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1158), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1158), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1158), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1158), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1158), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1158), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1158), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1158), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1158), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1158), - [aux_sym_host_key_alias_token1] = ACTIONS(1158), - [aux_sym_hostname_token1] = ACTIONS(1158), - [aux_sym_identities_only_token1] = ACTIONS(1158), - [aux_sym_identity_agent_token1] = ACTIONS(1158), - [aux_sym_identity_file_token1] = ACTIONS(1158), - [aux_sym_ignore_unknown_token1] = ACTIONS(1158), - [aux_sym_include_token1] = ACTIONS(1158), - [aux_sym_ip_qos_token1] = ACTIONS(1158), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1158), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1158), - [aux_sym_kex_algorithms_token1] = ACTIONS(1158), - [aux_sym_known_hosts_command_token1] = ACTIONS(1158), - [aux_sym_local_command_token1] = ACTIONS(1158), - [aux_sym_local_forward_token1] = ACTIONS(1158), - [aux_sym_log_level_token1] = ACTIONS(1158), - [aux_sym_log_verbose_token1] = ACTIONS(1158), - [aux_sym_macs_token1] = ACTIONS(1158), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1158), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1158), - [aux_sym_password_authentication_token1] = ACTIONS(1158), - [aux_sym_permit_local_command_token1] = ACTIONS(1158), - [aux_sym_permit_remote_open_token1] = ACTIONS(1158), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1158), - [aux_sym_port_token1] = ACTIONS(1158), - [aux_sym_preferred_authentications_token1] = ACTIONS(1158), - [aux_sym_protocol_token1] = ACTIONS(1158), - [aux_sym_proxy_command_token1] = ACTIONS(1158), - [aux_sym_proxy_jump_token1] = ACTIONS(1158), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1158), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1158), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1158), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1158), - [aux_sym_rekey_limit_token1] = ACTIONS(1158), - [aux_sym_remote_command_token1] = ACTIONS(1158), - [aux_sym_remote_forward_token1] = ACTIONS(1158), - [aux_sym_request_tty_token1] = ACTIONS(1158), - [aux_sym_required_rsa_size_token1] = ACTIONS(1158), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1158), - [aux_sym_security_key_provider_token1] = ACTIONS(1158), - [aux_sym_send_env_token1] = ACTIONS(1158), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1158), - [aux_sym_server_alive_interval_token1] = ACTIONS(1158), - [aux_sym_session_type_token1] = ACTIONS(1158), - [aux_sym_set_env_token1] = ACTIONS(1158), - [aux_sym_stdin_null_token1] = ACTIONS(1158), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1158), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1158), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1158), - [aux_sym_syslog_facility_token1] = ACTIONS(1158), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1158), - [aux_sym_keep_alive_token1] = ACTIONS(1158), - [aux_sym_tag_token1] = ACTIONS(1158), - [aux_sym_tunnel_token1] = ACTIONS(1160), - [aux_sym_tunnel_device_token1] = ACTIONS(1158), - [aux_sym_update_host_keys_token1] = ACTIONS(1158), - [aux_sym_use_keychain_token1] = ACTIONS(1158), - [aux_sym_use_roaming_token1] = ACTIONS(1158), - [aux_sym_user_token1] = ACTIONS(1160), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1158), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1158), - [aux_sym_visual_host_key_token1] = ACTIONS(1158), - [aux_sym_xauth_location_token1] = ACTIONS(1158), + [ts_builtin_sym_end] = ACTIONS(1019), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1021), + [aux_sym_match_token1] = ACTIONS(1019), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1019), + [aux_sym_address_family_token1] = ACTIONS(1019), + [aux_sym_batch_mode_token1] = ACTIONS(1019), + [aux_sym_bind_address_token1] = ACTIONS(1019), + [aux_sym_bind_interface_token1] = ACTIONS(1019), + [aux_sym_canonical_domains_token1] = ACTIONS(1019), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1019), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1019), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1019), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1019), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1019), + [aux_sym_certificate_file_token1] = ACTIONS(1019), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1019), + [aux_sym_channel_timeout_token1] = ACTIONS(1019), + [aux_sym_check_host_ip_token1] = ACTIONS(1019), + [aux_sym_ciphers_token1] = ACTIONS(1019), + [aux_sym_cipher_token1] = ACTIONS(1021), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1019), + [aux_sym_compression_token1] = ACTIONS(1019), + [aux_sym_connection_attempts_token1] = ACTIONS(1019), + [aux_sym_connect_timeout_token1] = ACTIONS(1019), + [aux_sym_control_master_token1] = ACTIONS(1019), + [aux_sym_control_path_token1] = ACTIONS(1019), + [aux_sym_control_persist_token1] = ACTIONS(1019), + [aux_sym_dynamic_forward_token1] = ACTIONS(1019), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1019), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1019), + [aux_sym_escape_char_token1] = ACTIONS(1019), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1019), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1019), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1019), + [aux_sym_forward_agent_token1] = ACTIONS(1019), + [aux_sym_forward_x11_token1] = ACTIONS(1021), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1019), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1019), + [aux_sym_gateway_ports_token1] = ACTIONS(1019), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1019), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1019), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1019), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1019), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1019), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1019), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1019), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1019), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1019), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1019), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1019), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1019), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1019), + [aux_sym_host_key_alias_token1] = ACTIONS(1019), + [aux_sym_hostname_token1] = ACTIONS(1019), + [aux_sym_identities_only_token1] = ACTIONS(1019), + [aux_sym_identity_agent_token1] = ACTIONS(1019), + [aux_sym_identity_file_token1] = ACTIONS(1019), + [aux_sym_ignore_unknown_token1] = ACTIONS(1019), + [aux_sym_include_token1] = ACTIONS(1019), + [aux_sym_ip_qos_token1] = ACTIONS(1019), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1019), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1019), + [aux_sym_kex_algorithms_token1] = ACTIONS(1019), + [aux_sym_known_hosts_command_token1] = ACTIONS(1019), + [aux_sym_local_command_token1] = ACTIONS(1019), + [aux_sym_local_forward_token1] = ACTIONS(1019), + [aux_sym_log_level_token1] = ACTIONS(1019), + [aux_sym_log_verbose_token1] = ACTIONS(1019), + [aux_sym_macs_token1] = ACTIONS(1019), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1019), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1019), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1019), + [aux_sym_password_authentication_token1] = ACTIONS(1019), + [aux_sym_permit_local_command_token1] = ACTIONS(1019), + [aux_sym_permit_remote_open_token1] = ACTIONS(1019), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1019), + [aux_sym_port_token1] = ACTIONS(1019), + [aux_sym_preferred_authentications_token1] = ACTIONS(1019), + [aux_sym_protocol_token1] = ACTIONS(1019), + [aux_sym_proxy_command_token1] = ACTIONS(1019), + [aux_sym_proxy_jump_token1] = ACTIONS(1019), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1019), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1019), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1019), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1019), + [aux_sym_rekey_limit_token1] = ACTIONS(1019), + [aux_sym_remote_command_token1] = ACTIONS(1019), + [aux_sym_remote_forward_token1] = ACTIONS(1019), + [aux_sym_request_tty_token1] = ACTIONS(1019), + [aux_sym_required_rsa_size_token1] = ACTIONS(1019), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1019), + [aux_sym_security_key_provider_token1] = ACTIONS(1019), + [aux_sym_send_env_token1] = ACTIONS(1019), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1019), + [aux_sym_server_alive_interval_token1] = ACTIONS(1019), + [aux_sym_session_type_token1] = ACTIONS(1019), + [aux_sym_set_env_token1] = ACTIONS(1019), + [aux_sym_stdin_null_token1] = ACTIONS(1019), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1019), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1019), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1019), + [aux_sym_syslog_facility_token1] = ACTIONS(1019), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1019), + [aux_sym_keep_alive_token1] = ACTIONS(1019), + [aux_sym_tag_token1] = ACTIONS(1019), + [aux_sym_tunnel_token1] = ACTIONS(1021), + [aux_sym_tunnel_device_token1] = ACTIONS(1019), + [aux_sym_update_host_keys_token1] = ACTIONS(1019), + [aux_sym_use_keychain_token1] = ACTIONS(1019), + [aux_sym_use_roaming_token1] = ACTIONS(1019), + [aux_sym_user_token1] = ACTIONS(1021), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1019), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1019), + [aux_sym_visual_host_key_token1] = ACTIONS(1019), + [aux_sym_xauth_location_token1] = ACTIONS(1019), }, [630] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1562), - [aux_sym_match_token1] = ACTIONS(1560), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1560), - [aux_sym_address_family_token1] = ACTIONS(1560), - [aux_sym_batch_mode_token1] = ACTIONS(1560), - [aux_sym_bind_address_token1] = ACTIONS(1560), - [aux_sym_bind_interface_token1] = ACTIONS(1560), - [aux_sym_canonical_domains_token1] = ACTIONS(1560), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1560), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1560), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1560), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1560), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1560), - [aux_sym_certificate_file_token1] = ACTIONS(1560), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1560), - [aux_sym_channel_timeout_token1] = ACTIONS(1560), - [aux_sym_check_host_ip_token1] = ACTIONS(1560), - [aux_sym_ciphers_token1] = ACTIONS(1560), - [aux_sym_cipher_token1] = ACTIONS(1562), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1560), - [aux_sym_compression_token1] = ACTIONS(1560), - [aux_sym_connection_attempts_token1] = ACTIONS(1560), - [aux_sym_connect_timeout_token1] = ACTIONS(1560), - [aux_sym_control_master_token1] = ACTIONS(1560), - [aux_sym_control_path_token1] = ACTIONS(1560), - [aux_sym_control_persist_token1] = ACTIONS(1560), - [aux_sym_dynamic_forward_token1] = ACTIONS(1560), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1560), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1560), - [aux_sym_escape_char_token1] = ACTIONS(1560), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1560), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1560), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1560), - [aux_sym_forward_agent_token1] = ACTIONS(1560), - [aux_sym_forward_x11_token1] = ACTIONS(1562), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1560), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1560), - [aux_sym_gateway_ports_token1] = ACTIONS(1560), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1560), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1560), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1560), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1560), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1560), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1560), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1560), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1560), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1560), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1560), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1560), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1560), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1560), - [aux_sym_host_key_alias_token1] = ACTIONS(1560), - [aux_sym_hostname_token1] = ACTIONS(1560), - [aux_sym_identities_only_token1] = ACTIONS(1560), - [aux_sym_identity_agent_token1] = ACTIONS(1560), - [aux_sym_identity_file_token1] = ACTIONS(1560), - [aux_sym_ignore_unknown_token1] = ACTIONS(1560), - [aux_sym_include_token1] = ACTIONS(1560), - [aux_sym_ip_qos_token1] = ACTIONS(1560), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1560), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1560), - [aux_sym_kex_algorithms_token1] = ACTIONS(1560), - [aux_sym_known_hosts_command_token1] = ACTIONS(1560), - [aux_sym_local_command_token1] = ACTIONS(1560), - [aux_sym_local_forward_token1] = ACTIONS(1560), - [aux_sym_log_level_token1] = ACTIONS(1560), - [aux_sym_log_verbose_token1] = ACTIONS(1560), - [aux_sym_macs_token1] = ACTIONS(1560), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1560), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1560), - [aux_sym_password_authentication_token1] = ACTIONS(1560), - [aux_sym_permit_local_command_token1] = ACTIONS(1560), - [aux_sym_permit_remote_open_token1] = ACTIONS(1560), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1560), - [aux_sym_port_token1] = ACTIONS(1560), - [aux_sym_preferred_authentications_token1] = ACTIONS(1560), - [aux_sym_protocol_token1] = ACTIONS(1560), - [aux_sym_proxy_command_token1] = ACTIONS(1560), - [aux_sym_proxy_jump_token1] = ACTIONS(1560), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1560), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1560), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1560), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1560), - [aux_sym_rekey_limit_token1] = ACTIONS(1560), - [aux_sym_remote_command_token1] = ACTIONS(1560), - [aux_sym_remote_forward_token1] = ACTIONS(1560), - [aux_sym_request_tty_token1] = ACTIONS(1560), - [aux_sym_required_rsa_size_token1] = ACTIONS(1560), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1560), - [aux_sym_security_key_provider_token1] = ACTIONS(1560), - [aux_sym_send_env_token1] = ACTIONS(1560), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1560), - [aux_sym_server_alive_interval_token1] = ACTIONS(1560), - [aux_sym_session_type_token1] = ACTIONS(1560), - [aux_sym_set_env_token1] = ACTIONS(1560), - [aux_sym_stdin_null_token1] = ACTIONS(1560), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1560), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1560), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1560), - [aux_sym_syslog_facility_token1] = ACTIONS(1560), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1560), - [aux_sym_keep_alive_token1] = ACTIONS(1560), - [aux_sym_tag_token1] = ACTIONS(1560), - [aux_sym_tunnel_token1] = ACTIONS(1562), - [aux_sym_tunnel_device_token1] = ACTIONS(1560), - [aux_sym_update_host_keys_token1] = ACTIONS(1560), - [aux_sym_use_keychain_token1] = ACTIONS(1560), - [aux_sym_use_roaming_token1] = ACTIONS(1560), - [aux_sym_user_token1] = ACTIONS(1562), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1560), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1560), - [aux_sym_visual_host_key_token1] = ACTIONS(1560), - [aux_sym_xauth_location_token1] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1345), + [aux_sym_match_token1] = ACTIONS(1343), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1343), + [aux_sym_address_family_token1] = ACTIONS(1343), + [aux_sym_batch_mode_token1] = ACTIONS(1343), + [aux_sym_bind_address_token1] = ACTIONS(1343), + [aux_sym_bind_interface_token1] = ACTIONS(1343), + [aux_sym_canonical_domains_token1] = ACTIONS(1343), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1343), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1343), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1343), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1343), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1343), + [aux_sym_certificate_file_token1] = ACTIONS(1343), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1343), + [aux_sym_channel_timeout_token1] = ACTIONS(1343), + [aux_sym_check_host_ip_token1] = ACTIONS(1343), + [aux_sym_ciphers_token1] = ACTIONS(1343), + [aux_sym_cipher_token1] = ACTIONS(1345), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1343), + [aux_sym_compression_token1] = ACTIONS(1343), + [aux_sym_connection_attempts_token1] = ACTIONS(1343), + [aux_sym_connect_timeout_token1] = ACTIONS(1343), + [aux_sym_control_master_token1] = ACTIONS(1343), + [aux_sym_control_path_token1] = ACTIONS(1343), + [aux_sym_control_persist_token1] = ACTIONS(1343), + [aux_sym_dynamic_forward_token1] = ACTIONS(1343), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1343), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1343), + [aux_sym_escape_char_token1] = ACTIONS(1343), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1343), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1343), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1343), + [aux_sym_forward_agent_token1] = ACTIONS(1343), + [aux_sym_forward_x11_token1] = ACTIONS(1345), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1343), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1343), + [aux_sym_gateway_ports_token1] = ACTIONS(1343), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1343), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1343), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1343), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1343), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1343), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1343), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1343), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1343), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1343), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1343), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1343), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1343), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1343), + [aux_sym_host_key_alias_token1] = ACTIONS(1343), + [aux_sym_hostname_token1] = ACTIONS(1343), + [aux_sym_identities_only_token1] = ACTIONS(1343), + [aux_sym_identity_agent_token1] = ACTIONS(1343), + [aux_sym_identity_file_token1] = ACTIONS(1343), + [aux_sym_ignore_unknown_token1] = ACTIONS(1343), + [aux_sym_include_token1] = ACTIONS(1343), + [aux_sym_ip_qos_token1] = ACTIONS(1343), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1343), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1343), + [aux_sym_kex_algorithms_token1] = ACTIONS(1343), + [aux_sym_known_hosts_command_token1] = ACTIONS(1343), + [aux_sym_local_command_token1] = ACTIONS(1343), + [aux_sym_local_forward_token1] = ACTIONS(1343), + [aux_sym_log_level_token1] = ACTIONS(1343), + [aux_sym_log_verbose_token1] = ACTIONS(1343), + [aux_sym_macs_token1] = ACTIONS(1343), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1343), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1343), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1343), + [aux_sym_password_authentication_token1] = ACTIONS(1343), + [aux_sym_permit_local_command_token1] = ACTIONS(1343), + [aux_sym_permit_remote_open_token1] = ACTIONS(1343), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1343), + [aux_sym_port_token1] = ACTIONS(1343), + [aux_sym_preferred_authentications_token1] = ACTIONS(1343), + [aux_sym_protocol_token1] = ACTIONS(1343), + [aux_sym_proxy_command_token1] = ACTIONS(1343), + [aux_sym_proxy_jump_token1] = ACTIONS(1343), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1343), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1343), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1343), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1343), + [aux_sym_rekey_limit_token1] = ACTIONS(1343), + [aux_sym_remote_command_token1] = ACTIONS(1343), + [aux_sym_remote_forward_token1] = ACTIONS(1343), + [aux_sym_request_tty_token1] = ACTIONS(1343), + [aux_sym_required_rsa_size_token1] = ACTIONS(1343), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1343), + [aux_sym_security_key_provider_token1] = ACTIONS(1343), + [aux_sym_send_env_token1] = ACTIONS(1343), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1343), + [aux_sym_server_alive_interval_token1] = ACTIONS(1343), + [aux_sym_session_type_token1] = ACTIONS(1343), + [aux_sym_set_env_token1] = ACTIONS(1343), + [aux_sym_stdin_null_token1] = ACTIONS(1343), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1343), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1343), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1343), + [aux_sym_syslog_facility_token1] = ACTIONS(1343), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1343), + [aux_sym_keep_alive_token1] = ACTIONS(1343), + [aux_sym_tag_token1] = ACTIONS(1343), + [aux_sym_tunnel_token1] = ACTIONS(1345), + [aux_sym_tunnel_device_token1] = ACTIONS(1343), + [aux_sym_update_host_keys_token1] = ACTIONS(1343), + [aux_sym_use_keychain_token1] = ACTIONS(1343), + [aux_sym_use_roaming_token1] = ACTIONS(1343), + [aux_sym_user_token1] = ACTIONS(1345), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1343), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1343), + [aux_sym_visual_host_key_token1] = ACTIONS(1343), + [aux_sym_xauth_location_token1] = ACTIONS(1343), }, [631] = { - [ts_builtin_sym_end] = ACTIONS(1152), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1154), - [aux_sym_match_token1] = ACTIONS(1152), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1152), - [aux_sym_address_family_token1] = ACTIONS(1152), - [aux_sym_batch_mode_token1] = ACTIONS(1152), - [aux_sym_bind_address_token1] = ACTIONS(1152), - [aux_sym_bind_interface_token1] = ACTIONS(1152), - [aux_sym_canonical_domains_token1] = ACTIONS(1152), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1152), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1152), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1152), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1152), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1152), - [aux_sym_certificate_file_token1] = ACTIONS(1152), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1152), - [aux_sym_channel_timeout_token1] = ACTIONS(1152), - [aux_sym_check_host_ip_token1] = ACTIONS(1152), - [aux_sym_ciphers_token1] = ACTIONS(1152), - [aux_sym_cipher_token1] = ACTIONS(1154), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1152), - [aux_sym_compression_token1] = ACTIONS(1152), - [aux_sym_connection_attempts_token1] = ACTIONS(1152), - [aux_sym_connect_timeout_token1] = ACTIONS(1152), - [aux_sym_control_master_token1] = ACTIONS(1152), - [aux_sym_control_path_token1] = ACTIONS(1152), - [aux_sym_control_persist_token1] = ACTIONS(1152), - [aux_sym_dynamic_forward_token1] = ACTIONS(1152), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1152), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1152), - [aux_sym_escape_char_token1] = ACTIONS(1152), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1152), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1152), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1152), - [aux_sym_forward_agent_token1] = ACTIONS(1152), - [aux_sym_forward_x11_token1] = ACTIONS(1154), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1152), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1152), - [aux_sym_gateway_ports_token1] = ACTIONS(1152), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1152), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1152), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1152), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1152), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1152), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1152), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1152), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1152), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1152), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1152), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1152), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1152), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1152), - [aux_sym_host_key_alias_token1] = ACTIONS(1152), - [aux_sym_hostname_token1] = ACTIONS(1152), - [aux_sym_identities_only_token1] = ACTIONS(1152), - [aux_sym_identity_agent_token1] = ACTIONS(1152), - [aux_sym_identity_file_token1] = ACTIONS(1152), - [aux_sym_ignore_unknown_token1] = ACTIONS(1152), - [aux_sym_include_token1] = ACTIONS(1152), - [aux_sym_ip_qos_token1] = ACTIONS(1152), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1152), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1152), - [aux_sym_kex_algorithms_token1] = ACTIONS(1152), - [aux_sym_known_hosts_command_token1] = ACTIONS(1152), - [aux_sym_local_command_token1] = ACTIONS(1152), - [aux_sym_local_forward_token1] = ACTIONS(1152), - [aux_sym_log_level_token1] = ACTIONS(1152), - [aux_sym_log_verbose_token1] = ACTIONS(1152), - [aux_sym_macs_token1] = ACTIONS(1152), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1152), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1152), - [aux_sym_password_authentication_token1] = ACTIONS(1152), - [aux_sym_permit_local_command_token1] = ACTIONS(1152), - [aux_sym_permit_remote_open_token1] = ACTIONS(1152), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1152), - [aux_sym_port_token1] = ACTIONS(1152), - [aux_sym_preferred_authentications_token1] = ACTIONS(1152), - [aux_sym_protocol_token1] = ACTIONS(1152), - [aux_sym_proxy_command_token1] = ACTIONS(1152), - [aux_sym_proxy_jump_token1] = ACTIONS(1152), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1152), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1152), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1152), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1152), - [aux_sym_rekey_limit_token1] = ACTIONS(1152), - [aux_sym_remote_command_token1] = ACTIONS(1152), - [aux_sym_remote_forward_token1] = ACTIONS(1152), - [aux_sym_request_tty_token1] = ACTIONS(1152), - [aux_sym_required_rsa_size_token1] = ACTIONS(1152), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1152), - [aux_sym_security_key_provider_token1] = ACTIONS(1152), - [aux_sym_send_env_token1] = ACTIONS(1152), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1152), - [aux_sym_server_alive_interval_token1] = ACTIONS(1152), - [aux_sym_session_type_token1] = ACTIONS(1152), - [aux_sym_set_env_token1] = ACTIONS(1152), - [aux_sym_stdin_null_token1] = ACTIONS(1152), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1152), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1152), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1152), - [aux_sym_syslog_facility_token1] = ACTIONS(1152), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1152), - [aux_sym_keep_alive_token1] = ACTIONS(1152), - [aux_sym_tag_token1] = ACTIONS(1152), - [aux_sym_tunnel_token1] = ACTIONS(1154), - [aux_sym_tunnel_device_token1] = ACTIONS(1152), - [aux_sym_update_host_keys_token1] = ACTIONS(1152), - [aux_sym_use_keychain_token1] = ACTIONS(1152), - [aux_sym_use_roaming_token1] = ACTIONS(1152), - [aux_sym_user_token1] = ACTIONS(1154), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1152), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1152), - [aux_sym_visual_host_key_token1] = ACTIONS(1152), - [aux_sym_xauth_location_token1] = ACTIONS(1152), + [ts_builtin_sym_end] = ACTIONS(3503), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3505), + [aux_sym_match_token1] = ACTIONS(3503), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3503), + [aux_sym_address_family_token1] = ACTIONS(3503), + [aux_sym_batch_mode_token1] = ACTIONS(3503), + [aux_sym_bind_address_token1] = ACTIONS(3503), + [aux_sym_bind_interface_token1] = ACTIONS(3503), + [aux_sym_canonical_domains_token1] = ACTIONS(3503), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3503), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3503), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3503), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3503), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3503), + [aux_sym_certificate_file_token1] = ACTIONS(3503), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3503), + [aux_sym_channel_timeout_token1] = ACTIONS(3503), + [aux_sym_check_host_ip_token1] = ACTIONS(3503), + [aux_sym_ciphers_token1] = ACTIONS(3503), + [aux_sym_cipher_token1] = ACTIONS(3505), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3503), + [aux_sym_compression_token1] = ACTIONS(3503), + [aux_sym_connection_attempts_token1] = ACTIONS(3503), + [aux_sym_connect_timeout_token1] = ACTIONS(3503), + [aux_sym_control_master_token1] = ACTIONS(3503), + [aux_sym_control_path_token1] = ACTIONS(3503), + [aux_sym_control_persist_token1] = ACTIONS(3503), + [aux_sym_dynamic_forward_token1] = ACTIONS(3503), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3503), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3503), + [aux_sym_escape_char_token1] = ACTIONS(3503), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3503), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3503), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3503), + [aux_sym_forward_agent_token1] = ACTIONS(3503), + [aux_sym_forward_x11_token1] = ACTIONS(3505), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3503), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3503), + [aux_sym_gateway_ports_token1] = ACTIONS(3503), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3503), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3503), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3503), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3503), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3503), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3503), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3503), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3503), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3503), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3503), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3503), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3503), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3503), + [aux_sym_host_key_alias_token1] = ACTIONS(3503), + [aux_sym_hostname_token1] = ACTIONS(3503), + [aux_sym_identities_only_token1] = ACTIONS(3503), + [aux_sym_identity_agent_token1] = ACTIONS(3503), + [aux_sym_identity_file_token1] = ACTIONS(3503), + [aux_sym_ignore_unknown_token1] = ACTIONS(3503), + [aux_sym_include_token1] = ACTIONS(3503), + [aux_sym_ip_qos_token1] = ACTIONS(3503), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3503), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3503), + [aux_sym_kex_algorithms_token1] = ACTIONS(3503), + [aux_sym_known_hosts_command_token1] = ACTIONS(3503), + [aux_sym_local_command_token1] = ACTIONS(3503), + [aux_sym_local_forward_token1] = ACTIONS(3503), + [aux_sym_log_level_token1] = ACTIONS(3503), + [aux_sym_log_verbose_token1] = ACTIONS(3503), + [aux_sym_macs_token1] = ACTIONS(3503), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3503), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3503), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3503), + [aux_sym_password_authentication_token1] = ACTIONS(3503), + [aux_sym_permit_local_command_token1] = ACTIONS(3503), + [aux_sym_permit_remote_open_token1] = ACTIONS(3503), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3503), + [aux_sym_port_token1] = ACTIONS(3503), + [aux_sym_preferred_authentications_token1] = ACTIONS(3503), + [aux_sym_protocol_token1] = ACTIONS(3503), + [aux_sym_proxy_command_token1] = ACTIONS(3503), + [aux_sym_proxy_jump_token1] = ACTIONS(3503), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3503), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3503), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3503), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3503), + [aux_sym_rekey_limit_token1] = ACTIONS(3503), + [aux_sym_remote_command_token1] = ACTIONS(3503), + [aux_sym_remote_forward_token1] = ACTIONS(3503), + [aux_sym_request_tty_token1] = ACTIONS(3503), + [aux_sym_required_rsa_size_token1] = ACTIONS(3503), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3503), + [aux_sym_security_key_provider_token1] = ACTIONS(3503), + [aux_sym_send_env_token1] = ACTIONS(3503), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3503), + [aux_sym_server_alive_interval_token1] = ACTIONS(3503), + [aux_sym_session_type_token1] = ACTIONS(3503), + [aux_sym_set_env_token1] = ACTIONS(3503), + [aux_sym_stdin_null_token1] = ACTIONS(3503), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3503), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3503), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3503), + [aux_sym_syslog_facility_token1] = ACTIONS(3503), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3503), + [aux_sym_keep_alive_token1] = ACTIONS(3503), + [aux_sym_tag_token1] = ACTIONS(3503), + [aux_sym_tunnel_token1] = ACTIONS(3505), + [aux_sym_tunnel_device_token1] = ACTIONS(3503), + [aux_sym_update_host_keys_token1] = ACTIONS(3503), + [aux_sym_use_keychain_token1] = ACTIONS(3503), + [aux_sym_use_roaming_token1] = ACTIONS(3503), + [aux_sym_user_token1] = ACTIONS(3505), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3503), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3503), + [aux_sym_visual_host_key_token1] = ACTIONS(3503), + [aux_sym_xauth_location_token1] = ACTIONS(3503), }, [632] = { - [ts_builtin_sym_end] = ACTIONS(1146), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1148), - [aux_sym_match_token1] = ACTIONS(1146), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1146), - [aux_sym_address_family_token1] = ACTIONS(1146), - [aux_sym_batch_mode_token1] = ACTIONS(1146), - [aux_sym_bind_address_token1] = ACTIONS(1146), - [aux_sym_bind_interface_token1] = ACTIONS(1146), - [aux_sym_canonical_domains_token1] = ACTIONS(1146), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1146), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1146), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1146), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1146), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1146), - [aux_sym_certificate_file_token1] = ACTIONS(1146), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1146), - [aux_sym_channel_timeout_token1] = ACTIONS(1146), - [aux_sym_check_host_ip_token1] = ACTIONS(1146), - [aux_sym_ciphers_token1] = ACTIONS(1146), - [aux_sym_cipher_token1] = ACTIONS(1148), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1146), - [aux_sym_compression_token1] = ACTIONS(1146), - [aux_sym_connection_attempts_token1] = ACTIONS(1146), - [aux_sym_connect_timeout_token1] = ACTIONS(1146), - [aux_sym_control_master_token1] = ACTIONS(1146), - [aux_sym_control_path_token1] = ACTIONS(1146), - [aux_sym_control_persist_token1] = ACTIONS(1146), - [aux_sym_dynamic_forward_token1] = ACTIONS(1146), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1146), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1146), - [aux_sym_escape_char_token1] = ACTIONS(1146), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1146), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1146), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1146), - [aux_sym_forward_agent_token1] = ACTIONS(1146), - [aux_sym_forward_x11_token1] = ACTIONS(1148), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1146), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1146), - [aux_sym_gateway_ports_token1] = ACTIONS(1146), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1146), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1146), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1146), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1146), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1146), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1146), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1146), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1146), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1146), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1146), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1146), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1146), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1146), - [aux_sym_host_key_alias_token1] = ACTIONS(1146), - [aux_sym_hostname_token1] = ACTIONS(1146), - [aux_sym_identities_only_token1] = ACTIONS(1146), - [aux_sym_identity_agent_token1] = ACTIONS(1146), - [aux_sym_identity_file_token1] = ACTIONS(1146), - [aux_sym_ignore_unknown_token1] = ACTIONS(1146), - [aux_sym_include_token1] = ACTIONS(1146), - [aux_sym_ip_qos_token1] = ACTIONS(1146), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1146), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1146), - [aux_sym_kex_algorithms_token1] = ACTIONS(1146), - [aux_sym_known_hosts_command_token1] = ACTIONS(1146), - [aux_sym_local_command_token1] = ACTIONS(1146), - [aux_sym_local_forward_token1] = ACTIONS(1146), - [aux_sym_log_level_token1] = ACTIONS(1146), - [aux_sym_log_verbose_token1] = ACTIONS(1146), - [aux_sym_macs_token1] = ACTIONS(1146), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1146), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1146), - [aux_sym_password_authentication_token1] = ACTIONS(1146), - [aux_sym_permit_local_command_token1] = ACTIONS(1146), - [aux_sym_permit_remote_open_token1] = ACTIONS(1146), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1146), - [aux_sym_port_token1] = ACTIONS(1146), - [aux_sym_preferred_authentications_token1] = ACTIONS(1146), - [aux_sym_protocol_token1] = ACTIONS(1146), - [aux_sym_proxy_command_token1] = ACTIONS(1146), - [aux_sym_proxy_jump_token1] = ACTIONS(1146), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1146), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1146), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1146), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1146), - [aux_sym_rekey_limit_token1] = ACTIONS(1146), - [aux_sym_remote_command_token1] = ACTIONS(1146), - [aux_sym_remote_forward_token1] = ACTIONS(1146), - [aux_sym_request_tty_token1] = ACTIONS(1146), - [aux_sym_required_rsa_size_token1] = ACTIONS(1146), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1146), - [aux_sym_security_key_provider_token1] = ACTIONS(1146), - [aux_sym_send_env_token1] = ACTIONS(1146), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1146), - [aux_sym_server_alive_interval_token1] = ACTIONS(1146), - [aux_sym_session_type_token1] = ACTIONS(1146), - [aux_sym_set_env_token1] = ACTIONS(1146), - [aux_sym_stdin_null_token1] = ACTIONS(1146), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1146), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1146), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1146), - [aux_sym_syslog_facility_token1] = ACTIONS(1146), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1146), - [aux_sym_keep_alive_token1] = ACTIONS(1146), - [aux_sym_tag_token1] = ACTIONS(1146), - [aux_sym_tunnel_token1] = ACTIONS(1148), - [aux_sym_tunnel_device_token1] = ACTIONS(1146), - [aux_sym_update_host_keys_token1] = ACTIONS(1146), - [aux_sym_use_keychain_token1] = ACTIONS(1146), - [aux_sym_use_roaming_token1] = ACTIONS(1146), - [aux_sym_user_token1] = ACTIONS(1148), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1146), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1146), - [aux_sym_visual_host_key_token1] = ACTIONS(1146), - [aux_sym_xauth_location_token1] = ACTIONS(1146), + [ts_builtin_sym_end] = ACTIONS(3507), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3509), + [aux_sym_match_token1] = ACTIONS(3507), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3507), + [aux_sym_address_family_token1] = ACTIONS(3507), + [aux_sym_batch_mode_token1] = ACTIONS(3507), + [aux_sym_bind_address_token1] = ACTIONS(3507), + [aux_sym_bind_interface_token1] = ACTIONS(3507), + [aux_sym_canonical_domains_token1] = ACTIONS(3507), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3507), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3507), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3507), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3507), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3507), + [aux_sym_certificate_file_token1] = ACTIONS(3507), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3507), + [aux_sym_channel_timeout_token1] = ACTIONS(3507), + [aux_sym_check_host_ip_token1] = ACTIONS(3507), + [aux_sym_ciphers_token1] = ACTIONS(3507), + [aux_sym_cipher_token1] = ACTIONS(3509), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3507), + [aux_sym_compression_token1] = ACTIONS(3507), + [aux_sym_connection_attempts_token1] = ACTIONS(3507), + [aux_sym_connect_timeout_token1] = ACTIONS(3507), + [aux_sym_control_master_token1] = ACTIONS(3507), + [aux_sym_control_path_token1] = ACTIONS(3507), + [aux_sym_control_persist_token1] = ACTIONS(3507), + [aux_sym_dynamic_forward_token1] = ACTIONS(3507), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3507), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3507), + [aux_sym_escape_char_token1] = ACTIONS(3507), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3507), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3507), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3507), + [aux_sym_forward_agent_token1] = ACTIONS(3507), + [aux_sym_forward_x11_token1] = ACTIONS(3509), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3507), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3507), + [aux_sym_gateway_ports_token1] = ACTIONS(3507), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3507), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3507), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3507), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3507), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3507), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3507), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3507), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3507), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3507), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3507), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3507), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3507), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3507), + [aux_sym_host_key_alias_token1] = ACTIONS(3507), + [aux_sym_hostname_token1] = ACTIONS(3507), + [aux_sym_identities_only_token1] = ACTIONS(3507), + [aux_sym_identity_agent_token1] = ACTIONS(3507), + [aux_sym_identity_file_token1] = ACTIONS(3507), + [aux_sym_ignore_unknown_token1] = ACTIONS(3507), + [aux_sym_include_token1] = ACTIONS(3507), + [aux_sym_ip_qos_token1] = ACTIONS(3507), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3507), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3507), + [aux_sym_kex_algorithms_token1] = ACTIONS(3507), + [aux_sym_known_hosts_command_token1] = ACTIONS(3507), + [aux_sym_local_command_token1] = ACTIONS(3507), + [aux_sym_local_forward_token1] = ACTIONS(3507), + [aux_sym_log_level_token1] = ACTIONS(3507), + [aux_sym_log_verbose_token1] = ACTIONS(3507), + [aux_sym_macs_token1] = ACTIONS(3507), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3507), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3507), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3507), + [aux_sym_password_authentication_token1] = ACTIONS(3507), + [aux_sym_permit_local_command_token1] = ACTIONS(3507), + [aux_sym_permit_remote_open_token1] = ACTIONS(3507), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3507), + [aux_sym_port_token1] = ACTIONS(3507), + [aux_sym_preferred_authentications_token1] = ACTIONS(3507), + [aux_sym_protocol_token1] = ACTIONS(3507), + [aux_sym_proxy_command_token1] = ACTIONS(3507), + [aux_sym_proxy_jump_token1] = ACTIONS(3507), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3507), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3507), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3507), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3507), + [aux_sym_rekey_limit_token1] = ACTIONS(3507), + [aux_sym_remote_command_token1] = ACTIONS(3507), + [aux_sym_remote_forward_token1] = ACTIONS(3507), + [aux_sym_request_tty_token1] = ACTIONS(3507), + [aux_sym_required_rsa_size_token1] = ACTIONS(3507), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3507), + [aux_sym_security_key_provider_token1] = ACTIONS(3507), + [aux_sym_send_env_token1] = ACTIONS(3507), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3507), + [aux_sym_server_alive_interval_token1] = ACTIONS(3507), + [aux_sym_session_type_token1] = ACTIONS(3507), + [aux_sym_set_env_token1] = ACTIONS(3507), + [aux_sym_stdin_null_token1] = ACTIONS(3507), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3507), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3507), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3507), + [aux_sym_syslog_facility_token1] = ACTIONS(3507), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3507), + [aux_sym_keep_alive_token1] = ACTIONS(3507), + [aux_sym_tag_token1] = ACTIONS(3507), + [aux_sym_tunnel_token1] = ACTIONS(3509), + [aux_sym_tunnel_device_token1] = ACTIONS(3507), + [aux_sym_update_host_keys_token1] = ACTIONS(3507), + [aux_sym_use_keychain_token1] = ACTIONS(3507), + [aux_sym_use_roaming_token1] = ACTIONS(3507), + [aux_sym_user_token1] = ACTIONS(3509), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3507), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3507), + [aux_sym_visual_host_key_token1] = ACTIONS(3507), + [aux_sym_xauth_location_token1] = ACTIONS(3507), }, [633] = { - [ts_builtin_sym_end] = ACTIONS(1566), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1568), - [aux_sym_match_token1] = ACTIONS(1566), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1566), - [aux_sym_address_family_token1] = ACTIONS(1566), - [aux_sym_batch_mode_token1] = ACTIONS(1566), - [aux_sym_bind_address_token1] = ACTIONS(1566), - [aux_sym_bind_interface_token1] = ACTIONS(1566), - [aux_sym_canonical_domains_token1] = ACTIONS(1566), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1566), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1566), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1566), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1566), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1566), - [aux_sym_certificate_file_token1] = ACTIONS(1566), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1566), - [aux_sym_channel_timeout_token1] = ACTIONS(1566), - [aux_sym_check_host_ip_token1] = ACTIONS(1566), - [aux_sym_ciphers_token1] = ACTIONS(1566), - [aux_sym_cipher_token1] = ACTIONS(1568), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1566), - [aux_sym_compression_token1] = ACTIONS(1566), - [aux_sym_connection_attempts_token1] = ACTIONS(1566), - [aux_sym_connect_timeout_token1] = ACTIONS(1566), - [aux_sym_control_master_token1] = ACTIONS(1566), - [aux_sym_control_path_token1] = ACTIONS(1566), - [aux_sym_control_persist_token1] = ACTIONS(1566), - [aux_sym_dynamic_forward_token1] = ACTIONS(1566), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1566), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1566), - [aux_sym_escape_char_token1] = ACTIONS(1566), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1566), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1566), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1566), - [aux_sym_forward_agent_token1] = ACTIONS(1566), - [aux_sym_forward_x11_token1] = ACTIONS(1568), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1566), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1566), - [aux_sym_gateway_ports_token1] = ACTIONS(1566), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1566), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1566), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1566), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1566), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1566), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1566), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1566), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1566), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1566), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1566), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1566), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1566), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1566), - [aux_sym_host_key_alias_token1] = ACTIONS(1566), - [aux_sym_hostname_token1] = ACTIONS(1566), - [aux_sym_identities_only_token1] = ACTIONS(1566), - [aux_sym_identity_agent_token1] = ACTIONS(1566), - [aux_sym_identity_file_token1] = ACTIONS(1566), - [aux_sym_ignore_unknown_token1] = ACTIONS(1566), - [aux_sym_include_token1] = ACTIONS(1566), - [aux_sym_ip_qos_token1] = ACTIONS(1566), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1566), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1566), - [aux_sym_kex_algorithms_token1] = ACTIONS(1566), - [aux_sym_known_hosts_command_token1] = ACTIONS(1566), - [aux_sym_local_command_token1] = ACTIONS(1566), - [aux_sym_local_forward_token1] = ACTIONS(1566), - [aux_sym_log_level_token1] = ACTIONS(1566), - [aux_sym_log_verbose_token1] = ACTIONS(1566), - [aux_sym_macs_token1] = ACTIONS(1566), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1566), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1566), - [aux_sym_password_authentication_token1] = ACTIONS(1566), - [aux_sym_permit_local_command_token1] = ACTIONS(1566), - [aux_sym_permit_remote_open_token1] = ACTIONS(1566), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1566), - [aux_sym_port_token1] = ACTIONS(1566), - [aux_sym_preferred_authentications_token1] = ACTIONS(1566), - [aux_sym_protocol_token1] = ACTIONS(1566), - [aux_sym_proxy_command_token1] = ACTIONS(1566), - [aux_sym_proxy_jump_token1] = ACTIONS(1566), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1566), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1566), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1566), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1566), - [aux_sym_rekey_limit_token1] = ACTIONS(1566), - [aux_sym_remote_command_token1] = ACTIONS(1566), - [aux_sym_remote_forward_token1] = ACTIONS(1566), - [aux_sym_request_tty_token1] = ACTIONS(1566), - [aux_sym_required_rsa_size_token1] = ACTIONS(1566), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1566), - [aux_sym_security_key_provider_token1] = ACTIONS(1566), - [aux_sym_send_env_token1] = ACTIONS(1566), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1566), - [aux_sym_server_alive_interval_token1] = ACTIONS(1566), - [aux_sym_session_type_token1] = ACTIONS(1566), - [aux_sym_set_env_token1] = ACTIONS(1566), - [aux_sym_stdin_null_token1] = ACTIONS(1566), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1566), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1566), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1566), - [aux_sym_syslog_facility_token1] = ACTIONS(1566), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1566), - [aux_sym_keep_alive_token1] = ACTIONS(1566), - [aux_sym_tag_token1] = ACTIONS(1566), - [aux_sym_tunnel_token1] = ACTIONS(1568), - [aux_sym_tunnel_device_token1] = ACTIONS(1566), - [aux_sym_update_host_keys_token1] = ACTIONS(1566), - [aux_sym_use_keychain_token1] = ACTIONS(1566), - [aux_sym_use_roaming_token1] = ACTIONS(1566), - [aux_sym_user_token1] = ACTIONS(1568), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1566), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1566), - [aux_sym_visual_host_key_token1] = ACTIONS(1566), - [aux_sym_xauth_location_token1] = ACTIONS(1566), + [ts_builtin_sym_end] = ACTIONS(623), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(625), + [aux_sym_match_token1] = ACTIONS(623), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(623), + [aux_sym_address_family_token1] = ACTIONS(623), + [aux_sym_batch_mode_token1] = ACTIONS(623), + [aux_sym_bind_address_token1] = ACTIONS(623), + [aux_sym_bind_interface_token1] = ACTIONS(623), + [aux_sym_canonical_domains_token1] = ACTIONS(623), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(623), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(623), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(623), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(623), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(623), + [aux_sym_certificate_file_token1] = ACTIONS(623), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(623), + [aux_sym_channel_timeout_token1] = ACTIONS(623), + [aux_sym_check_host_ip_token1] = ACTIONS(623), + [aux_sym_ciphers_token1] = ACTIONS(623), + [aux_sym_cipher_token1] = ACTIONS(625), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(623), + [aux_sym_compression_token1] = ACTIONS(623), + [aux_sym_connection_attempts_token1] = ACTIONS(623), + [aux_sym_connect_timeout_token1] = ACTIONS(623), + [aux_sym_control_master_token1] = ACTIONS(623), + [aux_sym_control_path_token1] = ACTIONS(623), + [aux_sym_control_persist_token1] = ACTIONS(623), + [aux_sym_dynamic_forward_token1] = ACTIONS(623), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(623), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(623), + [aux_sym_escape_char_token1] = ACTIONS(623), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(623), + [aux_sym_fingerprint_hash_token1] = ACTIONS(623), + [aux_sym_fork_after_authentication_token1] = ACTIONS(623), + [aux_sym_forward_agent_token1] = ACTIONS(623), + [aux_sym_forward_x11_token1] = ACTIONS(625), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(623), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(623), + [aux_sym_gateway_ports_token1] = ACTIONS(623), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(623), + [aux_sym_gssapi_authentication_token1] = ACTIONS(623), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(623), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(623), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(623), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(623), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(623), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(623), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(623), + [aux_sym_hash_known_hosts_token1] = ACTIONS(623), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(623), + [aux_sym_hostbased_authentication_token1] = ACTIONS(623), + [aux_sym_host_key_algorithms_token1] = ACTIONS(623), + [aux_sym_host_key_alias_token1] = ACTIONS(623), + [aux_sym_hostname_token1] = ACTIONS(623), + [aux_sym_identities_only_token1] = ACTIONS(623), + [aux_sym_identity_agent_token1] = ACTIONS(623), + [aux_sym_identity_file_token1] = ACTIONS(623), + [aux_sym_ignore_unknown_token1] = ACTIONS(623), + [aux_sym_include_token1] = ACTIONS(623), + [aux_sym_ip_qos_token1] = ACTIONS(623), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(623), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(623), + [aux_sym_kex_algorithms_token1] = ACTIONS(623), + [aux_sym_known_hosts_command_token1] = ACTIONS(623), + [aux_sym_local_command_token1] = ACTIONS(623), + [aux_sym_local_forward_token1] = ACTIONS(623), + [aux_sym_log_level_token1] = ACTIONS(623), + [aux_sym_log_verbose_token1] = ACTIONS(623), + [aux_sym_macs_token1] = ACTIONS(623), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(623), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(623), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(623), + [aux_sym_password_authentication_token1] = ACTIONS(623), + [aux_sym_permit_local_command_token1] = ACTIONS(623), + [aux_sym_permit_remote_open_token1] = ACTIONS(623), + [aux_sym_pkcs11_provider_token1] = ACTIONS(623), + [aux_sym_port_token1] = ACTIONS(623), + [aux_sym_preferred_authentications_token1] = ACTIONS(623), + [aux_sym_protocol_token1] = ACTIONS(623), + [aux_sym_proxy_command_token1] = ACTIONS(623), + [aux_sym_proxy_jump_token1] = ACTIONS(623), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(623), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(623), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(623), + [aux_sym_pubkey_authentication_token1] = ACTIONS(623), + [aux_sym_rekey_limit_token1] = ACTIONS(623), + [aux_sym_remote_command_token1] = ACTIONS(623), + [aux_sym_remote_forward_token1] = ACTIONS(623), + [aux_sym_request_tty_token1] = ACTIONS(623), + [aux_sym_required_rsa_size_token1] = ACTIONS(623), + [aux_sym_revoked_host_keys_token1] = ACTIONS(623), + [aux_sym_security_key_provider_token1] = ACTIONS(623), + [aux_sym_send_env_token1] = ACTIONS(623), + [aux_sym_server_alive_count_max_token1] = ACTIONS(623), + [aux_sym_server_alive_interval_token1] = ACTIONS(623), + [aux_sym_session_type_token1] = ACTIONS(623), + [aux_sym_set_env_token1] = ACTIONS(623), + [aux_sym_stdin_null_token1] = ACTIONS(623), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(623), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(623), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(623), + [aux_sym_syslog_facility_token1] = ACTIONS(623), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(623), + [aux_sym_keep_alive_token1] = ACTIONS(623), + [aux_sym_tag_token1] = ACTIONS(623), + [aux_sym_tunnel_token1] = ACTIONS(625), + [aux_sym_tunnel_device_token1] = ACTIONS(623), + [aux_sym_update_host_keys_token1] = ACTIONS(623), + [aux_sym_use_keychain_token1] = ACTIONS(623), + [aux_sym_use_roaming_token1] = ACTIONS(623), + [aux_sym_user_token1] = ACTIONS(625), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(623), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(623), + [aux_sym_visual_host_key_token1] = ACTIONS(623), + [aux_sym_xauth_location_token1] = ACTIONS(623), }, [634] = { - [ts_builtin_sym_end] = ACTIONS(1140), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1142), - [aux_sym_match_token1] = ACTIONS(1140), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1140), - [aux_sym_address_family_token1] = ACTIONS(1140), - [aux_sym_batch_mode_token1] = ACTIONS(1140), - [aux_sym_bind_address_token1] = ACTIONS(1140), - [aux_sym_bind_interface_token1] = ACTIONS(1140), - [aux_sym_canonical_domains_token1] = ACTIONS(1140), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1140), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1140), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1140), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1140), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1140), - [aux_sym_certificate_file_token1] = ACTIONS(1140), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1140), - [aux_sym_channel_timeout_token1] = ACTIONS(1140), - [aux_sym_check_host_ip_token1] = ACTIONS(1140), - [aux_sym_ciphers_token1] = ACTIONS(1140), - [aux_sym_cipher_token1] = ACTIONS(1142), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1140), - [aux_sym_compression_token1] = ACTIONS(1140), - [aux_sym_connection_attempts_token1] = ACTIONS(1140), - [aux_sym_connect_timeout_token1] = ACTIONS(1140), - [aux_sym_control_master_token1] = ACTIONS(1140), - [aux_sym_control_path_token1] = ACTIONS(1140), - [aux_sym_control_persist_token1] = ACTIONS(1140), - [aux_sym_dynamic_forward_token1] = ACTIONS(1140), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1140), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1140), - [aux_sym_escape_char_token1] = ACTIONS(1140), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1140), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1140), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1140), - [aux_sym_forward_agent_token1] = ACTIONS(1140), - [aux_sym_forward_x11_token1] = ACTIONS(1142), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1140), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1140), - [aux_sym_gateway_ports_token1] = ACTIONS(1140), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1140), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1140), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1140), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1140), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1140), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1140), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1140), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1140), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1140), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1140), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1140), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1140), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1140), - [aux_sym_host_key_alias_token1] = ACTIONS(1140), - [aux_sym_hostname_token1] = ACTIONS(1140), - [aux_sym_identities_only_token1] = ACTIONS(1140), - [aux_sym_identity_agent_token1] = ACTIONS(1140), - [aux_sym_identity_file_token1] = ACTIONS(1140), - [aux_sym_ignore_unknown_token1] = ACTIONS(1140), - [aux_sym_include_token1] = ACTIONS(1140), - [aux_sym_ip_qos_token1] = ACTIONS(1140), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1140), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1140), - [aux_sym_kex_algorithms_token1] = ACTIONS(1140), - [aux_sym_known_hosts_command_token1] = ACTIONS(1140), - [aux_sym_local_command_token1] = ACTIONS(1140), - [aux_sym_local_forward_token1] = ACTIONS(1140), - [aux_sym_log_level_token1] = ACTIONS(1140), - [aux_sym_log_verbose_token1] = ACTIONS(1140), - [aux_sym_macs_token1] = ACTIONS(1140), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1140), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1140), - [aux_sym_password_authentication_token1] = ACTIONS(1140), - [aux_sym_permit_local_command_token1] = ACTIONS(1140), - [aux_sym_permit_remote_open_token1] = ACTIONS(1140), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1140), - [aux_sym_port_token1] = ACTIONS(1140), - [aux_sym_preferred_authentications_token1] = ACTIONS(1140), - [aux_sym_protocol_token1] = ACTIONS(1140), - [aux_sym_proxy_command_token1] = ACTIONS(1140), - [aux_sym_proxy_jump_token1] = ACTIONS(1140), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1140), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1140), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1140), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1140), - [aux_sym_rekey_limit_token1] = ACTIONS(1140), - [aux_sym_remote_command_token1] = ACTIONS(1140), - [aux_sym_remote_forward_token1] = ACTIONS(1140), - [aux_sym_request_tty_token1] = ACTIONS(1140), - [aux_sym_required_rsa_size_token1] = ACTIONS(1140), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1140), - [aux_sym_security_key_provider_token1] = ACTIONS(1140), - [aux_sym_send_env_token1] = ACTIONS(1140), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1140), - [aux_sym_server_alive_interval_token1] = ACTIONS(1140), - [aux_sym_session_type_token1] = ACTIONS(1140), - [aux_sym_set_env_token1] = ACTIONS(1140), - [aux_sym_stdin_null_token1] = ACTIONS(1140), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1140), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1140), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1140), - [aux_sym_syslog_facility_token1] = ACTIONS(1140), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1140), - [aux_sym_keep_alive_token1] = ACTIONS(1140), - [aux_sym_tag_token1] = ACTIONS(1140), - [aux_sym_tunnel_token1] = ACTIONS(1142), - [aux_sym_tunnel_device_token1] = ACTIONS(1140), - [aux_sym_update_host_keys_token1] = ACTIONS(1140), - [aux_sym_use_keychain_token1] = ACTIONS(1140), - [aux_sym_use_roaming_token1] = ACTIONS(1140), - [aux_sym_user_token1] = ACTIONS(1142), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1140), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1140), - [aux_sym_visual_host_key_token1] = ACTIONS(1140), - [aux_sym_xauth_location_token1] = ACTIONS(1140), + [ts_builtin_sym_end] = ACTIONS(833), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(835), + [aux_sym_match_token1] = ACTIONS(833), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(833), + [aux_sym_address_family_token1] = ACTIONS(833), + [aux_sym_batch_mode_token1] = ACTIONS(833), + [aux_sym_bind_address_token1] = ACTIONS(833), + [aux_sym_bind_interface_token1] = ACTIONS(833), + [aux_sym_canonical_domains_token1] = ACTIONS(833), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(833), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(833), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(833), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(833), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(833), + [aux_sym_certificate_file_token1] = ACTIONS(833), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(833), + [aux_sym_channel_timeout_token1] = ACTIONS(833), + [aux_sym_check_host_ip_token1] = ACTIONS(833), + [aux_sym_ciphers_token1] = ACTIONS(833), + [aux_sym_cipher_token1] = ACTIONS(835), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(833), + [aux_sym_compression_token1] = ACTIONS(833), + [aux_sym_connection_attempts_token1] = ACTIONS(833), + [aux_sym_connect_timeout_token1] = ACTIONS(833), + [aux_sym_control_master_token1] = ACTIONS(833), + [aux_sym_control_path_token1] = ACTIONS(833), + [aux_sym_control_persist_token1] = ACTIONS(833), + [aux_sym_dynamic_forward_token1] = ACTIONS(833), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(833), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(833), + [aux_sym_escape_char_token1] = ACTIONS(833), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(833), + [aux_sym_fingerprint_hash_token1] = ACTIONS(833), + [aux_sym_fork_after_authentication_token1] = ACTIONS(833), + [aux_sym_forward_agent_token1] = ACTIONS(833), + [aux_sym_forward_x11_token1] = ACTIONS(835), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(833), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(833), + [aux_sym_gateway_ports_token1] = ACTIONS(833), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(833), + [aux_sym_gssapi_authentication_token1] = ACTIONS(833), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(833), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(833), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(833), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(833), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(833), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(833), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(833), + [aux_sym_hash_known_hosts_token1] = ACTIONS(833), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(833), + [aux_sym_hostbased_authentication_token1] = ACTIONS(833), + [aux_sym_host_key_algorithms_token1] = ACTIONS(833), + [aux_sym_host_key_alias_token1] = ACTIONS(833), + [aux_sym_hostname_token1] = ACTIONS(833), + [aux_sym_identities_only_token1] = ACTIONS(833), + [aux_sym_identity_agent_token1] = ACTIONS(833), + [aux_sym_identity_file_token1] = ACTIONS(833), + [aux_sym_ignore_unknown_token1] = ACTIONS(833), + [aux_sym_include_token1] = ACTIONS(833), + [aux_sym_ip_qos_token1] = ACTIONS(833), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(833), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(833), + [aux_sym_kex_algorithms_token1] = ACTIONS(833), + [aux_sym_known_hosts_command_token1] = ACTIONS(833), + [aux_sym_local_command_token1] = ACTIONS(833), + [aux_sym_local_forward_token1] = ACTIONS(833), + [aux_sym_log_level_token1] = ACTIONS(833), + [aux_sym_log_verbose_token1] = ACTIONS(833), + [aux_sym_macs_token1] = ACTIONS(833), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(833), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(833), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(833), + [aux_sym_password_authentication_token1] = ACTIONS(833), + [aux_sym_permit_local_command_token1] = ACTIONS(833), + [aux_sym_permit_remote_open_token1] = ACTIONS(833), + [aux_sym_pkcs11_provider_token1] = ACTIONS(833), + [aux_sym_port_token1] = ACTIONS(833), + [aux_sym_preferred_authentications_token1] = ACTIONS(833), + [aux_sym_protocol_token1] = ACTIONS(833), + [aux_sym_proxy_command_token1] = ACTIONS(833), + [aux_sym_proxy_jump_token1] = ACTIONS(833), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(833), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(833), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(833), + [aux_sym_pubkey_authentication_token1] = ACTIONS(833), + [aux_sym_rekey_limit_token1] = ACTIONS(833), + [aux_sym_remote_command_token1] = ACTIONS(833), + [aux_sym_remote_forward_token1] = ACTIONS(833), + [aux_sym_request_tty_token1] = ACTIONS(833), + [aux_sym_required_rsa_size_token1] = ACTIONS(833), + [aux_sym_revoked_host_keys_token1] = ACTIONS(833), + [aux_sym_security_key_provider_token1] = ACTIONS(833), + [aux_sym_send_env_token1] = ACTIONS(833), + [aux_sym_server_alive_count_max_token1] = ACTIONS(833), + [aux_sym_server_alive_interval_token1] = ACTIONS(833), + [aux_sym_session_type_token1] = ACTIONS(833), + [aux_sym_set_env_token1] = ACTIONS(833), + [aux_sym_stdin_null_token1] = ACTIONS(833), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(833), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(833), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(833), + [aux_sym_syslog_facility_token1] = ACTIONS(833), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(833), + [aux_sym_keep_alive_token1] = ACTIONS(833), + [aux_sym_tag_token1] = ACTIONS(833), + [aux_sym_tunnel_token1] = ACTIONS(835), + [aux_sym_tunnel_device_token1] = ACTIONS(833), + [aux_sym_update_host_keys_token1] = ACTIONS(833), + [aux_sym_use_keychain_token1] = ACTIONS(833), + [aux_sym_use_roaming_token1] = ACTIONS(833), + [aux_sym_user_token1] = ACTIONS(835), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(833), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(833), + [aux_sym_visual_host_key_token1] = ACTIONS(833), + [aux_sym_xauth_location_token1] = ACTIONS(833), }, [635] = { - [ts_builtin_sym_end] = ACTIONS(1134), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1136), - [aux_sym_match_token1] = ACTIONS(1134), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1134), - [aux_sym_address_family_token1] = ACTIONS(1134), - [aux_sym_batch_mode_token1] = ACTIONS(1134), - [aux_sym_bind_address_token1] = ACTIONS(1134), - [aux_sym_bind_interface_token1] = ACTIONS(1134), - [aux_sym_canonical_domains_token1] = ACTIONS(1134), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1134), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1134), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1134), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1134), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1134), - [aux_sym_certificate_file_token1] = ACTIONS(1134), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1134), - [aux_sym_channel_timeout_token1] = ACTIONS(1134), - [aux_sym_check_host_ip_token1] = ACTIONS(1134), - [aux_sym_ciphers_token1] = ACTIONS(1134), - [aux_sym_cipher_token1] = ACTIONS(1136), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1134), - [aux_sym_compression_token1] = ACTIONS(1134), - [aux_sym_connection_attempts_token1] = ACTIONS(1134), - [aux_sym_connect_timeout_token1] = ACTIONS(1134), - [aux_sym_control_master_token1] = ACTIONS(1134), - [aux_sym_control_path_token1] = ACTIONS(1134), - [aux_sym_control_persist_token1] = ACTIONS(1134), - [aux_sym_dynamic_forward_token1] = ACTIONS(1134), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1134), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1134), - [aux_sym_escape_char_token1] = ACTIONS(1134), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1134), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1134), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1134), - [aux_sym_forward_agent_token1] = ACTIONS(1134), - [aux_sym_forward_x11_token1] = ACTIONS(1136), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1134), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1134), - [aux_sym_gateway_ports_token1] = ACTIONS(1134), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1134), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1134), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1134), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1134), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1134), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1134), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1134), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1134), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1134), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1134), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1134), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1134), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1134), - [aux_sym_host_key_alias_token1] = ACTIONS(1134), - [aux_sym_hostname_token1] = ACTIONS(1134), - [aux_sym_identities_only_token1] = ACTIONS(1134), - [aux_sym_identity_agent_token1] = ACTIONS(1134), - [aux_sym_identity_file_token1] = ACTIONS(1134), - [aux_sym_ignore_unknown_token1] = ACTIONS(1134), - [aux_sym_include_token1] = ACTIONS(1134), - [aux_sym_ip_qos_token1] = ACTIONS(1134), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1134), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1134), - [aux_sym_kex_algorithms_token1] = ACTIONS(1134), - [aux_sym_known_hosts_command_token1] = ACTIONS(1134), - [aux_sym_local_command_token1] = ACTIONS(1134), - [aux_sym_local_forward_token1] = ACTIONS(1134), - [aux_sym_log_level_token1] = ACTIONS(1134), - [aux_sym_log_verbose_token1] = ACTIONS(1134), - [aux_sym_macs_token1] = ACTIONS(1134), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1134), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1134), - [aux_sym_password_authentication_token1] = ACTIONS(1134), - [aux_sym_permit_local_command_token1] = ACTIONS(1134), - [aux_sym_permit_remote_open_token1] = ACTIONS(1134), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1134), - [aux_sym_port_token1] = ACTIONS(1134), - [aux_sym_preferred_authentications_token1] = ACTIONS(1134), - [aux_sym_protocol_token1] = ACTIONS(1134), - [aux_sym_proxy_command_token1] = ACTIONS(1134), - [aux_sym_proxy_jump_token1] = ACTIONS(1134), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1134), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1134), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1134), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1134), - [aux_sym_rekey_limit_token1] = ACTIONS(1134), - [aux_sym_remote_command_token1] = ACTIONS(1134), - [aux_sym_remote_forward_token1] = ACTIONS(1134), - [aux_sym_request_tty_token1] = ACTIONS(1134), - [aux_sym_required_rsa_size_token1] = ACTIONS(1134), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1134), - [aux_sym_security_key_provider_token1] = ACTIONS(1134), - [aux_sym_send_env_token1] = ACTIONS(1134), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1134), - [aux_sym_server_alive_interval_token1] = ACTIONS(1134), - [aux_sym_session_type_token1] = ACTIONS(1134), - [aux_sym_set_env_token1] = ACTIONS(1134), - [aux_sym_stdin_null_token1] = ACTIONS(1134), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1134), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1134), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1134), - [aux_sym_syslog_facility_token1] = ACTIONS(1134), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1134), - [aux_sym_keep_alive_token1] = ACTIONS(1134), - [aux_sym_tag_token1] = ACTIONS(1134), - [aux_sym_tunnel_token1] = ACTIONS(1136), - [aux_sym_tunnel_device_token1] = ACTIONS(1134), - [aux_sym_update_host_keys_token1] = ACTIONS(1134), - [aux_sym_use_keychain_token1] = ACTIONS(1134), - [aux_sym_use_roaming_token1] = ACTIONS(1134), - [aux_sym_user_token1] = ACTIONS(1136), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1134), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1134), - [aux_sym_visual_host_key_token1] = ACTIONS(1134), - [aux_sym_xauth_location_token1] = ACTIONS(1134), + [ts_builtin_sym_end] = ACTIONS(1629), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1631), + [aux_sym_match_token1] = ACTIONS(1629), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1629), + [aux_sym_address_family_token1] = ACTIONS(1629), + [aux_sym_batch_mode_token1] = ACTIONS(1629), + [aux_sym_bind_address_token1] = ACTIONS(1629), + [aux_sym_bind_interface_token1] = ACTIONS(1629), + [aux_sym_canonical_domains_token1] = ACTIONS(1629), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1629), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1629), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1629), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1629), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1629), + [aux_sym_certificate_file_token1] = ACTIONS(1629), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1629), + [aux_sym_channel_timeout_token1] = ACTIONS(1629), + [aux_sym_check_host_ip_token1] = ACTIONS(1629), + [aux_sym_ciphers_token1] = ACTIONS(1629), + [aux_sym_cipher_token1] = ACTIONS(1631), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1629), + [aux_sym_compression_token1] = ACTIONS(1629), + [aux_sym_connection_attempts_token1] = ACTIONS(1629), + [aux_sym_connect_timeout_token1] = ACTIONS(1629), + [aux_sym_control_master_token1] = ACTIONS(1629), + [aux_sym_control_path_token1] = ACTIONS(1629), + [aux_sym_control_persist_token1] = ACTIONS(1629), + [aux_sym_dynamic_forward_token1] = ACTIONS(1629), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1629), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1629), + [aux_sym_escape_char_token1] = ACTIONS(1629), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1629), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1629), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1629), + [aux_sym_forward_agent_token1] = ACTIONS(1629), + [aux_sym_forward_x11_token1] = ACTIONS(1631), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1629), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1629), + [aux_sym_gateway_ports_token1] = ACTIONS(1629), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1629), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1629), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1629), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1629), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1629), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1629), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1629), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1629), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1629), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1629), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1629), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1629), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1629), + [aux_sym_host_key_alias_token1] = ACTIONS(1629), + [aux_sym_hostname_token1] = ACTIONS(1629), + [aux_sym_identities_only_token1] = ACTIONS(1629), + [aux_sym_identity_agent_token1] = ACTIONS(1629), + [aux_sym_identity_file_token1] = ACTIONS(1629), + [aux_sym_ignore_unknown_token1] = ACTIONS(1629), + [aux_sym_include_token1] = ACTIONS(1629), + [aux_sym_ip_qos_token1] = ACTIONS(1629), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1629), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1629), + [aux_sym_kex_algorithms_token1] = ACTIONS(1629), + [aux_sym_known_hosts_command_token1] = ACTIONS(1629), + [aux_sym_local_command_token1] = ACTIONS(1629), + [aux_sym_local_forward_token1] = ACTIONS(1629), + [aux_sym_log_level_token1] = ACTIONS(1629), + [aux_sym_log_verbose_token1] = ACTIONS(1629), + [aux_sym_macs_token1] = ACTIONS(1629), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1629), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1629), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1629), + [aux_sym_password_authentication_token1] = ACTIONS(1629), + [aux_sym_permit_local_command_token1] = ACTIONS(1629), + [aux_sym_permit_remote_open_token1] = ACTIONS(1629), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1629), + [aux_sym_port_token1] = ACTIONS(1629), + [aux_sym_preferred_authentications_token1] = ACTIONS(1629), + [aux_sym_protocol_token1] = ACTIONS(1629), + [aux_sym_proxy_command_token1] = ACTIONS(1629), + [aux_sym_proxy_jump_token1] = ACTIONS(1629), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1629), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1629), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1629), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1629), + [aux_sym_rekey_limit_token1] = ACTIONS(1629), + [aux_sym_remote_command_token1] = ACTIONS(1629), + [aux_sym_remote_forward_token1] = ACTIONS(1629), + [aux_sym_request_tty_token1] = ACTIONS(1629), + [aux_sym_required_rsa_size_token1] = ACTIONS(1629), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1629), + [aux_sym_security_key_provider_token1] = ACTIONS(1629), + [aux_sym_send_env_token1] = ACTIONS(1629), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1629), + [aux_sym_server_alive_interval_token1] = ACTIONS(1629), + [aux_sym_session_type_token1] = ACTIONS(1629), + [aux_sym_set_env_token1] = ACTIONS(1629), + [aux_sym_stdin_null_token1] = ACTIONS(1629), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1629), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1629), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1629), + [aux_sym_syslog_facility_token1] = ACTIONS(1629), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1629), + [aux_sym_keep_alive_token1] = ACTIONS(1629), + [aux_sym_tag_token1] = ACTIONS(1629), + [aux_sym_tunnel_token1] = ACTIONS(1631), + [aux_sym_tunnel_device_token1] = ACTIONS(1629), + [aux_sym_update_host_keys_token1] = ACTIONS(1629), + [aux_sym_use_keychain_token1] = ACTIONS(1629), + [aux_sym_use_roaming_token1] = ACTIONS(1629), + [aux_sym_user_token1] = ACTIONS(1631), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1629), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1629), + [aux_sym_visual_host_key_token1] = ACTIONS(1629), + [aux_sym_xauth_location_token1] = ACTIONS(1629), }, [636] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1574), - [aux_sym_match_token1] = ACTIONS(1572), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1572), - [aux_sym_address_family_token1] = ACTIONS(1572), - [aux_sym_batch_mode_token1] = ACTIONS(1572), - [aux_sym_bind_address_token1] = ACTIONS(1572), - [aux_sym_bind_interface_token1] = ACTIONS(1572), - [aux_sym_canonical_domains_token1] = ACTIONS(1572), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1572), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1572), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1572), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1572), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1572), - [aux_sym_certificate_file_token1] = ACTIONS(1572), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1572), - [aux_sym_channel_timeout_token1] = ACTIONS(1572), - [aux_sym_check_host_ip_token1] = ACTIONS(1572), - [aux_sym_ciphers_token1] = ACTIONS(1572), - [aux_sym_cipher_token1] = ACTIONS(1574), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1572), - [aux_sym_compression_token1] = ACTIONS(1572), - [aux_sym_connection_attempts_token1] = ACTIONS(1572), - [aux_sym_connect_timeout_token1] = ACTIONS(1572), - [aux_sym_control_master_token1] = ACTIONS(1572), - [aux_sym_control_path_token1] = ACTIONS(1572), - [aux_sym_control_persist_token1] = ACTIONS(1572), - [aux_sym_dynamic_forward_token1] = ACTIONS(1572), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1572), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1572), - [aux_sym_escape_char_token1] = ACTIONS(1572), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1572), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1572), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1572), - [aux_sym_forward_agent_token1] = ACTIONS(1572), - [aux_sym_forward_x11_token1] = ACTIONS(1574), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1572), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1572), - [aux_sym_gateway_ports_token1] = ACTIONS(1572), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1572), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1572), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1572), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1572), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1572), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1572), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1572), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1572), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1572), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1572), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1572), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1572), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1572), - [aux_sym_host_key_alias_token1] = ACTIONS(1572), - [aux_sym_hostname_token1] = ACTIONS(1572), - [aux_sym_identities_only_token1] = ACTIONS(1572), - [aux_sym_identity_agent_token1] = ACTIONS(1572), - [aux_sym_identity_file_token1] = ACTIONS(1572), - [aux_sym_ignore_unknown_token1] = ACTIONS(1572), - [aux_sym_include_token1] = ACTIONS(1572), - [aux_sym_ip_qos_token1] = ACTIONS(1572), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1572), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1572), - [aux_sym_kex_algorithms_token1] = ACTIONS(1572), - [aux_sym_known_hosts_command_token1] = ACTIONS(1572), - [aux_sym_local_command_token1] = ACTIONS(1572), - [aux_sym_local_forward_token1] = ACTIONS(1572), - [aux_sym_log_level_token1] = ACTIONS(1572), - [aux_sym_log_verbose_token1] = ACTIONS(1572), - [aux_sym_macs_token1] = ACTIONS(1572), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1572), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1572), - [aux_sym_password_authentication_token1] = ACTIONS(1572), - [aux_sym_permit_local_command_token1] = ACTIONS(1572), - [aux_sym_permit_remote_open_token1] = ACTIONS(1572), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1572), - [aux_sym_port_token1] = ACTIONS(1572), - [aux_sym_preferred_authentications_token1] = ACTIONS(1572), - [aux_sym_protocol_token1] = ACTIONS(1572), - [aux_sym_proxy_command_token1] = ACTIONS(1572), - [aux_sym_proxy_jump_token1] = ACTIONS(1572), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1572), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1572), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1572), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1572), - [aux_sym_rekey_limit_token1] = ACTIONS(1572), - [aux_sym_remote_command_token1] = ACTIONS(1572), - [aux_sym_remote_forward_token1] = ACTIONS(1572), - [aux_sym_request_tty_token1] = ACTIONS(1572), - [aux_sym_required_rsa_size_token1] = ACTIONS(1572), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1572), - [aux_sym_security_key_provider_token1] = ACTIONS(1572), - [aux_sym_send_env_token1] = ACTIONS(1572), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1572), - [aux_sym_server_alive_interval_token1] = ACTIONS(1572), - [aux_sym_session_type_token1] = ACTIONS(1572), - [aux_sym_set_env_token1] = ACTIONS(1572), - [aux_sym_stdin_null_token1] = ACTIONS(1572), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1572), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1572), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1572), - [aux_sym_syslog_facility_token1] = ACTIONS(1572), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1572), - [aux_sym_keep_alive_token1] = ACTIONS(1572), - [aux_sym_tag_token1] = ACTIONS(1572), - [aux_sym_tunnel_token1] = ACTIONS(1574), - [aux_sym_tunnel_device_token1] = ACTIONS(1572), - [aux_sym_update_host_keys_token1] = ACTIONS(1572), - [aux_sym_use_keychain_token1] = ACTIONS(1572), - [aux_sym_use_roaming_token1] = ACTIONS(1572), - [aux_sym_user_token1] = ACTIONS(1574), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1572), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1572), - [aux_sym_visual_host_key_token1] = ACTIONS(1572), - [aux_sym_xauth_location_token1] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(827), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(829), + [aux_sym_match_token1] = ACTIONS(827), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(827), + [aux_sym_address_family_token1] = ACTIONS(827), + [aux_sym_batch_mode_token1] = ACTIONS(827), + [aux_sym_bind_address_token1] = ACTIONS(827), + [aux_sym_bind_interface_token1] = ACTIONS(827), + [aux_sym_canonical_domains_token1] = ACTIONS(827), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(827), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(827), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(827), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(827), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(827), + [aux_sym_certificate_file_token1] = ACTIONS(827), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(827), + [aux_sym_channel_timeout_token1] = ACTIONS(827), + [aux_sym_check_host_ip_token1] = ACTIONS(827), + [aux_sym_ciphers_token1] = ACTIONS(827), + [aux_sym_cipher_token1] = ACTIONS(829), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(827), + [aux_sym_compression_token1] = ACTIONS(827), + [aux_sym_connection_attempts_token1] = ACTIONS(827), + [aux_sym_connect_timeout_token1] = ACTIONS(827), + [aux_sym_control_master_token1] = ACTIONS(827), + [aux_sym_control_path_token1] = ACTIONS(827), + [aux_sym_control_persist_token1] = ACTIONS(827), + [aux_sym_dynamic_forward_token1] = ACTIONS(827), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(827), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(827), + [aux_sym_escape_char_token1] = ACTIONS(827), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(827), + [aux_sym_fingerprint_hash_token1] = ACTIONS(827), + [aux_sym_fork_after_authentication_token1] = ACTIONS(827), + [aux_sym_forward_agent_token1] = ACTIONS(827), + [aux_sym_forward_x11_token1] = ACTIONS(829), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(827), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(827), + [aux_sym_gateway_ports_token1] = ACTIONS(827), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(827), + [aux_sym_gssapi_authentication_token1] = ACTIONS(827), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(827), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(827), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(827), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(827), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(827), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(827), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(827), + [aux_sym_hash_known_hosts_token1] = ACTIONS(827), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(827), + [aux_sym_hostbased_authentication_token1] = ACTIONS(827), + [aux_sym_host_key_algorithms_token1] = ACTIONS(827), + [aux_sym_host_key_alias_token1] = ACTIONS(827), + [aux_sym_hostname_token1] = ACTIONS(827), + [aux_sym_identities_only_token1] = ACTIONS(827), + [aux_sym_identity_agent_token1] = ACTIONS(827), + [aux_sym_identity_file_token1] = ACTIONS(827), + [aux_sym_ignore_unknown_token1] = ACTIONS(827), + [aux_sym_include_token1] = ACTIONS(827), + [aux_sym_ip_qos_token1] = ACTIONS(827), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(827), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(827), + [aux_sym_kex_algorithms_token1] = ACTIONS(827), + [aux_sym_known_hosts_command_token1] = ACTIONS(827), + [aux_sym_local_command_token1] = ACTIONS(827), + [aux_sym_local_forward_token1] = ACTIONS(827), + [aux_sym_log_level_token1] = ACTIONS(827), + [aux_sym_log_verbose_token1] = ACTIONS(827), + [aux_sym_macs_token1] = ACTIONS(827), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(827), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(827), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(827), + [aux_sym_password_authentication_token1] = ACTIONS(827), + [aux_sym_permit_local_command_token1] = ACTIONS(827), + [aux_sym_permit_remote_open_token1] = ACTIONS(827), + [aux_sym_pkcs11_provider_token1] = ACTIONS(827), + [aux_sym_port_token1] = ACTIONS(827), + [aux_sym_preferred_authentications_token1] = ACTIONS(827), + [aux_sym_protocol_token1] = ACTIONS(827), + [aux_sym_proxy_command_token1] = ACTIONS(827), + [aux_sym_proxy_jump_token1] = ACTIONS(827), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(827), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(827), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(827), + [aux_sym_pubkey_authentication_token1] = ACTIONS(827), + [aux_sym_rekey_limit_token1] = ACTIONS(827), + [aux_sym_remote_command_token1] = ACTIONS(827), + [aux_sym_remote_forward_token1] = ACTIONS(827), + [aux_sym_request_tty_token1] = ACTIONS(827), + [aux_sym_required_rsa_size_token1] = ACTIONS(827), + [aux_sym_revoked_host_keys_token1] = ACTIONS(827), + [aux_sym_security_key_provider_token1] = ACTIONS(827), + [aux_sym_send_env_token1] = ACTIONS(827), + [aux_sym_server_alive_count_max_token1] = ACTIONS(827), + [aux_sym_server_alive_interval_token1] = ACTIONS(827), + [aux_sym_session_type_token1] = ACTIONS(827), + [aux_sym_set_env_token1] = ACTIONS(827), + [aux_sym_stdin_null_token1] = ACTIONS(827), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(827), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(827), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(827), + [aux_sym_syslog_facility_token1] = ACTIONS(827), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(827), + [aux_sym_keep_alive_token1] = ACTIONS(827), + [aux_sym_tag_token1] = ACTIONS(827), + [aux_sym_tunnel_token1] = ACTIONS(829), + [aux_sym_tunnel_device_token1] = ACTIONS(827), + [aux_sym_update_host_keys_token1] = ACTIONS(827), + [aux_sym_use_keychain_token1] = ACTIONS(827), + [aux_sym_use_roaming_token1] = ACTIONS(827), + [aux_sym_user_token1] = ACTIONS(829), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(827), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(827), + [aux_sym_visual_host_key_token1] = ACTIONS(827), + [aux_sym_xauth_location_token1] = ACTIONS(827), }, [637] = { - [ts_builtin_sym_end] = ACTIONS(3496), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3498), - [aux_sym_match_token1] = ACTIONS(3496), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3496), - [aux_sym_address_family_token1] = ACTIONS(3496), - [aux_sym_batch_mode_token1] = ACTIONS(3496), - [aux_sym_bind_address_token1] = ACTIONS(3496), - [aux_sym_bind_interface_token1] = ACTIONS(3496), - [aux_sym_canonical_domains_token1] = ACTIONS(3496), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3496), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3496), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3496), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3496), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3496), - [aux_sym_certificate_file_token1] = ACTIONS(3496), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3496), - [aux_sym_channel_timeout_token1] = ACTIONS(3496), - [aux_sym_check_host_ip_token1] = ACTIONS(3496), - [aux_sym_ciphers_token1] = ACTIONS(3496), - [aux_sym_cipher_token1] = ACTIONS(3498), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3496), - [aux_sym_compression_token1] = ACTIONS(3496), - [aux_sym_connection_attempts_token1] = ACTIONS(3496), - [aux_sym_connect_timeout_token1] = ACTIONS(3496), - [aux_sym_control_master_token1] = ACTIONS(3496), - [aux_sym_control_path_token1] = ACTIONS(3496), - [aux_sym_control_persist_token1] = ACTIONS(3496), - [aux_sym_dynamic_forward_token1] = ACTIONS(3496), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3496), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3496), - [aux_sym_escape_char_token1] = ACTIONS(3496), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3496), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3496), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3496), - [aux_sym_forward_agent_token1] = ACTIONS(3496), - [aux_sym_forward_x11_token1] = ACTIONS(3498), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3496), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3496), - [aux_sym_gateway_ports_token1] = ACTIONS(3496), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3496), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3496), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3496), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3496), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3496), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3496), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3496), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3496), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3496), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3496), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3496), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3496), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3496), - [aux_sym_host_key_alias_token1] = ACTIONS(3496), - [aux_sym_hostname_token1] = ACTIONS(3496), - [aux_sym_identities_only_token1] = ACTIONS(3496), - [aux_sym_identity_agent_token1] = ACTIONS(3496), - [aux_sym_identity_file_token1] = ACTIONS(3496), - [aux_sym_ignore_unknown_token1] = ACTIONS(3496), - [aux_sym_include_token1] = ACTIONS(3496), - [aux_sym_ip_qos_token1] = ACTIONS(3496), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3496), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3496), - [aux_sym_kex_algorithms_token1] = ACTIONS(3496), - [aux_sym_known_hosts_command_token1] = ACTIONS(3496), - [aux_sym_local_command_token1] = ACTIONS(3496), - [aux_sym_local_forward_token1] = ACTIONS(3496), - [aux_sym_log_level_token1] = ACTIONS(3496), - [aux_sym_log_verbose_token1] = ACTIONS(3496), - [aux_sym_macs_token1] = ACTIONS(3496), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3496), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3496), - [aux_sym_password_authentication_token1] = ACTIONS(3496), - [aux_sym_permit_local_command_token1] = ACTIONS(3496), - [aux_sym_permit_remote_open_token1] = ACTIONS(3496), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3496), - [aux_sym_port_token1] = ACTIONS(3496), - [aux_sym_preferred_authentications_token1] = ACTIONS(3496), - [aux_sym_protocol_token1] = ACTIONS(3496), - [aux_sym_proxy_command_token1] = ACTIONS(3496), - [aux_sym_proxy_jump_token1] = ACTIONS(3496), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3496), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3496), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3496), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3496), - [aux_sym_rekey_limit_token1] = ACTIONS(3496), - [aux_sym_remote_command_token1] = ACTIONS(3496), - [aux_sym_remote_forward_token1] = ACTIONS(3496), - [aux_sym_request_tty_token1] = ACTIONS(3496), - [aux_sym_required_rsa_size_token1] = ACTIONS(3496), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3496), - [aux_sym_security_key_provider_token1] = ACTIONS(3496), - [aux_sym_send_env_token1] = ACTIONS(3496), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3496), - [aux_sym_server_alive_interval_token1] = ACTIONS(3496), - [aux_sym_session_type_token1] = ACTIONS(3496), - [aux_sym_set_env_token1] = ACTIONS(3496), - [aux_sym_stdin_null_token1] = ACTIONS(3496), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3496), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3496), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3496), - [aux_sym_syslog_facility_token1] = ACTIONS(3496), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3496), - [aux_sym_keep_alive_token1] = ACTIONS(3496), - [aux_sym_tag_token1] = ACTIONS(3496), - [aux_sym_tunnel_token1] = ACTIONS(3498), - [aux_sym_tunnel_device_token1] = ACTIONS(3496), - [aux_sym_update_host_keys_token1] = ACTIONS(3496), - [aux_sym_use_keychain_token1] = ACTIONS(3496), - [aux_sym_use_roaming_token1] = ACTIONS(3496), - [aux_sym_user_token1] = ACTIONS(3498), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3496), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3496), - [aux_sym_visual_host_key_token1] = ACTIONS(3496), - [aux_sym_xauth_location_token1] = ACTIONS(3496), + [ts_builtin_sym_end] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1637), + [aux_sym_match_token1] = ACTIONS(1635), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1635), + [aux_sym_address_family_token1] = ACTIONS(1635), + [aux_sym_batch_mode_token1] = ACTIONS(1635), + [aux_sym_bind_address_token1] = ACTIONS(1635), + [aux_sym_bind_interface_token1] = ACTIONS(1635), + [aux_sym_canonical_domains_token1] = ACTIONS(1635), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1635), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1635), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1635), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1635), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1635), + [aux_sym_certificate_file_token1] = ACTIONS(1635), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1635), + [aux_sym_channel_timeout_token1] = ACTIONS(1635), + [aux_sym_check_host_ip_token1] = ACTIONS(1635), + [aux_sym_ciphers_token1] = ACTIONS(1635), + [aux_sym_cipher_token1] = ACTIONS(1637), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1635), + [aux_sym_compression_token1] = ACTIONS(1635), + [aux_sym_connection_attempts_token1] = ACTIONS(1635), + [aux_sym_connect_timeout_token1] = ACTIONS(1635), + [aux_sym_control_master_token1] = ACTIONS(1635), + [aux_sym_control_path_token1] = ACTIONS(1635), + [aux_sym_control_persist_token1] = ACTIONS(1635), + [aux_sym_dynamic_forward_token1] = ACTIONS(1635), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1635), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1635), + [aux_sym_escape_char_token1] = ACTIONS(1635), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1635), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1635), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1635), + [aux_sym_forward_agent_token1] = ACTIONS(1635), + [aux_sym_forward_x11_token1] = ACTIONS(1637), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1635), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1635), + [aux_sym_gateway_ports_token1] = ACTIONS(1635), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1635), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1635), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1635), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1635), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1635), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1635), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1635), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1635), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1635), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1635), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1635), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1635), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1635), + [aux_sym_host_key_alias_token1] = ACTIONS(1635), + [aux_sym_hostname_token1] = ACTIONS(1635), + [aux_sym_identities_only_token1] = ACTIONS(1635), + [aux_sym_identity_agent_token1] = ACTIONS(1635), + [aux_sym_identity_file_token1] = ACTIONS(1635), + [aux_sym_ignore_unknown_token1] = ACTIONS(1635), + [aux_sym_include_token1] = ACTIONS(1635), + [aux_sym_ip_qos_token1] = ACTIONS(1635), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1635), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1635), + [aux_sym_kex_algorithms_token1] = ACTIONS(1635), + [aux_sym_known_hosts_command_token1] = ACTIONS(1635), + [aux_sym_local_command_token1] = ACTIONS(1635), + [aux_sym_local_forward_token1] = ACTIONS(1635), + [aux_sym_log_level_token1] = ACTIONS(1635), + [aux_sym_log_verbose_token1] = ACTIONS(1635), + [aux_sym_macs_token1] = ACTIONS(1635), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1635), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1635), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1635), + [aux_sym_password_authentication_token1] = ACTIONS(1635), + [aux_sym_permit_local_command_token1] = ACTIONS(1635), + [aux_sym_permit_remote_open_token1] = ACTIONS(1635), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1635), + [aux_sym_port_token1] = ACTIONS(1635), + [aux_sym_preferred_authentications_token1] = ACTIONS(1635), + [aux_sym_protocol_token1] = ACTIONS(1635), + [aux_sym_proxy_command_token1] = ACTIONS(1635), + [aux_sym_proxy_jump_token1] = ACTIONS(1635), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1635), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1635), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1635), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1635), + [aux_sym_rekey_limit_token1] = ACTIONS(1635), + [aux_sym_remote_command_token1] = ACTIONS(1635), + [aux_sym_remote_forward_token1] = ACTIONS(1635), + [aux_sym_request_tty_token1] = ACTIONS(1635), + [aux_sym_required_rsa_size_token1] = ACTIONS(1635), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1635), + [aux_sym_security_key_provider_token1] = ACTIONS(1635), + [aux_sym_send_env_token1] = ACTIONS(1635), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1635), + [aux_sym_server_alive_interval_token1] = ACTIONS(1635), + [aux_sym_session_type_token1] = ACTIONS(1635), + [aux_sym_set_env_token1] = ACTIONS(1635), + [aux_sym_stdin_null_token1] = ACTIONS(1635), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1635), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1635), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1635), + [aux_sym_syslog_facility_token1] = ACTIONS(1635), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1635), + [aux_sym_keep_alive_token1] = ACTIONS(1635), + [aux_sym_tag_token1] = ACTIONS(1635), + [aux_sym_tunnel_token1] = ACTIONS(1637), + [aux_sym_tunnel_device_token1] = ACTIONS(1635), + [aux_sym_update_host_keys_token1] = ACTIONS(1635), + [aux_sym_use_keychain_token1] = ACTIONS(1635), + [aux_sym_use_roaming_token1] = ACTIONS(1635), + [aux_sym_user_token1] = ACTIONS(1637), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1635), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1635), + [aux_sym_visual_host_key_token1] = ACTIONS(1635), + [aux_sym_xauth_location_token1] = ACTIONS(1635), }, [638] = { - [ts_builtin_sym_end] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1130), - [aux_sym_match_token1] = ACTIONS(1128), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1128), - [aux_sym_address_family_token1] = ACTIONS(1128), - [aux_sym_batch_mode_token1] = ACTIONS(1128), - [aux_sym_bind_address_token1] = ACTIONS(1128), - [aux_sym_bind_interface_token1] = ACTIONS(1128), - [aux_sym_canonical_domains_token1] = ACTIONS(1128), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1128), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1128), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1128), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1128), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1128), - [aux_sym_certificate_file_token1] = ACTIONS(1128), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1128), - [aux_sym_channel_timeout_token1] = ACTIONS(1128), - [aux_sym_check_host_ip_token1] = ACTIONS(1128), - [aux_sym_ciphers_token1] = ACTIONS(1128), - [aux_sym_cipher_token1] = ACTIONS(1130), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1128), - [aux_sym_compression_token1] = ACTIONS(1128), - [aux_sym_connection_attempts_token1] = ACTIONS(1128), - [aux_sym_connect_timeout_token1] = ACTIONS(1128), - [aux_sym_control_master_token1] = ACTIONS(1128), - [aux_sym_control_path_token1] = ACTIONS(1128), - [aux_sym_control_persist_token1] = ACTIONS(1128), - [aux_sym_dynamic_forward_token1] = ACTIONS(1128), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1128), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1128), - [aux_sym_escape_char_token1] = ACTIONS(1128), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1128), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1128), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1128), - [aux_sym_forward_agent_token1] = ACTIONS(1128), - [aux_sym_forward_x11_token1] = ACTIONS(1130), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1128), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1128), - [aux_sym_gateway_ports_token1] = ACTIONS(1128), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1128), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1128), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1128), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1128), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1128), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1128), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1128), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1128), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1128), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1128), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1128), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1128), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1128), - [aux_sym_host_key_alias_token1] = ACTIONS(1128), - [aux_sym_hostname_token1] = ACTIONS(1128), - [aux_sym_identities_only_token1] = ACTIONS(1128), - [aux_sym_identity_agent_token1] = ACTIONS(1128), - [aux_sym_identity_file_token1] = ACTIONS(1128), - [aux_sym_ignore_unknown_token1] = ACTIONS(1128), - [aux_sym_include_token1] = ACTIONS(1128), - [aux_sym_ip_qos_token1] = ACTIONS(1128), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1128), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1128), - [aux_sym_kex_algorithms_token1] = ACTIONS(1128), - [aux_sym_known_hosts_command_token1] = ACTIONS(1128), - [aux_sym_local_command_token1] = ACTIONS(1128), - [aux_sym_local_forward_token1] = ACTIONS(1128), - [aux_sym_log_level_token1] = ACTIONS(1128), - [aux_sym_log_verbose_token1] = ACTIONS(1128), - [aux_sym_macs_token1] = ACTIONS(1128), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1128), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1128), - [aux_sym_password_authentication_token1] = ACTIONS(1128), - [aux_sym_permit_local_command_token1] = ACTIONS(1128), - [aux_sym_permit_remote_open_token1] = ACTIONS(1128), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1128), - [aux_sym_port_token1] = ACTIONS(1128), - [aux_sym_preferred_authentications_token1] = ACTIONS(1128), - [aux_sym_protocol_token1] = ACTIONS(1128), - [aux_sym_proxy_command_token1] = ACTIONS(1128), - [aux_sym_proxy_jump_token1] = ACTIONS(1128), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1128), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1128), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1128), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1128), - [aux_sym_rekey_limit_token1] = ACTIONS(1128), - [aux_sym_remote_command_token1] = ACTIONS(1128), - [aux_sym_remote_forward_token1] = ACTIONS(1128), - [aux_sym_request_tty_token1] = ACTIONS(1128), - [aux_sym_required_rsa_size_token1] = ACTIONS(1128), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1128), - [aux_sym_security_key_provider_token1] = ACTIONS(1128), - [aux_sym_send_env_token1] = ACTIONS(1128), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1128), - [aux_sym_server_alive_interval_token1] = ACTIONS(1128), - [aux_sym_session_type_token1] = ACTIONS(1128), - [aux_sym_set_env_token1] = ACTIONS(1128), - [aux_sym_stdin_null_token1] = ACTIONS(1128), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1128), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1128), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1128), - [aux_sym_syslog_facility_token1] = ACTIONS(1128), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1128), - [aux_sym_keep_alive_token1] = ACTIONS(1128), - [aux_sym_tag_token1] = ACTIONS(1128), - [aux_sym_tunnel_token1] = ACTIONS(1130), - [aux_sym_tunnel_device_token1] = ACTIONS(1128), - [aux_sym_update_host_keys_token1] = ACTIONS(1128), - [aux_sym_use_keychain_token1] = ACTIONS(1128), - [aux_sym_use_roaming_token1] = ACTIONS(1128), - [aux_sym_user_token1] = ACTIONS(1130), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1128), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1128), - [aux_sym_visual_host_key_token1] = ACTIONS(1128), - [aux_sym_xauth_location_token1] = ACTIONS(1128), + [ts_builtin_sym_end] = ACTIONS(1641), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1643), + [aux_sym_match_token1] = ACTIONS(1641), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1641), + [aux_sym_address_family_token1] = ACTIONS(1641), + [aux_sym_batch_mode_token1] = ACTIONS(1641), + [aux_sym_bind_address_token1] = ACTIONS(1641), + [aux_sym_bind_interface_token1] = ACTIONS(1641), + [aux_sym_canonical_domains_token1] = ACTIONS(1641), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1641), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1641), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1641), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1641), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1641), + [aux_sym_certificate_file_token1] = ACTIONS(1641), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1641), + [aux_sym_channel_timeout_token1] = ACTIONS(1641), + [aux_sym_check_host_ip_token1] = ACTIONS(1641), + [aux_sym_ciphers_token1] = ACTIONS(1641), + [aux_sym_cipher_token1] = ACTIONS(1643), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1641), + [aux_sym_compression_token1] = ACTIONS(1641), + [aux_sym_connection_attempts_token1] = ACTIONS(1641), + [aux_sym_connect_timeout_token1] = ACTIONS(1641), + [aux_sym_control_master_token1] = ACTIONS(1641), + [aux_sym_control_path_token1] = ACTIONS(1641), + [aux_sym_control_persist_token1] = ACTIONS(1641), + [aux_sym_dynamic_forward_token1] = ACTIONS(1641), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1641), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1641), + [aux_sym_escape_char_token1] = ACTIONS(1641), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1641), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1641), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1641), + [aux_sym_forward_agent_token1] = ACTIONS(1641), + [aux_sym_forward_x11_token1] = ACTIONS(1643), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1641), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1641), + [aux_sym_gateway_ports_token1] = ACTIONS(1641), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1641), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1641), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1641), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1641), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1641), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1641), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1641), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1641), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1641), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1641), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1641), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1641), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1641), + [aux_sym_host_key_alias_token1] = ACTIONS(1641), + [aux_sym_hostname_token1] = ACTIONS(1641), + [aux_sym_identities_only_token1] = ACTIONS(1641), + [aux_sym_identity_agent_token1] = ACTIONS(1641), + [aux_sym_identity_file_token1] = ACTIONS(1641), + [aux_sym_ignore_unknown_token1] = ACTIONS(1641), + [aux_sym_include_token1] = ACTIONS(1641), + [aux_sym_ip_qos_token1] = ACTIONS(1641), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1641), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1641), + [aux_sym_kex_algorithms_token1] = ACTIONS(1641), + [aux_sym_known_hosts_command_token1] = ACTIONS(1641), + [aux_sym_local_command_token1] = ACTIONS(1641), + [aux_sym_local_forward_token1] = ACTIONS(1641), + [aux_sym_log_level_token1] = ACTIONS(1641), + [aux_sym_log_verbose_token1] = ACTIONS(1641), + [aux_sym_macs_token1] = ACTIONS(1641), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1641), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1641), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1641), + [aux_sym_password_authentication_token1] = ACTIONS(1641), + [aux_sym_permit_local_command_token1] = ACTIONS(1641), + [aux_sym_permit_remote_open_token1] = ACTIONS(1641), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1641), + [aux_sym_port_token1] = ACTIONS(1641), + [aux_sym_preferred_authentications_token1] = ACTIONS(1641), + [aux_sym_protocol_token1] = ACTIONS(1641), + [aux_sym_proxy_command_token1] = ACTIONS(1641), + [aux_sym_proxy_jump_token1] = ACTIONS(1641), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1641), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1641), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1641), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1641), + [aux_sym_rekey_limit_token1] = ACTIONS(1641), + [aux_sym_remote_command_token1] = ACTIONS(1641), + [aux_sym_remote_forward_token1] = ACTIONS(1641), + [aux_sym_request_tty_token1] = ACTIONS(1641), + [aux_sym_required_rsa_size_token1] = ACTIONS(1641), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1641), + [aux_sym_security_key_provider_token1] = ACTIONS(1641), + [aux_sym_send_env_token1] = ACTIONS(1641), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1641), + [aux_sym_server_alive_interval_token1] = ACTIONS(1641), + [aux_sym_session_type_token1] = ACTIONS(1641), + [aux_sym_set_env_token1] = ACTIONS(1641), + [aux_sym_stdin_null_token1] = ACTIONS(1641), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1641), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1641), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1641), + [aux_sym_syslog_facility_token1] = ACTIONS(1641), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1641), + [aux_sym_keep_alive_token1] = ACTIONS(1641), + [aux_sym_tag_token1] = ACTIONS(1641), + [aux_sym_tunnel_token1] = ACTIONS(1643), + [aux_sym_tunnel_device_token1] = ACTIONS(1641), + [aux_sym_update_host_keys_token1] = ACTIONS(1641), + [aux_sym_use_keychain_token1] = ACTIONS(1641), + [aux_sym_use_roaming_token1] = ACTIONS(1641), + [aux_sym_user_token1] = ACTIONS(1643), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1641), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1641), + [aux_sym_visual_host_key_token1] = ACTIONS(1641), + [aux_sym_xauth_location_token1] = ACTIONS(1641), }, [639] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1580), - [aux_sym_match_token1] = ACTIONS(1578), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1578), - [aux_sym_address_family_token1] = ACTIONS(1578), - [aux_sym_batch_mode_token1] = ACTIONS(1578), - [aux_sym_bind_address_token1] = ACTIONS(1578), - [aux_sym_bind_interface_token1] = ACTIONS(1578), - [aux_sym_canonical_domains_token1] = ACTIONS(1578), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1578), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1578), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1578), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1578), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1578), - [aux_sym_certificate_file_token1] = ACTIONS(1578), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1578), - [aux_sym_channel_timeout_token1] = ACTIONS(1578), - [aux_sym_check_host_ip_token1] = ACTIONS(1578), - [aux_sym_ciphers_token1] = ACTIONS(1578), - [aux_sym_cipher_token1] = ACTIONS(1580), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1578), - [aux_sym_compression_token1] = ACTIONS(1578), - [aux_sym_connection_attempts_token1] = ACTIONS(1578), - [aux_sym_connect_timeout_token1] = ACTIONS(1578), - [aux_sym_control_master_token1] = ACTIONS(1578), - [aux_sym_control_path_token1] = ACTIONS(1578), - [aux_sym_control_persist_token1] = ACTIONS(1578), - [aux_sym_dynamic_forward_token1] = ACTIONS(1578), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1578), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1578), - [aux_sym_escape_char_token1] = ACTIONS(1578), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1578), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1578), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1578), - [aux_sym_forward_agent_token1] = ACTIONS(1578), - [aux_sym_forward_x11_token1] = ACTIONS(1580), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1578), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1578), - [aux_sym_gateway_ports_token1] = ACTIONS(1578), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1578), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1578), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1578), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1578), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1578), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1578), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1578), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1578), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1578), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1578), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1578), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1578), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1578), - [aux_sym_host_key_alias_token1] = ACTIONS(1578), - [aux_sym_hostname_token1] = ACTIONS(1578), - [aux_sym_identities_only_token1] = ACTIONS(1578), - [aux_sym_identity_agent_token1] = ACTIONS(1578), - [aux_sym_identity_file_token1] = ACTIONS(1578), - [aux_sym_ignore_unknown_token1] = ACTIONS(1578), - [aux_sym_include_token1] = ACTIONS(1578), - [aux_sym_ip_qos_token1] = ACTIONS(1578), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1578), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1578), - [aux_sym_kex_algorithms_token1] = ACTIONS(1578), - [aux_sym_known_hosts_command_token1] = ACTIONS(1578), - [aux_sym_local_command_token1] = ACTIONS(1578), - [aux_sym_local_forward_token1] = ACTIONS(1578), - [aux_sym_log_level_token1] = ACTIONS(1578), - [aux_sym_log_verbose_token1] = ACTIONS(1578), - [aux_sym_macs_token1] = ACTIONS(1578), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1578), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1578), - [aux_sym_password_authentication_token1] = ACTIONS(1578), - [aux_sym_permit_local_command_token1] = ACTIONS(1578), - [aux_sym_permit_remote_open_token1] = ACTIONS(1578), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1578), - [aux_sym_port_token1] = ACTIONS(1578), - [aux_sym_preferred_authentications_token1] = ACTIONS(1578), - [aux_sym_protocol_token1] = ACTIONS(1578), - [aux_sym_proxy_command_token1] = ACTIONS(1578), - [aux_sym_proxy_jump_token1] = ACTIONS(1578), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1578), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1578), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1578), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1578), - [aux_sym_rekey_limit_token1] = ACTIONS(1578), - [aux_sym_remote_command_token1] = ACTIONS(1578), - [aux_sym_remote_forward_token1] = ACTIONS(1578), - [aux_sym_request_tty_token1] = ACTIONS(1578), - [aux_sym_required_rsa_size_token1] = ACTIONS(1578), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1578), - [aux_sym_security_key_provider_token1] = ACTIONS(1578), - [aux_sym_send_env_token1] = ACTIONS(1578), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1578), - [aux_sym_server_alive_interval_token1] = ACTIONS(1578), - [aux_sym_session_type_token1] = ACTIONS(1578), - [aux_sym_set_env_token1] = ACTIONS(1578), - [aux_sym_stdin_null_token1] = ACTIONS(1578), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1578), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1578), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1578), - [aux_sym_syslog_facility_token1] = ACTIONS(1578), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1578), - [aux_sym_keep_alive_token1] = ACTIONS(1578), - [aux_sym_tag_token1] = ACTIONS(1578), - [aux_sym_tunnel_token1] = ACTIONS(1580), - [aux_sym_tunnel_device_token1] = ACTIONS(1578), - [aux_sym_update_host_keys_token1] = ACTIONS(1578), - [aux_sym_use_keychain_token1] = ACTIONS(1578), - [aux_sym_use_roaming_token1] = ACTIONS(1578), - [aux_sym_user_token1] = ACTIONS(1580), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1578), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1578), - [aux_sym_visual_host_key_token1] = ACTIONS(1578), - [aux_sym_xauth_location_token1] = ACTIONS(1578), + [ts_builtin_sym_end] = ACTIONS(1349), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1351), + [aux_sym_match_token1] = ACTIONS(1349), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1349), + [aux_sym_address_family_token1] = ACTIONS(1349), + [aux_sym_batch_mode_token1] = ACTIONS(1349), + [aux_sym_bind_address_token1] = ACTIONS(1349), + [aux_sym_bind_interface_token1] = ACTIONS(1349), + [aux_sym_canonical_domains_token1] = ACTIONS(1349), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1349), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1349), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1349), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1349), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1349), + [aux_sym_certificate_file_token1] = ACTIONS(1349), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1349), + [aux_sym_channel_timeout_token1] = ACTIONS(1349), + [aux_sym_check_host_ip_token1] = ACTIONS(1349), + [aux_sym_ciphers_token1] = ACTIONS(1349), + [aux_sym_cipher_token1] = ACTIONS(1351), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1349), + [aux_sym_compression_token1] = ACTIONS(1349), + [aux_sym_connection_attempts_token1] = ACTIONS(1349), + [aux_sym_connect_timeout_token1] = ACTIONS(1349), + [aux_sym_control_master_token1] = ACTIONS(1349), + [aux_sym_control_path_token1] = ACTIONS(1349), + [aux_sym_control_persist_token1] = ACTIONS(1349), + [aux_sym_dynamic_forward_token1] = ACTIONS(1349), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1349), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1349), + [aux_sym_escape_char_token1] = ACTIONS(1349), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1349), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1349), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1349), + [aux_sym_forward_agent_token1] = ACTIONS(1349), + [aux_sym_forward_x11_token1] = ACTIONS(1351), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1349), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1349), + [aux_sym_gateway_ports_token1] = ACTIONS(1349), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1349), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1349), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1349), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1349), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1349), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1349), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1349), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1349), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1349), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1349), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1349), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1349), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1349), + [aux_sym_host_key_alias_token1] = ACTIONS(1349), + [aux_sym_hostname_token1] = ACTIONS(1349), + [aux_sym_identities_only_token1] = ACTIONS(1349), + [aux_sym_identity_agent_token1] = ACTIONS(1349), + [aux_sym_identity_file_token1] = ACTIONS(1349), + [aux_sym_ignore_unknown_token1] = ACTIONS(1349), + [aux_sym_include_token1] = ACTIONS(1349), + [aux_sym_ip_qos_token1] = ACTIONS(1349), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1349), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1349), + [aux_sym_kex_algorithms_token1] = ACTIONS(1349), + [aux_sym_known_hosts_command_token1] = ACTIONS(1349), + [aux_sym_local_command_token1] = ACTIONS(1349), + [aux_sym_local_forward_token1] = ACTIONS(1349), + [aux_sym_log_level_token1] = ACTIONS(1349), + [aux_sym_log_verbose_token1] = ACTIONS(1349), + [aux_sym_macs_token1] = ACTIONS(1349), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1349), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1349), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1349), + [aux_sym_password_authentication_token1] = ACTIONS(1349), + [aux_sym_permit_local_command_token1] = ACTIONS(1349), + [aux_sym_permit_remote_open_token1] = ACTIONS(1349), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1349), + [aux_sym_port_token1] = ACTIONS(1349), + [aux_sym_preferred_authentications_token1] = ACTIONS(1349), + [aux_sym_protocol_token1] = ACTIONS(1349), + [aux_sym_proxy_command_token1] = ACTIONS(1349), + [aux_sym_proxy_jump_token1] = ACTIONS(1349), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1349), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1349), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1349), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1349), + [aux_sym_rekey_limit_token1] = ACTIONS(1349), + [aux_sym_remote_command_token1] = ACTIONS(1349), + [aux_sym_remote_forward_token1] = ACTIONS(1349), + [aux_sym_request_tty_token1] = ACTIONS(1349), + [aux_sym_required_rsa_size_token1] = ACTIONS(1349), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1349), + [aux_sym_security_key_provider_token1] = ACTIONS(1349), + [aux_sym_send_env_token1] = ACTIONS(1349), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1349), + [aux_sym_server_alive_interval_token1] = ACTIONS(1349), + [aux_sym_session_type_token1] = ACTIONS(1349), + [aux_sym_set_env_token1] = ACTIONS(1349), + [aux_sym_stdin_null_token1] = ACTIONS(1349), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1349), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1349), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1349), + [aux_sym_syslog_facility_token1] = ACTIONS(1349), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1349), + [aux_sym_keep_alive_token1] = ACTIONS(1349), + [aux_sym_tag_token1] = ACTIONS(1349), + [aux_sym_tunnel_token1] = ACTIONS(1351), + [aux_sym_tunnel_device_token1] = ACTIONS(1349), + [aux_sym_update_host_keys_token1] = ACTIONS(1349), + [aux_sym_use_keychain_token1] = ACTIONS(1349), + [aux_sym_use_roaming_token1] = ACTIONS(1349), + [aux_sym_user_token1] = ACTIONS(1351), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1349), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1349), + [aux_sym_visual_host_key_token1] = ACTIONS(1349), + [aux_sym_xauth_location_token1] = ACTIONS(1349), }, [640] = { - [ts_builtin_sym_end] = ACTIONS(3500), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3502), - [aux_sym_match_token1] = ACTIONS(3500), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3500), - [aux_sym_address_family_token1] = ACTIONS(3500), - [aux_sym_batch_mode_token1] = ACTIONS(3500), - [aux_sym_bind_address_token1] = ACTIONS(3500), - [aux_sym_bind_interface_token1] = ACTIONS(3500), - [aux_sym_canonical_domains_token1] = ACTIONS(3500), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3500), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3500), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3500), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3500), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3500), - [aux_sym_certificate_file_token1] = ACTIONS(3500), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3500), - [aux_sym_channel_timeout_token1] = ACTIONS(3500), - [aux_sym_check_host_ip_token1] = ACTIONS(3500), - [aux_sym_ciphers_token1] = ACTIONS(3500), - [aux_sym_cipher_token1] = ACTIONS(3502), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3500), - [aux_sym_compression_token1] = ACTIONS(3500), - [aux_sym_connection_attempts_token1] = ACTIONS(3500), - [aux_sym_connect_timeout_token1] = ACTIONS(3500), - [aux_sym_control_master_token1] = ACTIONS(3500), - [aux_sym_control_path_token1] = ACTIONS(3500), - [aux_sym_control_persist_token1] = ACTIONS(3500), - [aux_sym_dynamic_forward_token1] = ACTIONS(3500), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3500), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3500), - [aux_sym_escape_char_token1] = ACTIONS(3500), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3500), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3500), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3500), - [aux_sym_forward_agent_token1] = ACTIONS(3500), - [aux_sym_forward_x11_token1] = ACTIONS(3502), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3500), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3500), - [aux_sym_gateway_ports_token1] = ACTIONS(3500), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3500), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3500), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3500), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3500), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3500), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3500), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3500), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3500), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3500), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3500), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3500), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3500), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3500), - [aux_sym_host_key_alias_token1] = ACTIONS(3500), - [aux_sym_hostname_token1] = ACTIONS(3500), - [aux_sym_identities_only_token1] = ACTIONS(3500), - [aux_sym_identity_agent_token1] = ACTIONS(3500), - [aux_sym_identity_file_token1] = ACTIONS(3500), - [aux_sym_ignore_unknown_token1] = ACTIONS(3500), - [aux_sym_include_token1] = ACTIONS(3500), - [aux_sym_ip_qos_token1] = ACTIONS(3500), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3500), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3500), - [aux_sym_kex_algorithms_token1] = ACTIONS(3500), - [aux_sym_known_hosts_command_token1] = ACTIONS(3500), - [aux_sym_local_command_token1] = ACTIONS(3500), - [aux_sym_local_forward_token1] = ACTIONS(3500), - [aux_sym_log_level_token1] = ACTIONS(3500), - [aux_sym_log_verbose_token1] = ACTIONS(3500), - [aux_sym_macs_token1] = ACTIONS(3500), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3500), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3500), - [aux_sym_password_authentication_token1] = ACTIONS(3500), - [aux_sym_permit_local_command_token1] = ACTIONS(3500), - [aux_sym_permit_remote_open_token1] = ACTIONS(3500), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3500), - [aux_sym_port_token1] = ACTIONS(3500), - [aux_sym_preferred_authentications_token1] = ACTIONS(3500), - [aux_sym_protocol_token1] = ACTIONS(3500), - [aux_sym_proxy_command_token1] = ACTIONS(3500), - [aux_sym_proxy_jump_token1] = ACTIONS(3500), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3500), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3500), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3500), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3500), - [aux_sym_rekey_limit_token1] = ACTIONS(3500), - [aux_sym_remote_command_token1] = ACTIONS(3500), - [aux_sym_remote_forward_token1] = ACTIONS(3500), - [aux_sym_request_tty_token1] = ACTIONS(3500), - [aux_sym_required_rsa_size_token1] = ACTIONS(3500), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3500), - [aux_sym_security_key_provider_token1] = ACTIONS(3500), - [aux_sym_send_env_token1] = ACTIONS(3500), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3500), - [aux_sym_server_alive_interval_token1] = ACTIONS(3500), - [aux_sym_session_type_token1] = ACTIONS(3500), - [aux_sym_set_env_token1] = ACTIONS(3500), - [aux_sym_stdin_null_token1] = ACTIONS(3500), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3500), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3500), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3500), - [aux_sym_syslog_facility_token1] = ACTIONS(3500), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3500), - [aux_sym_keep_alive_token1] = ACTIONS(3500), - [aux_sym_tag_token1] = ACTIONS(3500), - [aux_sym_tunnel_token1] = ACTIONS(3502), - [aux_sym_tunnel_device_token1] = ACTIONS(3500), - [aux_sym_update_host_keys_token1] = ACTIONS(3500), - [aux_sym_use_keychain_token1] = ACTIONS(3500), - [aux_sym_use_roaming_token1] = ACTIONS(3500), - [aux_sym_user_token1] = ACTIONS(3502), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3500), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3500), - [aux_sym_visual_host_key_token1] = ACTIONS(3500), - [aux_sym_xauth_location_token1] = ACTIONS(3500), + [ts_builtin_sym_end] = ACTIONS(821), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(823), + [aux_sym_match_token1] = ACTIONS(821), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(821), + [aux_sym_address_family_token1] = ACTIONS(821), + [aux_sym_batch_mode_token1] = ACTIONS(821), + [aux_sym_bind_address_token1] = ACTIONS(821), + [aux_sym_bind_interface_token1] = ACTIONS(821), + [aux_sym_canonical_domains_token1] = ACTIONS(821), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(821), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(821), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(821), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(821), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(821), + [aux_sym_certificate_file_token1] = ACTIONS(821), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(821), + [aux_sym_channel_timeout_token1] = ACTIONS(821), + [aux_sym_check_host_ip_token1] = ACTIONS(821), + [aux_sym_ciphers_token1] = ACTIONS(821), + [aux_sym_cipher_token1] = ACTIONS(823), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(821), + [aux_sym_compression_token1] = ACTIONS(821), + [aux_sym_connection_attempts_token1] = ACTIONS(821), + [aux_sym_connect_timeout_token1] = ACTIONS(821), + [aux_sym_control_master_token1] = ACTIONS(821), + [aux_sym_control_path_token1] = ACTIONS(821), + [aux_sym_control_persist_token1] = ACTIONS(821), + [aux_sym_dynamic_forward_token1] = ACTIONS(821), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(821), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(821), + [aux_sym_escape_char_token1] = ACTIONS(821), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(821), + [aux_sym_fingerprint_hash_token1] = ACTIONS(821), + [aux_sym_fork_after_authentication_token1] = ACTIONS(821), + [aux_sym_forward_agent_token1] = ACTIONS(821), + [aux_sym_forward_x11_token1] = ACTIONS(823), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(821), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(821), + [aux_sym_gateway_ports_token1] = ACTIONS(821), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(821), + [aux_sym_gssapi_authentication_token1] = ACTIONS(821), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(821), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(821), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(821), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(821), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(821), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(821), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(821), + [aux_sym_hash_known_hosts_token1] = ACTIONS(821), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(821), + [aux_sym_hostbased_authentication_token1] = ACTIONS(821), + [aux_sym_host_key_algorithms_token1] = ACTIONS(821), + [aux_sym_host_key_alias_token1] = ACTIONS(821), + [aux_sym_hostname_token1] = ACTIONS(821), + [aux_sym_identities_only_token1] = ACTIONS(821), + [aux_sym_identity_agent_token1] = ACTIONS(821), + [aux_sym_identity_file_token1] = ACTIONS(821), + [aux_sym_ignore_unknown_token1] = ACTIONS(821), + [aux_sym_include_token1] = ACTIONS(821), + [aux_sym_ip_qos_token1] = ACTIONS(821), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(821), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(821), + [aux_sym_kex_algorithms_token1] = ACTIONS(821), + [aux_sym_known_hosts_command_token1] = ACTIONS(821), + [aux_sym_local_command_token1] = ACTIONS(821), + [aux_sym_local_forward_token1] = ACTIONS(821), + [aux_sym_log_level_token1] = ACTIONS(821), + [aux_sym_log_verbose_token1] = ACTIONS(821), + [aux_sym_macs_token1] = ACTIONS(821), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(821), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(821), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(821), + [aux_sym_password_authentication_token1] = ACTIONS(821), + [aux_sym_permit_local_command_token1] = ACTIONS(821), + [aux_sym_permit_remote_open_token1] = ACTIONS(821), + [aux_sym_pkcs11_provider_token1] = ACTIONS(821), + [aux_sym_port_token1] = ACTIONS(821), + [aux_sym_preferred_authentications_token1] = ACTIONS(821), + [aux_sym_protocol_token1] = ACTIONS(821), + [aux_sym_proxy_command_token1] = ACTIONS(821), + [aux_sym_proxy_jump_token1] = ACTIONS(821), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(821), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(821), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(821), + [aux_sym_pubkey_authentication_token1] = ACTIONS(821), + [aux_sym_rekey_limit_token1] = ACTIONS(821), + [aux_sym_remote_command_token1] = ACTIONS(821), + [aux_sym_remote_forward_token1] = ACTIONS(821), + [aux_sym_request_tty_token1] = ACTIONS(821), + [aux_sym_required_rsa_size_token1] = ACTIONS(821), + [aux_sym_revoked_host_keys_token1] = ACTIONS(821), + [aux_sym_security_key_provider_token1] = ACTIONS(821), + [aux_sym_send_env_token1] = ACTIONS(821), + [aux_sym_server_alive_count_max_token1] = ACTIONS(821), + [aux_sym_server_alive_interval_token1] = ACTIONS(821), + [aux_sym_session_type_token1] = ACTIONS(821), + [aux_sym_set_env_token1] = ACTIONS(821), + [aux_sym_stdin_null_token1] = ACTIONS(821), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(821), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(821), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(821), + [aux_sym_syslog_facility_token1] = ACTIONS(821), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(821), + [aux_sym_keep_alive_token1] = ACTIONS(821), + [aux_sym_tag_token1] = ACTIONS(821), + [aux_sym_tunnel_token1] = ACTIONS(823), + [aux_sym_tunnel_device_token1] = ACTIONS(821), + [aux_sym_update_host_keys_token1] = ACTIONS(821), + [aux_sym_use_keychain_token1] = ACTIONS(821), + [aux_sym_use_roaming_token1] = ACTIONS(821), + [aux_sym_user_token1] = ACTIONS(823), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(821), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(821), + [aux_sym_visual_host_key_token1] = ACTIONS(821), + [aux_sym_xauth_location_token1] = ACTIONS(821), }, [641] = { - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3506), - [aux_sym_match_token1] = ACTIONS(3504), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3504), - [aux_sym_address_family_token1] = ACTIONS(3504), - [aux_sym_batch_mode_token1] = ACTIONS(3504), - [aux_sym_bind_address_token1] = ACTIONS(3504), - [aux_sym_bind_interface_token1] = ACTIONS(3504), - [aux_sym_canonical_domains_token1] = ACTIONS(3504), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3504), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3504), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3504), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3504), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3504), - [aux_sym_certificate_file_token1] = ACTIONS(3504), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3504), - [aux_sym_channel_timeout_token1] = ACTIONS(3504), - [aux_sym_check_host_ip_token1] = ACTIONS(3504), - [aux_sym_ciphers_token1] = ACTIONS(3504), - [aux_sym_cipher_token1] = ACTIONS(3506), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3504), - [aux_sym_compression_token1] = ACTIONS(3504), - [aux_sym_connection_attempts_token1] = ACTIONS(3504), - [aux_sym_connect_timeout_token1] = ACTIONS(3504), - [aux_sym_control_master_token1] = ACTIONS(3504), - [aux_sym_control_path_token1] = ACTIONS(3504), - [aux_sym_control_persist_token1] = ACTIONS(3504), - [aux_sym_dynamic_forward_token1] = ACTIONS(3504), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3504), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3504), - [aux_sym_escape_char_token1] = ACTIONS(3504), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3504), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3504), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3504), - [aux_sym_forward_agent_token1] = ACTIONS(3504), - [aux_sym_forward_x11_token1] = ACTIONS(3506), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3504), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3504), - [aux_sym_gateway_ports_token1] = ACTIONS(3504), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3504), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3504), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3504), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3504), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3504), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3504), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3504), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3504), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3504), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3504), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3504), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3504), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3504), - [aux_sym_host_key_alias_token1] = ACTIONS(3504), - [aux_sym_hostname_token1] = ACTIONS(3504), - [aux_sym_identities_only_token1] = ACTIONS(3504), - [aux_sym_identity_agent_token1] = ACTIONS(3504), - [aux_sym_identity_file_token1] = ACTIONS(3504), - [aux_sym_ignore_unknown_token1] = ACTIONS(3504), - [aux_sym_include_token1] = ACTIONS(3504), - [aux_sym_ip_qos_token1] = ACTIONS(3504), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3504), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3504), - [aux_sym_kex_algorithms_token1] = ACTIONS(3504), - [aux_sym_known_hosts_command_token1] = ACTIONS(3504), - [aux_sym_local_command_token1] = ACTIONS(3504), - [aux_sym_local_forward_token1] = ACTIONS(3504), - [aux_sym_log_level_token1] = ACTIONS(3504), - [aux_sym_log_verbose_token1] = ACTIONS(3504), - [aux_sym_macs_token1] = ACTIONS(3504), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3504), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3504), - [aux_sym_password_authentication_token1] = ACTIONS(3504), - [aux_sym_permit_local_command_token1] = ACTIONS(3504), - [aux_sym_permit_remote_open_token1] = ACTIONS(3504), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3504), - [aux_sym_port_token1] = ACTIONS(3504), - [aux_sym_preferred_authentications_token1] = ACTIONS(3504), - [aux_sym_protocol_token1] = ACTIONS(3504), - [aux_sym_proxy_command_token1] = ACTIONS(3504), - [aux_sym_proxy_jump_token1] = ACTIONS(3504), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3504), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3504), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3504), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3504), - [aux_sym_rekey_limit_token1] = ACTIONS(3504), - [aux_sym_remote_command_token1] = ACTIONS(3504), - [aux_sym_remote_forward_token1] = ACTIONS(3504), - [aux_sym_request_tty_token1] = ACTIONS(3504), - [aux_sym_required_rsa_size_token1] = ACTIONS(3504), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3504), - [aux_sym_security_key_provider_token1] = ACTIONS(3504), - [aux_sym_send_env_token1] = ACTIONS(3504), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3504), - [aux_sym_server_alive_interval_token1] = ACTIONS(3504), - [aux_sym_session_type_token1] = ACTIONS(3504), - [aux_sym_set_env_token1] = ACTIONS(3504), - [aux_sym_stdin_null_token1] = ACTIONS(3504), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3504), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3504), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3504), - [aux_sym_syslog_facility_token1] = ACTIONS(3504), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3504), - [aux_sym_keep_alive_token1] = ACTIONS(3504), - [aux_sym_tag_token1] = ACTIONS(3504), - [aux_sym_tunnel_token1] = ACTIONS(3506), - [aux_sym_tunnel_device_token1] = ACTIONS(3504), - [aux_sym_update_host_keys_token1] = ACTIONS(3504), - [aux_sym_use_keychain_token1] = ACTIONS(3504), - [aux_sym_use_roaming_token1] = ACTIONS(3504), - [aux_sym_user_token1] = ACTIONS(3506), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3504), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3504), - [aux_sym_visual_host_key_token1] = ACTIONS(3504), - [aux_sym_xauth_location_token1] = ACTIONS(3504), + [ts_builtin_sym_end] = ACTIONS(1355), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1357), + [aux_sym_match_token1] = ACTIONS(1355), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1355), + [aux_sym_address_family_token1] = ACTIONS(1355), + [aux_sym_batch_mode_token1] = ACTIONS(1355), + [aux_sym_bind_address_token1] = ACTIONS(1355), + [aux_sym_bind_interface_token1] = ACTIONS(1355), + [aux_sym_canonical_domains_token1] = ACTIONS(1355), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1355), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1355), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1355), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1355), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1355), + [aux_sym_certificate_file_token1] = ACTIONS(1355), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1355), + [aux_sym_channel_timeout_token1] = ACTIONS(1355), + [aux_sym_check_host_ip_token1] = ACTIONS(1355), + [aux_sym_ciphers_token1] = ACTIONS(1355), + [aux_sym_cipher_token1] = ACTIONS(1357), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1355), + [aux_sym_compression_token1] = ACTIONS(1355), + [aux_sym_connection_attempts_token1] = ACTIONS(1355), + [aux_sym_connect_timeout_token1] = ACTIONS(1355), + [aux_sym_control_master_token1] = ACTIONS(1355), + [aux_sym_control_path_token1] = ACTIONS(1355), + [aux_sym_control_persist_token1] = ACTIONS(1355), + [aux_sym_dynamic_forward_token1] = ACTIONS(1355), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1355), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1355), + [aux_sym_escape_char_token1] = ACTIONS(1355), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1355), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1355), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1355), + [aux_sym_forward_agent_token1] = ACTIONS(1355), + [aux_sym_forward_x11_token1] = ACTIONS(1357), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1355), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1355), + [aux_sym_gateway_ports_token1] = ACTIONS(1355), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1355), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1355), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1355), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1355), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1355), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1355), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1355), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1355), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1355), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1355), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1355), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1355), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1355), + [aux_sym_host_key_alias_token1] = ACTIONS(1355), + [aux_sym_hostname_token1] = ACTIONS(1355), + [aux_sym_identities_only_token1] = ACTIONS(1355), + [aux_sym_identity_agent_token1] = ACTIONS(1355), + [aux_sym_identity_file_token1] = ACTIONS(1355), + [aux_sym_ignore_unknown_token1] = ACTIONS(1355), + [aux_sym_include_token1] = ACTIONS(1355), + [aux_sym_ip_qos_token1] = ACTIONS(1355), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1355), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1355), + [aux_sym_kex_algorithms_token1] = ACTIONS(1355), + [aux_sym_known_hosts_command_token1] = ACTIONS(1355), + [aux_sym_local_command_token1] = ACTIONS(1355), + [aux_sym_local_forward_token1] = ACTIONS(1355), + [aux_sym_log_level_token1] = ACTIONS(1355), + [aux_sym_log_verbose_token1] = ACTIONS(1355), + [aux_sym_macs_token1] = ACTIONS(1355), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1355), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1355), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1355), + [aux_sym_password_authentication_token1] = ACTIONS(1355), + [aux_sym_permit_local_command_token1] = ACTIONS(1355), + [aux_sym_permit_remote_open_token1] = ACTIONS(1355), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1355), + [aux_sym_port_token1] = ACTIONS(1355), + [aux_sym_preferred_authentications_token1] = ACTIONS(1355), + [aux_sym_protocol_token1] = ACTIONS(1355), + [aux_sym_proxy_command_token1] = ACTIONS(1355), + [aux_sym_proxy_jump_token1] = ACTIONS(1355), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1355), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1355), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1355), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1355), + [aux_sym_rekey_limit_token1] = ACTIONS(1355), + [aux_sym_remote_command_token1] = ACTIONS(1355), + [aux_sym_remote_forward_token1] = ACTIONS(1355), + [aux_sym_request_tty_token1] = ACTIONS(1355), + [aux_sym_required_rsa_size_token1] = ACTIONS(1355), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1355), + [aux_sym_security_key_provider_token1] = ACTIONS(1355), + [aux_sym_send_env_token1] = ACTIONS(1355), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1355), + [aux_sym_server_alive_interval_token1] = ACTIONS(1355), + [aux_sym_session_type_token1] = ACTIONS(1355), + [aux_sym_set_env_token1] = ACTIONS(1355), + [aux_sym_stdin_null_token1] = ACTIONS(1355), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1355), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1355), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1355), + [aux_sym_syslog_facility_token1] = ACTIONS(1355), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1355), + [aux_sym_keep_alive_token1] = ACTIONS(1355), + [aux_sym_tag_token1] = ACTIONS(1355), + [aux_sym_tunnel_token1] = ACTIONS(1357), + [aux_sym_tunnel_device_token1] = ACTIONS(1355), + [aux_sym_update_host_keys_token1] = ACTIONS(1355), + [aux_sym_use_keychain_token1] = ACTIONS(1355), + [aux_sym_use_roaming_token1] = ACTIONS(1355), + [aux_sym_user_token1] = ACTIONS(1357), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1355), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1355), + [aux_sym_visual_host_key_token1] = ACTIONS(1355), + [aux_sym_xauth_location_token1] = ACTIONS(1355), }, [642] = { - [ts_builtin_sym_end] = ACTIONS(3508), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3510), - [aux_sym_match_token1] = ACTIONS(3508), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3508), - [aux_sym_address_family_token1] = ACTIONS(3508), - [aux_sym_batch_mode_token1] = ACTIONS(3508), - [aux_sym_bind_address_token1] = ACTIONS(3508), - [aux_sym_bind_interface_token1] = ACTIONS(3508), - [aux_sym_canonical_domains_token1] = ACTIONS(3508), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3508), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3508), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3508), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3508), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3508), - [aux_sym_certificate_file_token1] = ACTIONS(3508), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3508), - [aux_sym_channel_timeout_token1] = ACTIONS(3508), - [aux_sym_check_host_ip_token1] = ACTIONS(3508), - [aux_sym_ciphers_token1] = ACTIONS(3508), - [aux_sym_cipher_token1] = ACTIONS(3510), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3508), - [aux_sym_compression_token1] = ACTIONS(3508), - [aux_sym_connection_attempts_token1] = ACTIONS(3508), - [aux_sym_connect_timeout_token1] = ACTIONS(3508), - [aux_sym_control_master_token1] = ACTIONS(3508), - [aux_sym_control_path_token1] = ACTIONS(3508), - [aux_sym_control_persist_token1] = ACTIONS(3508), - [aux_sym_dynamic_forward_token1] = ACTIONS(3508), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3508), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3508), - [aux_sym_escape_char_token1] = ACTIONS(3508), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3508), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3508), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3508), - [aux_sym_forward_agent_token1] = ACTIONS(3508), - [aux_sym_forward_x11_token1] = ACTIONS(3510), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3508), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3508), - [aux_sym_gateway_ports_token1] = ACTIONS(3508), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3508), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3508), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3508), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3508), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3508), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3508), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3508), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3508), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3508), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3508), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3508), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3508), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3508), - [aux_sym_host_key_alias_token1] = ACTIONS(3508), - [aux_sym_hostname_token1] = ACTIONS(3508), - [aux_sym_identities_only_token1] = ACTIONS(3508), - [aux_sym_identity_agent_token1] = ACTIONS(3508), - [aux_sym_identity_file_token1] = ACTIONS(3508), - [aux_sym_ignore_unknown_token1] = ACTIONS(3508), - [aux_sym_include_token1] = ACTIONS(3508), - [aux_sym_ip_qos_token1] = ACTIONS(3508), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3508), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3508), - [aux_sym_kex_algorithms_token1] = ACTIONS(3508), - [aux_sym_known_hosts_command_token1] = ACTIONS(3508), - [aux_sym_local_command_token1] = ACTIONS(3508), - [aux_sym_local_forward_token1] = ACTIONS(3508), - [aux_sym_log_level_token1] = ACTIONS(3508), - [aux_sym_log_verbose_token1] = ACTIONS(3508), - [aux_sym_macs_token1] = ACTIONS(3508), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3508), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3508), - [aux_sym_password_authentication_token1] = ACTIONS(3508), - [aux_sym_permit_local_command_token1] = ACTIONS(3508), - [aux_sym_permit_remote_open_token1] = ACTIONS(3508), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3508), - [aux_sym_port_token1] = ACTIONS(3508), - [aux_sym_preferred_authentications_token1] = ACTIONS(3508), - [aux_sym_protocol_token1] = ACTIONS(3508), - [aux_sym_proxy_command_token1] = ACTIONS(3508), - [aux_sym_proxy_jump_token1] = ACTIONS(3508), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3508), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3508), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3508), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3508), - [aux_sym_rekey_limit_token1] = ACTIONS(3508), - [aux_sym_remote_command_token1] = ACTIONS(3508), - [aux_sym_remote_forward_token1] = ACTIONS(3508), - [aux_sym_request_tty_token1] = ACTIONS(3508), - [aux_sym_required_rsa_size_token1] = ACTIONS(3508), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3508), - [aux_sym_security_key_provider_token1] = ACTIONS(3508), - [aux_sym_send_env_token1] = ACTIONS(3508), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3508), - [aux_sym_server_alive_interval_token1] = ACTIONS(3508), - [aux_sym_session_type_token1] = ACTIONS(3508), - [aux_sym_set_env_token1] = ACTIONS(3508), - [aux_sym_stdin_null_token1] = ACTIONS(3508), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3508), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3508), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3508), - [aux_sym_syslog_facility_token1] = ACTIONS(3508), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3508), - [aux_sym_keep_alive_token1] = ACTIONS(3508), - [aux_sym_tag_token1] = ACTIONS(3508), - [aux_sym_tunnel_token1] = ACTIONS(3510), - [aux_sym_tunnel_device_token1] = ACTIONS(3508), - [aux_sym_update_host_keys_token1] = ACTIONS(3508), - [aux_sym_use_keychain_token1] = ACTIONS(3508), - [aux_sym_use_roaming_token1] = ACTIONS(3508), - [aux_sym_user_token1] = ACTIONS(3510), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3508), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3508), - [aux_sym_visual_host_key_token1] = ACTIONS(3508), - [aux_sym_xauth_location_token1] = ACTIONS(3508), + [ts_builtin_sym_end] = ACTIONS(1647), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1649), + [aux_sym_match_token1] = ACTIONS(1647), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1647), + [aux_sym_address_family_token1] = ACTIONS(1647), + [aux_sym_batch_mode_token1] = ACTIONS(1647), + [aux_sym_bind_address_token1] = ACTIONS(1647), + [aux_sym_bind_interface_token1] = ACTIONS(1647), + [aux_sym_canonical_domains_token1] = ACTIONS(1647), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1647), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1647), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1647), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1647), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1647), + [aux_sym_certificate_file_token1] = ACTIONS(1647), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1647), + [aux_sym_channel_timeout_token1] = ACTIONS(1647), + [aux_sym_check_host_ip_token1] = ACTIONS(1647), + [aux_sym_ciphers_token1] = ACTIONS(1647), + [aux_sym_cipher_token1] = ACTIONS(1649), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1647), + [aux_sym_compression_token1] = ACTIONS(1647), + [aux_sym_connection_attempts_token1] = ACTIONS(1647), + [aux_sym_connect_timeout_token1] = ACTIONS(1647), + [aux_sym_control_master_token1] = ACTIONS(1647), + [aux_sym_control_path_token1] = ACTIONS(1647), + [aux_sym_control_persist_token1] = ACTIONS(1647), + [aux_sym_dynamic_forward_token1] = ACTIONS(1647), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1647), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1647), + [aux_sym_escape_char_token1] = ACTIONS(1647), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1647), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1647), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1647), + [aux_sym_forward_agent_token1] = ACTIONS(1647), + [aux_sym_forward_x11_token1] = ACTIONS(1649), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1647), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1647), + [aux_sym_gateway_ports_token1] = ACTIONS(1647), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1647), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1647), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1647), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1647), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1647), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1647), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1647), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1647), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1647), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1647), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1647), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1647), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1647), + [aux_sym_host_key_alias_token1] = ACTIONS(1647), + [aux_sym_hostname_token1] = ACTIONS(1647), + [aux_sym_identities_only_token1] = ACTIONS(1647), + [aux_sym_identity_agent_token1] = ACTIONS(1647), + [aux_sym_identity_file_token1] = ACTIONS(1647), + [aux_sym_ignore_unknown_token1] = ACTIONS(1647), + [aux_sym_include_token1] = ACTIONS(1647), + [aux_sym_ip_qos_token1] = ACTIONS(1647), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1647), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1647), + [aux_sym_kex_algorithms_token1] = ACTIONS(1647), + [aux_sym_known_hosts_command_token1] = ACTIONS(1647), + [aux_sym_local_command_token1] = ACTIONS(1647), + [aux_sym_local_forward_token1] = ACTIONS(1647), + [aux_sym_log_level_token1] = ACTIONS(1647), + [aux_sym_log_verbose_token1] = ACTIONS(1647), + [aux_sym_macs_token1] = ACTIONS(1647), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1647), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1647), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1647), + [aux_sym_password_authentication_token1] = ACTIONS(1647), + [aux_sym_permit_local_command_token1] = ACTIONS(1647), + [aux_sym_permit_remote_open_token1] = ACTIONS(1647), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1647), + [aux_sym_port_token1] = ACTIONS(1647), + [aux_sym_preferred_authentications_token1] = ACTIONS(1647), + [aux_sym_protocol_token1] = ACTIONS(1647), + [aux_sym_proxy_command_token1] = ACTIONS(1647), + [aux_sym_proxy_jump_token1] = ACTIONS(1647), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1647), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1647), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1647), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1647), + [aux_sym_rekey_limit_token1] = ACTIONS(1647), + [aux_sym_remote_command_token1] = ACTIONS(1647), + [aux_sym_remote_forward_token1] = ACTIONS(1647), + [aux_sym_request_tty_token1] = ACTIONS(1647), + [aux_sym_required_rsa_size_token1] = ACTIONS(1647), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1647), + [aux_sym_security_key_provider_token1] = ACTIONS(1647), + [aux_sym_send_env_token1] = ACTIONS(1647), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1647), + [aux_sym_server_alive_interval_token1] = ACTIONS(1647), + [aux_sym_session_type_token1] = ACTIONS(1647), + [aux_sym_set_env_token1] = ACTIONS(1647), + [aux_sym_stdin_null_token1] = ACTIONS(1647), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1647), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1647), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1647), + [aux_sym_syslog_facility_token1] = ACTIONS(1647), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1647), + [aux_sym_keep_alive_token1] = ACTIONS(1647), + [aux_sym_tag_token1] = ACTIONS(1647), + [aux_sym_tunnel_token1] = ACTIONS(1649), + [aux_sym_tunnel_device_token1] = ACTIONS(1647), + [aux_sym_update_host_keys_token1] = ACTIONS(1647), + [aux_sym_use_keychain_token1] = ACTIONS(1647), + [aux_sym_use_roaming_token1] = ACTIONS(1647), + [aux_sym_user_token1] = ACTIONS(1649), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1647), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1647), + [aux_sym_visual_host_key_token1] = ACTIONS(1647), + [aux_sym_xauth_location_token1] = ACTIONS(1647), }, [643] = { - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3514), - [aux_sym_match_token1] = ACTIONS(3512), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3512), - [aux_sym_address_family_token1] = ACTIONS(3512), - [aux_sym_batch_mode_token1] = ACTIONS(3512), - [aux_sym_bind_address_token1] = ACTIONS(3512), - [aux_sym_bind_interface_token1] = ACTIONS(3512), - [aux_sym_canonical_domains_token1] = ACTIONS(3512), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3512), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3512), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3512), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3512), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3512), - [aux_sym_certificate_file_token1] = ACTIONS(3512), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3512), - [aux_sym_channel_timeout_token1] = ACTIONS(3512), - [aux_sym_check_host_ip_token1] = ACTIONS(3512), - [aux_sym_ciphers_token1] = ACTIONS(3512), - [aux_sym_cipher_token1] = ACTIONS(3514), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3512), - [aux_sym_compression_token1] = ACTIONS(3512), - [aux_sym_connection_attempts_token1] = ACTIONS(3512), - [aux_sym_connect_timeout_token1] = ACTIONS(3512), - [aux_sym_control_master_token1] = ACTIONS(3512), - [aux_sym_control_path_token1] = ACTIONS(3512), - [aux_sym_control_persist_token1] = ACTIONS(3512), - [aux_sym_dynamic_forward_token1] = ACTIONS(3512), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3512), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3512), - [aux_sym_escape_char_token1] = ACTIONS(3512), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3512), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3512), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3512), - [aux_sym_forward_agent_token1] = ACTIONS(3512), - [aux_sym_forward_x11_token1] = ACTIONS(3514), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3512), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3512), - [aux_sym_gateway_ports_token1] = ACTIONS(3512), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3512), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3512), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3512), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3512), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3512), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3512), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3512), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3512), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3512), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3512), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3512), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3512), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3512), - [aux_sym_host_key_alias_token1] = ACTIONS(3512), - [aux_sym_hostname_token1] = ACTIONS(3512), - [aux_sym_identities_only_token1] = ACTIONS(3512), - [aux_sym_identity_agent_token1] = ACTIONS(3512), - [aux_sym_identity_file_token1] = ACTIONS(3512), - [aux_sym_ignore_unknown_token1] = ACTIONS(3512), - [aux_sym_include_token1] = ACTIONS(3512), - [aux_sym_ip_qos_token1] = ACTIONS(3512), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3512), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3512), - [aux_sym_kex_algorithms_token1] = ACTIONS(3512), - [aux_sym_known_hosts_command_token1] = ACTIONS(3512), - [aux_sym_local_command_token1] = ACTIONS(3512), - [aux_sym_local_forward_token1] = ACTIONS(3512), - [aux_sym_log_level_token1] = ACTIONS(3512), - [aux_sym_log_verbose_token1] = ACTIONS(3512), - [aux_sym_macs_token1] = ACTIONS(3512), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3512), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3512), - [aux_sym_password_authentication_token1] = ACTIONS(3512), - [aux_sym_permit_local_command_token1] = ACTIONS(3512), - [aux_sym_permit_remote_open_token1] = ACTIONS(3512), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3512), - [aux_sym_port_token1] = ACTIONS(3512), - [aux_sym_preferred_authentications_token1] = ACTIONS(3512), - [aux_sym_protocol_token1] = ACTIONS(3512), - [aux_sym_proxy_command_token1] = ACTIONS(3512), - [aux_sym_proxy_jump_token1] = ACTIONS(3512), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3512), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3512), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3512), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3512), - [aux_sym_rekey_limit_token1] = ACTIONS(3512), - [aux_sym_remote_command_token1] = ACTIONS(3512), - [aux_sym_remote_forward_token1] = ACTIONS(3512), - [aux_sym_request_tty_token1] = ACTIONS(3512), - [aux_sym_required_rsa_size_token1] = ACTIONS(3512), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3512), - [aux_sym_security_key_provider_token1] = ACTIONS(3512), - [aux_sym_send_env_token1] = ACTIONS(3512), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3512), - [aux_sym_server_alive_interval_token1] = ACTIONS(3512), - [aux_sym_session_type_token1] = ACTIONS(3512), - [aux_sym_set_env_token1] = ACTIONS(3512), - [aux_sym_stdin_null_token1] = ACTIONS(3512), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3512), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3512), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3512), - [aux_sym_syslog_facility_token1] = ACTIONS(3512), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3512), - [aux_sym_keep_alive_token1] = ACTIONS(3512), - [aux_sym_tag_token1] = ACTIONS(3512), - [aux_sym_tunnel_token1] = ACTIONS(3514), - [aux_sym_tunnel_device_token1] = ACTIONS(3512), - [aux_sym_update_host_keys_token1] = ACTIONS(3512), - [aux_sym_use_keychain_token1] = ACTIONS(3512), - [aux_sym_use_roaming_token1] = ACTIONS(3512), - [aux_sym_user_token1] = ACTIONS(3514), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3512), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3512), - [aux_sym_visual_host_key_token1] = ACTIONS(3512), - [aux_sym_xauth_location_token1] = ACTIONS(3512), + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3513), + [aux_sym_match_token1] = ACTIONS(3511), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3511), + [aux_sym_address_family_token1] = ACTIONS(3511), + [aux_sym_batch_mode_token1] = ACTIONS(3511), + [aux_sym_bind_address_token1] = ACTIONS(3511), + [aux_sym_bind_interface_token1] = ACTIONS(3511), + [aux_sym_canonical_domains_token1] = ACTIONS(3511), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3511), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3511), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3511), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3511), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3511), + [aux_sym_certificate_file_token1] = ACTIONS(3511), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3511), + [aux_sym_channel_timeout_token1] = ACTIONS(3511), + [aux_sym_check_host_ip_token1] = ACTIONS(3511), + [aux_sym_ciphers_token1] = ACTIONS(3511), + [aux_sym_cipher_token1] = ACTIONS(3513), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3511), + [aux_sym_compression_token1] = ACTIONS(3511), + [aux_sym_connection_attempts_token1] = ACTIONS(3511), + [aux_sym_connect_timeout_token1] = ACTIONS(3511), + [aux_sym_control_master_token1] = ACTIONS(3511), + [aux_sym_control_path_token1] = ACTIONS(3511), + [aux_sym_control_persist_token1] = ACTIONS(3511), + [aux_sym_dynamic_forward_token1] = ACTIONS(3511), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3511), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3511), + [aux_sym_escape_char_token1] = ACTIONS(3511), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3511), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3511), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3511), + [aux_sym_forward_agent_token1] = ACTIONS(3511), + [aux_sym_forward_x11_token1] = ACTIONS(3513), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3511), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3511), + [aux_sym_gateway_ports_token1] = ACTIONS(3511), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3511), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3511), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3511), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3511), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3511), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3511), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3511), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3511), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3511), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3511), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3511), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3511), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3511), + [aux_sym_host_key_alias_token1] = ACTIONS(3511), + [aux_sym_hostname_token1] = ACTIONS(3511), + [aux_sym_identities_only_token1] = ACTIONS(3511), + [aux_sym_identity_agent_token1] = ACTIONS(3511), + [aux_sym_identity_file_token1] = ACTIONS(3511), + [aux_sym_ignore_unknown_token1] = ACTIONS(3511), + [aux_sym_include_token1] = ACTIONS(3511), + [aux_sym_ip_qos_token1] = ACTIONS(3511), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3511), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3511), + [aux_sym_kex_algorithms_token1] = ACTIONS(3511), + [aux_sym_known_hosts_command_token1] = ACTIONS(3511), + [aux_sym_local_command_token1] = ACTIONS(3511), + [aux_sym_local_forward_token1] = ACTIONS(3511), + [aux_sym_log_level_token1] = ACTIONS(3511), + [aux_sym_log_verbose_token1] = ACTIONS(3511), + [aux_sym_macs_token1] = ACTIONS(3511), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3511), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3511), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3511), + [aux_sym_password_authentication_token1] = ACTIONS(3511), + [aux_sym_permit_local_command_token1] = ACTIONS(3511), + [aux_sym_permit_remote_open_token1] = ACTIONS(3511), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3511), + [aux_sym_port_token1] = ACTIONS(3511), + [aux_sym_preferred_authentications_token1] = ACTIONS(3511), + [aux_sym_protocol_token1] = ACTIONS(3511), + [aux_sym_proxy_command_token1] = ACTIONS(3511), + [aux_sym_proxy_jump_token1] = ACTIONS(3511), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3511), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3511), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3511), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3511), + [aux_sym_rekey_limit_token1] = ACTIONS(3511), + [aux_sym_remote_command_token1] = ACTIONS(3511), + [aux_sym_remote_forward_token1] = ACTIONS(3511), + [aux_sym_request_tty_token1] = ACTIONS(3511), + [aux_sym_required_rsa_size_token1] = ACTIONS(3511), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3511), + [aux_sym_security_key_provider_token1] = ACTIONS(3511), + [aux_sym_send_env_token1] = ACTIONS(3511), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3511), + [aux_sym_server_alive_interval_token1] = ACTIONS(3511), + [aux_sym_session_type_token1] = ACTIONS(3511), + [aux_sym_set_env_token1] = ACTIONS(3511), + [aux_sym_stdin_null_token1] = ACTIONS(3511), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3511), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3511), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3511), + [aux_sym_syslog_facility_token1] = ACTIONS(3511), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3511), + [aux_sym_keep_alive_token1] = ACTIONS(3511), + [aux_sym_tag_token1] = ACTIONS(3511), + [aux_sym_tunnel_token1] = ACTIONS(3513), + [aux_sym_tunnel_device_token1] = ACTIONS(3511), + [aux_sym_update_host_keys_token1] = ACTIONS(3511), + [aux_sym_use_keychain_token1] = ACTIONS(3511), + [aux_sym_use_roaming_token1] = ACTIONS(3511), + [aux_sym_user_token1] = ACTIONS(3513), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3511), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3511), + [aux_sym_visual_host_key_token1] = ACTIONS(3511), + [aux_sym_xauth_location_token1] = ACTIONS(3511), }, [644] = { - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3518), - [aux_sym_match_token1] = ACTIONS(3516), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3516), - [aux_sym_address_family_token1] = ACTIONS(3516), - [aux_sym_batch_mode_token1] = ACTIONS(3516), - [aux_sym_bind_address_token1] = ACTIONS(3516), - [aux_sym_bind_interface_token1] = ACTIONS(3516), - [aux_sym_canonical_domains_token1] = ACTIONS(3516), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3516), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3516), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3516), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3516), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3516), - [aux_sym_certificate_file_token1] = ACTIONS(3516), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3516), - [aux_sym_channel_timeout_token1] = ACTIONS(3516), - [aux_sym_check_host_ip_token1] = ACTIONS(3516), - [aux_sym_ciphers_token1] = ACTIONS(3516), - [aux_sym_cipher_token1] = ACTIONS(3518), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3516), - [aux_sym_compression_token1] = ACTIONS(3516), - [aux_sym_connection_attempts_token1] = ACTIONS(3516), - [aux_sym_connect_timeout_token1] = ACTIONS(3516), - [aux_sym_control_master_token1] = ACTIONS(3516), - [aux_sym_control_path_token1] = ACTIONS(3516), - [aux_sym_control_persist_token1] = ACTIONS(3516), - [aux_sym_dynamic_forward_token1] = ACTIONS(3516), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3516), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3516), - [aux_sym_escape_char_token1] = ACTIONS(3516), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3516), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3516), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3516), - [aux_sym_forward_agent_token1] = ACTIONS(3516), - [aux_sym_forward_x11_token1] = ACTIONS(3518), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3516), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3516), - [aux_sym_gateway_ports_token1] = ACTIONS(3516), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3516), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3516), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3516), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3516), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3516), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3516), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3516), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3516), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3516), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3516), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3516), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3516), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3516), - [aux_sym_host_key_alias_token1] = ACTIONS(3516), - [aux_sym_hostname_token1] = ACTIONS(3516), - [aux_sym_identities_only_token1] = ACTIONS(3516), - [aux_sym_identity_agent_token1] = ACTIONS(3516), - [aux_sym_identity_file_token1] = ACTIONS(3516), - [aux_sym_ignore_unknown_token1] = ACTIONS(3516), - [aux_sym_include_token1] = ACTIONS(3516), - [aux_sym_ip_qos_token1] = ACTIONS(3516), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3516), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3516), - [aux_sym_kex_algorithms_token1] = ACTIONS(3516), - [aux_sym_known_hosts_command_token1] = ACTIONS(3516), - [aux_sym_local_command_token1] = ACTIONS(3516), - [aux_sym_local_forward_token1] = ACTIONS(3516), - [aux_sym_log_level_token1] = ACTIONS(3516), - [aux_sym_log_verbose_token1] = ACTIONS(3516), - [aux_sym_macs_token1] = ACTIONS(3516), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3516), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3516), - [aux_sym_password_authentication_token1] = ACTIONS(3516), - [aux_sym_permit_local_command_token1] = ACTIONS(3516), - [aux_sym_permit_remote_open_token1] = ACTIONS(3516), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3516), - [aux_sym_port_token1] = ACTIONS(3516), - [aux_sym_preferred_authentications_token1] = ACTIONS(3516), - [aux_sym_protocol_token1] = ACTIONS(3516), - [aux_sym_proxy_command_token1] = ACTIONS(3516), - [aux_sym_proxy_jump_token1] = ACTIONS(3516), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3516), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3516), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3516), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3516), - [aux_sym_rekey_limit_token1] = ACTIONS(3516), - [aux_sym_remote_command_token1] = ACTIONS(3516), - [aux_sym_remote_forward_token1] = ACTIONS(3516), - [aux_sym_request_tty_token1] = ACTIONS(3516), - [aux_sym_required_rsa_size_token1] = ACTIONS(3516), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3516), - [aux_sym_security_key_provider_token1] = ACTIONS(3516), - [aux_sym_send_env_token1] = ACTIONS(3516), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3516), - [aux_sym_server_alive_interval_token1] = ACTIONS(3516), - [aux_sym_session_type_token1] = ACTIONS(3516), - [aux_sym_set_env_token1] = ACTIONS(3516), - [aux_sym_stdin_null_token1] = ACTIONS(3516), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3516), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3516), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3516), - [aux_sym_syslog_facility_token1] = ACTIONS(3516), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3516), - [aux_sym_keep_alive_token1] = ACTIONS(3516), - [aux_sym_tag_token1] = ACTIONS(3516), - [aux_sym_tunnel_token1] = ACTIONS(3518), - [aux_sym_tunnel_device_token1] = ACTIONS(3516), - [aux_sym_update_host_keys_token1] = ACTIONS(3516), - [aux_sym_use_keychain_token1] = ACTIONS(3516), - [aux_sym_use_roaming_token1] = ACTIONS(3516), - [aux_sym_user_token1] = ACTIONS(3518), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3516), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3516), - [aux_sym_visual_host_key_token1] = ACTIONS(3516), - [aux_sym_xauth_location_token1] = ACTIONS(3516), + [ts_builtin_sym_end] = ACTIONS(875), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(877), + [aux_sym_match_token1] = ACTIONS(875), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(875), + [aux_sym_address_family_token1] = ACTIONS(875), + [aux_sym_batch_mode_token1] = ACTIONS(875), + [aux_sym_bind_address_token1] = ACTIONS(875), + [aux_sym_bind_interface_token1] = ACTIONS(875), + [aux_sym_canonical_domains_token1] = ACTIONS(875), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(875), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(875), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(875), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(875), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(875), + [aux_sym_certificate_file_token1] = ACTIONS(875), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(875), + [aux_sym_channel_timeout_token1] = ACTIONS(875), + [aux_sym_check_host_ip_token1] = ACTIONS(875), + [aux_sym_ciphers_token1] = ACTIONS(875), + [aux_sym_cipher_token1] = ACTIONS(877), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(875), + [aux_sym_compression_token1] = ACTIONS(875), + [aux_sym_connection_attempts_token1] = ACTIONS(875), + [aux_sym_connect_timeout_token1] = ACTIONS(875), + [aux_sym_control_master_token1] = ACTIONS(875), + [aux_sym_control_path_token1] = ACTIONS(875), + [aux_sym_control_persist_token1] = ACTIONS(875), + [aux_sym_dynamic_forward_token1] = ACTIONS(875), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(875), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(875), + [aux_sym_escape_char_token1] = ACTIONS(875), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(875), + [aux_sym_fingerprint_hash_token1] = ACTIONS(875), + [aux_sym_fork_after_authentication_token1] = ACTIONS(875), + [aux_sym_forward_agent_token1] = ACTIONS(875), + [aux_sym_forward_x11_token1] = ACTIONS(877), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(875), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(875), + [aux_sym_gateway_ports_token1] = ACTIONS(875), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(875), + [aux_sym_gssapi_authentication_token1] = ACTIONS(875), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(875), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(875), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(875), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(875), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(875), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(875), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(875), + [aux_sym_hash_known_hosts_token1] = ACTIONS(875), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(875), + [aux_sym_hostbased_authentication_token1] = ACTIONS(875), + [aux_sym_host_key_algorithms_token1] = ACTIONS(875), + [aux_sym_host_key_alias_token1] = ACTIONS(875), + [aux_sym_hostname_token1] = ACTIONS(875), + [aux_sym_identities_only_token1] = ACTIONS(875), + [aux_sym_identity_agent_token1] = ACTIONS(875), + [aux_sym_identity_file_token1] = ACTIONS(875), + [aux_sym_ignore_unknown_token1] = ACTIONS(875), + [aux_sym_include_token1] = ACTIONS(875), + [aux_sym_ip_qos_token1] = ACTIONS(875), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(875), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(875), + [aux_sym_kex_algorithms_token1] = ACTIONS(875), + [aux_sym_known_hosts_command_token1] = ACTIONS(875), + [aux_sym_local_command_token1] = ACTIONS(875), + [aux_sym_local_forward_token1] = ACTIONS(875), + [aux_sym_log_level_token1] = ACTIONS(875), + [aux_sym_log_verbose_token1] = ACTIONS(875), + [aux_sym_macs_token1] = ACTIONS(875), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(875), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(875), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(875), + [aux_sym_password_authentication_token1] = ACTIONS(875), + [aux_sym_permit_local_command_token1] = ACTIONS(875), + [aux_sym_permit_remote_open_token1] = ACTIONS(875), + [aux_sym_pkcs11_provider_token1] = ACTIONS(875), + [aux_sym_port_token1] = ACTIONS(875), + [aux_sym_preferred_authentications_token1] = ACTIONS(875), + [aux_sym_protocol_token1] = ACTIONS(875), + [aux_sym_proxy_command_token1] = ACTIONS(875), + [aux_sym_proxy_jump_token1] = ACTIONS(875), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(875), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(875), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(875), + [aux_sym_pubkey_authentication_token1] = ACTIONS(875), + [aux_sym_rekey_limit_token1] = ACTIONS(875), + [aux_sym_remote_command_token1] = ACTIONS(875), + [aux_sym_remote_forward_token1] = ACTIONS(875), + [aux_sym_request_tty_token1] = ACTIONS(875), + [aux_sym_required_rsa_size_token1] = ACTIONS(875), + [aux_sym_revoked_host_keys_token1] = ACTIONS(875), + [aux_sym_security_key_provider_token1] = ACTIONS(875), + [aux_sym_send_env_token1] = ACTIONS(875), + [aux_sym_server_alive_count_max_token1] = ACTIONS(875), + [aux_sym_server_alive_interval_token1] = ACTIONS(875), + [aux_sym_session_type_token1] = ACTIONS(875), + [aux_sym_set_env_token1] = ACTIONS(875), + [aux_sym_stdin_null_token1] = ACTIONS(875), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(875), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(875), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(875), + [aux_sym_syslog_facility_token1] = ACTIONS(875), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(875), + [aux_sym_keep_alive_token1] = ACTIONS(875), + [aux_sym_tag_token1] = ACTIONS(875), + [aux_sym_tunnel_token1] = ACTIONS(877), + [aux_sym_tunnel_device_token1] = ACTIONS(875), + [aux_sym_update_host_keys_token1] = ACTIONS(875), + [aux_sym_use_keychain_token1] = ACTIONS(875), + [aux_sym_use_roaming_token1] = ACTIONS(875), + [aux_sym_user_token1] = ACTIONS(877), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(875), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(875), + [aux_sym_visual_host_key_token1] = ACTIONS(875), + [aux_sym_xauth_location_token1] = ACTIONS(875), }, [645] = { - [ts_builtin_sym_end] = ACTIONS(3520), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3522), - [aux_sym_match_token1] = ACTIONS(3520), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3520), - [aux_sym_address_family_token1] = ACTIONS(3520), - [aux_sym_batch_mode_token1] = ACTIONS(3520), - [aux_sym_bind_address_token1] = ACTIONS(3520), - [aux_sym_bind_interface_token1] = ACTIONS(3520), - [aux_sym_canonical_domains_token1] = ACTIONS(3520), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3520), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3520), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3520), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3520), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3520), - [aux_sym_certificate_file_token1] = ACTIONS(3520), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3520), - [aux_sym_channel_timeout_token1] = ACTIONS(3520), - [aux_sym_check_host_ip_token1] = ACTIONS(3520), - [aux_sym_ciphers_token1] = ACTIONS(3520), - [aux_sym_cipher_token1] = ACTIONS(3522), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3520), - [aux_sym_compression_token1] = ACTIONS(3520), - [aux_sym_connection_attempts_token1] = ACTIONS(3520), - [aux_sym_connect_timeout_token1] = ACTIONS(3520), - [aux_sym_control_master_token1] = ACTIONS(3520), - [aux_sym_control_path_token1] = ACTIONS(3520), - [aux_sym_control_persist_token1] = ACTIONS(3520), - [aux_sym_dynamic_forward_token1] = ACTIONS(3520), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3520), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3520), - [aux_sym_escape_char_token1] = ACTIONS(3520), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3520), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3520), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3520), - [aux_sym_forward_agent_token1] = ACTIONS(3520), - [aux_sym_forward_x11_token1] = ACTIONS(3522), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3520), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3520), - [aux_sym_gateway_ports_token1] = ACTIONS(3520), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3520), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3520), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3520), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3520), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3520), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3520), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3520), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3520), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3520), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3520), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3520), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3520), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3520), - [aux_sym_host_key_alias_token1] = ACTIONS(3520), - [aux_sym_hostname_token1] = ACTIONS(3520), - [aux_sym_identities_only_token1] = ACTIONS(3520), - [aux_sym_identity_agent_token1] = ACTIONS(3520), - [aux_sym_identity_file_token1] = ACTIONS(3520), - [aux_sym_ignore_unknown_token1] = ACTIONS(3520), - [aux_sym_include_token1] = ACTIONS(3520), - [aux_sym_ip_qos_token1] = ACTIONS(3520), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3520), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3520), - [aux_sym_kex_algorithms_token1] = ACTIONS(3520), - [aux_sym_known_hosts_command_token1] = ACTIONS(3520), - [aux_sym_local_command_token1] = ACTIONS(3520), - [aux_sym_local_forward_token1] = ACTIONS(3520), - [aux_sym_log_level_token1] = ACTIONS(3520), - [aux_sym_log_verbose_token1] = ACTIONS(3520), - [aux_sym_macs_token1] = ACTIONS(3520), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3520), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3520), - [aux_sym_password_authentication_token1] = ACTIONS(3520), - [aux_sym_permit_local_command_token1] = ACTIONS(3520), - [aux_sym_permit_remote_open_token1] = ACTIONS(3520), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3520), - [aux_sym_port_token1] = ACTIONS(3520), - [aux_sym_preferred_authentications_token1] = ACTIONS(3520), - [aux_sym_protocol_token1] = ACTIONS(3520), - [aux_sym_proxy_command_token1] = ACTIONS(3520), - [aux_sym_proxy_jump_token1] = ACTIONS(3520), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3520), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3520), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3520), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3520), - [aux_sym_rekey_limit_token1] = ACTIONS(3520), - [aux_sym_remote_command_token1] = ACTIONS(3520), - [aux_sym_remote_forward_token1] = ACTIONS(3520), - [aux_sym_request_tty_token1] = ACTIONS(3520), - [aux_sym_required_rsa_size_token1] = ACTIONS(3520), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3520), - [aux_sym_security_key_provider_token1] = ACTIONS(3520), - [aux_sym_send_env_token1] = ACTIONS(3520), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3520), - [aux_sym_server_alive_interval_token1] = ACTIONS(3520), - [aux_sym_session_type_token1] = ACTIONS(3520), - [aux_sym_set_env_token1] = ACTIONS(3520), - [aux_sym_stdin_null_token1] = ACTIONS(3520), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3520), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3520), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3520), - [aux_sym_syslog_facility_token1] = ACTIONS(3520), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3520), - [aux_sym_keep_alive_token1] = ACTIONS(3520), - [aux_sym_tag_token1] = ACTIONS(3520), - [aux_sym_tunnel_token1] = ACTIONS(3522), - [aux_sym_tunnel_device_token1] = ACTIONS(3520), - [aux_sym_update_host_keys_token1] = ACTIONS(3520), - [aux_sym_use_keychain_token1] = ACTIONS(3520), - [aux_sym_use_roaming_token1] = ACTIONS(3520), - [aux_sym_user_token1] = ACTIONS(3522), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3520), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3520), - [aux_sym_visual_host_key_token1] = ACTIONS(3520), - [aux_sym_xauth_location_token1] = ACTIONS(3520), + [ts_builtin_sym_end] = ACTIONS(1361), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1363), + [aux_sym_match_token1] = ACTIONS(1361), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1361), + [aux_sym_address_family_token1] = ACTIONS(1361), + [aux_sym_batch_mode_token1] = ACTIONS(1361), + [aux_sym_bind_address_token1] = ACTIONS(1361), + [aux_sym_bind_interface_token1] = ACTIONS(1361), + [aux_sym_canonical_domains_token1] = ACTIONS(1361), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1361), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1361), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1361), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1361), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1361), + [aux_sym_certificate_file_token1] = ACTIONS(1361), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1361), + [aux_sym_channel_timeout_token1] = ACTIONS(1361), + [aux_sym_check_host_ip_token1] = ACTIONS(1361), + [aux_sym_ciphers_token1] = ACTIONS(1361), + [aux_sym_cipher_token1] = ACTIONS(1363), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1361), + [aux_sym_compression_token1] = ACTIONS(1361), + [aux_sym_connection_attempts_token1] = ACTIONS(1361), + [aux_sym_connect_timeout_token1] = ACTIONS(1361), + [aux_sym_control_master_token1] = ACTIONS(1361), + [aux_sym_control_path_token1] = ACTIONS(1361), + [aux_sym_control_persist_token1] = ACTIONS(1361), + [aux_sym_dynamic_forward_token1] = ACTIONS(1361), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1361), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1361), + [aux_sym_escape_char_token1] = ACTIONS(1361), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1361), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1361), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1361), + [aux_sym_forward_agent_token1] = ACTIONS(1361), + [aux_sym_forward_x11_token1] = ACTIONS(1363), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1361), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1361), + [aux_sym_gateway_ports_token1] = ACTIONS(1361), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1361), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1361), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1361), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1361), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1361), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1361), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1361), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1361), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1361), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1361), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1361), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1361), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1361), + [aux_sym_host_key_alias_token1] = ACTIONS(1361), + [aux_sym_hostname_token1] = ACTIONS(1361), + [aux_sym_identities_only_token1] = ACTIONS(1361), + [aux_sym_identity_agent_token1] = ACTIONS(1361), + [aux_sym_identity_file_token1] = ACTIONS(1361), + [aux_sym_ignore_unknown_token1] = ACTIONS(1361), + [aux_sym_include_token1] = ACTIONS(1361), + [aux_sym_ip_qos_token1] = ACTIONS(1361), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1361), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1361), + [aux_sym_kex_algorithms_token1] = ACTIONS(1361), + [aux_sym_known_hosts_command_token1] = ACTIONS(1361), + [aux_sym_local_command_token1] = ACTIONS(1361), + [aux_sym_local_forward_token1] = ACTIONS(1361), + [aux_sym_log_level_token1] = ACTIONS(1361), + [aux_sym_log_verbose_token1] = ACTIONS(1361), + [aux_sym_macs_token1] = ACTIONS(1361), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1361), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1361), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1361), + [aux_sym_password_authentication_token1] = ACTIONS(1361), + [aux_sym_permit_local_command_token1] = ACTIONS(1361), + [aux_sym_permit_remote_open_token1] = ACTIONS(1361), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1361), + [aux_sym_port_token1] = ACTIONS(1361), + [aux_sym_preferred_authentications_token1] = ACTIONS(1361), + [aux_sym_protocol_token1] = ACTIONS(1361), + [aux_sym_proxy_command_token1] = ACTIONS(1361), + [aux_sym_proxy_jump_token1] = ACTIONS(1361), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1361), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1361), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1361), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1361), + [aux_sym_rekey_limit_token1] = ACTIONS(1361), + [aux_sym_remote_command_token1] = ACTIONS(1361), + [aux_sym_remote_forward_token1] = ACTIONS(1361), + [aux_sym_request_tty_token1] = ACTIONS(1361), + [aux_sym_required_rsa_size_token1] = ACTIONS(1361), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1361), + [aux_sym_security_key_provider_token1] = ACTIONS(1361), + [aux_sym_send_env_token1] = ACTIONS(1361), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1361), + [aux_sym_server_alive_interval_token1] = ACTIONS(1361), + [aux_sym_session_type_token1] = ACTIONS(1361), + [aux_sym_set_env_token1] = ACTIONS(1361), + [aux_sym_stdin_null_token1] = ACTIONS(1361), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1361), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1361), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1361), + [aux_sym_syslog_facility_token1] = ACTIONS(1361), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1361), + [aux_sym_keep_alive_token1] = ACTIONS(1361), + [aux_sym_tag_token1] = ACTIONS(1361), + [aux_sym_tunnel_token1] = ACTIONS(1363), + [aux_sym_tunnel_device_token1] = ACTIONS(1361), + [aux_sym_update_host_keys_token1] = ACTIONS(1361), + [aux_sym_use_keychain_token1] = ACTIONS(1361), + [aux_sym_use_roaming_token1] = ACTIONS(1361), + [aux_sym_user_token1] = ACTIONS(1363), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1361), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1361), + [aux_sym_visual_host_key_token1] = ACTIONS(1361), + [aux_sym_xauth_location_token1] = ACTIONS(1361), }, [646] = { - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3526), - [aux_sym_match_token1] = ACTIONS(3524), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3524), - [aux_sym_address_family_token1] = ACTIONS(3524), - [aux_sym_batch_mode_token1] = ACTIONS(3524), - [aux_sym_bind_address_token1] = ACTIONS(3524), - [aux_sym_bind_interface_token1] = ACTIONS(3524), - [aux_sym_canonical_domains_token1] = ACTIONS(3524), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3524), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3524), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3524), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3524), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3524), - [aux_sym_certificate_file_token1] = ACTIONS(3524), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3524), - [aux_sym_channel_timeout_token1] = ACTIONS(3524), - [aux_sym_check_host_ip_token1] = ACTIONS(3524), - [aux_sym_ciphers_token1] = ACTIONS(3524), - [aux_sym_cipher_token1] = ACTIONS(3526), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3524), - [aux_sym_compression_token1] = ACTIONS(3524), - [aux_sym_connection_attempts_token1] = ACTIONS(3524), - [aux_sym_connect_timeout_token1] = ACTIONS(3524), - [aux_sym_control_master_token1] = ACTIONS(3524), - [aux_sym_control_path_token1] = ACTIONS(3524), - [aux_sym_control_persist_token1] = ACTIONS(3524), - [aux_sym_dynamic_forward_token1] = ACTIONS(3524), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3524), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3524), - [aux_sym_escape_char_token1] = ACTIONS(3524), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3524), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3524), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3524), - [aux_sym_forward_agent_token1] = ACTIONS(3524), - [aux_sym_forward_x11_token1] = ACTIONS(3526), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3524), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3524), - [aux_sym_gateway_ports_token1] = ACTIONS(3524), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3524), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3524), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3524), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3524), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3524), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3524), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3524), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3524), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3524), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3524), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3524), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3524), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3524), - [aux_sym_host_key_alias_token1] = ACTIONS(3524), - [aux_sym_hostname_token1] = ACTIONS(3524), - [aux_sym_identities_only_token1] = ACTIONS(3524), - [aux_sym_identity_agent_token1] = ACTIONS(3524), - [aux_sym_identity_file_token1] = ACTIONS(3524), - [aux_sym_ignore_unknown_token1] = ACTIONS(3524), - [aux_sym_include_token1] = ACTIONS(3524), - [aux_sym_ip_qos_token1] = ACTIONS(3524), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3524), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3524), - [aux_sym_kex_algorithms_token1] = ACTIONS(3524), - [aux_sym_known_hosts_command_token1] = ACTIONS(3524), - [aux_sym_local_command_token1] = ACTIONS(3524), - [aux_sym_local_forward_token1] = ACTIONS(3524), - [aux_sym_log_level_token1] = ACTIONS(3524), - [aux_sym_log_verbose_token1] = ACTIONS(3524), - [aux_sym_macs_token1] = ACTIONS(3524), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3524), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3524), - [aux_sym_password_authentication_token1] = ACTIONS(3524), - [aux_sym_permit_local_command_token1] = ACTIONS(3524), - [aux_sym_permit_remote_open_token1] = ACTIONS(3524), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3524), - [aux_sym_port_token1] = ACTIONS(3524), - [aux_sym_preferred_authentications_token1] = ACTIONS(3524), - [aux_sym_protocol_token1] = ACTIONS(3524), - [aux_sym_proxy_command_token1] = ACTIONS(3524), - [aux_sym_proxy_jump_token1] = ACTIONS(3524), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3524), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3524), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3524), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3524), - [aux_sym_rekey_limit_token1] = ACTIONS(3524), - [aux_sym_remote_command_token1] = ACTIONS(3524), - [aux_sym_remote_forward_token1] = ACTIONS(3524), - [aux_sym_request_tty_token1] = ACTIONS(3524), - [aux_sym_required_rsa_size_token1] = ACTIONS(3524), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3524), - [aux_sym_security_key_provider_token1] = ACTIONS(3524), - [aux_sym_send_env_token1] = ACTIONS(3524), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3524), - [aux_sym_server_alive_interval_token1] = ACTIONS(3524), - [aux_sym_session_type_token1] = ACTIONS(3524), - [aux_sym_set_env_token1] = ACTIONS(3524), - [aux_sym_stdin_null_token1] = ACTIONS(3524), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3524), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3524), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3524), - [aux_sym_syslog_facility_token1] = ACTIONS(3524), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3524), - [aux_sym_keep_alive_token1] = ACTIONS(3524), - [aux_sym_tag_token1] = ACTIONS(3524), - [aux_sym_tunnel_token1] = ACTIONS(3526), - [aux_sym_tunnel_device_token1] = ACTIONS(3524), - [aux_sym_update_host_keys_token1] = ACTIONS(3524), - [aux_sym_use_keychain_token1] = ACTIONS(3524), - [aux_sym_use_roaming_token1] = ACTIONS(3524), - [aux_sym_user_token1] = ACTIONS(3526), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3524), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3524), - [aux_sym_visual_host_key_token1] = ACTIONS(3524), - [aux_sym_xauth_location_token1] = ACTIONS(3524), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3517), + [aux_sym_match_token1] = ACTIONS(3515), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3515), + [aux_sym_address_family_token1] = ACTIONS(3515), + [aux_sym_batch_mode_token1] = ACTIONS(3515), + [aux_sym_bind_address_token1] = ACTIONS(3515), + [aux_sym_bind_interface_token1] = ACTIONS(3515), + [aux_sym_canonical_domains_token1] = ACTIONS(3515), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3515), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3515), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3515), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3515), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3515), + [aux_sym_certificate_file_token1] = ACTIONS(3515), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3515), + [aux_sym_channel_timeout_token1] = ACTIONS(3515), + [aux_sym_check_host_ip_token1] = ACTIONS(3515), + [aux_sym_ciphers_token1] = ACTIONS(3515), + [aux_sym_cipher_token1] = ACTIONS(3517), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3515), + [aux_sym_compression_token1] = ACTIONS(3515), + [aux_sym_connection_attempts_token1] = ACTIONS(3515), + [aux_sym_connect_timeout_token1] = ACTIONS(3515), + [aux_sym_control_master_token1] = ACTIONS(3515), + [aux_sym_control_path_token1] = ACTIONS(3515), + [aux_sym_control_persist_token1] = ACTIONS(3515), + [aux_sym_dynamic_forward_token1] = ACTIONS(3515), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3515), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3515), + [aux_sym_escape_char_token1] = ACTIONS(3515), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3515), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3515), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3515), + [aux_sym_forward_agent_token1] = ACTIONS(3515), + [aux_sym_forward_x11_token1] = ACTIONS(3517), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3515), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3515), + [aux_sym_gateway_ports_token1] = ACTIONS(3515), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3515), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3515), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3515), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3515), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3515), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3515), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3515), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3515), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3515), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3515), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3515), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3515), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3515), + [aux_sym_host_key_alias_token1] = ACTIONS(3515), + [aux_sym_hostname_token1] = ACTIONS(3515), + [aux_sym_identities_only_token1] = ACTIONS(3515), + [aux_sym_identity_agent_token1] = ACTIONS(3515), + [aux_sym_identity_file_token1] = ACTIONS(3515), + [aux_sym_ignore_unknown_token1] = ACTIONS(3515), + [aux_sym_include_token1] = ACTIONS(3515), + [aux_sym_ip_qos_token1] = ACTIONS(3515), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3515), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3515), + [aux_sym_kex_algorithms_token1] = ACTIONS(3515), + [aux_sym_known_hosts_command_token1] = ACTIONS(3515), + [aux_sym_local_command_token1] = ACTIONS(3515), + [aux_sym_local_forward_token1] = ACTIONS(3515), + [aux_sym_log_level_token1] = ACTIONS(3515), + [aux_sym_log_verbose_token1] = ACTIONS(3515), + [aux_sym_macs_token1] = ACTIONS(3515), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3515), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3515), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3515), + [aux_sym_password_authentication_token1] = ACTIONS(3515), + [aux_sym_permit_local_command_token1] = ACTIONS(3515), + [aux_sym_permit_remote_open_token1] = ACTIONS(3515), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3515), + [aux_sym_port_token1] = ACTIONS(3515), + [aux_sym_preferred_authentications_token1] = ACTIONS(3515), + [aux_sym_protocol_token1] = ACTIONS(3515), + [aux_sym_proxy_command_token1] = ACTIONS(3515), + [aux_sym_proxy_jump_token1] = ACTIONS(3515), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3515), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3515), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3515), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3515), + [aux_sym_rekey_limit_token1] = ACTIONS(3515), + [aux_sym_remote_command_token1] = ACTIONS(3515), + [aux_sym_remote_forward_token1] = ACTIONS(3515), + [aux_sym_request_tty_token1] = ACTIONS(3515), + [aux_sym_required_rsa_size_token1] = ACTIONS(3515), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3515), + [aux_sym_security_key_provider_token1] = ACTIONS(3515), + [aux_sym_send_env_token1] = ACTIONS(3515), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3515), + [aux_sym_server_alive_interval_token1] = ACTIONS(3515), + [aux_sym_session_type_token1] = ACTIONS(3515), + [aux_sym_set_env_token1] = ACTIONS(3515), + [aux_sym_stdin_null_token1] = ACTIONS(3515), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3515), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3515), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3515), + [aux_sym_syslog_facility_token1] = ACTIONS(3515), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3515), + [aux_sym_keep_alive_token1] = ACTIONS(3515), + [aux_sym_tag_token1] = ACTIONS(3515), + [aux_sym_tunnel_token1] = ACTIONS(3517), + [aux_sym_tunnel_device_token1] = ACTIONS(3515), + [aux_sym_update_host_keys_token1] = ACTIONS(3515), + [aux_sym_use_keychain_token1] = ACTIONS(3515), + [aux_sym_use_roaming_token1] = ACTIONS(3515), + [aux_sym_user_token1] = ACTIONS(3517), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3515), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3515), + [aux_sym_visual_host_key_token1] = ACTIONS(3515), + [aux_sym_xauth_location_token1] = ACTIONS(3515), }, [647] = { - [ts_builtin_sym_end] = ACTIONS(1122), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1124), - [aux_sym_match_token1] = ACTIONS(1122), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1122), - [aux_sym_address_family_token1] = ACTIONS(1122), - [aux_sym_batch_mode_token1] = ACTIONS(1122), - [aux_sym_bind_address_token1] = ACTIONS(1122), - [aux_sym_bind_interface_token1] = ACTIONS(1122), - [aux_sym_canonical_domains_token1] = ACTIONS(1122), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1122), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1122), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1122), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1122), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1122), - [aux_sym_certificate_file_token1] = ACTIONS(1122), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1122), - [aux_sym_channel_timeout_token1] = ACTIONS(1122), - [aux_sym_check_host_ip_token1] = ACTIONS(1122), - [aux_sym_ciphers_token1] = ACTIONS(1122), - [aux_sym_cipher_token1] = ACTIONS(1124), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1122), - [aux_sym_compression_token1] = ACTIONS(1122), - [aux_sym_connection_attempts_token1] = ACTIONS(1122), - [aux_sym_connect_timeout_token1] = ACTIONS(1122), - [aux_sym_control_master_token1] = ACTIONS(1122), - [aux_sym_control_path_token1] = ACTIONS(1122), - [aux_sym_control_persist_token1] = ACTIONS(1122), - [aux_sym_dynamic_forward_token1] = ACTIONS(1122), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1122), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1122), - [aux_sym_escape_char_token1] = ACTIONS(1122), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1122), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1122), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1122), - [aux_sym_forward_agent_token1] = ACTIONS(1122), - [aux_sym_forward_x11_token1] = ACTIONS(1124), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1122), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1122), - [aux_sym_gateway_ports_token1] = ACTIONS(1122), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1122), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1122), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1122), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1122), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1122), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1122), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1122), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1122), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1122), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1122), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1122), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1122), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1122), - [aux_sym_host_key_alias_token1] = ACTIONS(1122), - [aux_sym_hostname_token1] = ACTIONS(1122), - [aux_sym_identities_only_token1] = ACTIONS(1122), - [aux_sym_identity_agent_token1] = ACTIONS(1122), - [aux_sym_identity_file_token1] = ACTIONS(1122), - [aux_sym_ignore_unknown_token1] = ACTIONS(1122), - [aux_sym_include_token1] = ACTIONS(1122), - [aux_sym_ip_qos_token1] = ACTIONS(1122), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1122), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1122), - [aux_sym_kex_algorithms_token1] = ACTIONS(1122), - [aux_sym_known_hosts_command_token1] = ACTIONS(1122), - [aux_sym_local_command_token1] = ACTIONS(1122), - [aux_sym_local_forward_token1] = ACTIONS(1122), - [aux_sym_log_level_token1] = ACTIONS(1122), - [aux_sym_log_verbose_token1] = ACTIONS(1122), - [aux_sym_macs_token1] = ACTIONS(1122), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1122), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1122), - [aux_sym_password_authentication_token1] = ACTIONS(1122), - [aux_sym_permit_local_command_token1] = ACTIONS(1122), - [aux_sym_permit_remote_open_token1] = ACTIONS(1122), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1122), - [aux_sym_port_token1] = ACTIONS(1122), - [aux_sym_preferred_authentications_token1] = ACTIONS(1122), - [aux_sym_protocol_token1] = ACTIONS(1122), - [aux_sym_proxy_command_token1] = ACTIONS(1122), - [aux_sym_proxy_jump_token1] = ACTIONS(1122), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1122), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1122), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1122), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1122), - [aux_sym_rekey_limit_token1] = ACTIONS(1122), - [aux_sym_remote_command_token1] = ACTIONS(1122), - [aux_sym_remote_forward_token1] = ACTIONS(1122), - [aux_sym_request_tty_token1] = ACTIONS(1122), - [aux_sym_required_rsa_size_token1] = ACTIONS(1122), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1122), - [aux_sym_security_key_provider_token1] = ACTIONS(1122), - [aux_sym_send_env_token1] = ACTIONS(1122), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1122), - [aux_sym_server_alive_interval_token1] = ACTIONS(1122), - [aux_sym_session_type_token1] = ACTIONS(1122), - [aux_sym_set_env_token1] = ACTIONS(1122), - [aux_sym_stdin_null_token1] = ACTIONS(1122), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1122), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1122), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1122), - [aux_sym_syslog_facility_token1] = ACTIONS(1122), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1122), - [aux_sym_keep_alive_token1] = ACTIONS(1122), - [aux_sym_tag_token1] = ACTIONS(1122), - [aux_sym_tunnel_token1] = ACTIONS(1124), - [aux_sym_tunnel_device_token1] = ACTIONS(1122), - [aux_sym_update_host_keys_token1] = ACTIONS(1122), - [aux_sym_use_keychain_token1] = ACTIONS(1122), - [aux_sym_use_roaming_token1] = ACTIONS(1122), - [aux_sym_user_token1] = ACTIONS(1124), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1122), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1122), - [aux_sym_visual_host_key_token1] = ACTIONS(1122), - [aux_sym_xauth_location_token1] = ACTIONS(1122), + [ts_builtin_sym_end] = ACTIONS(3519), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3521), + [aux_sym_match_token1] = ACTIONS(3519), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3519), + [aux_sym_address_family_token1] = ACTIONS(3519), + [aux_sym_batch_mode_token1] = ACTIONS(3519), + [aux_sym_bind_address_token1] = ACTIONS(3519), + [aux_sym_bind_interface_token1] = ACTIONS(3519), + [aux_sym_canonical_domains_token1] = ACTIONS(3519), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3519), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3519), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3519), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3519), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3519), + [aux_sym_certificate_file_token1] = ACTIONS(3519), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3519), + [aux_sym_channel_timeout_token1] = ACTIONS(3519), + [aux_sym_check_host_ip_token1] = ACTIONS(3519), + [aux_sym_ciphers_token1] = ACTIONS(3519), + [aux_sym_cipher_token1] = ACTIONS(3521), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3519), + [aux_sym_compression_token1] = ACTIONS(3519), + [aux_sym_connection_attempts_token1] = ACTIONS(3519), + [aux_sym_connect_timeout_token1] = ACTIONS(3519), + [aux_sym_control_master_token1] = ACTIONS(3519), + [aux_sym_control_path_token1] = ACTIONS(3519), + [aux_sym_control_persist_token1] = ACTIONS(3519), + [aux_sym_dynamic_forward_token1] = ACTIONS(3519), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3519), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3519), + [aux_sym_escape_char_token1] = ACTIONS(3519), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3519), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3519), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3519), + [aux_sym_forward_agent_token1] = ACTIONS(3519), + [aux_sym_forward_x11_token1] = ACTIONS(3521), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3519), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3519), + [aux_sym_gateway_ports_token1] = ACTIONS(3519), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3519), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3519), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3519), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3519), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3519), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3519), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3519), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3519), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3519), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3519), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3519), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3519), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3519), + [aux_sym_host_key_alias_token1] = ACTIONS(3519), + [aux_sym_hostname_token1] = ACTIONS(3519), + [aux_sym_identities_only_token1] = ACTIONS(3519), + [aux_sym_identity_agent_token1] = ACTIONS(3519), + [aux_sym_identity_file_token1] = ACTIONS(3519), + [aux_sym_ignore_unknown_token1] = ACTIONS(3519), + [aux_sym_include_token1] = ACTIONS(3519), + [aux_sym_ip_qos_token1] = ACTIONS(3519), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3519), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3519), + [aux_sym_kex_algorithms_token1] = ACTIONS(3519), + [aux_sym_known_hosts_command_token1] = ACTIONS(3519), + [aux_sym_local_command_token1] = ACTIONS(3519), + [aux_sym_local_forward_token1] = ACTIONS(3519), + [aux_sym_log_level_token1] = ACTIONS(3519), + [aux_sym_log_verbose_token1] = ACTIONS(3519), + [aux_sym_macs_token1] = ACTIONS(3519), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3519), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3519), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3519), + [aux_sym_password_authentication_token1] = ACTIONS(3519), + [aux_sym_permit_local_command_token1] = ACTIONS(3519), + [aux_sym_permit_remote_open_token1] = ACTIONS(3519), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3519), + [aux_sym_port_token1] = ACTIONS(3519), + [aux_sym_preferred_authentications_token1] = ACTIONS(3519), + [aux_sym_protocol_token1] = ACTIONS(3519), + [aux_sym_proxy_command_token1] = ACTIONS(3519), + [aux_sym_proxy_jump_token1] = ACTIONS(3519), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3519), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3519), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3519), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3519), + [aux_sym_rekey_limit_token1] = ACTIONS(3519), + [aux_sym_remote_command_token1] = ACTIONS(3519), + [aux_sym_remote_forward_token1] = ACTIONS(3519), + [aux_sym_request_tty_token1] = ACTIONS(3519), + [aux_sym_required_rsa_size_token1] = ACTIONS(3519), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3519), + [aux_sym_security_key_provider_token1] = ACTIONS(3519), + [aux_sym_send_env_token1] = ACTIONS(3519), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3519), + [aux_sym_server_alive_interval_token1] = ACTIONS(3519), + [aux_sym_session_type_token1] = ACTIONS(3519), + [aux_sym_set_env_token1] = ACTIONS(3519), + [aux_sym_stdin_null_token1] = ACTIONS(3519), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3519), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3519), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3519), + [aux_sym_syslog_facility_token1] = ACTIONS(3519), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3519), + [aux_sym_keep_alive_token1] = ACTIONS(3519), + [aux_sym_tag_token1] = ACTIONS(3519), + [aux_sym_tunnel_token1] = ACTIONS(3521), + [aux_sym_tunnel_device_token1] = ACTIONS(3519), + [aux_sym_update_host_keys_token1] = ACTIONS(3519), + [aux_sym_use_keychain_token1] = ACTIONS(3519), + [aux_sym_use_roaming_token1] = ACTIONS(3519), + [aux_sym_user_token1] = ACTIONS(3521), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3519), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3519), + [aux_sym_visual_host_key_token1] = ACTIONS(3519), + [aux_sym_xauth_location_token1] = ACTIONS(3519), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(1116), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1118), - [aux_sym_match_token1] = ACTIONS(1116), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1116), - [aux_sym_address_family_token1] = ACTIONS(1116), - [aux_sym_batch_mode_token1] = ACTIONS(1116), - [aux_sym_bind_address_token1] = ACTIONS(1116), - [aux_sym_bind_interface_token1] = ACTIONS(1116), - [aux_sym_canonical_domains_token1] = ACTIONS(1116), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1116), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1116), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1116), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1116), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1116), - [aux_sym_certificate_file_token1] = ACTIONS(1116), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1116), - [aux_sym_channel_timeout_token1] = ACTIONS(1116), - [aux_sym_check_host_ip_token1] = ACTIONS(1116), - [aux_sym_ciphers_token1] = ACTIONS(1116), - [aux_sym_cipher_token1] = ACTIONS(1118), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1116), - [aux_sym_compression_token1] = ACTIONS(1116), - [aux_sym_connection_attempts_token1] = ACTIONS(1116), - [aux_sym_connect_timeout_token1] = ACTIONS(1116), - [aux_sym_control_master_token1] = ACTIONS(1116), - [aux_sym_control_path_token1] = ACTIONS(1116), - [aux_sym_control_persist_token1] = ACTIONS(1116), - [aux_sym_dynamic_forward_token1] = ACTIONS(1116), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1116), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1116), - [aux_sym_escape_char_token1] = ACTIONS(1116), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1116), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1116), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1116), - [aux_sym_forward_agent_token1] = ACTIONS(1116), - [aux_sym_forward_x11_token1] = ACTIONS(1118), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1116), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1116), - [aux_sym_gateway_ports_token1] = ACTIONS(1116), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1116), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1116), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1116), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1116), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1116), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1116), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1116), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1116), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1116), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1116), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1116), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1116), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1116), - [aux_sym_host_key_alias_token1] = ACTIONS(1116), - [aux_sym_hostname_token1] = ACTIONS(1116), - [aux_sym_identities_only_token1] = ACTIONS(1116), - [aux_sym_identity_agent_token1] = ACTIONS(1116), - [aux_sym_identity_file_token1] = ACTIONS(1116), - [aux_sym_ignore_unknown_token1] = ACTIONS(1116), - [aux_sym_include_token1] = ACTIONS(1116), - [aux_sym_ip_qos_token1] = ACTIONS(1116), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1116), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1116), - [aux_sym_kex_algorithms_token1] = ACTIONS(1116), - [aux_sym_known_hosts_command_token1] = ACTIONS(1116), - [aux_sym_local_command_token1] = ACTIONS(1116), - [aux_sym_local_forward_token1] = ACTIONS(1116), - [aux_sym_log_level_token1] = ACTIONS(1116), - [aux_sym_log_verbose_token1] = ACTIONS(1116), - [aux_sym_macs_token1] = ACTIONS(1116), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1116), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1116), - [aux_sym_password_authentication_token1] = ACTIONS(1116), - [aux_sym_permit_local_command_token1] = ACTIONS(1116), - [aux_sym_permit_remote_open_token1] = ACTIONS(1116), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1116), - [aux_sym_port_token1] = ACTIONS(1116), - [aux_sym_preferred_authentications_token1] = ACTIONS(1116), - [aux_sym_protocol_token1] = ACTIONS(1116), - [aux_sym_proxy_command_token1] = ACTIONS(1116), - [aux_sym_proxy_jump_token1] = ACTIONS(1116), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1116), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1116), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1116), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1116), - [aux_sym_rekey_limit_token1] = ACTIONS(1116), - [aux_sym_remote_command_token1] = ACTIONS(1116), - [aux_sym_remote_forward_token1] = ACTIONS(1116), - [aux_sym_request_tty_token1] = ACTIONS(1116), - [aux_sym_required_rsa_size_token1] = ACTIONS(1116), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1116), - [aux_sym_security_key_provider_token1] = ACTIONS(1116), - [aux_sym_send_env_token1] = ACTIONS(1116), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1116), - [aux_sym_server_alive_interval_token1] = ACTIONS(1116), - [aux_sym_session_type_token1] = ACTIONS(1116), - [aux_sym_set_env_token1] = ACTIONS(1116), - [aux_sym_stdin_null_token1] = ACTIONS(1116), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1116), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1116), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1116), - [aux_sym_syslog_facility_token1] = ACTIONS(1116), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1116), - [aux_sym_keep_alive_token1] = ACTIONS(1116), - [aux_sym_tag_token1] = ACTIONS(1116), - [aux_sym_tunnel_token1] = ACTIONS(1118), - [aux_sym_tunnel_device_token1] = ACTIONS(1116), - [aux_sym_update_host_keys_token1] = ACTIONS(1116), - [aux_sym_use_keychain_token1] = ACTIONS(1116), - [aux_sym_use_roaming_token1] = ACTIONS(1116), - [aux_sym_user_token1] = ACTIONS(1118), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1116), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1116), - [aux_sym_visual_host_key_token1] = ACTIONS(1116), - [aux_sym_xauth_location_token1] = ACTIONS(1116), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3525), + [aux_sym_match_token1] = ACTIONS(3523), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3523), + [aux_sym_address_family_token1] = ACTIONS(3523), + [aux_sym_batch_mode_token1] = ACTIONS(3523), + [aux_sym_bind_address_token1] = ACTIONS(3523), + [aux_sym_bind_interface_token1] = ACTIONS(3523), + [aux_sym_canonical_domains_token1] = ACTIONS(3523), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3523), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3523), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3523), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3523), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3523), + [aux_sym_certificate_file_token1] = ACTIONS(3523), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3523), + [aux_sym_channel_timeout_token1] = ACTIONS(3523), + [aux_sym_check_host_ip_token1] = ACTIONS(3523), + [aux_sym_ciphers_token1] = ACTIONS(3523), + [aux_sym_cipher_token1] = ACTIONS(3525), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3523), + [aux_sym_compression_token1] = ACTIONS(3523), + [aux_sym_connection_attempts_token1] = ACTIONS(3523), + [aux_sym_connect_timeout_token1] = ACTIONS(3523), + [aux_sym_control_master_token1] = ACTIONS(3523), + [aux_sym_control_path_token1] = ACTIONS(3523), + [aux_sym_control_persist_token1] = ACTIONS(3523), + [aux_sym_dynamic_forward_token1] = ACTIONS(3523), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3523), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3523), + [aux_sym_escape_char_token1] = ACTIONS(3523), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3523), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3523), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3523), + [aux_sym_forward_agent_token1] = ACTIONS(3523), + [aux_sym_forward_x11_token1] = ACTIONS(3525), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3523), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3523), + [aux_sym_gateway_ports_token1] = ACTIONS(3523), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3523), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3523), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3523), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3523), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3523), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3523), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3523), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3523), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3523), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3523), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3523), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3523), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3523), + [aux_sym_host_key_alias_token1] = ACTIONS(3523), + [aux_sym_hostname_token1] = ACTIONS(3523), + [aux_sym_identities_only_token1] = ACTIONS(3523), + [aux_sym_identity_agent_token1] = ACTIONS(3523), + [aux_sym_identity_file_token1] = ACTIONS(3523), + [aux_sym_ignore_unknown_token1] = ACTIONS(3523), + [aux_sym_include_token1] = ACTIONS(3523), + [aux_sym_ip_qos_token1] = ACTIONS(3523), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3523), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3523), + [aux_sym_kex_algorithms_token1] = ACTIONS(3523), + [aux_sym_known_hosts_command_token1] = ACTIONS(3523), + [aux_sym_local_command_token1] = ACTIONS(3523), + [aux_sym_local_forward_token1] = ACTIONS(3523), + [aux_sym_log_level_token1] = ACTIONS(3523), + [aux_sym_log_verbose_token1] = ACTIONS(3523), + [aux_sym_macs_token1] = ACTIONS(3523), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3523), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3523), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3523), + [aux_sym_password_authentication_token1] = ACTIONS(3523), + [aux_sym_permit_local_command_token1] = ACTIONS(3523), + [aux_sym_permit_remote_open_token1] = ACTIONS(3523), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3523), + [aux_sym_port_token1] = ACTIONS(3523), + [aux_sym_preferred_authentications_token1] = ACTIONS(3523), + [aux_sym_protocol_token1] = ACTIONS(3523), + [aux_sym_proxy_command_token1] = ACTIONS(3523), + [aux_sym_proxy_jump_token1] = ACTIONS(3523), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3523), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3523), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3523), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3523), + [aux_sym_rekey_limit_token1] = ACTIONS(3523), + [aux_sym_remote_command_token1] = ACTIONS(3523), + [aux_sym_remote_forward_token1] = ACTIONS(3523), + [aux_sym_request_tty_token1] = ACTIONS(3523), + [aux_sym_required_rsa_size_token1] = ACTIONS(3523), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3523), + [aux_sym_security_key_provider_token1] = ACTIONS(3523), + [aux_sym_send_env_token1] = ACTIONS(3523), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3523), + [aux_sym_server_alive_interval_token1] = ACTIONS(3523), + [aux_sym_session_type_token1] = ACTIONS(3523), + [aux_sym_set_env_token1] = ACTIONS(3523), + [aux_sym_stdin_null_token1] = ACTIONS(3523), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3523), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3523), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3523), + [aux_sym_syslog_facility_token1] = ACTIONS(3523), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3523), + [aux_sym_keep_alive_token1] = ACTIONS(3523), + [aux_sym_tag_token1] = ACTIONS(3523), + [aux_sym_tunnel_token1] = ACTIONS(3525), + [aux_sym_tunnel_device_token1] = ACTIONS(3523), + [aux_sym_update_host_keys_token1] = ACTIONS(3523), + [aux_sym_use_keychain_token1] = ACTIONS(3523), + [aux_sym_use_roaming_token1] = ACTIONS(3523), + [aux_sym_user_token1] = ACTIONS(3525), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3523), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3523), + [aux_sym_visual_host_key_token1] = ACTIONS(3523), + [aux_sym_xauth_location_token1] = ACTIONS(3523), }, [649] = { - [ts_builtin_sym_end] = ACTIONS(3528), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3530), - [aux_sym_match_token1] = ACTIONS(3528), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3528), - [aux_sym_address_family_token1] = ACTIONS(3528), - [aux_sym_batch_mode_token1] = ACTIONS(3528), - [aux_sym_bind_address_token1] = ACTIONS(3528), - [aux_sym_bind_interface_token1] = ACTIONS(3528), - [aux_sym_canonical_domains_token1] = ACTIONS(3528), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3528), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3528), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3528), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3528), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3528), - [aux_sym_certificate_file_token1] = ACTIONS(3528), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3528), - [aux_sym_channel_timeout_token1] = ACTIONS(3528), - [aux_sym_check_host_ip_token1] = ACTIONS(3528), - [aux_sym_ciphers_token1] = ACTIONS(3528), - [aux_sym_cipher_token1] = ACTIONS(3530), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3528), - [aux_sym_compression_token1] = ACTIONS(3528), - [aux_sym_connection_attempts_token1] = ACTIONS(3528), - [aux_sym_connect_timeout_token1] = ACTIONS(3528), - [aux_sym_control_master_token1] = ACTIONS(3528), - [aux_sym_control_path_token1] = ACTIONS(3528), - [aux_sym_control_persist_token1] = ACTIONS(3528), - [aux_sym_dynamic_forward_token1] = ACTIONS(3528), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3528), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3528), - [aux_sym_escape_char_token1] = ACTIONS(3528), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3528), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3528), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3528), - [aux_sym_forward_agent_token1] = ACTIONS(3528), - [aux_sym_forward_x11_token1] = ACTIONS(3530), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3528), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3528), - [aux_sym_gateway_ports_token1] = ACTIONS(3528), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3528), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3528), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3528), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3528), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3528), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3528), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3528), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3528), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3528), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3528), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3528), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3528), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3528), - [aux_sym_host_key_alias_token1] = ACTIONS(3528), - [aux_sym_hostname_token1] = ACTIONS(3528), - [aux_sym_identities_only_token1] = ACTIONS(3528), - [aux_sym_identity_agent_token1] = ACTIONS(3528), - [aux_sym_identity_file_token1] = ACTIONS(3528), - [aux_sym_ignore_unknown_token1] = ACTIONS(3528), - [aux_sym_include_token1] = ACTIONS(3528), - [aux_sym_ip_qos_token1] = ACTIONS(3528), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3528), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3528), - [aux_sym_kex_algorithms_token1] = ACTIONS(3528), - [aux_sym_known_hosts_command_token1] = ACTIONS(3528), - [aux_sym_local_command_token1] = ACTIONS(3528), - [aux_sym_local_forward_token1] = ACTIONS(3528), - [aux_sym_log_level_token1] = ACTIONS(3528), - [aux_sym_log_verbose_token1] = ACTIONS(3528), - [aux_sym_macs_token1] = ACTIONS(3528), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3528), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3528), - [aux_sym_password_authentication_token1] = ACTIONS(3528), - [aux_sym_permit_local_command_token1] = ACTIONS(3528), - [aux_sym_permit_remote_open_token1] = ACTIONS(3528), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3528), - [aux_sym_port_token1] = ACTIONS(3528), - [aux_sym_preferred_authentications_token1] = ACTIONS(3528), - [aux_sym_protocol_token1] = ACTIONS(3528), - [aux_sym_proxy_command_token1] = ACTIONS(3528), - [aux_sym_proxy_jump_token1] = ACTIONS(3528), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3528), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3528), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3528), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3528), - [aux_sym_rekey_limit_token1] = ACTIONS(3528), - [aux_sym_remote_command_token1] = ACTIONS(3528), - [aux_sym_remote_forward_token1] = ACTIONS(3528), - [aux_sym_request_tty_token1] = ACTIONS(3528), - [aux_sym_required_rsa_size_token1] = ACTIONS(3528), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3528), - [aux_sym_security_key_provider_token1] = ACTIONS(3528), - [aux_sym_send_env_token1] = ACTIONS(3528), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3528), - [aux_sym_server_alive_interval_token1] = ACTIONS(3528), - [aux_sym_session_type_token1] = ACTIONS(3528), - [aux_sym_set_env_token1] = ACTIONS(3528), - [aux_sym_stdin_null_token1] = ACTIONS(3528), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3528), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3528), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3528), - [aux_sym_syslog_facility_token1] = ACTIONS(3528), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3528), - [aux_sym_keep_alive_token1] = ACTIONS(3528), - [aux_sym_tag_token1] = ACTIONS(3528), - [aux_sym_tunnel_token1] = ACTIONS(3530), - [aux_sym_tunnel_device_token1] = ACTIONS(3528), - [aux_sym_update_host_keys_token1] = ACTIONS(3528), - [aux_sym_use_keychain_token1] = ACTIONS(3528), - [aux_sym_use_roaming_token1] = ACTIONS(3528), - [aux_sym_user_token1] = ACTIONS(3530), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3528), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3528), - [aux_sym_visual_host_key_token1] = ACTIONS(3528), - [aux_sym_xauth_location_token1] = ACTIONS(3528), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3529), + [aux_sym_match_token1] = ACTIONS(3527), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3527), + [aux_sym_address_family_token1] = ACTIONS(3527), + [aux_sym_batch_mode_token1] = ACTIONS(3527), + [aux_sym_bind_address_token1] = ACTIONS(3527), + [aux_sym_bind_interface_token1] = ACTIONS(3527), + [aux_sym_canonical_domains_token1] = ACTIONS(3527), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3527), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3527), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3527), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3527), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3527), + [aux_sym_certificate_file_token1] = ACTIONS(3527), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3527), + [aux_sym_channel_timeout_token1] = ACTIONS(3527), + [aux_sym_check_host_ip_token1] = ACTIONS(3527), + [aux_sym_ciphers_token1] = ACTIONS(3527), + [aux_sym_cipher_token1] = ACTIONS(3529), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3527), + [aux_sym_compression_token1] = ACTIONS(3527), + [aux_sym_connection_attempts_token1] = ACTIONS(3527), + [aux_sym_connect_timeout_token1] = ACTIONS(3527), + [aux_sym_control_master_token1] = ACTIONS(3527), + [aux_sym_control_path_token1] = ACTIONS(3527), + [aux_sym_control_persist_token1] = ACTIONS(3527), + [aux_sym_dynamic_forward_token1] = ACTIONS(3527), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3527), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3527), + [aux_sym_escape_char_token1] = ACTIONS(3527), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3527), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3527), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3527), + [aux_sym_forward_agent_token1] = ACTIONS(3527), + [aux_sym_forward_x11_token1] = ACTIONS(3529), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3527), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3527), + [aux_sym_gateway_ports_token1] = ACTIONS(3527), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3527), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3527), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3527), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3527), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3527), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3527), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3527), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3527), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3527), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3527), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3527), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3527), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3527), + [aux_sym_host_key_alias_token1] = ACTIONS(3527), + [aux_sym_hostname_token1] = ACTIONS(3527), + [aux_sym_identities_only_token1] = ACTIONS(3527), + [aux_sym_identity_agent_token1] = ACTIONS(3527), + [aux_sym_identity_file_token1] = ACTIONS(3527), + [aux_sym_ignore_unknown_token1] = ACTIONS(3527), + [aux_sym_include_token1] = ACTIONS(3527), + [aux_sym_ip_qos_token1] = ACTIONS(3527), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3527), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3527), + [aux_sym_kex_algorithms_token1] = ACTIONS(3527), + [aux_sym_known_hosts_command_token1] = ACTIONS(3527), + [aux_sym_local_command_token1] = ACTIONS(3527), + [aux_sym_local_forward_token1] = ACTIONS(3527), + [aux_sym_log_level_token1] = ACTIONS(3527), + [aux_sym_log_verbose_token1] = ACTIONS(3527), + [aux_sym_macs_token1] = ACTIONS(3527), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3527), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3527), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3527), + [aux_sym_password_authentication_token1] = ACTIONS(3527), + [aux_sym_permit_local_command_token1] = ACTIONS(3527), + [aux_sym_permit_remote_open_token1] = ACTIONS(3527), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3527), + [aux_sym_port_token1] = ACTIONS(3527), + [aux_sym_preferred_authentications_token1] = ACTIONS(3527), + [aux_sym_protocol_token1] = ACTIONS(3527), + [aux_sym_proxy_command_token1] = ACTIONS(3527), + [aux_sym_proxy_jump_token1] = ACTIONS(3527), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3527), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3527), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3527), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3527), + [aux_sym_rekey_limit_token1] = ACTIONS(3527), + [aux_sym_remote_command_token1] = ACTIONS(3527), + [aux_sym_remote_forward_token1] = ACTIONS(3527), + [aux_sym_request_tty_token1] = ACTIONS(3527), + [aux_sym_required_rsa_size_token1] = ACTIONS(3527), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3527), + [aux_sym_security_key_provider_token1] = ACTIONS(3527), + [aux_sym_send_env_token1] = ACTIONS(3527), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3527), + [aux_sym_server_alive_interval_token1] = ACTIONS(3527), + [aux_sym_session_type_token1] = ACTIONS(3527), + [aux_sym_set_env_token1] = ACTIONS(3527), + [aux_sym_stdin_null_token1] = ACTIONS(3527), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3527), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3527), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3527), + [aux_sym_syslog_facility_token1] = ACTIONS(3527), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3527), + [aux_sym_keep_alive_token1] = ACTIONS(3527), + [aux_sym_tag_token1] = ACTIONS(3527), + [aux_sym_tunnel_token1] = ACTIONS(3529), + [aux_sym_tunnel_device_token1] = ACTIONS(3527), + [aux_sym_update_host_keys_token1] = ACTIONS(3527), + [aux_sym_use_keychain_token1] = ACTIONS(3527), + [aux_sym_use_roaming_token1] = ACTIONS(3527), + [aux_sym_user_token1] = ACTIONS(3529), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3527), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3527), + [aux_sym_visual_host_key_token1] = ACTIONS(3527), + [aux_sym_xauth_location_token1] = ACTIONS(3527), }, [650] = { - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(3534), - [aux_sym_match_token1] = ACTIONS(3532), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(3532), - [aux_sym_address_family_token1] = ACTIONS(3532), - [aux_sym_batch_mode_token1] = ACTIONS(3532), - [aux_sym_bind_address_token1] = ACTIONS(3532), - [aux_sym_bind_interface_token1] = ACTIONS(3532), - [aux_sym_canonical_domains_token1] = ACTIONS(3532), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3532), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(3532), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3532), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3532), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3532), - [aux_sym_certificate_file_token1] = ACTIONS(3532), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(3532), - [aux_sym_channel_timeout_token1] = ACTIONS(3532), - [aux_sym_check_host_ip_token1] = ACTIONS(3532), - [aux_sym_ciphers_token1] = ACTIONS(3532), - [aux_sym_cipher_token1] = ACTIONS(3534), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(3532), - [aux_sym_compression_token1] = ACTIONS(3532), - [aux_sym_connection_attempts_token1] = ACTIONS(3532), - [aux_sym_connect_timeout_token1] = ACTIONS(3532), - [aux_sym_control_master_token1] = ACTIONS(3532), - [aux_sym_control_path_token1] = ACTIONS(3532), - [aux_sym_control_persist_token1] = ACTIONS(3532), - [aux_sym_dynamic_forward_token1] = ACTIONS(3532), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(3532), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3532), - [aux_sym_escape_char_token1] = ACTIONS(3532), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3532), - [aux_sym_fingerprint_hash_token1] = ACTIONS(3532), - [aux_sym_fork_after_authentication_token1] = ACTIONS(3532), - [aux_sym_forward_agent_token1] = ACTIONS(3532), - [aux_sym_forward_x11_token1] = ACTIONS(3534), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(3532), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(3532), - [aux_sym_gateway_ports_token1] = ACTIONS(3532), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(3532), - [aux_sym_gssapi_authentication_token1] = ACTIONS(3532), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(3532), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3532), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3532), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3532), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(3532), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3532), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3532), - [aux_sym_hash_known_hosts_token1] = ACTIONS(3532), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3532), - [aux_sym_hostbased_authentication_token1] = ACTIONS(3532), - [aux_sym_host_key_algorithms_token1] = ACTIONS(3532), - [aux_sym_host_key_alias_token1] = ACTIONS(3532), - [aux_sym_hostname_token1] = ACTIONS(3532), - [aux_sym_identities_only_token1] = ACTIONS(3532), - [aux_sym_identity_agent_token1] = ACTIONS(3532), - [aux_sym_identity_file_token1] = ACTIONS(3532), - [aux_sym_ignore_unknown_token1] = ACTIONS(3532), - [aux_sym_include_token1] = ACTIONS(3532), - [aux_sym_ip_qos_token1] = ACTIONS(3532), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3532), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3532), - [aux_sym_kex_algorithms_token1] = ACTIONS(3532), - [aux_sym_known_hosts_command_token1] = ACTIONS(3532), - [aux_sym_local_command_token1] = ACTIONS(3532), - [aux_sym_local_forward_token1] = ACTIONS(3532), - [aux_sym_log_level_token1] = ACTIONS(3532), - [aux_sym_log_verbose_token1] = ACTIONS(3532), - [aux_sym_macs_token1] = ACTIONS(3532), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3532), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(3532), - [aux_sym_password_authentication_token1] = ACTIONS(3532), - [aux_sym_permit_local_command_token1] = ACTIONS(3532), - [aux_sym_permit_remote_open_token1] = ACTIONS(3532), - [aux_sym_pkcs11_provider_token1] = ACTIONS(3532), - [aux_sym_port_token1] = ACTIONS(3532), - [aux_sym_preferred_authentications_token1] = ACTIONS(3532), - [aux_sym_protocol_token1] = ACTIONS(3532), - [aux_sym_proxy_command_token1] = ACTIONS(3532), - [aux_sym_proxy_jump_token1] = ACTIONS(3532), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3532), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3532), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3532), - [aux_sym_pubkey_authentication_token1] = ACTIONS(3532), - [aux_sym_rekey_limit_token1] = ACTIONS(3532), - [aux_sym_remote_command_token1] = ACTIONS(3532), - [aux_sym_remote_forward_token1] = ACTIONS(3532), - [aux_sym_request_tty_token1] = ACTIONS(3532), - [aux_sym_required_rsa_size_token1] = ACTIONS(3532), - [aux_sym_revoked_host_keys_token1] = ACTIONS(3532), - [aux_sym_security_key_provider_token1] = ACTIONS(3532), - [aux_sym_send_env_token1] = ACTIONS(3532), - [aux_sym_server_alive_count_max_token1] = ACTIONS(3532), - [aux_sym_server_alive_interval_token1] = ACTIONS(3532), - [aux_sym_session_type_token1] = ACTIONS(3532), - [aux_sym_set_env_token1] = ACTIONS(3532), - [aux_sym_stdin_null_token1] = ACTIONS(3532), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3532), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3532), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(3532), - [aux_sym_syslog_facility_token1] = ACTIONS(3532), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(3532), - [aux_sym_keep_alive_token1] = ACTIONS(3532), - [aux_sym_tag_token1] = ACTIONS(3532), - [aux_sym_tunnel_token1] = ACTIONS(3534), - [aux_sym_tunnel_device_token1] = ACTIONS(3532), - [aux_sym_update_host_keys_token1] = ACTIONS(3532), - [aux_sym_use_keychain_token1] = ACTIONS(3532), - [aux_sym_use_roaming_token1] = ACTIONS(3532), - [aux_sym_user_token1] = ACTIONS(3534), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(3532), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(3532), - [aux_sym_visual_host_key_token1] = ACTIONS(3532), - [aux_sym_xauth_location_token1] = ACTIONS(3532), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3533), + [aux_sym_match_token1] = ACTIONS(3531), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3531), + [aux_sym_address_family_token1] = ACTIONS(3531), + [aux_sym_batch_mode_token1] = ACTIONS(3531), + [aux_sym_bind_address_token1] = ACTIONS(3531), + [aux_sym_bind_interface_token1] = ACTIONS(3531), + [aux_sym_canonical_domains_token1] = ACTIONS(3531), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3531), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3531), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3531), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3531), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3531), + [aux_sym_certificate_file_token1] = ACTIONS(3531), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3531), + [aux_sym_channel_timeout_token1] = ACTIONS(3531), + [aux_sym_check_host_ip_token1] = ACTIONS(3531), + [aux_sym_ciphers_token1] = ACTIONS(3531), + [aux_sym_cipher_token1] = ACTIONS(3533), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3531), + [aux_sym_compression_token1] = ACTIONS(3531), + [aux_sym_connection_attempts_token1] = ACTIONS(3531), + [aux_sym_connect_timeout_token1] = ACTIONS(3531), + [aux_sym_control_master_token1] = ACTIONS(3531), + [aux_sym_control_path_token1] = ACTIONS(3531), + [aux_sym_control_persist_token1] = ACTIONS(3531), + [aux_sym_dynamic_forward_token1] = ACTIONS(3531), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3531), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3531), + [aux_sym_escape_char_token1] = ACTIONS(3531), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3531), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3531), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3531), + [aux_sym_forward_agent_token1] = ACTIONS(3531), + [aux_sym_forward_x11_token1] = ACTIONS(3533), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3531), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3531), + [aux_sym_gateway_ports_token1] = ACTIONS(3531), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3531), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3531), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3531), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3531), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3531), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3531), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3531), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3531), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3531), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3531), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3531), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3531), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3531), + [aux_sym_host_key_alias_token1] = ACTIONS(3531), + [aux_sym_hostname_token1] = ACTIONS(3531), + [aux_sym_identities_only_token1] = ACTIONS(3531), + [aux_sym_identity_agent_token1] = ACTIONS(3531), + [aux_sym_identity_file_token1] = ACTIONS(3531), + [aux_sym_ignore_unknown_token1] = ACTIONS(3531), + [aux_sym_include_token1] = ACTIONS(3531), + [aux_sym_ip_qos_token1] = ACTIONS(3531), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3531), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3531), + [aux_sym_kex_algorithms_token1] = ACTIONS(3531), + [aux_sym_known_hosts_command_token1] = ACTIONS(3531), + [aux_sym_local_command_token1] = ACTIONS(3531), + [aux_sym_local_forward_token1] = ACTIONS(3531), + [aux_sym_log_level_token1] = ACTIONS(3531), + [aux_sym_log_verbose_token1] = ACTIONS(3531), + [aux_sym_macs_token1] = ACTIONS(3531), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3531), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3531), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3531), + [aux_sym_password_authentication_token1] = ACTIONS(3531), + [aux_sym_permit_local_command_token1] = ACTIONS(3531), + [aux_sym_permit_remote_open_token1] = ACTIONS(3531), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3531), + [aux_sym_port_token1] = ACTIONS(3531), + [aux_sym_preferred_authentications_token1] = ACTIONS(3531), + [aux_sym_protocol_token1] = ACTIONS(3531), + [aux_sym_proxy_command_token1] = ACTIONS(3531), + [aux_sym_proxy_jump_token1] = ACTIONS(3531), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3531), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3531), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3531), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3531), + [aux_sym_rekey_limit_token1] = ACTIONS(3531), + [aux_sym_remote_command_token1] = ACTIONS(3531), + [aux_sym_remote_forward_token1] = ACTIONS(3531), + [aux_sym_request_tty_token1] = ACTIONS(3531), + [aux_sym_required_rsa_size_token1] = ACTIONS(3531), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3531), + [aux_sym_security_key_provider_token1] = ACTIONS(3531), + [aux_sym_send_env_token1] = ACTIONS(3531), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3531), + [aux_sym_server_alive_interval_token1] = ACTIONS(3531), + [aux_sym_session_type_token1] = ACTIONS(3531), + [aux_sym_set_env_token1] = ACTIONS(3531), + [aux_sym_stdin_null_token1] = ACTIONS(3531), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3531), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3531), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3531), + [aux_sym_syslog_facility_token1] = ACTIONS(3531), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3531), + [aux_sym_keep_alive_token1] = ACTIONS(3531), + [aux_sym_tag_token1] = ACTIONS(3531), + [aux_sym_tunnel_token1] = ACTIONS(3533), + [aux_sym_tunnel_device_token1] = ACTIONS(3531), + [aux_sym_update_host_keys_token1] = ACTIONS(3531), + [aux_sym_use_keychain_token1] = ACTIONS(3531), + [aux_sym_use_roaming_token1] = ACTIONS(3531), + [aux_sym_user_token1] = ACTIONS(3533), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3531), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3531), + [aux_sym_visual_host_key_token1] = ACTIONS(3531), + [aux_sym_xauth_location_token1] = ACTIONS(3531), }, [651] = { - [ts_builtin_sym_end] = ACTIONS(2272), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2274), - [aux_sym_match_token1] = ACTIONS(2272), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2272), - [aux_sym_address_family_token1] = ACTIONS(2272), - [aux_sym_batch_mode_token1] = ACTIONS(2272), - [aux_sym_bind_address_token1] = ACTIONS(2272), - [aux_sym_bind_interface_token1] = ACTIONS(2272), - [aux_sym_canonical_domains_token1] = ACTIONS(2272), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2272), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2272), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2272), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2272), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2272), - [aux_sym_certificate_file_token1] = ACTIONS(2272), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2272), - [aux_sym_channel_timeout_token1] = ACTIONS(2272), - [aux_sym_check_host_ip_token1] = ACTIONS(2272), - [aux_sym_ciphers_token1] = ACTIONS(2272), - [aux_sym_cipher_token1] = ACTIONS(2274), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2272), - [aux_sym_compression_token1] = ACTIONS(2272), - [aux_sym_connection_attempts_token1] = ACTIONS(2272), - [aux_sym_connect_timeout_token1] = ACTIONS(2272), - [aux_sym_control_master_token1] = ACTIONS(2272), - [aux_sym_control_path_token1] = ACTIONS(2272), - [aux_sym_control_persist_token1] = ACTIONS(2272), - [aux_sym_dynamic_forward_token1] = ACTIONS(2272), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2272), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2272), - [aux_sym_escape_char_token1] = ACTIONS(2272), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2272), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2272), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2272), - [aux_sym_forward_agent_token1] = ACTIONS(2272), - [aux_sym_forward_x11_token1] = ACTIONS(2274), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2272), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2272), - [aux_sym_gateway_ports_token1] = ACTIONS(2272), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2272), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2272), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2272), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2272), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2272), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2272), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2272), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2272), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2272), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2272), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2272), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2272), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2272), - [aux_sym_host_key_alias_token1] = ACTIONS(2272), - [aux_sym_hostname_token1] = ACTIONS(2272), - [aux_sym_identities_only_token1] = ACTIONS(2272), - [aux_sym_identity_agent_token1] = ACTIONS(2272), - [aux_sym_identity_file_token1] = ACTIONS(2272), - [aux_sym_ignore_unknown_token1] = ACTIONS(2272), - [aux_sym_include_token1] = ACTIONS(2272), - [aux_sym_ip_qos_token1] = ACTIONS(2272), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2272), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2272), - [aux_sym_kex_algorithms_token1] = ACTIONS(2272), - [aux_sym_known_hosts_command_token1] = ACTIONS(2272), - [aux_sym_local_command_token1] = ACTIONS(2272), - [aux_sym_local_forward_token1] = ACTIONS(2272), - [aux_sym_log_level_token1] = ACTIONS(2272), - [aux_sym_log_verbose_token1] = ACTIONS(2272), - [aux_sym_macs_token1] = ACTIONS(2272), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2272), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2272), - [aux_sym_password_authentication_token1] = ACTIONS(2272), - [aux_sym_permit_local_command_token1] = ACTIONS(2272), - [aux_sym_permit_remote_open_token1] = ACTIONS(2272), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2272), - [aux_sym_port_token1] = ACTIONS(2272), - [aux_sym_preferred_authentications_token1] = ACTIONS(2272), - [aux_sym_protocol_token1] = ACTIONS(2272), - [aux_sym_proxy_command_token1] = ACTIONS(2272), - [aux_sym_proxy_jump_token1] = ACTIONS(2272), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2272), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2272), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2272), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2272), - [aux_sym_rekey_limit_token1] = ACTIONS(2272), - [aux_sym_remote_command_token1] = ACTIONS(2272), - [aux_sym_remote_forward_token1] = ACTIONS(2272), - [aux_sym_request_tty_token1] = ACTIONS(2272), - [aux_sym_required_rsa_size_token1] = ACTIONS(2272), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2272), - [aux_sym_security_key_provider_token1] = ACTIONS(2272), - [aux_sym_send_env_token1] = ACTIONS(2272), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2272), - [aux_sym_server_alive_interval_token1] = ACTIONS(2272), - [aux_sym_session_type_token1] = ACTIONS(2272), - [aux_sym_set_env_token1] = ACTIONS(2272), - [aux_sym_stdin_null_token1] = ACTIONS(2272), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2272), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2272), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2272), - [aux_sym_syslog_facility_token1] = ACTIONS(2272), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2272), - [aux_sym_keep_alive_token1] = ACTIONS(2272), - [aux_sym_tag_token1] = ACTIONS(2272), - [aux_sym_tunnel_token1] = ACTIONS(2274), - [aux_sym_tunnel_device_token1] = ACTIONS(2272), - [aux_sym_update_host_keys_token1] = ACTIONS(2272), - [aux_sym_use_keychain_token1] = ACTIONS(2272), - [aux_sym_use_roaming_token1] = ACTIONS(2272), - [aux_sym_user_token1] = ACTIONS(2274), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2272), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2272), - [aux_sym_visual_host_key_token1] = ACTIONS(2272), - [aux_sym_xauth_location_token1] = ACTIONS(2272), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3537), + [aux_sym_match_token1] = ACTIONS(3535), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3535), + [aux_sym_address_family_token1] = ACTIONS(3535), + [aux_sym_batch_mode_token1] = ACTIONS(3535), + [aux_sym_bind_address_token1] = ACTIONS(3535), + [aux_sym_bind_interface_token1] = ACTIONS(3535), + [aux_sym_canonical_domains_token1] = ACTIONS(3535), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3535), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3535), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3535), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3535), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3535), + [aux_sym_certificate_file_token1] = ACTIONS(3535), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3535), + [aux_sym_channel_timeout_token1] = ACTIONS(3535), + [aux_sym_check_host_ip_token1] = ACTIONS(3535), + [aux_sym_ciphers_token1] = ACTIONS(3535), + [aux_sym_cipher_token1] = ACTIONS(3537), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3535), + [aux_sym_compression_token1] = ACTIONS(3535), + [aux_sym_connection_attempts_token1] = ACTIONS(3535), + [aux_sym_connect_timeout_token1] = ACTIONS(3535), + [aux_sym_control_master_token1] = ACTIONS(3535), + [aux_sym_control_path_token1] = ACTIONS(3535), + [aux_sym_control_persist_token1] = ACTIONS(3535), + [aux_sym_dynamic_forward_token1] = ACTIONS(3535), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3535), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3535), + [aux_sym_escape_char_token1] = ACTIONS(3535), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3535), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3535), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3535), + [aux_sym_forward_agent_token1] = ACTIONS(3535), + [aux_sym_forward_x11_token1] = ACTIONS(3537), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3535), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3535), + [aux_sym_gateway_ports_token1] = ACTIONS(3535), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3535), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3535), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3535), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3535), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3535), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3535), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3535), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3535), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3535), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3535), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3535), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3535), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3535), + [aux_sym_host_key_alias_token1] = ACTIONS(3535), + [aux_sym_hostname_token1] = ACTIONS(3535), + [aux_sym_identities_only_token1] = ACTIONS(3535), + [aux_sym_identity_agent_token1] = ACTIONS(3535), + [aux_sym_identity_file_token1] = ACTIONS(3535), + [aux_sym_ignore_unknown_token1] = ACTIONS(3535), + [aux_sym_include_token1] = ACTIONS(3535), + [aux_sym_ip_qos_token1] = ACTIONS(3535), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3535), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3535), + [aux_sym_kex_algorithms_token1] = ACTIONS(3535), + [aux_sym_known_hosts_command_token1] = ACTIONS(3535), + [aux_sym_local_command_token1] = ACTIONS(3535), + [aux_sym_local_forward_token1] = ACTIONS(3535), + [aux_sym_log_level_token1] = ACTIONS(3535), + [aux_sym_log_verbose_token1] = ACTIONS(3535), + [aux_sym_macs_token1] = ACTIONS(3535), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3535), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3535), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3535), + [aux_sym_password_authentication_token1] = ACTIONS(3535), + [aux_sym_permit_local_command_token1] = ACTIONS(3535), + [aux_sym_permit_remote_open_token1] = ACTIONS(3535), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3535), + [aux_sym_port_token1] = ACTIONS(3535), + [aux_sym_preferred_authentications_token1] = ACTIONS(3535), + [aux_sym_protocol_token1] = ACTIONS(3535), + [aux_sym_proxy_command_token1] = ACTIONS(3535), + [aux_sym_proxy_jump_token1] = ACTIONS(3535), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3535), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3535), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3535), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3535), + [aux_sym_rekey_limit_token1] = ACTIONS(3535), + [aux_sym_remote_command_token1] = ACTIONS(3535), + [aux_sym_remote_forward_token1] = ACTIONS(3535), + [aux_sym_request_tty_token1] = ACTIONS(3535), + [aux_sym_required_rsa_size_token1] = ACTIONS(3535), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3535), + [aux_sym_security_key_provider_token1] = ACTIONS(3535), + [aux_sym_send_env_token1] = ACTIONS(3535), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3535), + [aux_sym_server_alive_interval_token1] = ACTIONS(3535), + [aux_sym_session_type_token1] = ACTIONS(3535), + [aux_sym_set_env_token1] = ACTIONS(3535), + [aux_sym_stdin_null_token1] = ACTIONS(3535), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3535), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3535), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3535), + [aux_sym_syslog_facility_token1] = ACTIONS(3535), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3535), + [aux_sym_keep_alive_token1] = ACTIONS(3535), + [aux_sym_tag_token1] = ACTIONS(3535), + [aux_sym_tunnel_token1] = ACTIONS(3537), + [aux_sym_tunnel_device_token1] = ACTIONS(3535), + [aux_sym_update_host_keys_token1] = ACTIONS(3535), + [aux_sym_use_keychain_token1] = ACTIONS(3535), + [aux_sym_use_roaming_token1] = ACTIONS(3535), + [aux_sym_user_token1] = ACTIONS(3537), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3535), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3535), + [aux_sym_visual_host_key_token1] = ACTIONS(3535), + [aux_sym_xauth_location_token1] = ACTIONS(3535), }, [652] = { - [ts_builtin_sym_end] = ACTIONS(1936), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1938), - [aux_sym_match_token1] = ACTIONS(1936), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1936), - [aux_sym_address_family_token1] = ACTIONS(1936), - [aux_sym_batch_mode_token1] = ACTIONS(1936), - [aux_sym_bind_address_token1] = ACTIONS(1936), - [aux_sym_bind_interface_token1] = ACTIONS(1936), - [aux_sym_canonical_domains_token1] = ACTIONS(1936), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1936), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1936), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1936), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1936), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1936), - [aux_sym_certificate_file_token1] = ACTIONS(1936), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1936), - [aux_sym_channel_timeout_token1] = ACTIONS(1936), - [aux_sym_check_host_ip_token1] = ACTIONS(1936), - [aux_sym_ciphers_token1] = ACTIONS(1936), - [aux_sym_cipher_token1] = ACTIONS(1938), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1936), - [aux_sym_compression_token1] = ACTIONS(1936), - [aux_sym_connection_attempts_token1] = ACTIONS(1936), - [aux_sym_connect_timeout_token1] = ACTIONS(1936), - [aux_sym_control_master_token1] = ACTIONS(1936), - [aux_sym_control_path_token1] = ACTIONS(1936), - [aux_sym_control_persist_token1] = ACTIONS(1936), - [aux_sym_dynamic_forward_token1] = ACTIONS(1936), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1936), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1936), - [aux_sym_escape_char_token1] = ACTIONS(1936), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1936), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1936), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1936), - [aux_sym_forward_agent_token1] = ACTIONS(1936), - [aux_sym_forward_x11_token1] = ACTIONS(1938), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1936), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1936), - [aux_sym_gateway_ports_token1] = ACTIONS(1936), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1936), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1936), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1936), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1936), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1936), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1936), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1936), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1936), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1936), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1936), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1936), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1936), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1936), - [aux_sym_host_key_alias_token1] = ACTIONS(1936), - [aux_sym_hostname_token1] = ACTIONS(1936), - [aux_sym_identities_only_token1] = ACTIONS(1936), - [aux_sym_identity_agent_token1] = ACTIONS(1936), - [aux_sym_identity_file_token1] = ACTIONS(1936), - [aux_sym_ignore_unknown_token1] = ACTIONS(1936), - [aux_sym_include_token1] = ACTIONS(1936), - [aux_sym_ip_qos_token1] = ACTIONS(1936), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1936), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1936), - [aux_sym_kex_algorithms_token1] = ACTIONS(1936), - [aux_sym_known_hosts_command_token1] = ACTIONS(1936), - [aux_sym_local_command_token1] = ACTIONS(1936), - [aux_sym_local_forward_token1] = ACTIONS(1936), - [aux_sym_log_level_token1] = ACTIONS(1936), - [aux_sym_log_verbose_token1] = ACTIONS(1936), - [aux_sym_macs_token1] = ACTIONS(1936), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1936), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1936), - [aux_sym_password_authentication_token1] = ACTIONS(1936), - [aux_sym_permit_local_command_token1] = ACTIONS(1936), - [aux_sym_permit_remote_open_token1] = ACTIONS(1936), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1936), - [aux_sym_port_token1] = ACTIONS(1936), - [aux_sym_preferred_authentications_token1] = ACTIONS(1936), - [aux_sym_protocol_token1] = ACTIONS(1936), - [aux_sym_proxy_command_token1] = ACTIONS(1936), - [aux_sym_proxy_jump_token1] = ACTIONS(1936), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1936), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1936), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1936), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1936), - [aux_sym_rekey_limit_token1] = ACTIONS(1936), - [aux_sym_remote_command_token1] = ACTIONS(1936), - [aux_sym_remote_forward_token1] = ACTIONS(1936), - [aux_sym_request_tty_token1] = ACTIONS(1936), - [aux_sym_required_rsa_size_token1] = ACTIONS(1936), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1936), - [aux_sym_security_key_provider_token1] = ACTIONS(1936), - [aux_sym_send_env_token1] = ACTIONS(1936), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1936), - [aux_sym_server_alive_interval_token1] = ACTIONS(1936), - [aux_sym_session_type_token1] = ACTIONS(1936), - [aux_sym_set_env_token1] = ACTIONS(1936), - [aux_sym_stdin_null_token1] = ACTIONS(1936), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1936), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1936), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1936), - [aux_sym_syslog_facility_token1] = ACTIONS(1936), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1936), - [aux_sym_keep_alive_token1] = ACTIONS(1936), - [aux_sym_tag_token1] = ACTIONS(1936), - [aux_sym_tunnel_token1] = ACTIONS(1938), - [aux_sym_tunnel_device_token1] = ACTIONS(1936), - [aux_sym_update_host_keys_token1] = ACTIONS(1936), - [aux_sym_use_keychain_token1] = ACTIONS(1936), - [aux_sym_use_roaming_token1] = ACTIONS(1936), - [aux_sym_user_token1] = ACTIONS(1938), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1936), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1936), - [aux_sym_visual_host_key_token1] = ACTIONS(1936), - [aux_sym_xauth_location_token1] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(3539), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3541), + [aux_sym_match_token1] = ACTIONS(3539), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3539), + [aux_sym_address_family_token1] = ACTIONS(3539), + [aux_sym_batch_mode_token1] = ACTIONS(3539), + [aux_sym_bind_address_token1] = ACTIONS(3539), + [aux_sym_bind_interface_token1] = ACTIONS(3539), + [aux_sym_canonical_domains_token1] = ACTIONS(3539), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3539), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3539), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3539), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3539), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3539), + [aux_sym_certificate_file_token1] = ACTIONS(3539), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3539), + [aux_sym_channel_timeout_token1] = ACTIONS(3539), + [aux_sym_check_host_ip_token1] = ACTIONS(3539), + [aux_sym_ciphers_token1] = ACTIONS(3539), + [aux_sym_cipher_token1] = ACTIONS(3541), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3539), + [aux_sym_compression_token1] = ACTIONS(3539), + [aux_sym_connection_attempts_token1] = ACTIONS(3539), + [aux_sym_connect_timeout_token1] = ACTIONS(3539), + [aux_sym_control_master_token1] = ACTIONS(3539), + [aux_sym_control_path_token1] = ACTIONS(3539), + [aux_sym_control_persist_token1] = ACTIONS(3539), + [aux_sym_dynamic_forward_token1] = ACTIONS(3539), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3539), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3539), + [aux_sym_escape_char_token1] = ACTIONS(3539), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3539), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3539), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3539), + [aux_sym_forward_agent_token1] = ACTIONS(3539), + [aux_sym_forward_x11_token1] = ACTIONS(3541), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3539), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3539), + [aux_sym_gateway_ports_token1] = ACTIONS(3539), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3539), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3539), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3539), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3539), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3539), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3539), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3539), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3539), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3539), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3539), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3539), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3539), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3539), + [aux_sym_host_key_alias_token1] = ACTIONS(3539), + [aux_sym_hostname_token1] = ACTIONS(3539), + [aux_sym_identities_only_token1] = ACTIONS(3539), + [aux_sym_identity_agent_token1] = ACTIONS(3539), + [aux_sym_identity_file_token1] = ACTIONS(3539), + [aux_sym_ignore_unknown_token1] = ACTIONS(3539), + [aux_sym_include_token1] = ACTIONS(3539), + [aux_sym_ip_qos_token1] = ACTIONS(3539), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3539), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3539), + [aux_sym_kex_algorithms_token1] = ACTIONS(3539), + [aux_sym_known_hosts_command_token1] = ACTIONS(3539), + [aux_sym_local_command_token1] = ACTIONS(3539), + [aux_sym_local_forward_token1] = ACTIONS(3539), + [aux_sym_log_level_token1] = ACTIONS(3539), + [aux_sym_log_verbose_token1] = ACTIONS(3539), + [aux_sym_macs_token1] = ACTIONS(3539), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3539), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3539), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3539), + [aux_sym_password_authentication_token1] = ACTIONS(3539), + [aux_sym_permit_local_command_token1] = ACTIONS(3539), + [aux_sym_permit_remote_open_token1] = ACTIONS(3539), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3539), + [aux_sym_port_token1] = ACTIONS(3539), + [aux_sym_preferred_authentications_token1] = ACTIONS(3539), + [aux_sym_protocol_token1] = ACTIONS(3539), + [aux_sym_proxy_command_token1] = ACTIONS(3539), + [aux_sym_proxy_jump_token1] = ACTIONS(3539), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3539), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3539), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3539), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3539), + [aux_sym_rekey_limit_token1] = ACTIONS(3539), + [aux_sym_remote_command_token1] = ACTIONS(3539), + [aux_sym_remote_forward_token1] = ACTIONS(3539), + [aux_sym_request_tty_token1] = ACTIONS(3539), + [aux_sym_required_rsa_size_token1] = ACTIONS(3539), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3539), + [aux_sym_security_key_provider_token1] = ACTIONS(3539), + [aux_sym_send_env_token1] = ACTIONS(3539), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3539), + [aux_sym_server_alive_interval_token1] = ACTIONS(3539), + [aux_sym_session_type_token1] = ACTIONS(3539), + [aux_sym_set_env_token1] = ACTIONS(3539), + [aux_sym_stdin_null_token1] = ACTIONS(3539), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3539), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3539), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3539), + [aux_sym_syslog_facility_token1] = ACTIONS(3539), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3539), + [aux_sym_keep_alive_token1] = ACTIONS(3539), + [aux_sym_tag_token1] = ACTIONS(3539), + [aux_sym_tunnel_token1] = ACTIONS(3541), + [aux_sym_tunnel_device_token1] = ACTIONS(3539), + [aux_sym_update_host_keys_token1] = ACTIONS(3539), + [aux_sym_use_keychain_token1] = ACTIONS(3539), + [aux_sym_use_roaming_token1] = ACTIONS(3539), + [aux_sym_user_token1] = ACTIONS(3541), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3539), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3539), + [aux_sym_visual_host_key_token1] = ACTIONS(3539), + [aux_sym_xauth_location_token1] = ACTIONS(3539), }, [653] = { - [ts_builtin_sym_end] = ACTIONS(1584), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1586), - [aux_sym_match_token1] = ACTIONS(1584), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1584), - [aux_sym_address_family_token1] = ACTIONS(1584), - [aux_sym_batch_mode_token1] = ACTIONS(1584), - [aux_sym_bind_address_token1] = ACTIONS(1584), - [aux_sym_bind_interface_token1] = ACTIONS(1584), - [aux_sym_canonical_domains_token1] = ACTIONS(1584), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1584), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1584), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1584), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1584), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1584), - [aux_sym_certificate_file_token1] = ACTIONS(1584), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1584), - [aux_sym_channel_timeout_token1] = ACTIONS(1584), - [aux_sym_check_host_ip_token1] = ACTIONS(1584), - [aux_sym_ciphers_token1] = ACTIONS(1584), - [aux_sym_cipher_token1] = ACTIONS(1586), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1584), - [aux_sym_compression_token1] = ACTIONS(1584), - [aux_sym_connection_attempts_token1] = ACTIONS(1584), - [aux_sym_connect_timeout_token1] = ACTIONS(1584), - [aux_sym_control_master_token1] = ACTIONS(1584), - [aux_sym_control_path_token1] = ACTIONS(1584), - [aux_sym_control_persist_token1] = ACTIONS(1584), - [aux_sym_dynamic_forward_token1] = ACTIONS(1584), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1584), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1584), - [aux_sym_escape_char_token1] = ACTIONS(1584), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1584), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1584), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1584), - [aux_sym_forward_agent_token1] = ACTIONS(1584), - [aux_sym_forward_x11_token1] = ACTIONS(1586), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1584), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1584), - [aux_sym_gateway_ports_token1] = ACTIONS(1584), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1584), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1584), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1584), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1584), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1584), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1584), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1584), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1584), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1584), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1584), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1584), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1584), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1584), - [aux_sym_host_key_alias_token1] = ACTIONS(1584), - [aux_sym_hostname_token1] = ACTIONS(1584), - [aux_sym_identities_only_token1] = ACTIONS(1584), - [aux_sym_identity_agent_token1] = ACTIONS(1584), - [aux_sym_identity_file_token1] = ACTIONS(1584), - [aux_sym_ignore_unknown_token1] = ACTIONS(1584), - [aux_sym_include_token1] = ACTIONS(1584), - [aux_sym_ip_qos_token1] = ACTIONS(1584), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1584), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1584), - [aux_sym_kex_algorithms_token1] = ACTIONS(1584), - [aux_sym_known_hosts_command_token1] = ACTIONS(1584), - [aux_sym_local_command_token1] = ACTIONS(1584), - [aux_sym_local_forward_token1] = ACTIONS(1584), - [aux_sym_log_level_token1] = ACTIONS(1584), - [aux_sym_log_verbose_token1] = ACTIONS(1584), - [aux_sym_macs_token1] = ACTIONS(1584), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1584), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1584), - [aux_sym_password_authentication_token1] = ACTIONS(1584), - [aux_sym_permit_local_command_token1] = ACTIONS(1584), - [aux_sym_permit_remote_open_token1] = ACTIONS(1584), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1584), - [aux_sym_port_token1] = ACTIONS(1584), - [aux_sym_preferred_authentications_token1] = ACTIONS(1584), - [aux_sym_protocol_token1] = ACTIONS(1584), - [aux_sym_proxy_command_token1] = ACTIONS(1584), - [aux_sym_proxy_jump_token1] = ACTIONS(1584), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1584), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1584), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1584), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1584), - [aux_sym_rekey_limit_token1] = ACTIONS(1584), - [aux_sym_remote_command_token1] = ACTIONS(1584), - [aux_sym_remote_forward_token1] = ACTIONS(1584), - [aux_sym_request_tty_token1] = ACTIONS(1584), - [aux_sym_required_rsa_size_token1] = ACTIONS(1584), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1584), - [aux_sym_security_key_provider_token1] = ACTIONS(1584), - [aux_sym_send_env_token1] = ACTIONS(1584), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1584), - [aux_sym_server_alive_interval_token1] = ACTIONS(1584), - [aux_sym_session_type_token1] = ACTIONS(1584), - [aux_sym_set_env_token1] = ACTIONS(1584), - [aux_sym_stdin_null_token1] = ACTIONS(1584), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1584), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1584), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1584), - [aux_sym_syslog_facility_token1] = ACTIONS(1584), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1584), - [aux_sym_keep_alive_token1] = ACTIONS(1584), - [aux_sym_tag_token1] = ACTIONS(1584), - [aux_sym_tunnel_token1] = ACTIONS(1586), - [aux_sym_tunnel_device_token1] = ACTIONS(1584), - [aux_sym_update_host_keys_token1] = ACTIONS(1584), - [aux_sym_use_keychain_token1] = ACTIONS(1584), - [aux_sym_use_roaming_token1] = ACTIONS(1584), - [aux_sym_user_token1] = ACTIONS(1586), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1584), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1584), - [aux_sym_visual_host_key_token1] = ACTIONS(1584), - [aux_sym_xauth_location_token1] = ACTIONS(1584), + [ts_builtin_sym_end] = ACTIONS(815), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(817), + [aux_sym_match_token1] = ACTIONS(815), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(815), + [aux_sym_address_family_token1] = ACTIONS(815), + [aux_sym_batch_mode_token1] = ACTIONS(815), + [aux_sym_bind_address_token1] = ACTIONS(815), + [aux_sym_bind_interface_token1] = ACTIONS(815), + [aux_sym_canonical_domains_token1] = ACTIONS(815), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(815), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(815), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(815), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(815), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(815), + [aux_sym_certificate_file_token1] = ACTIONS(815), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(815), + [aux_sym_channel_timeout_token1] = ACTIONS(815), + [aux_sym_check_host_ip_token1] = ACTIONS(815), + [aux_sym_ciphers_token1] = ACTIONS(815), + [aux_sym_cipher_token1] = ACTIONS(817), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(815), + [aux_sym_compression_token1] = ACTIONS(815), + [aux_sym_connection_attempts_token1] = ACTIONS(815), + [aux_sym_connect_timeout_token1] = ACTIONS(815), + [aux_sym_control_master_token1] = ACTIONS(815), + [aux_sym_control_path_token1] = ACTIONS(815), + [aux_sym_control_persist_token1] = ACTIONS(815), + [aux_sym_dynamic_forward_token1] = ACTIONS(815), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(815), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(815), + [aux_sym_escape_char_token1] = ACTIONS(815), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(815), + [aux_sym_fingerprint_hash_token1] = ACTIONS(815), + [aux_sym_fork_after_authentication_token1] = ACTIONS(815), + [aux_sym_forward_agent_token1] = ACTIONS(815), + [aux_sym_forward_x11_token1] = ACTIONS(817), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(815), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(815), + [aux_sym_gateway_ports_token1] = ACTIONS(815), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(815), + [aux_sym_gssapi_authentication_token1] = ACTIONS(815), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(815), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(815), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(815), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(815), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(815), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(815), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(815), + [aux_sym_hash_known_hosts_token1] = ACTIONS(815), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(815), + [aux_sym_hostbased_authentication_token1] = ACTIONS(815), + [aux_sym_host_key_algorithms_token1] = ACTIONS(815), + [aux_sym_host_key_alias_token1] = ACTIONS(815), + [aux_sym_hostname_token1] = ACTIONS(815), + [aux_sym_identities_only_token1] = ACTIONS(815), + [aux_sym_identity_agent_token1] = ACTIONS(815), + [aux_sym_identity_file_token1] = ACTIONS(815), + [aux_sym_ignore_unknown_token1] = ACTIONS(815), + [aux_sym_include_token1] = ACTIONS(815), + [aux_sym_ip_qos_token1] = ACTIONS(815), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(815), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(815), + [aux_sym_kex_algorithms_token1] = ACTIONS(815), + [aux_sym_known_hosts_command_token1] = ACTIONS(815), + [aux_sym_local_command_token1] = ACTIONS(815), + [aux_sym_local_forward_token1] = ACTIONS(815), + [aux_sym_log_level_token1] = ACTIONS(815), + [aux_sym_log_verbose_token1] = ACTIONS(815), + [aux_sym_macs_token1] = ACTIONS(815), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(815), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(815), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(815), + [aux_sym_password_authentication_token1] = ACTIONS(815), + [aux_sym_permit_local_command_token1] = ACTIONS(815), + [aux_sym_permit_remote_open_token1] = ACTIONS(815), + [aux_sym_pkcs11_provider_token1] = ACTIONS(815), + [aux_sym_port_token1] = ACTIONS(815), + [aux_sym_preferred_authentications_token1] = ACTIONS(815), + [aux_sym_protocol_token1] = ACTIONS(815), + [aux_sym_proxy_command_token1] = ACTIONS(815), + [aux_sym_proxy_jump_token1] = ACTIONS(815), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(815), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(815), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(815), + [aux_sym_pubkey_authentication_token1] = ACTIONS(815), + [aux_sym_rekey_limit_token1] = ACTIONS(815), + [aux_sym_remote_command_token1] = ACTIONS(815), + [aux_sym_remote_forward_token1] = ACTIONS(815), + [aux_sym_request_tty_token1] = ACTIONS(815), + [aux_sym_required_rsa_size_token1] = ACTIONS(815), + [aux_sym_revoked_host_keys_token1] = ACTIONS(815), + [aux_sym_security_key_provider_token1] = ACTIONS(815), + [aux_sym_send_env_token1] = ACTIONS(815), + [aux_sym_server_alive_count_max_token1] = ACTIONS(815), + [aux_sym_server_alive_interval_token1] = ACTIONS(815), + [aux_sym_session_type_token1] = ACTIONS(815), + [aux_sym_set_env_token1] = ACTIONS(815), + [aux_sym_stdin_null_token1] = ACTIONS(815), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(815), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(815), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(815), + [aux_sym_syslog_facility_token1] = ACTIONS(815), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(815), + [aux_sym_keep_alive_token1] = ACTIONS(815), + [aux_sym_tag_token1] = ACTIONS(815), + [aux_sym_tunnel_token1] = ACTIONS(817), + [aux_sym_tunnel_device_token1] = ACTIONS(815), + [aux_sym_update_host_keys_token1] = ACTIONS(815), + [aux_sym_use_keychain_token1] = ACTIONS(815), + [aux_sym_use_roaming_token1] = ACTIONS(815), + [aux_sym_user_token1] = ACTIONS(817), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(815), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(815), + [aux_sym_visual_host_key_token1] = ACTIONS(815), + [aux_sym_xauth_location_token1] = ACTIONS(815), }, [654] = { - [ts_builtin_sym_end] = ACTIONS(1110), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1112), - [aux_sym_match_token1] = ACTIONS(1110), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1110), - [aux_sym_address_family_token1] = ACTIONS(1110), - [aux_sym_batch_mode_token1] = ACTIONS(1110), - [aux_sym_bind_address_token1] = ACTIONS(1110), - [aux_sym_bind_interface_token1] = ACTIONS(1110), - [aux_sym_canonical_domains_token1] = ACTIONS(1110), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1110), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1110), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1110), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1110), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1110), - [aux_sym_certificate_file_token1] = ACTIONS(1110), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1110), - [aux_sym_channel_timeout_token1] = ACTIONS(1110), - [aux_sym_check_host_ip_token1] = ACTIONS(1110), - [aux_sym_ciphers_token1] = ACTIONS(1110), - [aux_sym_cipher_token1] = ACTIONS(1112), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1110), - [aux_sym_compression_token1] = ACTIONS(1110), - [aux_sym_connection_attempts_token1] = ACTIONS(1110), - [aux_sym_connect_timeout_token1] = ACTIONS(1110), - [aux_sym_control_master_token1] = ACTIONS(1110), - [aux_sym_control_path_token1] = ACTIONS(1110), - [aux_sym_control_persist_token1] = ACTIONS(1110), - [aux_sym_dynamic_forward_token1] = ACTIONS(1110), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1110), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1110), - [aux_sym_escape_char_token1] = ACTIONS(1110), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1110), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1110), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1110), - [aux_sym_forward_agent_token1] = ACTIONS(1110), - [aux_sym_forward_x11_token1] = ACTIONS(1112), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1110), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1110), - [aux_sym_gateway_ports_token1] = ACTIONS(1110), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1110), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1110), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1110), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1110), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1110), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1110), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1110), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1110), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1110), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1110), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1110), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1110), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1110), - [aux_sym_host_key_alias_token1] = ACTIONS(1110), - [aux_sym_hostname_token1] = ACTIONS(1110), - [aux_sym_identities_only_token1] = ACTIONS(1110), - [aux_sym_identity_agent_token1] = ACTIONS(1110), - [aux_sym_identity_file_token1] = ACTIONS(1110), - [aux_sym_ignore_unknown_token1] = ACTIONS(1110), - [aux_sym_include_token1] = ACTIONS(1110), - [aux_sym_ip_qos_token1] = ACTIONS(1110), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1110), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1110), - [aux_sym_kex_algorithms_token1] = ACTIONS(1110), - [aux_sym_known_hosts_command_token1] = ACTIONS(1110), - [aux_sym_local_command_token1] = ACTIONS(1110), - [aux_sym_local_forward_token1] = ACTIONS(1110), - [aux_sym_log_level_token1] = ACTIONS(1110), - [aux_sym_log_verbose_token1] = ACTIONS(1110), - [aux_sym_macs_token1] = ACTIONS(1110), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1110), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1110), - [aux_sym_password_authentication_token1] = ACTIONS(1110), - [aux_sym_permit_local_command_token1] = ACTIONS(1110), - [aux_sym_permit_remote_open_token1] = ACTIONS(1110), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1110), - [aux_sym_port_token1] = ACTIONS(1110), - [aux_sym_preferred_authentications_token1] = ACTIONS(1110), - [aux_sym_protocol_token1] = ACTIONS(1110), - [aux_sym_proxy_command_token1] = ACTIONS(1110), - [aux_sym_proxy_jump_token1] = ACTIONS(1110), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1110), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1110), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1110), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1110), - [aux_sym_rekey_limit_token1] = ACTIONS(1110), - [aux_sym_remote_command_token1] = ACTIONS(1110), - [aux_sym_remote_forward_token1] = ACTIONS(1110), - [aux_sym_request_tty_token1] = ACTIONS(1110), - [aux_sym_required_rsa_size_token1] = ACTIONS(1110), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1110), - [aux_sym_security_key_provider_token1] = ACTIONS(1110), - [aux_sym_send_env_token1] = ACTIONS(1110), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1110), - [aux_sym_server_alive_interval_token1] = ACTIONS(1110), - [aux_sym_session_type_token1] = ACTIONS(1110), - [aux_sym_set_env_token1] = ACTIONS(1110), - [aux_sym_stdin_null_token1] = ACTIONS(1110), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1110), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1110), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1110), - [aux_sym_syslog_facility_token1] = ACTIONS(1110), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1110), - [aux_sym_keep_alive_token1] = ACTIONS(1110), - [aux_sym_tag_token1] = ACTIONS(1110), - [aux_sym_tunnel_token1] = ACTIONS(1112), - [aux_sym_tunnel_device_token1] = ACTIONS(1110), - [aux_sym_update_host_keys_token1] = ACTIONS(1110), - [aux_sym_use_keychain_token1] = ACTIONS(1110), - [aux_sym_use_roaming_token1] = ACTIONS(1110), - [aux_sym_user_token1] = ACTIONS(1112), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1110), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1110), - [aux_sym_visual_host_key_token1] = ACTIONS(1110), - [aux_sym_xauth_location_token1] = ACTIONS(1110), + [ts_builtin_sym_end] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1655), + [aux_sym_match_token1] = ACTIONS(1653), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1653), + [aux_sym_address_family_token1] = ACTIONS(1653), + [aux_sym_batch_mode_token1] = ACTIONS(1653), + [aux_sym_bind_address_token1] = ACTIONS(1653), + [aux_sym_bind_interface_token1] = ACTIONS(1653), + [aux_sym_canonical_domains_token1] = ACTIONS(1653), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1653), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1653), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1653), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1653), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1653), + [aux_sym_certificate_file_token1] = ACTIONS(1653), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1653), + [aux_sym_channel_timeout_token1] = ACTIONS(1653), + [aux_sym_check_host_ip_token1] = ACTIONS(1653), + [aux_sym_ciphers_token1] = ACTIONS(1653), + [aux_sym_cipher_token1] = ACTIONS(1655), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1653), + [aux_sym_compression_token1] = ACTIONS(1653), + [aux_sym_connection_attempts_token1] = ACTIONS(1653), + [aux_sym_connect_timeout_token1] = ACTIONS(1653), + [aux_sym_control_master_token1] = ACTIONS(1653), + [aux_sym_control_path_token1] = ACTIONS(1653), + [aux_sym_control_persist_token1] = ACTIONS(1653), + [aux_sym_dynamic_forward_token1] = ACTIONS(1653), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1653), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1653), + [aux_sym_escape_char_token1] = ACTIONS(1653), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1653), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1653), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1653), + [aux_sym_forward_agent_token1] = ACTIONS(1653), + [aux_sym_forward_x11_token1] = ACTIONS(1655), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1653), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1653), + [aux_sym_gateway_ports_token1] = ACTIONS(1653), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1653), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1653), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1653), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1653), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1653), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1653), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1653), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1653), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1653), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1653), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1653), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1653), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1653), + [aux_sym_host_key_alias_token1] = ACTIONS(1653), + [aux_sym_hostname_token1] = ACTIONS(1653), + [aux_sym_identities_only_token1] = ACTIONS(1653), + [aux_sym_identity_agent_token1] = ACTIONS(1653), + [aux_sym_identity_file_token1] = ACTIONS(1653), + [aux_sym_ignore_unknown_token1] = ACTIONS(1653), + [aux_sym_include_token1] = ACTIONS(1653), + [aux_sym_ip_qos_token1] = ACTIONS(1653), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1653), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1653), + [aux_sym_kex_algorithms_token1] = ACTIONS(1653), + [aux_sym_known_hosts_command_token1] = ACTIONS(1653), + [aux_sym_local_command_token1] = ACTIONS(1653), + [aux_sym_local_forward_token1] = ACTIONS(1653), + [aux_sym_log_level_token1] = ACTIONS(1653), + [aux_sym_log_verbose_token1] = ACTIONS(1653), + [aux_sym_macs_token1] = ACTIONS(1653), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1653), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1653), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1653), + [aux_sym_password_authentication_token1] = ACTIONS(1653), + [aux_sym_permit_local_command_token1] = ACTIONS(1653), + [aux_sym_permit_remote_open_token1] = ACTIONS(1653), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1653), + [aux_sym_port_token1] = ACTIONS(1653), + [aux_sym_preferred_authentications_token1] = ACTIONS(1653), + [aux_sym_protocol_token1] = ACTIONS(1653), + [aux_sym_proxy_command_token1] = ACTIONS(1653), + [aux_sym_proxy_jump_token1] = ACTIONS(1653), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1653), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1653), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1653), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1653), + [aux_sym_rekey_limit_token1] = ACTIONS(1653), + [aux_sym_remote_command_token1] = ACTIONS(1653), + [aux_sym_remote_forward_token1] = ACTIONS(1653), + [aux_sym_request_tty_token1] = ACTIONS(1653), + [aux_sym_required_rsa_size_token1] = ACTIONS(1653), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1653), + [aux_sym_security_key_provider_token1] = ACTIONS(1653), + [aux_sym_send_env_token1] = ACTIONS(1653), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1653), + [aux_sym_server_alive_interval_token1] = ACTIONS(1653), + [aux_sym_session_type_token1] = ACTIONS(1653), + [aux_sym_set_env_token1] = ACTIONS(1653), + [aux_sym_stdin_null_token1] = ACTIONS(1653), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1653), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1653), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1653), + [aux_sym_syslog_facility_token1] = ACTIONS(1653), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1653), + [aux_sym_keep_alive_token1] = ACTIONS(1653), + [aux_sym_tag_token1] = ACTIONS(1653), + [aux_sym_tunnel_token1] = ACTIONS(1655), + [aux_sym_tunnel_device_token1] = ACTIONS(1653), + [aux_sym_update_host_keys_token1] = ACTIONS(1653), + [aux_sym_use_keychain_token1] = ACTIONS(1653), + [aux_sym_use_roaming_token1] = ACTIONS(1653), + [aux_sym_user_token1] = ACTIONS(1655), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1653), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1653), + [aux_sym_visual_host_key_token1] = ACTIONS(1653), + [aux_sym_xauth_location_token1] = ACTIONS(1653), }, [655] = { - [ts_builtin_sym_end] = ACTIONS(1590), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1592), - [aux_sym_match_token1] = ACTIONS(1590), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1590), - [aux_sym_address_family_token1] = ACTIONS(1590), - [aux_sym_batch_mode_token1] = ACTIONS(1590), - [aux_sym_bind_address_token1] = ACTIONS(1590), - [aux_sym_bind_interface_token1] = ACTIONS(1590), - [aux_sym_canonical_domains_token1] = ACTIONS(1590), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1590), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1590), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1590), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1590), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1590), - [aux_sym_certificate_file_token1] = ACTIONS(1590), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1590), - [aux_sym_channel_timeout_token1] = ACTIONS(1590), - [aux_sym_check_host_ip_token1] = ACTIONS(1590), - [aux_sym_ciphers_token1] = ACTIONS(1590), - [aux_sym_cipher_token1] = ACTIONS(1592), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1590), - [aux_sym_compression_token1] = ACTIONS(1590), - [aux_sym_connection_attempts_token1] = ACTIONS(1590), - [aux_sym_connect_timeout_token1] = ACTIONS(1590), - [aux_sym_control_master_token1] = ACTIONS(1590), - [aux_sym_control_path_token1] = ACTIONS(1590), - [aux_sym_control_persist_token1] = ACTIONS(1590), - [aux_sym_dynamic_forward_token1] = ACTIONS(1590), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1590), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1590), - [aux_sym_escape_char_token1] = ACTIONS(1590), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1590), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1590), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1590), - [aux_sym_forward_agent_token1] = ACTIONS(1590), - [aux_sym_forward_x11_token1] = ACTIONS(1592), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1590), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1590), - [aux_sym_gateway_ports_token1] = ACTIONS(1590), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1590), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1590), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1590), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1590), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1590), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1590), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1590), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1590), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1590), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1590), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1590), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1590), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1590), - [aux_sym_host_key_alias_token1] = ACTIONS(1590), - [aux_sym_hostname_token1] = ACTIONS(1590), - [aux_sym_identities_only_token1] = ACTIONS(1590), - [aux_sym_identity_agent_token1] = ACTIONS(1590), - [aux_sym_identity_file_token1] = ACTIONS(1590), - [aux_sym_ignore_unknown_token1] = ACTIONS(1590), - [aux_sym_include_token1] = ACTIONS(1590), - [aux_sym_ip_qos_token1] = ACTIONS(1590), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1590), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1590), - [aux_sym_kex_algorithms_token1] = ACTIONS(1590), - [aux_sym_known_hosts_command_token1] = ACTIONS(1590), - [aux_sym_local_command_token1] = ACTIONS(1590), - [aux_sym_local_forward_token1] = ACTIONS(1590), - [aux_sym_log_level_token1] = ACTIONS(1590), - [aux_sym_log_verbose_token1] = ACTIONS(1590), - [aux_sym_macs_token1] = ACTIONS(1590), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1590), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1590), - [aux_sym_password_authentication_token1] = ACTIONS(1590), - [aux_sym_permit_local_command_token1] = ACTIONS(1590), - [aux_sym_permit_remote_open_token1] = ACTIONS(1590), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1590), - [aux_sym_port_token1] = ACTIONS(1590), - [aux_sym_preferred_authentications_token1] = ACTIONS(1590), - [aux_sym_protocol_token1] = ACTIONS(1590), - [aux_sym_proxy_command_token1] = ACTIONS(1590), - [aux_sym_proxy_jump_token1] = ACTIONS(1590), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1590), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1590), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1590), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1590), - [aux_sym_rekey_limit_token1] = ACTIONS(1590), - [aux_sym_remote_command_token1] = ACTIONS(1590), - [aux_sym_remote_forward_token1] = ACTIONS(1590), - [aux_sym_request_tty_token1] = ACTIONS(1590), - [aux_sym_required_rsa_size_token1] = ACTIONS(1590), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1590), - [aux_sym_security_key_provider_token1] = ACTIONS(1590), - [aux_sym_send_env_token1] = ACTIONS(1590), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1590), - [aux_sym_server_alive_interval_token1] = ACTIONS(1590), - [aux_sym_session_type_token1] = ACTIONS(1590), - [aux_sym_set_env_token1] = ACTIONS(1590), - [aux_sym_stdin_null_token1] = ACTIONS(1590), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1590), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1590), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1590), - [aux_sym_syslog_facility_token1] = ACTIONS(1590), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1590), - [aux_sym_keep_alive_token1] = ACTIONS(1590), - [aux_sym_tag_token1] = ACTIONS(1590), - [aux_sym_tunnel_token1] = ACTIONS(1592), - [aux_sym_tunnel_device_token1] = ACTIONS(1590), - [aux_sym_update_host_keys_token1] = ACTIONS(1590), - [aux_sym_use_keychain_token1] = ACTIONS(1590), - [aux_sym_use_roaming_token1] = ACTIONS(1590), - [aux_sym_user_token1] = ACTIONS(1592), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1590), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1590), - [aux_sym_visual_host_key_token1] = ACTIONS(1590), - [aux_sym_xauth_location_token1] = ACTIONS(1590), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3545), + [aux_sym_match_token1] = ACTIONS(3543), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3543), + [aux_sym_address_family_token1] = ACTIONS(3543), + [aux_sym_batch_mode_token1] = ACTIONS(3543), + [aux_sym_bind_address_token1] = ACTIONS(3543), + [aux_sym_bind_interface_token1] = ACTIONS(3543), + [aux_sym_canonical_domains_token1] = ACTIONS(3543), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3543), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3543), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3543), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3543), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3543), + [aux_sym_certificate_file_token1] = ACTIONS(3543), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3543), + [aux_sym_channel_timeout_token1] = ACTIONS(3543), + [aux_sym_check_host_ip_token1] = ACTIONS(3543), + [aux_sym_ciphers_token1] = ACTIONS(3543), + [aux_sym_cipher_token1] = ACTIONS(3545), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3543), + [aux_sym_compression_token1] = ACTIONS(3543), + [aux_sym_connection_attempts_token1] = ACTIONS(3543), + [aux_sym_connect_timeout_token1] = ACTIONS(3543), + [aux_sym_control_master_token1] = ACTIONS(3543), + [aux_sym_control_path_token1] = ACTIONS(3543), + [aux_sym_control_persist_token1] = ACTIONS(3543), + [aux_sym_dynamic_forward_token1] = ACTIONS(3543), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3543), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3543), + [aux_sym_escape_char_token1] = ACTIONS(3543), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3543), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3543), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3543), + [aux_sym_forward_agent_token1] = ACTIONS(3543), + [aux_sym_forward_x11_token1] = ACTIONS(3545), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3543), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3543), + [aux_sym_gateway_ports_token1] = ACTIONS(3543), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3543), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3543), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3543), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3543), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3543), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3543), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3543), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3543), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3543), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3543), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3543), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3543), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3543), + [aux_sym_host_key_alias_token1] = ACTIONS(3543), + [aux_sym_hostname_token1] = ACTIONS(3543), + [aux_sym_identities_only_token1] = ACTIONS(3543), + [aux_sym_identity_agent_token1] = ACTIONS(3543), + [aux_sym_identity_file_token1] = ACTIONS(3543), + [aux_sym_ignore_unknown_token1] = ACTIONS(3543), + [aux_sym_include_token1] = ACTIONS(3543), + [aux_sym_ip_qos_token1] = ACTIONS(3543), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3543), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3543), + [aux_sym_kex_algorithms_token1] = ACTIONS(3543), + [aux_sym_known_hosts_command_token1] = ACTIONS(3543), + [aux_sym_local_command_token1] = ACTIONS(3543), + [aux_sym_local_forward_token1] = ACTIONS(3543), + [aux_sym_log_level_token1] = ACTIONS(3543), + [aux_sym_log_verbose_token1] = ACTIONS(3543), + [aux_sym_macs_token1] = ACTIONS(3543), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3543), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3543), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3543), + [aux_sym_password_authentication_token1] = ACTIONS(3543), + [aux_sym_permit_local_command_token1] = ACTIONS(3543), + [aux_sym_permit_remote_open_token1] = ACTIONS(3543), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3543), + [aux_sym_port_token1] = ACTIONS(3543), + [aux_sym_preferred_authentications_token1] = ACTIONS(3543), + [aux_sym_protocol_token1] = ACTIONS(3543), + [aux_sym_proxy_command_token1] = ACTIONS(3543), + [aux_sym_proxy_jump_token1] = ACTIONS(3543), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3543), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3543), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3543), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3543), + [aux_sym_rekey_limit_token1] = ACTIONS(3543), + [aux_sym_remote_command_token1] = ACTIONS(3543), + [aux_sym_remote_forward_token1] = ACTIONS(3543), + [aux_sym_request_tty_token1] = ACTIONS(3543), + [aux_sym_required_rsa_size_token1] = ACTIONS(3543), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3543), + [aux_sym_security_key_provider_token1] = ACTIONS(3543), + [aux_sym_send_env_token1] = ACTIONS(3543), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3543), + [aux_sym_server_alive_interval_token1] = ACTIONS(3543), + [aux_sym_session_type_token1] = ACTIONS(3543), + [aux_sym_set_env_token1] = ACTIONS(3543), + [aux_sym_stdin_null_token1] = ACTIONS(3543), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3543), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3543), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3543), + [aux_sym_syslog_facility_token1] = ACTIONS(3543), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3543), + [aux_sym_keep_alive_token1] = ACTIONS(3543), + [aux_sym_tag_token1] = ACTIONS(3543), + [aux_sym_tunnel_token1] = ACTIONS(3545), + [aux_sym_tunnel_device_token1] = ACTIONS(3543), + [aux_sym_update_host_keys_token1] = ACTIONS(3543), + [aux_sym_use_keychain_token1] = ACTIONS(3543), + [aux_sym_use_roaming_token1] = ACTIONS(3543), + [aux_sym_user_token1] = ACTIONS(3545), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3543), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3543), + [aux_sym_visual_host_key_token1] = ACTIONS(3543), + [aux_sym_xauth_location_token1] = ACTIONS(3543), }, [656] = { - [ts_builtin_sym_end] = ACTIONS(1104), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1106), - [aux_sym_match_token1] = ACTIONS(1104), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1104), - [aux_sym_address_family_token1] = ACTIONS(1104), - [aux_sym_batch_mode_token1] = ACTIONS(1104), - [aux_sym_bind_address_token1] = ACTIONS(1104), - [aux_sym_bind_interface_token1] = ACTIONS(1104), - [aux_sym_canonical_domains_token1] = ACTIONS(1104), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1104), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1104), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1104), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1104), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1104), - [aux_sym_certificate_file_token1] = ACTIONS(1104), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1104), - [aux_sym_channel_timeout_token1] = ACTIONS(1104), - [aux_sym_check_host_ip_token1] = ACTIONS(1104), - [aux_sym_ciphers_token1] = ACTIONS(1104), - [aux_sym_cipher_token1] = ACTIONS(1106), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1104), - [aux_sym_compression_token1] = ACTIONS(1104), - [aux_sym_connection_attempts_token1] = ACTIONS(1104), - [aux_sym_connect_timeout_token1] = ACTIONS(1104), - [aux_sym_control_master_token1] = ACTIONS(1104), - [aux_sym_control_path_token1] = ACTIONS(1104), - [aux_sym_control_persist_token1] = ACTIONS(1104), - [aux_sym_dynamic_forward_token1] = ACTIONS(1104), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1104), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1104), - [aux_sym_escape_char_token1] = ACTIONS(1104), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1104), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1104), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1104), - [aux_sym_forward_agent_token1] = ACTIONS(1104), - [aux_sym_forward_x11_token1] = ACTIONS(1106), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1104), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1104), - [aux_sym_gateway_ports_token1] = ACTIONS(1104), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1104), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1104), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1104), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1104), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1104), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1104), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1104), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1104), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1104), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1104), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1104), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1104), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1104), - [aux_sym_host_key_alias_token1] = ACTIONS(1104), - [aux_sym_hostname_token1] = ACTIONS(1104), - [aux_sym_identities_only_token1] = ACTIONS(1104), - [aux_sym_identity_agent_token1] = ACTIONS(1104), - [aux_sym_identity_file_token1] = ACTIONS(1104), - [aux_sym_ignore_unknown_token1] = ACTIONS(1104), - [aux_sym_include_token1] = ACTIONS(1104), - [aux_sym_ip_qos_token1] = ACTIONS(1104), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1104), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1104), - [aux_sym_kex_algorithms_token1] = ACTIONS(1104), - [aux_sym_known_hosts_command_token1] = ACTIONS(1104), - [aux_sym_local_command_token1] = ACTIONS(1104), - [aux_sym_local_forward_token1] = ACTIONS(1104), - [aux_sym_log_level_token1] = ACTIONS(1104), - [aux_sym_log_verbose_token1] = ACTIONS(1104), - [aux_sym_macs_token1] = ACTIONS(1104), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1104), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1104), - [aux_sym_password_authentication_token1] = ACTIONS(1104), - [aux_sym_permit_local_command_token1] = ACTIONS(1104), - [aux_sym_permit_remote_open_token1] = ACTIONS(1104), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1104), - [aux_sym_port_token1] = ACTIONS(1104), - [aux_sym_preferred_authentications_token1] = ACTIONS(1104), - [aux_sym_protocol_token1] = ACTIONS(1104), - [aux_sym_proxy_command_token1] = ACTIONS(1104), - [aux_sym_proxy_jump_token1] = ACTIONS(1104), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1104), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1104), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1104), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1104), - [aux_sym_rekey_limit_token1] = ACTIONS(1104), - [aux_sym_remote_command_token1] = ACTIONS(1104), - [aux_sym_remote_forward_token1] = ACTIONS(1104), - [aux_sym_request_tty_token1] = ACTIONS(1104), - [aux_sym_required_rsa_size_token1] = ACTIONS(1104), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1104), - [aux_sym_security_key_provider_token1] = ACTIONS(1104), - [aux_sym_send_env_token1] = ACTIONS(1104), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1104), - [aux_sym_server_alive_interval_token1] = ACTIONS(1104), - [aux_sym_session_type_token1] = ACTIONS(1104), - [aux_sym_set_env_token1] = ACTIONS(1104), - [aux_sym_stdin_null_token1] = ACTIONS(1104), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1104), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1104), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1104), - [aux_sym_syslog_facility_token1] = ACTIONS(1104), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1104), - [aux_sym_keep_alive_token1] = ACTIONS(1104), - [aux_sym_tag_token1] = ACTIONS(1104), - [aux_sym_tunnel_token1] = ACTIONS(1106), - [aux_sym_tunnel_device_token1] = ACTIONS(1104), - [aux_sym_update_host_keys_token1] = ACTIONS(1104), - [aux_sym_use_keychain_token1] = ACTIONS(1104), - [aux_sym_use_roaming_token1] = ACTIONS(1104), - [aux_sym_user_token1] = ACTIONS(1106), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1104), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1104), - [aux_sym_visual_host_key_token1] = ACTIONS(1104), - [aux_sym_xauth_location_token1] = ACTIONS(1104), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3549), + [aux_sym_match_token1] = ACTIONS(3547), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3547), + [aux_sym_address_family_token1] = ACTIONS(3547), + [aux_sym_batch_mode_token1] = ACTIONS(3547), + [aux_sym_bind_address_token1] = ACTIONS(3547), + [aux_sym_bind_interface_token1] = ACTIONS(3547), + [aux_sym_canonical_domains_token1] = ACTIONS(3547), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3547), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3547), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3547), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3547), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3547), + [aux_sym_certificate_file_token1] = ACTIONS(3547), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3547), + [aux_sym_channel_timeout_token1] = ACTIONS(3547), + [aux_sym_check_host_ip_token1] = ACTIONS(3547), + [aux_sym_ciphers_token1] = ACTIONS(3547), + [aux_sym_cipher_token1] = ACTIONS(3549), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3547), + [aux_sym_compression_token1] = ACTIONS(3547), + [aux_sym_connection_attempts_token1] = ACTIONS(3547), + [aux_sym_connect_timeout_token1] = ACTIONS(3547), + [aux_sym_control_master_token1] = ACTIONS(3547), + [aux_sym_control_path_token1] = ACTIONS(3547), + [aux_sym_control_persist_token1] = ACTIONS(3547), + [aux_sym_dynamic_forward_token1] = ACTIONS(3547), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3547), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3547), + [aux_sym_escape_char_token1] = ACTIONS(3547), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3547), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3547), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3547), + [aux_sym_forward_agent_token1] = ACTIONS(3547), + [aux_sym_forward_x11_token1] = ACTIONS(3549), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3547), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3547), + [aux_sym_gateway_ports_token1] = ACTIONS(3547), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3547), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3547), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3547), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3547), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3547), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3547), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3547), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3547), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3547), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3547), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3547), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3547), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3547), + [aux_sym_host_key_alias_token1] = ACTIONS(3547), + [aux_sym_hostname_token1] = ACTIONS(3547), + [aux_sym_identities_only_token1] = ACTIONS(3547), + [aux_sym_identity_agent_token1] = ACTIONS(3547), + [aux_sym_identity_file_token1] = ACTIONS(3547), + [aux_sym_ignore_unknown_token1] = ACTIONS(3547), + [aux_sym_include_token1] = ACTIONS(3547), + [aux_sym_ip_qos_token1] = ACTIONS(3547), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3547), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3547), + [aux_sym_kex_algorithms_token1] = ACTIONS(3547), + [aux_sym_known_hosts_command_token1] = ACTIONS(3547), + [aux_sym_local_command_token1] = ACTIONS(3547), + [aux_sym_local_forward_token1] = ACTIONS(3547), + [aux_sym_log_level_token1] = ACTIONS(3547), + [aux_sym_log_verbose_token1] = ACTIONS(3547), + [aux_sym_macs_token1] = ACTIONS(3547), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3547), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3547), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3547), + [aux_sym_password_authentication_token1] = ACTIONS(3547), + [aux_sym_permit_local_command_token1] = ACTIONS(3547), + [aux_sym_permit_remote_open_token1] = ACTIONS(3547), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3547), + [aux_sym_port_token1] = ACTIONS(3547), + [aux_sym_preferred_authentications_token1] = ACTIONS(3547), + [aux_sym_protocol_token1] = ACTIONS(3547), + [aux_sym_proxy_command_token1] = ACTIONS(3547), + [aux_sym_proxy_jump_token1] = ACTIONS(3547), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3547), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3547), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3547), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3547), + [aux_sym_rekey_limit_token1] = ACTIONS(3547), + [aux_sym_remote_command_token1] = ACTIONS(3547), + [aux_sym_remote_forward_token1] = ACTIONS(3547), + [aux_sym_request_tty_token1] = ACTIONS(3547), + [aux_sym_required_rsa_size_token1] = ACTIONS(3547), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3547), + [aux_sym_security_key_provider_token1] = ACTIONS(3547), + [aux_sym_send_env_token1] = ACTIONS(3547), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3547), + [aux_sym_server_alive_interval_token1] = ACTIONS(3547), + [aux_sym_session_type_token1] = ACTIONS(3547), + [aux_sym_set_env_token1] = ACTIONS(3547), + [aux_sym_stdin_null_token1] = ACTIONS(3547), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3547), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3547), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3547), + [aux_sym_syslog_facility_token1] = ACTIONS(3547), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3547), + [aux_sym_keep_alive_token1] = ACTIONS(3547), + [aux_sym_tag_token1] = ACTIONS(3547), + [aux_sym_tunnel_token1] = ACTIONS(3549), + [aux_sym_tunnel_device_token1] = ACTIONS(3547), + [aux_sym_update_host_keys_token1] = ACTIONS(3547), + [aux_sym_use_keychain_token1] = ACTIONS(3547), + [aux_sym_use_roaming_token1] = ACTIONS(3547), + [aux_sym_user_token1] = ACTIONS(3549), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3547), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3547), + [aux_sym_visual_host_key_token1] = ACTIONS(3547), + [aux_sym_xauth_location_token1] = ACTIONS(3547), }, [657] = { - [ts_builtin_sym_end] = ACTIONS(1596), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1598), - [aux_sym_match_token1] = ACTIONS(1596), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1596), - [aux_sym_address_family_token1] = ACTIONS(1596), - [aux_sym_batch_mode_token1] = ACTIONS(1596), - [aux_sym_bind_address_token1] = ACTIONS(1596), - [aux_sym_bind_interface_token1] = ACTIONS(1596), - [aux_sym_canonical_domains_token1] = ACTIONS(1596), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1596), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1596), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1596), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1596), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1596), - [aux_sym_certificate_file_token1] = ACTIONS(1596), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1596), - [aux_sym_channel_timeout_token1] = ACTIONS(1596), - [aux_sym_check_host_ip_token1] = ACTIONS(1596), - [aux_sym_ciphers_token1] = ACTIONS(1596), - [aux_sym_cipher_token1] = ACTIONS(1598), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1596), - [aux_sym_compression_token1] = ACTIONS(1596), - [aux_sym_connection_attempts_token1] = ACTIONS(1596), - [aux_sym_connect_timeout_token1] = ACTIONS(1596), - [aux_sym_control_master_token1] = ACTIONS(1596), - [aux_sym_control_path_token1] = ACTIONS(1596), - [aux_sym_control_persist_token1] = ACTIONS(1596), - [aux_sym_dynamic_forward_token1] = ACTIONS(1596), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1596), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1596), - [aux_sym_escape_char_token1] = ACTIONS(1596), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1596), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1596), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1596), - [aux_sym_forward_agent_token1] = ACTIONS(1596), - [aux_sym_forward_x11_token1] = ACTIONS(1598), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1596), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1596), - [aux_sym_gateway_ports_token1] = ACTIONS(1596), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1596), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1596), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1596), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1596), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1596), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1596), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1596), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1596), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1596), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1596), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1596), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1596), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1596), - [aux_sym_host_key_alias_token1] = ACTIONS(1596), - [aux_sym_hostname_token1] = ACTIONS(1596), - [aux_sym_identities_only_token1] = ACTIONS(1596), - [aux_sym_identity_agent_token1] = ACTIONS(1596), - [aux_sym_identity_file_token1] = ACTIONS(1596), - [aux_sym_ignore_unknown_token1] = ACTIONS(1596), - [aux_sym_include_token1] = ACTIONS(1596), - [aux_sym_ip_qos_token1] = ACTIONS(1596), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1596), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1596), - [aux_sym_kex_algorithms_token1] = ACTIONS(1596), - [aux_sym_known_hosts_command_token1] = ACTIONS(1596), - [aux_sym_local_command_token1] = ACTIONS(1596), - [aux_sym_local_forward_token1] = ACTIONS(1596), - [aux_sym_log_level_token1] = ACTIONS(1596), - [aux_sym_log_verbose_token1] = ACTIONS(1596), - [aux_sym_macs_token1] = ACTIONS(1596), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1596), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1596), - [aux_sym_password_authentication_token1] = ACTIONS(1596), - [aux_sym_permit_local_command_token1] = ACTIONS(1596), - [aux_sym_permit_remote_open_token1] = ACTIONS(1596), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1596), - [aux_sym_port_token1] = ACTIONS(1596), - [aux_sym_preferred_authentications_token1] = ACTIONS(1596), - [aux_sym_protocol_token1] = ACTIONS(1596), - [aux_sym_proxy_command_token1] = ACTIONS(1596), - [aux_sym_proxy_jump_token1] = ACTIONS(1596), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1596), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1596), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1596), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1596), - [aux_sym_rekey_limit_token1] = ACTIONS(1596), - [aux_sym_remote_command_token1] = ACTIONS(1596), - [aux_sym_remote_forward_token1] = ACTIONS(1596), - [aux_sym_request_tty_token1] = ACTIONS(1596), - [aux_sym_required_rsa_size_token1] = ACTIONS(1596), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1596), - [aux_sym_security_key_provider_token1] = ACTIONS(1596), - [aux_sym_send_env_token1] = ACTIONS(1596), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1596), - [aux_sym_server_alive_interval_token1] = ACTIONS(1596), - [aux_sym_session_type_token1] = ACTIONS(1596), - [aux_sym_set_env_token1] = ACTIONS(1596), - [aux_sym_stdin_null_token1] = ACTIONS(1596), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1596), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1596), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1596), - [aux_sym_syslog_facility_token1] = ACTIONS(1596), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1596), - [aux_sym_keep_alive_token1] = ACTIONS(1596), - [aux_sym_tag_token1] = ACTIONS(1596), - [aux_sym_tunnel_token1] = ACTIONS(1598), - [aux_sym_tunnel_device_token1] = ACTIONS(1596), - [aux_sym_update_host_keys_token1] = ACTIONS(1596), - [aux_sym_use_keychain_token1] = ACTIONS(1596), - [aux_sym_use_roaming_token1] = ACTIONS(1596), - [aux_sym_user_token1] = ACTIONS(1598), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1596), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1596), - [aux_sym_visual_host_key_token1] = ACTIONS(1596), - [aux_sym_xauth_location_token1] = ACTIONS(1596), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3553), + [aux_sym_match_token1] = ACTIONS(3551), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3551), + [aux_sym_address_family_token1] = ACTIONS(3551), + [aux_sym_batch_mode_token1] = ACTIONS(3551), + [aux_sym_bind_address_token1] = ACTIONS(3551), + [aux_sym_bind_interface_token1] = ACTIONS(3551), + [aux_sym_canonical_domains_token1] = ACTIONS(3551), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3551), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3551), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3551), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3551), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3551), + [aux_sym_certificate_file_token1] = ACTIONS(3551), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3551), + [aux_sym_channel_timeout_token1] = ACTIONS(3551), + [aux_sym_check_host_ip_token1] = ACTIONS(3551), + [aux_sym_ciphers_token1] = ACTIONS(3551), + [aux_sym_cipher_token1] = ACTIONS(3553), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3551), + [aux_sym_compression_token1] = ACTIONS(3551), + [aux_sym_connection_attempts_token1] = ACTIONS(3551), + [aux_sym_connect_timeout_token1] = ACTIONS(3551), + [aux_sym_control_master_token1] = ACTIONS(3551), + [aux_sym_control_path_token1] = ACTIONS(3551), + [aux_sym_control_persist_token1] = ACTIONS(3551), + [aux_sym_dynamic_forward_token1] = ACTIONS(3551), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3551), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3551), + [aux_sym_escape_char_token1] = ACTIONS(3551), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3551), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3551), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3551), + [aux_sym_forward_agent_token1] = ACTIONS(3551), + [aux_sym_forward_x11_token1] = ACTIONS(3553), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3551), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3551), + [aux_sym_gateway_ports_token1] = ACTIONS(3551), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3551), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3551), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3551), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3551), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3551), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3551), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3551), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3551), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3551), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3551), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3551), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3551), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3551), + [aux_sym_host_key_alias_token1] = ACTIONS(3551), + [aux_sym_hostname_token1] = ACTIONS(3551), + [aux_sym_identities_only_token1] = ACTIONS(3551), + [aux_sym_identity_agent_token1] = ACTIONS(3551), + [aux_sym_identity_file_token1] = ACTIONS(3551), + [aux_sym_ignore_unknown_token1] = ACTIONS(3551), + [aux_sym_include_token1] = ACTIONS(3551), + [aux_sym_ip_qos_token1] = ACTIONS(3551), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3551), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3551), + [aux_sym_kex_algorithms_token1] = ACTIONS(3551), + [aux_sym_known_hosts_command_token1] = ACTIONS(3551), + [aux_sym_local_command_token1] = ACTIONS(3551), + [aux_sym_local_forward_token1] = ACTIONS(3551), + [aux_sym_log_level_token1] = ACTIONS(3551), + [aux_sym_log_verbose_token1] = ACTIONS(3551), + [aux_sym_macs_token1] = ACTIONS(3551), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3551), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3551), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3551), + [aux_sym_password_authentication_token1] = ACTIONS(3551), + [aux_sym_permit_local_command_token1] = ACTIONS(3551), + [aux_sym_permit_remote_open_token1] = ACTIONS(3551), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3551), + [aux_sym_port_token1] = ACTIONS(3551), + [aux_sym_preferred_authentications_token1] = ACTIONS(3551), + [aux_sym_protocol_token1] = ACTIONS(3551), + [aux_sym_proxy_command_token1] = ACTIONS(3551), + [aux_sym_proxy_jump_token1] = ACTIONS(3551), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3551), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3551), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3551), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3551), + [aux_sym_rekey_limit_token1] = ACTIONS(3551), + [aux_sym_remote_command_token1] = ACTIONS(3551), + [aux_sym_remote_forward_token1] = ACTIONS(3551), + [aux_sym_request_tty_token1] = ACTIONS(3551), + [aux_sym_required_rsa_size_token1] = ACTIONS(3551), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3551), + [aux_sym_security_key_provider_token1] = ACTIONS(3551), + [aux_sym_send_env_token1] = ACTIONS(3551), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3551), + [aux_sym_server_alive_interval_token1] = ACTIONS(3551), + [aux_sym_session_type_token1] = ACTIONS(3551), + [aux_sym_set_env_token1] = ACTIONS(3551), + [aux_sym_stdin_null_token1] = ACTIONS(3551), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3551), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3551), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3551), + [aux_sym_syslog_facility_token1] = ACTIONS(3551), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3551), + [aux_sym_keep_alive_token1] = ACTIONS(3551), + [aux_sym_tag_token1] = ACTIONS(3551), + [aux_sym_tunnel_token1] = ACTIONS(3553), + [aux_sym_tunnel_device_token1] = ACTIONS(3551), + [aux_sym_update_host_keys_token1] = ACTIONS(3551), + [aux_sym_use_keychain_token1] = ACTIONS(3551), + [aux_sym_use_roaming_token1] = ACTIONS(3551), + [aux_sym_user_token1] = ACTIONS(3553), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3551), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3551), + [aux_sym_visual_host_key_token1] = ACTIONS(3551), + [aux_sym_xauth_location_token1] = ACTIONS(3551), }, [658] = { - [ts_builtin_sym_end] = ACTIONS(1098), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1100), - [aux_sym_match_token1] = ACTIONS(1098), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1098), - [aux_sym_address_family_token1] = ACTIONS(1098), - [aux_sym_batch_mode_token1] = ACTIONS(1098), - [aux_sym_bind_address_token1] = ACTIONS(1098), - [aux_sym_bind_interface_token1] = ACTIONS(1098), - [aux_sym_canonical_domains_token1] = ACTIONS(1098), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1098), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1098), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1098), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1098), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1098), - [aux_sym_certificate_file_token1] = ACTIONS(1098), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1098), - [aux_sym_channel_timeout_token1] = ACTIONS(1098), - [aux_sym_check_host_ip_token1] = ACTIONS(1098), - [aux_sym_ciphers_token1] = ACTIONS(1098), - [aux_sym_cipher_token1] = ACTIONS(1100), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1098), - [aux_sym_compression_token1] = ACTIONS(1098), - [aux_sym_connection_attempts_token1] = ACTIONS(1098), - [aux_sym_connect_timeout_token1] = ACTIONS(1098), - [aux_sym_control_master_token1] = ACTIONS(1098), - [aux_sym_control_path_token1] = ACTIONS(1098), - [aux_sym_control_persist_token1] = ACTIONS(1098), - [aux_sym_dynamic_forward_token1] = ACTIONS(1098), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1098), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1098), - [aux_sym_escape_char_token1] = ACTIONS(1098), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1098), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1098), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1098), - [aux_sym_forward_agent_token1] = ACTIONS(1098), - [aux_sym_forward_x11_token1] = ACTIONS(1100), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1098), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1098), - [aux_sym_gateway_ports_token1] = ACTIONS(1098), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1098), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1098), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1098), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1098), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1098), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1098), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1098), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1098), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1098), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1098), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1098), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1098), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1098), - [aux_sym_host_key_alias_token1] = ACTIONS(1098), - [aux_sym_hostname_token1] = ACTIONS(1098), - [aux_sym_identities_only_token1] = ACTIONS(1098), - [aux_sym_identity_agent_token1] = ACTIONS(1098), - [aux_sym_identity_file_token1] = ACTIONS(1098), - [aux_sym_ignore_unknown_token1] = ACTIONS(1098), - [aux_sym_include_token1] = ACTIONS(1098), - [aux_sym_ip_qos_token1] = ACTIONS(1098), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1098), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1098), - [aux_sym_kex_algorithms_token1] = ACTIONS(1098), - [aux_sym_known_hosts_command_token1] = ACTIONS(1098), - [aux_sym_local_command_token1] = ACTIONS(1098), - [aux_sym_local_forward_token1] = ACTIONS(1098), - [aux_sym_log_level_token1] = ACTIONS(1098), - [aux_sym_log_verbose_token1] = ACTIONS(1098), - [aux_sym_macs_token1] = ACTIONS(1098), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1098), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1098), - [aux_sym_password_authentication_token1] = ACTIONS(1098), - [aux_sym_permit_local_command_token1] = ACTIONS(1098), - [aux_sym_permit_remote_open_token1] = ACTIONS(1098), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1098), - [aux_sym_port_token1] = ACTIONS(1098), - [aux_sym_preferred_authentications_token1] = ACTIONS(1098), - [aux_sym_protocol_token1] = ACTIONS(1098), - [aux_sym_proxy_command_token1] = ACTIONS(1098), - [aux_sym_proxy_jump_token1] = ACTIONS(1098), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1098), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1098), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1098), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1098), - [aux_sym_rekey_limit_token1] = ACTIONS(1098), - [aux_sym_remote_command_token1] = ACTIONS(1098), - [aux_sym_remote_forward_token1] = ACTIONS(1098), - [aux_sym_request_tty_token1] = ACTIONS(1098), - [aux_sym_required_rsa_size_token1] = ACTIONS(1098), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1098), - [aux_sym_security_key_provider_token1] = ACTIONS(1098), - [aux_sym_send_env_token1] = ACTIONS(1098), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1098), - [aux_sym_server_alive_interval_token1] = ACTIONS(1098), - [aux_sym_session_type_token1] = ACTIONS(1098), - [aux_sym_set_env_token1] = ACTIONS(1098), - [aux_sym_stdin_null_token1] = ACTIONS(1098), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1098), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1098), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1098), - [aux_sym_syslog_facility_token1] = ACTIONS(1098), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1098), - [aux_sym_keep_alive_token1] = ACTIONS(1098), - [aux_sym_tag_token1] = ACTIONS(1098), - [aux_sym_tunnel_token1] = ACTIONS(1100), - [aux_sym_tunnel_device_token1] = ACTIONS(1098), - [aux_sym_update_host_keys_token1] = ACTIONS(1098), - [aux_sym_use_keychain_token1] = ACTIONS(1098), - [aux_sym_use_roaming_token1] = ACTIONS(1098), - [aux_sym_user_token1] = ACTIONS(1100), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1098), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1098), - [aux_sym_visual_host_key_token1] = ACTIONS(1098), - [aux_sym_xauth_location_token1] = ACTIONS(1098), + [ts_builtin_sym_end] = ACTIONS(3555), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3557), + [aux_sym_match_token1] = ACTIONS(3555), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3555), + [aux_sym_address_family_token1] = ACTIONS(3555), + [aux_sym_batch_mode_token1] = ACTIONS(3555), + [aux_sym_bind_address_token1] = ACTIONS(3555), + [aux_sym_bind_interface_token1] = ACTIONS(3555), + [aux_sym_canonical_domains_token1] = ACTIONS(3555), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3555), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3555), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3555), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3555), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3555), + [aux_sym_certificate_file_token1] = ACTIONS(3555), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3555), + [aux_sym_channel_timeout_token1] = ACTIONS(3555), + [aux_sym_check_host_ip_token1] = ACTIONS(3555), + [aux_sym_ciphers_token1] = ACTIONS(3555), + [aux_sym_cipher_token1] = ACTIONS(3557), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3555), + [aux_sym_compression_token1] = ACTIONS(3555), + [aux_sym_connection_attempts_token1] = ACTIONS(3555), + [aux_sym_connect_timeout_token1] = ACTIONS(3555), + [aux_sym_control_master_token1] = ACTIONS(3555), + [aux_sym_control_path_token1] = ACTIONS(3555), + [aux_sym_control_persist_token1] = ACTIONS(3555), + [aux_sym_dynamic_forward_token1] = ACTIONS(3555), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3555), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3555), + [aux_sym_escape_char_token1] = ACTIONS(3555), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3555), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3555), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3555), + [aux_sym_forward_agent_token1] = ACTIONS(3555), + [aux_sym_forward_x11_token1] = ACTIONS(3557), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3555), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3555), + [aux_sym_gateway_ports_token1] = ACTIONS(3555), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3555), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3555), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3555), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3555), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3555), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3555), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3555), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3555), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3555), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3555), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3555), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3555), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3555), + [aux_sym_host_key_alias_token1] = ACTIONS(3555), + [aux_sym_hostname_token1] = ACTIONS(3555), + [aux_sym_identities_only_token1] = ACTIONS(3555), + [aux_sym_identity_agent_token1] = ACTIONS(3555), + [aux_sym_identity_file_token1] = ACTIONS(3555), + [aux_sym_ignore_unknown_token1] = ACTIONS(3555), + [aux_sym_include_token1] = ACTIONS(3555), + [aux_sym_ip_qos_token1] = ACTIONS(3555), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3555), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3555), + [aux_sym_kex_algorithms_token1] = ACTIONS(3555), + [aux_sym_known_hosts_command_token1] = ACTIONS(3555), + [aux_sym_local_command_token1] = ACTIONS(3555), + [aux_sym_local_forward_token1] = ACTIONS(3555), + [aux_sym_log_level_token1] = ACTIONS(3555), + [aux_sym_log_verbose_token1] = ACTIONS(3555), + [aux_sym_macs_token1] = ACTIONS(3555), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3555), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3555), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3555), + [aux_sym_password_authentication_token1] = ACTIONS(3555), + [aux_sym_permit_local_command_token1] = ACTIONS(3555), + [aux_sym_permit_remote_open_token1] = ACTIONS(3555), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3555), + [aux_sym_port_token1] = ACTIONS(3555), + [aux_sym_preferred_authentications_token1] = ACTIONS(3555), + [aux_sym_protocol_token1] = ACTIONS(3555), + [aux_sym_proxy_command_token1] = ACTIONS(3555), + [aux_sym_proxy_jump_token1] = ACTIONS(3555), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3555), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3555), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3555), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3555), + [aux_sym_rekey_limit_token1] = ACTIONS(3555), + [aux_sym_remote_command_token1] = ACTIONS(3555), + [aux_sym_remote_forward_token1] = ACTIONS(3555), + [aux_sym_request_tty_token1] = ACTIONS(3555), + [aux_sym_required_rsa_size_token1] = ACTIONS(3555), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3555), + [aux_sym_security_key_provider_token1] = ACTIONS(3555), + [aux_sym_send_env_token1] = ACTIONS(3555), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3555), + [aux_sym_server_alive_interval_token1] = ACTIONS(3555), + [aux_sym_session_type_token1] = ACTIONS(3555), + [aux_sym_set_env_token1] = ACTIONS(3555), + [aux_sym_stdin_null_token1] = ACTIONS(3555), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3555), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3555), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3555), + [aux_sym_syslog_facility_token1] = ACTIONS(3555), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3555), + [aux_sym_keep_alive_token1] = ACTIONS(3555), + [aux_sym_tag_token1] = ACTIONS(3555), + [aux_sym_tunnel_token1] = ACTIONS(3557), + [aux_sym_tunnel_device_token1] = ACTIONS(3555), + [aux_sym_update_host_keys_token1] = ACTIONS(3555), + [aux_sym_use_keychain_token1] = ACTIONS(3555), + [aux_sym_use_roaming_token1] = ACTIONS(3555), + [aux_sym_user_token1] = ACTIONS(3557), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3555), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3555), + [aux_sym_visual_host_key_token1] = ACTIONS(3555), + [aux_sym_xauth_location_token1] = ACTIONS(3555), }, [659] = { - [ts_builtin_sym_end] = ACTIONS(1320), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1322), - [aux_sym_match_token1] = ACTIONS(1320), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1320), - [aux_sym_address_family_token1] = ACTIONS(1320), - [aux_sym_batch_mode_token1] = ACTIONS(1320), - [aux_sym_bind_address_token1] = ACTIONS(1320), - [aux_sym_bind_interface_token1] = ACTIONS(1320), - [aux_sym_canonical_domains_token1] = ACTIONS(1320), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1320), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1320), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1320), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1320), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1320), - [aux_sym_certificate_file_token1] = ACTIONS(1320), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1320), - [aux_sym_channel_timeout_token1] = ACTIONS(1320), - [aux_sym_check_host_ip_token1] = ACTIONS(1320), - [aux_sym_ciphers_token1] = ACTIONS(1320), - [aux_sym_cipher_token1] = ACTIONS(1322), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1320), - [aux_sym_compression_token1] = ACTIONS(1320), - [aux_sym_connection_attempts_token1] = ACTIONS(1320), - [aux_sym_connect_timeout_token1] = ACTIONS(1320), - [aux_sym_control_master_token1] = ACTIONS(1320), - [aux_sym_control_path_token1] = ACTIONS(1320), - [aux_sym_control_persist_token1] = ACTIONS(1320), - [aux_sym_dynamic_forward_token1] = ACTIONS(1320), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1320), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1320), - [aux_sym_escape_char_token1] = ACTIONS(1320), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1320), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1320), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1320), - [aux_sym_forward_agent_token1] = ACTIONS(1320), - [aux_sym_forward_x11_token1] = ACTIONS(1322), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1320), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1320), - [aux_sym_gateway_ports_token1] = ACTIONS(1320), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1320), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1320), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1320), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1320), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1320), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1320), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1320), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1320), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1320), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1320), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1320), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1320), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1320), - [aux_sym_host_key_alias_token1] = ACTIONS(1320), - [aux_sym_hostname_token1] = ACTIONS(1320), - [aux_sym_identities_only_token1] = ACTIONS(1320), - [aux_sym_identity_agent_token1] = ACTIONS(1320), - [aux_sym_identity_file_token1] = ACTIONS(1320), - [aux_sym_ignore_unknown_token1] = ACTIONS(1320), - [aux_sym_include_token1] = ACTIONS(1320), - [aux_sym_ip_qos_token1] = ACTIONS(1320), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1320), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1320), - [aux_sym_kex_algorithms_token1] = ACTIONS(1320), - [aux_sym_known_hosts_command_token1] = ACTIONS(1320), - [aux_sym_local_command_token1] = ACTIONS(1320), - [aux_sym_local_forward_token1] = ACTIONS(1320), - [aux_sym_log_level_token1] = ACTIONS(1320), - [aux_sym_log_verbose_token1] = ACTIONS(1320), - [aux_sym_macs_token1] = ACTIONS(1320), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1320), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1320), - [aux_sym_password_authentication_token1] = ACTIONS(1320), - [aux_sym_permit_local_command_token1] = ACTIONS(1320), - [aux_sym_permit_remote_open_token1] = ACTIONS(1320), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1320), - [aux_sym_port_token1] = ACTIONS(1320), - [aux_sym_preferred_authentications_token1] = ACTIONS(1320), - [aux_sym_protocol_token1] = ACTIONS(1320), - [aux_sym_proxy_command_token1] = ACTIONS(1320), - [aux_sym_proxy_jump_token1] = ACTIONS(1320), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1320), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1320), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1320), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1320), - [aux_sym_rekey_limit_token1] = ACTIONS(1320), - [aux_sym_remote_command_token1] = ACTIONS(1320), - [aux_sym_remote_forward_token1] = ACTIONS(1320), - [aux_sym_request_tty_token1] = ACTIONS(1320), - [aux_sym_required_rsa_size_token1] = ACTIONS(1320), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1320), - [aux_sym_security_key_provider_token1] = ACTIONS(1320), - [aux_sym_send_env_token1] = ACTIONS(1320), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1320), - [aux_sym_server_alive_interval_token1] = ACTIONS(1320), - [aux_sym_session_type_token1] = ACTIONS(1320), - [aux_sym_set_env_token1] = ACTIONS(1320), - [aux_sym_stdin_null_token1] = ACTIONS(1320), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1320), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1320), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1320), - [aux_sym_syslog_facility_token1] = ACTIONS(1320), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1320), - [aux_sym_keep_alive_token1] = ACTIONS(1320), - [aux_sym_tag_token1] = ACTIONS(1320), - [aux_sym_tunnel_token1] = ACTIONS(1322), - [aux_sym_tunnel_device_token1] = ACTIONS(1320), - [aux_sym_update_host_keys_token1] = ACTIONS(1320), - [aux_sym_use_keychain_token1] = ACTIONS(1320), - [aux_sym_use_roaming_token1] = ACTIONS(1320), - [aux_sym_user_token1] = ACTIONS(1322), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1320), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1320), - [aux_sym_visual_host_key_token1] = ACTIONS(1320), - [aux_sym_xauth_location_token1] = ACTIONS(1320), + [ts_builtin_sym_end] = ACTIONS(1367), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1369), + [aux_sym_match_token1] = ACTIONS(1367), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1367), + [aux_sym_address_family_token1] = ACTIONS(1367), + [aux_sym_batch_mode_token1] = ACTIONS(1367), + [aux_sym_bind_address_token1] = ACTIONS(1367), + [aux_sym_bind_interface_token1] = ACTIONS(1367), + [aux_sym_canonical_domains_token1] = ACTIONS(1367), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1367), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1367), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1367), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1367), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1367), + [aux_sym_certificate_file_token1] = ACTIONS(1367), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1367), + [aux_sym_channel_timeout_token1] = ACTIONS(1367), + [aux_sym_check_host_ip_token1] = ACTIONS(1367), + [aux_sym_ciphers_token1] = ACTIONS(1367), + [aux_sym_cipher_token1] = ACTIONS(1369), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1367), + [aux_sym_compression_token1] = ACTIONS(1367), + [aux_sym_connection_attempts_token1] = ACTIONS(1367), + [aux_sym_connect_timeout_token1] = ACTIONS(1367), + [aux_sym_control_master_token1] = ACTIONS(1367), + [aux_sym_control_path_token1] = ACTIONS(1367), + [aux_sym_control_persist_token1] = ACTIONS(1367), + [aux_sym_dynamic_forward_token1] = ACTIONS(1367), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1367), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1367), + [aux_sym_escape_char_token1] = ACTIONS(1367), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1367), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1367), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1367), + [aux_sym_forward_agent_token1] = ACTIONS(1367), + [aux_sym_forward_x11_token1] = ACTIONS(1369), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1367), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1367), + [aux_sym_gateway_ports_token1] = ACTIONS(1367), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1367), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1367), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1367), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1367), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1367), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1367), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1367), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1367), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1367), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1367), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1367), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1367), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1367), + [aux_sym_host_key_alias_token1] = ACTIONS(1367), + [aux_sym_hostname_token1] = ACTIONS(1367), + [aux_sym_identities_only_token1] = ACTIONS(1367), + [aux_sym_identity_agent_token1] = ACTIONS(1367), + [aux_sym_identity_file_token1] = ACTIONS(1367), + [aux_sym_ignore_unknown_token1] = ACTIONS(1367), + [aux_sym_include_token1] = ACTIONS(1367), + [aux_sym_ip_qos_token1] = ACTIONS(1367), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1367), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1367), + [aux_sym_kex_algorithms_token1] = ACTIONS(1367), + [aux_sym_known_hosts_command_token1] = ACTIONS(1367), + [aux_sym_local_command_token1] = ACTIONS(1367), + [aux_sym_local_forward_token1] = ACTIONS(1367), + [aux_sym_log_level_token1] = ACTIONS(1367), + [aux_sym_log_verbose_token1] = ACTIONS(1367), + [aux_sym_macs_token1] = ACTIONS(1367), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1367), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1367), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1367), + [aux_sym_password_authentication_token1] = ACTIONS(1367), + [aux_sym_permit_local_command_token1] = ACTIONS(1367), + [aux_sym_permit_remote_open_token1] = ACTIONS(1367), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1367), + [aux_sym_port_token1] = ACTIONS(1367), + [aux_sym_preferred_authentications_token1] = ACTIONS(1367), + [aux_sym_protocol_token1] = ACTIONS(1367), + [aux_sym_proxy_command_token1] = ACTIONS(1367), + [aux_sym_proxy_jump_token1] = ACTIONS(1367), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1367), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1367), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1367), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1367), + [aux_sym_rekey_limit_token1] = ACTIONS(1367), + [aux_sym_remote_command_token1] = ACTIONS(1367), + [aux_sym_remote_forward_token1] = ACTIONS(1367), + [aux_sym_request_tty_token1] = ACTIONS(1367), + [aux_sym_required_rsa_size_token1] = ACTIONS(1367), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1367), + [aux_sym_security_key_provider_token1] = ACTIONS(1367), + [aux_sym_send_env_token1] = ACTIONS(1367), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1367), + [aux_sym_server_alive_interval_token1] = ACTIONS(1367), + [aux_sym_session_type_token1] = ACTIONS(1367), + [aux_sym_set_env_token1] = ACTIONS(1367), + [aux_sym_stdin_null_token1] = ACTIONS(1367), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1367), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1367), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1367), + [aux_sym_syslog_facility_token1] = ACTIONS(1367), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1367), + [aux_sym_keep_alive_token1] = ACTIONS(1367), + [aux_sym_tag_token1] = ACTIONS(1367), + [aux_sym_tunnel_token1] = ACTIONS(1369), + [aux_sym_tunnel_device_token1] = ACTIONS(1367), + [aux_sym_update_host_keys_token1] = ACTIONS(1367), + [aux_sym_use_keychain_token1] = ACTIONS(1367), + [aux_sym_use_roaming_token1] = ACTIONS(1367), + [aux_sym_user_token1] = ACTIONS(1369), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1367), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1367), + [aux_sym_visual_host_key_token1] = ACTIONS(1367), + [aux_sym_xauth_location_token1] = ACTIONS(1367), }, [660] = { - [ts_builtin_sym_end] = ACTIONS(1602), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1604), - [aux_sym_match_token1] = ACTIONS(1602), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1602), - [aux_sym_address_family_token1] = ACTIONS(1602), - [aux_sym_batch_mode_token1] = ACTIONS(1602), - [aux_sym_bind_address_token1] = ACTIONS(1602), - [aux_sym_bind_interface_token1] = ACTIONS(1602), - [aux_sym_canonical_domains_token1] = ACTIONS(1602), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1602), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1602), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1602), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1602), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1602), - [aux_sym_certificate_file_token1] = ACTIONS(1602), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1602), - [aux_sym_channel_timeout_token1] = ACTIONS(1602), - [aux_sym_check_host_ip_token1] = ACTIONS(1602), - [aux_sym_ciphers_token1] = ACTIONS(1602), - [aux_sym_cipher_token1] = ACTIONS(1604), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1602), - [aux_sym_compression_token1] = ACTIONS(1602), - [aux_sym_connection_attempts_token1] = ACTIONS(1602), - [aux_sym_connect_timeout_token1] = ACTIONS(1602), - [aux_sym_control_master_token1] = ACTIONS(1602), - [aux_sym_control_path_token1] = ACTIONS(1602), - [aux_sym_control_persist_token1] = ACTIONS(1602), - [aux_sym_dynamic_forward_token1] = ACTIONS(1602), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1602), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1602), - [aux_sym_escape_char_token1] = ACTIONS(1602), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1602), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1602), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1602), - [aux_sym_forward_agent_token1] = ACTIONS(1602), - [aux_sym_forward_x11_token1] = ACTIONS(1604), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1602), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1602), - [aux_sym_gateway_ports_token1] = ACTIONS(1602), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1602), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1602), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1602), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1602), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1602), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1602), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1602), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1602), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1602), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1602), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1602), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1602), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1602), - [aux_sym_host_key_alias_token1] = ACTIONS(1602), - [aux_sym_hostname_token1] = ACTIONS(1602), - [aux_sym_identities_only_token1] = ACTIONS(1602), - [aux_sym_identity_agent_token1] = ACTIONS(1602), - [aux_sym_identity_file_token1] = ACTIONS(1602), - [aux_sym_ignore_unknown_token1] = ACTIONS(1602), - [aux_sym_include_token1] = ACTIONS(1602), - [aux_sym_ip_qos_token1] = ACTIONS(1602), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1602), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1602), - [aux_sym_kex_algorithms_token1] = ACTIONS(1602), - [aux_sym_known_hosts_command_token1] = ACTIONS(1602), - [aux_sym_local_command_token1] = ACTIONS(1602), - [aux_sym_local_forward_token1] = ACTIONS(1602), - [aux_sym_log_level_token1] = ACTIONS(1602), - [aux_sym_log_verbose_token1] = ACTIONS(1602), - [aux_sym_macs_token1] = ACTIONS(1602), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1602), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1602), - [aux_sym_password_authentication_token1] = ACTIONS(1602), - [aux_sym_permit_local_command_token1] = ACTIONS(1602), - [aux_sym_permit_remote_open_token1] = ACTIONS(1602), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1602), - [aux_sym_port_token1] = ACTIONS(1602), - [aux_sym_preferred_authentications_token1] = ACTIONS(1602), - [aux_sym_protocol_token1] = ACTIONS(1602), - [aux_sym_proxy_command_token1] = ACTIONS(1602), - [aux_sym_proxy_jump_token1] = ACTIONS(1602), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1602), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1602), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1602), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1602), - [aux_sym_rekey_limit_token1] = ACTIONS(1602), - [aux_sym_remote_command_token1] = ACTIONS(1602), - [aux_sym_remote_forward_token1] = ACTIONS(1602), - [aux_sym_request_tty_token1] = ACTIONS(1602), - [aux_sym_required_rsa_size_token1] = ACTIONS(1602), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1602), - [aux_sym_security_key_provider_token1] = ACTIONS(1602), - [aux_sym_send_env_token1] = ACTIONS(1602), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1602), - [aux_sym_server_alive_interval_token1] = ACTIONS(1602), - [aux_sym_session_type_token1] = ACTIONS(1602), - [aux_sym_set_env_token1] = ACTIONS(1602), - [aux_sym_stdin_null_token1] = ACTIONS(1602), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1602), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1602), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1602), - [aux_sym_syslog_facility_token1] = ACTIONS(1602), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1602), - [aux_sym_keep_alive_token1] = ACTIONS(1602), - [aux_sym_tag_token1] = ACTIONS(1602), - [aux_sym_tunnel_token1] = ACTIONS(1604), - [aux_sym_tunnel_device_token1] = ACTIONS(1602), - [aux_sym_update_host_keys_token1] = ACTIONS(1602), - [aux_sym_use_keychain_token1] = ACTIONS(1602), - [aux_sym_use_roaming_token1] = ACTIONS(1602), - [aux_sym_user_token1] = ACTIONS(1604), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1602), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1602), - [aux_sym_visual_host_key_token1] = ACTIONS(1602), - [aux_sym_xauth_location_token1] = ACTIONS(1602), + [ts_builtin_sym_end] = ACTIONS(809), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(811), + [aux_sym_match_token1] = ACTIONS(809), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(809), + [aux_sym_address_family_token1] = ACTIONS(809), + [aux_sym_batch_mode_token1] = ACTIONS(809), + [aux_sym_bind_address_token1] = ACTIONS(809), + [aux_sym_bind_interface_token1] = ACTIONS(809), + [aux_sym_canonical_domains_token1] = ACTIONS(809), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(809), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(809), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(809), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(809), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(809), + [aux_sym_certificate_file_token1] = ACTIONS(809), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(809), + [aux_sym_channel_timeout_token1] = ACTIONS(809), + [aux_sym_check_host_ip_token1] = ACTIONS(809), + [aux_sym_ciphers_token1] = ACTIONS(809), + [aux_sym_cipher_token1] = ACTIONS(811), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(809), + [aux_sym_compression_token1] = ACTIONS(809), + [aux_sym_connection_attempts_token1] = ACTIONS(809), + [aux_sym_connect_timeout_token1] = ACTIONS(809), + [aux_sym_control_master_token1] = ACTIONS(809), + [aux_sym_control_path_token1] = ACTIONS(809), + [aux_sym_control_persist_token1] = ACTIONS(809), + [aux_sym_dynamic_forward_token1] = ACTIONS(809), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(809), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(809), + [aux_sym_escape_char_token1] = ACTIONS(809), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(809), + [aux_sym_fingerprint_hash_token1] = ACTIONS(809), + [aux_sym_fork_after_authentication_token1] = ACTIONS(809), + [aux_sym_forward_agent_token1] = ACTIONS(809), + [aux_sym_forward_x11_token1] = ACTIONS(811), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(809), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(809), + [aux_sym_gateway_ports_token1] = ACTIONS(809), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(809), + [aux_sym_gssapi_authentication_token1] = ACTIONS(809), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(809), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(809), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(809), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(809), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(809), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(809), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(809), + [aux_sym_hash_known_hosts_token1] = ACTIONS(809), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(809), + [aux_sym_hostbased_authentication_token1] = ACTIONS(809), + [aux_sym_host_key_algorithms_token1] = ACTIONS(809), + [aux_sym_host_key_alias_token1] = ACTIONS(809), + [aux_sym_hostname_token1] = ACTIONS(809), + [aux_sym_identities_only_token1] = ACTIONS(809), + [aux_sym_identity_agent_token1] = ACTIONS(809), + [aux_sym_identity_file_token1] = ACTIONS(809), + [aux_sym_ignore_unknown_token1] = ACTIONS(809), + [aux_sym_include_token1] = ACTIONS(809), + [aux_sym_ip_qos_token1] = ACTIONS(809), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(809), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(809), + [aux_sym_kex_algorithms_token1] = ACTIONS(809), + [aux_sym_known_hosts_command_token1] = ACTIONS(809), + [aux_sym_local_command_token1] = ACTIONS(809), + [aux_sym_local_forward_token1] = ACTIONS(809), + [aux_sym_log_level_token1] = ACTIONS(809), + [aux_sym_log_verbose_token1] = ACTIONS(809), + [aux_sym_macs_token1] = ACTIONS(809), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(809), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(809), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(809), + [aux_sym_password_authentication_token1] = ACTIONS(809), + [aux_sym_permit_local_command_token1] = ACTIONS(809), + [aux_sym_permit_remote_open_token1] = ACTIONS(809), + [aux_sym_pkcs11_provider_token1] = ACTIONS(809), + [aux_sym_port_token1] = ACTIONS(809), + [aux_sym_preferred_authentications_token1] = ACTIONS(809), + [aux_sym_protocol_token1] = ACTIONS(809), + [aux_sym_proxy_command_token1] = ACTIONS(809), + [aux_sym_proxy_jump_token1] = ACTIONS(809), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(809), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(809), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(809), + [aux_sym_pubkey_authentication_token1] = ACTIONS(809), + [aux_sym_rekey_limit_token1] = ACTIONS(809), + [aux_sym_remote_command_token1] = ACTIONS(809), + [aux_sym_remote_forward_token1] = ACTIONS(809), + [aux_sym_request_tty_token1] = ACTIONS(809), + [aux_sym_required_rsa_size_token1] = ACTIONS(809), + [aux_sym_revoked_host_keys_token1] = ACTIONS(809), + [aux_sym_security_key_provider_token1] = ACTIONS(809), + [aux_sym_send_env_token1] = ACTIONS(809), + [aux_sym_server_alive_count_max_token1] = ACTIONS(809), + [aux_sym_server_alive_interval_token1] = ACTIONS(809), + [aux_sym_session_type_token1] = ACTIONS(809), + [aux_sym_set_env_token1] = ACTIONS(809), + [aux_sym_stdin_null_token1] = ACTIONS(809), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(809), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(809), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(809), + [aux_sym_syslog_facility_token1] = ACTIONS(809), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(809), + [aux_sym_keep_alive_token1] = ACTIONS(809), + [aux_sym_tag_token1] = ACTIONS(809), + [aux_sym_tunnel_token1] = ACTIONS(811), + [aux_sym_tunnel_device_token1] = ACTIONS(809), + [aux_sym_update_host_keys_token1] = ACTIONS(809), + [aux_sym_use_keychain_token1] = ACTIONS(809), + [aux_sym_use_roaming_token1] = ACTIONS(809), + [aux_sym_user_token1] = ACTIONS(811), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(809), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(809), + [aux_sym_visual_host_key_token1] = ACTIONS(809), + [aux_sym_xauth_location_token1] = ACTIONS(809), }, [661] = { - [ts_builtin_sym_end] = ACTIONS(1924), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1926), - [aux_sym_match_token1] = ACTIONS(1924), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1924), - [aux_sym_address_family_token1] = ACTIONS(1924), - [aux_sym_batch_mode_token1] = ACTIONS(1924), - [aux_sym_bind_address_token1] = ACTIONS(1924), - [aux_sym_bind_interface_token1] = ACTIONS(1924), - [aux_sym_canonical_domains_token1] = ACTIONS(1924), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1924), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1924), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1924), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1924), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1924), - [aux_sym_certificate_file_token1] = ACTIONS(1924), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1924), - [aux_sym_channel_timeout_token1] = ACTIONS(1924), - [aux_sym_check_host_ip_token1] = ACTIONS(1924), - [aux_sym_ciphers_token1] = ACTIONS(1924), - [aux_sym_cipher_token1] = ACTIONS(1926), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1924), - [aux_sym_compression_token1] = ACTIONS(1924), - [aux_sym_connection_attempts_token1] = ACTIONS(1924), - [aux_sym_connect_timeout_token1] = ACTIONS(1924), - [aux_sym_control_master_token1] = ACTIONS(1924), - [aux_sym_control_path_token1] = ACTIONS(1924), - [aux_sym_control_persist_token1] = ACTIONS(1924), - [aux_sym_dynamic_forward_token1] = ACTIONS(1924), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1924), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1924), - [aux_sym_escape_char_token1] = ACTIONS(1924), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1924), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1924), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1924), - [aux_sym_forward_agent_token1] = ACTIONS(1924), - [aux_sym_forward_x11_token1] = ACTIONS(1926), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1924), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1924), - [aux_sym_gateway_ports_token1] = ACTIONS(1924), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1924), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1924), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1924), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1924), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1924), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1924), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1924), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1924), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1924), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1924), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1924), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1924), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1924), - [aux_sym_host_key_alias_token1] = ACTIONS(1924), - [aux_sym_hostname_token1] = ACTIONS(1924), - [aux_sym_identities_only_token1] = ACTIONS(1924), - [aux_sym_identity_agent_token1] = ACTIONS(1924), - [aux_sym_identity_file_token1] = ACTIONS(1924), - [aux_sym_ignore_unknown_token1] = ACTIONS(1924), - [aux_sym_include_token1] = ACTIONS(1924), - [aux_sym_ip_qos_token1] = ACTIONS(1924), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1924), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1924), - [aux_sym_kex_algorithms_token1] = ACTIONS(1924), - [aux_sym_known_hosts_command_token1] = ACTIONS(1924), - [aux_sym_local_command_token1] = ACTIONS(1924), - [aux_sym_local_forward_token1] = ACTIONS(1924), - [aux_sym_log_level_token1] = ACTIONS(1924), - [aux_sym_log_verbose_token1] = ACTIONS(1924), - [aux_sym_macs_token1] = ACTIONS(1924), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1924), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1924), - [aux_sym_password_authentication_token1] = ACTIONS(1924), - [aux_sym_permit_local_command_token1] = ACTIONS(1924), - [aux_sym_permit_remote_open_token1] = ACTIONS(1924), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1924), - [aux_sym_port_token1] = ACTIONS(1924), - [aux_sym_preferred_authentications_token1] = ACTIONS(1924), - [aux_sym_protocol_token1] = ACTIONS(1924), - [aux_sym_proxy_command_token1] = ACTIONS(1924), - [aux_sym_proxy_jump_token1] = ACTIONS(1924), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1924), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1924), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1924), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1924), - [aux_sym_rekey_limit_token1] = ACTIONS(1924), - [aux_sym_remote_command_token1] = ACTIONS(1924), - [aux_sym_remote_forward_token1] = ACTIONS(1924), - [aux_sym_request_tty_token1] = ACTIONS(1924), - [aux_sym_required_rsa_size_token1] = ACTIONS(1924), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1924), - [aux_sym_security_key_provider_token1] = ACTIONS(1924), - [aux_sym_send_env_token1] = ACTIONS(1924), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1924), - [aux_sym_server_alive_interval_token1] = ACTIONS(1924), - [aux_sym_session_type_token1] = ACTIONS(1924), - [aux_sym_set_env_token1] = ACTIONS(1924), - [aux_sym_stdin_null_token1] = ACTIONS(1924), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1924), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1924), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1924), - [aux_sym_syslog_facility_token1] = ACTIONS(1924), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1924), - [aux_sym_keep_alive_token1] = ACTIONS(1924), - [aux_sym_tag_token1] = ACTIONS(1924), - [aux_sym_tunnel_token1] = ACTIONS(1926), - [aux_sym_tunnel_device_token1] = ACTIONS(1924), - [aux_sym_update_host_keys_token1] = ACTIONS(1924), - [aux_sym_use_keychain_token1] = ACTIONS(1924), - [aux_sym_use_roaming_token1] = ACTIONS(1924), - [aux_sym_user_token1] = ACTIONS(1926), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1924), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1924), - [aux_sym_visual_host_key_token1] = ACTIONS(1924), - [aux_sym_xauth_location_token1] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1373), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1375), + [aux_sym_match_token1] = ACTIONS(1373), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1373), + [aux_sym_address_family_token1] = ACTIONS(1373), + [aux_sym_batch_mode_token1] = ACTIONS(1373), + [aux_sym_bind_address_token1] = ACTIONS(1373), + [aux_sym_bind_interface_token1] = ACTIONS(1373), + [aux_sym_canonical_domains_token1] = ACTIONS(1373), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1373), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1373), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1373), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1373), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1373), + [aux_sym_certificate_file_token1] = ACTIONS(1373), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1373), + [aux_sym_channel_timeout_token1] = ACTIONS(1373), + [aux_sym_check_host_ip_token1] = ACTIONS(1373), + [aux_sym_ciphers_token1] = ACTIONS(1373), + [aux_sym_cipher_token1] = ACTIONS(1375), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1373), + [aux_sym_compression_token1] = ACTIONS(1373), + [aux_sym_connection_attempts_token1] = ACTIONS(1373), + [aux_sym_connect_timeout_token1] = ACTIONS(1373), + [aux_sym_control_master_token1] = ACTIONS(1373), + [aux_sym_control_path_token1] = ACTIONS(1373), + [aux_sym_control_persist_token1] = ACTIONS(1373), + [aux_sym_dynamic_forward_token1] = ACTIONS(1373), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1373), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1373), + [aux_sym_escape_char_token1] = ACTIONS(1373), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1373), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1373), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1373), + [aux_sym_forward_agent_token1] = ACTIONS(1373), + [aux_sym_forward_x11_token1] = ACTIONS(1375), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1373), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1373), + [aux_sym_gateway_ports_token1] = ACTIONS(1373), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1373), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1373), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1373), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1373), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1373), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1373), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1373), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1373), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1373), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1373), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1373), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1373), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1373), + [aux_sym_host_key_alias_token1] = ACTIONS(1373), + [aux_sym_hostname_token1] = ACTIONS(1373), + [aux_sym_identities_only_token1] = ACTIONS(1373), + [aux_sym_identity_agent_token1] = ACTIONS(1373), + [aux_sym_identity_file_token1] = ACTIONS(1373), + [aux_sym_ignore_unknown_token1] = ACTIONS(1373), + [aux_sym_include_token1] = ACTIONS(1373), + [aux_sym_ip_qos_token1] = ACTIONS(1373), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1373), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1373), + [aux_sym_kex_algorithms_token1] = ACTIONS(1373), + [aux_sym_known_hosts_command_token1] = ACTIONS(1373), + [aux_sym_local_command_token1] = ACTIONS(1373), + [aux_sym_local_forward_token1] = ACTIONS(1373), + [aux_sym_log_level_token1] = ACTIONS(1373), + [aux_sym_log_verbose_token1] = ACTIONS(1373), + [aux_sym_macs_token1] = ACTIONS(1373), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1373), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1373), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1373), + [aux_sym_password_authentication_token1] = ACTIONS(1373), + [aux_sym_permit_local_command_token1] = ACTIONS(1373), + [aux_sym_permit_remote_open_token1] = ACTIONS(1373), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1373), + [aux_sym_port_token1] = ACTIONS(1373), + [aux_sym_preferred_authentications_token1] = ACTIONS(1373), + [aux_sym_protocol_token1] = ACTIONS(1373), + [aux_sym_proxy_command_token1] = ACTIONS(1373), + [aux_sym_proxy_jump_token1] = ACTIONS(1373), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1373), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1373), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1373), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1373), + [aux_sym_rekey_limit_token1] = ACTIONS(1373), + [aux_sym_remote_command_token1] = ACTIONS(1373), + [aux_sym_remote_forward_token1] = ACTIONS(1373), + [aux_sym_request_tty_token1] = ACTIONS(1373), + [aux_sym_required_rsa_size_token1] = ACTIONS(1373), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1373), + [aux_sym_security_key_provider_token1] = ACTIONS(1373), + [aux_sym_send_env_token1] = ACTIONS(1373), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1373), + [aux_sym_server_alive_interval_token1] = ACTIONS(1373), + [aux_sym_session_type_token1] = ACTIONS(1373), + [aux_sym_set_env_token1] = ACTIONS(1373), + [aux_sym_stdin_null_token1] = ACTIONS(1373), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1373), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1373), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1373), + [aux_sym_syslog_facility_token1] = ACTIONS(1373), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1373), + [aux_sym_keep_alive_token1] = ACTIONS(1373), + [aux_sym_tag_token1] = ACTIONS(1373), + [aux_sym_tunnel_token1] = ACTIONS(1375), + [aux_sym_tunnel_device_token1] = ACTIONS(1373), + [aux_sym_update_host_keys_token1] = ACTIONS(1373), + [aux_sym_use_keychain_token1] = ACTIONS(1373), + [aux_sym_use_roaming_token1] = ACTIONS(1373), + [aux_sym_user_token1] = ACTIONS(1375), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1373), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1373), + [aux_sym_visual_host_key_token1] = ACTIONS(1373), + [aux_sym_xauth_location_token1] = ACTIONS(1373), }, [662] = { - [ts_builtin_sym_end] = ACTIONS(1086), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1088), - [aux_sym_match_token1] = ACTIONS(1086), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1086), - [aux_sym_address_family_token1] = ACTIONS(1086), - [aux_sym_batch_mode_token1] = ACTIONS(1086), - [aux_sym_bind_address_token1] = ACTIONS(1086), - [aux_sym_bind_interface_token1] = ACTIONS(1086), - [aux_sym_canonical_domains_token1] = ACTIONS(1086), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1086), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1086), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1086), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1086), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1086), - [aux_sym_certificate_file_token1] = ACTIONS(1086), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1086), - [aux_sym_channel_timeout_token1] = ACTIONS(1086), - [aux_sym_check_host_ip_token1] = ACTIONS(1086), - [aux_sym_ciphers_token1] = ACTIONS(1086), - [aux_sym_cipher_token1] = ACTIONS(1088), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1086), - [aux_sym_compression_token1] = ACTIONS(1086), - [aux_sym_connection_attempts_token1] = ACTIONS(1086), - [aux_sym_connect_timeout_token1] = ACTIONS(1086), - [aux_sym_control_master_token1] = ACTIONS(1086), - [aux_sym_control_path_token1] = ACTIONS(1086), - [aux_sym_control_persist_token1] = ACTIONS(1086), - [aux_sym_dynamic_forward_token1] = ACTIONS(1086), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1086), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1086), - [aux_sym_escape_char_token1] = ACTIONS(1086), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1086), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1086), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1086), - [aux_sym_forward_agent_token1] = ACTIONS(1086), - [aux_sym_forward_x11_token1] = ACTIONS(1088), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1086), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1086), - [aux_sym_gateway_ports_token1] = ACTIONS(1086), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1086), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1086), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1086), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1086), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1086), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1086), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1086), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1086), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1086), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1086), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1086), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1086), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1086), - [aux_sym_host_key_alias_token1] = ACTIONS(1086), - [aux_sym_hostname_token1] = ACTIONS(1086), - [aux_sym_identities_only_token1] = ACTIONS(1086), - [aux_sym_identity_agent_token1] = ACTIONS(1086), - [aux_sym_identity_file_token1] = ACTIONS(1086), - [aux_sym_ignore_unknown_token1] = ACTIONS(1086), - [aux_sym_include_token1] = ACTIONS(1086), - [aux_sym_ip_qos_token1] = ACTIONS(1086), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1086), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1086), - [aux_sym_kex_algorithms_token1] = ACTIONS(1086), - [aux_sym_known_hosts_command_token1] = ACTIONS(1086), - [aux_sym_local_command_token1] = ACTIONS(1086), - [aux_sym_local_forward_token1] = ACTIONS(1086), - [aux_sym_log_level_token1] = ACTIONS(1086), - [aux_sym_log_verbose_token1] = ACTIONS(1086), - [aux_sym_macs_token1] = ACTIONS(1086), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1086), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1086), - [aux_sym_password_authentication_token1] = ACTIONS(1086), - [aux_sym_permit_local_command_token1] = ACTIONS(1086), - [aux_sym_permit_remote_open_token1] = ACTIONS(1086), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1086), - [aux_sym_port_token1] = ACTIONS(1086), - [aux_sym_preferred_authentications_token1] = ACTIONS(1086), - [aux_sym_protocol_token1] = ACTIONS(1086), - [aux_sym_proxy_command_token1] = ACTIONS(1086), - [aux_sym_proxy_jump_token1] = ACTIONS(1086), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1086), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1086), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1086), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1086), - [aux_sym_rekey_limit_token1] = ACTIONS(1086), - [aux_sym_remote_command_token1] = ACTIONS(1086), - [aux_sym_remote_forward_token1] = ACTIONS(1086), - [aux_sym_request_tty_token1] = ACTIONS(1086), - [aux_sym_required_rsa_size_token1] = ACTIONS(1086), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1086), - [aux_sym_security_key_provider_token1] = ACTIONS(1086), - [aux_sym_send_env_token1] = ACTIONS(1086), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1086), - [aux_sym_server_alive_interval_token1] = ACTIONS(1086), - [aux_sym_session_type_token1] = ACTIONS(1086), - [aux_sym_set_env_token1] = ACTIONS(1086), - [aux_sym_stdin_null_token1] = ACTIONS(1086), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1086), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1086), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1086), - [aux_sym_syslog_facility_token1] = ACTIONS(1086), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1086), - [aux_sym_keep_alive_token1] = ACTIONS(1086), - [aux_sym_tag_token1] = ACTIONS(1086), - [aux_sym_tunnel_token1] = ACTIONS(1088), - [aux_sym_tunnel_device_token1] = ACTIONS(1086), - [aux_sym_update_host_keys_token1] = ACTIONS(1086), - [aux_sym_use_keychain_token1] = ACTIONS(1086), - [aux_sym_use_roaming_token1] = ACTIONS(1086), - [aux_sym_user_token1] = ACTIONS(1088), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1086), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1086), - [aux_sym_visual_host_key_token1] = ACTIONS(1086), - [aux_sym_xauth_location_token1] = ACTIONS(1086), + [ts_builtin_sym_end] = ACTIONS(1013), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1015), + [aux_sym_match_token1] = ACTIONS(1013), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1013), + [aux_sym_address_family_token1] = ACTIONS(1013), + [aux_sym_batch_mode_token1] = ACTIONS(1013), + [aux_sym_bind_address_token1] = ACTIONS(1013), + [aux_sym_bind_interface_token1] = ACTIONS(1013), + [aux_sym_canonical_domains_token1] = ACTIONS(1013), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1013), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1013), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1013), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1013), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1013), + [aux_sym_certificate_file_token1] = ACTIONS(1013), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1013), + [aux_sym_channel_timeout_token1] = ACTIONS(1013), + [aux_sym_check_host_ip_token1] = ACTIONS(1013), + [aux_sym_ciphers_token1] = ACTIONS(1013), + [aux_sym_cipher_token1] = ACTIONS(1015), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1013), + [aux_sym_compression_token1] = ACTIONS(1013), + [aux_sym_connection_attempts_token1] = ACTIONS(1013), + [aux_sym_connect_timeout_token1] = ACTIONS(1013), + [aux_sym_control_master_token1] = ACTIONS(1013), + [aux_sym_control_path_token1] = ACTIONS(1013), + [aux_sym_control_persist_token1] = ACTIONS(1013), + [aux_sym_dynamic_forward_token1] = ACTIONS(1013), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1013), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1013), + [aux_sym_escape_char_token1] = ACTIONS(1013), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1013), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1013), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1013), + [aux_sym_forward_agent_token1] = ACTIONS(1013), + [aux_sym_forward_x11_token1] = ACTIONS(1015), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1013), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1013), + [aux_sym_gateway_ports_token1] = ACTIONS(1013), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1013), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1013), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1013), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1013), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1013), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1013), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1013), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1013), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1013), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1013), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1013), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1013), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1013), + [aux_sym_host_key_alias_token1] = ACTIONS(1013), + [aux_sym_hostname_token1] = ACTIONS(1013), + [aux_sym_identities_only_token1] = ACTIONS(1013), + [aux_sym_identity_agent_token1] = ACTIONS(1013), + [aux_sym_identity_file_token1] = ACTIONS(1013), + [aux_sym_ignore_unknown_token1] = ACTIONS(1013), + [aux_sym_include_token1] = ACTIONS(1013), + [aux_sym_ip_qos_token1] = ACTIONS(1013), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1013), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1013), + [aux_sym_kex_algorithms_token1] = ACTIONS(1013), + [aux_sym_known_hosts_command_token1] = ACTIONS(1013), + [aux_sym_local_command_token1] = ACTIONS(1013), + [aux_sym_local_forward_token1] = ACTIONS(1013), + [aux_sym_log_level_token1] = ACTIONS(1013), + [aux_sym_log_verbose_token1] = ACTIONS(1013), + [aux_sym_macs_token1] = ACTIONS(1013), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1013), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1013), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1013), + [aux_sym_password_authentication_token1] = ACTIONS(1013), + [aux_sym_permit_local_command_token1] = ACTIONS(1013), + [aux_sym_permit_remote_open_token1] = ACTIONS(1013), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1013), + [aux_sym_port_token1] = ACTIONS(1013), + [aux_sym_preferred_authentications_token1] = ACTIONS(1013), + [aux_sym_protocol_token1] = ACTIONS(1013), + [aux_sym_proxy_command_token1] = ACTIONS(1013), + [aux_sym_proxy_jump_token1] = ACTIONS(1013), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1013), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1013), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1013), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1013), + [aux_sym_rekey_limit_token1] = ACTIONS(1013), + [aux_sym_remote_command_token1] = ACTIONS(1013), + [aux_sym_remote_forward_token1] = ACTIONS(1013), + [aux_sym_request_tty_token1] = ACTIONS(1013), + [aux_sym_required_rsa_size_token1] = ACTIONS(1013), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1013), + [aux_sym_security_key_provider_token1] = ACTIONS(1013), + [aux_sym_send_env_token1] = ACTIONS(1013), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1013), + [aux_sym_server_alive_interval_token1] = ACTIONS(1013), + [aux_sym_session_type_token1] = ACTIONS(1013), + [aux_sym_set_env_token1] = ACTIONS(1013), + [aux_sym_stdin_null_token1] = ACTIONS(1013), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1013), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1013), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1013), + [aux_sym_syslog_facility_token1] = ACTIONS(1013), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1013), + [aux_sym_keep_alive_token1] = ACTIONS(1013), + [aux_sym_tag_token1] = ACTIONS(1013), + [aux_sym_tunnel_token1] = ACTIONS(1015), + [aux_sym_tunnel_device_token1] = ACTIONS(1013), + [aux_sym_update_host_keys_token1] = ACTIONS(1013), + [aux_sym_use_keychain_token1] = ACTIONS(1013), + [aux_sym_use_roaming_token1] = ACTIONS(1013), + [aux_sym_user_token1] = ACTIONS(1015), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1013), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1013), + [aux_sym_visual_host_key_token1] = ACTIONS(1013), + [aux_sym_xauth_location_token1] = ACTIONS(1013), }, [663] = { - [ts_builtin_sym_end] = ACTIONS(1608), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1610), - [aux_sym_match_token1] = ACTIONS(1608), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1608), - [aux_sym_address_family_token1] = ACTIONS(1608), - [aux_sym_batch_mode_token1] = ACTIONS(1608), - [aux_sym_bind_address_token1] = ACTIONS(1608), - [aux_sym_bind_interface_token1] = ACTIONS(1608), - [aux_sym_canonical_domains_token1] = ACTIONS(1608), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1608), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1608), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1608), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1608), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1608), - [aux_sym_certificate_file_token1] = ACTIONS(1608), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1608), - [aux_sym_channel_timeout_token1] = ACTIONS(1608), - [aux_sym_check_host_ip_token1] = ACTIONS(1608), - [aux_sym_ciphers_token1] = ACTIONS(1608), - [aux_sym_cipher_token1] = ACTIONS(1610), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1608), - [aux_sym_compression_token1] = ACTIONS(1608), - [aux_sym_connection_attempts_token1] = ACTIONS(1608), - [aux_sym_connect_timeout_token1] = ACTIONS(1608), - [aux_sym_control_master_token1] = ACTIONS(1608), - [aux_sym_control_path_token1] = ACTIONS(1608), - [aux_sym_control_persist_token1] = ACTIONS(1608), - [aux_sym_dynamic_forward_token1] = ACTIONS(1608), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1608), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1608), - [aux_sym_escape_char_token1] = ACTIONS(1608), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1608), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1608), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1608), - [aux_sym_forward_agent_token1] = ACTIONS(1608), - [aux_sym_forward_x11_token1] = ACTIONS(1610), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1608), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1608), - [aux_sym_gateway_ports_token1] = ACTIONS(1608), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1608), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1608), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1608), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1608), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1608), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1608), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1608), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1608), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1608), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1608), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1608), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1608), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1608), - [aux_sym_host_key_alias_token1] = ACTIONS(1608), - [aux_sym_hostname_token1] = ACTIONS(1608), - [aux_sym_identities_only_token1] = ACTIONS(1608), - [aux_sym_identity_agent_token1] = ACTIONS(1608), - [aux_sym_identity_file_token1] = ACTIONS(1608), - [aux_sym_ignore_unknown_token1] = ACTIONS(1608), - [aux_sym_include_token1] = ACTIONS(1608), - [aux_sym_ip_qos_token1] = ACTIONS(1608), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1608), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1608), - [aux_sym_kex_algorithms_token1] = ACTIONS(1608), - [aux_sym_known_hosts_command_token1] = ACTIONS(1608), - [aux_sym_local_command_token1] = ACTIONS(1608), - [aux_sym_local_forward_token1] = ACTIONS(1608), - [aux_sym_log_level_token1] = ACTIONS(1608), - [aux_sym_log_verbose_token1] = ACTIONS(1608), - [aux_sym_macs_token1] = ACTIONS(1608), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1608), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1608), - [aux_sym_password_authentication_token1] = ACTIONS(1608), - [aux_sym_permit_local_command_token1] = ACTIONS(1608), - [aux_sym_permit_remote_open_token1] = ACTIONS(1608), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1608), - [aux_sym_port_token1] = ACTIONS(1608), - [aux_sym_preferred_authentications_token1] = ACTIONS(1608), - [aux_sym_protocol_token1] = ACTIONS(1608), - [aux_sym_proxy_command_token1] = ACTIONS(1608), - [aux_sym_proxy_jump_token1] = ACTIONS(1608), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1608), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1608), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1608), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1608), - [aux_sym_rekey_limit_token1] = ACTIONS(1608), - [aux_sym_remote_command_token1] = ACTIONS(1608), - [aux_sym_remote_forward_token1] = ACTIONS(1608), - [aux_sym_request_tty_token1] = ACTIONS(1608), - [aux_sym_required_rsa_size_token1] = ACTIONS(1608), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1608), - [aux_sym_security_key_provider_token1] = ACTIONS(1608), - [aux_sym_send_env_token1] = ACTIONS(1608), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1608), - [aux_sym_server_alive_interval_token1] = ACTIONS(1608), - [aux_sym_session_type_token1] = ACTIONS(1608), - [aux_sym_set_env_token1] = ACTIONS(1608), - [aux_sym_stdin_null_token1] = ACTIONS(1608), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1608), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1608), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1608), - [aux_sym_syslog_facility_token1] = ACTIONS(1608), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1608), - [aux_sym_keep_alive_token1] = ACTIONS(1608), - [aux_sym_tag_token1] = ACTIONS(1608), - [aux_sym_tunnel_token1] = ACTIONS(1610), - [aux_sym_tunnel_device_token1] = ACTIONS(1608), - [aux_sym_update_host_keys_token1] = ACTIONS(1608), - [aux_sym_use_keychain_token1] = ACTIONS(1608), - [aux_sym_use_roaming_token1] = ACTIONS(1608), - [aux_sym_user_token1] = ACTIONS(1610), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1608), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1608), - [aux_sym_visual_host_key_token1] = ACTIONS(1608), - [aux_sym_xauth_location_token1] = ACTIONS(1608), + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1381), + [aux_sym_match_token1] = ACTIONS(1379), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1379), + [aux_sym_address_family_token1] = ACTIONS(1379), + [aux_sym_batch_mode_token1] = ACTIONS(1379), + [aux_sym_bind_address_token1] = ACTIONS(1379), + [aux_sym_bind_interface_token1] = ACTIONS(1379), + [aux_sym_canonical_domains_token1] = ACTIONS(1379), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1379), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1379), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1379), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1379), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1379), + [aux_sym_certificate_file_token1] = ACTIONS(1379), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1379), + [aux_sym_channel_timeout_token1] = ACTIONS(1379), + [aux_sym_check_host_ip_token1] = ACTIONS(1379), + [aux_sym_ciphers_token1] = ACTIONS(1379), + [aux_sym_cipher_token1] = ACTIONS(1381), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1379), + [aux_sym_compression_token1] = ACTIONS(1379), + [aux_sym_connection_attempts_token1] = ACTIONS(1379), + [aux_sym_connect_timeout_token1] = ACTIONS(1379), + [aux_sym_control_master_token1] = ACTIONS(1379), + [aux_sym_control_path_token1] = ACTIONS(1379), + [aux_sym_control_persist_token1] = ACTIONS(1379), + [aux_sym_dynamic_forward_token1] = ACTIONS(1379), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1379), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1379), + [aux_sym_escape_char_token1] = ACTIONS(1379), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1379), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1379), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1379), + [aux_sym_forward_agent_token1] = ACTIONS(1379), + [aux_sym_forward_x11_token1] = ACTIONS(1381), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1379), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1379), + [aux_sym_gateway_ports_token1] = ACTIONS(1379), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1379), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1379), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1379), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1379), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1379), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1379), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1379), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1379), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1379), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1379), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1379), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1379), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1379), + [aux_sym_host_key_alias_token1] = ACTIONS(1379), + [aux_sym_hostname_token1] = ACTIONS(1379), + [aux_sym_identities_only_token1] = ACTIONS(1379), + [aux_sym_identity_agent_token1] = ACTIONS(1379), + [aux_sym_identity_file_token1] = ACTIONS(1379), + [aux_sym_ignore_unknown_token1] = ACTIONS(1379), + [aux_sym_include_token1] = ACTIONS(1379), + [aux_sym_ip_qos_token1] = ACTIONS(1379), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1379), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1379), + [aux_sym_kex_algorithms_token1] = ACTIONS(1379), + [aux_sym_known_hosts_command_token1] = ACTIONS(1379), + [aux_sym_local_command_token1] = ACTIONS(1379), + [aux_sym_local_forward_token1] = ACTIONS(1379), + [aux_sym_log_level_token1] = ACTIONS(1379), + [aux_sym_log_verbose_token1] = ACTIONS(1379), + [aux_sym_macs_token1] = ACTIONS(1379), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1379), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1379), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1379), + [aux_sym_password_authentication_token1] = ACTIONS(1379), + [aux_sym_permit_local_command_token1] = ACTIONS(1379), + [aux_sym_permit_remote_open_token1] = ACTIONS(1379), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1379), + [aux_sym_port_token1] = ACTIONS(1379), + [aux_sym_preferred_authentications_token1] = ACTIONS(1379), + [aux_sym_protocol_token1] = ACTIONS(1379), + [aux_sym_proxy_command_token1] = ACTIONS(1379), + [aux_sym_proxy_jump_token1] = ACTIONS(1379), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1379), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1379), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1379), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1379), + [aux_sym_rekey_limit_token1] = ACTIONS(1379), + [aux_sym_remote_command_token1] = ACTIONS(1379), + [aux_sym_remote_forward_token1] = ACTIONS(1379), + [aux_sym_request_tty_token1] = ACTIONS(1379), + [aux_sym_required_rsa_size_token1] = ACTIONS(1379), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1379), + [aux_sym_security_key_provider_token1] = ACTIONS(1379), + [aux_sym_send_env_token1] = ACTIONS(1379), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1379), + [aux_sym_server_alive_interval_token1] = ACTIONS(1379), + [aux_sym_session_type_token1] = ACTIONS(1379), + [aux_sym_set_env_token1] = ACTIONS(1379), + [aux_sym_stdin_null_token1] = ACTIONS(1379), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1379), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1379), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1379), + [aux_sym_syslog_facility_token1] = ACTIONS(1379), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1379), + [aux_sym_keep_alive_token1] = ACTIONS(1379), + [aux_sym_tag_token1] = ACTIONS(1379), + [aux_sym_tunnel_token1] = ACTIONS(1381), + [aux_sym_tunnel_device_token1] = ACTIONS(1379), + [aux_sym_update_host_keys_token1] = ACTIONS(1379), + [aux_sym_use_keychain_token1] = ACTIONS(1379), + [aux_sym_use_roaming_token1] = ACTIONS(1379), + [aux_sym_user_token1] = ACTIONS(1381), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1379), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1379), + [aux_sym_visual_host_key_token1] = ACTIONS(1379), + [aux_sym_xauth_location_token1] = ACTIONS(1379), }, [664] = { - [ts_builtin_sym_end] = ACTIONS(1852), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1854), - [aux_sym_match_token1] = ACTIONS(1852), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1852), - [aux_sym_address_family_token1] = ACTIONS(1852), - [aux_sym_batch_mode_token1] = ACTIONS(1852), - [aux_sym_bind_address_token1] = ACTIONS(1852), - [aux_sym_bind_interface_token1] = ACTIONS(1852), - [aux_sym_canonical_domains_token1] = ACTIONS(1852), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1852), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1852), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1852), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1852), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1852), - [aux_sym_certificate_file_token1] = ACTIONS(1852), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1852), - [aux_sym_channel_timeout_token1] = ACTIONS(1852), - [aux_sym_check_host_ip_token1] = ACTIONS(1852), - [aux_sym_ciphers_token1] = ACTIONS(1852), - [aux_sym_cipher_token1] = ACTIONS(1854), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1852), - [aux_sym_compression_token1] = ACTIONS(1852), - [aux_sym_connection_attempts_token1] = ACTIONS(1852), - [aux_sym_connect_timeout_token1] = ACTIONS(1852), - [aux_sym_control_master_token1] = ACTIONS(1852), - [aux_sym_control_path_token1] = ACTIONS(1852), - [aux_sym_control_persist_token1] = ACTIONS(1852), - [aux_sym_dynamic_forward_token1] = ACTIONS(1852), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1852), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1852), - [aux_sym_escape_char_token1] = ACTIONS(1852), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1852), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1852), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1852), - [aux_sym_forward_agent_token1] = ACTIONS(1852), - [aux_sym_forward_x11_token1] = ACTIONS(1854), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1852), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1852), - [aux_sym_gateway_ports_token1] = ACTIONS(1852), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1852), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1852), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1852), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1852), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1852), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1852), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1852), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1852), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1852), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1852), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1852), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1852), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1852), - [aux_sym_host_key_alias_token1] = ACTIONS(1852), - [aux_sym_hostname_token1] = ACTIONS(1852), - [aux_sym_identities_only_token1] = ACTIONS(1852), - [aux_sym_identity_agent_token1] = ACTIONS(1852), - [aux_sym_identity_file_token1] = ACTIONS(1852), - [aux_sym_ignore_unknown_token1] = ACTIONS(1852), - [aux_sym_include_token1] = ACTIONS(1852), - [aux_sym_ip_qos_token1] = ACTIONS(1852), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1852), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1852), - [aux_sym_kex_algorithms_token1] = ACTIONS(1852), - [aux_sym_known_hosts_command_token1] = ACTIONS(1852), - [aux_sym_local_command_token1] = ACTIONS(1852), - [aux_sym_local_forward_token1] = ACTIONS(1852), - [aux_sym_log_level_token1] = ACTIONS(1852), - [aux_sym_log_verbose_token1] = ACTIONS(1852), - [aux_sym_macs_token1] = ACTIONS(1852), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1852), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1852), - [aux_sym_password_authentication_token1] = ACTIONS(1852), - [aux_sym_permit_local_command_token1] = ACTIONS(1852), - [aux_sym_permit_remote_open_token1] = ACTIONS(1852), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1852), - [aux_sym_port_token1] = ACTIONS(1852), - [aux_sym_preferred_authentications_token1] = ACTIONS(1852), - [aux_sym_protocol_token1] = ACTIONS(1852), - [aux_sym_proxy_command_token1] = ACTIONS(1852), - [aux_sym_proxy_jump_token1] = ACTIONS(1852), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1852), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1852), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1852), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1852), - [aux_sym_rekey_limit_token1] = ACTIONS(1852), - [aux_sym_remote_command_token1] = ACTIONS(1852), - [aux_sym_remote_forward_token1] = ACTIONS(1852), - [aux_sym_request_tty_token1] = ACTIONS(1852), - [aux_sym_required_rsa_size_token1] = ACTIONS(1852), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1852), - [aux_sym_security_key_provider_token1] = ACTIONS(1852), - [aux_sym_send_env_token1] = ACTIONS(1852), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1852), - [aux_sym_server_alive_interval_token1] = ACTIONS(1852), - [aux_sym_session_type_token1] = ACTIONS(1852), - [aux_sym_set_env_token1] = ACTIONS(1852), - [aux_sym_stdin_null_token1] = ACTIONS(1852), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1852), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1852), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1852), - [aux_sym_syslog_facility_token1] = ACTIONS(1852), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1852), - [aux_sym_keep_alive_token1] = ACTIONS(1852), - [aux_sym_tag_token1] = ACTIONS(1852), - [aux_sym_tunnel_token1] = ACTIONS(1854), - [aux_sym_tunnel_device_token1] = ACTIONS(1852), - [aux_sym_update_host_keys_token1] = ACTIONS(1852), - [aux_sym_use_keychain_token1] = ACTIONS(1852), - [aux_sym_use_roaming_token1] = ACTIONS(1852), - [aux_sym_user_token1] = ACTIONS(1854), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1852), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1852), - [aux_sym_visual_host_key_token1] = ACTIONS(1852), - [aux_sym_xauth_location_token1] = ACTIONS(1852), + [ts_builtin_sym_end] = ACTIONS(1659), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1661), + [aux_sym_match_token1] = ACTIONS(1659), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1659), + [aux_sym_address_family_token1] = ACTIONS(1659), + [aux_sym_batch_mode_token1] = ACTIONS(1659), + [aux_sym_bind_address_token1] = ACTIONS(1659), + [aux_sym_bind_interface_token1] = ACTIONS(1659), + [aux_sym_canonical_domains_token1] = ACTIONS(1659), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1659), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1659), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1659), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1659), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1659), + [aux_sym_certificate_file_token1] = ACTIONS(1659), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1659), + [aux_sym_channel_timeout_token1] = ACTIONS(1659), + [aux_sym_check_host_ip_token1] = ACTIONS(1659), + [aux_sym_ciphers_token1] = ACTIONS(1659), + [aux_sym_cipher_token1] = ACTIONS(1661), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1659), + [aux_sym_compression_token1] = ACTIONS(1659), + [aux_sym_connection_attempts_token1] = ACTIONS(1659), + [aux_sym_connect_timeout_token1] = ACTIONS(1659), + [aux_sym_control_master_token1] = ACTIONS(1659), + [aux_sym_control_path_token1] = ACTIONS(1659), + [aux_sym_control_persist_token1] = ACTIONS(1659), + [aux_sym_dynamic_forward_token1] = ACTIONS(1659), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1659), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1659), + [aux_sym_escape_char_token1] = ACTIONS(1659), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1659), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1659), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1659), + [aux_sym_forward_agent_token1] = ACTIONS(1659), + [aux_sym_forward_x11_token1] = ACTIONS(1661), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1659), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1659), + [aux_sym_gateway_ports_token1] = ACTIONS(1659), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1659), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1659), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1659), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1659), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1659), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1659), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1659), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1659), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1659), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1659), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1659), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1659), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1659), + [aux_sym_host_key_alias_token1] = ACTIONS(1659), + [aux_sym_hostname_token1] = ACTIONS(1659), + [aux_sym_identities_only_token1] = ACTIONS(1659), + [aux_sym_identity_agent_token1] = ACTIONS(1659), + [aux_sym_identity_file_token1] = ACTIONS(1659), + [aux_sym_ignore_unknown_token1] = ACTIONS(1659), + [aux_sym_include_token1] = ACTIONS(1659), + [aux_sym_ip_qos_token1] = ACTIONS(1659), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1659), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1659), + [aux_sym_kex_algorithms_token1] = ACTIONS(1659), + [aux_sym_known_hosts_command_token1] = ACTIONS(1659), + [aux_sym_local_command_token1] = ACTIONS(1659), + [aux_sym_local_forward_token1] = ACTIONS(1659), + [aux_sym_log_level_token1] = ACTIONS(1659), + [aux_sym_log_verbose_token1] = ACTIONS(1659), + [aux_sym_macs_token1] = ACTIONS(1659), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1659), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1659), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1659), + [aux_sym_password_authentication_token1] = ACTIONS(1659), + [aux_sym_permit_local_command_token1] = ACTIONS(1659), + [aux_sym_permit_remote_open_token1] = ACTIONS(1659), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1659), + [aux_sym_port_token1] = ACTIONS(1659), + [aux_sym_preferred_authentications_token1] = ACTIONS(1659), + [aux_sym_protocol_token1] = ACTIONS(1659), + [aux_sym_proxy_command_token1] = ACTIONS(1659), + [aux_sym_proxy_jump_token1] = ACTIONS(1659), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1659), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1659), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1659), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1659), + [aux_sym_rekey_limit_token1] = ACTIONS(1659), + [aux_sym_remote_command_token1] = ACTIONS(1659), + [aux_sym_remote_forward_token1] = ACTIONS(1659), + [aux_sym_request_tty_token1] = ACTIONS(1659), + [aux_sym_required_rsa_size_token1] = ACTIONS(1659), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1659), + [aux_sym_security_key_provider_token1] = ACTIONS(1659), + [aux_sym_send_env_token1] = ACTIONS(1659), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1659), + [aux_sym_server_alive_interval_token1] = ACTIONS(1659), + [aux_sym_session_type_token1] = ACTIONS(1659), + [aux_sym_set_env_token1] = ACTIONS(1659), + [aux_sym_stdin_null_token1] = ACTIONS(1659), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1659), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1659), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1659), + [aux_sym_syslog_facility_token1] = ACTIONS(1659), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1659), + [aux_sym_keep_alive_token1] = ACTIONS(1659), + [aux_sym_tag_token1] = ACTIONS(1659), + [aux_sym_tunnel_token1] = ACTIONS(1661), + [aux_sym_tunnel_device_token1] = ACTIONS(1659), + [aux_sym_update_host_keys_token1] = ACTIONS(1659), + [aux_sym_use_keychain_token1] = ACTIONS(1659), + [aux_sym_use_roaming_token1] = ACTIONS(1659), + [aux_sym_user_token1] = ACTIONS(1661), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1659), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1659), + [aux_sym_visual_host_key_token1] = ACTIONS(1659), + [aux_sym_xauth_location_token1] = ACTIONS(1659), }, [665] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1958), - [aux_sym_match_token1] = ACTIONS(1956), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1956), - [aux_sym_address_family_token1] = ACTIONS(1956), - [aux_sym_batch_mode_token1] = ACTIONS(1956), - [aux_sym_bind_address_token1] = ACTIONS(1956), - [aux_sym_bind_interface_token1] = ACTIONS(1956), - [aux_sym_canonical_domains_token1] = ACTIONS(1956), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1956), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1956), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1956), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1956), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1956), - [aux_sym_certificate_file_token1] = ACTIONS(1956), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1956), - [aux_sym_channel_timeout_token1] = ACTIONS(1956), - [aux_sym_check_host_ip_token1] = ACTIONS(1956), - [aux_sym_ciphers_token1] = ACTIONS(1956), - [aux_sym_cipher_token1] = ACTIONS(1958), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1956), - [aux_sym_compression_token1] = ACTIONS(1956), - [aux_sym_connection_attempts_token1] = ACTIONS(1956), - [aux_sym_connect_timeout_token1] = ACTIONS(1956), - [aux_sym_control_master_token1] = ACTIONS(1956), - [aux_sym_control_path_token1] = ACTIONS(1956), - [aux_sym_control_persist_token1] = ACTIONS(1956), - [aux_sym_dynamic_forward_token1] = ACTIONS(1956), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1956), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1956), - [aux_sym_escape_char_token1] = ACTIONS(1956), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1956), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1956), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1956), - [aux_sym_forward_agent_token1] = ACTIONS(1956), - [aux_sym_forward_x11_token1] = ACTIONS(1958), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1956), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1956), - [aux_sym_gateway_ports_token1] = ACTIONS(1956), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1956), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1956), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1956), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1956), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1956), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1956), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1956), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1956), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1956), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1956), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1956), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1956), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1956), - [aux_sym_host_key_alias_token1] = ACTIONS(1956), - [aux_sym_hostname_token1] = ACTIONS(1956), - [aux_sym_identities_only_token1] = ACTIONS(1956), - [aux_sym_identity_agent_token1] = ACTIONS(1956), - [aux_sym_identity_file_token1] = ACTIONS(1956), - [aux_sym_ignore_unknown_token1] = ACTIONS(1956), - [aux_sym_include_token1] = ACTIONS(1956), - [aux_sym_ip_qos_token1] = ACTIONS(1956), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1956), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1956), - [aux_sym_kex_algorithms_token1] = ACTIONS(1956), - [aux_sym_known_hosts_command_token1] = ACTIONS(1956), - [aux_sym_local_command_token1] = ACTIONS(1956), - [aux_sym_local_forward_token1] = ACTIONS(1956), - [aux_sym_log_level_token1] = ACTIONS(1956), - [aux_sym_log_verbose_token1] = ACTIONS(1956), - [aux_sym_macs_token1] = ACTIONS(1956), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1956), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1956), - [aux_sym_password_authentication_token1] = ACTIONS(1956), - [aux_sym_permit_local_command_token1] = ACTIONS(1956), - [aux_sym_permit_remote_open_token1] = ACTIONS(1956), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1956), - [aux_sym_port_token1] = ACTIONS(1956), - [aux_sym_preferred_authentications_token1] = ACTIONS(1956), - [aux_sym_protocol_token1] = ACTIONS(1956), - [aux_sym_proxy_command_token1] = ACTIONS(1956), - [aux_sym_proxy_jump_token1] = ACTIONS(1956), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1956), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1956), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1956), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1956), - [aux_sym_rekey_limit_token1] = ACTIONS(1956), - [aux_sym_remote_command_token1] = ACTIONS(1956), - [aux_sym_remote_forward_token1] = ACTIONS(1956), - [aux_sym_request_tty_token1] = ACTIONS(1956), - [aux_sym_required_rsa_size_token1] = ACTIONS(1956), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1956), - [aux_sym_security_key_provider_token1] = ACTIONS(1956), - [aux_sym_send_env_token1] = ACTIONS(1956), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1956), - [aux_sym_server_alive_interval_token1] = ACTIONS(1956), - [aux_sym_session_type_token1] = ACTIONS(1956), - [aux_sym_set_env_token1] = ACTIONS(1956), - [aux_sym_stdin_null_token1] = ACTIONS(1956), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1956), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1956), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1956), - [aux_sym_syslog_facility_token1] = ACTIONS(1956), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1956), - [aux_sym_keep_alive_token1] = ACTIONS(1956), - [aux_sym_tag_token1] = ACTIONS(1956), - [aux_sym_tunnel_token1] = ACTIONS(1958), - [aux_sym_tunnel_device_token1] = ACTIONS(1956), - [aux_sym_update_host_keys_token1] = ACTIONS(1956), - [aux_sym_use_keychain_token1] = ACTIONS(1956), - [aux_sym_use_roaming_token1] = ACTIONS(1956), - [aux_sym_user_token1] = ACTIONS(1958), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1956), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1956), - [aux_sym_visual_host_key_token1] = ACTIONS(1956), - [aux_sym_xauth_location_token1] = ACTIONS(1956), + [ts_builtin_sym_end] = ACTIONS(1385), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1387), + [aux_sym_match_token1] = ACTIONS(1385), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1385), + [aux_sym_address_family_token1] = ACTIONS(1385), + [aux_sym_batch_mode_token1] = ACTIONS(1385), + [aux_sym_bind_address_token1] = ACTIONS(1385), + [aux_sym_bind_interface_token1] = ACTIONS(1385), + [aux_sym_canonical_domains_token1] = ACTIONS(1385), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1385), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1385), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1385), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1385), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1385), + [aux_sym_certificate_file_token1] = ACTIONS(1385), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1385), + [aux_sym_channel_timeout_token1] = ACTIONS(1385), + [aux_sym_check_host_ip_token1] = ACTIONS(1385), + [aux_sym_ciphers_token1] = ACTIONS(1385), + [aux_sym_cipher_token1] = ACTIONS(1387), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1385), + [aux_sym_compression_token1] = ACTIONS(1385), + [aux_sym_connection_attempts_token1] = ACTIONS(1385), + [aux_sym_connect_timeout_token1] = ACTIONS(1385), + [aux_sym_control_master_token1] = ACTIONS(1385), + [aux_sym_control_path_token1] = ACTIONS(1385), + [aux_sym_control_persist_token1] = ACTIONS(1385), + [aux_sym_dynamic_forward_token1] = ACTIONS(1385), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1385), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1385), + [aux_sym_escape_char_token1] = ACTIONS(1385), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1385), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1385), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1385), + [aux_sym_forward_agent_token1] = ACTIONS(1385), + [aux_sym_forward_x11_token1] = ACTIONS(1387), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1385), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1385), + [aux_sym_gateway_ports_token1] = ACTIONS(1385), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1385), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1385), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1385), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1385), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1385), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1385), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1385), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1385), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1385), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1385), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1385), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1385), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1385), + [aux_sym_host_key_alias_token1] = ACTIONS(1385), + [aux_sym_hostname_token1] = ACTIONS(1385), + [aux_sym_identities_only_token1] = ACTIONS(1385), + [aux_sym_identity_agent_token1] = ACTIONS(1385), + [aux_sym_identity_file_token1] = ACTIONS(1385), + [aux_sym_ignore_unknown_token1] = ACTIONS(1385), + [aux_sym_include_token1] = ACTIONS(1385), + [aux_sym_ip_qos_token1] = ACTIONS(1385), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1385), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1385), + [aux_sym_kex_algorithms_token1] = ACTIONS(1385), + [aux_sym_known_hosts_command_token1] = ACTIONS(1385), + [aux_sym_local_command_token1] = ACTIONS(1385), + [aux_sym_local_forward_token1] = ACTIONS(1385), + [aux_sym_log_level_token1] = ACTIONS(1385), + [aux_sym_log_verbose_token1] = ACTIONS(1385), + [aux_sym_macs_token1] = ACTIONS(1385), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1385), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1385), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1385), + [aux_sym_password_authentication_token1] = ACTIONS(1385), + [aux_sym_permit_local_command_token1] = ACTIONS(1385), + [aux_sym_permit_remote_open_token1] = ACTIONS(1385), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1385), + [aux_sym_port_token1] = ACTIONS(1385), + [aux_sym_preferred_authentications_token1] = ACTIONS(1385), + [aux_sym_protocol_token1] = ACTIONS(1385), + [aux_sym_proxy_command_token1] = ACTIONS(1385), + [aux_sym_proxy_jump_token1] = ACTIONS(1385), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1385), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1385), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1385), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1385), + [aux_sym_rekey_limit_token1] = ACTIONS(1385), + [aux_sym_remote_command_token1] = ACTIONS(1385), + [aux_sym_remote_forward_token1] = ACTIONS(1385), + [aux_sym_request_tty_token1] = ACTIONS(1385), + [aux_sym_required_rsa_size_token1] = ACTIONS(1385), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1385), + [aux_sym_security_key_provider_token1] = ACTIONS(1385), + [aux_sym_send_env_token1] = ACTIONS(1385), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1385), + [aux_sym_server_alive_interval_token1] = ACTIONS(1385), + [aux_sym_session_type_token1] = ACTIONS(1385), + [aux_sym_set_env_token1] = ACTIONS(1385), + [aux_sym_stdin_null_token1] = ACTIONS(1385), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1385), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1385), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1385), + [aux_sym_syslog_facility_token1] = ACTIONS(1385), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1385), + [aux_sym_keep_alive_token1] = ACTIONS(1385), + [aux_sym_tag_token1] = ACTIONS(1385), + [aux_sym_tunnel_token1] = ACTIONS(1387), + [aux_sym_tunnel_device_token1] = ACTIONS(1385), + [aux_sym_update_host_keys_token1] = ACTIONS(1385), + [aux_sym_use_keychain_token1] = ACTIONS(1385), + [aux_sym_use_roaming_token1] = ACTIONS(1385), + [aux_sym_user_token1] = ACTIONS(1387), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1385), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1385), + [aux_sym_visual_host_key_token1] = ACTIONS(1385), + [aux_sym_xauth_location_token1] = ACTIONS(1385), }, [666] = { - [ts_builtin_sym_end] = ACTIONS(624), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(626), - [aux_sym_match_token1] = ACTIONS(624), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(624), - [aux_sym_address_family_token1] = ACTIONS(624), - [aux_sym_batch_mode_token1] = ACTIONS(624), - [aux_sym_bind_address_token1] = ACTIONS(624), - [aux_sym_bind_interface_token1] = ACTIONS(624), - [aux_sym_canonical_domains_token1] = ACTIONS(624), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(624), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(624), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(624), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(624), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(624), - [aux_sym_certificate_file_token1] = ACTIONS(624), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(624), - [aux_sym_channel_timeout_token1] = ACTIONS(624), - [aux_sym_check_host_ip_token1] = ACTIONS(624), - [aux_sym_ciphers_token1] = ACTIONS(624), - [aux_sym_cipher_token1] = ACTIONS(626), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(624), - [aux_sym_compression_token1] = ACTIONS(624), - [aux_sym_connection_attempts_token1] = ACTIONS(624), - [aux_sym_connect_timeout_token1] = ACTIONS(624), - [aux_sym_control_master_token1] = ACTIONS(624), - [aux_sym_control_path_token1] = ACTIONS(624), - [aux_sym_control_persist_token1] = ACTIONS(624), - [aux_sym_dynamic_forward_token1] = ACTIONS(624), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(624), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(624), - [aux_sym_escape_char_token1] = ACTIONS(624), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(624), - [aux_sym_fingerprint_hash_token1] = ACTIONS(624), - [aux_sym_fork_after_authentication_token1] = ACTIONS(624), - [aux_sym_forward_agent_token1] = ACTIONS(624), - [aux_sym_forward_x11_token1] = ACTIONS(626), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(624), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(624), - [aux_sym_gateway_ports_token1] = ACTIONS(624), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(624), - [aux_sym_gssapi_authentication_token1] = ACTIONS(624), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(624), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(624), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(624), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(624), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(624), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(624), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(624), - [aux_sym_hash_known_hosts_token1] = ACTIONS(624), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(624), - [aux_sym_hostbased_authentication_token1] = ACTIONS(624), - [aux_sym_host_key_algorithms_token1] = ACTIONS(624), - [aux_sym_host_key_alias_token1] = ACTIONS(624), - [aux_sym_hostname_token1] = ACTIONS(624), - [aux_sym_identities_only_token1] = ACTIONS(624), - [aux_sym_identity_agent_token1] = ACTIONS(624), - [aux_sym_identity_file_token1] = ACTIONS(624), - [aux_sym_ignore_unknown_token1] = ACTIONS(624), - [aux_sym_include_token1] = ACTIONS(624), - [aux_sym_ip_qos_token1] = ACTIONS(624), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(624), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(624), - [aux_sym_kex_algorithms_token1] = ACTIONS(624), - [aux_sym_known_hosts_command_token1] = ACTIONS(624), - [aux_sym_local_command_token1] = ACTIONS(624), - [aux_sym_local_forward_token1] = ACTIONS(624), - [aux_sym_log_level_token1] = ACTIONS(624), - [aux_sym_log_verbose_token1] = ACTIONS(624), - [aux_sym_macs_token1] = ACTIONS(624), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(624), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(624), - [aux_sym_password_authentication_token1] = ACTIONS(624), - [aux_sym_permit_local_command_token1] = ACTIONS(624), - [aux_sym_permit_remote_open_token1] = ACTIONS(624), - [aux_sym_pkcs11_provider_token1] = ACTIONS(624), - [aux_sym_port_token1] = ACTIONS(624), - [aux_sym_preferred_authentications_token1] = ACTIONS(624), - [aux_sym_protocol_token1] = ACTIONS(624), - [aux_sym_proxy_command_token1] = ACTIONS(624), - [aux_sym_proxy_jump_token1] = ACTIONS(624), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(624), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(624), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(624), - [aux_sym_pubkey_authentication_token1] = ACTIONS(624), - [aux_sym_rekey_limit_token1] = ACTIONS(624), - [aux_sym_remote_command_token1] = ACTIONS(624), - [aux_sym_remote_forward_token1] = ACTIONS(624), - [aux_sym_request_tty_token1] = ACTIONS(624), - [aux_sym_required_rsa_size_token1] = ACTIONS(624), - [aux_sym_revoked_host_keys_token1] = ACTIONS(624), - [aux_sym_security_key_provider_token1] = ACTIONS(624), - [aux_sym_send_env_token1] = ACTIONS(624), - [aux_sym_server_alive_count_max_token1] = ACTIONS(624), - [aux_sym_server_alive_interval_token1] = ACTIONS(624), - [aux_sym_session_type_token1] = ACTIONS(624), - [aux_sym_set_env_token1] = ACTIONS(624), - [aux_sym_stdin_null_token1] = ACTIONS(624), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(624), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(624), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(624), - [aux_sym_syslog_facility_token1] = ACTIONS(624), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(624), - [aux_sym_keep_alive_token1] = ACTIONS(624), - [aux_sym_tag_token1] = ACTIONS(624), - [aux_sym_tunnel_token1] = ACTIONS(626), - [aux_sym_tunnel_device_token1] = ACTIONS(624), - [aux_sym_update_host_keys_token1] = ACTIONS(624), - [aux_sym_use_keychain_token1] = ACTIONS(624), - [aux_sym_use_roaming_token1] = ACTIONS(624), - [aux_sym_user_token1] = ACTIONS(626), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(624), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(624), - [aux_sym_visual_host_key_token1] = ACTIONS(624), - [aux_sym_xauth_location_token1] = ACTIONS(624), + [ts_builtin_sym_end] = ACTIONS(1571), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1573), + [aux_sym_match_token1] = ACTIONS(1571), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1571), + [aux_sym_address_family_token1] = ACTIONS(1571), + [aux_sym_batch_mode_token1] = ACTIONS(1571), + [aux_sym_bind_address_token1] = ACTIONS(1571), + [aux_sym_bind_interface_token1] = ACTIONS(1571), + [aux_sym_canonical_domains_token1] = ACTIONS(1571), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1571), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1571), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1571), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1571), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1571), + [aux_sym_certificate_file_token1] = ACTIONS(1571), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1571), + [aux_sym_channel_timeout_token1] = ACTIONS(1571), + [aux_sym_check_host_ip_token1] = ACTIONS(1571), + [aux_sym_ciphers_token1] = ACTIONS(1571), + [aux_sym_cipher_token1] = ACTIONS(1573), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1571), + [aux_sym_compression_token1] = ACTIONS(1571), + [aux_sym_connection_attempts_token1] = ACTIONS(1571), + [aux_sym_connect_timeout_token1] = ACTIONS(1571), + [aux_sym_control_master_token1] = ACTIONS(1571), + [aux_sym_control_path_token1] = ACTIONS(1571), + [aux_sym_control_persist_token1] = ACTIONS(1571), + [aux_sym_dynamic_forward_token1] = ACTIONS(1571), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1571), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1571), + [aux_sym_escape_char_token1] = ACTIONS(1571), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1571), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1571), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1571), + [aux_sym_forward_agent_token1] = ACTIONS(1571), + [aux_sym_forward_x11_token1] = ACTIONS(1573), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1571), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1571), + [aux_sym_gateway_ports_token1] = ACTIONS(1571), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1571), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1571), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1571), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1571), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1571), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1571), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1571), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1571), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1571), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1571), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1571), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1571), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1571), + [aux_sym_host_key_alias_token1] = ACTIONS(1571), + [aux_sym_hostname_token1] = ACTIONS(1571), + [aux_sym_identities_only_token1] = ACTIONS(1571), + [aux_sym_identity_agent_token1] = ACTIONS(1571), + [aux_sym_identity_file_token1] = ACTIONS(1571), + [aux_sym_ignore_unknown_token1] = ACTIONS(1571), + [aux_sym_include_token1] = ACTIONS(1571), + [aux_sym_ip_qos_token1] = ACTIONS(1571), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1571), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1571), + [aux_sym_kex_algorithms_token1] = ACTIONS(1571), + [aux_sym_known_hosts_command_token1] = ACTIONS(1571), + [aux_sym_local_command_token1] = ACTIONS(1571), + [aux_sym_local_forward_token1] = ACTIONS(1571), + [aux_sym_log_level_token1] = ACTIONS(1571), + [aux_sym_log_verbose_token1] = ACTIONS(1571), + [aux_sym_macs_token1] = ACTIONS(1571), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1571), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1571), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1571), + [aux_sym_password_authentication_token1] = ACTIONS(1571), + [aux_sym_permit_local_command_token1] = ACTIONS(1571), + [aux_sym_permit_remote_open_token1] = ACTIONS(1571), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1571), + [aux_sym_port_token1] = ACTIONS(1571), + [aux_sym_preferred_authentications_token1] = ACTIONS(1571), + [aux_sym_protocol_token1] = ACTIONS(1571), + [aux_sym_proxy_command_token1] = ACTIONS(1571), + [aux_sym_proxy_jump_token1] = ACTIONS(1571), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1571), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1571), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1571), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1571), + [aux_sym_rekey_limit_token1] = ACTIONS(1571), + [aux_sym_remote_command_token1] = ACTIONS(1571), + [aux_sym_remote_forward_token1] = ACTIONS(1571), + [aux_sym_request_tty_token1] = ACTIONS(1571), + [aux_sym_required_rsa_size_token1] = ACTIONS(1571), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1571), + [aux_sym_security_key_provider_token1] = ACTIONS(1571), + [aux_sym_send_env_token1] = ACTIONS(1571), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1571), + [aux_sym_server_alive_interval_token1] = ACTIONS(1571), + [aux_sym_session_type_token1] = ACTIONS(1571), + [aux_sym_set_env_token1] = ACTIONS(1571), + [aux_sym_stdin_null_token1] = ACTIONS(1571), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1571), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1571), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1571), + [aux_sym_syslog_facility_token1] = ACTIONS(1571), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1571), + [aux_sym_keep_alive_token1] = ACTIONS(1571), + [aux_sym_tag_token1] = ACTIONS(1571), + [aux_sym_tunnel_token1] = ACTIONS(1573), + [aux_sym_tunnel_device_token1] = ACTIONS(1571), + [aux_sym_update_host_keys_token1] = ACTIONS(1571), + [aux_sym_use_keychain_token1] = ACTIONS(1571), + [aux_sym_use_roaming_token1] = ACTIONS(1571), + [aux_sym_user_token1] = ACTIONS(1573), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1571), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1571), + [aux_sym_visual_host_key_token1] = ACTIONS(1571), + [aux_sym_xauth_location_token1] = ACTIONS(1571), }, [667] = { - [ts_builtin_sym_end] = ACTIONS(630), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(632), - [aux_sym_match_token1] = ACTIONS(630), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(630), - [aux_sym_address_family_token1] = ACTIONS(630), - [aux_sym_batch_mode_token1] = ACTIONS(630), - [aux_sym_bind_address_token1] = ACTIONS(630), - [aux_sym_bind_interface_token1] = ACTIONS(630), - [aux_sym_canonical_domains_token1] = ACTIONS(630), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(630), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(630), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(630), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(630), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(630), - [aux_sym_certificate_file_token1] = ACTIONS(630), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(630), - [aux_sym_channel_timeout_token1] = ACTIONS(630), - [aux_sym_check_host_ip_token1] = ACTIONS(630), - [aux_sym_ciphers_token1] = ACTIONS(630), - [aux_sym_cipher_token1] = ACTIONS(632), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(630), - [aux_sym_compression_token1] = ACTIONS(630), - [aux_sym_connection_attempts_token1] = ACTIONS(630), - [aux_sym_connect_timeout_token1] = ACTIONS(630), - [aux_sym_control_master_token1] = ACTIONS(630), - [aux_sym_control_path_token1] = ACTIONS(630), - [aux_sym_control_persist_token1] = ACTIONS(630), - [aux_sym_dynamic_forward_token1] = ACTIONS(630), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(630), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(630), - [aux_sym_escape_char_token1] = ACTIONS(630), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(630), - [aux_sym_fingerprint_hash_token1] = ACTIONS(630), - [aux_sym_fork_after_authentication_token1] = ACTIONS(630), - [aux_sym_forward_agent_token1] = ACTIONS(630), - [aux_sym_forward_x11_token1] = ACTIONS(632), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(630), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(630), - [aux_sym_gateway_ports_token1] = ACTIONS(630), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(630), - [aux_sym_gssapi_authentication_token1] = ACTIONS(630), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(630), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(630), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(630), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(630), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(630), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(630), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(630), - [aux_sym_hash_known_hosts_token1] = ACTIONS(630), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(630), - [aux_sym_hostbased_authentication_token1] = ACTIONS(630), - [aux_sym_host_key_algorithms_token1] = ACTIONS(630), - [aux_sym_host_key_alias_token1] = ACTIONS(630), - [aux_sym_hostname_token1] = ACTIONS(630), - [aux_sym_identities_only_token1] = ACTIONS(630), - [aux_sym_identity_agent_token1] = ACTIONS(630), - [aux_sym_identity_file_token1] = ACTIONS(630), - [aux_sym_ignore_unknown_token1] = ACTIONS(630), - [aux_sym_include_token1] = ACTIONS(630), - [aux_sym_ip_qos_token1] = ACTIONS(630), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(630), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(630), - [aux_sym_kex_algorithms_token1] = ACTIONS(630), - [aux_sym_known_hosts_command_token1] = ACTIONS(630), - [aux_sym_local_command_token1] = ACTIONS(630), - [aux_sym_local_forward_token1] = ACTIONS(630), - [aux_sym_log_level_token1] = ACTIONS(630), - [aux_sym_log_verbose_token1] = ACTIONS(630), - [aux_sym_macs_token1] = ACTIONS(630), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(630), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(630), - [aux_sym_password_authentication_token1] = ACTIONS(630), - [aux_sym_permit_local_command_token1] = ACTIONS(630), - [aux_sym_permit_remote_open_token1] = ACTIONS(630), - [aux_sym_pkcs11_provider_token1] = ACTIONS(630), - [aux_sym_port_token1] = ACTIONS(630), - [aux_sym_preferred_authentications_token1] = ACTIONS(630), - [aux_sym_protocol_token1] = ACTIONS(630), - [aux_sym_proxy_command_token1] = ACTIONS(630), - [aux_sym_proxy_jump_token1] = ACTIONS(630), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(630), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(630), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(630), - [aux_sym_pubkey_authentication_token1] = ACTIONS(630), - [aux_sym_rekey_limit_token1] = ACTIONS(630), - [aux_sym_remote_command_token1] = ACTIONS(630), - [aux_sym_remote_forward_token1] = ACTIONS(630), - [aux_sym_request_tty_token1] = ACTIONS(630), - [aux_sym_required_rsa_size_token1] = ACTIONS(630), - [aux_sym_revoked_host_keys_token1] = ACTIONS(630), - [aux_sym_security_key_provider_token1] = ACTIONS(630), - [aux_sym_send_env_token1] = ACTIONS(630), - [aux_sym_server_alive_count_max_token1] = ACTIONS(630), - [aux_sym_server_alive_interval_token1] = ACTIONS(630), - [aux_sym_session_type_token1] = ACTIONS(630), - [aux_sym_set_env_token1] = ACTIONS(630), - [aux_sym_stdin_null_token1] = ACTIONS(630), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(630), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(630), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(630), - [aux_sym_syslog_facility_token1] = ACTIONS(630), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(630), - [aux_sym_keep_alive_token1] = ACTIONS(630), - [aux_sym_tag_token1] = ACTIONS(630), - [aux_sym_tunnel_token1] = ACTIONS(632), - [aux_sym_tunnel_device_token1] = ACTIONS(630), - [aux_sym_update_host_keys_token1] = ACTIONS(630), - [aux_sym_use_keychain_token1] = ACTIONS(630), - [aux_sym_use_roaming_token1] = ACTIONS(630), - [aux_sym_user_token1] = ACTIONS(632), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(630), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(630), - [aux_sym_visual_host_key_token1] = ACTIONS(630), - [aux_sym_xauth_location_token1] = ACTIONS(630), + [ts_builtin_sym_end] = ACTIONS(3559), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3561), + [aux_sym_match_token1] = ACTIONS(3559), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3559), + [aux_sym_address_family_token1] = ACTIONS(3559), + [aux_sym_batch_mode_token1] = ACTIONS(3559), + [aux_sym_bind_address_token1] = ACTIONS(3559), + [aux_sym_bind_interface_token1] = ACTIONS(3559), + [aux_sym_canonical_domains_token1] = ACTIONS(3559), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3559), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3559), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3559), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3559), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3559), + [aux_sym_certificate_file_token1] = ACTIONS(3559), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3559), + [aux_sym_channel_timeout_token1] = ACTIONS(3559), + [aux_sym_check_host_ip_token1] = ACTIONS(3559), + [aux_sym_ciphers_token1] = ACTIONS(3559), + [aux_sym_cipher_token1] = ACTIONS(3561), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3559), + [aux_sym_compression_token1] = ACTIONS(3559), + [aux_sym_connection_attempts_token1] = ACTIONS(3559), + [aux_sym_connect_timeout_token1] = ACTIONS(3559), + [aux_sym_control_master_token1] = ACTIONS(3559), + [aux_sym_control_path_token1] = ACTIONS(3559), + [aux_sym_control_persist_token1] = ACTIONS(3559), + [aux_sym_dynamic_forward_token1] = ACTIONS(3559), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3559), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3559), + [aux_sym_escape_char_token1] = ACTIONS(3559), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3559), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3559), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3559), + [aux_sym_forward_agent_token1] = ACTIONS(3559), + [aux_sym_forward_x11_token1] = ACTIONS(3561), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3559), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3559), + [aux_sym_gateway_ports_token1] = ACTIONS(3559), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3559), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3559), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3559), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3559), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3559), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3559), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3559), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3559), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3559), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3559), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3559), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3559), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3559), + [aux_sym_host_key_alias_token1] = ACTIONS(3559), + [aux_sym_hostname_token1] = ACTIONS(3559), + [aux_sym_identities_only_token1] = ACTIONS(3559), + [aux_sym_identity_agent_token1] = ACTIONS(3559), + [aux_sym_identity_file_token1] = ACTIONS(3559), + [aux_sym_ignore_unknown_token1] = ACTIONS(3559), + [aux_sym_include_token1] = ACTIONS(3559), + [aux_sym_ip_qos_token1] = ACTIONS(3559), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3559), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3559), + [aux_sym_kex_algorithms_token1] = ACTIONS(3559), + [aux_sym_known_hosts_command_token1] = ACTIONS(3559), + [aux_sym_local_command_token1] = ACTIONS(3559), + [aux_sym_local_forward_token1] = ACTIONS(3559), + [aux_sym_log_level_token1] = ACTIONS(3559), + [aux_sym_log_verbose_token1] = ACTIONS(3559), + [aux_sym_macs_token1] = ACTIONS(3559), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3559), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3559), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3559), + [aux_sym_password_authentication_token1] = ACTIONS(3559), + [aux_sym_permit_local_command_token1] = ACTIONS(3559), + [aux_sym_permit_remote_open_token1] = ACTIONS(3559), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3559), + [aux_sym_port_token1] = ACTIONS(3559), + [aux_sym_preferred_authentications_token1] = ACTIONS(3559), + [aux_sym_protocol_token1] = ACTIONS(3559), + [aux_sym_proxy_command_token1] = ACTIONS(3559), + [aux_sym_proxy_jump_token1] = ACTIONS(3559), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3559), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3559), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3559), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3559), + [aux_sym_rekey_limit_token1] = ACTIONS(3559), + [aux_sym_remote_command_token1] = ACTIONS(3559), + [aux_sym_remote_forward_token1] = ACTIONS(3559), + [aux_sym_request_tty_token1] = ACTIONS(3559), + [aux_sym_required_rsa_size_token1] = ACTIONS(3559), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3559), + [aux_sym_security_key_provider_token1] = ACTIONS(3559), + [aux_sym_send_env_token1] = ACTIONS(3559), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3559), + [aux_sym_server_alive_interval_token1] = ACTIONS(3559), + [aux_sym_session_type_token1] = ACTIONS(3559), + [aux_sym_set_env_token1] = ACTIONS(3559), + [aux_sym_stdin_null_token1] = ACTIONS(3559), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3559), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3559), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3559), + [aux_sym_syslog_facility_token1] = ACTIONS(3559), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3559), + [aux_sym_keep_alive_token1] = ACTIONS(3559), + [aux_sym_tag_token1] = ACTIONS(3559), + [aux_sym_tunnel_token1] = ACTIONS(3561), + [aux_sym_tunnel_device_token1] = ACTIONS(3559), + [aux_sym_update_host_keys_token1] = ACTIONS(3559), + [aux_sym_use_keychain_token1] = ACTIONS(3559), + [aux_sym_use_roaming_token1] = ACTIONS(3559), + [aux_sym_user_token1] = ACTIONS(3561), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3559), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3559), + [aux_sym_visual_host_key_token1] = ACTIONS(3559), + [aux_sym_xauth_location_token1] = ACTIONS(3559), }, [668] = { - [ts_builtin_sym_end] = ACTIONS(636), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(638), - [aux_sym_match_token1] = ACTIONS(636), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(636), - [aux_sym_address_family_token1] = ACTIONS(636), - [aux_sym_batch_mode_token1] = ACTIONS(636), - [aux_sym_bind_address_token1] = ACTIONS(636), - [aux_sym_bind_interface_token1] = ACTIONS(636), - [aux_sym_canonical_domains_token1] = ACTIONS(636), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(636), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(636), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(636), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(636), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(636), - [aux_sym_certificate_file_token1] = ACTIONS(636), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(636), - [aux_sym_channel_timeout_token1] = ACTIONS(636), - [aux_sym_check_host_ip_token1] = ACTIONS(636), - [aux_sym_ciphers_token1] = ACTIONS(636), - [aux_sym_cipher_token1] = ACTIONS(638), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(636), - [aux_sym_compression_token1] = ACTIONS(636), - [aux_sym_connection_attempts_token1] = ACTIONS(636), - [aux_sym_connect_timeout_token1] = ACTIONS(636), - [aux_sym_control_master_token1] = ACTIONS(636), - [aux_sym_control_path_token1] = ACTIONS(636), - [aux_sym_control_persist_token1] = ACTIONS(636), - [aux_sym_dynamic_forward_token1] = ACTIONS(636), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(636), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(636), - [aux_sym_escape_char_token1] = ACTIONS(636), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(636), - [aux_sym_fingerprint_hash_token1] = ACTIONS(636), - [aux_sym_fork_after_authentication_token1] = ACTIONS(636), - [aux_sym_forward_agent_token1] = ACTIONS(636), - [aux_sym_forward_x11_token1] = ACTIONS(638), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(636), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(636), - [aux_sym_gateway_ports_token1] = ACTIONS(636), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(636), - [aux_sym_gssapi_authentication_token1] = ACTIONS(636), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(636), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(636), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(636), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(636), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(636), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(636), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(636), - [aux_sym_hash_known_hosts_token1] = ACTIONS(636), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(636), - [aux_sym_hostbased_authentication_token1] = ACTIONS(636), - [aux_sym_host_key_algorithms_token1] = ACTIONS(636), - [aux_sym_host_key_alias_token1] = ACTIONS(636), - [aux_sym_hostname_token1] = ACTIONS(636), - [aux_sym_identities_only_token1] = ACTIONS(636), - [aux_sym_identity_agent_token1] = ACTIONS(636), - [aux_sym_identity_file_token1] = ACTIONS(636), - [aux_sym_ignore_unknown_token1] = ACTIONS(636), - [aux_sym_include_token1] = ACTIONS(636), - [aux_sym_ip_qos_token1] = ACTIONS(636), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(636), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(636), - [aux_sym_kex_algorithms_token1] = ACTIONS(636), - [aux_sym_known_hosts_command_token1] = ACTIONS(636), - [aux_sym_local_command_token1] = ACTIONS(636), - [aux_sym_local_forward_token1] = ACTIONS(636), - [aux_sym_log_level_token1] = ACTIONS(636), - [aux_sym_log_verbose_token1] = ACTIONS(636), - [aux_sym_macs_token1] = ACTIONS(636), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(636), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(636), - [aux_sym_password_authentication_token1] = ACTIONS(636), - [aux_sym_permit_local_command_token1] = ACTIONS(636), - [aux_sym_permit_remote_open_token1] = ACTIONS(636), - [aux_sym_pkcs11_provider_token1] = ACTIONS(636), - [aux_sym_port_token1] = ACTIONS(636), - [aux_sym_preferred_authentications_token1] = ACTIONS(636), - [aux_sym_protocol_token1] = ACTIONS(636), - [aux_sym_proxy_command_token1] = ACTIONS(636), - [aux_sym_proxy_jump_token1] = ACTIONS(636), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(636), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(636), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(636), - [aux_sym_pubkey_authentication_token1] = ACTIONS(636), - [aux_sym_rekey_limit_token1] = ACTIONS(636), - [aux_sym_remote_command_token1] = ACTIONS(636), - [aux_sym_remote_forward_token1] = ACTIONS(636), - [aux_sym_request_tty_token1] = ACTIONS(636), - [aux_sym_required_rsa_size_token1] = ACTIONS(636), - [aux_sym_revoked_host_keys_token1] = ACTIONS(636), - [aux_sym_security_key_provider_token1] = ACTIONS(636), - [aux_sym_send_env_token1] = ACTIONS(636), - [aux_sym_server_alive_count_max_token1] = ACTIONS(636), - [aux_sym_server_alive_interval_token1] = ACTIONS(636), - [aux_sym_session_type_token1] = ACTIONS(636), - [aux_sym_set_env_token1] = ACTIONS(636), - [aux_sym_stdin_null_token1] = ACTIONS(636), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(636), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(636), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(636), - [aux_sym_syslog_facility_token1] = ACTIONS(636), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(636), - [aux_sym_keep_alive_token1] = ACTIONS(636), - [aux_sym_tag_token1] = ACTIONS(636), - [aux_sym_tunnel_token1] = ACTIONS(638), - [aux_sym_tunnel_device_token1] = ACTIONS(636), - [aux_sym_update_host_keys_token1] = ACTIONS(636), - [aux_sym_use_keychain_token1] = ACTIONS(636), - [aux_sym_use_roaming_token1] = ACTIONS(636), - [aux_sym_user_token1] = ACTIONS(638), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(636), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(636), - [aux_sym_visual_host_key_token1] = ACTIONS(636), - [aux_sym_xauth_location_token1] = ACTIONS(636), + [ts_builtin_sym_end] = ACTIONS(1577), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1579), + [aux_sym_match_token1] = ACTIONS(1577), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1577), + [aux_sym_address_family_token1] = ACTIONS(1577), + [aux_sym_batch_mode_token1] = ACTIONS(1577), + [aux_sym_bind_address_token1] = ACTIONS(1577), + [aux_sym_bind_interface_token1] = ACTIONS(1577), + [aux_sym_canonical_domains_token1] = ACTIONS(1577), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1577), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1577), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1577), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1577), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1577), + [aux_sym_certificate_file_token1] = ACTIONS(1577), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1577), + [aux_sym_channel_timeout_token1] = ACTIONS(1577), + [aux_sym_check_host_ip_token1] = ACTIONS(1577), + [aux_sym_ciphers_token1] = ACTIONS(1577), + [aux_sym_cipher_token1] = ACTIONS(1579), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1577), + [aux_sym_compression_token1] = ACTIONS(1577), + [aux_sym_connection_attempts_token1] = ACTIONS(1577), + [aux_sym_connect_timeout_token1] = ACTIONS(1577), + [aux_sym_control_master_token1] = ACTIONS(1577), + [aux_sym_control_path_token1] = ACTIONS(1577), + [aux_sym_control_persist_token1] = ACTIONS(1577), + [aux_sym_dynamic_forward_token1] = ACTIONS(1577), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1577), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1577), + [aux_sym_escape_char_token1] = ACTIONS(1577), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1577), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1577), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1577), + [aux_sym_forward_agent_token1] = ACTIONS(1577), + [aux_sym_forward_x11_token1] = ACTIONS(1579), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1577), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1577), + [aux_sym_gateway_ports_token1] = ACTIONS(1577), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1577), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1577), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1577), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1577), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1577), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1577), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1577), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1577), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1577), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1577), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1577), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1577), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1577), + [aux_sym_host_key_alias_token1] = ACTIONS(1577), + [aux_sym_hostname_token1] = ACTIONS(1577), + [aux_sym_identities_only_token1] = ACTIONS(1577), + [aux_sym_identity_agent_token1] = ACTIONS(1577), + [aux_sym_identity_file_token1] = ACTIONS(1577), + [aux_sym_ignore_unknown_token1] = ACTIONS(1577), + [aux_sym_include_token1] = ACTIONS(1577), + [aux_sym_ip_qos_token1] = ACTIONS(1577), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1577), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1577), + [aux_sym_kex_algorithms_token1] = ACTIONS(1577), + [aux_sym_known_hosts_command_token1] = ACTIONS(1577), + [aux_sym_local_command_token1] = ACTIONS(1577), + [aux_sym_local_forward_token1] = ACTIONS(1577), + [aux_sym_log_level_token1] = ACTIONS(1577), + [aux_sym_log_verbose_token1] = ACTIONS(1577), + [aux_sym_macs_token1] = ACTIONS(1577), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1577), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1577), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1577), + [aux_sym_password_authentication_token1] = ACTIONS(1577), + [aux_sym_permit_local_command_token1] = ACTIONS(1577), + [aux_sym_permit_remote_open_token1] = ACTIONS(1577), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1577), + [aux_sym_port_token1] = ACTIONS(1577), + [aux_sym_preferred_authentications_token1] = ACTIONS(1577), + [aux_sym_protocol_token1] = ACTIONS(1577), + [aux_sym_proxy_command_token1] = ACTIONS(1577), + [aux_sym_proxy_jump_token1] = ACTIONS(1577), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1577), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1577), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1577), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1577), + [aux_sym_rekey_limit_token1] = ACTIONS(1577), + [aux_sym_remote_command_token1] = ACTIONS(1577), + [aux_sym_remote_forward_token1] = ACTIONS(1577), + [aux_sym_request_tty_token1] = ACTIONS(1577), + [aux_sym_required_rsa_size_token1] = ACTIONS(1577), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1577), + [aux_sym_security_key_provider_token1] = ACTIONS(1577), + [aux_sym_send_env_token1] = ACTIONS(1577), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1577), + [aux_sym_server_alive_interval_token1] = ACTIONS(1577), + [aux_sym_session_type_token1] = ACTIONS(1577), + [aux_sym_set_env_token1] = ACTIONS(1577), + [aux_sym_stdin_null_token1] = ACTIONS(1577), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1577), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1577), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1577), + [aux_sym_syslog_facility_token1] = ACTIONS(1577), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1577), + [aux_sym_keep_alive_token1] = ACTIONS(1577), + [aux_sym_tag_token1] = ACTIONS(1577), + [aux_sym_tunnel_token1] = ACTIONS(1579), + [aux_sym_tunnel_device_token1] = ACTIONS(1577), + [aux_sym_update_host_keys_token1] = ACTIONS(1577), + [aux_sym_use_keychain_token1] = ACTIONS(1577), + [aux_sym_use_roaming_token1] = ACTIONS(1577), + [aux_sym_user_token1] = ACTIONS(1579), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1577), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1577), + [aux_sym_visual_host_key_token1] = ACTIONS(1577), + [aux_sym_xauth_location_token1] = ACTIONS(1577), }, [669] = { - [ts_builtin_sym_end] = ACTIONS(642), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(644), - [aux_sym_match_token1] = ACTIONS(642), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(642), - [aux_sym_address_family_token1] = ACTIONS(642), - [aux_sym_batch_mode_token1] = ACTIONS(642), - [aux_sym_bind_address_token1] = ACTIONS(642), - [aux_sym_bind_interface_token1] = ACTIONS(642), - [aux_sym_canonical_domains_token1] = ACTIONS(642), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(642), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(642), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(642), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(642), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(642), - [aux_sym_certificate_file_token1] = ACTIONS(642), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(642), - [aux_sym_channel_timeout_token1] = ACTIONS(642), - [aux_sym_check_host_ip_token1] = ACTIONS(642), - [aux_sym_ciphers_token1] = ACTIONS(642), - [aux_sym_cipher_token1] = ACTIONS(644), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(642), - [aux_sym_compression_token1] = ACTIONS(642), - [aux_sym_connection_attempts_token1] = ACTIONS(642), - [aux_sym_connect_timeout_token1] = ACTIONS(642), - [aux_sym_control_master_token1] = ACTIONS(642), - [aux_sym_control_path_token1] = ACTIONS(642), - [aux_sym_control_persist_token1] = ACTIONS(642), - [aux_sym_dynamic_forward_token1] = ACTIONS(642), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(642), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(642), - [aux_sym_escape_char_token1] = ACTIONS(642), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(642), - [aux_sym_fingerprint_hash_token1] = ACTIONS(642), - [aux_sym_fork_after_authentication_token1] = ACTIONS(642), - [aux_sym_forward_agent_token1] = ACTIONS(642), - [aux_sym_forward_x11_token1] = ACTIONS(644), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(642), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(642), - [aux_sym_gateway_ports_token1] = ACTIONS(642), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(642), - [aux_sym_gssapi_authentication_token1] = ACTIONS(642), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(642), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(642), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(642), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(642), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(642), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(642), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(642), - [aux_sym_hash_known_hosts_token1] = ACTIONS(642), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(642), - [aux_sym_hostbased_authentication_token1] = ACTIONS(642), - [aux_sym_host_key_algorithms_token1] = ACTIONS(642), - [aux_sym_host_key_alias_token1] = ACTIONS(642), - [aux_sym_hostname_token1] = ACTIONS(642), - [aux_sym_identities_only_token1] = ACTIONS(642), - [aux_sym_identity_agent_token1] = ACTIONS(642), - [aux_sym_identity_file_token1] = ACTIONS(642), - [aux_sym_ignore_unknown_token1] = ACTIONS(642), - [aux_sym_include_token1] = ACTIONS(642), - [aux_sym_ip_qos_token1] = ACTIONS(642), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(642), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(642), - [aux_sym_kex_algorithms_token1] = ACTIONS(642), - [aux_sym_known_hosts_command_token1] = ACTIONS(642), - [aux_sym_local_command_token1] = ACTIONS(642), - [aux_sym_local_forward_token1] = ACTIONS(642), - [aux_sym_log_level_token1] = ACTIONS(642), - [aux_sym_log_verbose_token1] = ACTIONS(642), - [aux_sym_macs_token1] = ACTIONS(642), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(642), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(642), - [aux_sym_password_authentication_token1] = ACTIONS(642), - [aux_sym_permit_local_command_token1] = ACTIONS(642), - [aux_sym_permit_remote_open_token1] = ACTIONS(642), - [aux_sym_pkcs11_provider_token1] = ACTIONS(642), - [aux_sym_port_token1] = ACTIONS(642), - [aux_sym_preferred_authentications_token1] = ACTIONS(642), - [aux_sym_protocol_token1] = ACTIONS(642), - [aux_sym_proxy_command_token1] = ACTIONS(642), - [aux_sym_proxy_jump_token1] = ACTIONS(642), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(642), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(642), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(642), - [aux_sym_pubkey_authentication_token1] = ACTIONS(642), - [aux_sym_rekey_limit_token1] = ACTIONS(642), - [aux_sym_remote_command_token1] = ACTIONS(642), - [aux_sym_remote_forward_token1] = ACTIONS(642), - [aux_sym_request_tty_token1] = ACTIONS(642), - [aux_sym_required_rsa_size_token1] = ACTIONS(642), - [aux_sym_revoked_host_keys_token1] = ACTIONS(642), - [aux_sym_security_key_provider_token1] = ACTIONS(642), - [aux_sym_send_env_token1] = ACTIONS(642), - [aux_sym_server_alive_count_max_token1] = ACTIONS(642), - [aux_sym_server_alive_interval_token1] = ACTIONS(642), - [aux_sym_session_type_token1] = ACTIONS(642), - [aux_sym_set_env_token1] = ACTIONS(642), - [aux_sym_stdin_null_token1] = ACTIONS(642), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(642), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(642), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(642), - [aux_sym_syslog_facility_token1] = ACTIONS(642), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(642), - [aux_sym_keep_alive_token1] = ACTIONS(642), - [aux_sym_tag_token1] = ACTIONS(642), - [aux_sym_tunnel_token1] = ACTIONS(644), - [aux_sym_tunnel_device_token1] = ACTIONS(642), - [aux_sym_update_host_keys_token1] = ACTIONS(642), - [aux_sym_use_keychain_token1] = ACTIONS(642), - [aux_sym_use_roaming_token1] = ACTIONS(642), - [aux_sym_user_token1] = ACTIONS(644), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(642), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(642), - [aux_sym_visual_host_key_token1] = ACTIONS(642), - [aux_sym_xauth_location_token1] = ACTIONS(642), + [ts_builtin_sym_end] = ACTIONS(1391), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1393), + [aux_sym_match_token1] = ACTIONS(1391), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1391), + [aux_sym_address_family_token1] = ACTIONS(1391), + [aux_sym_batch_mode_token1] = ACTIONS(1391), + [aux_sym_bind_address_token1] = ACTIONS(1391), + [aux_sym_bind_interface_token1] = ACTIONS(1391), + [aux_sym_canonical_domains_token1] = ACTIONS(1391), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1391), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1391), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1391), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1391), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1391), + [aux_sym_certificate_file_token1] = ACTIONS(1391), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1391), + [aux_sym_channel_timeout_token1] = ACTIONS(1391), + [aux_sym_check_host_ip_token1] = ACTIONS(1391), + [aux_sym_ciphers_token1] = ACTIONS(1391), + [aux_sym_cipher_token1] = ACTIONS(1393), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1391), + [aux_sym_compression_token1] = ACTIONS(1391), + [aux_sym_connection_attempts_token1] = ACTIONS(1391), + [aux_sym_connect_timeout_token1] = ACTIONS(1391), + [aux_sym_control_master_token1] = ACTIONS(1391), + [aux_sym_control_path_token1] = ACTIONS(1391), + [aux_sym_control_persist_token1] = ACTIONS(1391), + [aux_sym_dynamic_forward_token1] = ACTIONS(1391), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1391), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1391), + [aux_sym_escape_char_token1] = ACTIONS(1391), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1391), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1391), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1391), + [aux_sym_forward_agent_token1] = ACTIONS(1391), + [aux_sym_forward_x11_token1] = ACTIONS(1393), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1391), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1391), + [aux_sym_gateway_ports_token1] = ACTIONS(1391), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1391), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1391), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1391), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1391), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1391), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1391), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1391), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1391), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1391), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1391), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1391), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1391), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1391), + [aux_sym_host_key_alias_token1] = ACTIONS(1391), + [aux_sym_hostname_token1] = ACTIONS(1391), + [aux_sym_identities_only_token1] = ACTIONS(1391), + [aux_sym_identity_agent_token1] = ACTIONS(1391), + [aux_sym_identity_file_token1] = ACTIONS(1391), + [aux_sym_ignore_unknown_token1] = ACTIONS(1391), + [aux_sym_include_token1] = ACTIONS(1391), + [aux_sym_ip_qos_token1] = ACTIONS(1391), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1391), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1391), + [aux_sym_kex_algorithms_token1] = ACTIONS(1391), + [aux_sym_known_hosts_command_token1] = ACTIONS(1391), + [aux_sym_local_command_token1] = ACTIONS(1391), + [aux_sym_local_forward_token1] = ACTIONS(1391), + [aux_sym_log_level_token1] = ACTIONS(1391), + [aux_sym_log_verbose_token1] = ACTIONS(1391), + [aux_sym_macs_token1] = ACTIONS(1391), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1391), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1391), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1391), + [aux_sym_password_authentication_token1] = ACTIONS(1391), + [aux_sym_permit_local_command_token1] = ACTIONS(1391), + [aux_sym_permit_remote_open_token1] = ACTIONS(1391), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1391), + [aux_sym_port_token1] = ACTIONS(1391), + [aux_sym_preferred_authentications_token1] = ACTIONS(1391), + [aux_sym_protocol_token1] = ACTIONS(1391), + [aux_sym_proxy_command_token1] = ACTIONS(1391), + [aux_sym_proxy_jump_token1] = ACTIONS(1391), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1391), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1391), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1391), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1391), + [aux_sym_rekey_limit_token1] = ACTIONS(1391), + [aux_sym_remote_command_token1] = ACTIONS(1391), + [aux_sym_remote_forward_token1] = ACTIONS(1391), + [aux_sym_request_tty_token1] = ACTIONS(1391), + [aux_sym_required_rsa_size_token1] = ACTIONS(1391), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1391), + [aux_sym_security_key_provider_token1] = ACTIONS(1391), + [aux_sym_send_env_token1] = ACTIONS(1391), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1391), + [aux_sym_server_alive_interval_token1] = ACTIONS(1391), + [aux_sym_session_type_token1] = ACTIONS(1391), + [aux_sym_set_env_token1] = ACTIONS(1391), + [aux_sym_stdin_null_token1] = ACTIONS(1391), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1391), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1391), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1391), + [aux_sym_syslog_facility_token1] = ACTIONS(1391), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1391), + [aux_sym_keep_alive_token1] = ACTIONS(1391), + [aux_sym_tag_token1] = ACTIONS(1391), + [aux_sym_tunnel_token1] = ACTIONS(1393), + [aux_sym_tunnel_device_token1] = ACTIONS(1391), + [aux_sym_update_host_keys_token1] = ACTIONS(1391), + [aux_sym_use_keychain_token1] = ACTIONS(1391), + [aux_sym_use_roaming_token1] = ACTIONS(1391), + [aux_sym_user_token1] = ACTIONS(1393), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1391), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1391), + [aux_sym_visual_host_key_token1] = ACTIONS(1391), + [aux_sym_xauth_location_token1] = ACTIONS(1391), }, [670] = { - [ts_builtin_sym_end] = ACTIONS(648), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(650), - [aux_sym_match_token1] = ACTIONS(648), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(648), - [aux_sym_address_family_token1] = ACTIONS(648), - [aux_sym_batch_mode_token1] = ACTIONS(648), - [aux_sym_bind_address_token1] = ACTIONS(648), - [aux_sym_bind_interface_token1] = ACTIONS(648), - [aux_sym_canonical_domains_token1] = ACTIONS(648), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(648), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(648), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(648), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(648), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(648), - [aux_sym_certificate_file_token1] = ACTIONS(648), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(648), - [aux_sym_channel_timeout_token1] = ACTIONS(648), - [aux_sym_check_host_ip_token1] = ACTIONS(648), - [aux_sym_ciphers_token1] = ACTIONS(648), - [aux_sym_cipher_token1] = ACTIONS(650), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(648), - [aux_sym_compression_token1] = ACTIONS(648), - [aux_sym_connection_attempts_token1] = ACTIONS(648), - [aux_sym_connect_timeout_token1] = ACTIONS(648), - [aux_sym_control_master_token1] = ACTIONS(648), - [aux_sym_control_path_token1] = ACTIONS(648), - [aux_sym_control_persist_token1] = ACTIONS(648), - [aux_sym_dynamic_forward_token1] = ACTIONS(648), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(648), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(648), - [aux_sym_escape_char_token1] = ACTIONS(648), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(648), - [aux_sym_fingerprint_hash_token1] = ACTIONS(648), - [aux_sym_fork_after_authentication_token1] = ACTIONS(648), - [aux_sym_forward_agent_token1] = ACTIONS(648), - [aux_sym_forward_x11_token1] = ACTIONS(650), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(648), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(648), - [aux_sym_gateway_ports_token1] = ACTIONS(648), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(648), - [aux_sym_gssapi_authentication_token1] = ACTIONS(648), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(648), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(648), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(648), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(648), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(648), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(648), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(648), - [aux_sym_hash_known_hosts_token1] = ACTIONS(648), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(648), - [aux_sym_hostbased_authentication_token1] = ACTIONS(648), - [aux_sym_host_key_algorithms_token1] = ACTIONS(648), - [aux_sym_host_key_alias_token1] = ACTIONS(648), - [aux_sym_hostname_token1] = ACTIONS(648), - [aux_sym_identities_only_token1] = ACTIONS(648), - [aux_sym_identity_agent_token1] = ACTIONS(648), - [aux_sym_identity_file_token1] = ACTIONS(648), - [aux_sym_ignore_unknown_token1] = ACTIONS(648), - [aux_sym_include_token1] = ACTIONS(648), - [aux_sym_ip_qos_token1] = ACTIONS(648), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(648), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(648), - [aux_sym_kex_algorithms_token1] = ACTIONS(648), - [aux_sym_known_hosts_command_token1] = ACTIONS(648), - [aux_sym_local_command_token1] = ACTIONS(648), - [aux_sym_local_forward_token1] = ACTIONS(648), - [aux_sym_log_level_token1] = ACTIONS(648), - [aux_sym_log_verbose_token1] = ACTIONS(648), - [aux_sym_macs_token1] = ACTIONS(648), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(648), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(648), - [aux_sym_password_authentication_token1] = ACTIONS(648), - [aux_sym_permit_local_command_token1] = ACTIONS(648), - [aux_sym_permit_remote_open_token1] = ACTIONS(648), - [aux_sym_pkcs11_provider_token1] = ACTIONS(648), - [aux_sym_port_token1] = ACTIONS(648), - [aux_sym_preferred_authentications_token1] = ACTIONS(648), - [aux_sym_protocol_token1] = ACTIONS(648), - [aux_sym_proxy_command_token1] = ACTIONS(648), - [aux_sym_proxy_jump_token1] = ACTIONS(648), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(648), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(648), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(648), - [aux_sym_pubkey_authentication_token1] = ACTIONS(648), - [aux_sym_rekey_limit_token1] = ACTIONS(648), - [aux_sym_remote_command_token1] = ACTIONS(648), - [aux_sym_remote_forward_token1] = ACTIONS(648), - [aux_sym_request_tty_token1] = ACTIONS(648), - [aux_sym_required_rsa_size_token1] = ACTIONS(648), - [aux_sym_revoked_host_keys_token1] = ACTIONS(648), - [aux_sym_security_key_provider_token1] = ACTIONS(648), - [aux_sym_send_env_token1] = ACTIONS(648), - [aux_sym_server_alive_count_max_token1] = ACTIONS(648), - [aux_sym_server_alive_interval_token1] = ACTIONS(648), - [aux_sym_session_type_token1] = ACTIONS(648), - [aux_sym_set_env_token1] = ACTIONS(648), - [aux_sym_stdin_null_token1] = ACTIONS(648), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(648), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(648), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(648), - [aux_sym_syslog_facility_token1] = ACTIONS(648), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(648), - [aux_sym_keep_alive_token1] = ACTIONS(648), - [aux_sym_tag_token1] = ACTIONS(648), - [aux_sym_tunnel_token1] = ACTIONS(650), - [aux_sym_tunnel_device_token1] = ACTIONS(648), - [aux_sym_update_host_keys_token1] = ACTIONS(648), - [aux_sym_use_keychain_token1] = ACTIONS(648), - [aux_sym_use_roaming_token1] = ACTIONS(648), - [aux_sym_user_token1] = ACTIONS(650), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(648), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(648), - [aux_sym_visual_host_key_token1] = ACTIONS(648), - [aux_sym_xauth_location_token1] = ACTIONS(648), + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(3565), + [aux_sym_match_token1] = ACTIONS(3563), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(3563), + [aux_sym_address_family_token1] = ACTIONS(3563), + [aux_sym_batch_mode_token1] = ACTIONS(3563), + [aux_sym_bind_address_token1] = ACTIONS(3563), + [aux_sym_bind_interface_token1] = ACTIONS(3563), + [aux_sym_canonical_domains_token1] = ACTIONS(3563), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(3563), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(3563), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(3563), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(3563), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(3563), + [aux_sym_certificate_file_token1] = ACTIONS(3563), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(3563), + [aux_sym_channel_timeout_token1] = ACTIONS(3563), + [aux_sym_check_host_ip_token1] = ACTIONS(3563), + [aux_sym_ciphers_token1] = ACTIONS(3563), + [aux_sym_cipher_token1] = ACTIONS(3565), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(3563), + [aux_sym_compression_token1] = ACTIONS(3563), + [aux_sym_connection_attempts_token1] = ACTIONS(3563), + [aux_sym_connect_timeout_token1] = ACTIONS(3563), + [aux_sym_control_master_token1] = ACTIONS(3563), + [aux_sym_control_path_token1] = ACTIONS(3563), + [aux_sym_control_persist_token1] = ACTIONS(3563), + [aux_sym_dynamic_forward_token1] = ACTIONS(3563), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(3563), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(3563), + [aux_sym_escape_char_token1] = ACTIONS(3563), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(3563), + [aux_sym_fingerprint_hash_token1] = ACTIONS(3563), + [aux_sym_fork_after_authentication_token1] = ACTIONS(3563), + [aux_sym_forward_agent_token1] = ACTIONS(3563), + [aux_sym_forward_x11_token1] = ACTIONS(3565), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(3563), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(3563), + [aux_sym_gateway_ports_token1] = ACTIONS(3563), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(3563), + [aux_sym_gssapi_authentication_token1] = ACTIONS(3563), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(3563), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(3563), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(3563), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(3563), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(3563), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(3563), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(3563), + [aux_sym_hash_known_hosts_token1] = ACTIONS(3563), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(3563), + [aux_sym_hostbased_authentication_token1] = ACTIONS(3563), + [aux_sym_host_key_algorithms_token1] = ACTIONS(3563), + [aux_sym_host_key_alias_token1] = ACTIONS(3563), + [aux_sym_hostname_token1] = ACTIONS(3563), + [aux_sym_identities_only_token1] = ACTIONS(3563), + [aux_sym_identity_agent_token1] = ACTIONS(3563), + [aux_sym_identity_file_token1] = ACTIONS(3563), + [aux_sym_ignore_unknown_token1] = ACTIONS(3563), + [aux_sym_include_token1] = ACTIONS(3563), + [aux_sym_ip_qos_token1] = ACTIONS(3563), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(3563), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(3563), + [aux_sym_kex_algorithms_token1] = ACTIONS(3563), + [aux_sym_known_hosts_command_token1] = ACTIONS(3563), + [aux_sym_local_command_token1] = ACTIONS(3563), + [aux_sym_local_forward_token1] = ACTIONS(3563), + [aux_sym_log_level_token1] = ACTIONS(3563), + [aux_sym_log_verbose_token1] = ACTIONS(3563), + [aux_sym_macs_token1] = ACTIONS(3563), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(3563), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(3563), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(3563), + [aux_sym_password_authentication_token1] = ACTIONS(3563), + [aux_sym_permit_local_command_token1] = ACTIONS(3563), + [aux_sym_permit_remote_open_token1] = ACTIONS(3563), + [aux_sym_pkcs11_provider_token1] = ACTIONS(3563), + [aux_sym_port_token1] = ACTIONS(3563), + [aux_sym_preferred_authentications_token1] = ACTIONS(3563), + [aux_sym_protocol_token1] = ACTIONS(3563), + [aux_sym_proxy_command_token1] = ACTIONS(3563), + [aux_sym_proxy_jump_token1] = ACTIONS(3563), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(3563), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(3563), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(3563), + [aux_sym_pubkey_authentication_token1] = ACTIONS(3563), + [aux_sym_rekey_limit_token1] = ACTIONS(3563), + [aux_sym_remote_command_token1] = ACTIONS(3563), + [aux_sym_remote_forward_token1] = ACTIONS(3563), + [aux_sym_request_tty_token1] = ACTIONS(3563), + [aux_sym_required_rsa_size_token1] = ACTIONS(3563), + [aux_sym_revoked_host_keys_token1] = ACTIONS(3563), + [aux_sym_security_key_provider_token1] = ACTIONS(3563), + [aux_sym_send_env_token1] = ACTIONS(3563), + [aux_sym_server_alive_count_max_token1] = ACTIONS(3563), + [aux_sym_server_alive_interval_token1] = ACTIONS(3563), + [aux_sym_session_type_token1] = ACTIONS(3563), + [aux_sym_set_env_token1] = ACTIONS(3563), + [aux_sym_stdin_null_token1] = ACTIONS(3563), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(3563), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(3563), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(3563), + [aux_sym_syslog_facility_token1] = ACTIONS(3563), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(3563), + [aux_sym_keep_alive_token1] = ACTIONS(3563), + [aux_sym_tag_token1] = ACTIONS(3563), + [aux_sym_tunnel_token1] = ACTIONS(3565), + [aux_sym_tunnel_device_token1] = ACTIONS(3563), + [aux_sym_update_host_keys_token1] = ACTIONS(3563), + [aux_sym_use_keychain_token1] = ACTIONS(3563), + [aux_sym_use_roaming_token1] = ACTIONS(3563), + [aux_sym_user_token1] = ACTIONS(3565), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(3563), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(3563), + [aux_sym_visual_host_key_token1] = ACTIONS(3563), + [aux_sym_xauth_location_token1] = ACTIONS(3563), }, [671] = { - [ts_builtin_sym_end] = ACTIONS(654), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(656), - [aux_sym_match_token1] = ACTIONS(654), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(654), - [aux_sym_address_family_token1] = ACTIONS(654), - [aux_sym_batch_mode_token1] = ACTIONS(654), - [aux_sym_bind_address_token1] = ACTIONS(654), - [aux_sym_bind_interface_token1] = ACTIONS(654), - [aux_sym_canonical_domains_token1] = ACTIONS(654), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(654), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(654), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(654), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(654), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(654), - [aux_sym_certificate_file_token1] = ACTIONS(654), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(654), - [aux_sym_channel_timeout_token1] = ACTIONS(654), - [aux_sym_check_host_ip_token1] = ACTIONS(654), - [aux_sym_ciphers_token1] = ACTIONS(654), - [aux_sym_cipher_token1] = ACTIONS(656), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(654), - [aux_sym_compression_token1] = ACTIONS(654), - [aux_sym_connection_attempts_token1] = ACTIONS(654), - [aux_sym_connect_timeout_token1] = ACTIONS(654), - [aux_sym_control_master_token1] = ACTIONS(654), - [aux_sym_control_path_token1] = ACTIONS(654), - [aux_sym_control_persist_token1] = ACTIONS(654), - [aux_sym_dynamic_forward_token1] = ACTIONS(654), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(654), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(654), - [aux_sym_escape_char_token1] = ACTIONS(654), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(654), - [aux_sym_fingerprint_hash_token1] = ACTIONS(654), - [aux_sym_fork_after_authentication_token1] = ACTIONS(654), - [aux_sym_forward_agent_token1] = ACTIONS(654), - [aux_sym_forward_x11_token1] = ACTIONS(656), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(654), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(654), - [aux_sym_gateway_ports_token1] = ACTIONS(654), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(654), - [aux_sym_gssapi_authentication_token1] = ACTIONS(654), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(654), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(654), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(654), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(654), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(654), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(654), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(654), - [aux_sym_hash_known_hosts_token1] = ACTIONS(654), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(654), - [aux_sym_hostbased_authentication_token1] = ACTIONS(654), - [aux_sym_host_key_algorithms_token1] = ACTIONS(654), - [aux_sym_host_key_alias_token1] = ACTIONS(654), - [aux_sym_hostname_token1] = ACTIONS(654), - [aux_sym_identities_only_token1] = ACTIONS(654), - [aux_sym_identity_agent_token1] = ACTIONS(654), - [aux_sym_identity_file_token1] = ACTIONS(654), - [aux_sym_ignore_unknown_token1] = ACTIONS(654), - [aux_sym_include_token1] = ACTIONS(654), - [aux_sym_ip_qos_token1] = ACTIONS(654), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(654), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(654), - [aux_sym_kex_algorithms_token1] = ACTIONS(654), - [aux_sym_known_hosts_command_token1] = ACTIONS(654), - [aux_sym_local_command_token1] = ACTIONS(654), - [aux_sym_local_forward_token1] = ACTIONS(654), - [aux_sym_log_level_token1] = ACTIONS(654), - [aux_sym_log_verbose_token1] = ACTIONS(654), - [aux_sym_macs_token1] = ACTIONS(654), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(654), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(654), - [aux_sym_password_authentication_token1] = ACTIONS(654), - [aux_sym_permit_local_command_token1] = ACTIONS(654), - [aux_sym_permit_remote_open_token1] = ACTIONS(654), - [aux_sym_pkcs11_provider_token1] = ACTIONS(654), - [aux_sym_port_token1] = ACTIONS(654), - [aux_sym_preferred_authentications_token1] = ACTIONS(654), - [aux_sym_protocol_token1] = ACTIONS(654), - [aux_sym_proxy_command_token1] = ACTIONS(654), - [aux_sym_proxy_jump_token1] = ACTIONS(654), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(654), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(654), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(654), - [aux_sym_pubkey_authentication_token1] = ACTIONS(654), - [aux_sym_rekey_limit_token1] = ACTIONS(654), - [aux_sym_remote_command_token1] = ACTIONS(654), - [aux_sym_remote_forward_token1] = ACTIONS(654), - [aux_sym_request_tty_token1] = ACTIONS(654), - [aux_sym_required_rsa_size_token1] = ACTIONS(654), - [aux_sym_revoked_host_keys_token1] = ACTIONS(654), - [aux_sym_security_key_provider_token1] = ACTIONS(654), - [aux_sym_send_env_token1] = ACTIONS(654), - [aux_sym_server_alive_count_max_token1] = ACTIONS(654), - [aux_sym_server_alive_interval_token1] = ACTIONS(654), - [aux_sym_session_type_token1] = ACTIONS(654), - [aux_sym_set_env_token1] = ACTIONS(654), - [aux_sym_stdin_null_token1] = ACTIONS(654), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(654), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(654), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(654), - [aux_sym_syslog_facility_token1] = ACTIONS(654), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(654), - [aux_sym_keep_alive_token1] = ACTIONS(654), - [aux_sym_tag_token1] = ACTIONS(654), - [aux_sym_tunnel_token1] = ACTIONS(656), - [aux_sym_tunnel_device_token1] = ACTIONS(654), - [aux_sym_update_host_keys_token1] = ACTIONS(654), - [aux_sym_use_keychain_token1] = ACTIONS(654), - [aux_sym_use_roaming_token1] = ACTIONS(654), - [aux_sym_user_token1] = ACTIONS(656), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(654), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(654), - [aux_sym_visual_host_key_token1] = ACTIONS(654), - [aux_sym_xauth_location_token1] = ACTIONS(654), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(2293), + [aux_sym_match_token1] = ACTIONS(2291), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(2291), + [aux_sym_address_family_token1] = ACTIONS(2291), + [aux_sym_batch_mode_token1] = ACTIONS(2291), + [aux_sym_bind_address_token1] = ACTIONS(2291), + [aux_sym_bind_interface_token1] = ACTIONS(2291), + [aux_sym_canonical_domains_token1] = ACTIONS(2291), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2291), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(2291), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2291), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2291), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2291), + [aux_sym_certificate_file_token1] = ACTIONS(2291), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(2291), + [aux_sym_channel_timeout_token1] = ACTIONS(2291), + [aux_sym_check_host_ip_token1] = ACTIONS(2291), + [aux_sym_ciphers_token1] = ACTIONS(2291), + [aux_sym_cipher_token1] = ACTIONS(2293), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(2291), + [aux_sym_compression_token1] = ACTIONS(2291), + [aux_sym_connection_attempts_token1] = ACTIONS(2291), + [aux_sym_connect_timeout_token1] = ACTIONS(2291), + [aux_sym_control_master_token1] = ACTIONS(2291), + [aux_sym_control_path_token1] = ACTIONS(2291), + [aux_sym_control_persist_token1] = ACTIONS(2291), + [aux_sym_dynamic_forward_token1] = ACTIONS(2291), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(2291), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2291), + [aux_sym_escape_char_token1] = ACTIONS(2291), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2291), + [aux_sym_fingerprint_hash_token1] = ACTIONS(2291), + [aux_sym_fork_after_authentication_token1] = ACTIONS(2291), + [aux_sym_forward_agent_token1] = ACTIONS(2291), + [aux_sym_forward_x11_token1] = ACTIONS(2293), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(2291), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(2291), + [aux_sym_gateway_ports_token1] = ACTIONS(2291), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(2291), + [aux_sym_gssapi_authentication_token1] = ACTIONS(2291), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(2291), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2291), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2291), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2291), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(2291), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2291), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2291), + [aux_sym_hash_known_hosts_token1] = ACTIONS(2291), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2291), + [aux_sym_hostbased_authentication_token1] = ACTIONS(2291), + [aux_sym_host_key_algorithms_token1] = ACTIONS(2291), + [aux_sym_host_key_alias_token1] = ACTIONS(2291), + [aux_sym_hostname_token1] = ACTIONS(2291), + [aux_sym_identities_only_token1] = ACTIONS(2291), + [aux_sym_identity_agent_token1] = ACTIONS(2291), + [aux_sym_identity_file_token1] = ACTIONS(2291), + [aux_sym_ignore_unknown_token1] = ACTIONS(2291), + [aux_sym_include_token1] = ACTIONS(2291), + [aux_sym_ip_qos_token1] = ACTIONS(2291), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2291), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2291), + [aux_sym_kex_algorithms_token1] = ACTIONS(2291), + [aux_sym_known_hosts_command_token1] = ACTIONS(2291), + [aux_sym_local_command_token1] = ACTIONS(2291), + [aux_sym_local_forward_token1] = ACTIONS(2291), + [aux_sym_log_level_token1] = ACTIONS(2291), + [aux_sym_log_verbose_token1] = ACTIONS(2291), + [aux_sym_macs_token1] = ACTIONS(2291), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2291), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(2291), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(2291), + [aux_sym_password_authentication_token1] = ACTIONS(2291), + [aux_sym_permit_local_command_token1] = ACTIONS(2291), + [aux_sym_permit_remote_open_token1] = ACTIONS(2291), + [aux_sym_pkcs11_provider_token1] = ACTIONS(2291), + [aux_sym_port_token1] = ACTIONS(2291), + [aux_sym_preferred_authentications_token1] = ACTIONS(2291), + [aux_sym_protocol_token1] = ACTIONS(2291), + [aux_sym_proxy_command_token1] = ACTIONS(2291), + [aux_sym_proxy_jump_token1] = ACTIONS(2291), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2291), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2291), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2291), + [aux_sym_pubkey_authentication_token1] = ACTIONS(2291), + [aux_sym_rekey_limit_token1] = ACTIONS(2291), + [aux_sym_remote_command_token1] = ACTIONS(2291), + [aux_sym_remote_forward_token1] = ACTIONS(2291), + [aux_sym_request_tty_token1] = ACTIONS(2291), + [aux_sym_required_rsa_size_token1] = ACTIONS(2291), + [aux_sym_revoked_host_keys_token1] = ACTIONS(2291), + [aux_sym_security_key_provider_token1] = ACTIONS(2291), + [aux_sym_send_env_token1] = ACTIONS(2291), + [aux_sym_server_alive_count_max_token1] = ACTIONS(2291), + [aux_sym_server_alive_interval_token1] = ACTIONS(2291), + [aux_sym_session_type_token1] = ACTIONS(2291), + [aux_sym_set_env_token1] = ACTIONS(2291), + [aux_sym_stdin_null_token1] = ACTIONS(2291), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2291), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2291), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(2291), + [aux_sym_syslog_facility_token1] = ACTIONS(2291), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(2291), + [aux_sym_keep_alive_token1] = ACTIONS(2291), + [aux_sym_tag_token1] = ACTIONS(2291), + [aux_sym_tunnel_token1] = ACTIONS(2293), + [aux_sym_tunnel_device_token1] = ACTIONS(2291), + [aux_sym_update_host_keys_token1] = ACTIONS(2291), + [aux_sym_use_keychain_token1] = ACTIONS(2291), + [aux_sym_use_roaming_token1] = ACTIONS(2291), + [aux_sym_user_token1] = ACTIONS(2293), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(2291), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(2291), + [aux_sym_visual_host_key_token1] = ACTIONS(2291), + [aux_sym_xauth_location_token1] = ACTIONS(2291), }, [672] = { - [ts_builtin_sym_end] = ACTIONS(660), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(662), - [aux_sym_match_token1] = ACTIONS(660), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(660), - [aux_sym_address_family_token1] = ACTIONS(660), - [aux_sym_batch_mode_token1] = ACTIONS(660), - [aux_sym_bind_address_token1] = ACTIONS(660), - [aux_sym_bind_interface_token1] = ACTIONS(660), - [aux_sym_canonical_domains_token1] = ACTIONS(660), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(660), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(660), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(660), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(660), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(660), - [aux_sym_certificate_file_token1] = ACTIONS(660), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(660), - [aux_sym_channel_timeout_token1] = ACTIONS(660), - [aux_sym_check_host_ip_token1] = ACTIONS(660), - [aux_sym_ciphers_token1] = ACTIONS(660), - [aux_sym_cipher_token1] = ACTIONS(662), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(660), - [aux_sym_compression_token1] = ACTIONS(660), - [aux_sym_connection_attempts_token1] = ACTIONS(660), - [aux_sym_connect_timeout_token1] = ACTIONS(660), - [aux_sym_control_master_token1] = ACTIONS(660), - [aux_sym_control_path_token1] = ACTIONS(660), - [aux_sym_control_persist_token1] = ACTIONS(660), - [aux_sym_dynamic_forward_token1] = ACTIONS(660), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(660), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(660), - [aux_sym_escape_char_token1] = ACTIONS(660), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(660), - [aux_sym_fingerprint_hash_token1] = ACTIONS(660), - [aux_sym_fork_after_authentication_token1] = ACTIONS(660), - [aux_sym_forward_agent_token1] = ACTIONS(660), - [aux_sym_forward_x11_token1] = ACTIONS(662), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(660), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(660), - [aux_sym_gateway_ports_token1] = ACTIONS(660), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(660), - [aux_sym_gssapi_authentication_token1] = ACTIONS(660), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(660), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(660), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(660), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(660), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(660), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(660), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(660), - [aux_sym_hash_known_hosts_token1] = ACTIONS(660), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(660), - [aux_sym_hostbased_authentication_token1] = ACTIONS(660), - [aux_sym_host_key_algorithms_token1] = ACTIONS(660), - [aux_sym_host_key_alias_token1] = ACTIONS(660), - [aux_sym_hostname_token1] = ACTIONS(660), - [aux_sym_identities_only_token1] = ACTIONS(660), - [aux_sym_identity_agent_token1] = ACTIONS(660), - [aux_sym_identity_file_token1] = ACTIONS(660), - [aux_sym_ignore_unknown_token1] = ACTIONS(660), - [aux_sym_include_token1] = ACTIONS(660), - [aux_sym_ip_qos_token1] = ACTIONS(660), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(660), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(660), - [aux_sym_kex_algorithms_token1] = ACTIONS(660), - [aux_sym_known_hosts_command_token1] = ACTIONS(660), - [aux_sym_local_command_token1] = ACTIONS(660), - [aux_sym_local_forward_token1] = ACTIONS(660), - [aux_sym_log_level_token1] = ACTIONS(660), - [aux_sym_log_verbose_token1] = ACTIONS(660), - [aux_sym_macs_token1] = ACTIONS(660), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(660), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(660), - [aux_sym_password_authentication_token1] = ACTIONS(660), - [aux_sym_permit_local_command_token1] = ACTIONS(660), - [aux_sym_permit_remote_open_token1] = ACTIONS(660), - [aux_sym_pkcs11_provider_token1] = ACTIONS(660), - [aux_sym_port_token1] = ACTIONS(660), - [aux_sym_preferred_authentications_token1] = ACTIONS(660), - [aux_sym_protocol_token1] = ACTIONS(660), - [aux_sym_proxy_command_token1] = ACTIONS(660), - [aux_sym_proxy_jump_token1] = ACTIONS(660), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(660), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(660), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(660), - [aux_sym_pubkey_authentication_token1] = ACTIONS(660), - [aux_sym_rekey_limit_token1] = ACTIONS(660), - [aux_sym_remote_command_token1] = ACTIONS(660), - [aux_sym_remote_forward_token1] = ACTIONS(660), - [aux_sym_request_tty_token1] = ACTIONS(660), - [aux_sym_required_rsa_size_token1] = ACTIONS(660), - [aux_sym_revoked_host_keys_token1] = ACTIONS(660), - [aux_sym_security_key_provider_token1] = ACTIONS(660), - [aux_sym_send_env_token1] = ACTIONS(660), - [aux_sym_server_alive_count_max_token1] = ACTIONS(660), - [aux_sym_server_alive_interval_token1] = ACTIONS(660), - [aux_sym_session_type_token1] = ACTIONS(660), - [aux_sym_set_env_token1] = ACTIONS(660), - [aux_sym_stdin_null_token1] = ACTIONS(660), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(660), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(660), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(660), - [aux_sym_syslog_facility_token1] = ACTIONS(660), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(660), - [aux_sym_keep_alive_token1] = ACTIONS(660), - [aux_sym_tag_token1] = ACTIONS(660), - [aux_sym_tunnel_token1] = ACTIONS(662), - [aux_sym_tunnel_device_token1] = ACTIONS(660), - [aux_sym_update_host_keys_token1] = ACTIONS(660), - [aux_sym_use_keychain_token1] = ACTIONS(660), - [aux_sym_use_roaming_token1] = ACTIONS(660), - [aux_sym_user_token1] = ACTIONS(662), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(660), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(660), - [aux_sym_visual_host_key_token1] = ACTIONS(660), - [aux_sym_xauth_location_token1] = ACTIONS(660), + [ts_builtin_sym_end] = ACTIONS(1665), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1667), + [aux_sym_match_token1] = ACTIONS(1665), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1665), + [aux_sym_address_family_token1] = ACTIONS(1665), + [aux_sym_batch_mode_token1] = ACTIONS(1665), + [aux_sym_bind_address_token1] = ACTIONS(1665), + [aux_sym_bind_interface_token1] = ACTIONS(1665), + [aux_sym_canonical_domains_token1] = ACTIONS(1665), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1665), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1665), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1665), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1665), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1665), + [aux_sym_certificate_file_token1] = ACTIONS(1665), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1665), + [aux_sym_channel_timeout_token1] = ACTIONS(1665), + [aux_sym_check_host_ip_token1] = ACTIONS(1665), + [aux_sym_ciphers_token1] = ACTIONS(1665), + [aux_sym_cipher_token1] = ACTIONS(1667), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1665), + [aux_sym_compression_token1] = ACTIONS(1665), + [aux_sym_connection_attempts_token1] = ACTIONS(1665), + [aux_sym_connect_timeout_token1] = ACTIONS(1665), + [aux_sym_control_master_token1] = ACTIONS(1665), + [aux_sym_control_path_token1] = ACTIONS(1665), + [aux_sym_control_persist_token1] = ACTIONS(1665), + [aux_sym_dynamic_forward_token1] = ACTIONS(1665), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1665), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1665), + [aux_sym_escape_char_token1] = ACTIONS(1665), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1665), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1665), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1665), + [aux_sym_forward_agent_token1] = ACTIONS(1665), + [aux_sym_forward_x11_token1] = ACTIONS(1667), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1665), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1665), + [aux_sym_gateway_ports_token1] = ACTIONS(1665), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1665), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1665), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1665), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1665), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1665), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1665), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1665), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1665), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1665), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1665), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1665), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1665), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1665), + [aux_sym_host_key_alias_token1] = ACTIONS(1665), + [aux_sym_hostname_token1] = ACTIONS(1665), + [aux_sym_identities_only_token1] = ACTIONS(1665), + [aux_sym_identity_agent_token1] = ACTIONS(1665), + [aux_sym_identity_file_token1] = ACTIONS(1665), + [aux_sym_ignore_unknown_token1] = ACTIONS(1665), + [aux_sym_include_token1] = ACTIONS(1665), + [aux_sym_ip_qos_token1] = ACTIONS(1665), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1665), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1665), + [aux_sym_kex_algorithms_token1] = ACTIONS(1665), + [aux_sym_known_hosts_command_token1] = ACTIONS(1665), + [aux_sym_local_command_token1] = ACTIONS(1665), + [aux_sym_local_forward_token1] = ACTIONS(1665), + [aux_sym_log_level_token1] = ACTIONS(1665), + [aux_sym_log_verbose_token1] = ACTIONS(1665), + [aux_sym_macs_token1] = ACTIONS(1665), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1665), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1665), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1665), + [aux_sym_password_authentication_token1] = ACTIONS(1665), + [aux_sym_permit_local_command_token1] = ACTIONS(1665), + [aux_sym_permit_remote_open_token1] = ACTIONS(1665), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1665), + [aux_sym_port_token1] = ACTIONS(1665), + [aux_sym_preferred_authentications_token1] = ACTIONS(1665), + [aux_sym_protocol_token1] = ACTIONS(1665), + [aux_sym_proxy_command_token1] = ACTIONS(1665), + [aux_sym_proxy_jump_token1] = ACTIONS(1665), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1665), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1665), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1665), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1665), + [aux_sym_rekey_limit_token1] = ACTIONS(1665), + [aux_sym_remote_command_token1] = ACTIONS(1665), + [aux_sym_remote_forward_token1] = ACTIONS(1665), + [aux_sym_request_tty_token1] = ACTIONS(1665), + [aux_sym_required_rsa_size_token1] = ACTIONS(1665), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1665), + [aux_sym_security_key_provider_token1] = ACTIONS(1665), + [aux_sym_send_env_token1] = ACTIONS(1665), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1665), + [aux_sym_server_alive_interval_token1] = ACTIONS(1665), + [aux_sym_session_type_token1] = ACTIONS(1665), + [aux_sym_set_env_token1] = ACTIONS(1665), + [aux_sym_stdin_null_token1] = ACTIONS(1665), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1665), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1665), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1665), + [aux_sym_syslog_facility_token1] = ACTIONS(1665), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1665), + [aux_sym_keep_alive_token1] = ACTIONS(1665), + [aux_sym_tag_token1] = ACTIONS(1665), + [aux_sym_tunnel_token1] = ACTIONS(1667), + [aux_sym_tunnel_device_token1] = ACTIONS(1665), + [aux_sym_update_host_keys_token1] = ACTIONS(1665), + [aux_sym_use_keychain_token1] = ACTIONS(1665), + [aux_sym_use_roaming_token1] = ACTIONS(1665), + [aux_sym_user_token1] = ACTIONS(1667), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1665), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1665), + [aux_sym_visual_host_key_token1] = ACTIONS(1665), + [aux_sym_xauth_location_token1] = ACTIONS(1665), }, [673] = { - [ts_builtin_sym_end] = ACTIONS(1080), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1082), - [aux_sym_match_token1] = ACTIONS(1080), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1080), - [aux_sym_address_family_token1] = ACTIONS(1080), - [aux_sym_batch_mode_token1] = ACTIONS(1080), - [aux_sym_bind_address_token1] = ACTIONS(1080), - [aux_sym_bind_interface_token1] = ACTIONS(1080), - [aux_sym_canonical_domains_token1] = ACTIONS(1080), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1080), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1080), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1080), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1080), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1080), - [aux_sym_certificate_file_token1] = ACTIONS(1080), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1080), - [aux_sym_channel_timeout_token1] = ACTIONS(1080), - [aux_sym_check_host_ip_token1] = ACTIONS(1080), - [aux_sym_ciphers_token1] = ACTIONS(1080), - [aux_sym_cipher_token1] = ACTIONS(1082), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1080), - [aux_sym_compression_token1] = ACTIONS(1080), - [aux_sym_connection_attempts_token1] = ACTIONS(1080), - [aux_sym_connect_timeout_token1] = ACTIONS(1080), - [aux_sym_control_master_token1] = ACTIONS(1080), - [aux_sym_control_path_token1] = ACTIONS(1080), - [aux_sym_control_persist_token1] = ACTIONS(1080), - [aux_sym_dynamic_forward_token1] = ACTIONS(1080), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1080), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1080), - [aux_sym_escape_char_token1] = ACTIONS(1080), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1080), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1080), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1080), - [aux_sym_forward_agent_token1] = ACTIONS(1080), - [aux_sym_forward_x11_token1] = ACTIONS(1082), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1080), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1080), - [aux_sym_gateway_ports_token1] = ACTIONS(1080), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1080), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1080), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1080), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1080), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1080), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1080), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1080), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1080), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1080), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1080), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1080), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1080), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1080), - [aux_sym_host_key_alias_token1] = ACTIONS(1080), - [aux_sym_hostname_token1] = ACTIONS(1080), - [aux_sym_identities_only_token1] = ACTIONS(1080), - [aux_sym_identity_agent_token1] = ACTIONS(1080), - [aux_sym_identity_file_token1] = ACTIONS(1080), - [aux_sym_ignore_unknown_token1] = ACTIONS(1080), - [aux_sym_include_token1] = ACTIONS(1080), - [aux_sym_ip_qos_token1] = ACTIONS(1080), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1080), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1080), - [aux_sym_kex_algorithms_token1] = ACTIONS(1080), - [aux_sym_known_hosts_command_token1] = ACTIONS(1080), - [aux_sym_local_command_token1] = ACTIONS(1080), - [aux_sym_local_forward_token1] = ACTIONS(1080), - [aux_sym_log_level_token1] = ACTIONS(1080), - [aux_sym_log_verbose_token1] = ACTIONS(1080), - [aux_sym_macs_token1] = ACTIONS(1080), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1080), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1080), - [aux_sym_password_authentication_token1] = ACTIONS(1080), - [aux_sym_permit_local_command_token1] = ACTIONS(1080), - [aux_sym_permit_remote_open_token1] = ACTIONS(1080), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1080), - [aux_sym_port_token1] = ACTIONS(1080), - [aux_sym_preferred_authentications_token1] = ACTIONS(1080), - [aux_sym_protocol_token1] = ACTIONS(1080), - [aux_sym_proxy_command_token1] = ACTIONS(1080), - [aux_sym_proxy_jump_token1] = ACTIONS(1080), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1080), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1080), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1080), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1080), - [aux_sym_rekey_limit_token1] = ACTIONS(1080), - [aux_sym_remote_command_token1] = ACTIONS(1080), - [aux_sym_remote_forward_token1] = ACTIONS(1080), - [aux_sym_request_tty_token1] = ACTIONS(1080), - [aux_sym_required_rsa_size_token1] = ACTIONS(1080), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1080), - [aux_sym_security_key_provider_token1] = ACTIONS(1080), - [aux_sym_send_env_token1] = ACTIONS(1080), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1080), - [aux_sym_server_alive_interval_token1] = ACTIONS(1080), - [aux_sym_session_type_token1] = ACTIONS(1080), - [aux_sym_set_env_token1] = ACTIONS(1080), - [aux_sym_stdin_null_token1] = ACTIONS(1080), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1080), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1080), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1080), - [aux_sym_syslog_facility_token1] = ACTIONS(1080), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1080), - [aux_sym_keep_alive_token1] = ACTIONS(1080), - [aux_sym_tag_token1] = ACTIONS(1080), - [aux_sym_tunnel_token1] = ACTIONS(1082), - [aux_sym_tunnel_device_token1] = ACTIONS(1080), - [aux_sym_update_host_keys_token1] = ACTIONS(1080), - [aux_sym_use_keychain_token1] = ACTIONS(1080), - [aux_sym_use_roaming_token1] = ACTIONS(1080), - [aux_sym_user_token1] = ACTIONS(1082), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1080), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1080), - [aux_sym_visual_host_key_token1] = ACTIONS(1080), - [aux_sym_xauth_location_token1] = ACTIONS(1080), + [ts_builtin_sym_end] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1955), + [aux_sym_match_token1] = ACTIONS(1953), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1953), + [aux_sym_address_family_token1] = ACTIONS(1953), + [aux_sym_batch_mode_token1] = ACTIONS(1953), + [aux_sym_bind_address_token1] = ACTIONS(1953), + [aux_sym_bind_interface_token1] = ACTIONS(1953), + [aux_sym_canonical_domains_token1] = ACTIONS(1953), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1953), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1953), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1953), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1953), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1953), + [aux_sym_certificate_file_token1] = ACTIONS(1953), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1953), + [aux_sym_channel_timeout_token1] = ACTIONS(1953), + [aux_sym_check_host_ip_token1] = ACTIONS(1953), + [aux_sym_ciphers_token1] = ACTIONS(1953), + [aux_sym_cipher_token1] = ACTIONS(1955), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1953), + [aux_sym_compression_token1] = ACTIONS(1953), + [aux_sym_connection_attempts_token1] = ACTIONS(1953), + [aux_sym_connect_timeout_token1] = ACTIONS(1953), + [aux_sym_control_master_token1] = ACTIONS(1953), + [aux_sym_control_path_token1] = ACTIONS(1953), + [aux_sym_control_persist_token1] = ACTIONS(1953), + [aux_sym_dynamic_forward_token1] = ACTIONS(1953), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1953), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1953), + [aux_sym_escape_char_token1] = ACTIONS(1953), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1953), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1953), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1953), + [aux_sym_forward_agent_token1] = ACTIONS(1953), + [aux_sym_forward_x11_token1] = ACTIONS(1955), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1953), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1953), + [aux_sym_gateway_ports_token1] = ACTIONS(1953), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1953), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1953), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1953), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1953), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1953), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1953), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1953), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1953), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1953), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1953), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1953), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1953), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1953), + [aux_sym_host_key_alias_token1] = ACTIONS(1953), + [aux_sym_hostname_token1] = ACTIONS(1953), + [aux_sym_identities_only_token1] = ACTIONS(1953), + [aux_sym_identity_agent_token1] = ACTIONS(1953), + [aux_sym_identity_file_token1] = ACTIONS(1953), + [aux_sym_ignore_unknown_token1] = ACTIONS(1953), + [aux_sym_include_token1] = ACTIONS(1953), + [aux_sym_ip_qos_token1] = ACTIONS(1953), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1953), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1953), + [aux_sym_kex_algorithms_token1] = ACTIONS(1953), + [aux_sym_known_hosts_command_token1] = ACTIONS(1953), + [aux_sym_local_command_token1] = ACTIONS(1953), + [aux_sym_local_forward_token1] = ACTIONS(1953), + [aux_sym_log_level_token1] = ACTIONS(1953), + [aux_sym_log_verbose_token1] = ACTIONS(1953), + [aux_sym_macs_token1] = ACTIONS(1953), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1953), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1953), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1953), + [aux_sym_password_authentication_token1] = ACTIONS(1953), + [aux_sym_permit_local_command_token1] = ACTIONS(1953), + [aux_sym_permit_remote_open_token1] = ACTIONS(1953), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1953), + [aux_sym_port_token1] = ACTIONS(1953), + [aux_sym_preferred_authentications_token1] = ACTIONS(1953), + [aux_sym_protocol_token1] = ACTIONS(1953), + [aux_sym_proxy_command_token1] = ACTIONS(1953), + [aux_sym_proxy_jump_token1] = ACTIONS(1953), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1953), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1953), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1953), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1953), + [aux_sym_rekey_limit_token1] = ACTIONS(1953), + [aux_sym_remote_command_token1] = ACTIONS(1953), + [aux_sym_remote_forward_token1] = ACTIONS(1953), + [aux_sym_request_tty_token1] = ACTIONS(1953), + [aux_sym_required_rsa_size_token1] = ACTIONS(1953), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1953), + [aux_sym_security_key_provider_token1] = ACTIONS(1953), + [aux_sym_send_env_token1] = ACTIONS(1953), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1953), + [aux_sym_server_alive_interval_token1] = ACTIONS(1953), + [aux_sym_session_type_token1] = ACTIONS(1953), + [aux_sym_set_env_token1] = ACTIONS(1953), + [aux_sym_stdin_null_token1] = ACTIONS(1953), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1953), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1953), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1953), + [aux_sym_syslog_facility_token1] = ACTIONS(1953), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1953), + [aux_sym_keep_alive_token1] = ACTIONS(1953), + [aux_sym_tag_token1] = ACTIONS(1953), + [aux_sym_tunnel_token1] = ACTIONS(1955), + [aux_sym_tunnel_device_token1] = ACTIONS(1953), + [aux_sym_update_host_keys_token1] = ACTIONS(1953), + [aux_sym_use_keychain_token1] = ACTIONS(1953), + [aux_sym_use_roaming_token1] = ACTIONS(1953), + [aux_sym_user_token1] = ACTIONS(1955), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1953), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1953), + [aux_sym_visual_host_key_token1] = ACTIONS(1953), + [aux_sym_xauth_location_token1] = ACTIONS(1953), }, [674] = { - [ts_builtin_sym_end] = ACTIONS(1614), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1616), - [aux_sym_match_token1] = ACTIONS(1614), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1614), - [aux_sym_address_family_token1] = ACTIONS(1614), - [aux_sym_batch_mode_token1] = ACTIONS(1614), - [aux_sym_bind_address_token1] = ACTIONS(1614), - [aux_sym_bind_interface_token1] = ACTIONS(1614), - [aux_sym_canonical_domains_token1] = ACTIONS(1614), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1614), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1614), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1614), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1614), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1614), - [aux_sym_certificate_file_token1] = ACTIONS(1614), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1614), - [aux_sym_channel_timeout_token1] = ACTIONS(1614), - [aux_sym_check_host_ip_token1] = ACTIONS(1614), - [aux_sym_ciphers_token1] = ACTIONS(1614), - [aux_sym_cipher_token1] = ACTIONS(1616), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1614), - [aux_sym_compression_token1] = ACTIONS(1614), - [aux_sym_connection_attempts_token1] = ACTIONS(1614), - [aux_sym_connect_timeout_token1] = ACTIONS(1614), - [aux_sym_control_master_token1] = ACTIONS(1614), - [aux_sym_control_path_token1] = ACTIONS(1614), - [aux_sym_control_persist_token1] = ACTIONS(1614), - [aux_sym_dynamic_forward_token1] = ACTIONS(1614), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1614), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1614), - [aux_sym_escape_char_token1] = ACTIONS(1614), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1614), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1614), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1614), - [aux_sym_forward_agent_token1] = ACTIONS(1614), - [aux_sym_forward_x11_token1] = ACTIONS(1616), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1614), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1614), - [aux_sym_gateway_ports_token1] = ACTIONS(1614), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1614), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1614), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1614), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1614), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1614), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1614), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1614), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1614), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1614), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1614), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1614), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1614), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1614), - [aux_sym_host_key_alias_token1] = ACTIONS(1614), - [aux_sym_hostname_token1] = ACTIONS(1614), - [aux_sym_identities_only_token1] = ACTIONS(1614), - [aux_sym_identity_agent_token1] = ACTIONS(1614), - [aux_sym_identity_file_token1] = ACTIONS(1614), - [aux_sym_ignore_unknown_token1] = ACTIONS(1614), - [aux_sym_include_token1] = ACTIONS(1614), - [aux_sym_ip_qos_token1] = ACTIONS(1614), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1614), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1614), - [aux_sym_kex_algorithms_token1] = ACTIONS(1614), - [aux_sym_known_hosts_command_token1] = ACTIONS(1614), - [aux_sym_local_command_token1] = ACTIONS(1614), - [aux_sym_local_forward_token1] = ACTIONS(1614), - [aux_sym_log_level_token1] = ACTIONS(1614), - [aux_sym_log_verbose_token1] = ACTIONS(1614), - [aux_sym_macs_token1] = ACTIONS(1614), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1614), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1614), - [aux_sym_password_authentication_token1] = ACTIONS(1614), - [aux_sym_permit_local_command_token1] = ACTIONS(1614), - [aux_sym_permit_remote_open_token1] = ACTIONS(1614), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1614), - [aux_sym_port_token1] = ACTIONS(1614), - [aux_sym_preferred_authentications_token1] = ACTIONS(1614), - [aux_sym_protocol_token1] = ACTIONS(1614), - [aux_sym_proxy_command_token1] = ACTIONS(1614), - [aux_sym_proxy_jump_token1] = ACTIONS(1614), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1614), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1614), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1614), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1614), - [aux_sym_rekey_limit_token1] = ACTIONS(1614), - [aux_sym_remote_command_token1] = ACTIONS(1614), - [aux_sym_remote_forward_token1] = ACTIONS(1614), - [aux_sym_request_tty_token1] = ACTIONS(1614), - [aux_sym_required_rsa_size_token1] = ACTIONS(1614), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1614), - [aux_sym_security_key_provider_token1] = ACTIONS(1614), - [aux_sym_send_env_token1] = ACTIONS(1614), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1614), - [aux_sym_server_alive_interval_token1] = ACTIONS(1614), - [aux_sym_session_type_token1] = ACTIONS(1614), - [aux_sym_set_env_token1] = ACTIONS(1614), - [aux_sym_stdin_null_token1] = ACTIONS(1614), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1614), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1614), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1614), - [aux_sym_syslog_facility_token1] = ACTIONS(1614), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1614), - [aux_sym_keep_alive_token1] = ACTIONS(1614), - [aux_sym_tag_token1] = ACTIONS(1614), - [aux_sym_tunnel_token1] = ACTIONS(1616), - [aux_sym_tunnel_device_token1] = ACTIONS(1614), - [aux_sym_update_host_keys_token1] = ACTIONS(1614), - [aux_sym_use_keychain_token1] = ACTIONS(1614), - [aux_sym_use_roaming_token1] = ACTIONS(1614), - [aux_sym_user_token1] = ACTIONS(1616), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1614), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1614), - [aux_sym_visual_host_key_token1] = ACTIONS(1614), - [aux_sym_xauth_location_token1] = ACTIONS(1614), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1943), + [aux_sym_match_token1] = ACTIONS(1941), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1941), + [aux_sym_address_family_token1] = ACTIONS(1941), + [aux_sym_batch_mode_token1] = ACTIONS(1941), + [aux_sym_bind_address_token1] = ACTIONS(1941), + [aux_sym_bind_interface_token1] = ACTIONS(1941), + [aux_sym_canonical_domains_token1] = ACTIONS(1941), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1941), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1941), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1941), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1941), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1941), + [aux_sym_certificate_file_token1] = ACTIONS(1941), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1941), + [aux_sym_channel_timeout_token1] = ACTIONS(1941), + [aux_sym_check_host_ip_token1] = ACTIONS(1941), + [aux_sym_ciphers_token1] = ACTIONS(1941), + [aux_sym_cipher_token1] = ACTIONS(1943), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1941), + [aux_sym_compression_token1] = ACTIONS(1941), + [aux_sym_connection_attempts_token1] = ACTIONS(1941), + [aux_sym_connect_timeout_token1] = ACTIONS(1941), + [aux_sym_control_master_token1] = ACTIONS(1941), + [aux_sym_control_path_token1] = ACTIONS(1941), + [aux_sym_control_persist_token1] = ACTIONS(1941), + [aux_sym_dynamic_forward_token1] = ACTIONS(1941), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1941), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1941), + [aux_sym_escape_char_token1] = ACTIONS(1941), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1941), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1941), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1941), + [aux_sym_forward_agent_token1] = ACTIONS(1941), + [aux_sym_forward_x11_token1] = ACTIONS(1943), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1941), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1941), + [aux_sym_gateway_ports_token1] = ACTIONS(1941), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1941), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1941), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1941), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1941), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1941), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1941), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1941), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1941), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1941), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1941), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1941), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1941), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1941), + [aux_sym_host_key_alias_token1] = ACTIONS(1941), + [aux_sym_hostname_token1] = ACTIONS(1941), + [aux_sym_identities_only_token1] = ACTIONS(1941), + [aux_sym_identity_agent_token1] = ACTIONS(1941), + [aux_sym_identity_file_token1] = ACTIONS(1941), + [aux_sym_ignore_unknown_token1] = ACTIONS(1941), + [aux_sym_include_token1] = ACTIONS(1941), + [aux_sym_ip_qos_token1] = ACTIONS(1941), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1941), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1941), + [aux_sym_kex_algorithms_token1] = ACTIONS(1941), + [aux_sym_known_hosts_command_token1] = ACTIONS(1941), + [aux_sym_local_command_token1] = ACTIONS(1941), + [aux_sym_local_forward_token1] = ACTIONS(1941), + [aux_sym_log_level_token1] = ACTIONS(1941), + [aux_sym_log_verbose_token1] = ACTIONS(1941), + [aux_sym_macs_token1] = ACTIONS(1941), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1941), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1941), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1941), + [aux_sym_password_authentication_token1] = ACTIONS(1941), + [aux_sym_permit_local_command_token1] = ACTIONS(1941), + [aux_sym_permit_remote_open_token1] = ACTIONS(1941), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1941), + [aux_sym_port_token1] = ACTIONS(1941), + [aux_sym_preferred_authentications_token1] = ACTIONS(1941), + [aux_sym_protocol_token1] = ACTIONS(1941), + [aux_sym_proxy_command_token1] = ACTIONS(1941), + [aux_sym_proxy_jump_token1] = ACTIONS(1941), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1941), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1941), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1941), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1941), + [aux_sym_rekey_limit_token1] = ACTIONS(1941), + [aux_sym_remote_command_token1] = ACTIONS(1941), + [aux_sym_remote_forward_token1] = ACTIONS(1941), + [aux_sym_request_tty_token1] = ACTIONS(1941), + [aux_sym_required_rsa_size_token1] = ACTIONS(1941), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1941), + [aux_sym_security_key_provider_token1] = ACTIONS(1941), + [aux_sym_send_env_token1] = ACTIONS(1941), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1941), + [aux_sym_server_alive_interval_token1] = ACTIONS(1941), + [aux_sym_session_type_token1] = ACTIONS(1941), + [aux_sym_set_env_token1] = ACTIONS(1941), + [aux_sym_stdin_null_token1] = ACTIONS(1941), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1941), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1941), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1941), + [aux_sym_syslog_facility_token1] = ACTIONS(1941), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1941), + [aux_sym_keep_alive_token1] = ACTIONS(1941), + [aux_sym_tag_token1] = ACTIONS(1941), + [aux_sym_tunnel_token1] = ACTIONS(1943), + [aux_sym_tunnel_device_token1] = ACTIONS(1941), + [aux_sym_update_host_keys_token1] = ACTIONS(1941), + [aux_sym_use_keychain_token1] = ACTIONS(1941), + [aux_sym_use_roaming_token1] = ACTIONS(1941), + [aux_sym_user_token1] = ACTIONS(1943), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1941), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1941), + [aux_sym_visual_host_key_token1] = ACTIONS(1941), + [aux_sym_xauth_location_token1] = ACTIONS(1941), }, [675] = { - [ts_builtin_sym_end] = ACTIONS(1074), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1076), - [aux_sym_match_token1] = ACTIONS(1074), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1074), - [aux_sym_address_family_token1] = ACTIONS(1074), - [aux_sym_batch_mode_token1] = ACTIONS(1074), - [aux_sym_bind_address_token1] = ACTIONS(1074), - [aux_sym_bind_interface_token1] = ACTIONS(1074), - [aux_sym_canonical_domains_token1] = ACTIONS(1074), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1074), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1074), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1074), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1074), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1074), - [aux_sym_certificate_file_token1] = ACTIONS(1074), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1074), - [aux_sym_channel_timeout_token1] = ACTIONS(1074), - [aux_sym_check_host_ip_token1] = ACTIONS(1074), - [aux_sym_ciphers_token1] = ACTIONS(1074), - [aux_sym_cipher_token1] = ACTIONS(1076), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1074), - [aux_sym_compression_token1] = ACTIONS(1074), - [aux_sym_connection_attempts_token1] = ACTIONS(1074), - [aux_sym_connect_timeout_token1] = ACTIONS(1074), - [aux_sym_control_master_token1] = ACTIONS(1074), - [aux_sym_control_path_token1] = ACTIONS(1074), - [aux_sym_control_persist_token1] = ACTIONS(1074), - [aux_sym_dynamic_forward_token1] = ACTIONS(1074), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1074), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1074), - [aux_sym_escape_char_token1] = ACTIONS(1074), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1074), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1074), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1074), - [aux_sym_forward_agent_token1] = ACTIONS(1074), - [aux_sym_forward_x11_token1] = ACTIONS(1076), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1074), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1074), - [aux_sym_gateway_ports_token1] = ACTIONS(1074), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1074), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1074), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1074), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1074), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1074), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1074), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1074), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1074), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1074), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1074), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1074), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1074), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1074), - [aux_sym_host_key_alias_token1] = ACTIONS(1074), - [aux_sym_hostname_token1] = ACTIONS(1074), - [aux_sym_identities_only_token1] = ACTIONS(1074), - [aux_sym_identity_agent_token1] = ACTIONS(1074), - [aux_sym_identity_file_token1] = ACTIONS(1074), - [aux_sym_ignore_unknown_token1] = ACTIONS(1074), - [aux_sym_include_token1] = ACTIONS(1074), - [aux_sym_ip_qos_token1] = ACTIONS(1074), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1074), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1074), - [aux_sym_kex_algorithms_token1] = ACTIONS(1074), - [aux_sym_known_hosts_command_token1] = ACTIONS(1074), - [aux_sym_local_command_token1] = ACTIONS(1074), - [aux_sym_local_forward_token1] = ACTIONS(1074), - [aux_sym_log_level_token1] = ACTIONS(1074), - [aux_sym_log_verbose_token1] = ACTIONS(1074), - [aux_sym_macs_token1] = ACTIONS(1074), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1074), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1074), - [aux_sym_password_authentication_token1] = ACTIONS(1074), - [aux_sym_permit_local_command_token1] = ACTIONS(1074), - [aux_sym_permit_remote_open_token1] = ACTIONS(1074), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1074), - [aux_sym_port_token1] = ACTIONS(1074), - [aux_sym_preferred_authentications_token1] = ACTIONS(1074), - [aux_sym_protocol_token1] = ACTIONS(1074), - [aux_sym_proxy_command_token1] = ACTIONS(1074), - [aux_sym_proxy_jump_token1] = ACTIONS(1074), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1074), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1074), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1074), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1074), - [aux_sym_rekey_limit_token1] = ACTIONS(1074), - [aux_sym_remote_command_token1] = ACTIONS(1074), - [aux_sym_remote_forward_token1] = ACTIONS(1074), - [aux_sym_request_tty_token1] = ACTIONS(1074), - [aux_sym_required_rsa_size_token1] = ACTIONS(1074), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1074), - [aux_sym_security_key_provider_token1] = ACTIONS(1074), - [aux_sym_send_env_token1] = ACTIONS(1074), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1074), - [aux_sym_server_alive_interval_token1] = ACTIONS(1074), - [aux_sym_session_type_token1] = ACTIONS(1074), - [aux_sym_set_env_token1] = ACTIONS(1074), - [aux_sym_stdin_null_token1] = ACTIONS(1074), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1074), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1074), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1074), - [aux_sym_syslog_facility_token1] = ACTIONS(1074), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1074), - [aux_sym_keep_alive_token1] = ACTIONS(1074), - [aux_sym_tag_token1] = ACTIONS(1074), - [aux_sym_tunnel_token1] = ACTIONS(1076), - [aux_sym_tunnel_device_token1] = ACTIONS(1074), - [aux_sym_update_host_keys_token1] = ACTIONS(1074), - [aux_sym_use_keychain_token1] = ACTIONS(1074), - [aux_sym_use_roaming_token1] = ACTIONS(1074), - [aux_sym_user_token1] = ACTIONS(1076), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1074), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1074), - [aux_sym_visual_host_key_token1] = ACTIONS(1074), - [aux_sym_xauth_location_token1] = ACTIONS(1074), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1871), + [aux_sym_match_token1] = ACTIONS(1869), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1869), + [aux_sym_address_family_token1] = ACTIONS(1869), + [aux_sym_batch_mode_token1] = ACTIONS(1869), + [aux_sym_bind_address_token1] = ACTIONS(1869), + [aux_sym_bind_interface_token1] = ACTIONS(1869), + [aux_sym_canonical_domains_token1] = ACTIONS(1869), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1869), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1869), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1869), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1869), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1869), + [aux_sym_certificate_file_token1] = ACTIONS(1869), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1869), + [aux_sym_channel_timeout_token1] = ACTIONS(1869), + [aux_sym_check_host_ip_token1] = ACTIONS(1869), + [aux_sym_ciphers_token1] = ACTIONS(1869), + [aux_sym_cipher_token1] = ACTIONS(1871), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1869), + [aux_sym_compression_token1] = ACTIONS(1869), + [aux_sym_connection_attempts_token1] = ACTIONS(1869), + [aux_sym_connect_timeout_token1] = ACTIONS(1869), + [aux_sym_control_master_token1] = ACTIONS(1869), + [aux_sym_control_path_token1] = ACTIONS(1869), + [aux_sym_control_persist_token1] = ACTIONS(1869), + [aux_sym_dynamic_forward_token1] = ACTIONS(1869), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1869), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1869), + [aux_sym_escape_char_token1] = ACTIONS(1869), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1869), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1869), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1869), + [aux_sym_forward_agent_token1] = ACTIONS(1869), + [aux_sym_forward_x11_token1] = ACTIONS(1871), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1869), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1869), + [aux_sym_gateway_ports_token1] = ACTIONS(1869), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1869), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1869), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1869), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1869), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1869), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1869), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1869), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1869), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1869), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1869), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1869), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1869), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1869), + [aux_sym_host_key_alias_token1] = ACTIONS(1869), + [aux_sym_hostname_token1] = ACTIONS(1869), + [aux_sym_identities_only_token1] = ACTIONS(1869), + [aux_sym_identity_agent_token1] = ACTIONS(1869), + [aux_sym_identity_file_token1] = ACTIONS(1869), + [aux_sym_ignore_unknown_token1] = ACTIONS(1869), + [aux_sym_include_token1] = ACTIONS(1869), + [aux_sym_ip_qos_token1] = ACTIONS(1869), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1869), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1869), + [aux_sym_kex_algorithms_token1] = ACTIONS(1869), + [aux_sym_known_hosts_command_token1] = ACTIONS(1869), + [aux_sym_local_command_token1] = ACTIONS(1869), + [aux_sym_local_forward_token1] = ACTIONS(1869), + [aux_sym_log_level_token1] = ACTIONS(1869), + [aux_sym_log_verbose_token1] = ACTIONS(1869), + [aux_sym_macs_token1] = ACTIONS(1869), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1869), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1869), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1869), + [aux_sym_password_authentication_token1] = ACTIONS(1869), + [aux_sym_permit_local_command_token1] = ACTIONS(1869), + [aux_sym_permit_remote_open_token1] = ACTIONS(1869), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1869), + [aux_sym_port_token1] = ACTIONS(1869), + [aux_sym_preferred_authentications_token1] = ACTIONS(1869), + [aux_sym_protocol_token1] = ACTIONS(1869), + [aux_sym_proxy_command_token1] = ACTIONS(1869), + [aux_sym_proxy_jump_token1] = ACTIONS(1869), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1869), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1869), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1869), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1869), + [aux_sym_rekey_limit_token1] = ACTIONS(1869), + [aux_sym_remote_command_token1] = ACTIONS(1869), + [aux_sym_remote_forward_token1] = ACTIONS(1869), + [aux_sym_request_tty_token1] = ACTIONS(1869), + [aux_sym_required_rsa_size_token1] = ACTIONS(1869), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1869), + [aux_sym_security_key_provider_token1] = ACTIONS(1869), + [aux_sym_send_env_token1] = ACTIONS(1869), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1869), + [aux_sym_server_alive_interval_token1] = ACTIONS(1869), + [aux_sym_session_type_token1] = ACTIONS(1869), + [aux_sym_set_env_token1] = ACTIONS(1869), + [aux_sym_stdin_null_token1] = ACTIONS(1869), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1869), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1869), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1869), + [aux_sym_syslog_facility_token1] = ACTIONS(1869), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1869), + [aux_sym_keep_alive_token1] = ACTIONS(1869), + [aux_sym_tag_token1] = ACTIONS(1869), + [aux_sym_tunnel_token1] = ACTIONS(1871), + [aux_sym_tunnel_device_token1] = ACTIONS(1869), + [aux_sym_update_host_keys_token1] = ACTIONS(1869), + [aux_sym_use_keychain_token1] = ACTIONS(1869), + [aux_sym_use_roaming_token1] = ACTIONS(1869), + [aux_sym_user_token1] = ACTIONS(1871), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1869), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1869), + [aux_sym_visual_host_key_token1] = ACTIONS(1869), + [aux_sym_xauth_location_token1] = ACTIONS(1869), }, [676] = { - [ts_builtin_sym_end] = ACTIONS(1068), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1070), - [aux_sym_match_token1] = ACTIONS(1068), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1068), - [aux_sym_address_family_token1] = ACTIONS(1068), - [aux_sym_batch_mode_token1] = ACTIONS(1068), - [aux_sym_bind_address_token1] = ACTIONS(1068), - [aux_sym_bind_interface_token1] = ACTIONS(1068), - [aux_sym_canonical_domains_token1] = ACTIONS(1068), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1068), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1068), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1068), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1068), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1068), - [aux_sym_certificate_file_token1] = ACTIONS(1068), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1068), - [aux_sym_channel_timeout_token1] = ACTIONS(1068), - [aux_sym_check_host_ip_token1] = ACTIONS(1068), - [aux_sym_ciphers_token1] = ACTIONS(1068), - [aux_sym_cipher_token1] = ACTIONS(1070), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1068), - [aux_sym_compression_token1] = ACTIONS(1068), - [aux_sym_connection_attempts_token1] = ACTIONS(1068), - [aux_sym_connect_timeout_token1] = ACTIONS(1068), - [aux_sym_control_master_token1] = ACTIONS(1068), - [aux_sym_control_path_token1] = ACTIONS(1068), - [aux_sym_control_persist_token1] = ACTIONS(1068), - [aux_sym_dynamic_forward_token1] = ACTIONS(1068), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1068), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1068), - [aux_sym_escape_char_token1] = ACTIONS(1068), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1068), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1068), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1068), - [aux_sym_forward_agent_token1] = ACTIONS(1068), - [aux_sym_forward_x11_token1] = ACTIONS(1070), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1068), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1068), - [aux_sym_gateway_ports_token1] = ACTIONS(1068), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1068), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1068), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1068), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1068), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1068), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1068), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1068), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1068), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1068), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1068), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1068), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1068), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1068), - [aux_sym_host_key_alias_token1] = ACTIONS(1068), - [aux_sym_hostname_token1] = ACTIONS(1068), - [aux_sym_identities_only_token1] = ACTIONS(1068), - [aux_sym_identity_agent_token1] = ACTIONS(1068), - [aux_sym_identity_file_token1] = ACTIONS(1068), - [aux_sym_ignore_unknown_token1] = ACTIONS(1068), - [aux_sym_include_token1] = ACTIONS(1068), - [aux_sym_ip_qos_token1] = ACTIONS(1068), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1068), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1068), - [aux_sym_kex_algorithms_token1] = ACTIONS(1068), - [aux_sym_known_hosts_command_token1] = ACTIONS(1068), - [aux_sym_local_command_token1] = ACTIONS(1068), - [aux_sym_local_forward_token1] = ACTIONS(1068), - [aux_sym_log_level_token1] = ACTIONS(1068), - [aux_sym_log_verbose_token1] = ACTIONS(1068), - [aux_sym_macs_token1] = ACTIONS(1068), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1068), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1068), - [aux_sym_password_authentication_token1] = ACTIONS(1068), - [aux_sym_permit_local_command_token1] = ACTIONS(1068), - [aux_sym_permit_remote_open_token1] = ACTIONS(1068), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1068), - [aux_sym_port_token1] = ACTIONS(1068), - [aux_sym_preferred_authentications_token1] = ACTIONS(1068), - [aux_sym_protocol_token1] = ACTIONS(1068), - [aux_sym_proxy_command_token1] = ACTIONS(1068), - [aux_sym_proxy_jump_token1] = ACTIONS(1068), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1068), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1068), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1068), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1068), - [aux_sym_rekey_limit_token1] = ACTIONS(1068), - [aux_sym_remote_command_token1] = ACTIONS(1068), - [aux_sym_remote_forward_token1] = ACTIONS(1068), - [aux_sym_request_tty_token1] = ACTIONS(1068), - [aux_sym_required_rsa_size_token1] = ACTIONS(1068), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1068), - [aux_sym_security_key_provider_token1] = ACTIONS(1068), - [aux_sym_send_env_token1] = ACTIONS(1068), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1068), - [aux_sym_server_alive_interval_token1] = ACTIONS(1068), - [aux_sym_session_type_token1] = ACTIONS(1068), - [aux_sym_set_env_token1] = ACTIONS(1068), - [aux_sym_stdin_null_token1] = ACTIONS(1068), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1068), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1068), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1068), - [aux_sym_syslog_facility_token1] = ACTIONS(1068), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1068), - [aux_sym_keep_alive_token1] = ACTIONS(1068), - [aux_sym_tag_token1] = ACTIONS(1068), - [aux_sym_tunnel_token1] = ACTIONS(1070), - [aux_sym_tunnel_device_token1] = ACTIONS(1068), - [aux_sym_update_host_keys_token1] = ACTIONS(1068), - [aux_sym_use_keychain_token1] = ACTIONS(1068), - [aux_sym_use_roaming_token1] = ACTIONS(1068), - [aux_sym_user_token1] = ACTIONS(1070), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1068), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1068), - [aux_sym_visual_host_key_token1] = ACTIONS(1068), - [aux_sym_xauth_location_token1] = ACTIONS(1068), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1977), + [aux_sym_match_token1] = ACTIONS(1975), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1975), + [aux_sym_address_family_token1] = ACTIONS(1975), + [aux_sym_batch_mode_token1] = ACTIONS(1975), + [aux_sym_bind_address_token1] = ACTIONS(1975), + [aux_sym_bind_interface_token1] = ACTIONS(1975), + [aux_sym_canonical_domains_token1] = ACTIONS(1975), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1975), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1975), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1975), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1975), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1975), + [aux_sym_certificate_file_token1] = ACTIONS(1975), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1975), + [aux_sym_channel_timeout_token1] = ACTIONS(1975), + [aux_sym_check_host_ip_token1] = ACTIONS(1975), + [aux_sym_ciphers_token1] = ACTIONS(1975), + [aux_sym_cipher_token1] = ACTIONS(1977), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1975), + [aux_sym_compression_token1] = ACTIONS(1975), + [aux_sym_connection_attempts_token1] = ACTIONS(1975), + [aux_sym_connect_timeout_token1] = ACTIONS(1975), + [aux_sym_control_master_token1] = ACTIONS(1975), + [aux_sym_control_path_token1] = ACTIONS(1975), + [aux_sym_control_persist_token1] = ACTIONS(1975), + [aux_sym_dynamic_forward_token1] = ACTIONS(1975), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1975), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1975), + [aux_sym_escape_char_token1] = ACTIONS(1975), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1975), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1975), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1975), + [aux_sym_forward_agent_token1] = ACTIONS(1975), + [aux_sym_forward_x11_token1] = ACTIONS(1977), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1975), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1975), + [aux_sym_gateway_ports_token1] = ACTIONS(1975), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1975), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1975), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1975), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1975), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1975), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1975), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1975), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1975), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1975), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1975), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1975), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1975), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1975), + [aux_sym_host_key_alias_token1] = ACTIONS(1975), + [aux_sym_hostname_token1] = ACTIONS(1975), + [aux_sym_identities_only_token1] = ACTIONS(1975), + [aux_sym_identity_agent_token1] = ACTIONS(1975), + [aux_sym_identity_file_token1] = ACTIONS(1975), + [aux_sym_ignore_unknown_token1] = ACTIONS(1975), + [aux_sym_include_token1] = ACTIONS(1975), + [aux_sym_ip_qos_token1] = ACTIONS(1975), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1975), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1975), + [aux_sym_kex_algorithms_token1] = ACTIONS(1975), + [aux_sym_known_hosts_command_token1] = ACTIONS(1975), + [aux_sym_local_command_token1] = ACTIONS(1975), + [aux_sym_local_forward_token1] = ACTIONS(1975), + [aux_sym_log_level_token1] = ACTIONS(1975), + [aux_sym_log_verbose_token1] = ACTIONS(1975), + [aux_sym_macs_token1] = ACTIONS(1975), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1975), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1975), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1975), + [aux_sym_password_authentication_token1] = ACTIONS(1975), + [aux_sym_permit_local_command_token1] = ACTIONS(1975), + [aux_sym_permit_remote_open_token1] = ACTIONS(1975), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1975), + [aux_sym_port_token1] = ACTIONS(1975), + [aux_sym_preferred_authentications_token1] = ACTIONS(1975), + [aux_sym_protocol_token1] = ACTIONS(1975), + [aux_sym_proxy_command_token1] = ACTIONS(1975), + [aux_sym_proxy_jump_token1] = ACTIONS(1975), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1975), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1975), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1975), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1975), + [aux_sym_rekey_limit_token1] = ACTIONS(1975), + [aux_sym_remote_command_token1] = ACTIONS(1975), + [aux_sym_remote_forward_token1] = ACTIONS(1975), + [aux_sym_request_tty_token1] = ACTIONS(1975), + [aux_sym_required_rsa_size_token1] = ACTIONS(1975), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1975), + [aux_sym_security_key_provider_token1] = ACTIONS(1975), + [aux_sym_send_env_token1] = ACTIONS(1975), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1975), + [aux_sym_server_alive_interval_token1] = ACTIONS(1975), + [aux_sym_session_type_token1] = ACTIONS(1975), + [aux_sym_set_env_token1] = ACTIONS(1975), + [aux_sym_stdin_null_token1] = ACTIONS(1975), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1975), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1975), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1975), + [aux_sym_syslog_facility_token1] = ACTIONS(1975), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1975), + [aux_sym_keep_alive_token1] = ACTIONS(1975), + [aux_sym_tag_token1] = ACTIONS(1975), + [aux_sym_tunnel_token1] = ACTIONS(1977), + [aux_sym_tunnel_device_token1] = ACTIONS(1975), + [aux_sym_update_host_keys_token1] = ACTIONS(1975), + [aux_sym_use_keychain_token1] = ACTIONS(1975), + [aux_sym_use_roaming_token1] = ACTIONS(1975), + [aux_sym_user_token1] = ACTIONS(1977), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1975), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1975), + [aux_sym_visual_host_key_token1] = ACTIONS(1975), + [aux_sym_xauth_location_token1] = ACTIONS(1975), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(666), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(668), - [aux_sym_match_token1] = ACTIONS(666), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(666), - [aux_sym_address_family_token1] = ACTIONS(666), - [aux_sym_batch_mode_token1] = ACTIONS(666), - [aux_sym_bind_address_token1] = ACTIONS(666), - [aux_sym_bind_interface_token1] = ACTIONS(666), - [aux_sym_canonical_domains_token1] = ACTIONS(666), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(666), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(666), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(666), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(666), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(666), - [aux_sym_certificate_file_token1] = ACTIONS(666), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(666), - [aux_sym_channel_timeout_token1] = ACTIONS(666), - [aux_sym_check_host_ip_token1] = ACTIONS(666), - [aux_sym_ciphers_token1] = ACTIONS(666), - [aux_sym_cipher_token1] = ACTIONS(668), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(666), - [aux_sym_compression_token1] = ACTIONS(666), - [aux_sym_connection_attempts_token1] = ACTIONS(666), - [aux_sym_connect_timeout_token1] = ACTIONS(666), - [aux_sym_control_master_token1] = ACTIONS(666), - [aux_sym_control_path_token1] = ACTIONS(666), - [aux_sym_control_persist_token1] = ACTIONS(666), - [aux_sym_dynamic_forward_token1] = ACTIONS(666), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(666), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(666), - [aux_sym_escape_char_token1] = ACTIONS(666), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(666), - [aux_sym_fingerprint_hash_token1] = ACTIONS(666), - [aux_sym_fork_after_authentication_token1] = ACTIONS(666), - [aux_sym_forward_agent_token1] = ACTIONS(666), - [aux_sym_forward_x11_token1] = ACTIONS(668), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(666), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(666), - [aux_sym_gateway_ports_token1] = ACTIONS(666), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(666), - [aux_sym_gssapi_authentication_token1] = ACTIONS(666), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(666), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(666), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(666), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(666), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(666), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(666), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(666), - [aux_sym_hash_known_hosts_token1] = ACTIONS(666), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(666), - [aux_sym_hostbased_authentication_token1] = ACTIONS(666), - [aux_sym_host_key_algorithms_token1] = ACTIONS(666), - [aux_sym_host_key_alias_token1] = ACTIONS(666), - [aux_sym_hostname_token1] = ACTIONS(666), - [aux_sym_identities_only_token1] = ACTIONS(666), - [aux_sym_identity_agent_token1] = ACTIONS(666), - [aux_sym_identity_file_token1] = ACTIONS(666), - [aux_sym_ignore_unknown_token1] = ACTIONS(666), - [aux_sym_include_token1] = ACTIONS(666), - [aux_sym_ip_qos_token1] = ACTIONS(666), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(666), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(666), - [aux_sym_kex_algorithms_token1] = ACTIONS(666), - [aux_sym_known_hosts_command_token1] = ACTIONS(666), - [aux_sym_local_command_token1] = ACTIONS(666), - [aux_sym_local_forward_token1] = ACTIONS(666), - [aux_sym_log_level_token1] = ACTIONS(666), - [aux_sym_log_verbose_token1] = ACTIONS(666), - [aux_sym_macs_token1] = ACTIONS(666), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(666), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(666), - [aux_sym_password_authentication_token1] = ACTIONS(666), - [aux_sym_permit_local_command_token1] = ACTIONS(666), - [aux_sym_permit_remote_open_token1] = ACTIONS(666), - [aux_sym_pkcs11_provider_token1] = ACTIONS(666), - [aux_sym_port_token1] = ACTIONS(666), - [aux_sym_preferred_authentications_token1] = ACTIONS(666), - [aux_sym_protocol_token1] = ACTIONS(666), - [aux_sym_proxy_command_token1] = ACTIONS(666), - [aux_sym_proxy_jump_token1] = ACTIONS(666), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(666), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(666), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(666), - [aux_sym_pubkey_authentication_token1] = ACTIONS(666), - [aux_sym_rekey_limit_token1] = ACTIONS(666), - [aux_sym_remote_command_token1] = ACTIONS(666), - [aux_sym_remote_forward_token1] = ACTIONS(666), - [aux_sym_request_tty_token1] = ACTIONS(666), - [aux_sym_required_rsa_size_token1] = ACTIONS(666), - [aux_sym_revoked_host_keys_token1] = ACTIONS(666), - [aux_sym_security_key_provider_token1] = ACTIONS(666), - [aux_sym_send_env_token1] = ACTIONS(666), - [aux_sym_server_alive_count_max_token1] = ACTIONS(666), - [aux_sym_server_alive_interval_token1] = ACTIONS(666), - [aux_sym_session_type_token1] = ACTIONS(666), - [aux_sym_set_env_token1] = ACTIONS(666), - [aux_sym_stdin_null_token1] = ACTIONS(666), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(666), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(666), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(666), - [aux_sym_syslog_facility_token1] = ACTIONS(666), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(666), - [aux_sym_keep_alive_token1] = ACTIONS(666), - [aux_sym_tag_token1] = ACTIONS(666), - [aux_sym_tunnel_token1] = ACTIONS(668), - [aux_sym_tunnel_device_token1] = ACTIONS(666), - [aux_sym_update_host_keys_token1] = ACTIONS(666), - [aux_sym_use_keychain_token1] = ACTIONS(666), - [aux_sym_use_roaming_token1] = ACTIONS(666), - [aux_sym_user_token1] = ACTIONS(668), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(666), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(666), - [aux_sym_visual_host_key_token1] = ACTIONS(666), - [aux_sym_xauth_location_token1] = ACTIONS(666), + [ts_builtin_sym_end] = ACTIONS(629), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(631), + [aux_sym_match_token1] = ACTIONS(629), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(629), + [aux_sym_address_family_token1] = ACTIONS(629), + [aux_sym_batch_mode_token1] = ACTIONS(629), + [aux_sym_bind_address_token1] = ACTIONS(629), + [aux_sym_bind_interface_token1] = ACTIONS(629), + [aux_sym_canonical_domains_token1] = ACTIONS(629), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(629), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(629), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(629), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(629), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(629), + [aux_sym_certificate_file_token1] = ACTIONS(629), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(629), + [aux_sym_channel_timeout_token1] = ACTIONS(629), + [aux_sym_check_host_ip_token1] = ACTIONS(629), + [aux_sym_ciphers_token1] = ACTIONS(629), + [aux_sym_cipher_token1] = ACTIONS(631), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(629), + [aux_sym_compression_token1] = ACTIONS(629), + [aux_sym_connection_attempts_token1] = ACTIONS(629), + [aux_sym_connect_timeout_token1] = ACTIONS(629), + [aux_sym_control_master_token1] = ACTIONS(629), + [aux_sym_control_path_token1] = ACTIONS(629), + [aux_sym_control_persist_token1] = ACTIONS(629), + [aux_sym_dynamic_forward_token1] = ACTIONS(629), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(629), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(629), + [aux_sym_escape_char_token1] = ACTIONS(629), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(629), + [aux_sym_fingerprint_hash_token1] = ACTIONS(629), + [aux_sym_fork_after_authentication_token1] = ACTIONS(629), + [aux_sym_forward_agent_token1] = ACTIONS(629), + [aux_sym_forward_x11_token1] = ACTIONS(631), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(629), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(629), + [aux_sym_gateway_ports_token1] = ACTIONS(629), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(629), + [aux_sym_gssapi_authentication_token1] = ACTIONS(629), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(629), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(629), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(629), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(629), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(629), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(629), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(629), + [aux_sym_hash_known_hosts_token1] = ACTIONS(629), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(629), + [aux_sym_hostbased_authentication_token1] = ACTIONS(629), + [aux_sym_host_key_algorithms_token1] = ACTIONS(629), + [aux_sym_host_key_alias_token1] = ACTIONS(629), + [aux_sym_hostname_token1] = ACTIONS(629), + [aux_sym_identities_only_token1] = ACTIONS(629), + [aux_sym_identity_agent_token1] = ACTIONS(629), + [aux_sym_identity_file_token1] = ACTIONS(629), + [aux_sym_ignore_unknown_token1] = ACTIONS(629), + [aux_sym_include_token1] = ACTIONS(629), + [aux_sym_ip_qos_token1] = ACTIONS(629), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(629), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(629), + [aux_sym_kex_algorithms_token1] = ACTIONS(629), + [aux_sym_known_hosts_command_token1] = ACTIONS(629), + [aux_sym_local_command_token1] = ACTIONS(629), + [aux_sym_local_forward_token1] = ACTIONS(629), + [aux_sym_log_level_token1] = ACTIONS(629), + [aux_sym_log_verbose_token1] = ACTIONS(629), + [aux_sym_macs_token1] = ACTIONS(629), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(629), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(629), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(629), + [aux_sym_password_authentication_token1] = ACTIONS(629), + [aux_sym_permit_local_command_token1] = ACTIONS(629), + [aux_sym_permit_remote_open_token1] = ACTIONS(629), + [aux_sym_pkcs11_provider_token1] = ACTIONS(629), + [aux_sym_port_token1] = ACTIONS(629), + [aux_sym_preferred_authentications_token1] = ACTIONS(629), + [aux_sym_protocol_token1] = ACTIONS(629), + [aux_sym_proxy_command_token1] = ACTIONS(629), + [aux_sym_proxy_jump_token1] = ACTIONS(629), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(629), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(629), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(629), + [aux_sym_pubkey_authentication_token1] = ACTIONS(629), + [aux_sym_rekey_limit_token1] = ACTIONS(629), + [aux_sym_remote_command_token1] = ACTIONS(629), + [aux_sym_remote_forward_token1] = ACTIONS(629), + [aux_sym_request_tty_token1] = ACTIONS(629), + [aux_sym_required_rsa_size_token1] = ACTIONS(629), + [aux_sym_revoked_host_keys_token1] = ACTIONS(629), + [aux_sym_security_key_provider_token1] = ACTIONS(629), + [aux_sym_send_env_token1] = ACTIONS(629), + [aux_sym_server_alive_count_max_token1] = ACTIONS(629), + [aux_sym_server_alive_interval_token1] = ACTIONS(629), + [aux_sym_session_type_token1] = ACTIONS(629), + [aux_sym_set_env_token1] = ACTIONS(629), + [aux_sym_stdin_null_token1] = ACTIONS(629), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(629), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(629), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(629), + [aux_sym_syslog_facility_token1] = ACTIONS(629), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(629), + [aux_sym_keep_alive_token1] = ACTIONS(629), + [aux_sym_tag_token1] = ACTIONS(629), + [aux_sym_tunnel_token1] = ACTIONS(631), + [aux_sym_tunnel_device_token1] = ACTIONS(629), + [aux_sym_update_host_keys_token1] = ACTIONS(629), + [aux_sym_use_keychain_token1] = ACTIONS(629), + [aux_sym_use_roaming_token1] = ACTIONS(629), + [aux_sym_user_token1] = ACTIONS(631), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(629), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(629), + [aux_sym_visual_host_key_token1] = ACTIONS(629), + [aux_sym_xauth_location_token1] = ACTIONS(629), }, [678] = { - [ts_builtin_sym_end] = ACTIONS(1620), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1622), - [aux_sym_match_token1] = ACTIONS(1620), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1620), - [aux_sym_address_family_token1] = ACTIONS(1620), - [aux_sym_batch_mode_token1] = ACTIONS(1620), - [aux_sym_bind_address_token1] = ACTIONS(1620), - [aux_sym_bind_interface_token1] = ACTIONS(1620), - [aux_sym_canonical_domains_token1] = ACTIONS(1620), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1620), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1620), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1620), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1620), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1620), - [aux_sym_certificate_file_token1] = ACTIONS(1620), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1620), - [aux_sym_channel_timeout_token1] = ACTIONS(1620), - [aux_sym_check_host_ip_token1] = ACTIONS(1620), - [aux_sym_ciphers_token1] = ACTIONS(1620), - [aux_sym_cipher_token1] = ACTIONS(1622), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1620), - [aux_sym_compression_token1] = ACTIONS(1620), - [aux_sym_connection_attempts_token1] = ACTIONS(1620), - [aux_sym_connect_timeout_token1] = ACTIONS(1620), - [aux_sym_control_master_token1] = ACTIONS(1620), - [aux_sym_control_path_token1] = ACTIONS(1620), - [aux_sym_control_persist_token1] = ACTIONS(1620), - [aux_sym_dynamic_forward_token1] = ACTIONS(1620), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1620), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1620), - [aux_sym_escape_char_token1] = ACTIONS(1620), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1620), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1620), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1620), - [aux_sym_forward_agent_token1] = ACTIONS(1620), - [aux_sym_forward_x11_token1] = ACTIONS(1622), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1620), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1620), - [aux_sym_gateway_ports_token1] = ACTIONS(1620), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1620), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1620), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1620), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1620), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1620), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1620), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1620), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1620), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1620), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1620), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1620), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1620), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1620), - [aux_sym_host_key_alias_token1] = ACTIONS(1620), - [aux_sym_hostname_token1] = ACTIONS(1620), - [aux_sym_identities_only_token1] = ACTIONS(1620), - [aux_sym_identity_agent_token1] = ACTIONS(1620), - [aux_sym_identity_file_token1] = ACTIONS(1620), - [aux_sym_ignore_unknown_token1] = ACTIONS(1620), - [aux_sym_include_token1] = ACTIONS(1620), - [aux_sym_ip_qos_token1] = ACTIONS(1620), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1620), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1620), - [aux_sym_kex_algorithms_token1] = ACTIONS(1620), - [aux_sym_known_hosts_command_token1] = ACTIONS(1620), - [aux_sym_local_command_token1] = ACTIONS(1620), - [aux_sym_local_forward_token1] = ACTIONS(1620), - [aux_sym_log_level_token1] = ACTIONS(1620), - [aux_sym_log_verbose_token1] = ACTIONS(1620), - [aux_sym_macs_token1] = ACTIONS(1620), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1620), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1620), - [aux_sym_password_authentication_token1] = ACTIONS(1620), - [aux_sym_permit_local_command_token1] = ACTIONS(1620), - [aux_sym_permit_remote_open_token1] = ACTIONS(1620), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1620), - [aux_sym_port_token1] = ACTIONS(1620), - [aux_sym_preferred_authentications_token1] = ACTIONS(1620), - [aux_sym_protocol_token1] = ACTIONS(1620), - [aux_sym_proxy_command_token1] = ACTIONS(1620), - [aux_sym_proxy_jump_token1] = ACTIONS(1620), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1620), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1620), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1620), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1620), - [aux_sym_rekey_limit_token1] = ACTIONS(1620), - [aux_sym_remote_command_token1] = ACTIONS(1620), - [aux_sym_remote_forward_token1] = ACTIONS(1620), - [aux_sym_request_tty_token1] = ACTIONS(1620), - [aux_sym_required_rsa_size_token1] = ACTIONS(1620), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1620), - [aux_sym_security_key_provider_token1] = ACTIONS(1620), - [aux_sym_send_env_token1] = ACTIONS(1620), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1620), - [aux_sym_server_alive_interval_token1] = ACTIONS(1620), - [aux_sym_session_type_token1] = ACTIONS(1620), - [aux_sym_set_env_token1] = ACTIONS(1620), - [aux_sym_stdin_null_token1] = ACTIONS(1620), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1620), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1620), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1620), - [aux_sym_syslog_facility_token1] = ACTIONS(1620), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1620), - [aux_sym_keep_alive_token1] = ACTIONS(1620), - [aux_sym_tag_token1] = ACTIONS(1620), - [aux_sym_tunnel_token1] = ACTIONS(1622), - [aux_sym_tunnel_device_token1] = ACTIONS(1620), - [aux_sym_update_host_keys_token1] = ACTIONS(1620), - [aux_sym_use_keychain_token1] = ACTIONS(1620), - [aux_sym_use_roaming_token1] = ACTIONS(1620), - [aux_sym_user_token1] = ACTIONS(1622), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1620), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1620), - [aux_sym_visual_host_key_token1] = ACTIONS(1620), - [aux_sym_xauth_location_token1] = ACTIONS(1620), + [ts_builtin_sym_end] = ACTIONS(635), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(637), + [aux_sym_match_token1] = ACTIONS(635), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(635), + [aux_sym_address_family_token1] = ACTIONS(635), + [aux_sym_batch_mode_token1] = ACTIONS(635), + [aux_sym_bind_address_token1] = ACTIONS(635), + [aux_sym_bind_interface_token1] = ACTIONS(635), + [aux_sym_canonical_domains_token1] = ACTIONS(635), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(635), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(635), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(635), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(635), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(635), + [aux_sym_certificate_file_token1] = ACTIONS(635), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(635), + [aux_sym_channel_timeout_token1] = ACTIONS(635), + [aux_sym_check_host_ip_token1] = ACTIONS(635), + [aux_sym_ciphers_token1] = ACTIONS(635), + [aux_sym_cipher_token1] = ACTIONS(637), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(635), + [aux_sym_compression_token1] = ACTIONS(635), + [aux_sym_connection_attempts_token1] = ACTIONS(635), + [aux_sym_connect_timeout_token1] = ACTIONS(635), + [aux_sym_control_master_token1] = ACTIONS(635), + [aux_sym_control_path_token1] = ACTIONS(635), + [aux_sym_control_persist_token1] = ACTIONS(635), + [aux_sym_dynamic_forward_token1] = ACTIONS(635), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(635), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(635), + [aux_sym_escape_char_token1] = ACTIONS(635), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(635), + [aux_sym_fingerprint_hash_token1] = ACTIONS(635), + [aux_sym_fork_after_authentication_token1] = ACTIONS(635), + [aux_sym_forward_agent_token1] = ACTIONS(635), + [aux_sym_forward_x11_token1] = ACTIONS(637), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(635), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(635), + [aux_sym_gateway_ports_token1] = ACTIONS(635), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(635), + [aux_sym_gssapi_authentication_token1] = ACTIONS(635), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(635), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(635), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(635), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(635), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(635), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(635), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(635), + [aux_sym_hash_known_hosts_token1] = ACTIONS(635), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(635), + [aux_sym_hostbased_authentication_token1] = ACTIONS(635), + [aux_sym_host_key_algorithms_token1] = ACTIONS(635), + [aux_sym_host_key_alias_token1] = ACTIONS(635), + [aux_sym_hostname_token1] = ACTIONS(635), + [aux_sym_identities_only_token1] = ACTIONS(635), + [aux_sym_identity_agent_token1] = ACTIONS(635), + [aux_sym_identity_file_token1] = ACTIONS(635), + [aux_sym_ignore_unknown_token1] = ACTIONS(635), + [aux_sym_include_token1] = ACTIONS(635), + [aux_sym_ip_qos_token1] = ACTIONS(635), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(635), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(635), + [aux_sym_kex_algorithms_token1] = ACTIONS(635), + [aux_sym_known_hosts_command_token1] = ACTIONS(635), + [aux_sym_local_command_token1] = ACTIONS(635), + [aux_sym_local_forward_token1] = ACTIONS(635), + [aux_sym_log_level_token1] = ACTIONS(635), + [aux_sym_log_verbose_token1] = ACTIONS(635), + [aux_sym_macs_token1] = ACTIONS(635), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(635), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(635), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(635), + [aux_sym_password_authentication_token1] = ACTIONS(635), + [aux_sym_permit_local_command_token1] = ACTIONS(635), + [aux_sym_permit_remote_open_token1] = ACTIONS(635), + [aux_sym_pkcs11_provider_token1] = ACTIONS(635), + [aux_sym_port_token1] = ACTIONS(635), + [aux_sym_preferred_authentications_token1] = ACTIONS(635), + [aux_sym_protocol_token1] = ACTIONS(635), + [aux_sym_proxy_command_token1] = ACTIONS(635), + [aux_sym_proxy_jump_token1] = ACTIONS(635), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(635), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(635), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(635), + [aux_sym_pubkey_authentication_token1] = ACTIONS(635), + [aux_sym_rekey_limit_token1] = ACTIONS(635), + [aux_sym_remote_command_token1] = ACTIONS(635), + [aux_sym_remote_forward_token1] = ACTIONS(635), + [aux_sym_request_tty_token1] = ACTIONS(635), + [aux_sym_required_rsa_size_token1] = ACTIONS(635), + [aux_sym_revoked_host_keys_token1] = ACTIONS(635), + [aux_sym_security_key_provider_token1] = ACTIONS(635), + [aux_sym_send_env_token1] = ACTIONS(635), + [aux_sym_server_alive_count_max_token1] = ACTIONS(635), + [aux_sym_server_alive_interval_token1] = ACTIONS(635), + [aux_sym_session_type_token1] = ACTIONS(635), + [aux_sym_set_env_token1] = ACTIONS(635), + [aux_sym_stdin_null_token1] = ACTIONS(635), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(635), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(635), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(635), + [aux_sym_syslog_facility_token1] = ACTIONS(635), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(635), + [aux_sym_keep_alive_token1] = ACTIONS(635), + [aux_sym_tag_token1] = ACTIONS(635), + [aux_sym_tunnel_token1] = ACTIONS(637), + [aux_sym_tunnel_device_token1] = ACTIONS(635), + [aux_sym_update_host_keys_token1] = ACTIONS(635), + [aux_sym_use_keychain_token1] = ACTIONS(635), + [aux_sym_use_roaming_token1] = ACTIONS(635), + [aux_sym_user_token1] = ACTIONS(637), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(635), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(635), + [aux_sym_visual_host_key_token1] = ACTIONS(635), + [aux_sym_xauth_location_token1] = ACTIONS(635), }, [679] = { - [ts_builtin_sym_end] = ACTIONS(1062), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1064), - [aux_sym_match_token1] = ACTIONS(1062), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1062), - [aux_sym_address_family_token1] = ACTIONS(1062), - [aux_sym_batch_mode_token1] = ACTIONS(1062), - [aux_sym_bind_address_token1] = ACTIONS(1062), - [aux_sym_bind_interface_token1] = ACTIONS(1062), - [aux_sym_canonical_domains_token1] = ACTIONS(1062), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1062), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1062), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1062), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1062), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1062), - [aux_sym_certificate_file_token1] = ACTIONS(1062), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1062), - [aux_sym_channel_timeout_token1] = ACTIONS(1062), - [aux_sym_check_host_ip_token1] = ACTIONS(1062), - [aux_sym_ciphers_token1] = ACTIONS(1062), - [aux_sym_cipher_token1] = ACTIONS(1064), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1062), - [aux_sym_compression_token1] = ACTIONS(1062), - [aux_sym_connection_attempts_token1] = ACTIONS(1062), - [aux_sym_connect_timeout_token1] = ACTIONS(1062), - [aux_sym_control_master_token1] = ACTIONS(1062), - [aux_sym_control_path_token1] = ACTIONS(1062), - [aux_sym_control_persist_token1] = ACTIONS(1062), - [aux_sym_dynamic_forward_token1] = ACTIONS(1062), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1062), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1062), - [aux_sym_escape_char_token1] = ACTIONS(1062), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1062), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1062), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1062), - [aux_sym_forward_agent_token1] = ACTIONS(1062), - [aux_sym_forward_x11_token1] = ACTIONS(1064), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1062), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1062), - [aux_sym_gateway_ports_token1] = ACTIONS(1062), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1062), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1062), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1062), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1062), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1062), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1062), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1062), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1062), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1062), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1062), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1062), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1062), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1062), - [aux_sym_host_key_alias_token1] = ACTIONS(1062), - [aux_sym_hostname_token1] = ACTIONS(1062), - [aux_sym_identities_only_token1] = ACTIONS(1062), - [aux_sym_identity_agent_token1] = ACTIONS(1062), - [aux_sym_identity_file_token1] = ACTIONS(1062), - [aux_sym_ignore_unknown_token1] = ACTIONS(1062), - [aux_sym_include_token1] = ACTIONS(1062), - [aux_sym_ip_qos_token1] = ACTIONS(1062), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1062), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1062), - [aux_sym_kex_algorithms_token1] = ACTIONS(1062), - [aux_sym_known_hosts_command_token1] = ACTIONS(1062), - [aux_sym_local_command_token1] = ACTIONS(1062), - [aux_sym_local_forward_token1] = ACTIONS(1062), - [aux_sym_log_level_token1] = ACTIONS(1062), - [aux_sym_log_verbose_token1] = ACTIONS(1062), - [aux_sym_macs_token1] = ACTIONS(1062), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1062), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1062), - [aux_sym_password_authentication_token1] = ACTIONS(1062), - [aux_sym_permit_local_command_token1] = ACTIONS(1062), - [aux_sym_permit_remote_open_token1] = ACTIONS(1062), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1062), - [aux_sym_port_token1] = ACTIONS(1062), - [aux_sym_preferred_authentications_token1] = ACTIONS(1062), - [aux_sym_protocol_token1] = ACTIONS(1062), - [aux_sym_proxy_command_token1] = ACTIONS(1062), - [aux_sym_proxy_jump_token1] = ACTIONS(1062), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1062), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1062), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1062), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1062), - [aux_sym_rekey_limit_token1] = ACTIONS(1062), - [aux_sym_remote_command_token1] = ACTIONS(1062), - [aux_sym_remote_forward_token1] = ACTIONS(1062), - [aux_sym_request_tty_token1] = ACTIONS(1062), - [aux_sym_required_rsa_size_token1] = ACTIONS(1062), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1062), - [aux_sym_security_key_provider_token1] = ACTIONS(1062), - [aux_sym_send_env_token1] = ACTIONS(1062), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1062), - [aux_sym_server_alive_interval_token1] = ACTIONS(1062), - [aux_sym_session_type_token1] = ACTIONS(1062), - [aux_sym_set_env_token1] = ACTIONS(1062), - [aux_sym_stdin_null_token1] = ACTIONS(1062), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1062), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1062), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1062), - [aux_sym_syslog_facility_token1] = ACTIONS(1062), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1062), - [aux_sym_keep_alive_token1] = ACTIONS(1062), - [aux_sym_tag_token1] = ACTIONS(1062), - [aux_sym_tunnel_token1] = ACTIONS(1064), - [aux_sym_tunnel_device_token1] = ACTIONS(1062), - [aux_sym_update_host_keys_token1] = ACTIONS(1062), - [aux_sym_use_keychain_token1] = ACTIONS(1062), - [aux_sym_use_roaming_token1] = ACTIONS(1062), - [aux_sym_user_token1] = ACTIONS(1064), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1062), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1062), - [aux_sym_visual_host_key_token1] = ACTIONS(1062), - [aux_sym_xauth_location_token1] = ACTIONS(1062), + [ts_builtin_sym_end] = ACTIONS(1397), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1399), + [aux_sym_match_token1] = ACTIONS(1397), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1397), + [aux_sym_address_family_token1] = ACTIONS(1397), + [aux_sym_batch_mode_token1] = ACTIONS(1397), + [aux_sym_bind_address_token1] = ACTIONS(1397), + [aux_sym_bind_interface_token1] = ACTIONS(1397), + [aux_sym_canonical_domains_token1] = ACTIONS(1397), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1397), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1397), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1397), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1397), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1397), + [aux_sym_certificate_file_token1] = ACTIONS(1397), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1397), + [aux_sym_channel_timeout_token1] = ACTIONS(1397), + [aux_sym_check_host_ip_token1] = ACTIONS(1397), + [aux_sym_ciphers_token1] = ACTIONS(1397), + [aux_sym_cipher_token1] = ACTIONS(1399), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1397), + [aux_sym_compression_token1] = ACTIONS(1397), + [aux_sym_connection_attempts_token1] = ACTIONS(1397), + [aux_sym_connect_timeout_token1] = ACTIONS(1397), + [aux_sym_control_master_token1] = ACTIONS(1397), + [aux_sym_control_path_token1] = ACTIONS(1397), + [aux_sym_control_persist_token1] = ACTIONS(1397), + [aux_sym_dynamic_forward_token1] = ACTIONS(1397), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1397), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1397), + [aux_sym_escape_char_token1] = ACTIONS(1397), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1397), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1397), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1397), + [aux_sym_forward_agent_token1] = ACTIONS(1397), + [aux_sym_forward_x11_token1] = ACTIONS(1399), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1397), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1397), + [aux_sym_gateway_ports_token1] = ACTIONS(1397), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1397), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1397), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1397), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1397), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1397), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1397), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1397), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1397), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1397), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1397), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1397), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1397), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1397), + [aux_sym_host_key_alias_token1] = ACTIONS(1397), + [aux_sym_hostname_token1] = ACTIONS(1397), + [aux_sym_identities_only_token1] = ACTIONS(1397), + [aux_sym_identity_agent_token1] = ACTIONS(1397), + [aux_sym_identity_file_token1] = ACTIONS(1397), + [aux_sym_ignore_unknown_token1] = ACTIONS(1397), + [aux_sym_include_token1] = ACTIONS(1397), + [aux_sym_ip_qos_token1] = ACTIONS(1397), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1397), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1397), + [aux_sym_kex_algorithms_token1] = ACTIONS(1397), + [aux_sym_known_hosts_command_token1] = ACTIONS(1397), + [aux_sym_local_command_token1] = ACTIONS(1397), + [aux_sym_local_forward_token1] = ACTIONS(1397), + [aux_sym_log_level_token1] = ACTIONS(1397), + [aux_sym_log_verbose_token1] = ACTIONS(1397), + [aux_sym_macs_token1] = ACTIONS(1397), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1397), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1397), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1397), + [aux_sym_password_authentication_token1] = ACTIONS(1397), + [aux_sym_permit_local_command_token1] = ACTIONS(1397), + [aux_sym_permit_remote_open_token1] = ACTIONS(1397), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1397), + [aux_sym_port_token1] = ACTIONS(1397), + [aux_sym_preferred_authentications_token1] = ACTIONS(1397), + [aux_sym_protocol_token1] = ACTIONS(1397), + [aux_sym_proxy_command_token1] = ACTIONS(1397), + [aux_sym_proxy_jump_token1] = ACTIONS(1397), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1397), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1397), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1397), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1397), + [aux_sym_rekey_limit_token1] = ACTIONS(1397), + [aux_sym_remote_command_token1] = ACTIONS(1397), + [aux_sym_remote_forward_token1] = ACTIONS(1397), + [aux_sym_request_tty_token1] = ACTIONS(1397), + [aux_sym_required_rsa_size_token1] = ACTIONS(1397), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1397), + [aux_sym_security_key_provider_token1] = ACTIONS(1397), + [aux_sym_send_env_token1] = ACTIONS(1397), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1397), + [aux_sym_server_alive_interval_token1] = ACTIONS(1397), + [aux_sym_session_type_token1] = ACTIONS(1397), + [aux_sym_set_env_token1] = ACTIONS(1397), + [aux_sym_stdin_null_token1] = ACTIONS(1397), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1397), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1397), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1397), + [aux_sym_syslog_facility_token1] = ACTIONS(1397), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1397), + [aux_sym_keep_alive_token1] = ACTIONS(1397), + [aux_sym_tag_token1] = ACTIONS(1397), + [aux_sym_tunnel_token1] = ACTIONS(1399), + [aux_sym_tunnel_device_token1] = ACTIONS(1397), + [aux_sym_update_host_keys_token1] = ACTIONS(1397), + [aux_sym_use_keychain_token1] = ACTIONS(1397), + [aux_sym_use_roaming_token1] = ACTIONS(1397), + [aux_sym_user_token1] = ACTIONS(1399), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1397), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1397), + [aux_sym_visual_host_key_token1] = ACTIONS(1397), + [aux_sym_xauth_location_token1] = ACTIONS(1397), }, [680] = { - [ts_builtin_sym_end] = ACTIONS(1626), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1628), - [aux_sym_match_token1] = ACTIONS(1626), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1626), - [aux_sym_address_family_token1] = ACTIONS(1626), - [aux_sym_batch_mode_token1] = ACTIONS(1626), - [aux_sym_bind_address_token1] = ACTIONS(1626), - [aux_sym_bind_interface_token1] = ACTIONS(1626), - [aux_sym_canonical_domains_token1] = ACTIONS(1626), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1626), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1626), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1626), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1626), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1626), - [aux_sym_certificate_file_token1] = ACTIONS(1626), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1626), - [aux_sym_channel_timeout_token1] = ACTIONS(1626), - [aux_sym_check_host_ip_token1] = ACTIONS(1626), - [aux_sym_ciphers_token1] = ACTIONS(1626), - [aux_sym_cipher_token1] = ACTIONS(1628), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1626), - [aux_sym_compression_token1] = ACTIONS(1626), - [aux_sym_connection_attempts_token1] = ACTIONS(1626), - [aux_sym_connect_timeout_token1] = ACTIONS(1626), - [aux_sym_control_master_token1] = ACTIONS(1626), - [aux_sym_control_path_token1] = ACTIONS(1626), - [aux_sym_control_persist_token1] = ACTIONS(1626), - [aux_sym_dynamic_forward_token1] = ACTIONS(1626), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1626), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1626), - [aux_sym_escape_char_token1] = ACTIONS(1626), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1626), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1626), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1626), - [aux_sym_forward_agent_token1] = ACTIONS(1626), - [aux_sym_forward_x11_token1] = ACTIONS(1628), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1626), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1626), - [aux_sym_gateway_ports_token1] = ACTIONS(1626), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1626), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1626), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1626), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1626), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1626), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1626), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1626), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1626), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1626), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1626), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1626), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1626), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1626), - [aux_sym_host_key_alias_token1] = ACTIONS(1626), - [aux_sym_hostname_token1] = ACTIONS(1626), - [aux_sym_identities_only_token1] = ACTIONS(1626), - [aux_sym_identity_agent_token1] = ACTIONS(1626), - [aux_sym_identity_file_token1] = ACTIONS(1626), - [aux_sym_ignore_unknown_token1] = ACTIONS(1626), - [aux_sym_include_token1] = ACTIONS(1626), - [aux_sym_ip_qos_token1] = ACTIONS(1626), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1626), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1626), - [aux_sym_kex_algorithms_token1] = ACTIONS(1626), - [aux_sym_known_hosts_command_token1] = ACTIONS(1626), - [aux_sym_local_command_token1] = ACTIONS(1626), - [aux_sym_local_forward_token1] = ACTIONS(1626), - [aux_sym_log_level_token1] = ACTIONS(1626), - [aux_sym_log_verbose_token1] = ACTIONS(1626), - [aux_sym_macs_token1] = ACTIONS(1626), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1626), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1626), - [aux_sym_password_authentication_token1] = ACTIONS(1626), - [aux_sym_permit_local_command_token1] = ACTIONS(1626), - [aux_sym_permit_remote_open_token1] = ACTIONS(1626), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1626), - [aux_sym_port_token1] = ACTIONS(1626), - [aux_sym_preferred_authentications_token1] = ACTIONS(1626), - [aux_sym_protocol_token1] = ACTIONS(1626), - [aux_sym_proxy_command_token1] = ACTIONS(1626), - [aux_sym_proxy_jump_token1] = ACTIONS(1626), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1626), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1626), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1626), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1626), - [aux_sym_rekey_limit_token1] = ACTIONS(1626), - [aux_sym_remote_command_token1] = ACTIONS(1626), - [aux_sym_remote_forward_token1] = ACTIONS(1626), - [aux_sym_request_tty_token1] = ACTIONS(1626), - [aux_sym_required_rsa_size_token1] = ACTIONS(1626), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1626), - [aux_sym_security_key_provider_token1] = ACTIONS(1626), - [aux_sym_send_env_token1] = ACTIONS(1626), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1626), - [aux_sym_server_alive_interval_token1] = ACTIONS(1626), - [aux_sym_session_type_token1] = ACTIONS(1626), - [aux_sym_set_env_token1] = ACTIONS(1626), - [aux_sym_stdin_null_token1] = ACTIONS(1626), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1626), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1626), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1626), - [aux_sym_syslog_facility_token1] = ACTIONS(1626), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1626), - [aux_sym_keep_alive_token1] = ACTIONS(1626), - [aux_sym_tag_token1] = ACTIONS(1626), - [aux_sym_tunnel_token1] = ACTIONS(1628), - [aux_sym_tunnel_device_token1] = ACTIONS(1626), - [aux_sym_update_host_keys_token1] = ACTIONS(1626), - [aux_sym_use_keychain_token1] = ACTIONS(1626), - [aux_sym_use_roaming_token1] = ACTIONS(1626), - [aux_sym_user_token1] = ACTIONS(1628), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1626), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1626), - [aux_sym_visual_host_key_token1] = ACTIONS(1626), - [aux_sym_xauth_location_token1] = ACTIONS(1626), + [ts_builtin_sym_end] = ACTIONS(1001), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1003), + [aux_sym_match_token1] = ACTIONS(1001), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1001), + [aux_sym_address_family_token1] = ACTIONS(1001), + [aux_sym_batch_mode_token1] = ACTIONS(1001), + [aux_sym_bind_address_token1] = ACTIONS(1001), + [aux_sym_bind_interface_token1] = ACTIONS(1001), + [aux_sym_canonical_domains_token1] = ACTIONS(1001), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1001), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1001), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1001), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1001), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1001), + [aux_sym_certificate_file_token1] = ACTIONS(1001), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1001), + [aux_sym_channel_timeout_token1] = ACTIONS(1001), + [aux_sym_check_host_ip_token1] = ACTIONS(1001), + [aux_sym_ciphers_token1] = ACTIONS(1001), + [aux_sym_cipher_token1] = ACTIONS(1003), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1001), + [aux_sym_compression_token1] = ACTIONS(1001), + [aux_sym_connection_attempts_token1] = ACTIONS(1001), + [aux_sym_connect_timeout_token1] = ACTIONS(1001), + [aux_sym_control_master_token1] = ACTIONS(1001), + [aux_sym_control_path_token1] = ACTIONS(1001), + [aux_sym_control_persist_token1] = ACTIONS(1001), + [aux_sym_dynamic_forward_token1] = ACTIONS(1001), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1001), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1001), + [aux_sym_escape_char_token1] = ACTIONS(1001), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1001), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1001), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1001), + [aux_sym_forward_agent_token1] = ACTIONS(1001), + [aux_sym_forward_x11_token1] = ACTIONS(1003), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1001), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1001), + [aux_sym_gateway_ports_token1] = ACTIONS(1001), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1001), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1001), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1001), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1001), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1001), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1001), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1001), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1001), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1001), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1001), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1001), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1001), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1001), + [aux_sym_host_key_alias_token1] = ACTIONS(1001), + [aux_sym_hostname_token1] = ACTIONS(1001), + [aux_sym_identities_only_token1] = ACTIONS(1001), + [aux_sym_identity_agent_token1] = ACTIONS(1001), + [aux_sym_identity_file_token1] = ACTIONS(1001), + [aux_sym_ignore_unknown_token1] = ACTIONS(1001), + [aux_sym_include_token1] = ACTIONS(1001), + [aux_sym_ip_qos_token1] = ACTIONS(1001), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1001), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1001), + [aux_sym_kex_algorithms_token1] = ACTIONS(1001), + [aux_sym_known_hosts_command_token1] = ACTIONS(1001), + [aux_sym_local_command_token1] = ACTIONS(1001), + [aux_sym_local_forward_token1] = ACTIONS(1001), + [aux_sym_log_level_token1] = ACTIONS(1001), + [aux_sym_log_verbose_token1] = ACTIONS(1001), + [aux_sym_macs_token1] = ACTIONS(1001), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1001), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1001), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1001), + [aux_sym_password_authentication_token1] = ACTIONS(1001), + [aux_sym_permit_local_command_token1] = ACTIONS(1001), + [aux_sym_permit_remote_open_token1] = ACTIONS(1001), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1001), + [aux_sym_port_token1] = ACTIONS(1001), + [aux_sym_preferred_authentications_token1] = ACTIONS(1001), + [aux_sym_protocol_token1] = ACTIONS(1001), + [aux_sym_proxy_command_token1] = ACTIONS(1001), + [aux_sym_proxy_jump_token1] = ACTIONS(1001), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1001), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1001), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1001), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1001), + [aux_sym_rekey_limit_token1] = ACTIONS(1001), + [aux_sym_remote_command_token1] = ACTIONS(1001), + [aux_sym_remote_forward_token1] = ACTIONS(1001), + [aux_sym_request_tty_token1] = ACTIONS(1001), + [aux_sym_required_rsa_size_token1] = ACTIONS(1001), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1001), + [aux_sym_security_key_provider_token1] = ACTIONS(1001), + [aux_sym_send_env_token1] = ACTIONS(1001), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1001), + [aux_sym_server_alive_interval_token1] = ACTIONS(1001), + [aux_sym_session_type_token1] = ACTIONS(1001), + [aux_sym_set_env_token1] = ACTIONS(1001), + [aux_sym_stdin_null_token1] = ACTIONS(1001), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1001), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1001), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1001), + [aux_sym_syslog_facility_token1] = ACTIONS(1001), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1001), + [aux_sym_keep_alive_token1] = ACTIONS(1001), + [aux_sym_tag_token1] = ACTIONS(1001), + [aux_sym_tunnel_token1] = ACTIONS(1003), + [aux_sym_tunnel_device_token1] = ACTIONS(1001), + [aux_sym_update_host_keys_token1] = ACTIONS(1001), + [aux_sym_use_keychain_token1] = ACTIONS(1001), + [aux_sym_use_roaming_token1] = ACTIONS(1001), + [aux_sym_user_token1] = ACTIONS(1003), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1001), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1001), + [aux_sym_visual_host_key_token1] = ACTIONS(1001), + [aux_sym_xauth_location_token1] = ACTIONS(1001), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(1056), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1058), - [aux_sym_match_token1] = ACTIONS(1056), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1056), - [aux_sym_address_family_token1] = ACTIONS(1056), - [aux_sym_batch_mode_token1] = ACTIONS(1056), - [aux_sym_bind_address_token1] = ACTIONS(1056), - [aux_sym_bind_interface_token1] = ACTIONS(1056), - [aux_sym_canonical_domains_token1] = ACTIONS(1056), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1056), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1056), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1056), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1056), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1056), - [aux_sym_certificate_file_token1] = ACTIONS(1056), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1056), - [aux_sym_channel_timeout_token1] = ACTIONS(1056), - [aux_sym_check_host_ip_token1] = ACTIONS(1056), - [aux_sym_ciphers_token1] = ACTIONS(1056), - [aux_sym_cipher_token1] = ACTIONS(1058), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1056), - [aux_sym_compression_token1] = ACTIONS(1056), - [aux_sym_connection_attempts_token1] = ACTIONS(1056), - [aux_sym_connect_timeout_token1] = ACTIONS(1056), - [aux_sym_control_master_token1] = ACTIONS(1056), - [aux_sym_control_path_token1] = ACTIONS(1056), - [aux_sym_control_persist_token1] = ACTIONS(1056), - [aux_sym_dynamic_forward_token1] = ACTIONS(1056), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1056), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1056), - [aux_sym_escape_char_token1] = ACTIONS(1056), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1056), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1056), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1056), - [aux_sym_forward_agent_token1] = ACTIONS(1056), - [aux_sym_forward_x11_token1] = ACTIONS(1058), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1056), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1056), - [aux_sym_gateway_ports_token1] = ACTIONS(1056), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1056), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1056), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1056), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1056), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1056), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1056), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1056), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1056), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1056), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1056), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1056), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1056), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1056), - [aux_sym_host_key_alias_token1] = ACTIONS(1056), - [aux_sym_hostname_token1] = ACTIONS(1056), - [aux_sym_identities_only_token1] = ACTIONS(1056), - [aux_sym_identity_agent_token1] = ACTIONS(1056), - [aux_sym_identity_file_token1] = ACTIONS(1056), - [aux_sym_ignore_unknown_token1] = ACTIONS(1056), - [aux_sym_include_token1] = ACTIONS(1056), - [aux_sym_ip_qos_token1] = ACTIONS(1056), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1056), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1056), - [aux_sym_kex_algorithms_token1] = ACTIONS(1056), - [aux_sym_known_hosts_command_token1] = ACTIONS(1056), - [aux_sym_local_command_token1] = ACTIONS(1056), - [aux_sym_local_forward_token1] = ACTIONS(1056), - [aux_sym_log_level_token1] = ACTIONS(1056), - [aux_sym_log_verbose_token1] = ACTIONS(1056), - [aux_sym_macs_token1] = ACTIONS(1056), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1056), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1056), - [aux_sym_password_authentication_token1] = ACTIONS(1056), - [aux_sym_permit_local_command_token1] = ACTIONS(1056), - [aux_sym_permit_remote_open_token1] = ACTIONS(1056), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1056), - [aux_sym_port_token1] = ACTIONS(1056), - [aux_sym_preferred_authentications_token1] = ACTIONS(1056), - [aux_sym_protocol_token1] = ACTIONS(1056), - [aux_sym_proxy_command_token1] = ACTIONS(1056), - [aux_sym_proxy_jump_token1] = ACTIONS(1056), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1056), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1056), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1056), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1056), - [aux_sym_rekey_limit_token1] = ACTIONS(1056), - [aux_sym_remote_command_token1] = ACTIONS(1056), - [aux_sym_remote_forward_token1] = ACTIONS(1056), - [aux_sym_request_tty_token1] = ACTIONS(1056), - [aux_sym_required_rsa_size_token1] = ACTIONS(1056), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1056), - [aux_sym_security_key_provider_token1] = ACTIONS(1056), - [aux_sym_send_env_token1] = ACTIONS(1056), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1056), - [aux_sym_server_alive_interval_token1] = ACTIONS(1056), - [aux_sym_session_type_token1] = ACTIONS(1056), - [aux_sym_set_env_token1] = ACTIONS(1056), - [aux_sym_stdin_null_token1] = ACTIONS(1056), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1056), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1056), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1056), - [aux_sym_syslog_facility_token1] = ACTIONS(1056), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1056), - [aux_sym_keep_alive_token1] = ACTIONS(1056), - [aux_sym_tag_token1] = ACTIONS(1056), - [aux_sym_tunnel_token1] = ACTIONS(1058), - [aux_sym_tunnel_device_token1] = ACTIONS(1056), - [aux_sym_update_host_keys_token1] = ACTIONS(1056), - [aux_sym_use_keychain_token1] = ACTIONS(1056), - [aux_sym_use_roaming_token1] = ACTIONS(1056), - [aux_sym_user_token1] = ACTIONS(1058), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1056), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1056), - [aux_sym_visual_host_key_token1] = ACTIONS(1056), - [aux_sym_xauth_location_token1] = ACTIONS(1056), + [ts_builtin_sym_end] = ACTIONS(1403), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1405), + [aux_sym_match_token1] = ACTIONS(1403), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1403), + [aux_sym_address_family_token1] = ACTIONS(1403), + [aux_sym_batch_mode_token1] = ACTIONS(1403), + [aux_sym_bind_address_token1] = ACTIONS(1403), + [aux_sym_bind_interface_token1] = ACTIONS(1403), + [aux_sym_canonical_domains_token1] = ACTIONS(1403), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1403), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1403), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1403), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1403), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1403), + [aux_sym_certificate_file_token1] = ACTIONS(1403), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1403), + [aux_sym_channel_timeout_token1] = ACTIONS(1403), + [aux_sym_check_host_ip_token1] = ACTIONS(1403), + [aux_sym_ciphers_token1] = ACTIONS(1403), + [aux_sym_cipher_token1] = ACTIONS(1405), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1403), + [aux_sym_compression_token1] = ACTIONS(1403), + [aux_sym_connection_attempts_token1] = ACTIONS(1403), + [aux_sym_connect_timeout_token1] = ACTIONS(1403), + [aux_sym_control_master_token1] = ACTIONS(1403), + [aux_sym_control_path_token1] = ACTIONS(1403), + [aux_sym_control_persist_token1] = ACTIONS(1403), + [aux_sym_dynamic_forward_token1] = ACTIONS(1403), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1403), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1403), + [aux_sym_escape_char_token1] = ACTIONS(1403), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1403), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1403), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1403), + [aux_sym_forward_agent_token1] = ACTIONS(1403), + [aux_sym_forward_x11_token1] = ACTIONS(1405), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1403), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1403), + [aux_sym_gateway_ports_token1] = ACTIONS(1403), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1403), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1403), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1403), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1403), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1403), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1403), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1403), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1403), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1403), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1403), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1403), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1403), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1403), + [aux_sym_host_key_alias_token1] = ACTIONS(1403), + [aux_sym_hostname_token1] = ACTIONS(1403), + [aux_sym_identities_only_token1] = ACTIONS(1403), + [aux_sym_identity_agent_token1] = ACTIONS(1403), + [aux_sym_identity_file_token1] = ACTIONS(1403), + [aux_sym_ignore_unknown_token1] = ACTIONS(1403), + [aux_sym_include_token1] = ACTIONS(1403), + [aux_sym_ip_qos_token1] = ACTIONS(1403), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1403), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1403), + [aux_sym_kex_algorithms_token1] = ACTIONS(1403), + [aux_sym_known_hosts_command_token1] = ACTIONS(1403), + [aux_sym_local_command_token1] = ACTIONS(1403), + [aux_sym_local_forward_token1] = ACTIONS(1403), + [aux_sym_log_level_token1] = ACTIONS(1403), + [aux_sym_log_verbose_token1] = ACTIONS(1403), + [aux_sym_macs_token1] = ACTIONS(1403), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1403), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1403), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1403), + [aux_sym_password_authentication_token1] = ACTIONS(1403), + [aux_sym_permit_local_command_token1] = ACTIONS(1403), + [aux_sym_permit_remote_open_token1] = ACTIONS(1403), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1403), + [aux_sym_port_token1] = ACTIONS(1403), + [aux_sym_preferred_authentications_token1] = ACTIONS(1403), + [aux_sym_protocol_token1] = ACTIONS(1403), + [aux_sym_proxy_command_token1] = ACTIONS(1403), + [aux_sym_proxy_jump_token1] = ACTIONS(1403), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1403), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1403), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1403), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1403), + [aux_sym_rekey_limit_token1] = ACTIONS(1403), + [aux_sym_remote_command_token1] = ACTIONS(1403), + [aux_sym_remote_forward_token1] = ACTIONS(1403), + [aux_sym_request_tty_token1] = ACTIONS(1403), + [aux_sym_required_rsa_size_token1] = ACTIONS(1403), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1403), + [aux_sym_security_key_provider_token1] = ACTIONS(1403), + [aux_sym_send_env_token1] = ACTIONS(1403), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1403), + [aux_sym_server_alive_interval_token1] = ACTIONS(1403), + [aux_sym_session_type_token1] = ACTIONS(1403), + [aux_sym_set_env_token1] = ACTIONS(1403), + [aux_sym_stdin_null_token1] = ACTIONS(1403), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1403), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1403), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1403), + [aux_sym_syslog_facility_token1] = ACTIONS(1403), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1403), + [aux_sym_keep_alive_token1] = ACTIONS(1403), + [aux_sym_tag_token1] = ACTIONS(1403), + [aux_sym_tunnel_token1] = ACTIONS(1405), + [aux_sym_tunnel_device_token1] = ACTIONS(1403), + [aux_sym_update_host_keys_token1] = ACTIONS(1403), + [aux_sym_use_keychain_token1] = ACTIONS(1403), + [aux_sym_use_roaming_token1] = ACTIONS(1403), + [aux_sym_user_token1] = ACTIONS(1405), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1403), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1403), + [aux_sym_visual_host_key_token1] = ACTIONS(1403), + [aux_sym_xauth_location_token1] = ACTIONS(1403), }, [682] = { - [ts_builtin_sym_end] = ACTIONS(1050), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1052), - [aux_sym_match_token1] = ACTIONS(1050), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1050), - [aux_sym_address_family_token1] = ACTIONS(1050), - [aux_sym_batch_mode_token1] = ACTIONS(1050), - [aux_sym_bind_address_token1] = ACTIONS(1050), - [aux_sym_bind_interface_token1] = ACTIONS(1050), - [aux_sym_canonical_domains_token1] = ACTIONS(1050), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1050), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1050), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1050), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1050), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1050), - [aux_sym_certificate_file_token1] = ACTIONS(1050), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1050), - [aux_sym_channel_timeout_token1] = ACTIONS(1050), - [aux_sym_check_host_ip_token1] = ACTIONS(1050), - [aux_sym_ciphers_token1] = ACTIONS(1050), - [aux_sym_cipher_token1] = ACTIONS(1052), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1050), - [aux_sym_compression_token1] = ACTIONS(1050), - [aux_sym_connection_attempts_token1] = ACTIONS(1050), - [aux_sym_connect_timeout_token1] = ACTIONS(1050), - [aux_sym_control_master_token1] = ACTIONS(1050), - [aux_sym_control_path_token1] = ACTIONS(1050), - [aux_sym_control_persist_token1] = ACTIONS(1050), - [aux_sym_dynamic_forward_token1] = ACTIONS(1050), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1050), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1050), - [aux_sym_escape_char_token1] = ACTIONS(1050), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1050), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1050), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1050), - [aux_sym_forward_agent_token1] = ACTIONS(1050), - [aux_sym_forward_x11_token1] = ACTIONS(1052), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1050), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1050), - [aux_sym_gateway_ports_token1] = ACTIONS(1050), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1050), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1050), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1050), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1050), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1050), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1050), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1050), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1050), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1050), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1050), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1050), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1050), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1050), - [aux_sym_host_key_alias_token1] = ACTIONS(1050), - [aux_sym_hostname_token1] = ACTIONS(1050), - [aux_sym_identities_only_token1] = ACTIONS(1050), - [aux_sym_identity_agent_token1] = ACTIONS(1050), - [aux_sym_identity_file_token1] = ACTIONS(1050), - [aux_sym_ignore_unknown_token1] = ACTIONS(1050), - [aux_sym_include_token1] = ACTIONS(1050), - [aux_sym_ip_qos_token1] = ACTIONS(1050), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1050), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1050), - [aux_sym_kex_algorithms_token1] = ACTIONS(1050), - [aux_sym_known_hosts_command_token1] = ACTIONS(1050), - [aux_sym_local_command_token1] = ACTIONS(1050), - [aux_sym_local_forward_token1] = ACTIONS(1050), - [aux_sym_log_level_token1] = ACTIONS(1050), - [aux_sym_log_verbose_token1] = ACTIONS(1050), - [aux_sym_macs_token1] = ACTIONS(1050), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1050), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1050), - [aux_sym_password_authentication_token1] = ACTIONS(1050), - [aux_sym_permit_local_command_token1] = ACTIONS(1050), - [aux_sym_permit_remote_open_token1] = ACTIONS(1050), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1050), - [aux_sym_port_token1] = ACTIONS(1050), - [aux_sym_preferred_authentications_token1] = ACTIONS(1050), - [aux_sym_protocol_token1] = ACTIONS(1050), - [aux_sym_proxy_command_token1] = ACTIONS(1050), - [aux_sym_proxy_jump_token1] = ACTIONS(1050), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1050), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1050), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1050), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1050), - [aux_sym_rekey_limit_token1] = ACTIONS(1050), - [aux_sym_remote_command_token1] = ACTIONS(1050), - [aux_sym_remote_forward_token1] = ACTIONS(1050), - [aux_sym_request_tty_token1] = ACTIONS(1050), - [aux_sym_required_rsa_size_token1] = ACTIONS(1050), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1050), - [aux_sym_security_key_provider_token1] = ACTIONS(1050), - [aux_sym_send_env_token1] = ACTIONS(1050), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1050), - [aux_sym_server_alive_interval_token1] = ACTIONS(1050), - [aux_sym_session_type_token1] = ACTIONS(1050), - [aux_sym_set_env_token1] = ACTIONS(1050), - [aux_sym_stdin_null_token1] = ACTIONS(1050), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1050), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1050), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1050), - [aux_sym_syslog_facility_token1] = ACTIONS(1050), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1050), - [aux_sym_keep_alive_token1] = ACTIONS(1050), - [aux_sym_tag_token1] = ACTIONS(1050), - [aux_sym_tunnel_token1] = ACTIONS(1052), - [aux_sym_tunnel_device_token1] = ACTIONS(1050), - [aux_sym_update_host_keys_token1] = ACTIONS(1050), - [aux_sym_use_keychain_token1] = ACTIONS(1050), - [aux_sym_use_roaming_token1] = ACTIONS(1050), - [aux_sym_user_token1] = ACTIONS(1052), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1050), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1050), - [aux_sym_visual_host_key_token1] = ACTIONS(1050), - [aux_sym_xauth_location_token1] = ACTIONS(1050), + [ts_builtin_sym_end] = ACTIONS(1565), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1567), + [aux_sym_match_token1] = ACTIONS(1565), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1565), + [aux_sym_address_family_token1] = ACTIONS(1565), + [aux_sym_batch_mode_token1] = ACTIONS(1565), + [aux_sym_bind_address_token1] = ACTIONS(1565), + [aux_sym_bind_interface_token1] = ACTIONS(1565), + [aux_sym_canonical_domains_token1] = ACTIONS(1565), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1565), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1565), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1565), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1565), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1565), + [aux_sym_certificate_file_token1] = ACTIONS(1565), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1565), + [aux_sym_channel_timeout_token1] = ACTIONS(1565), + [aux_sym_check_host_ip_token1] = ACTIONS(1565), + [aux_sym_ciphers_token1] = ACTIONS(1565), + [aux_sym_cipher_token1] = ACTIONS(1567), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1565), + [aux_sym_compression_token1] = ACTIONS(1565), + [aux_sym_connection_attempts_token1] = ACTIONS(1565), + [aux_sym_connect_timeout_token1] = ACTIONS(1565), + [aux_sym_control_master_token1] = ACTIONS(1565), + [aux_sym_control_path_token1] = ACTIONS(1565), + [aux_sym_control_persist_token1] = ACTIONS(1565), + [aux_sym_dynamic_forward_token1] = ACTIONS(1565), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1565), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1565), + [aux_sym_escape_char_token1] = ACTIONS(1565), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1565), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1565), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1565), + [aux_sym_forward_agent_token1] = ACTIONS(1565), + [aux_sym_forward_x11_token1] = ACTIONS(1567), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1565), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1565), + [aux_sym_gateway_ports_token1] = ACTIONS(1565), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1565), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1565), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1565), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1565), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1565), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1565), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1565), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1565), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1565), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1565), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1565), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1565), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1565), + [aux_sym_host_key_alias_token1] = ACTIONS(1565), + [aux_sym_hostname_token1] = ACTIONS(1565), + [aux_sym_identities_only_token1] = ACTIONS(1565), + [aux_sym_identity_agent_token1] = ACTIONS(1565), + [aux_sym_identity_file_token1] = ACTIONS(1565), + [aux_sym_ignore_unknown_token1] = ACTIONS(1565), + [aux_sym_include_token1] = ACTIONS(1565), + [aux_sym_ip_qos_token1] = ACTIONS(1565), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1565), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1565), + [aux_sym_kex_algorithms_token1] = ACTIONS(1565), + [aux_sym_known_hosts_command_token1] = ACTIONS(1565), + [aux_sym_local_command_token1] = ACTIONS(1565), + [aux_sym_local_forward_token1] = ACTIONS(1565), + [aux_sym_log_level_token1] = ACTIONS(1565), + [aux_sym_log_verbose_token1] = ACTIONS(1565), + [aux_sym_macs_token1] = ACTIONS(1565), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1565), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1565), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1565), + [aux_sym_password_authentication_token1] = ACTIONS(1565), + [aux_sym_permit_local_command_token1] = ACTIONS(1565), + [aux_sym_permit_remote_open_token1] = ACTIONS(1565), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1565), + [aux_sym_port_token1] = ACTIONS(1565), + [aux_sym_preferred_authentications_token1] = ACTIONS(1565), + [aux_sym_protocol_token1] = ACTIONS(1565), + [aux_sym_proxy_command_token1] = ACTIONS(1565), + [aux_sym_proxy_jump_token1] = ACTIONS(1565), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1565), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1565), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1565), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1565), + [aux_sym_rekey_limit_token1] = ACTIONS(1565), + [aux_sym_remote_command_token1] = ACTIONS(1565), + [aux_sym_remote_forward_token1] = ACTIONS(1565), + [aux_sym_request_tty_token1] = ACTIONS(1565), + [aux_sym_required_rsa_size_token1] = ACTIONS(1565), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1565), + [aux_sym_security_key_provider_token1] = ACTIONS(1565), + [aux_sym_send_env_token1] = ACTIONS(1565), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1565), + [aux_sym_server_alive_interval_token1] = ACTIONS(1565), + [aux_sym_session_type_token1] = ACTIONS(1565), + [aux_sym_set_env_token1] = ACTIONS(1565), + [aux_sym_stdin_null_token1] = ACTIONS(1565), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1565), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1565), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1565), + [aux_sym_syslog_facility_token1] = ACTIONS(1565), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1565), + [aux_sym_keep_alive_token1] = ACTIONS(1565), + [aux_sym_tag_token1] = ACTIONS(1565), + [aux_sym_tunnel_token1] = ACTIONS(1567), + [aux_sym_tunnel_device_token1] = ACTIONS(1565), + [aux_sym_update_host_keys_token1] = ACTIONS(1565), + [aux_sym_use_keychain_token1] = ACTIONS(1565), + [aux_sym_use_roaming_token1] = ACTIONS(1565), + [aux_sym_user_token1] = ACTIONS(1567), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1565), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1565), + [aux_sym_visual_host_key_token1] = ACTIONS(1565), + [aux_sym_xauth_location_token1] = ACTIONS(1565), }, [683] = { - [ts_builtin_sym_end] = ACTIONS(672), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(674), - [aux_sym_match_token1] = ACTIONS(672), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(672), - [aux_sym_address_family_token1] = ACTIONS(672), - [aux_sym_batch_mode_token1] = ACTIONS(672), - [aux_sym_bind_address_token1] = ACTIONS(672), - [aux_sym_bind_interface_token1] = ACTIONS(672), - [aux_sym_canonical_domains_token1] = ACTIONS(672), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(672), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(672), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(672), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(672), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(672), - [aux_sym_certificate_file_token1] = ACTIONS(672), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(672), - [aux_sym_channel_timeout_token1] = ACTIONS(672), - [aux_sym_check_host_ip_token1] = ACTIONS(672), - [aux_sym_ciphers_token1] = ACTIONS(672), - [aux_sym_cipher_token1] = ACTIONS(674), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(672), - [aux_sym_compression_token1] = ACTIONS(672), - [aux_sym_connection_attempts_token1] = ACTIONS(672), - [aux_sym_connect_timeout_token1] = ACTIONS(672), - [aux_sym_control_master_token1] = ACTIONS(672), - [aux_sym_control_path_token1] = ACTIONS(672), - [aux_sym_control_persist_token1] = ACTIONS(672), - [aux_sym_dynamic_forward_token1] = ACTIONS(672), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(672), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(672), - [aux_sym_escape_char_token1] = ACTIONS(672), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(672), - [aux_sym_fingerprint_hash_token1] = ACTIONS(672), - [aux_sym_fork_after_authentication_token1] = ACTIONS(672), - [aux_sym_forward_agent_token1] = ACTIONS(672), - [aux_sym_forward_x11_token1] = ACTIONS(674), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(672), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(672), - [aux_sym_gateway_ports_token1] = ACTIONS(672), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(672), - [aux_sym_gssapi_authentication_token1] = ACTIONS(672), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(672), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(672), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(672), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(672), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(672), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(672), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(672), - [aux_sym_hash_known_hosts_token1] = ACTIONS(672), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(672), - [aux_sym_hostbased_authentication_token1] = ACTIONS(672), - [aux_sym_host_key_algorithms_token1] = ACTIONS(672), - [aux_sym_host_key_alias_token1] = ACTIONS(672), - [aux_sym_hostname_token1] = ACTIONS(672), - [aux_sym_identities_only_token1] = ACTIONS(672), - [aux_sym_identity_agent_token1] = ACTIONS(672), - [aux_sym_identity_file_token1] = ACTIONS(672), - [aux_sym_ignore_unknown_token1] = ACTIONS(672), - [aux_sym_include_token1] = ACTIONS(672), - [aux_sym_ip_qos_token1] = ACTIONS(672), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(672), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(672), - [aux_sym_kex_algorithms_token1] = ACTIONS(672), - [aux_sym_known_hosts_command_token1] = ACTIONS(672), - [aux_sym_local_command_token1] = ACTIONS(672), - [aux_sym_local_forward_token1] = ACTIONS(672), - [aux_sym_log_level_token1] = ACTIONS(672), - [aux_sym_log_verbose_token1] = ACTIONS(672), - [aux_sym_macs_token1] = ACTIONS(672), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(672), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(672), - [aux_sym_password_authentication_token1] = ACTIONS(672), - [aux_sym_permit_local_command_token1] = ACTIONS(672), - [aux_sym_permit_remote_open_token1] = ACTIONS(672), - [aux_sym_pkcs11_provider_token1] = ACTIONS(672), - [aux_sym_port_token1] = ACTIONS(672), - [aux_sym_preferred_authentications_token1] = ACTIONS(672), - [aux_sym_protocol_token1] = ACTIONS(672), - [aux_sym_proxy_command_token1] = ACTIONS(672), - [aux_sym_proxy_jump_token1] = ACTIONS(672), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(672), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(672), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(672), - [aux_sym_pubkey_authentication_token1] = ACTIONS(672), - [aux_sym_rekey_limit_token1] = ACTIONS(672), - [aux_sym_remote_command_token1] = ACTIONS(672), - [aux_sym_remote_forward_token1] = ACTIONS(672), - [aux_sym_request_tty_token1] = ACTIONS(672), - [aux_sym_required_rsa_size_token1] = ACTIONS(672), - [aux_sym_revoked_host_keys_token1] = ACTIONS(672), - [aux_sym_security_key_provider_token1] = ACTIONS(672), - [aux_sym_send_env_token1] = ACTIONS(672), - [aux_sym_server_alive_count_max_token1] = ACTIONS(672), - [aux_sym_server_alive_interval_token1] = ACTIONS(672), - [aux_sym_session_type_token1] = ACTIONS(672), - [aux_sym_set_env_token1] = ACTIONS(672), - [aux_sym_stdin_null_token1] = ACTIONS(672), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(672), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(672), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(672), - [aux_sym_syslog_facility_token1] = ACTIONS(672), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(672), - [aux_sym_keep_alive_token1] = ACTIONS(672), - [aux_sym_tag_token1] = ACTIONS(672), - [aux_sym_tunnel_token1] = ACTIONS(674), - [aux_sym_tunnel_device_token1] = ACTIONS(672), - [aux_sym_update_host_keys_token1] = ACTIONS(672), - [aux_sym_use_keychain_token1] = ACTIONS(672), - [aux_sym_use_roaming_token1] = ACTIONS(672), - [aux_sym_user_token1] = ACTIONS(674), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(672), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(672), - [aux_sym_visual_host_key_token1] = ACTIONS(672), - [aux_sym_xauth_location_token1] = ACTIONS(672), + [ts_builtin_sym_end] = ACTIONS(995), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(997), + [aux_sym_match_token1] = ACTIONS(995), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(995), + [aux_sym_address_family_token1] = ACTIONS(995), + [aux_sym_batch_mode_token1] = ACTIONS(995), + [aux_sym_bind_address_token1] = ACTIONS(995), + [aux_sym_bind_interface_token1] = ACTIONS(995), + [aux_sym_canonical_domains_token1] = ACTIONS(995), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(995), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(995), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(995), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(995), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(995), + [aux_sym_certificate_file_token1] = ACTIONS(995), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(995), + [aux_sym_channel_timeout_token1] = ACTIONS(995), + [aux_sym_check_host_ip_token1] = ACTIONS(995), + [aux_sym_ciphers_token1] = ACTIONS(995), + [aux_sym_cipher_token1] = ACTIONS(997), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(995), + [aux_sym_compression_token1] = ACTIONS(995), + [aux_sym_connection_attempts_token1] = ACTIONS(995), + [aux_sym_connect_timeout_token1] = ACTIONS(995), + [aux_sym_control_master_token1] = ACTIONS(995), + [aux_sym_control_path_token1] = ACTIONS(995), + [aux_sym_control_persist_token1] = ACTIONS(995), + [aux_sym_dynamic_forward_token1] = ACTIONS(995), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(995), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(995), + [aux_sym_escape_char_token1] = ACTIONS(995), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(995), + [aux_sym_fingerprint_hash_token1] = ACTIONS(995), + [aux_sym_fork_after_authentication_token1] = ACTIONS(995), + [aux_sym_forward_agent_token1] = ACTIONS(995), + [aux_sym_forward_x11_token1] = ACTIONS(997), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(995), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(995), + [aux_sym_gateway_ports_token1] = ACTIONS(995), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(995), + [aux_sym_gssapi_authentication_token1] = ACTIONS(995), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(995), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(995), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(995), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(995), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(995), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(995), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(995), + [aux_sym_hash_known_hosts_token1] = ACTIONS(995), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(995), + [aux_sym_hostbased_authentication_token1] = ACTIONS(995), + [aux_sym_host_key_algorithms_token1] = ACTIONS(995), + [aux_sym_host_key_alias_token1] = ACTIONS(995), + [aux_sym_hostname_token1] = ACTIONS(995), + [aux_sym_identities_only_token1] = ACTIONS(995), + [aux_sym_identity_agent_token1] = ACTIONS(995), + [aux_sym_identity_file_token1] = ACTIONS(995), + [aux_sym_ignore_unknown_token1] = ACTIONS(995), + [aux_sym_include_token1] = ACTIONS(995), + [aux_sym_ip_qos_token1] = ACTIONS(995), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(995), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(995), + [aux_sym_kex_algorithms_token1] = ACTIONS(995), + [aux_sym_known_hosts_command_token1] = ACTIONS(995), + [aux_sym_local_command_token1] = ACTIONS(995), + [aux_sym_local_forward_token1] = ACTIONS(995), + [aux_sym_log_level_token1] = ACTIONS(995), + [aux_sym_log_verbose_token1] = ACTIONS(995), + [aux_sym_macs_token1] = ACTIONS(995), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(995), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(995), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(995), + [aux_sym_password_authentication_token1] = ACTIONS(995), + [aux_sym_permit_local_command_token1] = ACTIONS(995), + [aux_sym_permit_remote_open_token1] = ACTIONS(995), + [aux_sym_pkcs11_provider_token1] = ACTIONS(995), + [aux_sym_port_token1] = ACTIONS(995), + [aux_sym_preferred_authentications_token1] = ACTIONS(995), + [aux_sym_protocol_token1] = ACTIONS(995), + [aux_sym_proxy_command_token1] = ACTIONS(995), + [aux_sym_proxy_jump_token1] = ACTIONS(995), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(995), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(995), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(995), + [aux_sym_pubkey_authentication_token1] = ACTIONS(995), + [aux_sym_rekey_limit_token1] = ACTIONS(995), + [aux_sym_remote_command_token1] = ACTIONS(995), + [aux_sym_remote_forward_token1] = ACTIONS(995), + [aux_sym_request_tty_token1] = ACTIONS(995), + [aux_sym_required_rsa_size_token1] = ACTIONS(995), + [aux_sym_revoked_host_keys_token1] = ACTIONS(995), + [aux_sym_security_key_provider_token1] = ACTIONS(995), + [aux_sym_send_env_token1] = ACTIONS(995), + [aux_sym_server_alive_count_max_token1] = ACTIONS(995), + [aux_sym_server_alive_interval_token1] = ACTIONS(995), + [aux_sym_session_type_token1] = ACTIONS(995), + [aux_sym_set_env_token1] = ACTIONS(995), + [aux_sym_stdin_null_token1] = ACTIONS(995), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(995), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(995), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(995), + [aux_sym_syslog_facility_token1] = ACTIONS(995), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(995), + [aux_sym_keep_alive_token1] = ACTIONS(995), + [aux_sym_tag_token1] = ACTIONS(995), + [aux_sym_tunnel_token1] = ACTIONS(997), + [aux_sym_tunnel_device_token1] = ACTIONS(995), + [aux_sym_update_host_keys_token1] = ACTIONS(995), + [aux_sym_use_keychain_token1] = ACTIONS(995), + [aux_sym_use_roaming_token1] = ACTIONS(995), + [aux_sym_user_token1] = ACTIONS(997), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(995), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(995), + [aux_sym_visual_host_key_token1] = ACTIONS(995), + [aux_sym_xauth_location_token1] = ACTIONS(995), }, [684] = { - [ts_builtin_sym_end] = ACTIONS(678), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(680), - [aux_sym_match_token1] = ACTIONS(678), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(678), - [aux_sym_address_family_token1] = ACTIONS(678), - [aux_sym_batch_mode_token1] = ACTIONS(678), - [aux_sym_bind_address_token1] = ACTIONS(678), - [aux_sym_bind_interface_token1] = ACTIONS(678), - [aux_sym_canonical_domains_token1] = ACTIONS(678), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(678), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(678), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(678), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(678), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(678), - [aux_sym_certificate_file_token1] = ACTIONS(678), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(678), - [aux_sym_channel_timeout_token1] = ACTIONS(678), - [aux_sym_check_host_ip_token1] = ACTIONS(678), - [aux_sym_ciphers_token1] = ACTIONS(678), - [aux_sym_cipher_token1] = ACTIONS(680), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(678), - [aux_sym_compression_token1] = ACTIONS(678), - [aux_sym_connection_attempts_token1] = ACTIONS(678), - [aux_sym_connect_timeout_token1] = ACTIONS(678), - [aux_sym_control_master_token1] = ACTIONS(678), - [aux_sym_control_path_token1] = ACTIONS(678), - [aux_sym_control_persist_token1] = ACTIONS(678), - [aux_sym_dynamic_forward_token1] = ACTIONS(678), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(678), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(678), - [aux_sym_escape_char_token1] = ACTIONS(678), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(678), - [aux_sym_fingerprint_hash_token1] = ACTIONS(678), - [aux_sym_fork_after_authentication_token1] = ACTIONS(678), - [aux_sym_forward_agent_token1] = ACTIONS(678), - [aux_sym_forward_x11_token1] = ACTIONS(680), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(678), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(678), - [aux_sym_gateway_ports_token1] = ACTIONS(678), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(678), - [aux_sym_gssapi_authentication_token1] = ACTIONS(678), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(678), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(678), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(678), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(678), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(678), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(678), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(678), - [aux_sym_hash_known_hosts_token1] = ACTIONS(678), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(678), - [aux_sym_hostbased_authentication_token1] = ACTIONS(678), - [aux_sym_host_key_algorithms_token1] = ACTIONS(678), - [aux_sym_host_key_alias_token1] = ACTIONS(678), - [aux_sym_hostname_token1] = ACTIONS(678), - [aux_sym_identities_only_token1] = ACTIONS(678), - [aux_sym_identity_agent_token1] = ACTIONS(678), - [aux_sym_identity_file_token1] = ACTIONS(678), - [aux_sym_ignore_unknown_token1] = ACTIONS(678), - [aux_sym_include_token1] = ACTIONS(678), - [aux_sym_ip_qos_token1] = ACTIONS(678), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(678), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(678), - [aux_sym_kex_algorithms_token1] = ACTIONS(678), - [aux_sym_known_hosts_command_token1] = ACTIONS(678), - [aux_sym_local_command_token1] = ACTIONS(678), - [aux_sym_local_forward_token1] = ACTIONS(678), - [aux_sym_log_level_token1] = ACTIONS(678), - [aux_sym_log_verbose_token1] = ACTIONS(678), - [aux_sym_macs_token1] = ACTIONS(678), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(678), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(678), - [aux_sym_password_authentication_token1] = ACTIONS(678), - [aux_sym_permit_local_command_token1] = ACTIONS(678), - [aux_sym_permit_remote_open_token1] = ACTIONS(678), - [aux_sym_pkcs11_provider_token1] = ACTIONS(678), - [aux_sym_port_token1] = ACTIONS(678), - [aux_sym_preferred_authentications_token1] = ACTIONS(678), - [aux_sym_protocol_token1] = ACTIONS(678), - [aux_sym_proxy_command_token1] = ACTIONS(678), - [aux_sym_proxy_jump_token1] = ACTIONS(678), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(678), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(678), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(678), - [aux_sym_pubkey_authentication_token1] = ACTIONS(678), - [aux_sym_rekey_limit_token1] = ACTIONS(678), - [aux_sym_remote_command_token1] = ACTIONS(678), - [aux_sym_remote_forward_token1] = ACTIONS(678), - [aux_sym_request_tty_token1] = ACTIONS(678), - [aux_sym_required_rsa_size_token1] = ACTIONS(678), - [aux_sym_revoked_host_keys_token1] = ACTIONS(678), - [aux_sym_security_key_provider_token1] = ACTIONS(678), - [aux_sym_send_env_token1] = ACTIONS(678), - [aux_sym_server_alive_count_max_token1] = ACTIONS(678), - [aux_sym_server_alive_interval_token1] = ACTIONS(678), - [aux_sym_session_type_token1] = ACTIONS(678), - [aux_sym_set_env_token1] = ACTIONS(678), - [aux_sym_stdin_null_token1] = ACTIONS(678), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(678), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(678), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(678), - [aux_sym_syslog_facility_token1] = ACTIONS(678), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(678), - [aux_sym_keep_alive_token1] = ACTIONS(678), - [aux_sym_tag_token1] = ACTIONS(678), - [aux_sym_tunnel_token1] = ACTIONS(680), - [aux_sym_tunnel_device_token1] = ACTIONS(678), - [aux_sym_update_host_keys_token1] = ACTIONS(678), - [aux_sym_use_keychain_token1] = ACTIONS(678), - [aux_sym_use_roaming_token1] = ACTIONS(678), - [aux_sym_user_token1] = ACTIONS(680), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(678), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(678), - [aux_sym_visual_host_key_token1] = ACTIONS(678), - [aux_sym_xauth_location_token1] = ACTIONS(678), + [ts_builtin_sym_end] = ACTIONS(1409), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1411), + [aux_sym_match_token1] = ACTIONS(1409), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1409), + [aux_sym_address_family_token1] = ACTIONS(1409), + [aux_sym_batch_mode_token1] = ACTIONS(1409), + [aux_sym_bind_address_token1] = ACTIONS(1409), + [aux_sym_bind_interface_token1] = ACTIONS(1409), + [aux_sym_canonical_domains_token1] = ACTIONS(1409), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1409), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1409), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1409), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1409), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1409), + [aux_sym_certificate_file_token1] = ACTIONS(1409), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1409), + [aux_sym_channel_timeout_token1] = ACTIONS(1409), + [aux_sym_check_host_ip_token1] = ACTIONS(1409), + [aux_sym_ciphers_token1] = ACTIONS(1409), + [aux_sym_cipher_token1] = ACTIONS(1411), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1409), + [aux_sym_compression_token1] = ACTIONS(1409), + [aux_sym_connection_attempts_token1] = ACTIONS(1409), + [aux_sym_connect_timeout_token1] = ACTIONS(1409), + [aux_sym_control_master_token1] = ACTIONS(1409), + [aux_sym_control_path_token1] = ACTIONS(1409), + [aux_sym_control_persist_token1] = ACTIONS(1409), + [aux_sym_dynamic_forward_token1] = ACTIONS(1409), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1409), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1409), + [aux_sym_escape_char_token1] = ACTIONS(1409), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1409), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1409), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1409), + [aux_sym_forward_agent_token1] = ACTIONS(1409), + [aux_sym_forward_x11_token1] = ACTIONS(1411), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1409), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1409), + [aux_sym_gateway_ports_token1] = ACTIONS(1409), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1409), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1409), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1409), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1409), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1409), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1409), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1409), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1409), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1409), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1409), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1409), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1409), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1409), + [aux_sym_host_key_alias_token1] = ACTIONS(1409), + [aux_sym_hostname_token1] = ACTIONS(1409), + [aux_sym_identities_only_token1] = ACTIONS(1409), + [aux_sym_identity_agent_token1] = ACTIONS(1409), + [aux_sym_identity_file_token1] = ACTIONS(1409), + [aux_sym_ignore_unknown_token1] = ACTIONS(1409), + [aux_sym_include_token1] = ACTIONS(1409), + [aux_sym_ip_qos_token1] = ACTIONS(1409), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1409), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1409), + [aux_sym_kex_algorithms_token1] = ACTIONS(1409), + [aux_sym_known_hosts_command_token1] = ACTIONS(1409), + [aux_sym_local_command_token1] = ACTIONS(1409), + [aux_sym_local_forward_token1] = ACTIONS(1409), + [aux_sym_log_level_token1] = ACTIONS(1409), + [aux_sym_log_verbose_token1] = ACTIONS(1409), + [aux_sym_macs_token1] = ACTIONS(1409), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1409), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1409), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1409), + [aux_sym_password_authentication_token1] = ACTIONS(1409), + [aux_sym_permit_local_command_token1] = ACTIONS(1409), + [aux_sym_permit_remote_open_token1] = ACTIONS(1409), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1409), + [aux_sym_port_token1] = ACTIONS(1409), + [aux_sym_preferred_authentications_token1] = ACTIONS(1409), + [aux_sym_protocol_token1] = ACTIONS(1409), + [aux_sym_proxy_command_token1] = ACTIONS(1409), + [aux_sym_proxy_jump_token1] = ACTIONS(1409), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1409), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1409), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1409), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1409), + [aux_sym_rekey_limit_token1] = ACTIONS(1409), + [aux_sym_remote_command_token1] = ACTIONS(1409), + [aux_sym_remote_forward_token1] = ACTIONS(1409), + [aux_sym_request_tty_token1] = ACTIONS(1409), + [aux_sym_required_rsa_size_token1] = ACTIONS(1409), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1409), + [aux_sym_security_key_provider_token1] = ACTIONS(1409), + [aux_sym_send_env_token1] = ACTIONS(1409), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1409), + [aux_sym_server_alive_interval_token1] = ACTIONS(1409), + [aux_sym_session_type_token1] = ACTIONS(1409), + [aux_sym_set_env_token1] = ACTIONS(1409), + [aux_sym_stdin_null_token1] = ACTIONS(1409), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1409), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1409), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1409), + [aux_sym_syslog_facility_token1] = ACTIONS(1409), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1409), + [aux_sym_keep_alive_token1] = ACTIONS(1409), + [aux_sym_tag_token1] = ACTIONS(1409), + [aux_sym_tunnel_token1] = ACTIONS(1411), + [aux_sym_tunnel_device_token1] = ACTIONS(1409), + [aux_sym_update_host_keys_token1] = ACTIONS(1409), + [aux_sym_use_keychain_token1] = ACTIONS(1409), + [aux_sym_use_roaming_token1] = ACTIONS(1409), + [aux_sym_user_token1] = ACTIONS(1411), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1409), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1409), + [aux_sym_visual_host_key_token1] = ACTIONS(1409), + [aux_sym_xauth_location_token1] = ACTIONS(1409), }, [685] = { - [ts_builtin_sym_end] = ACTIONS(684), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(686), - [aux_sym_match_token1] = ACTIONS(684), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(684), - [aux_sym_address_family_token1] = ACTIONS(684), - [aux_sym_batch_mode_token1] = ACTIONS(684), - [aux_sym_bind_address_token1] = ACTIONS(684), - [aux_sym_bind_interface_token1] = ACTIONS(684), - [aux_sym_canonical_domains_token1] = ACTIONS(684), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(684), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(684), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(684), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(684), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(684), - [aux_sym_certificate_file_token1] = ACTIONS(684), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(684), - [aux_sym_channel_timeout_token1] = ACTIONS(684), - [aux_sym_check_host_ip_token1] = ACTIONS(684), - [aux_sym_ciphers_token1] = ACTIONS(684), - [aux_sym_cipher_token1] = ACTIONS(686), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(684), - [aux_sym_compression_token1] = ACTIONS(684), - [aux_sym_connection_attempts_token1] = ACTIONS(684), - [aux_sym_connect_timeout_token1] = ACTIONS(684), - [aux_sym_control_master_token1] = ACTIONS(684), - [aux_sym_control_path_token1] = ACTIONS(684), - [aux_sym_control_persist_token1] = ACTIONS(684), - [aux_sym_dynamic_forward_token1] = ACTIONS(684), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(684), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(684), - [aux_sym_escape_char_token1] = ACTIONS(684), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(684), - [aux_sym_fingerprint_hash_token1] = ACTIONS(684), - [aux_sym_fork_after_authentication_token1] = ACTIONS(684), - [aux_sym_forward_agent_token1] = ACTIONS(684), - [aux_sym_forward_x11_token1] = ACTIONS(686), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(684), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(684), - [aux_sym_gateway_ports_token1] = ACTIONS(684), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(684), - [aux_sym_gssapi_authentication_token1] = ACTIONS(684), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(684), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(684), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(684), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(684), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(684), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(684), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(684), - [aux_sym_hash_known_hosts_token1] = ACTIONS(684), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(684), - [aux_sym_hostbased_authentication_token1] = ACTIONS(684), - [aux_sym_host_key_algorithms_token1] = ACTIONS(684), - [aux_sym_host_key_alias_token1] = ACTIONS(684), - [aux_sym_hostname_token1] = ACTIONS(684), - [aux_sym_identities_only_token1] = ACTIONS(684), - [aux_sym_identity_agent_token1] = ACTIONS(684), - [aux_sym_identity_file_token1] = ACTIONS(684), - [aux_sym_ignore_unknown_token1] = ACTIONS(684), - [aux_sym_include_token1] = ACTIONS(684), - [aux_sym_ip_qos_token1] = ACTIONS(684), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(684), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(684), - [aux_sym_kex_algorithms_token1] = ACTIONS(684), - [aux_sym_known_hosts_command_token1] = ACTIONS(684), - [aux_sym_local_command_token1] = ACTIONS(684), - [aux_sym_local_forward_token1] = ACTIONS(684), - [aux_sym_log_level_token1] = ACTIONS(684), - [aux_sym_log_verbose_token1] = ACTIONS(684), - [aux_sym_macs_token1] = ACTIONS(684), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(684), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(684), - [aux_sym_password_authentication_token1] = ACTIONS(684), - [aux_sym_permit_local_command_token1] = ACTIONS(684), - [aux_sym_permit_remote_open_token1] = ACTIONS(684), - [aux_sym_pkcs11_provider_token1] = ACTIONS(684), - [aux_sym_port_token1] = ACTIONS(684), - [aux_sym_preferred_authentications_token1] = ACTIONS(684), - [aux_sym_protocol_token1] = ACTIONS(684), - [aux_sym_proxy_command_token1] = ACTIONS(684), - [aux_sym_proxy_jump_token1] = ACTIONS(684), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(684), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(684), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(684), - [aux_sym_pubkey_authentication_token1] = ACTIONS(684), - [aux_sym_rekey_limit_token1] = ACTIONS(684), - [aux_sym_remote_command_token1] = ACTIONS(684), - [aux_sym_remote_forward_token1] = ACTIONS(684), - [aux_sym_request_tty_token1] = ACTIONS(684), - [aux_sym_required_rsa_size_token1] = ACTIONS(684), - [aux_sym_revoked_host_keys_token1] = ACTIONS(684), - [aux_sym_security_key_provider_token1] = ACTIONS(684), - [aux_sym_send_env_token1] = ACTIONS(684), - [aux_sym_server_alive_count_max_token1] = ACTIONS(684), - [aux_sym_server_alive_interval_token1] = ACTIONS(684), - [aux_sym_session_type_token1] = ACTIONS(684), - [aux_sym_set_env_token1] = ACTIONS(684), - [aux_sym_stdin_null_token1] = ACTIONS(684), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(684), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(684), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(684), - [aux_sym_syslog_facility_token1] = ACTIONS(684), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(684), - [aux_sym_keep_alive_token1] = ACTIONS(684), - [aux_sym_tag_token1] = ACTIONS(684), - [aux_sym_tunnel_token1] = ACTIONS(686), - [aux_sym_tunnel_device_token1] = ACTIONS(684), - [aux_sym_update_host_keys_token1] = ACTIONS(684), - [aux_sym_use_keychain_token1] = ACTIONS(684), - [aux_sym_use_roaming_token1] = ACTIONS(684), - [aux_sym_user_token1] = ACTIONS(686), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(684), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(684), - [aux_sym_visual_host_key_token1] = ACTIONS(684), - [aux_sym_xauth_location_token1] = ACTIONS(684), + [ts_builtin_sym_end] = ACTIONS(989), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(991), + [aux_sym_match_token1] = ACTIONS(989), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(989), + [aux_sym_address_family_token1] = ACTIONS(989), + [aux_sym_batch_mode_token1] = ACTIONS(989), + [aux_sym_bind_address_token1] = ACTIONS(989), + [aux_sym_bind_interface_token1] = ACTIONS(989), + [aux_sym_canonical_domains_token1] = ACTIONS(989), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(989), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(989), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(989), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(989), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(989), + [aux_sym_certificate_file_token1] = ACTIONS(989), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(989), + [aux_sym_channel_timeout_token1] = ACTIONS(989), + [aux_sym_check_host_ip_token1] = ACTIONS(989), + [aux_sym_ciphers_token1] = ACTIONS(989), + [aux_sym_cipher_token1] = ACTIONS(991), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(989), + [aux_sym_compression_token1] = ACTIONS(989), + [aux_sym_connection_attempts_token1] = ACTIONS(989), + [aux_sym_connect_timeout_token1] = ACTIONS(989), + [aux_sym_control_master_token1] = ACTIONS(989), + [aux_sym_control_path_token1] = ACTIONS(989), + [aux_sym_control_persist_token1] = ACTIONS(989), + [aux_sym_dynamic_forward_token1] = ACTIONS(989), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(989), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(989), + [aux_sym_escape_char_token1] = ACTIONS(989), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(989), + [aux_sym_fingerprint_hash_token1] = ACTIONS(989), + [aux_sym_fork_after_authentication_token1] = ACTIONS(989), + [aux_sym_forward_agent_token1] = ACTIONS(989), + [aux_sym_forward_x11_token1] = ACTIONS(991), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(989), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(989), + [aux_sym_gateway_ports_token1] = ACTIONS(989), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(989), + [aux_sym_gssapi_authentication_token1] = ACTIONS(989), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(989), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(989), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(989), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(989), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(989), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(989), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(989), + [aux_sym_hash_known_hosts_token1] = ACTIONS(989), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(989), + [aux_sym_hostbased_authentication_token1] = ACTIONS(989), + [aux_sym_host_key_algorithms_token1] = ACTIONS(989), + [aux_sym_host_key_alias_token1] = ACTIONS(989), + [aux_sym_hostname_token1] = ACTIONS(989), + [aux_sym_identities_only_token1] = ACTIONS(989), + [aux_sym_identity_agent_token1] = ACTIONS(989), + [aux_sym_identity_file_token1] = ACTIONS(989), + [aux_sym_ignore_unknown_token1] = ACTIONS(989), + [aux_sym_include_token1] = ACTIONS(989), + [aux_sym_ip_qos_token1] = ACTIONS(989), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(989), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(989), + [aux_sym_kex_algorithms_token1] = ACTIONS(989), + [aux_sym_known_hosts_command_token1] = ACTIONS(989), + [aux_sym_local_command_token1] = ACTIONS(989), + [aux_sym_local_forward_token1] = ACTIONS(989), + [aux_sym_log_level_token1] = ACTIONS(989), + [aux_sym_log_verbose_token1] = ACTIONS(989), + [aux_sym_macs_token1] = ACTIONS(989), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(989), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(989), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(989), + [aux_sym_password_authentication_token1] = ACTIONS(989), + [aux_sym_permit_local_command_token1] = ACTIONS(989), + [aux_sym_permit_remote_open_token1] = ACTIONS(989), + [aux_sym_pkcs11_provider_token1] = ACTIONS(989), + [aux_sym_port_token1] = ACTIONS(989), + [aux_sym_preferred_authentications_token1] = ACTIONS(989), + [aux_sym_protocol_token1] = ACTIONS(989), + [aux_sym_proxy_command_token1] = ACTIONS(989), + [aux_sym_proxy_jump_token1] = ACTIONS(989), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(989), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(989), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(989), + [aux_sym_pubkey_authentication_token1] = ACTIONS(989), + [aux_sym_rekey_limit_token1] = ACTIONS(989), + [aux_sym_remote_command_token1] = ACTIONS(989), + [aux_sym_remote_forward_token1] = ACTIONS(989), + [aux_sym_request_tty_token1] = ACTIONS(989), + [aux_sym_required_rsa_size_token1] = ACTIONS(989), + [aux_sym_revoked_host_keys_token1] = ACTIONS(989), + [aux_sym_security_key_provider_token1] = ACTIONS(989), + [aux_sym_send_env_token1] = ACTIONS(989), + [aux_sym_server_alive_count_max_token1] = ACTIONS(989), + [aux_sym_server_alive_interval_token1] = ACTIONS(989), + [aux_sym_session_type_token1] = ACTIONS(989), + [aux_sym_set_env_token1] = ACTIONS(989), + [aux_sym_stdin_null_token1] = ACTIONS(989), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(989), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(989), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(989), + [aux_sym_syslog_facility_token1] = ACTIONS(989), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(989), + [aux_sym_keep_alive_token1] = ACTIONS(989), + [aux_sym_tag_token1] = ACTIONS(989), + [aux_sym_tunnel_token1] = ACTIONS(991), + [aux_sym_tunnel_device_token1] = ACTIONS(989), + [aux_sym_update_host_keys_token1] = ACTIONS(989), + [aux_sym_use_keychain_token1] = ACTIONS(989), + [aux_sym_use_roaming_token1] = ACTIONS(989), + [aux_sym_user_token1] = ACTIONS(991), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(989), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(989), + [aux_sym_visual_host_key_token1] = ACTIONS(989), + [aux_sym_xauth_location_token1] = ACTIONS(989), }, [686] = { - [ts_builtin_sym_end] = ACTIONS(690), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(692), - [aux_sym_match_token1] = ACTIONS(690), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(690), - [aux_sym_address_family_token1] = ACTIONS(690), - [aux_sym_batch_mode_token1] = ACTIONS(690), - [aux_sym_bind_address_token1] = ACTIONS(690), - [aux_sym_bind_interface_token1] = ACTIONS(690), - [aux_sym_canonical_domains_token1] = ACTIONS(690), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(690), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(690), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(690), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(690), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(690), - [aux_sym_certificate_file_token1] = ACTIONS(690), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(690), - [aux_sym_channel_timeout_token1] = ACTIONS(690), - [aux_sym_check_host_ip_token1] = ACTIONS(690), - [aux_sym_ciphers_token1] = ACTIONS(690), - [aux_sym_cipher_token1] = ACTIONS(692), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(690), - [aux_sym_compression_token1] = ACTIONS(690), - [aux_sym_connection_attempts_token1] = ACTIONS(690), - [aux_sym_connect_timeout_token1] = ACTIONS(690), - [aux_sym_control_master_token1] = ACTIONS(690), - [aux_sym_control_path_token1] = ACTIONS(690), - [aux_sym_control_persist_token1] = ACTIONS(690), - [aux_sym_dynamic_forward_token1] = ACTIONS(690), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(690), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(690), - [aux_sym_escape_char_token1] = ACTIONS(690), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(690), - [aux_sym_fingerprint_hash_token1] = ACTIONS(690), - [aux_sym_fork_after_authentication_token1] = ACTIONS(690), - [aux_sym_forward_agent_token1] = ACTIONS(690), - [aux_sym_forward_x11_token1] = ACTIONS(692), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(690), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(690), - [aux_sym_gateway_ports_token1] = ACTIONS(690), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(690), - [aux_sym_gssapi_authentication_token1] = ACTIONS(690), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(690), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(690), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(690), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(690), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(690), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(690), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(690), - [aux_sym_hash_known_hosts_token1] = ACTIONS(690), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(690), - [aux_sym_hostbased_authentication_token1] = ACTIONS(690), - [aux_sym_host_key_algorithms_token1] = ACTIONS(690), - [aux_sym_host_key_alias_token1] = ACTIONS(690), - [aux_sym_hostname_token1] = ACTIONS(690), - [aux_sym_identities_only_token1] = ACTIONS(690), - [aux_sym_identity_agent_token1] = ACTIONS(690), - [aux_sym_identity_file_token1] = ACTIONS(690), - [aux_sym_ignore_unknown_token1] = ACTIONS(690), - [aux_sym_include_token1] = ACTIONS(690), - [aux_sym_ip_qos_token1] = ACTIONS(690), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(690), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(690), - [aux_sym_kex_algorithms_token1] = ACTIONS(690), - [aux_sym_known_hosts_command_token1] = ACTIONS(690), - [aux_sym_local_command_token1] = ACTIONS(690), - [aux_sym_local_forward_token1] = ACTIONS(690), - [aux_sym_log_level_token1] = ACTIONS(690), - [aux_sym_log_verbose_token1] = ACTIONS(690), - [aux_sym_macs_token1] = ACTIONS(690), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(690), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(690), - [aux_sym_password_authentication_token1] = ACTIONS(690), - [aux_sym_permit_local_command_token1] = ACTIONS(690), - [aux_sym_permit_remote_open_token1] = ACTIONS(690), - [aux_sym_pkcs11_provider_token1] = ACTIONS(690), - [aux_sym_port_token1] = ACTIONS(690), - [aux_sym_preferred_authentications_token1] = ACTIONS(690), - [aux_sym_protocol_token1] = ACTIONS(690), - [aux_sym_proxy_command_token1] = ACTIONS(690), - [aux_sym_proxy_jump_token1] = ACTIONS(690), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(690), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(690), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(690), - [aux_sym_pubkey_authentication_token1] = ACTIONS(690), - [aux_sym_rekey_limit_token1] = ACTIONS(690), - [aux_sym_remote_command_token1] = ACTIONS(690), - [aux_sym_remote_forward_token1] = ACTIONS(690), - [aux_sym_request_tty_token1] = ACTIONS(690), - [aux_sym_required_rsa_size_token1] = ACTIONS(690), - [aux_sym_revoked_host_keys_token1] = ACTIONS(690), - [aux_sym_security_key_provider_token1] = ACTIONS(690), - [aux_sym_send_env_token1] = ACTIONS(690), - [aux_sym_server_alive_count_max_token1] = ACTIONS(690), - [aux_sym_server_alive_interval_token1] = ACTIONS(690), - [aux_sym_session_type_token1] = ACTIONS(690), - [aux_sym_set_env_token1] = ACTIONS(690), - [aux_sym_stdin_null_token1] = ACTIONS(690), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(690), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(690), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(690), - [aux_sym_syslog_facility_token1] = ACTIONS(690), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(690), - [aux_sym_keep_alive_token1] = ACTIONS(690), - [aux_sym_tag_token1] = ACTIONS(690), - [aux_sym_tunnel_token1] = ACTIONS(692), - [aux_sym_tunnel_device_token1] = ACTIONS(690), - [aux_sym_update_host_keys_token1] = ACTIONS(690), - [aux_sym_use_keychain_token1] = ACTIONS(690), - [aux_sym_use_roaming_token1] = ACTIONS(690), - [aux_sym_user_token1] = ACTIONS(692), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(690), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(690), - [aux_sym_visual_host_key_token1] = ACTIONS(690), - [aux_sym_xauth_location_token1] = ACTIONS(690), + [ts_builtin_sym_end] = ACTIONS(1415), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1417), + [aux_sym_match_token1] = ACTIONS(1415), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1415), + [aux_sym_address_family_token1] = ACTIONS(1415), + [aux_sym_batch_mode_token1] = ACTIONS(1415), + [aux_sym_bind_address_token1] = ACTIONS(1415), + [aux_sym_bind_interface_token1] = ACTIONS(1415), + [aux_sym_canonical_domains_token1] = ACTIONS(1415), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1415), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1415), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1415), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1415), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1415), + [aux_sym_certificate_file_token1] = ACTIONS(1415), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1415), + [aux_sym_channel_timeout_token1] = ACTIONS(1415), + [aux_sym_check_host_ip_token1] = ACTIONS(1415), + [aux_sym_ciphers_token1] = ACTIONS(1415), + [aux_sym_cipher_token1] = ACTIONS(1417), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1415), + [aux_sym_compression_token1] = ACTIONS(1415), + [aux_sym_connection_attempts_token1] = ACTIONS(1415), + [aux_sym_connect_timeout_token1] = ACTIONS(1415), + [aux_sym_control_master_token1] = ACTIONS(1415), + [aux_sym_control_path_token1] = ACTIONS(1415), + [aux_sym_control_persist_token1] = ACTIONS(1415), + [aux_sym_dynamic_forward_token1] = ACTIONS(1415), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1415), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1415), + [aux_sym_escape_char_token1] = ACTIONS(1415), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1415), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1415), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1415), + [aux_sym_forward_agent_token1] = ACTIONS(1415), + [aux_sym_forward_x11_token1] = ACTIONS(1417), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1415), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1415), + [aux_sym_gateway_ports_token1] = ACTIONS(1415), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1415), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1415), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1415), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1415), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1415), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1415), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1415), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1415), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1415), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1415), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1415), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1415), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1415), + [aux_sym_host_key_alias_token1] = ACTIONS(1415), + [aux_sym_hostname_token1] = ACTIONS(1415), + [aux_sym_identities_only_token1] = ACTIONS(1415), + [aux_sym_identity_agent_token1] = ACTIONS(1415), + [aux_sym_identity_file_token1] = ACTIONS(1415), + [aux_sym_ignore_unknown_token1] = ACTIONS(1415), + [aux_sym_include_token1] = ACTIONS(1415), + [aux_sym_ip_qos_token1] = ACTIONS(1415), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1415), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1415), + [aux_sym_kex_algorithms_token1] = ACTIONS(1415), + [aux_sym_known_hosts_command_token1] = ACTIONS(1415), + [aux_sym_local_command_token1] = ACTIONS(1415), + [aux_sym_local_forward_token1] = ACTIONS(1415), + [aux_sym_log_level_token1] = ACTIONS(1415), + [aux_sym_log_verbose_token1] = ACTIONS(1415), + [aux_sym_macs_token1] = ACTIONS(1415), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1415), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1415), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1415), + [aux_sym_password_authentication_token1] = ACTIONS(1415), + [aux_sym_permit_local_command_token1] = ACTIONS(1415), + [aux_sym_permit_remote_open_token1] = ACTIONS(1415), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1415), + [aux_sym_port_token1] = ACTIONS(1415), + [aux_sym_preferred_authentications_token1] = ACTIONS(1415), + [aux_sym_protocol_token1] = ACTIONS(1415), + [aux_sym_proxy_command_token1] = ACTIONS(1415), + [aux_sym_proxy_jump_token1] = ACTIONS(1415), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1415), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1415), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1415), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1415), + [aux_sym_rekey_limit_token1] = ACTIONS(1415), + [aux_sym_remote_command_token1] = ACTIONS(1415), + [aux_sym_remote_forward_token1] = ACTIONS(1415), + [aux_sym_request_tty_token1] = ACTIONS(1415), + [aux_sym_required_rsa_size_token1] = ACTIONS(1415), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1415), + [aux_sym_security_key_provider_token1] = ACTIONS(1415), + [aux_sym_send_env_token1] = ACTIONS(1415), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1415), + [aux_sym_server_alive_interval_token1] = ACTIONS(1415), + [aux_sym_session_type_token1] = ACTIONS(1415), + [aux_sym_set_env_token1] = ACTIONS(1415), + [aux_sym_stdin_null_token1] = ACTIONS(1415), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1415), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1415), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1415), + [aux_sym_syslog_facility_token1] = ACTIONS(1415), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1415), + [aux_sym_keep_alive_token1] = ACTIONS(1415), + [aux_sym_tag_token1] = ACTIONS(1415), + [aux_sym_tunnel_token1] = ACTIONS(1417), + [aux_sym_tunnel_device_token1] = ACTIONS(1415), + [aux_sym_update_host_keys_token1] = ACTIONS(1415), + [aux_sym_use_keychain_token1] = ACTIONS(1415), + [aux_sym_use_roaming_token1] = ACTIONS(1415), + [aux_sym_user_token1] = ACTIONS(1417), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1415), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1415), + [aux_sym_visual_host_key_token1] = ACTIONS(1415), + [aux_sym_xauth_location_token1] = ACTIONS(1415), }, [687] = { - [ts_builtin_sym_end] = ACTIONS(696), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(698), - [aux_sym_match_token1] = ACTIONS(696), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(696), - [aux_sym_address_family_token1] = ACTIONS(696), - [aux_sym_batch_mode_token1] = ACTIONS(696), - [aux_sym_bind_address_token1] = ACTIONS(696), - [aux_sym_bind_interface_token1] = ACTIONS(696), - [aux_sym_canonical_domains_token1] = ACTIONS(696), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(696), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(696), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(696), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(696), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(696), - [aux_sym_certificate_file_token1] = ACTIONS(696), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(696), - [aux_sym_channel_timeout_token1] = ACTIONS(696), - [aux_sym_check_host_ip_token1] = ACTIONS(696), - [aux_sym_ciphers_token1] = ACTIONS(696), - [aux_sym_cipher_token1] = ACTIONS(698), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(696), - [aux_sym_compression_token1] = ACTIONS(696), - [aux_sym_connection_attempts_token1] = ACTIONS(696), - [aux_sym_connect_timeout_token1] = ACTIONS(696), - [aux_sym_control_master_token1] = ACTIONS(696), - [aux_sym_control_path_token1] = ACTIONS(696), - [aux_sym_control_persist_token1] = ACTIONS(696), - [aux_sym_dynamic_forward_token1] = ACTIONS(696), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(696), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(696), - [aux_sym_escape_char_token1] = ACTIONS(696), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(696), - [aux_sym_fingerprint_hash_token1] = ACTIONS(696), - [aux_sym_fork_after_authentication_token1] = ACTIONS(696), - [aux_sym_forward_agent_token1] = ACTIONS(696), - [aux_sym_forward_x11_token1] = ACTIONS(698), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(696), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(696), - [aux_sym_gateway_ports_token1] = ACTIONS(696), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(696), - [aux_sym_gssapi_authentication_token1] = ACTIONS(696), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(696), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(696), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(696), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(696), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(696), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(696), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(696), - [aux_sym_hash_known_hosts_token1] = ACTIONS(696), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(696), - [aux_sym_hostbased_authentication_token1] = ACTIONS(696), - [aux_sym_host_key_algorithms_token1] = ACTIONS(696), - [aux_sym_host_key_alias_token1] = ACTIONS(696), - [aux_sym_hostname_token1] = ACTIONS(696), - [aux_sym_identities_only_token1] = ACTIONS(696), - [aux_sym_identity_agent_token1] = ACTIONS(696), - [aux_sym_identity_file_token1] = ACTIONS(696), - [aux_sym_ignore_unknown_token1] = ACTIONS(696), - [aux_sym_include_token1] = ACTIONS(696), - [aux_sym_ip_qos_token1] = ACTIONS(696), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(696), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(696), - [aux_sym_kex_algorithms_token1] = ACTIONS(696), - [aux_sym_known_hosts_command_token1] = ACTIONS(696), - [aux_sym_local_command_token1] = ACTIONS(696), - [aux_sym_local_forward_token1] = ACTIONS(696), - [aux_sym_log_level_token1] = ACTIONS(696), - [aux_sym_log_verbose_token1] = ACTIONS(696), - [aux_sym_macs_token1] = ACTIONS(696), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(696), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(696), - [aux_sym_password_authentication_token1] = ACTIONS(696), - [aux_sym_permit_local_command_token1] = ACTIONS(696), - [aux_sym_permit_remote_open_token1] = ACTIONS(696), - [aux_sym_pkcs11_provider_token1] = ACTIONS(696), - [aux_sym_port_token1] = ACTIONS(696), - [aux_sym_preferred_authentications_token1] = ACTIONS(696), - [aux_sym_protocol_token1] = ACTIONS(696), - [aux_sym_proxy_command_token1] = ACTIONS(696), - [aux_sym_proxy_jump_token1] = ACTIONS(696), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(696), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(696), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(696), - [aux_sym_pubkey_authentication_token1] = ACTIONS(696), - [aux_sym_rekey_limit_token1] = ACTIONS(696), - [aux_sym_remote_command_token1] = ACTIONS(696), - [aux_sym_remote_forward_token1] = ACTIONS(696), - [aux_sym_request_tty_token1] = ACTIONS(696), - [aux_sym_required_rsa_size_token1] = ACTIONS(696), - [aux_sym_revoked_host_keys_token1] = ACTIONS(696), - [aux_sym_security_key_provider_token1] = ACTIONS(696), - [aux_sym_send_env_token1] = ACTIONS(696), - [aux_sym_server_alive_count_max_token1] = ACTIONS(696), - [aux_sym_server_alive_interval_token1] = ACTIONS(696), - [aux_sym_session_type_token1] = ACTIONS(696), - [aux_sym_set_env_token1] = ACTIONS(696), - [aux_sym_stdin_null_token1] = ACTIONS(696), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(696), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(696), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(696), - [aux_sym_syslog_facility_token1] = ACTIONS(696), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(696), - [aux_sym_keep_alive_token1] = ACTIONS(696), - [aux_sym_tag_token1] = ACTIONS(696), - [aux_sym_tunnel_token1] = ACTIONS(698), - [aux_sym_tunnel_device_token1] = ACTIONS(696), - [aux_sym_update_host_keys_token1] = ACTIONS(696), - [aux_sym_use_keychain_token1] = ACTIONS(696), - [aux_sym_use_roaming_token1] = ACTIONS(696), - [aux_sym_user_token1] = ACTIONS(698), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(696), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(696), - [aux_sym_visual_host_key_token1] = ACTIONS(696), - [aux_sym_xauth_location_token1] = ACTIONS(696), + [ts_builtin_sym_end] = ACTIONS(803), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(805), + [aux_sym_match_token1] = ACTIONS(803), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(803), + [aux_sym_address_family_token1] = ACTIONS(803), + [aux_sym_batch_mode_token1] = ACTIONS(803), + [aux_sym_bind_address_token1] = ACTIONS(803), + [aux_sym_bind_interface_token1] = ACTIONS(803), + [aux_sym_canonical_domains_token1] = ACTIONS(803), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(803), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(803), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(803), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(803), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(803), + [aux_sym_certificate_file_token1] = ACTIONS(803), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(803), + [aux_sym_channel_timeout_token1] = ACTIONS(803), + [aux_sym_check_host_ip_token1] = ACTIONS(803), + [aux_sym_ciphers_token1] = ACTIONS(803), + [aux_sym_cipher_token1] = ACTIONS(805), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(803), + [aux_sym_compression_token1] = ACTIONS(803), + [aux_sym_connection_attempts_token1] = ACTIONS(803), + [aux_sym_connect_timeout_token1] = ACTIONS(803), + [aux_sym_control_master_token1] = ACTIONS(803), + [aux_sym_control_path_token1] = ACTIONS(803), + [aux_sym_control_persist_token1] = ACTIONS(803), + [aux_sym_dynamic_forward_token1] = ACTIONS(803), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(803), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(803), + [aux_sym_escape_char_token1] = ACTIONS(803), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(803), + [aux_sym_fingerprint_hash_token1] = ACTIONS(803), + [aux_sym_fork_after_authentication_token1] = ACTIONS(803), + [aux_sym_forward_agent_token1] = ACTIONS(803), + [aux_sym_forward_x11_token1] = ACTIONS(805), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(803), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(803), + [aux_sym_gateway_ports_token1] = ACTIONS(803), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(803), + [aux_sym_gssapi_authentication_token1] = ACTIONS(803), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(803), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(803), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(803), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(803), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(803), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(803), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(803), + [aux_sym_hash_known_hosts_token1] = ACTIONS(803), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(803), + [aux_sym_hostbased_authentication_token1] = ACTIONS(803), + [aux_sym_host_key_algorithms_token1] = ACTIONS(803), + [aux_sym_host_key_alias_token1] = ACTIONS(803), + [aux_sym_hostname_token1] = ACTIONS(803), + [aux_sym_identities_only_token1] = ACTIONS(803), + [aux_sym_identity_agent_token1] = ACTIONS(803), + [aux_sym_identity_file_token1] = ACTIONS(803), + [aux_sym_ignore_unknown_token1] = ACTIONS(803), + [aux_sym_include_token1] = ACTIONS(803), + [aux_sym_ip_qos_token1] = ACTIONS(803), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(803), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(803), + [aux_sym_kex_algorithms_token1] = ACTIONS(803), + [aux_sym_known_hosts_command_token1] = ACTIONS(803), + [aux_sym_local_command_token1] = ACTIONS(803), + [aux_sym_local_forward_token1] = ACTIONS(803), + [aux_sym_log_level_token1] = ACTIONS(803), + [aux_sym_log_verbose_token1] = ACTIONS(803), + [aux_sym_macs_token1] = ACTIONS(803), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(803), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(803), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(803), + [aux_sym_password_authentication_token1] = ACTIONS(803), + [aux_sym_permit_local_command_token1] = ACTIONS(803), + [aux_sym_permit_remote_open_token1] = ACTIONS(803), + [aux_sym_pkcs11_provider_token1] = ACTIONS(803), + [aux_sym_port_token1] = ACTIONS(803), + [aux_sym_preferred_authentications_token1] = ACTIONS(803), + [aux_sym_protocol_token1] = ACTIONS(803), + [aux_sym_proxy_command_token1] = ACTIONS(803), + [aux_sym_proxy_jump_token1] = ACTIONS(803), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(803), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(803), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(803), + [aux_sym_pubkey_authentication_token1] = ACTIONS(803), + [aux_sym_rekey_limit_token1] = ACTIONS(803), + [aux_sym_remote_command_token1] = ACTIONS(803), + [aux_sym_remote_forward_token1] = ACTIONS(803), + [aux_sym_request_tty_token1] = ACTIONS(803), + [aux_sym_required_rsa_size_token1] = ACTIONS(803), + [aux_sym_revoked_host_keys_token1] = ACTIONS(803), + [aux_sym_security_key_provider_token1] = ACTIONS(803), + [aux_sym_send_env_token1] = ACTIONS(803), + [aux_sym_server_alive_count_max_token1] = ACTIONS(803), + [aux_sym_server_alive_interval_token1] = ACTIONS(803), + [aux_sym_session_type_token1] = ACTIONS(803), + [aux_sym_set_env_token1] = ACTIONS(803), + [aux_sym_stdin_null_token1] = ACTIONS(803), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(803), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(803), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(803), + [aux_sym_syslog_facility_token1] = ACTIONS(803), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(803), + [aux_sym_keep_alive_token1] = ACTIONS(803), + [aux_sym_tag_token1] = ACTIONS(803), + [aux_sym_tunnel_token1] = ACTIONS(805), + [aux_sym_tunnel_device_token1] = ACTIONS(803), + [aux_sym_update_host_keys_token1] = ACTIONS(803), + [aux_sym_use_keychain_token1] = ACTIONS(803), + [aux_sym_use_roaming_token1] = ACTIONS(803), + [aux_sym_user_token1] = ACTIONS(805), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(803), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(803), + [aux_sym_visual_host_key_token1] = ACTIONS(803), + [aux_sym_xauth_location_token1] = ACTIONS(803), }, [688] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(2770), - [aux_sym_match_token1] = ACTIONS(2768), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(2768), - [aux_sym_address_family_token1] = ACTIONS(2768), - [aux_sym_batch_mode_token1] = ACTIONS(2768), - [aux_sym_bind_address_token1] = ACTIONS(2768), - [aux_sym_bind_interface_token1] = ACTIONS(2768), - [aux_sym_canonical_domains_token1] = ACTIONS(2768), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(2768), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(2768), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(2768), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(2768), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(2768), - [aux_sym_certificate_file_token1] = ACTIONS(2768), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(2768), - [aux_sym_channel_timeout_token1] = ACTIONS(2768), - [aux_sym_check_host_ip_token1] = ACTIONS(2768), - [aux_sym_ciphers_token1] = ACTIONS(2768), - [aux_sym_cipher_token1] = ACTIONS(2770), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(2768), - [aux_sym_compression_token1] = ACTIONS(2768), - [aux_sym_connection_attempts_token1] = ACTIONS(2768), - [aux_sym_connect_timeout_token1] = ACTIONS(2768), - [aux_sym_control_master_token1] = ACTIONS(2768), - [aux_sym_control_path_token1] = ACTIONS(2768), - [aux_sym_control_persist_token1] = ACTIONS(2768), - [aux_sym_dynamic_forward_token1] = ACTIONS(2768), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(2768), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(2768), - [aux_sym_escape_char_token1] = ACTIONS(2768), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(2768), - [aux_sym_fingerprint_hash_token1] = ACTIONS(2768), - [aux_sym_fork_after_authentication_token1] = ACTIONS(2768), - [aux_sym_forward_agent_token1] = ACTIONS(2768), - [aux_sym_forward_x11_token1] = ACTIONS(2770), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(2768), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(2768), - [aux_sym_gateway_ports_token1] = ACTIONS(2768), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(2768), - [aux_sym_gssapi_authentication_token1] = ACTIONS(2768), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(2768), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(2768), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(2768), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(2768), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(2768), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(2768), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(2768), - [aux_sym_hash_known_hosts_token1] = ACTIONS(2768), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(2768), - [aux_sym_hostbased_authentication_token1] = ACTIONS(2768), - [aux_sym_host_key_algorithms_token1] = ACTIONS(2768), - [aux_sym_host_key_alias_token1] = ACTIONS(2768), - [aux_sym_hostname_token1] = ACTIONS(2768), - [aux_sym_identities_only_token1] = ACTIONS(2768), - [aux_sym_identity_agent_token1] = ACTIONS(2768), - [aux_sym_identity_file_token1] = ACTIONS(2768), - [aux_sym_ignore_unknown_token1] = ACTIONS(2768), - [aux_sym_include_token1] = ACTIONS(2768), - [aux_sym_ip_qos_token1] = ACTIONS(2768), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(2768), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(2768), - [aux_sym_kex_algorithms_token1] = ACTIONS(2768), - [aux_sym_known_hosts_command_token1] = ACTIONS(2768), - [aux_sym_local_command_token1] = ACTIONS(2768), - [aux_sym_local_forward_token1] = ACTIONS(2768), - [aux_sym_log_level_token1] = ACTIONS(2768), - [aux_sym_log_verbose_token1] = ACTIONS(2768), - [aux_sym_macs_token1] = ACTIONS(2768), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(2768), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(2768), - [aux_sym_password_authentication_token1] = ACTIONS(2768), - [aux_sym_permit_local_command_token1] = ACTIONS(2768), - [aux_sym_permit_remote_open_token1] = ACTIONS(2768), - [aux_sym_pkcs11_provider_token1] = ACTIONS(2768), - [aux_sym_port_token1] = ACTIONS(2768), - [aux_sym_preferred_authentications_token1] = ACTIONS(2768), - [aux_sym_protocol_token1] = ACTIONS(2768), - [aux_sym_proxy_command_token1] = ACTIONS(2768), - [aux_sym_proxy_jump_token1] = ACTIONS(2768), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(2768), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(2768), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(2768), - [aux_sym_pubkey_authentication_token1] = ACTIONS(2768), - [aux_sym_rekey_limit_token1] = ACTIONS(2768), - [aux_sym_remote_command_token1] = ACTIONS(2768), - [aux_sym_remote_forward_token1] = ACTIONS(2768), - [aux_sym_request_tty_token1] = ACTIONS(2768), - [aux_sym_required_rsa_size_token1] = ACTIONS(2768), - [aux_sym_revoked_host_keys_token1] = ACTIONS(2768), - [aux_sym_security_key_provider_token1] = ACTIONS(2768), - [aux_sym_send_env_token1] = ACTIONS(2768), - [aux_sym_server_alive_count_max_token1] = ACTIONS(2768), - [aux_sym_server_alive_interval_token1] = ACTIONS(2768), - [aux_sym_session_type_token1] = ACTIONS(2768), - [aux_sym_set_env_token1] = ACTIONS(2768), - [aux_sym_stdin_null_token1] = ACTIONS(2768), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(2768), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(2768), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(2768), - [aux_sym_syslog_facility_token1] = ACTIONS(2768), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(2768), - [aux_sym_keep_alive_token1] = ACTIONS(2768), - [aux_sym_tag_token1] = ACTIONS(2768), - [aux_sym_tunnel_token1] = ACTIONS(2770), - [aux_sym_tunnel_device_token1] = ACTIONS(2768), - [aux_sym_update_host_keys_token1] = ACTIONS(2768), - [aux_sym_use_keychain_token1] = ACTIONS(2768), - [aux_sym_use_roaming_token1] = ACTIONS(2768), - [aux_sym_user_token1] = ACTIONS(2770), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(2768), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(2768), - [aux_sym_visual_host_key_token1] = ACTIONS(2768), - [aux_sym_xauth_location_token1] = ACTIONS(2768), + [ts_builtin_sym_end] = ACTIONS(983), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(985), + [aux_sym_match_token1] = ACTIONS(983), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(983), + [aux_sym_address_family_token1] = ACTIONS(983), + [aux_sym_batch_mode_token1] = ACTIONS(983), + [aux_sym_bind_address_token1] = ACTIONS(983), + [aux_sym_bind_interface_token1] = ACTIONS(983), + [aux_sym_canonical_domains_token1] = ACTIONS(983), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(983), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(983), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(983), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(983), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(983), + [aux_sym_certificate_file_token1] = ACTIONS(983), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(983), + [aux_sym_channel_timeout_token1] = ACTIONS(983), + [aux_sym_check_host_ip_token1] = ACTIONS(983), + [aux_sym_ciphers_token1] = ACTIONS(983), + [aux_sym_cipher_token1] = ACTIONS(985), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(983), + [aux_sym_compression_token1] = ACTIONS(983), + [aux_sym_connection_attempts_token1] = ACTIONS(983), + [aux_sym_connect_timeout_token1] = ACTIONS(983), + [aux_sym_control_master_token1] = ACTIONS(983), + [aux_sym_control_path_token1] = ACTIONS(983), + [aux_sym_control_persist_token1] = ACTIONS(983), + [aux_sym_dynamic_forward_token1] = ACTIONS(983), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(983), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(983), + [aux_sym_escape_char_token1] = ACTIONS(983), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(983), + [aux_sym_fingerprint_hash_token1] = ACTIONS(983), + [aux_sym_fork_after_authentication_token1] = ACTIONS(983), + [aux_sym_forward_agent_token1] = ACTIONS(983), + [aux_sym_forward_x11_token1] = ACTIONS(985), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(983), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(983), + [aux_sym_gateway_ports_token1] = ACTIONS(983), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(983), + [aux_sym_gssapi_authentication_token1] = ACTIONS(983), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(983), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(983), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(983), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(983), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(983), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(983), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(983), + [aux_sym_hash_known_hosts_token1] = ACTIONS(983), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(983), + [aux_sym_hostbased_authentication_token1] = ACTIONS(983), + [aux_sym_host_key_algorithms_token1] = ACTIONS(983), + [aux_sym_host_key_alias_token1] = ACTIONS(983), + [aux_sym_hostname_token1] = ACTIONS(983), + [aux_sym_identities_only_token1] = ACTIONS(983), + [aux_sym_identity_agent_token1] = ACTIONS(983), + [aux_sym_identity_file_token1] = ACTIONS(983), + [aux_sym_ignore_unknown_token1] = ACTIONS(983), + [aux_sym_include_token1] = ACTIONS(983), + [aux_sym_ip_qos_token1] = ACTIONS(983), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(983), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(983), + [aux_sym_kex_algorithms_token1] = ACTIONS(983), + [aux_sym_known_hosts_command_token1] = ACTIONS(983), + [aux_sym_local_command_token1] = ACTIONS(983), + [aux_sym_local_forward_token1] = ACTIONS(983), + [aux_sym_log_level_token1] = ACTIONS(983), + [aux_sym_log_verbose_token1] = ACTIONS(983), + [aux_sym_macs_token1] = ACTIONS(983), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(983), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(983), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(983), + [aux_sym_password_authentication_token1] = ACTIONS(983), + [aux_sym_permit_local_command_token1] = ACTIONS(983), + [aux_sym_permit_remote_open_token1] = ACTIONS(983), + [aux_sym_pkcs11_provider_token1] = ACTIONS(983), + [aux_sym_port_token1] = ACTIONS(983), + [aux_sym_preferred_authentications_token1] = ACTIONS(983), + [aux_sym_protocol_token1] = ACTIONS(983), + [aux_sym_proxy_command_token1] = ACTIONS(983), + [aux_sym_proxy_jump_token1] = ACTIONS(983), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(983), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(983), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(983), + [aux_sym_pubkey_authentication_token1] = ACTIONS(983), + [aux_sym_rekey_limit_token1] = ACTIONS(983), + [aux_sym_remote_command_token1] = ACTIONS(983), + [aux_sym_remote_forward_token1] = ACTIONS(983), + [aux_sym_request_tty_token1] = ACTIONS(983), + [aux_sym_required_rsa_size_token1] = ACTIONS(983), + [aux_sym_revoked_host_keys_token1] = ACTIONS(983), + [aux_sym_security_key_provider_token1] = ACTIONS(983), + [aux_sym_send_env_token1] = ACTIONS(983), + [aux_sym_server_alive_count_max_token1] = ACTIONS(983), + [aux_sym_server_alive_interval_token1] = ACTIONS(983), + [aux_sym_session_type_token1] = ACTIONS(983), + [aux_sym_set_env_token1] = ACTIONS(983), + [aux_sym_stdin_null_token1] = ACTIONS(983), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(983), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(983), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(983), + [aux_sym_syslog_facility_token1] = ACTIONS(983), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(983), + [aux_sym_keep_alive_token1] = ACTIONS(983), + [aux_sym_tag_token1] = ACTIONS(983), + [aux_sym_tunnel_token1] = ACTIONS(985), + [aux_sym_tunnel_device_token1] = ACTIONS(983), + [aux_sym_update_host_keys_token1] = ACTIONS(983), + [aux_sym_use_keychain_token1] = ACTIONS(983), + [aux_sym_use_roaming_token1] = ACTIONS(983), + [aux_sym_user_token1] = ACTIONS(985), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(983), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(983), + [aux_sym_visual_host_key_token1] = ACTIONS(983), + [aux_sym_xauth_location_token1] = ACTIONS(983), }, [689] = { - [ts_builtin_sym_end] = ACTIONS(702), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(704), - [aux_sym_match_token1] = ACTIONS(702), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(702), - [aux_sym_address_family_token1] = ACTIONS(702), - [aux_sym_batch_mode_token1] = ACTIONS(702), - [aux_sym_bind_address_token1] = ACTIONS(702), - [aux_sym_bind_interface_token1] = ACTIONS(702), - [aux_sym_canonical_domains_token1] = ACTIONS(702), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(702), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(702), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(702), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(702), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(702), - [aux_sym_certificate_file_token1] = ACTIONS(702), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(702), - [aux_sym_channel_timeout_token1] = ACTIONS(702), - [aux_sym_check_host_ip_token1] = ACTIONS(702), - [aux_sym_ciphers_token1] = ACTIONS(702), - [aux_sym_cipher_token1] = ACTIONS(704), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(702), - [aux_sym_compression_token1] = ACTIONS(702), - [aux_sym_connection_attempts_token1] = ACTIONS(702), - [aux_sym_connect_timeout_token1] = ACTIONS(702), - [aux_sym_control_master_token1] = ACTIONS(702), - [aux_sym_control_path_token1] = ACTIONS(702), - [aux_sym_control_persist_token1] = ACTIONS(702), - [aux_sym_dynamic_forward_token1] = ACTIONS(702), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(702), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(702), - [aux_sym_escape_char_token1] = ACTIONS(702), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(702), - [aux_sym_fingerprint_hash_token1] = ACTIONS(702), - [aux_sym_fork_after_authentication_token1] = ACTIONS(702), - [aux_sym_forward_agent_token1] = ACTIONS(702), - [aux_sym_forward_x11_token1] = ACTIONS(704), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(702), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(702), - [aux_sym_gateway_ports_token1] = ACTIONS(702), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(702), - [aux_sym_gssapi_authentication_token1] = ACTIONS(702), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(702), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(702), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(702), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(702), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(702), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(702), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(702), - [aux_sym_hash_known_hosts_token1] = ACTIONS(702), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(702), - [aux_sym_hostbased_authentication_token1] = ACTIONS(702), - [aux_sym_host_key_algorithms_token1] = ACTIONS(702), - [aux_sym_host_key_alias_token1] = ACTIONS(702), - [aux_sym_hostname_token1] = ACTIONS(702), - [aux_sym_identities_only_token1] = ACTIONS(702), - [aux_sym_identity_agent_token1] = ACTIONS(702), - [aux_sym_identity_file_token1] = ACTIONS(702), - [aux_sym_ignore_unknown_token1] = ACTIONS(702), - [aux_sym_include_token1] = ACTIONS(702), - [aux_sym_ip_qos_token1] = ACTIONS(702), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(702), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(702), - [aux_sym_kex_algorithms_token1] = ACTIONS(702), - [aux_sym_known_hosts_command_token1] = ACTIONS(702), - [aux_sym_local_command_token1] = ACTIONS(702), - [aux_sym_local_forward_token1] = ACTIONS(702), - [aux_sym_log_level_token1] = ACTIONS(702), - [aux_sym_log_verbose_token1] = ACTIONS(702), - [aux_sym_macs_token1] = ACTIONS(702), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(702), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(702), - [aux_sym_password_authentication_token1] = ACTIONS(702), - [aux_sym_permit_local_command_token1] = ACTIONS(702), - [aux_sym_permit_remote_open_token1] = ACTIONS(702), - [aux_sym_pkcs11_provider_token1] = ACTIONS(702), - [aux_sym_port_token1] = ACTIONS(702), - [aux_sym_preferred_authentications_token1] = ACTIONS(702), - [aux_sym_protocol_token1] = ACTIONS(702), - [aux_sym_proxy_command_token1] = ACTIONS(702), - [aux_sym_proxy_jump_token1] = ACTIONS(702), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(702), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(702), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(702), - [aux_sym_pubkey_authentication_token1] = ACTIONS(702), - [aux_sym_rekey_limit_token1] = ACTIONS(702), - [aux_sym_remote_command_token1] = ACTIONS(702), - [aux_sym_remote_forward_token1] = ACTIONS(702), - [aux_sym_request_tty_token1] = ACTIONS(702), - [aux_sym_required_rsa_size_token1] = ACTIONS(702), - [aux_sym_revoked_host_keys_token1] = ACTIONS(702), - [aux_sym_security_key_provider_token1] = ACTIONS(702), - [aux_sym_send_env_token1] = ACTIONS(702), - [aux_sym_server_alive_count_max_token1] = ACTIONS(702), - [aux_sym_server_alive_interval_token1] = ACTIONS(702), - [aux_sym_session_type_token1] = ACTIONS(702), - [aux_sym_set_env_token1] = ACTIONS(702), - [aux_sym_stdin_null_token1] = ACTIONS(702), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(702), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(702), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(702), - [aux_sym_syslog_facility_token1] = ACTIONS(702), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(702), - [aux_sym_keep_alive_token1] = ACTIONS(702), - [aux_sym_tag_token1] = ACTIONS(702), - [aux_sym_tunnel_token1] = ACTIONS(704), - [aux_sym_tunnel_device_token1] = ACTIONS(702), - [aux_sym_update_host_keys_token1] = ACTIONS(702), - [aux_sym_use_keychain_token1] = ACTIONS(702), - [aux_sym_use_roaming_token1] = ACTIONS(702), - [aux_sym_user_token1] = ACTIONS(704), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(702), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(702), - [aux_sym_visual_host_key_token1] = ACTIONS(702), - [aux_sym_xauth_location_token1] = ACTIONS(702), + [ts_builtin_sym_end] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(643), + [aux_sym_match_token1] = ACTIONS(641), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(641), + [aux_sym_address_family_token1] = ACTIONS(641), + [aux_sym_batch_mode_token1] = ACTIONS(641), + [aux_sym_bind_address_token1] = ACTIONS(641), + [aux_sym_bind_interface_token1] = ACTIONS(641), + [aux_sym_canonical_domains_token1] = ACTIONS(641), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(641), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(641), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(641), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(641), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(641), + [aux_sym_certificate_file_token1] = ACTIONS(641), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(641), + [aux_sym_channel_timeout_token1] = ACTIONS(641), + [aux_sym_check_host_ip_token1] = ACTIONS(641), + [aux_sym_ciphers_token1] = ACTIONS(641), + [aux_sym_cipher_token1] = ACTIONS(643), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(641), + [aux_sym_compression_token1] = ACTIONS(641), + [aux_sym_connection_attempts_token1] = ACTIONS(641), + [aux_sym_connect_timeout_token1] = ACTIONS(641), + [aux_sym_control_master_token1] = ACTIONS(641), + [aux_sym_control_path_token1] = ACTIONS(641), + [aux_sym_control_persist_token1] = ACTIONS(641), + [aux_sym_dynamic_forward_token1] = ACTIONS(641), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(641), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(641), + [aux_sym_escape_char_token1] = ACTIONS(641), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(641), + [aux_sym_fingerprint_hash_token1] = ACTIONS(641), + [aux_sym_fork_after_authentication_token1] = ACTIONS(641), + [aux_sym_forward_agent_token1] = ACTIONS(641), + [aux_sym_forward_x11_token1] = ACTIONS(643), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(641), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(641), + [aux_sym_gateway_ports_token1] = ACTIONS(641), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(641), + [aux_sym_gssapi_authentication_token1] = ACTIONS(641), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(641), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(641), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(641), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(641), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(641), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(641), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(641), + [aux_sym_hash_known_hosts_token1] = ACTIONS(641), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(641), + [aux_sym_hostbased_authentication_token1] = ACTIONS(641), + [aux_sym_host_key_algorithms_token1] = ACTIONS(641), + [aux_sym_host_key_alias_token1] = ACTIONS(641), + [aux_sym_hostname_token1] = ACTIONS(641), + [aux_sym_identities_only_token1] = ACTIONS(641), + [aux_sym_identity_agent_token1] = ACTIONS(641), + [aux_sym_identity_file_token1] = ACTIONS(641), + [aux_sym_ignore_unknown_token1] = ACTIONS(641), + [aux_sym_include_token1] = ACTIONS(641), + [aux_sym_ip_qos_token1] = ACTIONS(641), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(641), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(641), + [aux_sym_kex_algorithms_token1] = ACTIONS(641), + [aux_sym_known_hosts_command_token1] = ACTIONS(641), + [aux_sym_local_command_token1] = ACTIONS(641), + [aux_sym_local_forward_token1] = ACTIONS(641), + [aux_sym_log_level_token1] = ACTIONS(641), + [aux_sym_log_verbose_token1] = ACTIONS(641), + [aux_sym_macs_token1] = ACTIONS(641), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(641), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(641), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(641), + [aux_sym_password_authentication_token1] = ACTIONS(641), + [aux_sym_permit_local_command_token1] = ACTIONS(641), + [aux_sym_permit_remote_open_token1] = ACTIONS(641), + [aux_sym_pkcs11_provider_token1] = ACTIONS(641), + [aux_sym_port_token1] = ACTIONS(641), + [aux_sym_preferred_authentications_token1] = ACTIONS(641), + [aux_sym_protocol_token1] = ACTIONS(641), + [aux_sym_proxy_command_token1] = ACTIONS(641), + [aux_sym_proxy_jump_token1] = ACTIONS(641), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(641), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(641), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(641), + [aux_sym_pubkey_authentication_token1] = ACTIONS(641), + [aux_sym_rekey_limit_token1] = ACTIONS(641), + [aux_sym_remote_command_token1] = ACTIONS(641), + [aux_sym_remote_forward_token1] = ACTIONS(641), + [aux_sym_request_tty_token1] = ACTIONS(641), + [aux_sym_required_rsa_size_token1] = ACTIONS(641), + [aux_sym_revoked_host_keys_token1] = ACTIONS(641), + [aux_sym_security_key_provider_token1] = ACTIONS(641), + [aux_sym_send_env_token1] = ACTIONS(641), + [aux_sym_server_alive_count_max_token1] = ACTIONS(641), + [aux_sym_server_alive_interval_token1] = ACTIONS(641), + [aux_sym_session_type_token1] = ACTIONS(641), + [aux_sym_set_env_token1] = ACTIONS(641), + [aux_sym_stdin_null_token1] = ACTIONS(641), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(641), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(641), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(641), + [aux_sym_syslog_facility_token1] = ACTIONS(641), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(641), + [aux_sym_keep_alive_token1] = ACTIONS(641), + [aux_sym_tag_token1] = ACTIONS(641), + [aux_sym_tunnel_token1] = ACTIONS(643), + [aux_sym_tunnel_device_token1] = ACTIONS(641), + [aux_sym_update_host_keys_token1] = ACTIONS(641), + [aux_sym_use_keychain_token1] = ACTIONS(641), + [aux_sym_use_roaming_token1] = ACTIONS(641), + [aux_sym_user_token1] = ACTIONS(643), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(641), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(641), + [aux_sym_visual_host_key_token1] = ACTIONS(641), + [aux_sym_xauth_location_token1] = ACTIONS(641), }, [690] = { - [ts_builtin_sym_end] = ACTIONS(708), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(710), - [aux_sym_match_token1] = ACTIONS(708), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(708), - [aux_sym_address_family_token1] = ACTIONS(708), - [aux_sym_batch_mode_token1] = ACTIONS(708), - [aux_sym_bind_address_token1] = ACTIONS(708), - [aux_sym_bind_interface_token1] = ACTIONS(708), - [aux_sym_canonical_domains_token1] = ACTIONS(708), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(708), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(708), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(708), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(708), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(708), - [aux_sym_certificate_file_token1] = ACTIONS(708), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(708), - [aux_sym_channel_timeout_token1] = ACTIONS(708), - [aux_sym_check_host_ip_token1] = ACTIONS(708), - [aux_sym_ciphers_token1] = ACTIONS(708), - [aux_sym_cipher_token1] = ACTIONS(710), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(708), - [aux_sym_compression_token1] = ACTIONS(708), - [aux_sym_connection_attempts_token1] = ACTIONS(708), - [aux_sym_connect_timeout_token1] = ACTIONS(708), - [aux_sym_control_master_token1] = ACTIONS(708), - [aux_sym_control_path_token1] = ACTIONS(708), - [aux_sym_control_persist_token1] = ACTIONS(708), - [aux_sym_dynamic_forward_token1] = ACTIONS(708), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(708), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(708), - [aux_sym_escape_char_token1] = ACTIONS(708), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(708), - [aux_sym_fingerprint_hash_token1] = ACTIONS(708), - [aux_sym_fork_after_authentication_token1] = ACTIONS(708), - [aux_sym_forward_agent_token1] = ACTIONS(708), - [aux_sym_forward_x11_token1] = ACTIONS(710), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(708), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(708), - [aux_sym_gateway_ports_token1] = ACTIONS(708), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(708), - [aux_sym_gssapi_authentication_token1] = ACTIONS(708), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(708), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(708), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(708), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(708), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(708), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(708), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(708), - [aux_sym_hash_known_hosts_token1] = ACTIONS(708), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(708), - [aux_sym_hostbased_authentication_token1] = ACTIONS(708), - [aux_sym_host_key_algorithms_token1] = ACTIONS(708), - [aux_sym_host_key_alias_token1] = ACTIONS(708), - [aux_sym_hostname_token1] = ACTIONS(708), - [aux_sym_identities_only_token1] = ACTIONS(708), - [aux_sym_identity_agent_token1] = ACTIONS(708), - [aux_sym_identity_file_token1] = ACTIONS(708), - [aux_sym_ignore_unknown_token1] = ACTIONS(708), - [aux_sym_include_token1] = ACTIONS(708), - [aux_sym_ip_qos_token1] = ACTIONS(708), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(708), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(708), - [aux_sym_kex_algorithms_token1] = ACTIONS(708), - [aux_sym_known_hosts_command_token1] = ACTIONS(708), - [aux_sym_local_command_token1] = ACTIONS(708), - [aux_sym_local_forward_token1] = ACTIONS(708), - [aux_sym_log_level_token1] = ACTIONS(708), - [aux_sym_log_verbose_token1] = ACTIONS(708), - [aux_sym_macs_token1] = ACTIONS(708), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(708), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(708), - [aux_sym_password_authentication_token1] = ACTIONS(708), - [aux_sym_permit_local_command_token1] = ACTIONS(708), - [aux_sym_permit_remote_open_token1] = ACTIONS(708), - [aux_sym_pkcs11_provider_token1] = ACTIONS(708), - [aux_sym_port_token1] = ACTIONS(708), - [aux_sym_preferred_authentications_token1] = ACTIONS(708), - [aux_sym_protocol_token1] = ACTIONS(708), - [aux_sym_proxy_command_token1] = ACTIONS(708), - [aux_sym_proxy_jump_token1] = ACTIONS(708), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(708), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(708), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(708), - [aux_sym_pubkey_authentication_token1] = ACTIONS(708), - [aux_sym_rekey_limit_token1] = ACTIONS(708), - [aux_sym_remote_command_token1] = ACTIONS(708), - [aux_sym_remote_forward_token1] = ACTIONS(708), - [aux_sym_request_tty_token1] = ACTIONS(708), - [aux_sym_required_rsa_size_token1] = ACTIONS(708), - [aux_sym_revoked_host_keys_token1] = ACTIONS(708), - [aux_sym_security_key_provider_token1] = ACTIONS(708), - [aux_sym_send_env_token1] = ACTIONS(708), - [aux_sym_server_alive_count_max_token1] = ACTIONS(708), - [aux_sym_server_alive_interval_token1] = ACTIONS(708), - [aux_sym_session_type_token1] = ACTIONS(708), - [aux_sym_set_env_token1] = ACTIONS(708), - [aux_sym_stdin_null_token1] = ACTIONS(708), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(708), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(708), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(708), - [aux_sym_syslog_facility_token1] = ACTIONS(708), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(708), - [aux_sym_keep_alive_token1] = ACTIONS(708), - [aux_sym_tag_token1] = ACTIONS(708), - [aux_sym_tunnel_token1] = ACTIONS(710), - [aux_sym_tunnel_device_token1] = ACTIONS(708), - [aux_sym_update_host_keys_token1] = ACTIONS(708), - [aux_sym_use_keychain_token1] = ACTIONS(708), - [aux_sym_use_roaming_token1] = ACTIONS(708), - [aux_sym_user_token1] = ACTIONS(710), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(708), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(708), - [aux_sym_visual_host_key_token1] = ACTIONS(708), - [aux_sym_xauth_location_token1] = ACTIONS(708), + [ts_builtin_sym_end] = ACTIONS(647), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(649), + [aux_sym_match_token1] = ACTIONS(647), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(647), + [aux_sym_address_family_token1] = ACTIONS(647), + [aux_sym_batch_mode_token1] = ACTIONS(647), + [aux_sym_bind_address_token1] = ACTIONS(647), + [aux_sym_bind_interface_token1] = ACTIONS(647), + [aux_sym_canonical_domains_token1] = ACTIONS(647), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(647), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(647), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(647), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(647), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(647), + [aux_sym_certificate_file_token1] = ACTIONS(647), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(647), + [aux_sym_channel_timeout_token1] = ACTIONS(647), + [aux_sym_check_host_ip_token1] = ACTIONS(647), + [aux_sym_ciphers_token1] = ACTIONS(647), + [aux_sym_cipher_token1] = ACTIONS(649), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(647), + [aux_sym_compression_token1] = ACTIONS(647), + [aux_sym_connection_attempts_token1] = ACTIONS(647), + [aux_sym_connect_timeout_token1] = ACTIONS(647), + [aux_sym_control_master_token1] = ACTIONS(647), + [aux_sym_control_path_token1] = ACTIONS(647), + [aux_sym_control_persist_token1] = ACTIONS(647), + [aux_sym_dynamic_forward_token1] = ACTIONS(647), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(647), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(647), + [aux_sym_escape_char_token1] = ACTIONS(647), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(647), + [aux_sym_fingerprint_hash_token1] = ACTIONS(647), + [aux_sym_fork_after_authentication_token1] = ACTIONS(647), + [aux_sym_forward_agent_token1] = ACTIONS(647), + [aux_sym_forward_x11_token1] = ACTIONS(649), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(647), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(647), + [aux_sym_gateway_ports_token1] = ACTIONS(647), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(647), + [aux_sym_gssapi_authentication_token1] = ACTIONS(647), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(647), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(647), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(647), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(647), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(647), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(647), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(647), + [aux_sym_hash_known_hosts_token1] = ACTIONS(647), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(647), + [aux_sym_hostbased_authentication_token1] = ACTIONS(647), + [aux_sym_host_key_algorithms_token1] = ACTIONS(647), + [aux_sym_host_key_alias_token1] = ACTIONS(647), + [aux_sym_hostname_token1] = ACTIONS(647), + [aux_sym_identities_only_token1] = ACTIONS(647), + [aux_sym_identity_agent_token1] = ACTIONS(647), + [aux_sym_identity_file_token1] = ACTIONS(647), + [aux_sym_ignore_unknown_token1] = ACTIONS(647), + [aux_sym_include_token1] = ACTIONS(647), + [aux_sym_ip_qos_token1] = ACTIONS(647), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(647), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(647), + [aux_sym_kex_algorithms_token1] = ACTIONS(647), + [aux_sym_known_hosts_command_token1] = ACTIONS(647), + [aux_sym_local_command_token1] = ACTIONS(647), + [aux_sym_local_forward_token1] = ACTIONS(647), + [aux_sym_log_level_token1] = ACTIONS(647), + [aux_sym_log_verbose_token1] = ACTIONS(647), + [aux_sym_macs_token1] = ACTIONS(647), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(647), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(647), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(647), + [aux_sym_password_authentication_token1] = ACTIONS(647), + [aux_sym_permit_local_command_token1] = ACTIONS(647), + [aux_sym_permit_remote_open_token1] = ACTIONS(647), + [aux_sym_pkcs11_provider_token1] = ACTIONS(647), + [aux_sym_port_token1] = ACTIONS(647), + [aux_sym_preferred_authentications_token1] = ACTIONS(647), + [aux_sym_protocol_token1] = ACTIONS(647), + [aux_sym_proxy_command_token1] = ACTIONS(647), + [aux_sym_proxy_jump_token1] = ACTIONS(647), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(647), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(647), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(647), + [aux_sym_pubkey_authentication_token1] = ACTIONS(647), + [aux_sym_rekey_limit_token1] = ACTIONS(647), + [aux_sym_remote_command_token1] = ACTIONS(647), + [aux_sym_remote_forward_token1] = ACTIONS(647), + [aux_sym_request_tty_token1] = ACTIONS(647), + [aux_sym_required_rsa_size_token1] = ACTIONS(647), + [aux_sym_revoked_host_keys_token1] = ACTIONS(647), + [aux_sym_security_key_provider_token1] = ACTIONS(647), + [aux_sym_send_env_token1] = ACTIONS(647), + [aux_sym_server_alive_count_max_token1] = ACTIONS(647), + [aux_sym_server_alive_interval_token1] = ACTIONS(647), + [aux_sym_session_type_token1] = ACTIONS(647), + [aux_sym_set_env_token1] = ACTIONS(647), + [aux_sym_stdin_null_token1] = ACTIONS(647), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(647), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(647), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(647), + [aux_sym_syslog_facility_token1] = ACTIONS(647), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(647), + [aux_sym_keep_alive_token1] = ACTIONS(647), + [aux_sym_tag_token1] = ACTIONS(647), + [aux_sym_tunnel_token1] = ACTIONS(649), + [aux_sym_tunnel_device_token1] = ACTIONS(647), + [aux_sym_update_host_keys_token1] = ACTIONS(647), + [aux_sym_use_keychain_token1] = ACTIONS(647), + [aux_sym_use_roaming_token1] = ACTIONS(647), + [aux_sym_user_token1] = ACTIONS(649), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(647), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(647), + [aux_sym_visual_host_key_token1] = ACTIONS(647), + [aux_sym_xauth_location_token1] = ACTIONS(647), }, [691] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1948), - [aux_sym_match_token1] = ACTIONS(1946), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1946), - [aux_sym_address_family_token1] = ACTIONS(1946), - [aux_sym_batch_mode_token1] = ACTIONS(1946), - [aux_sym_bind_address_token1] = ACTIONS(1946), - [aux_sym_bind_interface_token1] = ACTIONS(1946), - [aux_sym_canonical_domains_token1] = ACTIONS(1946), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1946), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1946), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1946), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1946), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1946), - [aux_sym_certificate_file_token1] = ACTIONS(1946), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1946), - [aux_sym_channel_timeout_token1] = ACTIONS(1946), - [aux_sym_check_host_ip_token1] = ACTIONS(1946), - [aux_sym_ciphers_token1] = ACTIONS(1946), - [aux_sym_cipher_token1] = ACTIONS(1948), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1946), - [aux_sym_compression_token1] = ACTIONS(1946), - [aux_sym_connection_attempts_token1] = ACTIONS(1946), - [aux_sym_connect_timeout_token1] = ACTIONS(1946), - [aux_sym_control_master_token1] = ACTIONS(1946), - [aux_sym_control_path_token1] = ACTIONS(1946), - [aux_sym_control_persist_token1] = ACTIONS(1946), - [aux_sym_dynamic_forward_token1] = ACTIONS(1946), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1946), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1946), - [aux_sym_escape_char_token1] = ACTIONS(1946), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1946), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1946), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1946), - [aux_sym_forward_agent_token1] = ACTIONS(1946), - [aux_sym_forward_x11_token1] = ACTIONS(1948), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1946), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1946), - [aux_sym_gateway_ports_token1] = ACTIONS(1946), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1946), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1946), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1946), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1946), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1946), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1946), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1946), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1946), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1946), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1946), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1946), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1946), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1946), - [aux_sym_host_key_alias_token1] = ACTIONS(1946), - [aux_sym_hostname_token1] = ACTIONS(1946), - [aux_sym_identities_only_token1] = ACTIONS(1946), - [aux_sym_identity_agent_token1] = ACTIONS(1946), - [aux_sym_identity_file_token1] = ACTIONS(1946), - [aux_sym_ignore_unknown_token1] = ACTIONS(1946), - [aux_sym_include_token1] = ACTIONS(1946), - [aux_sym_ip_qos_token1] = ACTIONS(1946), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1946), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1946), - [aux_sym_kex_algorithms_token1] = ACTIONS(1946), - [aux_sym_known_hosts_command_token1] = ACTIONS(1946), - [aux_sym_local_command_token1] = ACTIONS(1946), - [aux_sym_local_forward_token1] = ACTIONS(1946), - [aux_sym_log_level_token1] = ACTIONS(1946), - [aux_sym_log_verbose_token1] = ACTIONS(1946), - [aux_sym_macs_token1] = ACTIONS(1946), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1946), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1946), - [aux_sym_password_authentication_token1] = ACTIONS(1946), - [aux_sym_permit_local_command_token1] = ACTIONS(1946), - [aux_sym_permit_remote_open_token1] = ACTIONS(1946), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1946), - [aux_sym_port_token1] = ACTIONS(1946), - [aux_sym_preferred_authentications_token1] = ACTIONS(1946), - [aux_sym_protocol_token1] = ACTIONS(1946), - [aux_sym_proxy_command_token1] = ACTIONS(1946), - [aux_sym_proxy_jump_token1] = ACTIONS(1946), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1946), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1946), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1946), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1946), - [aux_sym_rekey_limit_token1] = ACTIONS(1946), - [aux_sym_remote_command_token1] = ACTIONS(1946), - [aux_sym_remote_forward_token1] = ACTIONS(1946), - [aux_sym_request_tty_token1] = ACTIONS(1946), - [aux_sym_required_rsa_size_token1] = ACTIONS(1946), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1946), - [aux_sym_security_key_provider_token1] = ACTIONS(1946), - [aux_sym_send_env_token1] = ACTIONS(1946), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1946), - [aux_sym_server_alive_interval_token1] = ACTIONS(1946), - [aux_sym_session_type_token1] = ACTIONS(1946), - [aux_sym_set_env_token1] = ACTIONS(1946), - [aux_sym_stdin_null_token1] = ACTIONS(1946), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1946), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1946), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1946), - [aux_sym_syslog_facility_token1] = ACTIONS(1946), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1946), - [aux_sym_keep_alive_token1] = ACTIONS(1946), - [aux_sym_tag_token1] = ACTIONS(1946), - [aux_sym_tunnel_token1] = ACTIONS(1948), - [aux_sym_tunnel_device_token1] = ACTIONS(1946), - [aux_sym_update_host_keys_token1] = ACTIONS(1946), - [aux_sym_use_keychain_token1] = ACTIONS(1946), - [aux_sym_use_roaming_token1] = ACTIONS(1946), - [aux_sym_user_token1] = ACTIONS(1948), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1946), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1946), - [aux_sym_visual_host_key_token1] = ACTIONS(1946), - [aux_sym_xauth_location_token1] = ACTIONS(1946), + [ts_builtin_sym_end] = ACTIONS(1421), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1423), + [aux_sym_match_token1] = ACTIONS(1421), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1421), + [aux_sym_address_family_token1] = ACTIONS(1421), + [aux_sym_batch_mode_token1] = ACTIONS(1421), + [aux_sym_bind_address_token1] = ACTIONS(1421), + [aux_sym_bind_interface_token1] = ACTIONS(1421), + [aux_sym_canonical_domains_token1] = ACTIONS(1421), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1421), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1421), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1421), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1421), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1421), + [aux_sym_certificate_file_token1] = ACTIONS(1421), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1421), + [aux_sym_channel_timeout_token1] = ACTIONS(1421), + [aux_sym_check_host_ip_token1] = ACTIONS(1421), + [aux_sym_ciphers_token1] = ACTIONS(1421), + [aux_sym_cipher_token1] = ACTIONS(1423), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1421), + [aux_sym_compression_token1] = ACTIONS(1421), + [aux_sym_connection_attempts_token1] = ACTIONS(1421), + [aux_sym_connect_timeout_token1] = ACTIONS(1421), + [aux_sym_control_master_token1] = ACTIONS(1421), + [aux_sym_control_path_token1] = ACTIONS(1421), + [aux_sym_control_persist_token1] = ACTIONS(1421), + [aux_sym_dynamic_forward_token1] = ACTIONS(1421), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1421), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1421), + [aux_sym_escape_char_token1] = ACTIONS(1421), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1421), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1421), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1421), + [aux_sym_forward_agent_token1] = ACTIONS(1421), + [aux_sym_forward_x11_token1] = ACTIONS(1423), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1421), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1421), + [aux_sym_gateway_ports_token1] = ACTIONS(1421), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1421), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1421), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1421), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1421), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1421), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1421), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1421), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1421), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1421), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1421), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1421), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1421), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1421), + [aux_sym_host_key_alias_token1] = ACTIONS(1421), + [aux_sym_hostname_token1] = ACTIONS(1421), + [aux_sym_identities_only_token1] = ACTIONS(1421), + [aux_sym_identity_agent_token1] = ACTIONS(1421), + [aux_sym_identity_file_token1] = ACTIONS(1421), + [aux_sym_ignore_unknown_token1] = ACTIONS(1421), + [aux_sym_include_token1] = ACTIONS(1421), + [aux_sym_ip_qos_token1] = ACTIONS(1421), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1421), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1421), + [aux_sym_kex_algorithms_token1] = ACTIONS(1421), + [aux_sym_known_hosts_command_token1] = ACTIONS(1421), + [aux_sym_local_command_token1] = ACTIONS(1421), + [aux_sym_local_forward_token1] = ACTIONS(1421), + [aux_sym_log_level_token1] = ACTIONS(1421), + [aux_sym_log_verbose_token1] = ACTIONS(1421), + [aux_sym_macs_token1] = ACTIONS(1421), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1421), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1421), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1421), + [aux_sym_password_authentication_token1] = ACTIONS(1421), + [aux_sym_permit_local_command_token1] = ACTIONS(1421), + [aux_sym_permit_remote_open_token1] = ACTIONS(1421), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1421), + [aux_sym_port_token1] = ACTIONS(1421), + [aux_sym_preferred_authentications_token1] = ACTIONS(1421), + [aux_sym_protocol_token1] = ACTIONS(1421), + [aux_sym_proxy_command_token1] = ACTIONS(1421), + [aux_sym_proxy_jump_token1] = ACTIONS(1421), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1421), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1421), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1421), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1421), + [aux_sym_rekey_limit_token1] = ACTIONS(1421), + [aux_sym_remote_command_token1] = ACTIONS(1421), + [aux_sym_remote_forward_token1] = ACTIONS(1421), + [aux_sym_request_tty_token1] = ACTIONS(1421), + [aux_sym_required_rsa_size_token1] = ACTIONS(1421), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1421), + [aux_sym_security_key_provider_token1] = ACTIONS(1421), + [aux_sym_send_env_token1] = ACTIONS(1421), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1421), + [aux_sym_server_alive_interval_token1] = ACTIONS(1421), + [aux_sym_session_type_token1] = ACTIONS(1421), + [aux_sym_set_env_token1] = ACTIONS(1421), + [aux_sym_stdin_null_token1] = ACTIONS(1421), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1421), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1421), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1421), + [aux_sym_syslog_facility_token1] = ACTIONS(1421), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1421), + [aux_sym_keep_alive_token1] = ACTIONS(1421), + [aux_sym_tag_token1] = ACTIONS(1421), + [aux_sym_tunnel_token1] = ACTIONS(1423), + [aux_sym_tunnel_device_token1] = ACTIONS(1421), + [aux_sym_update_host_keys_token1] = ACTIONS(1421), + [aux_sym_use_keychain_token1] = ACTIONS(1421), + [aux_sym_use_roaming_token1] = ACTIONS(1421), + [aux_sym_user_token1] = ACTIONS(1423), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1421), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1421), + [aux_sym_visual_host_key_token1] = ACTIONS(1421), + [aux_sym_xauth_location_token1] = ACTIONS(1421), }, [692] = { - [ts_builtin_sym_end] = ACTIONS(1632), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1634), - [aux_sym_match_token1] = ACTIONS(1632), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1632), - [aux_sym_address_family_token1] = ACTIONS(1632), - [aux_sym_batch_mode_token1] = ACTIONS(1632), - [aux_sym_bind_address_token1] = ACTIONS(1632), - [aux_sym_bind_interface_token1] = ACTIONS(1632), - [aux_sym_canonical_domains_token1] = ACTIONS(1632), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1632), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1632), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1632), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1632), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1632), - [aux_sym_certificate_file_token1] = ACTIONS(1632), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1632), - [aux_sym_channel_timeout_token1] = ACTIONS(1632), - [aux_sym_check_host_ip_token1] = ACTIONS(1632), - [aux_sym_ciphers_token1] = ACTIONS(1632), - [aux_sym_cipher_token1] = ACTIONS(1634), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1632), - [aux_sym_compression_token1] = ACTIONS(1632), - [aux_sym_connection_attempts_token1] = ACTIONS(1632), - [aux_sym_connect_timeout_token1] = ACTIONS(1632), - [aux_sym_control_master_token1] = ACTIONS(1632), - [aux_sym_control_path_token1] = ACTIONS(1632), - [aux_sym_control_persist_token1] = ACTIONS(1632), - [aux_sym_dynamic_forward_token1] = ACTIONS(1632), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1632), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1632), - [aux_sym_escape_char_token1] = ACTIONS(1632), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1632), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1632), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1632), - [aux_sym_forward_agent_token1] = ACTIONS(1632), - [aux_sym_forward_x11_token1] = ACTIONS(1634), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1632), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1632), - [aux_sym_gateway_ports_token1] = ACTIONS(1632), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1632), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1632), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1632), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1632), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1632), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1632), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1632), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1632), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1632), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1632), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1632), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1632), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1632), - [aux_sym_host_key_alias_token1] = ACTIONS(1632), - [aux_sym_hostname_token1] = ACTIONS(1632), - [aux_sym_identities_only_token1] = ACTIONS(1632), - [aux_sym_identity_agent_token1] = ACTIONS(1632), - [aux_sym_identity_file_token1] = ACTIONS(1632), - [aux_sym_ignore_unknown_token1] = ACTIONS(1632), - [aux_sym_include_token1] = ACTIONS(1632), - [aux_sym_ip_qos_token1] = ACTIONS(1632), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1632), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1632), - [aux_sym_kex_algorithms_token1] = ACTIONS(1632), - [aux_sym_known_hosts_command_token1] = ACTIONS(1632), - [aux_sym_local_command_token1] = ACTIONS(1632), - [aux_sym_local_forward_token1] = ACTIONS(1632), - [aux_sym_log_level_token1] = ACTIONS(1632), - [aux_sym_log_verbose_token1] = ACTIONS(1632), - [aux_sym_macs_token1] = ACTIONS(1632), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1632), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1632), - [aux_sym_password_authentication_token1] = ACTIONS(1632), - [aux_sym_permit_local_command_token1] = ACTIONS(1632), - [aux_sym_permit_remote_open_token1] = ACTIONS(1632), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1632), - [aux_sym_port_token1] = ACTIONS(1632), - [aux_sym_preferred_authentications_token1] = ACTIONS(1632), - [aux_sym_protocol_token1] = ACTIONS(1632), - [aux_sym_proxy_command_token1] = ACTIONS(1632), - [aux_sym_proxy_jump_token1] = ACTIONS(1632), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1632), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1632), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1632), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1632), - [aux_sym_rekey_limit_token1] = ACTIONS(1632), - [aux_sym_remote_command_token1] = ACTIONS(1632), - [aux_sym_remote_forward_token1] = ACTIONS(1632), - [aux_sym_request_tty_token1] = ACTIONS(1632), - [aux_sym_required_rsa_size_token1] = ACTIONS(1632), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1632), - [aux_sym_security_key_provider_token1] = ACTIONS(1632), - [aux_sym_send_env_token1] = ACTIONS(1632), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1632), - [aux_sym_server_alive_interval_token1] = ACTIONS(1632), - [aux_sym_session_type_token1] = ACTIONS(1632), - [aux_sym_set_env_token1] = ACTIONS(1632), - [aux_sym_stdin_null_token1] = ACTIONS(1632), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1632), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1632), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1632), - [aux_sym_syslog_facility_token1] = ACTIONS(1632), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1632), - [aux_sym_keep_alive_token1] = ACTIONS(1632), - [aux_sym_tag_token1] = ACTIONS(1632), - [aux_sym_tunnel_token1] = ACTIONS(1634), - [aux_sym_tunnel_device_token1] = ACTIONS(1632), - [aux_sym_update_host_keys_token1] = ACTIONS(1632), - [aux_sym_use_keychain_token1] = ACTIONS(1632), - [aux_sym_use_roaming_token1] = ACTIONS(1632), - [aux_sym_user_token1] = ACTIONS(1634), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1632), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1632), - [aux_sym_visual_host_key_token1] = ACTIONS(1632), - [aux_sym_xauth_location_token1] = ACTIONS(1632), + [ts_builtin_sym_end] = ACTIONS(653), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(655), + [aux_sym_match_token1] = ACTIONS(653), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(653), + [aux_sym_address_family_token1] = ACTIONS(653), + [aux_sym_batch_mode_token1] = ACTIONS(653), + [aux_sym_bind_address_token1] = ACTIONS(653), + [aux_sym_bind_interface_token1] = ACTIONS(653), + [aux_sym_canonical_domains_token1] = ACTIONS(653), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(653), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(653), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(653), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(653), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(653), + [aux_sym_certificate_file_token1] = ACTIONS(653), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(653), + [aux_sym_channel_timeout_token1] = ACTIONS(653), + [aux_sym_check_host_ip_token1] = ACTIONS(653), + [aux_sym_ciphers_token1] = ACTIONS(653), + [aux_sym_cipher_token1] = ACTIONS(655), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(653), + [aux_sym_compression_token1] = ACTIONS(653), + [aux_sym_connection_attempts_token1] = ACTIONS(653), + [aux_sym_connect_timeout_token1] = ACTIONS(653), + [aux_sym_control_master_token1] = ACTIONS(653), + [aux_sym_control_path_token1] = ACTIONS(653), + [aux_sym_control_persist_token1] = ACTIONS(653), + [aux_sym_dynamic_forward_token1] = ACTIONS(653), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(653), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(653), + [aux_sym_escape_char_token1] = ACTIONS(653), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(653), + [aux_sym_fingerprint_hash_token1] = ACTIONS(653), + [aux_sym_fork_after_authentication_token1] = ACTIONS(653), + [aux_sym_forward_agent_token1] = ACTIONS(653), + [aux_sym_forward_x11_token1] = ACTIONS(655), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(653), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(653), + [aux_sym_gateway_ports_token1] = ACTIONS(653), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(653), + [aux_sym_gssapi_authentication_token1] = ACTIONS(653), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(653), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(653), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(653), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(653), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(653), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(653), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(653), + [aux_sym_hash_known_hosts_token1] = ACTIONS(653), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(653), + [aux_sym_hostbased_authentication_token1] = ACTIONS(653), + [aux_sym_host_key_algorithms_token1] = ACTIONS(653), + [aux_sym_host_key_alias_token1] = ACTIONS(653), + [aux_sym_hostname_token1] = ACTIONS(653), + [aux_sym_identities_only_token1] = ACTIONS(653), + [aux_sym_identity_agent_token1] = ACTIONS(653), + [aux_sym_identity_file_token1] = ACTIONS(653), + [aux_sym_ignore_unknown_token1] = ACTIONS(653), + [aux_sym_include_token1] = ACTIONS(653), + [aux_sym_ip_qos_token1] = ACTIONS(653), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(653), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(653), + [aux_sym_kex_algorithms_token1] = ACTIONS(653), + [aux_sym_known_hosts_command_token1] = ACTIONS(653), + [aux_sym_local_command_token1] = ACTIONS(653), + [aux_sym_local_forward_token1] = ACTIONS(653), + [aux_sym_log_level_token1] = ACTIONS(653), + [aux_sym_log_verbose_token1] = ACTIONS(653), + [aux_sym_macs_token1] = ACTIONS(653), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(653), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(653), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(653), + [aux_sym_password_authentication_token1] = ACTIONS(653), + [aux_sym_permit_local_command_token1] = ACTIONS(653), + [aux_sym_permit_remote_open_token1] = ACTIONS(653), + [aux_sym_pkcs11_provider_token1] = ACTIONS(653), + [aux_sym_port_token1] = ACTIONS(653), + [aux_sym_preferred_authentications_token1] = ACTIONS(653), + [aux_sym_protocol_token1] = ACTIONS(653), + [aux_sym_proxy_command_token1] = ACTIONS(653), + [aux_sym_proxy_jump_token1] = ACTIONS(653), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(653), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(653), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(653), + [aux_sym_pubkey_authentication_token1] = ACTIONS(653), + [aux_sym_rekey_limit_token1] = ACTIONS(653), + [aux_sym_remote_command_token1] = ACTIONS(653), + [aux_sym_remote_forward_token1] = ACTIONS(653), + [aux_sym_request_tty_token1] = ACTIONS(653), + [aux_sym_required_rsa_size_token1] = ACTIONS(653), + [aux_sym_revoked_host_keys_token1] = ACTIONS(653), + [aux_sym_security_key_provider_token1] = ACTIONS(653), + [aux_sym_send_env_token1] = ACTIONS(653), + [aux_sym_server_alive_count_max_token1] = ACTIONS(653), + [aux_sym_server_alive_interval_token1] = ACTIONS(653), + [aux_sym_session_type_token1] = ACTIONS(653), + [aux_sym_set_env_token1] = ACTIONS(653), + [aux_sym_stdin_null_token1] = ACTIONS(653), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(653), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(653), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(653), + [aux_sym_syslog_facility_token1] = ACTIONS(653), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(653), + [aux_sym_keep_alive_token1] = ACTIONS(653), + [aux_sym_tag_token1] = ACTIONS(653), + [aux_sym_tunnel_token1] = ACTIONS(655), + [aux_sym_tunnel_device_token1] = ACTIONS(653), + [aux_sym_update_host_keys_token1] = ACTIONS(653), + [aux_sym_use_keychain_token1] = ACTIONS(653), + [aux_sym_use_roaming_token1] = ACTIONS(653), + [aux_sym_user_token1] = ACTIONS(655), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(653), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(653), + [aux_sym_visual_host_key_token1] = ACTIONS(653), + [aux_sym_xauth_location_token1] = ACTIONS(653), }, [693] = { - [ts_builtin_sym_end] = ACTIONS(714), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(716), - [aux_sym_match_token1] = ACTIONS(714), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(714), - [aux_sym_address_family_token1] = ACTIONS(714), - [aux_sym_batch_mode_token1] = ACTIONS(714), - [aux_sym_bind_address_token1] = ACTIONS(714), - [aux_sym_bind_interface_token1] = ACTIONS(714), - [aux_sym_canonical_domains_token1] = ACTIONS(714), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(714), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(714), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(714), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(714), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(714), - [aux_sym_certificate_file_token1] = ACTIONS(714), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(714), - [aux_sym_channel_timeout_token1] = ACTIONS(714), - [aux_sym_check_host_ip_token1] = ACTIONS(714), - [aux_sym_ciphers_token1] = ACTIONS(714), - [aux_sym_cipher_token1] = ACTIONS(716), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(714), - [aux_sym_compression_token1] = ACTIONS(714), - [aux_sym_connection_attempts_token1] = ACTIONS(714), - [aux_sym_connect_timeout_token1] = ACTIONS(714), - [aux_sym_control_master_token1] = ACTIONS(714), - [aux_sym_control_path_token1] = ACTIONS(714), - [aux_sym_control_persist_token1] = ACTIONS(714), - [aux_sym_dynamic_forward_token1] = ACTIONS(714), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(714), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(714), - [aux_sym_escape_char_token1] = ACTIONS(714), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(714), - [aux_sym_fingerprint_hash_token1] = ACTIONS(714), - [aux_sym_fork_after_authentication_token1] = ACTIONS(714), - [aux_sym_forward_agent_token1] = ACTIONS(714), - [aux_sym_forward_x11_token1] = ACTIONS(716), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(714), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(714), - [aux_sym_gateway_ports_token1] = ACTIONS(714), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(714), - [aux_sym_gssapi_authentication_token1] = ACTIONS(714), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(714), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(714), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(714), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(714), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(714), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(714), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(714), - [aux_sym_hash_known_hosts_token1] = ACTIONS(714), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(714), - [aux_sym_hostbased_authentication_token1] = ACTIONS(714), - [aux_sym_host_key_algorithms_token1] = ACTIONS(714), - [aux_sym_host_key_alias_token1] = ACTIONS(714), - [aux_sym_hostname_token1] = ACTIONS(714), - [aux_sym_identities_only_token1] = ACTIONS(714), - [aux_sym_identity_agent_token1] = ACTIONS(714), - [aux_sym_identity_file_token1] = ACTIONS(714), - [aux_sym_ignore_unknown_token1] = ACTIONS(714), - [aux_sym_include_token1] = ACTIONS(714), - [aux_sym_ip_qos_token1] = ACTIONS(714), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(714), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(714), - [aux_sym_kex_algorithms_token1] = ACTIONS(714), - [aux_sym_known_hosts_command_token1] = ACTIONS(714), - [aux_sym_local_command_token1] = ACTIONS(714), - [aux_sym_local_forward_token1] = ACTIONS(714), - [aux_sym_log_level_token1] = ACTIONS(714), - [aux_sym_log_verbose_token1] = ACTIONS(714), - [aux_sym_macs_token1] = ACTIONS(714), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(714), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(714), - [aux_sym_password_authentication_token1] = ACTIONS(714), - [aux_sym_permit_local_command_token1] = ACTIONS(714), - [aux_sym_permit_remote_open_token1] = ACTIONS(714), - [aux_sym_pkcs11_provider_token1] = ACTIONS(714), - [aux_sym_port_token1] = ACTIONS(714), - [aux_sym_preferred_authentications_token1] = ACTIONS(714), - [aux_sym_protocol_token1] = ACTIONS(714), - [aux_sym_proxy_command_token1] = ACTIONS(714), - [aux_sym_proxy_jump_token1] = ACTIONS(714), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(714), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(714), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(714), - [aux_sym_pubkey_authentication_token1] = ACTIONS(714), - [aux_sym_rekey_limit_token1] = ACTIONS(714), - [aux_sym_remote_command_token1] = ACTIONS(714), - [aux_sym_remote_forward_token1] = ACTIONS(714), - [aux_sym_request_tty_token1] = ACTIONS(714), - [aux_sym_required_rsa_size_token1] = ACTIONS(714), - [aux_sym_revoked_host_keys_token1] = ACTIONS(714), - [aux_sym_security_key_provider_token1] = ACTIONS(714), - [aux_sym_send_env_token1] = ACTIONS(714), - [aux_sym_server_alive_count_max_token1] = ACTIONS(714), - [aux_sym_server_alive_interval_token1] = ACTIONS(714), - [aux_sym_session_type_token1] = ACTIONS(714), - [aux_sym_set_env_token1] = ACTIONS(714), - [aux_sym_stdin_null_token1] = ACTIONS(714), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(714), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(714), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(714), - [aux_sym_syslog_facility_token1] = ACTIONS(714), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(714), - [aux_sym_keep_alive_token1] = ACTIONS(714), - [aux_sym_tag_token1] = ACTIONS(714), - [aux_sym_tunnel_token1] = ACTIONS(716), - [aux_sym_tunnel_device_token1] = ACTIONS(714), - [aux_sym_update_host_keys_token1] = ACTIONS(714), - [aux_sym_use_keychain_token1] = ACTIONS(714), - [aux_sym_use_roaming_token1] = ACTIONS(714), - [aux_sym_user_token1] = ACTIONS(716), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(714), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(714), - [aux_sym_visual_host_key_token1] = ACTIONS(714), - [aux_sym_xauth_location_token1] = ACTIONS(714), + [ts_builtin_sym_end] = ACTIONS(977), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(979), + [aux_sym_match_token1] = ACTIONS(977), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(977), + [aux_sym_address_family_token1] = ACTIONS(977), + [aux_sym_batch_mode_token1] = ACTIONS(977), + [aux_sym_bind_address_token1] = ACTIONS(977), + [aux_sym_bind_interface_token1] = ACTIONS(977), + [aux_sym_canonical_domains_token1] = ACTIONS(977), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(977), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(977), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(977), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(977), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(977), + [aux_sym_certificate_file_token1] = ACTIONS(977), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(977), + [aux_sym_channel_timeout_token1] = ACTIONS(977), + [aux_sym_check_host_ip_token1] = ACTIONS(977), + [aux_sym_ciphers_token1] = ACTIONS(977), + [aux_sym_cipher_token1] = ACTIONS(979), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(977), + [aux_sym_compression_token1] = ACTIONS(977), + [aux_sym_connection_attempts_token1] = ACTIONS(977), + [aux_sym_connect_timeout_token1] = ACTIONS(977), + [aux_sym_control_master_token1] = ACTIONS(977), + [aux_sym_control_path_token1] = ACTIONS(977), + [aux_sym_control_persist_token1] = ACTIONS(977), + [aux_sym_dynamic_forward_token1] = ACTIONS(977), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(977), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(977), + [aux_sym_escape_char_token1] = ACTIONS(977), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(977), + [aux_sym_fingerprint_hash_token1] = ACTIONS(977), + [aux_sym_fork_after_authentication_token1] = ACTIONS(977), + [aux_sym_forward_agent_token1] = ACTIONS(977), + [aux_sym_forward_x11_token1] = ACTIONS(979), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(977), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(977), + [aux_sym_gateway_ports_token1] = ACTIONS(977), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(977), + [aux_sym_gssapi_authentication_token1] = ACTIONS(977), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(977), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(977), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(977), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(977), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(977), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(977), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(977), + [aux_sym_hash_known_hosts_token1] = ACTIONS(977), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(977), + [aux_sym_hostbased_authentication_token1] = ACTIONS(977), + [aux_sym_host_key_algorithms_token1] = ACTIONS(977), + [aux_sym_host_key_alias_token1] = ACTIONS(977), + [aux_sym_hostname_token1] = ACTIONS(977), + [aux_sym_identities_only_token1] = ACTIONS(977), + [aux_sym_identity_agent_token1] = ACTIONS(977), + [aux_sym_identity_file_token1] = ACTIONS(977), + [aux_sym_ignore_unknown_token1] = ACTIONS(977), + [aux_sym_include_token1] = ACTIONS(977), + [aux_sym_ip_qos_token1] = ACTIONS(977), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(977), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(977), + [aux_sym_kex_algorithms_token1] = ACTIONS(977), + [aux_sym_known_hosts_command_token1] = ACTIONS(977), + [aux_sym_local_command_token1] = ACTIONS(977), + [aux_sym_local_forward_token1] = ACTIONS(977), + [aux_sym_log_level_token1] = ACTIONS(977), + [aux_sym_log_verbose_token1] = ACTIONS(977), + [aux_sym_macs_token1] = ACTIONS(977), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(977), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(977), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(977), + [aux_sym_password_authentication_token1] = ACTIONS(977), + [aux_sym_permit_local_command_token1] = ACTIONS(977), + [aux_sym_permit_remote_open_token1] = ACTIONS(977), + [aux_sym_pkcs11_provider_token1] = ACTIONS(977), + [aux_sym_port_token1] = ACTIONS(977), + [aux_sym_preferred_authentications_token1] = ACTIONS(977), + [aux_sym_protocol_token1] = ACTIONS(977), + [aux_sym_proxy_command_token1] = ACTIONS(977), + [aux_sym_proxy_jump_token1] = ACTIONS(977), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(977), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(977), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(977), + [aux_sym_pubkey_authentication_token1] = ACTIONS(977), + [aux_sym_rekey_limit_token1] = ACTIONS(977), + [aux_sym_remote_command_token1] = ACTIONS(977), + [aux_sym_remote_forward_token1] = ACTIONS(977), + [aux_sym_request_tty_token1] = ACTIONS(977), + [aux_sym_required_rsa_size_token1] = ACTIONS(977), + [aux_sym_revoked_host_keys_token1] = ACTIONS(977), + [aux_sym_security_key_provider_token1] = ACTIONS(977), + [aux_sym_send_env_token1] = ACTIONS(977), + [aux_sym_server_alive_count_max_token1] = ACTIONS(977), + [aux_sym_server_alive_interval_token1] = ACTIONS(977), + [aux_sym_session_type_token1] = ACTIONS(977), + [aux_sym_set_env_token1] = ACTIONS(977), + [aux_sym_stdin_null_token1] = ACTIONS(977), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(977), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(977), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(977), + [aux_sym_syslog_facility_token1] = ACTIONS(977), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(977), + [aux_sym_keep_alive_token1] = ACTIONS(977), + [aux_sym_tag_token1] = ACTIONS(977), + [aux_sym_tunnel_token1] = ACTIONS(979), + [aux_sym_tunnel_device_token1] = ACTIONS(977), + [aux_sym_update_host_keys_token1] = ACTIONS(977), + [aux_sym_use_keychain_token1] = ACTIONS(977), + [aux_sym_use_roaming_token1] = ACTIONS(977), + [aux_sym_user_token1] = ACTIONS(979), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(977), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(977), + [aux_sym_visual_host_key_token1] = ACTIONS(977), + [aux_sym_xauth_location_token1] = ACTIONS(977), }, [694] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1932), - [aux_sym_match_token1] = ACTIONS(1930), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1930), - [aux_sym_address_family_token1] = ACTIONS(1930), - [aux_sym_batch_mode_token1] = ACTIONS(1930), - [aux_sym_bind_address_token1] = ACTIONS(1930), - [aux_sym_bind_interface_token1] = ACTIONS(1930), - [aux_sym_canonical_domains_token1] = ACTIONS(1930), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1930), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1930), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1930), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1930), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1930), - [aux_sym_certificate_file_token1] = ACTIONS(1930), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1930), - [aux_sym_channel_timeout_token1] = ACTIONS(1930), - [aux_sym_check_host_ip_token1] = ACTIONS(1930), - [aux_sym_ciphers_token1] = ACTIONS(1930), - [aux_sym_cipher_token1] = ACTIONS(1932), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1930), - [aux_sym_compression_token1] = ACTIONS(1930), - [aux_sym_connection_attempts_token1] = ACTIONS(1930), - [aux_sym_connect_timeout_token1] = ACTIONS(1930), - [aux_sym_control_master_token1] = ACTIONS(1930), - [aux_sym_control_path_token1] = ACTIONS(1930), - [aux_sym_control_persist_token1] = ACTIONS(1930), - [aux_sym_dynamic_forward_token1] = ACTIONS(1930), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1930), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1930), - [aux_sym_escape_char_token1] = ACTIONS(1930), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1930), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1930), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1930), - [aux_sym_forward_agent_token1] = ACTIONS(1930), - [aux_sym_forward_x11_token1] = ACTIONS(1932), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1930), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1930), - [aux_sym_gateway_ports_token1] = ACTIONS(1930), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1930), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1930), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1930), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1930), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1930), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1930), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1930), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1930), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1930), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1930), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1930), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1930), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1930), - [aux_sym_host_key_alias_token1] = ACTIONS(1930), - [aux_sym_hostname_token1] = ACTIONS(1930), - [aux_sym_identities_only_token1] = ACTIONS(1930), - [aux_sym_identity_agent_token1] = ACTIONS(1930), - [aux_sym_identity_file_token1] = ACTIONS(1930), - [aux_sym_ignore_unknown_token1] = ACTIONS(1930), - [aux_sym_include_token1] = ACTIONS(1930), - [aux_sym_ip_qos_token1] = ACTIONS(1930), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1930), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1930), - [aux_sym_kex_algorithms_token1] = ACTIONS(1930), - [aux_sym_known_hosts_command_token1] = ACTIONS(1930), - [aux_sym_local_command_token1] = ACTIONS(1930), - [aux_sym_local_forward_token1] = ACTIONS(1930), - [aux_sym_log_level_token1] = ACTIONS(1930), - [aux_sym_log_verbose_token1] = ACTIONS(1930), - [aux_sym_macs_token1] = ACTIONS(1930), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1930), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1930), - [aux_sym_password_authentication_token1] = ACTIONS(1930), - [aux_sym_permit_local_command_token1] = ACTIONS(1930), - [aux_sym_permit_remote_open_token1] = ACTIONS(1930), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1930), - [aux_sym_port_token1] = ACTIONS(1930), - [aux_sym_preferred_authentications_token1] = ACTIONS(1930), - [aux_sym_protocol_token1] = ACTIONS(1930), - [aux_sym_proxy_command_token1] = ACTIONS(1930), - [aux_sym_proxy_jump_token1] = ACTIONS(1930), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1930), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1930), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1930), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1930), - [aux_sym_rekey_limit_token1] = ACTIONS(1930), - [aux_sym_remote_command_token1] = ACTIONS(1930), - [aux_sym_remote_forward_token1] = ACTIONS(1930), - [aux_sym_request_tty_token1] = ACTIONS(1930), - [aux_sym_required_rsa_size_token1] = ACTIONS(1930), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1930), - [aux_sym_security_key_provider_token1] = ACTIONS(1930), - [aux_sym_send_env_token1] = ACTIONS(1930), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1930), - [aux_sym_server_alive_interval_token1] = ACTIONS(1930), - [aux_sym_session_type_token1] = ACTIONS(1930), - [aux_sym_set_env_token1] = ACTIONS(1930), - [aux_sym_stdin_null_token1] = ACTIONS(1930), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1930), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1930), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1930), - [aux_sym_syslog_facility_token1] = ACTIONS(1930), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1930), - [aux_sym_keep_alive_token1] = ACTIONS(1930), - [aux_sym_tag_token1] = ACTIONS(1930), - [aux_sym_tunnel_token1] = ACTIONS(1932), - [aux_sym_tunnel_device_token1] = ACTIONS(1930), - [aux_sym_update_host_keys_token1] = ACTIONS(1930), - [aux_sym_use_keychain_token1] = ACTIONS(1930), - [aux_sym_use_roaming_token1] = ACTIONS(1930), - [aux_sym_user_token1] = ACTIONS(1932), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1930), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1930), - [aux_sym_visual_host_key_token1] = ACTIONS(1930), - [aux_sym_xauth_location_token1] = ACTIONS(1930), + [ts_builtin_sym_end] = ACTIONS(1427), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1429), + [aux_sym_match_token1] = ACTIONS(1427), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1427), + [aux_sym_address_family_token1] = ACTIONS(1427), + [aux_sym_batch_mode_token1] = ACTIONS(1427), + [aux_sym_bind_address_token1] = ACTIONS(1427), + [aux_sym_bind_interface_token1] = ACTIONS(1427), + [aux_sym_canonical_domains_token1] = ACTIONS(1427), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1427), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1427), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1427), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1427), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1427), + [aux_sym_certificate_file_token1] = ACTIONS(1427), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1427), + [aux_sym_channel_timeout_token1] = ACTIONS(1427), + [aux_sym_check_host_ip_token1] = ACTIONS(1427), + [aux_sym_ciphers_token1] = ACTIONS(1427), + [aux_sym_cipher_token1] = ACTIONS(1429), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1427), + [aux_sym_compression_token1] = ACTIONS(1427), + [aux_sym_connection_attempts_token1] = ACTIONS(1427), + [aux_sym_connect_timeout_token1] = ACTIONS(1427), + [aux_sym_control_master_token1] = ACTIONS(1427), + [aux_sym_control_path_token1] = ACTIONS(1427), + [aux_sym_control_persist_token1] = ACTIONS(1427), + [aux_sym_dynamic_forward_token1] = ACTIONS(1427), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1427), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1427), + [aux_sym_escape_char_token1] = ACTIONS(1427), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1427), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1427), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1427), + [aux_sym_forward_agent_token1] = ACTIONS(1427), + [aux_sym_forward_x11_token1] = ACTIONS(1429), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1427), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1427), + [aux_sym_gateway_ports_token1] = ACTIONS(1427), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1427), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1427), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1427), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1427), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1427), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1427), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1427), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1427), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1427), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1427), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1427), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1427), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1427), + [aux_sym_host_key_alias_token1] = ACTIONS(1427), + [aux_sym_hostname_token1] = ACTIONS(1427), + [aux_sym_identities_only_token1] = ACTIONS(1427), + [aux_sym_identity_agent_token1] = ACTIONS(1427), + [aux_sym_identity_file_token1] = ACTIONS(1427), + [aux_sym_ignore_unknown_token1] = ACTIONS(1427), + [aux_sym_include_token1] = ACTIONS(1427), + [aux_sym_ip_qos_token1] = ACTIONS(1427), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1427), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1427), + [aux_sym_kex_algorithms_token1] = ACTIONS(1427), + [aux_sym_known_hosts_command_token1] = ACTIONS(1427), + [aux_sym_local_command_token1] = ACTIONS(1427), + [aux_sym_local_forward_token1] = ACTIONS(1427), + [aux_sym_log_level_token1] = ACTIONS(1427), + [aux_sym_log_verbose_token1] = ACTIONS(1427), + [aux_sym_macs_token1] = ACTIONS(1427), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1427), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1427), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1427), + [aux_sym_password_authentication_token1] = ACTIONS(1427), + [aux_sym_permit_local_command_token1] = ACTIONS(1427), + [aux_sym_permit_remote_open_token1] = ACTIONS(1427), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1427), + [aux_sym_port_token1] = ACTIONS(1427), + [aux_sym_preferred_authentications_token1] = ACTIONS(1427), + [aux_sym_protocol_token1] = ACTIONS(1427), + [aux_sym_proxy_command_token1] = ACTIONS(1427), + [aux_sym_proxy_jump_token1] = ACTIONS(1427), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1427), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1427), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1427), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1427), + [aux_sym_rekey_limit_token1] = ACTIONS(1427), + [aux_sym_remote_command_token1] = ACTIONS(1427), + [aux_sym_remote_forward_token1] = ACTIONS(1427), + [aux_sym_request_tty_token1] = ACTIONS(1427), + [aux_sym_required_rsa_size_token1] = ACTIONS(1427), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1427), + [aux_sym_security_key_provider_token1] = ACTIONS(1427), + [aux_sym_send_env_token1] = ACTIONS(1427), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1427), + [aux_sym_server_alive_interval_token1] = ACTIONS(1427), + [aux_sym_session_type_token1] = ACTIONS(1427), + [aux_sym_set_env_token1] = ACTIONS(1427), + [aux_sym_stdin_null_token1] = ACTIONS(1427), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1427), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1427), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1427), + [aux_sym_syslog_facility_token1] = ACTIONS(1427), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1427), + [aux_sym_keep_alive_token1] = ACTIONS(1427), + [aux_sym_tag_token1] = ACTIONS(1427), + [aux_sym_tunnel_token1] = ACTIONS(1429), + [aux_sym_tunnel_device_token1] = ACTIONS(1427), + [aux_sym_update_host_keys_token1] = ACTIONS(1427), + [aux_sym_use_keychain_token1] = ACTIONS(1427), + [aux_sym_use_roaming_token1] = ACTIONS(1427), + [aux_sym_user_token1] = ACTIONS(1429), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1427), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1427), + [aux_sym_visual_host_key_token1] = ACTIONS(1427), + [aux_sym_xauth_location_token1] = ACTIONS(1427), }, [695] = { - [ts_builtin_sym_end] = ACTIONS(720), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(722), - [aux_sym_match_token1] = ACTIONS(720), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(720), - [aux_sym_address_family_token1] = ACTIONS(720), - [aux_sym_batch_mode_token1] = ACTIONS(720), - [aux_sym_bind_address_token1] = ACTIONS(720), - [aux_sym_bind_interface_token1] = ACTIONS(720), - [aux_sym_canonical_domains_token1] = ACTIONS(720), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(720), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(720), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(720), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(720), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(720), - [aux_sym_certificate_file_token1] = ACTIONS(720), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(720), - [aux_sym_channel_timeout_token1] = ACTIONS(720), - [aux_sym_check_host_ip_token1] = ACTIONS(720), - [aux_sym_ciphers_token1] = ACTIONS(720), - [aux_sym_cipher_token1] = ACTIONS(722), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(720), - [aux_sym_compression_token1] = ACTIONS(720), - [aux_sym_connection_attempts_token1] = ACTIONS(720), - [aux_sym_connect_timeout_token1] = ACTIONS(720), - [aux_sym_control_master_token1] = ACTIONS(720), - [aux_sym_control_path_token1] = ACTIONS(720), - [aux_sym_control_persist_token1] = ACTIONS(720), - [aux_sym_dynamic_forward_token1] = ACTIONS(720), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(720), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(720), - [aux_sym_escape_char_token1] = ACTIONS(720), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(720), - [aux_sym_fingerprint_hash_token1] = ACTIONS(720), - [aux_sym_fork_after_authentication_token1] = ACTIONS(720), - [aux_sym_forward_agent_token1] = ACTIONS(720), - [aux_sym_forward_x11_token1] = ACTIONS(722), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(720), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(720), - [aux_sym_gateway_ports_token1] = ACTIONS(720), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(720), - [aux_sym_gssapi_authentication_token1] = ACTIONS(720), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(720), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(720), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(720), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(720), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(720), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(720), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(720), - [aux_sym_hash_known_hosts_token1] = ACTIONS(720), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(720), - [aux_sym_hostbased_authentication_token1] = ACTIONS(720), - [aux_sym_host_key_algorithms_token1] = ACTIONS(720), - [aux_sym_host_key_alias_token1] = ACTIONS(720), - [aux_sym_hostname_token1] = ACTIONS(720), - [aux_sym_identities_only_token1] = ACTIONS(720), - [aux_sym_identity_agent_token1] = ACTIONS(720), - [aux_sym_identity_file_token1] = ACTIONS(720), - [aux_sym_ignore_unknown_token1] = ACTIONS(720), - [aux_sym_include_token1] = ACTIONS(720), - [aux_sym_ip_qos_token1] = ACTIONS(720), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(720), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(720), - [aux_sym_kex_algorithms_token1] = ACTIONS(720), - [aux_sym_known_hosts_command_token1] = ACTIONS(720), - [aux_sym_local_command_token1] = ACTIONS(720), - [aux_sym_local_forward_token1] = ACTIONS(720), - [aux_sym_log_level_token1] = ACTIONS(720), - [aux_sym_log_verbose_token1] = ACTIONS(720), - [aux_sym_macs_token1] = ACTIONS(720), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(720), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(720), - [aux_sym_password_authentication_token1] = ACTIONS(720), - [aux_sym_permit_local_command_token1] = ACTIONS(720), - [aux_sym_permit_remote_open_token1] = ACTIONS(720), - [aux_sym_pkcs11_provider_token1] = ACTIONS(720), - [aux_sym_port_token1] = ACTIONS(720), - [aux_sym_preferred_authentications_token1] = ACTIONS(720), - [aux_sym_protocol_token1] = ACTIONS(720), - [aux_sym_proxy_command_token1] = ACTIONS(720), - [aux_sym_proxy_jump_token1] = ACTIONS(720), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(720), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(720), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(720), - [aux_sym_pubkey_authentication_token1] = ACTIONS(720), - [aux_sym_rekey_limit_token1] = ACTIONS(720), - [aux_sym_remote_command_token1] = ACTIONS(720), - [aux_sym_remote_forward_token1] = ACTIONS(720), - [aux_sym_request_tty_token1] = ACTIONS(720), - [aux_sym_required_rsa_size_token1] = ACTIONS(720), - [aux_sym_revoked_host_keys_token1] = ACTIONS(720), - [aux_sym_security_key_provider_token1] = ACTIONS(720), - [aux_sym_send_env_token1] = ACTIONS(720), - [aux_sym_server_alive_count_max_token1] = ACTIONS(720), - [aux_sym_server_alive_interval_token1] = ACTIONS(720), - [aux_sym_session_type_token1] = ACTIONS(720), - [aux_sym_set_env_token1] = ACTIONS(720), - [aux_sym_stdin_null_token1] = ACTIONS(720), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(720), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(720), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(720), - [aux_sym_syslog_facility_token1] = ACTIONS(720), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(720), - [aux_sym_keep_alive_token1] = ACTIONS(720), - [aux_sym_tag_token1] = ACTIONS(720), - [aux_sym_tunnel_token1] = ACTIONS(722), - [aux_sym_tunnel_device_token1] = ACTIONS(720), - [aux_sym_update_host_keys_token1] = ACTIONS(720), - [aux_sym_use_keychain_token1] = ACTIONS(720), - [aux_sym_use_roaming_token1] = ACTIONS(720), - [aux_sym_user_token1] = ACTIONS(722), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(720), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(720), - [aux_sym_visual_host_key_token1] = ACTIONS(720), - [aux_sym_xauth_location_token1] = ACTIONS(720), + [ts_builtin_sym_end] = ACTIONS(659), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(661), + [aux_sym_match_token1] = ACTIONS(659), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(659), + [aux_sym_address_family_token1] = ACTIONS(659), + [aux_sym_batch_mode_token1] = ACTIONS(659), + [aux_sym_bind_address_token1] = ACTIONS(659), + [aux_sym_bind_interface_token1] = ACTIONS(659), + [aux_sym_canonical_domains_token1] = ACTIONS(659), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(659), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(659), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(659), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(659), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(659), + [aux_sym_certificate_file_token1] = ACTIONS(659), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(659), + [aux_sym_channel_timeout_token1] = ACTIONS(659), + [aux_sym_check_host_ip_token1] = ACTIONS(659), + [aux_sym_ciphers_token1] = ACTIONS(659), + [aux_sym_cipher_token1] = ACTIONS(661), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(659), + [aux_sym_compression_token1] = ACTIONS(659), + [aux_sym_connection_attempts_token1] = ACTIONS(659), + [aux_sym_connect_timeout_token1] = ACTIONS(659), + [aux_sym_control_master_token1] = ACTIONS(659), + [aux_sym_control_path_token1] = ACTIONS(659), + [aux_sym_control_persist_token1] = ACTIONS(659), + [aux_sym_dynamic_forward_token1] = ACTIONS(659), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(659), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(659), + [aux_sym_escape_char_token1] = ACTIONS(659), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(659), + [aux_sym_fingerprint_hash_token1] = ACTIONS(659), + [aux_sym_fork_after_authentication_token1] = ACTIONS(659), + [aux_sym_forward_agent_token1] = ACTIONS(659), + [aux_sym_forward_x11_token1] = ACTIONS(661), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(659), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(659), + [aux_sym_gateway_ports_token1] = ACTIONS(659), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(659), + [aux_sym_gssapi_authentication_token1] = ACTIONS(659), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(659), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(659), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(659), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(659), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(659), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(659), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(659), + [aux_sym_hash_known_hosts_token1] = ACTIONS(659), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(659), + [aux_sym_hostbased_authentication_token1] = ACTIONS(659), + [aux_sym_host_key_algorithms_token1] = ACTIONS(659), + [aux_sym_host_key_alias_token1] = ACTIONS(659), + [aux_sym_hostname_token1] = ACTIONS(659), + [aux_sym_identities_only_token1] = ACTIONS(659), + [aux_sym_identity_agent_token1] = ACTIONS(659), + [aux_sym_identity_file_token1] = ACTIONS(659), + [aux_sym_ignore_unknown_token1] = ACTIONS(659), + [aux_sym_include_token1] = ACTIONS(659), + [aux_sym_ip_qos_token1] = ACTIONS(659), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(659), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(659), + [aux_sym_kex_algorithms_token1] = ACTIONS(659), + [aux_sym_known_hosts_command_token1] = ACTIONS(659), + [aux_sym_local_command_token1] = ACTIONS(659), + [aux_sym_local_forward_token1] = ACTIONS(659), + [aux_sym_log_level_token1] = ACTIONS(659), + [aux_sym_log_verbose_token1] = ACTIONS(659), + [aux_sym_macs_token1] = ACTIONS(659), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(659), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(659), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(659), + [aux_sym_password_authentication_token1] = ACTIONS(659), + [aux_sym_permit_local_command_token1] = ACTIONS(659), + [aux_sym_permit_remote_open_token1] = ACTIONS(659), + [aux_sym_pkcs11_provider_token1] = ACTIONS(659), + [aux_sym_port_token1] = ACTIONS(659), + [aux_sym_preferred_authentications_token1] = ACTIONS(659), + [aux_sym_protocol_token1] = ACTIONS(659), + [aux_sym_proxy_command_token1] = ACTIONS(659), + [aux_sym_proxy_jump_token1] = ACTIONS(659), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(659), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(659), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(659), + [aux_sym_pubkey_authentication_token1] = ACTIONS(659), + [aux_sym_rekey_limit_token1] = ACTIONS(659), + [aux_sym_remote_command_token1] = ACTIONS(659), + [aux_sym_remote_forward_token1] = ACTIONS(659), + [aux_sym_request_tty_token1] = ACTIONS(659), + [aux_sym_required_rsa_size_token1] = ACTIONS(659), + [aux_sym_revoked_host_keys_token1] = ACTIONS(659), + [aux_sym_security_key_provider_token1] = ACTIONS(659), + [aux_sym_send_env_token1] = ACTIONS(659), + [aux_sym_server_alive_count_max_token1] = ACTIONS(659), + [aux_sym_server_alive_interval_token1] = ACTIONS(659), + [aux_sym_session_type_token1] = ACTIONS(659), + [aux_sym_set_env_token1] = ACTIONS(659), + [aux_sym_stdin_null_token1] = ACTIONS(659), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(659), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(659), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(659), + [aux_sym_syslog_facility_token1] = ACTIONS(659), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(659), + [aux_sym_keep_alive_token1] = ACTIONS(659), + [aux_sym_tag_token1] = ACTIONS(659), + [aux_sym_tunnel_token1] = ACTIONS(661), + [aux_sym_tunnel_device_token1] = ACTIONS(659), + [aux_sym_update_host_keys_token1] = ACTIONS(659), + [aux_sym_use_keychain_token1] = ACTIONS(659), + [aux_sym_use_roaming_token1] = ACTIONS(659), + [aux_sym_user_token1] = ACTIONS(661), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(659), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(659), + [aux_sym_visual_host_key_token1] = ACTIONS(659), + [aux_sym_xauth_location_token1] = ACTIONS(659), }, [696] = { - [ts_builtin_sym_end] = ACTIONS(726), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(728), - [aux_sym_match_token1] = ACTIONS(726), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(726), - [aux_sym_address_family_token1] = ACTIONS(726), - [aux_sym_batch_mode_token1] = ACTIONS(726), - [aux_sym_bind_address_token1] = ACTIONS(726), - [aux_sym_bind_interface_token1] = ACTIONS(726), - [aux_sym_canonical_domains_token1] = ACTIONS(726), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(726), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(726), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(726), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(726), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(726), - [aux_sym_certificate_file_token1] = ACTIONS(726), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(726), - [aux_sym_channel_timeout_token1] = ACTIONS(726), - [aux_sym_check_host_ip_token1] = ACTIONS(726), - [aux_sym_ciphers_token1] = ACTIONS(726), - [aux_sym_cipher_token1] = ACTIONS(728), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(726), - [aux_sym_compression_token1] = ACTIONS(726), - [aux_sym_connection_attempts_token1] = ACTIONS(726), - [aux_sym_connect_timeout_token1] = ACTIONS(726), - [aux_sym_control_master_token1] = ACTIONS(726), - [aux_sym_control_path_token1] = ACTIONS(726), - [aux_sym_control_persist_token1] = ACTIONS(726), - [aux_sym_dynamic_forward_token1] = ACTIONS(726), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(726), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(726), - [aux_sym_escape_char_token1] = ACTIONS(726), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(726), - [aux_sym_fingerprint_hash_token1] = ACTIONS(726), - [aux_sym_fork_after_authentication_token1] = ACTIONS(726), - [aux_sym_forward_agent_token1] = ACTIONS(726), - [aux_sym_forward_x11_token1] = ACTIONS(728), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(726), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(726), - [aux_sym_gateway_ports_token1] = ACTIONS(726), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(726), - [aux_sym_gssapi_authentication_token1] = ACTIONS(726), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(726), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(726), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(726), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(726), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(726), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(726), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(726), - [aux_sym_hash_known_hosts_token1] = ACTIONS(726), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(726), - [aux_sym_hostbased_authentication_token1] = ACTIONS(726), - [aux_sym_host_key_algorithms_token1] = ACTIONS(726), - [aux_sym_host_key_alias_token1] = ACTIONS(726), - [aux_sym_hostname_token1] = ACTIONS(726), - [aux_sym_identities_only_token1] = ACTIONS(726), - [aux_sym_identity_agent_token1] = ACTIONS(726), - [aux_sym_identity_file_token1] = ACTIONS(726), - [aux_sym_ignore_unknown_token1] = ACTIONS(726), - [aux_sym_include_token1] = ACTIONS(726), - [aux_sym_ip_qos_token1] = ACTIONS(726), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(726), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(726), - [aux_sym_kex_algorithms_token1] = ACTIONS(726), - [aux_sym_known_hosts_command_token1] = ACTIONS(726), - [aux_sym_local_command_token1] = ACTIONS(726), - [aux_sym_local_forward_token1] = ACTIONS(726), - [aux_sym_log_level_token1] = ACTIONS(726), - [aux_sym_log_verbose_token1] = ACTIONS(726), - [aux_sym_macs_token1] = ACTIONS(726), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(726), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(726), - [aux_sym_password_authentication_token1] = ACTIONS(726), - [aux_sym_permit_local_command_token1] = ACTIONS(726), - [aux_sym_permit_remote_open_token1] = ACTIONS(726), - [aux_sym_pkcs11_provider_token1] = ACTIONS(726), - [aux_sym_port_token1] = ACTIONS(726), - [aux_sym_preferred_authentications_token1] = ACTIONS(726), - [aux_sym_protocol_token1] = ACTIONS(726), - [aux_sym_proxy_command_token1] = ACTIONS(726), - [aux_sym_proxy_jump_token1] = ACTIONS(726), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(726), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(726), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(726), - [aux_sym_pubkey_authentication_token1] = ACTIONS(726), - [aux_sym_rekey_limit_token1] = ACTIONS(726), - [aux_sym_remote_command_token1] = ACTIONS(726), - [aux_sym_remote_forward_token1] = ACTIONS(726), - [aux_sym_request_tty_token1] = ACTIONS(726), - [aux_sym_required_rsa_size_token1] = ACTIONS(726), - [aux_sym_revoked_host_keys_token1] = ACTIONS(726), - [aux_sym_security_key_provider_token1] = ACTIONS(726), - [aux_sym_send_env_token1] = ACTIONS(726), - [aux_sym_server_alive_count_max_token1] = ACTIONS(726), - [aux_sym_server_alive_interval_token1] = ACTIONS(726), - [aux_sym_session_type_token1] = ACTIONS(726), - [aux_sym_set_env_token1] = ACTIONS(726), - [aux_sym_stdin_null_token1] = ACTIONS(726), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(726), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(726), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(726), - [aux_sym_syslog_facility_token1] = ACTIONS(726), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(726), - [aux_sym_keep_alive_token1] = ACTIONS(726), - [aux_sym_tag_token1] = ACTIONS(726), - [aux_sym_tunnel_token1] = ACTIONS(728), - [aux_sym_tunnel_device_token1] = ACTIONS(726), - [aux_sym_update_host_keys_token1] = ACTIONS(726), - [aux_sym_use_keychain_token1] = ACTIONS(726), - [aux_sym_use_roaming_token1] = ACTIONS(726), - [aux_sym_user_token1] = ACTIONS(728), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(726), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(726), - [aux_sym_visual_host_key_token1] = ACTIONS(726), - [aux_sym_xauth_location_token1] = ACTIONS(726), + [ts_builtin_sym_end] = ACTIONS(665), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(667), + [aux_sym_match_token1] = ACTIONS(665), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(665), + [aux_sym_address_family_token1] = ACTIONS(665), + [aux_sym_batch_mode_token1] = ACTIONS(665), + [aux_sym_bind_address_token1] = ACTIONS(665), + [aux_sym_bind_interface_token1] = ACTIONS(665), + [aux_sym_canonical_domains_token1] = ACTIONS(665), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(665), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(665), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(665), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(665), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(665), + [aux_sym_certificate_file_token1] = ACTIONS(665), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(665), + [aux_sym_channel_timeout_token1] = ACTIONS(665), + [aux_sym_check_host_ip_token1] = ACTIONS(665), + [aux_sym_ciphers_token1] = ACTIONS(665), + [aux_sym_cipher_token1] = ACTIONS(667), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(665), + [aux_sym_compression_token1] = ACTIONS(665), + [aux_sym_connection_attempts_token1] = ACTIONS(665), + [aux_sym_connect_timeout_token1] = ACTIONS(665), + [aux_sym_control_master_token1] = ACTIONS(665), + [aux_sym_control_path_token1] = ACTIONS(665), + [aux_sym_control_persist_token1] = ACTIONS(665), + [aux_sym_dynamic_forward_token1] = ACTIONS(665), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(665), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(665), + [aux_sym_escape_char_token1] = ACTIONS(665), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(665), + [aux_sym_fingerprint_hash_token1] = ACTIONS(665), + [aux_sym_fork_after_authentication_token1] = ACTIONS(665), + [aux_sym_forward_agent_token1] = ACTIONS(665), + [aux_sym_forward_x11_token1] = ACTIONS(667), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(665), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(665), + [aux_sym_gateway_ports_token1] = ACTIONS(665), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(665), + [aux_sym_gssapi_authentication_token1] = ACTIONS(665), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(665), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(665), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(665), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(665), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(665), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(665), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(665), + [aux_sym_hash_known_hosts_token1] = ACTIONS(665), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(665), + [aux_sym_hostbased_authentication_token1] = ACTIONS(665), + [aux_sym_host_key_algorithms_token1] = ACTIONS(665), + [aux_sym_host_key_alias_token1] = ACTIONS(665), + [aux_sym_hostname_token1] = ACTIONS(665), + [aux_sym_identities_only_token1] = ACTIONS(665), + [aux_sym_identity_agent_token1] = ACTIONS(665), + [aux_sym_identity_file_token1] = ACTIONS(665), + [aux_sym_ignore_unknown_token1] = ACTIONS(665), + [aux_sym_include_token1] = ACTIONS(665), + [aux_sym_ip_qos_token1] = ACTIONS(665), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(665), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(665), + [aux_sym_kex_algorithms_token1] = ACTIONS(665), + [aux_sym_known_hosts_command_token1] = ACTIONS(665), + [aux_sym_local_command_token1] = ACTIONS(665), + [aux_sym_local_forward_token1] = ACTIONS(665), + [aux_sym_log_level_token1] = ACTIONS(665), + [aux_sym_log_verbose_token1] = ACTIONS(665), + [aux_sym_macs_token1] = ACTIONS(665), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(665), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(665), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(665), + [aux_sym_password_authentication_token1] = ACTIONS(665), + [aux_sym_permit_local_command_token1] = ACTIONS(665), + [aux_sym_permit_remote_open_token1] = ACTIONS(665), + [aux_sym_pkcs11_provider_token1] = ACTIONS(665), + [aux_sym_port_token1] = ACTIONS(665), + [aux_sym_preferred_authentications_token1] = ACTIONS(665), + [aux_sym_protocol_token1] = ACTIONS(665), + [aux_sym_proxy_command_token1] = ACTIONS(665), + [aux_sym_proxy_jump_token1] = ACTIONS(665), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(665), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(665), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(665), + [aux_sym_pubkey_authentication_token1] = ACTIONS(665), + [aux_sym_rekey_limit_token1] = ACTIONS(665), + [aux_sym_remote_command_token1] = ACTIONS(665), + [aux_sym_remote_forward_token1] = ACTIONS(665), + [aux_sym_request_tty_token1] = ACTIONS(665), + [aux_sym_required_rsa_size_token1] = ACTIONS(665), + [aux_sym_revoked_host_keys_token1] = ACTIONS(665), + [aux_sym_security_key_provider_token1] = ACTIONS(665), + [aux_sym_send_env_token1] = ACTIONS(665), + [aux_sym_server_alive_count_max_token1] = ACTIONS(665), + [aux_sym_server_alive_interval_token1] = ACTIONS(665), + [aux_sym_session_type_token1] = ACTIONS(665), + [aux_sym_set_env_token1] = ACTIONS(665), + [aux_sym_stdin_null_token1] = ACTIONS(665), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(665), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(665), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(665), + [aux_sym_syslog_facility_token1] = ACTIONS(665), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(665), + [aux_sym_keep_alive_token1] = ACTIONS(665), + [aux_sym_tag_token1] = ACTIONS(665), + [aux_sym_tunnel_token1] = ACTIONS(667), + [aux_sym_tunnel_device_token1] = ACTIONS(665), + [aux_sym_update_host_keys_token1] = ACTIONS(665), + [aux_sym_use_keychain_token1] = ACTIONS(665), + [aux_sym_use_roaming_token1] = ACTIONS(665), + [aux_sym_user_token1] = ACTIONS(667), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(665), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(665), + [aux_sym_visual_host_key_token1] = ACTIONS(665), + [aux_sym_xauth_location_token1] = ACTIONS(665), }, [697] = { - [ts_builtin_sym_end] = ACTIONS(612), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(614), - [aux_sym_match_token1] = ACTIONS(612), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(612), - [aux_sym_address_family_token1] = ACTIONS(612), - [aux_sym_batch_mode_token1] = ACTIONS(612), - [aux_sym_bind_address_token1] = ACTIONS(612), - [aux_sym_bind_interface_token1] = ACTIONS(612), - [aux_sym_canonical_domains_token1] = ACTIONS(612), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(612), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(612), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(612), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(612), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(612), - [aux_sym_certificate_file_token1] = ACTIONS(612), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(612), - [aux_sym_channel_timeout_token1] = ACTIONS(612), - [aux_sym_check_host_ip_token1] = ACTIONS(612), - [aux_sym_ciphers_token1] = ACTIONS(612), - [aux_sym_cipher_token1] = ACTIONS(614), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(612), - [aux_sym_compression_token1] = ACTIONS(612), - [aux_sym_connection_attempts_token1] = ACTIONS(612), - [aux_sym_connect_timeout_token1] = ACTIONS(612), - [aux_sym_control_master_token1] = ACTIONS(612), - [aux_sym_control_path_token1] = ACTIONS(612), - [aux_sym_control_persist_token1] = ACTIONS(612), - [aux_sym_dynamic_forward_token1] = ACTIONS(612), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(612), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(612), - [aux_sym_escape_char_token1] = ACTIONS(612), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(612), - [aux_sym_fingerprint_hash_token1] = ACTIONS(612), - [aux_sym_fork_after_authentication_token1] = ACTIONS(612), - [aux_sym_forward_agent_token1] = ACTIONS(612), - [aux_sym_forward_x11_token1] = ACTIONS(614), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(612), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(612), - [aux_sym_gateway_ports_token1] = ACTIONS(612), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(612), - [aux_sym_gssapi_authentication_token1] = ACTIONS(612), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(612), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(612), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(612), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(612), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(612), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(612), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(612), - [aux_sym_hash_known_hosts_token1] = ACTIONS(612), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(612), - [aux_sym_hostbased_authentication_token1] = ACTIONS(612), - [aux_sym_host_key_algorithms_token1] = ACTIONS(612), - [aux_sym_host_key_alias_token1] = ACTIONS(612), - [aux_sym_hostname_token1] = ACTIONS(612), - [aux_sym_identities_only_token1] = ACTIONS(612), - [aux_sym_identity_agent_token1] = ACTIONS(612), - [aux_sym_identity_file_token1] = ACTIONS(612), - [aux_sym_ignore_unknown_token1] = ACTIONS(612), - [aux_sym_include_token1] = ACTIONS(612), - [aux_sym_ip_qos_token1] = ACTIONS(612), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(612), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(612), - [aux_sym_kex_algorithms_token1] = ACTIONS(612), - [aux_sym_known_hosts_command_token1] = ACTIONS(612), - [aux_sym_local_command_token1] = ACTIONS(612), - [aux_sym_local_forward_token1] = ACTIONS(612), - [aux_sym_log_level_token1] = ACTIONS(612), - [aux_sym_log_verbose_token1] = ACTIONS(612), - [aux_sym_macs_token1] = ACTIONS(612), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(612), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(612), - [aux_sym_password_authentication_token1] = ACTIONS(612), - [aux_sym_permit_local_command_token1] = ACTIONS(612), - [aux_sym_permit_remote_open_token1] = ACTIONS(612), - [aux_sym_pkcs11_provider_token1] = ACTIONS(612), - [aux_sym_port_token1] = ACTIONS(612), - [aux_sym_preferred_authentications_token1] = ACTIONS(612), - [aux_sym_protocol_token1] = ACTIONS(612), - [aux_sym_proxy_command_token1] = ACTIONS(612), - [aux_sym_proxy_jump_token1] = ACTIONS(612), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(612), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(612), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(612), - [aux_sym_pubkey_authentication_token1] = ACTIONS(612), - [aux_sym_rekey_limit_token1] = ACTIONS(612), - [aux_sym_remote_command_token1] = ACTIONS(612), - [aux_sym_remote_forward_token1] = ACTIONS(612), - [aux_sym_request_tty_token1] = ACTIONS(612), - [aux_sym_required_rsa_size_token1] = ACTIONS(612), - [aux_sym_revoked_host_keys_token1] = ACTIONS(612), - [aux_sym_security_key_provider_token1] = ACTIONS(612), - [aux_sym_send_env_token1] = ACTIONS(612), - [aux_sym_server_alive_count_max_token1] = ACTIONS(612), - [aux_sym_server_alive_interval_token1] = ACTIONS(612), - [aux_sym_session_type_token1] = ACTIONS(612), - [aux_sym_set_env_token1] = ACTIONS(612), - [aux_sym_stdin_null_token1] = ACTIONS(612), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(612), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(612), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(612), - [aux_sym_syslog_facility_token1] = ACTIONS(612), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(612), - [aux_sym_keep_alive_token1] = ACTIONS(612), - [aux_sym_tag_token1] = ACTIONS(612), - [aux_sym_tunnel_token1] = ACTIONS(614), - [aux_sym_tunnel_device_token1] = ACTIONS(612), - [aux_sym_update_host_keys_token1] = ACTIONS(612), - [aux_sym_use_keychain_token1] = ACTIONS(612), - [aux_sym_use_roaming_token1] = ACTIONS(612), - [aux_sym_user_token1] = ACTIONS(614), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(612), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(612), - [aux_sym_visual_host_key_token1] = ACTIONS(612), - [aux_sym_xauth_location_token1] = ACTIONS(612), + [ts_builtin_sym_end] = ACTIONS(1963), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1965), + [aux_sym_match_token1] = ACTIONS(1963), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1963), + [aux_sym_address_family_token1] = ACTIONS(1963), + [aux_sym_batch_mode_token1] = ACTIONS(1963), + [aux_sym_bind_address_token1] = ACTIONS(1963), + [aux_sym_bind_interface_token1] = ACTIONS(1963), + [aux_sym_canonical_domains_token1] = ACTIONS(1963), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1963), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1963), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1963), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1963), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1963), + [aux_sym_certificate_file_token1] = ACTIONS(1963), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1963), + [aux_sym_channel_timeout_token1] = ACTIONS(1963), + [aux_sym_check_host_ip_token1] = ACTIONS(1963), + [aux_sym_ciphers_token1] = ACTIONS(1963), + [aux_sym_cipher_token1] = ACTIONS(1965), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1963), + [aux_sym_compression_token1] = ACTIONS(1963), + [aux_sym_connection_attempts_token1] = ACTIONS(1963), + [aux_sym_connect_timeout_token1] = ACTIONS(1963), + [aux_sym_control_master_token1] = ACTIONS(1963), + [aux_sym_control_path_token1] = ACTIONS(1963), + [aux_sym_control_persist_token1] = ACTIONS(1963), + [aux_sym_dynamic_forward_token1] = ACTIONS(1963), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1963), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1963), + [aux_sym_escape_char_token1] = ACTIONS(1963), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1963), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1963), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1963), + [aux_sym_forward_agent_token1] = ACTIONS(1963), + [aux_sym_forward_x11_token1] = ACTIONS(1965), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1963), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1963), + [aux_sym_gateway_ports_token1] = ACTIONS(1963), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1963), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1963), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1963), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1963), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1963), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1963), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1963), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1963), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1963), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1963), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1963), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1963), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1963), + [aux_sym_host_key_alias_token1] = ACTIONS(1963), + [aux_sym_hostname_token1] = ACTIONS(1963), + [aux_sym_identities_only_token1] = ACTIONS(1963), + [aux_sym_identity_agent_token1] = ACTIONS(1963), + [aux_sym_identity_file_token1] = ACTIONS(1963), + [aux_sym_ignore_unknown_token1] = ACTIONS(1963), + [aux_sym_include_token1] = ACTIONS(1963), + [aux_sym_ip_qos_token1] = ACTIONS(1963), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1963), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1963), + [aux_sym_kex_algorithms_token1] = ACTIONS(1963), + [aux_sym_known_hosts_command_token1] = ACTIONS(1963), + [aux_sym_local_command_token1] = ACTIONS(1963), + [aux_sym_local_forward_token1] = ACTIONS(1963), + [aux_sym_log_level_token1] = ACTIONS(1963), + [aux_sym_log_verbose_token1] = ACTIONS(1963), + [aux_sym_macs_token1] = ACTIONS(1963), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1963), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1963), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1963), + [aux_sym_password_authentication_token1] = ACTIONS(1963), + [aux_sym_permit_local_command_token1] = ACTIONS(1963), + [aux_sym_permit_remote_open_token1] = ACTIONS(1963), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1963), + [aux_sym_port_token1] = ACTIONS(1963), + [aux_sym_preferred_authentications_token1] = ACTIONS(1963), + [aux_sym_protocol_token1] = ACTIONS(1963), + [aux_sym_proxy_command_token1] = ACTIONS(1963), + [aux_sym_proxy_jump_token1] = ACTIONS(1963), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1963), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1963), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1963), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1963), + [aux_sym_rekey_limit_token1] = ACTIONS(1963), + [aux_sym_remote_command_token1] = ACTIONS(1963), + [aux_sym_remote_forward_token1] = ACTIONS(1963), + [aux_sym_request_tty_token1] = ACTIONS(1963), + [aux_sym_required_rsa_size_token1] = ACTIONS(1963), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1963), + [aux_sym_security_key_provider_token1] = ACTIONS(1963), + [aux_sym_send_env_token1] = ACTIONS(1963), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1963), + [aux_sym_server_alive_interval_token1] = ACTIONS(1963), + [aux_sym_session_type_token1] = ACTIONS(1963), + [aux_sym_set_env_token1] = ACTIONS(1963), + [aux_sym_stdin_null_token1] = ACTIONS(1963), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1963), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1963), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1963), + [aux_sym_syslog_facility_token1] = ACTIONS(1963), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1963), + [aux_sym_keep_alive_token1] = ACTIONS(1963), + [aux_sym_tag_token1] = ACTIONS(1963), + [aux_sym_tunnel_token1] = ACTIONS(1965), + [aux_sym_tunnel_device_token1] = ACTIONS(1963), + [aux_sym_update_host_keys_token1] = ACTIONS(1963), + [aux_sym_use_keychain_token1] = ACTIONS(1963), + [aux_sym_use_roaming_token1] = ACTIONS(1963), + [aux_sym_user_token1] = ACTIONS(1965), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1963), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1963), + [aux_sym_visual_host_key_token1] = ACTIONS(1963), + [aux_sym_xauth_location_token1] = ACTIONS(1963), }, [698] = { - [ts_builtin_sym_end] = ACTIONS(1044), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1046), - [aux_sym_match_token1] = ACTIONS(1044), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1044), - [aux_sym_address_family_token1] = ACTIONS(1044), - [aux_sym_batch_mode_token1] = ACTIONS(1044), - [aux_sym_bind_address_token1] = ACTIONS(1044), - [aux_sym_bind_interface_token1] = ACTIONS(1044), - [aux_sym_canonical_domains_token1] = ACTIONS(1044), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1044), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1044), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1044), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1044), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1044), - [aux_sym_certificate_file_token1] = ACTIONS(1044), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1044), - [aux_sym_channel_timeout_token1] = ACTIONS(1044), - [aux_sym_check_host_ip_token1] = ACTIONS(1044), - [aux_sym_ciphers_token1] = ACTIONS(1044), - [aux_sym_cipher_token1] = ACTIONS(1046), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1044), - [aux_sym_compression_token1] = ACTIONS(1044), - [aux_sym_connection_attempts_token1] = ACTIONS(1044), - [aux_sym_connect_timeout_token1] = ACTIONS(1044), - [aux_sym_control_master_token1] = ACTIONS(1044), - [aux_sym_control_path_token1] = ACTIONS(1044), - [aux_sym_control_persist_token1] = ACTIONS(1044), - [aux_sym_dynamic_forward_token1] = ACTIONS(1044), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1044), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1044), - [aux_sym_escape_char_token1] = ACTIONS(1044), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1044), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1044), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1044), - [aux_sym_forward_agent_token1] = ACTIONS(1044), - [aux_sym_forward_x11_token1] = ACTIONS(1046), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1044), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1044), - [aux_sym_gateway_ports_token1] = ACTIONS(1044), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1044), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1044), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1044), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1044), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1044), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1044), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1044), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1044), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1044), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1044), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1044), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1044), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1044), - [aux_sym_host_key_alias_token1] = ACTIONS(1044), - [aux_sym_hostname_token1] = ACTIONS(1044), - [aux_sym_identities_only_token1] = ACTIONS(1044), - [aux_sym_identity_agent_token1] = ACTIONS(1044), - [aux_sym_identity_file_token1] = ACTIONS(1044), - [aux_sym_ignore_unknown_token1] = ACTIONS(1044), - [aux_sym_include_token1] = ACTIONS(1044), - [aux_sym_ip_qos_token1] = ACTIONS(1044), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1044), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1044), - [aux_sym_kex_algorithms_token1] = ACTIONS(1044), - [aux_sym_known_hosts_command_token1] = ACTIONS(1044), - [aux_sym_local_command_token1] = ACTIONS(1044), - [aux_sym_local_forward_token1] = ACTIONS(1044), - [aux_sym_log_level_token1] = ACTIONS(1044), - [aux_sym_log_verbose_token1] = ACTIONS(1044), - [aux_sym_macs_token1] = ACTIONS(1044), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1044), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1044), - [aux_sym_password_authentication_token1] = ACTIONS(1044), - [aux_sym_permit_local_command_token1] = ACTIONS(1044), - [aux_sym_permit_remote_open_token1] = ACTIONS(1044), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1044), - [aux_sym_port_token1] = ACTIONS(1044), - [aux_sym_preferred_authentications_token1] = ACTIONS(1044), - [aux_sym_protocol_token1] = ACTIONS(1044), - [aux_sym_proxy_command_token1] = ACTIONS(1044), - [aux_sym_proxy_jump_token1] = ACTIONS(1044), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1044), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1044), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1044), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1044), - [aux_sym_rekey_limit_token1] = ACTIONS(1044), - [aux_sym_remote_command_token1] = ACTIONS(1044), - [aux_sym_remote_forward_token1] = ACTIONS(1044), - [aux_sym_request_tty_token1] = ACTIONS(1044), - [aux_sym_required_rsa_size_token1] = ACTIONS(1044), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1044), - [aux_sym_security_key_provider_token1] = ACTIONS(1044), - [aux_sym_send_env_token1] = ACTIONS(1044), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1044), - [aux_sym_server_alive_interval_token1] = ACTIONS(1044), - [aux_sym_session_type_token1] = ACTIONS(1044), - [aux_sym_set_env_token1] = ACTIONS(1044), - [aux_sym_stdin_null_token1] = ACTIONS(1044), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1044), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1044), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1044), - [aux_sym_syslog_facility_token1] = ACTIONS(1044), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1044), - [aux_sym_keep_alive_token1] = ACTIONS(1044), - [aux_sym_tag_token1] = ACTIONS(1044), - [aux_sym_tunnel_token1] = ACTIONS(1046), - [aux_sym_tunnel_device_token1] = ACTIONS(1044), - [aux_sym_update_host_keys_token1] = ACTIONS(1044), - [aux_sym_use_keychain_token1] = ACTIONS(1044), - [aux_sym_use_roaming_token1] = ACTIONS(1044), - [aux_sym_user_token1] = ACTIONS(1046), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1044), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1044), - [aux_sym_visual_host_key_token1] = ACTIONS(1044), - [aux_sym_xauth_location_token1] = ACTIONS(1044), + [ts_builtin_sym_end] = ACTIONS(1969), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1971), + [aux_sym_match_token1] = ACTIONS(1969), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1969), + [aux_sym_address_family_token1] = ACTIONS(1969), + [aux_sym_batch_mode_token1] = ACTIONS(1969), + [aux_sym_bind_address_token1] = ACTIONS(1969), + [aux_sym_bind_interface_token1] = ACTIONS(1969), + [aux_sym_canonical_domains_token1] = ACTIONS(1969), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1969), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1969), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1969), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1969), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1969), + [aux_sym_certificate_file_token1] = ACTIONS(1969), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1969), + [aux_sym_channel_timeout_token1] = ACTIONS(1969), + [aux_sym_check_host_ip_token1] = ACTIONS(1969), + [aux_sym_ciphers_token1] = ACTIONS(1969), + [aux_sym_cipher_token1] = ACTIONS(1971), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1969), + [aux_sym_compression_token1] = ACTIONS(1969), + [aux_sym_connection_attempts_token1] = ACTIONS(1969), + [aux_sym_connect_timeout_token1] = ACTIONS(1969), + [aux_sym_control_master_token1] = ACTIONS(1969), + [aux_sym_control_path_token1] = ACTIONS(1969), + [aux_sym_control_persist_token1] = ACTIONS(1969), + [aux_sym_dynamic_forward_token1] = ACTIONS(1969), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1969), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1969), + [aux_sym_escape_char_token1] = ACTIONS(1969), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1969), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1969), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1969), + [aux_sym_forward_agent_token1] = ACTIONS(1969), + [aux_sym_forward_x11_token1] = ACTIONS(1971), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1969), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1969), + [aux_sym_gateway_ports_token1] = ACTIONS(1969), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1969), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1969), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1969), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1969), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1969), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1969), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1969), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1969), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1969), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1969), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1969), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1969), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1969), + [aux_sym_host_key_alias_token1] = ACTIONS(1969), + [aux_sym_hostname_token1] = ACTIONS(1969), + [aux_sym_identities_only_token1] = ACTIONS(1969), + [aux_sym_identity_agent_token1] = ACTIONS(1969), + [aux_sym_identity_file_token1] = ACTIONS(1969), + [aux_sym_ignore_unknown_token1] = ACTIONS(1969), + [aux_sym_include_token1] = ACTIONS(1969), + [aux_sym_ip_qos_token1] = ACTIONS(1969), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1969), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1969), + [aux_sym_kex_algorithms_token1] = ACTIONS(1969), + [aux_sym_known_hosts_command_token1] = ACTIONS(1969), + [aux_sym_local_command_token1] = ACTIONS(1969), + [aux_sym_local_forward_token1] = ACTIONS(1969), + [aux_sym_log_level_token1] = ACTIONS(1969), + [aux_sym_log_verbose_token1] = ACTIONS(1969), + [aux_sym_macs_token1] = ACTIONS(1969), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1969), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1969), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1969), + [aux_sym_password_authentication_token1] = ACTIONS(1969), + [aux_sym_permit_local_command_token1] = ACTIONS(1969), + [aux_sym_permit_remote_open_token1] = ACTIONS(1969), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1969), + [aux_sym_port_token1] = ACTIONS(1969), + [aux_sym_preferred_authentications_token1] = ACTIONS(1969), + [aux_sym_protocol_token1] = ACTIONS(1969), + [aux_sym_proxy_command_token1] = ACTIONS(1969), + [aux_sym_proxy_jump_token1] = ACTIONS(1969), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1969), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1969), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1969), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1969), + [aux_sym_rekey_limit_token1] = ACTIONS(1969), + [aux_sym_remote_command_token1] = ACTIONS(1969), + [aux_sym_remote_forward_token1] = ACTIONS(1969), + [aux_sym_request_tty_token1] = ACTIONS(1969), + [aux_sym_required_rsa_size_token1] = ACTIONS(1969), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1969), + [aux_sym_security_key_provider_token1] = ACTIONS(1969), + [aux_sym_send_env_token1] = ACTIONS(1969), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1969), + [aux_sym_server_alive_interval_token1] = ACTIONS(1969), + [aux_sym_session_type_token1] = ACTIONS(1969), + [aux_sym_set_env_token1] = ACTIONS(1969), + [aux_sym_stdin_null_token1] = ACTIONS(1969), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1969), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1969), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1969), + [aux_sym_syslog_facility_token1] = ACTIONS(1969), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1969), + [aux_sym_keep_alive_token1] = ACTIONS(1969), + [aux_sym_tag_token1] = ACTIONS(1969), + [aux_sym_tunnel_token1] = ACTIONS(1971), + [aux_sym_tunnel_device_token1] = ACTIONS(1969), + [aux_sym_update_host_keys_token1] = ACTIONS(1969), + [aux_sym_use_keychain_token1] = ACTIONS(1969), + [aux_sym_use_roaming_token1] = ACTIONS(1969), + [aux_sym_user_token1] = ACTIONS(1971), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1969), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1969), + [aux_sym_visual_host_key_token1] = ACTIONS(1969), + [aux_sym_xauth_location_token1] = ACTIONS(1969), }, [699] = { - [ts_builtin_sym_end] = ACTIONS(1038), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1040), - [aux_sym_match_token1] = ACTIONS(1038), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1038), - [aux_sym_address_family_token1] = ACTIONS(1038), - [aux_sym_batch_mode_token1] = ACTIONS(1038), - [aux_sym_bind_address_token1] = ACTIONS(1038), - [aux_sym_bind_interface_token1] = ACTIONS(1038), - [aux_sym_canonical_domains_token1] = ACTIONS(1038), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1038), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1038), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1038), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1038), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1038), - [aux_sym_certificate_file_token1] = ACTIONS(1038), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1038), - [aux_sym_channel_timeout_token1] = ACTIONS(1038), - [aux_sym_check_host_ip_token1] = ACTIONS(1038), - [aux_sym_ciphers_token1] = ACTIONS(1038), - [aux_sym_cipher_token1] = ACTIONS(1040), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1038), - [aux_sym_compression_token1] = ACTIONS(1038), - [aux_sym_connection_attempts_token1] = ACTIONS(1038), - [aux_sym_connect_timeout_token1] = ACTIONS(1038), - [aux_sym_control_master_token1] = ACTIONS(1038), - [aux_sym_control_path_token1] = ACTIONS(1038), - [aux_sym_control_persist_token1] = ACTIONS(1038), - [aux_sym_dynamic_forward_token1] = ACTIONS(1038), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1038), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1038), - [aux_sym_escape_char_token1] = ACTIONS(1038), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1038), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1038), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1038), - [aux_sym_forward_agent_token1] = ACTIONS(1038), - [aux_sym_forward_x11_token1] = ACTIONS(1040), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1038), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1038), - [aux_sym_gateway_ports_token1] = ACTIONS(1038), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1038), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1038), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1038), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1038), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1038), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1038), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1038), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1038), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1038), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1038), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1038), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1038), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1038), - [aux_sym_host_key_alias_token1] = ACTIONS(1038), - [aux_sym_hostname_token1] = ACTIONS(1038), - [aux_sym_identities_only_token1] = ACTIONS(1038), - [aux_sym_identity_agent_token1] = ACTIONS(1038), - [aux_sym_identity_file_token1] = ACTIONS(1038), - [aux_sym_ignore_unknown_token1] = ACTIONS(1038), - [aux_sym_include_token1] = ACTIONS(1038), - [aux_sym_ip_qos_token1] = ACTIONS(1038), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1038), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1038), - [aux_sym_kex_algorithms_token1] = ACTIONS(1038), - [aux_sym_known_hosts_command_token1] = ACTIONS(1038), - [aux_sym_local_command_token1] = ACTIONS(1038), - [aux_sym_local_forward_token1] = ACTIONS(1038), - [aux_sym_log_level_token1] = ACTIONS(1038), - [aux_sym_log_verbose_token1] = ACTIONS(1038), - [aux_sym_macs_token1] = ACTIONS(1038), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1038), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1038), - [aux_sym_password_authentication_token1] = ACTIONS(1038), - [aux_sym_permit_local_command_token1] = ACTIONS(1038), - [aux_sym_permit_remote_open_token1] = ACTIONS(1038), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1038), - [aux_sym_port_token1] = ACTIONS(1038), - [aux_sym_preferred_authentications_token1] = ACTIONS(1038), - [aux_sym_protocol_token1] = ACTIONS(1038), - [aux_sym_proxy_command_token1] = ACTIONS(1038), - [aux_sym_proxy_jump_token1] = ACTIONS(1038), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1038), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1038), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1038), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1038), - [aux_sym_rekey_limit_token1] = ACTIONS(1038), - [aux_sym_remote_command_token1] = ACTIONS(1038), - [aux_sym_remote_forward_token1] = ACTIONS(1038), - [aux_sym_request_tty_token1] = ACTIONS(1038), - [aux_sym_required_rsa_size_token1] = ACTIONS(1038), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1038), - [aux_sym_security_key_provider_token1] = ACTIONS(1038), - [aux_sym_send_env_token1] = ACTIONS(1038), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1038), - [aux_sym_server_alive_interval_token1] = ACTIONS(1038), - [aux_sym_session_type_token1] = ACTIONS(1038), - [aux_sym_set_env_token1] = ACTIONS(1038), - [aux_sym_stdin_null_token1] = ACTIONS(1038), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1038), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1038), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1038), - [aux_sym_syslog_facility_token1] = ACTIONS(1038), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1038), - [aux_sym_keep_alive_token1] = ACTIONS(1038), - [aux_sym_tag_token1] = ACTIONS(1038), - [aux_sym_tunnel_token1] = ACTIONS(1040), - [aux_sym_tunnel_device_token1] = ACTIONS(1038), - [aux_sym_update_host_keys_token1] = ACTIONS(1038), - [aux_sym_use_keychain_token1] = ACTIONS(1038), - [aux_sym_use_roaming_token1] = ACTIONS(1038), - [aux_sym_user_token1] = ACTIONS(1040), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1038), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1038), - [aux_sym_visual_host_key_token1] = ACTIONS(1038), - [aux_sym_xauth_location_token1] = ACTIONS(1038), + [ts_builtin_sym_end] = ACTIONS(1671), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1673), + [aux_sym_match_token1] = ACTIONS(1671), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1671), + [aux_sym_address_family_token1] = ACTIONS(1671), + [aux_sym_batch_mode_token1] = ACTIONS(1671), + [aux_sym_bind_address_token1] = ACTIONS(1671), + [aux_sym_bind_interface_token1] = ACTIONS(1671), + [aux_sym_canonical_domains_token1] = ACTIONS(1671), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1671), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1671), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1671), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1671), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1671), + [aux_sym_certificate_file_token1] = ACTIONS(1671), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1671), + [aux_sym_channel_timeout_token1] = ACTIONS(1671), + [aux_sym_check_host_ip_token1] = ACTIONS(1671), + [aux_sym_ciphers_token1] = ACTIONS(1671), + [aux_sym_cipher_token1] = ACTIONS(1673), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1671), + [aux_sym_compression_token1] = ACTIONS(1671), + [aux_sym_connection_attempts_token1] = ACTIONS(1671), + [aux_sym_connect_timeout_token1] = ACTIONS(1671), + [aux_sym_control_master_token1] = ACTIONS(1671), + [aux_sym_control_path_token1] = ACTIONS(1671), + [aux_sym_control_persist_token1] = ACTIONS(1671), + [aux_sym_dynamic_forward_token1] = ACTIONS(1671), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1671), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1671), + [aux_sym_escape_char_token1] = ACTIONS(1671), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1671), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1671), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1671), + [aux_sym_forward_agent_token1] = ACTIONS(1671), + [aux_sym_forward_x11_token1] = ACTIONS(1673), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1671), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1671), + [aux_sym_gateway_ports_token1] = ACTIONS(1671), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1671), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1671), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1671), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1671), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1671), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1671), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1671), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1671), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1671), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1671), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1671), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1671), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1671), + [aux_sym_host_key_alias_token1] = ACTIONS(1671), + [aux_sym_hostname_token1] = ACTIONS(1671), + [aux_sym_identities_only_token1] = ACTIONS(1671), + [aux_sym_identity_agent_token1] = ACTIONS(1671), + [aux_sym_identity_file_token1] = ACTIONS(1671), + [aux_sym_ignore_unknown_token1] = ACTIONS(1671), + [aux_sym_include_token1] = ACTIONS(1671), + [aux_sym_ip_qos_token1] = ACTIONS(1671), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1671), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1671), + [aux_sym_kex_algorithms_token1] = ACTIONS(1671), + [aux_sym_known_hosts_command_token1] = ACTIONS(1671), + [aux_sym_local_command_token1] = ACTIONS(1671), + [aux_sym_local_forward_token1] = ACTIONS(1671), + [aux_sym_log_level_token1] = ACTIONS(1671), + [aux_sym_log_verbose_token1] = ACTIONS(1671), + [aux_sym_macs_token1] = ACTIONS(1671), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1671), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1671), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1671), + [aux_sym_password_authentication_token1] = ACTIONS(1671), + [aux_sym_permit_local_command_token1] = ACTIONS(1671), + [aux_sym_permit_remote_open_token1] = ACTIONS(1671), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1671), + [aux_sym_port_token1] = ACTIONS(1671), + [aux_sym_preferred_authentications_token1] = ACTIONS(1671), + [aux_sym_protocol_token1] = ACTIONS(1671), + [aux_sym_proxy_command_token1] = ACTIONS(1671), + [aux_sym_proxy_jump_token1] = ACTIONS(1671), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1671), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1671), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1671), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1671), + [aux_sym_rekey_limit_token1] = ACTIONS(1671), + [aux_sym_remote_command_token1] = ACTIONS(1671), + [aux_sym_remote_forward_token1] = ACTIONS(1671), + [aux_sym_request_tty_token1] = ACTIONS(1671), + [aux_sym_required_rsa_size_token1] = ACTIONS(1671), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1671), + [aux_sym_security_key_provider_token1] = ACTIONS(1671), + [aux_sym_send_env_token1] = ACTIONS(1671), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1671), + [aux_sym_server_alive_interval_token1] = ACTIONS(1671), + [aux_sym_session_type_token1] = ACTIONS(1671), + [aux_sym_set_env_token1] = ACTIONS(1671), + [aux_sym_stdin_null_token1] = ACTIONS(1671), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1671), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1671), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1671), + [aux_sym_syslog_facility_token1] = ACTIONS(1671), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1671), + [aux_sym_keep_alive_token1] = ACTIONS(1671), + [aux_sym_tag_token1] = ACTIONS(1671), + [aux_sym_tunnel_token1] = ACTIONS(1673), + [aux_sym_tunnel_device_token1] = ACTIONS(1671), + [aux_sym_update_host_keys_token1] = ACTIONS(1671), + [aux_sym_use_keychain_token1] = ACTIONS(1671), + [aux_sym_use_roaming_token1] = ACTIONS(1671), + [aux_sym_user_token1] = ACTIONS(1673), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1671), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1671), + [aux_sym_visual_host_key_token1] = ACTIONS(1671), + [aux_sym_xauth_location_token1] = ACTIONS(1671), }, [700] = { - [ts_builtin_sym_end] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1920), - [aux_sym_match_token1] = ACTIONS(1918), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1918), - [aux_sym_address_family_token1] = ACTIONS(1918), - [aux_sym_batch_mode_token1] = ACTIONS(1918), - [aux_sym_bind_address_token1] = ACTIONS(1918), - [aux_sym_bind_interface_token1] = ACTIONS(1918), - [aux_sym_canonical_domains_token1] = ACTIONS(1918), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1918), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1918), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1918), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1918), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1918), - [aux_sym_certificate_file_token1] = ACTIONS(1918), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1918), - [aux_sym_channel_timeout_token1] = ACTIONS(1918), - [aux_sym_check_host_ip_token1] = ACTIONS(1918), - [aux_sym_ciphers_token1] = ACTIONS(1918), - [aux_sym_cipher_token1] = ACTIONS(1920), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1918), - [aux_sym_compression_token1] = ACTIONS(1918), - [aux_sym_connection_attempts_token1] = ACTIONS(1918), - [aux_sym_connect_timeout_token1] = ACTIONS(1918), - [aux_sym_control_master_token1] = ACTIONS(1918), - [aux_sym_control_path_token1] = ACTIONS(1918), - [aux_sym_control_persist_token1] = ACTIONS(1918), - [aux_sym_dynamic_forward_token1] = ACTIONS(1918), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1918), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1918), - [aux_sym_escape_char_token1] = ACTIONS(1918), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1918), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1918), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1918), - [aux_sym_forward_agent_token1] = ACTIONS(1918), - [aux_sym_forward_x11_token1] = ACTIONS(1920), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1918), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1918), - [aux_sym_gateway_ports_token1] = ACTIONS(1918), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1918), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1918), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1918), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1918), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1918), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1918), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1918), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1918), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1918), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1918), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1918), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1918), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1918), - [aux_sym_host_key_alias_token1] = ACTIONS(1918), - [aux_sym_hostname_token1] = ACTIONS(1918), - [aux_sym_identities_only_token1] = ACTIONS(1918), - [aux_sym_identity_agent_token1] = ACTIONS(1918), - [aux_sym_identity_file_token1] = ACTIONS(1918), - [aux_sym_ignore_unknown_token1] = ACTIONS(1918), - [aux_sym_include_token1] = ACTIONS(1918), - [aux_sym_ip_qos_token1] = ACTIONS(1918), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1918), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1918), - [aux_sym_kex_algorithms_token1] = ACTIONS(1918), - [aux_sym_known_hosts_command_token1] = ACTIONS(1918), - [aux_sym_local_command_token1] = ACTIONS(1918), - [aux_sym_local_forward_token1] = ACTIONS(1918), - [aux_sym_log_level_token1] = ACTIONS(1918), - [aux_sym_log_verbose_token1] = ACTIONS(1918), - [aux_sym_macs_token1] = ACTIONS(1918), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1918), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1918), - [aux_sym_password_authentication_token1] = ACTIONS(1918), - [aux_sym_permit_local_command_token1] = ACTIONS(1918), - [aux_sym_permit_remote_open_token1] = ACTIONS(1918), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1918), - [aux_sym_port_token1] = ACTIONS(1918), - [aux_sym_preferred_authentications_token1] = ACTIONS(1918), - [aux_sym_protocol_token1] = ACTIONS(1918), - [aux_sym_proxy_command_token1] = ACTIONS(1918), - [aux_sym_proxy_jump_token1] = ACTIONS(1918), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1918), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1918), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1918), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1918), - [aux_sym_rekey_limit_token1] = ACTIONS(1918), - [aux_sym_remote_command_token1] = ACTIONS(1918), - [aux_sym_remote_forward_token1] = ACTIONS(1918), - [aux_sym_request_tty_token1] = ACTIONS(1918), - [aux_sym_required_rsa_size_token1] = ACTIONS(1918), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1918), - [aux_sym_security_key_provider_token1] = ACTIONS(1918), - [aux_sym_send_env_token1] = ACTIONS(1918), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1918), - [aux_sym_server_alive_interval_token1] = ACTIONS(1918), - [aux_sym_session_type_token1] = ACTIONS(1918), - [aux_sym_set_env_token1] = ACTIONS(1918), - [aux_sym_stdin_null_token1] = ACTIONS(1918), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1918), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1918), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1918), - [aux_sym_syslog_facility_token1] = ACTIONS(1918), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1918), - [aux_sym_keep_alive_token1] = ACTIONS(1918), - [aux_sym_tag_token1] = ACTIONS(1918), - [aux_sym_tunnel_token1] = ACTIONS(1920), - [aux_sym_tunnel_device_token1] = ACTIONS(1918), - [aux_sym_update_host_keys_token1] = ACTIONS(1918), - [aux_sym_use_keychain_token1] = ACTIONS(1918), - [aux_sym_use_roaming_token1] = ACTIONS(1918), - [aux_sym_user_token1] = ACTIONS(1920), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1918), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1918), - [aux_sym_visual_host_key_token1] = ACTIONS(1918), - [aux_sym_xauth_location_token1] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1947), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1949), + [aux_sym_match_token1] = ACTIONS(1947), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1947), + [aux_sym_address_family_token1] = ACTIONS(1947), + [aux_sym_batch_mode_token1] = ACTIONS(1947), + [aux_sym_bind_address_token1] = ACTIONS(1947), + [aux_sym_bind_interface_token1] = ACTIONS(1947), + [aux_sym_canonical_domains_token1] = ACTIONS(1947), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1947), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1947), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1947), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1947), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1947), + [aux_sym_certificate_file_token1] = ACTIONS(1947), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1947), + [aux_sym_channel_timeout_token1] = ACTIONS(1947), + [aux_sym_check_host_ip_token1] = ACTIONS(1947), + [aux_sym_ciphers_token1] = ACTIONS(1947), + [aux_sym_cipher_token1] = ACTIONS(1949), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1947), + [aux_sym_compression_token1] = ACTIONS(1947), + [aux_sym_connection_attempts_token1] = ACTIONS(1947), + [aux_sym_connect_timeout_token1] = ACTIONS(1947), + [aux_sym_control_master_token1] = ACTIONS(1947), + [aux_sym_control_path_token1] = ACTIONS(1947), + [aux_sym_control_persist_token1] = ACTIONS(1947), + [aux_sym_dynamic_forward_token1] = ACTIONS(1947), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1947), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1947), + [aux_sym_escape_char_token1] = ACTIONS(1947), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1947), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1947), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1947), + [aux_sym_forward_agent_token1] = ACTIONS(1947), + [aux_sym_forward_x11_token1] = ACTIONS(1949), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1947), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1947), + [aux_sym_gateway_ports_token1] = ACTIONS(1947), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1947), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1947), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1947), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1947), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1947), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1947), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1947), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1947), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1947), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1947), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1947), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1947), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1947), + [aux_sym_host_key_alias_token1] = ACTIONS(1947), + [aux_sym_hostname_token1] = ACTIONS(1947), + [aux_sym_identities_only_token1] = ACTIONS(1947), + [aux_sym_identity_agent_token1] = ACTIONS(1947), + [aux_sym_identity_file_token1] = ACTIONS(1947), + [aux_sym_ignore_unknown_token1] = ACTIONS(1947), + [aux_sym_include_token1] = ACTIONS(1947), + [aux_sym_ip_qos_token1] = ACTIONS(1947), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1947), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1947), + [aux_sym_kex_algorithms_token1] = ACTIONS(1947), + [aux_sym_known_hosts_command_token1] = ACTIONS(1947), + [aux_sym_local_command_token1] = ACTIONS(1947), + [aux_sym_local_forward_token1] = ACTIONS(1947), + [aux_sym_log_level_token1] = ACTIONS(1947), + [aux_sym_log_verbose_token1] = ACTIONS(1947), + [aux_sym_macs_token1] = ACTIONS(1947), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1947), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1947), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1947), + [aux_sym_password_authentication_token1] = ACTIONS(1947), + [aux_sym_permit_local_command_token1] = ACTIONS(1947), + [aux_sym_permit_remote_open_token1] = ACTIONS(1947), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1947), + [aux_sym_port_token1] = ACTIONS(1947), + [aux_sym_preferred_authentications_token1] = ACTIONS(1947), + [aux_sym_protocol_token1] = ACTIONS(1947), + [aux_sym_proxy_command_token1] = ACTIONS(1947), + [aux_sym_proxy_jump_token1] = ACTIONS(1947), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1947), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1947), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1947), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1947), + [aux_sym_rekey_limit_token1] = ACTIONS(1947), + [aux_sym_remote_command_token1] = ACTIONS(1947), + [aux_sym_remote_forward_token1] = ACTIONS(1947), + [aux_sym_request_tty_token1] = ACTIONS(1947), + [aux_sym_required_rsa_size_token1] = ACTIONS(1947), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1947), + [aux_sym_security_key_provider_token1] = ACTIONS(1947), + [aux_sym_send_env_token1] = ACTIONS(1947), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1947), + [aux_sym_server_alive_interval_token1] = ACTIONS(1947), + [aux_sym_session_type_token1] = ACTIONS(1947), + [aux_sym_set_env_token1] = ACTIONS(1947), + [aux_sym_stdin_null_token1] = ACTIONS(1947), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1947), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1947), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1947), + [aux_sym_syslog_facility_token1] = ACTIONS(1947), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1947), + [aux_sym_keep_alive_token1] = ACTIONS(1947), + [aux_sym_tag_token1] = ACTIONS(1947), + [aux_sym_tunnel_token1] = ACTIONS(1949), + [aux_sym_tunnel_device_token1] = ACTIONS(1947), + [aux_sym_update_host_keys_token1] = ACTIONS(1947), + [aux_sym_use_keychain_token1] = ACTIONS(1947), + [aux_sym_use_roaming_token1] = ACTIONS(1947), + [aux_sym_user_token1] = ACTIONS(1949), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1947), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1947), + [aux_sym_visual_host_key_token1] = ACTIONS(1947), + [aux_sym_xauth_location_token1] = ACTIONS(1947), }, [701] = { - [ts_builtin_sym_end] = ACTIONS(732), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(734), - [aux_sym_match_token1] = ACTIONS(732), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(732), - [aux_sym_address_family_token1] = ACTIONS(732), - [aux_sym_batch_mode_token1] = ACTIONS(732), - [aux_sym_bind_address_token1] = ACTIONS(732), - [aux_sym_bind_interface_token1] = ACTIONS(732), - [aux_sym_canonical_domains_token1] = ACTIONS(732), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(732), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(732), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(732), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(732), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(732), - [aux_sym_certificate_file_token1] = ACTIONS(732), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(732), - [aux_sym_channel_timeout_token1] = ACTIONS(732), - [aux_sym_check_host_ip_token1] = ACTIONS(732), - [aux_sym_ciphers_token1] = ACTIONS(732), - [aux_sym_cipher_token1] = ACTIONS(734), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(732), - [aux_sym_compression_token1] = ACTIONS(732), - [aux_sym_connection_attempts_token1] = ACTIONS(732), - [aux_sym_connect_timeout_token1] = ACTIONS(732), - [aux_sym_control_master_token1] = ACTIONS(732), - [aux_sym_control_path_token1] = ACTIONS(732), - [aux_sym_control_persist_token1] = ACTIONS(732), - [aux_sym_dynamic_forward_token1] = ACTIONS(732), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(732), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(732), - [aux_sym_escape_char_token1] = ACTIONS(732), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(732), - [aux_sym_fingerprint_hash_token1] = ACTIONS(732), - [aux_sym_fork_after_authentication_token1] = ACTIONS(732), - [aux_sym_forward_agent_token1] = ACTIONS(732), - [aux_sym_forward_x11_token1] = ACTIONS(734), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(732), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(732), - [aux_sym_gateway_ports_token1] = ACTIONS(732), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(732), - [aux_sym_gssapi_authentication_token1] = ACTIONS(732), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(732), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(732), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(732), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(732), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(732), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(732), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(732), - [aux_sym_hash_known_hosts_token1] = ACTIONS(732), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(732), - [aux_sym_hostbased_authentication_token1] = ACTIONS(732), - [aux_sym_host_key_algorithms_token1] = ACTIONS(732), - [aux_sym_host_key_alias_token1] = ACTIONS(732), - [aux_sym_hostname_token1] = ACTIONS(732), - [aux_sym_identities_only_token1] = ACTIONS(732), - [aux_sym_identity_agent_token1] = ACTIONS(732), - [aux_sym_identity_file_token1] = ACTIONS(732), - [aux_sym_ignore_unknown_token1] = ACTIONS(732), - [aux_sym_include_token1] = ACTIONS(732), - [aux_sym_ip_qos_token1] = ACTIONS(732), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(732), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(732), - [aux_sym_kex_algorithms_token1] = ACTIONS(732), - [aux_sym_known_hosts_command_token1] = ACTIONS(732), - [aux_sym_local_command_token1] = ACTIONS(732), - [aux_sym_local_forward_token1] = ACTIONS(732), - [aux_sym_log_level_token1] = ACTIONS(732), - [aux_sym_log_verbose_token1] = ACTIONS(732), - [aux_sym_macs_token1] = ACTIONS(732), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(732), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(732), - [aux_sym_password_authentication_token1] = ACTIONS(732), - [aux_sym_permit_local_command_token1] = ACTIONS(732), - [aux_sym_permit_remote_open_token1] = ACTIONS(732), - [aux_sym_pkcs11_provider_token1] = ACTIONS(732), - [aux_sym_port_token1] = ACTIONS(732), - [aux_sym_preferred_authentications_token1] = ACTIONS(732), - [aux_sym_protocol_token1] = ACTIONS(732), - [aux_sym_proxy_command_token1] = ACTIONS(732), - [aux_sym_proxy_jump_token1] = ACTIONS(732), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(732), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(732), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(732), - [aux_sym_pubkey_authentication_token1] = ACTIONS(732), - [aux_sym_rekey_limit_token1] = ACTIONS(732), - [aux_sym_remote_command_token1] = ACTIONS(732), - [aux_sym_remote_forward_token1] = ACTIONS(732), - [aux_sym_request_tty_token1] = ACTIONS(732), - [aux_sym_required_rsa_size_token1] = ACTIONS(732), - [aux_sym_revoked_host_keys_token1] = ACTIONS(732), - [aux_sym_security_key_provider_token1] = ACTIONS(732), - [aux_sym_send_env_token1] = ACTIONS(732), - [aux_sym_server_alive_count_max_token1] = ACTIONS(732), - [aux_sym_server_alive_interval_token1] = ACTIONS(732), - [aux_sym_session_type_token1] = ACTIONS(732), - [aux_sym_set_env_token1] = ACTIONS(732), - [aux_sym_stdin_null_token1] = ACTIONS(732), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(732), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(732), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(732), - [aux_sym_syslog_facility_token1] = ACTIONS(732), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(732), - [aux_sym_keep_alive_token1] = ACTIONS(732), - [aux_sym_tag_token1] = ACTIONS(732), - [aux_sym_tunnel_token1] = ACTIONS(734), - [aux_sym_tunnel_device_token1] = ACTIONS(732), - [aux_sym_update_host_keys_token1] = ACTIONS(732), - [aux_sym_use_keychain_token1] = ACTIONS(732), - [aux_sym_use_roaming_token1] = ACTIONS(732), - [aux_sym_user_token1] = ACTIONS(734), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(732), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(732), - [aux_sym_visual_host_key_token1] = ACTIONS(732), - [aux_sym_xauth_location_token1] = ACTIONS(732), + [ts_builtin_sym_end] = ACTIONS(971), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(973), + [aux_sym_match_token1] = ACTIONS(971), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(971), + [aux_sym_address_family_token1] = ACTIONS(971), + [aux_sym_batch_mode_token1] = ACTIONS(971), + [aux_sym_bind_address_token1] = ACTIONS(971), + [aux_sym_bind_interface_token1] = ACTIONS(971), + [aux_sym_canonical_domains_token1] = ACTIONS(971), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(971), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(971), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(971), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(971), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(971), + [aux_sym_certificate_file_token1] = ACTIONS(971), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(971), + [aux_sym_channel_timeout_token1] = ACTIONS(971), + [aux_sym_check_host_ip_token1] = ACTIONS(971), + [aux_sym_ciphers_token1] = ACTIONS(971), + [aux_sym_cipher_token1] = ACTIONS(973), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(971), + [aux_sym_compression_token1] = ACTIONS(971), + [aux_sym_connection_attempts_token1] = ACTIONS(971), + [aux_sym_connect_timeout_token1] = ACTIONS(971), + [aux_sym_control_master_token1] = ACTIONS(971), + [aux_sym_control_path_token1] = ACTIONS(971), + [aux_sym_control_persist_token1] = ACTIONS(971), + [aux_sym_dynamic_forward_token1] = ACTIONS(971), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(971), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(971), + [aux_sym_escape_char_token1] = ACTIONS(971), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(971), + [aux_sym_fingerprint_hash_token1] = ACTIONS(971), + [aux_sym_fork_after_authentication_token1] = ACTIONS(971), + [aux_sym_forward_agent_token1] = ACTIONS(971), + [aux_sym_forward_x11_token1] = ACTIONS(973), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(971), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(971), + [aux_sym_gateway_ports_token1] = ACTIONS(971), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(971), + [aux_sym_gssapi_authentication_token1] = ACTIONS(971), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(971), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(971), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(971), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(971), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(971), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(971), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(971), + [aux_sym_hash_known_hosts_token1] = ACTIONS(971), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(971), + [aux_sym_hostbased_authentication_token1] = ACTIONS(971), + [aux_sym_host_key_algorithms_token1] = ACTIONS(971), + [aux_sym_host_key_alias_token1] = ACTIONS(971), + [aux_sym_hostname_token1] = ACTIONS(971), + [aux_sym_identities_only_token1] = ACTIONS(971), + [aux_sym_identity_agent_token1] = ACTIONS(971), + [aux_sym_identity_file_token1] = ACTIONS(971), + [aux_sym_ignore_unknown_token1] = ACTIONS(971), + [aux_sym_include_token1] = ACTIONS(971), + [aux_sym_ip_qos_token1] = ACTIONS(971), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(971), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(971), + [aux_sym_kex_algorithms_token1] = ACTIONS(971), + [aux_sym_known_hosts_command_token1] = ACTIONS(971), + [aux_sym_local_command_token1] = ACTIONS(971), + [aux_sym_local_forward_token1] = ACTIONS(971), + [aux_sym_log_level_token1] = ACTIONS(971), + [aux_sym_log_verbose_token1] = ACTIONS(971), + [aux_sym_macs_token1] = ACTIONS(971), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(971), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(971), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(971), + [aux_sym_password_authentication_token1] = ACTIONS(971), + [aux_sym_permit_local_command_token1] = ACTIONS(971), + [aux_sym_permit_remote_open_token1] = ACTIONS(971), + [aux_sym_pkcs11_provider_token1] = ACTIONS(971), + [aux_sym_port_token1] = ACTIONS(971), + [aux_sym_preferred_authentications_token1] = ACTIONS(971), + [aux_sym_protocol_token1] = ACTIONS(971), + [aux_sym_proxy_command_token1] = ACTIONS(971), + [aux_sym_proxy_jump_token1] = ACTIONS(971), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(971), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(971), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(971), + [aux_sym_pubkey_authentication_token1] = ACTIONS(971), + [aux_sym_rekey_limit_token1] = ACTIONS(971), + [aux_sym_remote_command_token1] = ACTIONS(971), + [aux_sym_remote_forward_token1] = ACTIONS(971), + [aux_sym_request_tty_token1] = ACTIONS(971), + [aux_sym_required_rsa_size_token1] = ACTIONS(971), + [aux_sym_revoked_host_keys_token1] = ACTIONS(971), + [aux_sym_security_key_provider_token1] = ACTIONS(971), + [aux_sym_send_env_token1] = ACTIONS(971), + [aux_sym_server_alive_count_max_token1] = ACTIONS(971), + [aux_sym_server_alive_interval_token1] = ACTIONS(971), + [aux_sym_session_type_token1] = ACTIONS(971), + [aux_sym_set_env_token1] = ACTIONS(971), + [aux_sym_stdin_null_token1] = ACTIONS(971), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(971), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(971), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(971), + [aux_sym_syslog_facility_token1] = ACTIONS(971), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(971), + [aux_sym_keep_alive_token1] = ACTIONS(971), + [aux_sym_tag_token1] = ACTIONS(971), + [aux_sym_tunnel_token1] = ACTIONS(973), + [aux_sym_tunnel_device_token1] = ACTIONS(971), + [aux_sym_update_host_keys_token1] = ACTIONS(971), + [aux_sym_use_keychain_token1] = ACTIONS(971), + [aux_sym_use_roaming_token1] = ACTIONS(971), + [aux_sym_user_token1] = ACTIONS(973), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(971), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(971), + [aux_sym_visual_host_key_token1] = ACTIONS(971), + [aux_sym_xauth_location_token1] = ACTIONS(971), }, [702] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1640), - [aux_sym_match_token1] = ACTIONS(1638), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1638), - [aux_sym_address_family_token1] = ACTIONS(1638), - [aux_sym_batch_mode_token1] = ACTIONS(1638), - [aux_sym_bind_address_token1] = ACTIONS(1638), - [aux_sym_bind_interface_token1] = ACTIONS(1638), - [aux_sym_canonical_domains_token1] = ACTIONS(1638), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1638), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1638), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1638), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1638), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1638), - [aux_sym_certificate_file_token1] = ACTIONS(1638), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1638), - [aux_sym_channel_timeout_token1] = ACTIONS(1638), - [aux_sym_check_host_ip_token1] = ACTIONS(1638), - [aux_sym_ciphers_token1] = ACTIONS(1638), - [aux_sym_cipher_token1] = ACTIONS(1640), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1638), - [aux_sym_compression_token1] = ACTIONS(1638), - [aux_sym_connection_attempts_token1] = ACTIONS(1638), - [aux_sym_connect_timeout_token1] = ACTIONS(1638), - [aux_sym_control_master_token1] = ACTIONS(1638), - [aux_sym_control_path_token1] = ACTIONS(1638), - [aux_sym_control_persist_token1] = ACTIONS(1638), - [aux_sym_dynamic_forward_token1] = ACTIONS(1638), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1638), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1638), - [aux_sym_escape_char_token1] = ACTIONS(1638), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1638), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1638), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1638), - [aux_sym_forward_agent_token1] = ACTIONS(1638), - [aux_sym_forward_x11_token1] = ACTIONS(1640), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1638), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1638), - [aux_sym_gateway_ports_token1] = ACTIONS(1638), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1638), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1638), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1638), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1638), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1638), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1638), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1638), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1638), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1638), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1638), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1638), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1638), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1638), - [aux_sym_host_key_alias_token1] = ACTIONS(1638), - [aux_sym_hostname_token1] = ACTIONS(1638), - [aux_sym_identities_only_token1] = ACTIONS(1638), - [aux_sym_identity_agent_token1] = ACTIONS(1638), - [aux_sym_identity_file_token1] = ACTIONS(1638), - [aux_sym_ignore_unknown_token1] = ACTIONS(1638), - [aux_sym_include_token1] = ACTIONS(1638), - [aux_sym_ip_qos_token1] = ACTIONS(1638), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1638), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1638), - [aux_sym_kex_algorithms_token1] = ACTIONS(1638), - [aux_sym_known_hosts_command_token1] = ACTIONS(1638), - [aux_sym_local_command_token1] = ACTIONS(1638), - [aux_sym_local_forward_token1] = ACTIONS(1638), - [aux_sym_log_level_token1] = ACTIONS(1638), - [aux_sym_log_verbose_token1] = ACTIONS(1638), - [aux_sym_macs_token1] = ACTIONS(1638), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1638), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1638), - [aux_sym_password_authentication_token1] = ACTIONS(1638), - [aux_sym_permit_local_command_token1] = ACTIONS(1638), - [aux_sym_permit_remote_open_token1] = ACTIONS(1638), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1638), - [aux_sym_port_token1] = ACTIONS(1638), - [aux_sym_preferred_authentications_token1] = ACTIONS(1638), - [aux_sym_protocol_token1] = ACTIONS(1638), - [aux_sym_proxy_command_token1] = ACTIONS(1638), - [aux_sym_proxy_jump_token1] = ACTIONS(1638), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1638), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1638), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1638), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1638), - [aux_sym_rekey_limit_token1] = ACTIONS(1638), - [aux_sym_remote_command_token1] = ACTIONS(1638), - [aux_sym_remote_forward_token1] = ACTIONS(1638), - [aux_sym_request_tty_token1] = ACTIONS(1638), - [aux_sym_required_rsa_size_token1] = ACTIONS(1638), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1638), - [aux_sym_security_key_provider_token1] = ACTIONS(1638), - [aux_sym_send_env_token1] = ACTIONS(1638), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1638), - [aux_sym_server_alive_interval_token1] = ACTIONS(1638), - [aux_sym_session_type_token1] = ACTIONS(1638), - [aux_sym_set_env_token1] = ACTIONS(1638), - [aux_sym_stdin_null_token1] = ACTIONS(1638), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1638), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1638), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1638), - [aux_sym_syslog_facility_token1] = ACTIONS(1638), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1638), - [aux_sym_keep_alive_token1] = ACTIONS(1638), - [aux_sym_tag_token1] = ACTIONS(1638), - [aux_sym_tunnel_token1] = ACTIONS(1640), - [aux_sym_tunnel_device_token1] = ACTIONS(1638), - [aux_sym_update_host_keys_token1] = ACTIONS(1638), - [aux_sym_use_keychain_token1] = ACTIONS(1638), - [aux_sym_use_roaming_token1] = ACTIONS(1638), - [aux_sym_user_token1] = ACTIONS(1640), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1638), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1638), - [aux_sym_visual_host_key_token1] = ACTIONS(1638), - [aux_sym_xauth_location_token1] = ACTIONS(1638), + [ts_builtin_sym_end] = ACTIONS(1433), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1435), + [aux_sym_match_token1] = ACTIONS(1433), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1433), + [aux_sym_address_family_token1] = ACTIONS(1433), + [aux_sym_batch_mode_token1] = ACTIONS(1433), + [aux_sym_bind_address_token1] = ACTIONS(1433), + [aux_sym_bind_interface_token1] = ACTIONS(1433), + [aux_sym_canonical_domains_token1] = ACTIONS(1433), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1433), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1433), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1433), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1433), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1433), + [aux_sym_certificate_file_token1] = ACTIONS(1433), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1433), + [aux_sym_channel_timeout_token1] = ACTIONS(1433), + [aux_sym_check_host_ip_token1] = ACTIONS(1433), + [aux_sym_ciphers_token1] = ACTIONS(1433), + [aux_sym_cipher_token1] = ACTIONS(1435), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1433), + [aux_sym_compression_token1] = ACTIONS(1433), + [aux_sym_connection_attempts_token1] = ACTIONS(1433), + [aux_sym_connect_timeout_token1] = ACTIONS(1433), + [aux_sym_control_master_token1] = ACTIONS(1433), + [aux_sym_control_path_token1] = ACTIONS(1433), + [aux_sym_control_persist_token1] = ACTIONS(1433), + [aux_sym_dynamic_forward_token1] = ACTIONS(1433), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1433), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1433), + [aux_sym_escape_char_token1] = ACTIONS(1433), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1433), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1433), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1433), + [aux_sym_forward_agent_token1] = ACTIONS(1433), + [aux_sym_forward_x11_token1] = ACTIONS(1435), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1433), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1433), + [aux_sym_gateway_ports_token1] = ACTIONS(1433), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1433), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1433), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1433), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1433), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1433), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1433), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1433), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1433), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1433), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1433), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1433), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1433), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1433), + [aux_sym_host_key_alias_token1] = ACTIONS(1433), + [aux_sym_hostname_token1] = ACTIONS(1433), + [aux_sym_identities_only_token1] = ACTIONS(1433), + [aux_sym_identity_agent_token1] = ACTIONS(1433), + [aux_sym_identity_file_token1] = ACTIONS(1433), + [aux_sym_ignore_unknown_token1] = ACTIONS(1433), + [aux_sym_include_token1] = ACTIONS(1433), + [aux_sym_ip_qos_token1] = ACTIONS(1433), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1433), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1433), + [aux_sym_kex_algorithms_token1] = ACTIONS(1433), + [aux_sym_known_hosts_command_token1] = ACTIONS(1433), + [aux_sym_local_command_token1] = ACTIONS(1433), + [aux_sym_local_forward_token1] = ACTIONS(1433), + [aux_sym_log_level_token1] = ACTIONS(1433), + [aux_sym_log_verbose_token1] = ACTIONS(1433), + [aux_sym_macs_token1] = ACTIONS(1433), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1433), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1433), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1433), + [aux_sym_password_authentication_token1] = ACTIONS(1433), + [aux_sym_permit_local_command_token1] = ACTIONS(1433), + [aux_sym_permit_remote_open_token1] = ACTIONS(1433), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1433), + [aux_sym_port_token1] = ACTIONS(1433), + [aux_sym_preferred_authentications_token1] = ACTIONS(1433), + [aux_sym_protocol_token1] = ACTIONS(1433), + [aux_sym_proxy_command_token1] = ACTIONS(1433), + [aux_sym_proxy_jump_token1] = ACTIONS(1433), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1433), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1433), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1433), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1433), + [aux_sym_rekey_limit_token1] = ACTIONS(1433), + [aux_sym_remote_command_token1] = ACTIONS(1433), + [aux_sym_remote_forward_token1] = ACTIONS(1433), + [aux_sym_request_tty_token1] = ACTIONS(1433), + [aux_sym_required_rsa_size_token1] = ACTIONS(1433), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1433), + [aux_sym_security_key_provider_token1] = ACTIONS(1433), + [aux_sym_send_env_token1] = ACTIONS(1433), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1433), + [aux_sym_server_alive_interval_token1] = ACTIONS(1433), + [aux_sym_session_type_token1] = ACTIONS(1433), + [aux_sym_set_env_token1] = ACTIONS(1433), + [aux_sym_stdin_null_token1] = ACTIONS(1433), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1433), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1433), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1433), + [aux_sym_syslog_facility_token1] = ACTIONS(1433), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1433), + [aux_sym_keep_alive_token1] = ACTIONS(1433), + [aux_sym_tag_token1] = ACTIONS(1433), + [aux_sym_tunnel_token1] = ACTIONS(1435), + [aux_sym_tunnel_device_token1] = ACTIONS(1433), + [aux_sym_update_host_keys_token1] = ACTIONS(1433), + [aux_sym_use_keychain_token1] = ACTIONS(1433), + [aux_sym_use_roaming_token1] = ACTIONS(1433), + [aux_sym_user_token1] = ACTIONS(1435), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1433), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1433), + [aux_sym_visual_host_key_token1] = ACTIONS(1433), + [aux_sym_xauth_location_token1] = ACTIONS(1433), }, [703] = { - [ts_builtin_sym_end] = ACTIONS(1912), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1914), - [aux_sym_match_token1] = ACTIONS(1912), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1912), - [aux_sym_address_family_token1] = ACTIONS(1912), - [aux_sym_batch_mode_token1] = ACTIONS(1912), - [aux_sym_bind_address_token1] = ACTIONS(1912), - [aux_sym_bind_interface_token1] = ACTIONS(1912), - [aux_sym_canonical_domains_token1] = ACTIONS(1912), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1912), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1912), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1912), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1912), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1912), - [aux_sym_certificate_file_token1] = ACTIONS(1912), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1912), - [aux_sym_channel_timeout_token1] = ACTIONS(1912), - [aux_sym_check_host_ip_token1] = ACTIONS(1912), - [aux_sym_ciphers_token1] = ACTIONS(1912), - [aux_sym_cipher_token1] = ACTIONS(1914), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1912), - [aux_sym_compression_token1] = ACTIONS(1912), - [aux_sym_connection_attempts_token1] = ACTIONS(1912), - [aux_sym_connect_timeout_token1] = ACTIONS(1912), - [aux_sym_control_master_token1] = ACTIONS(1912), - [aux_sym_control_path_token1] = ACTIONS(1912), - [aux_sym_control_persist_token1] = ACTIONS(1912), - [aux_sym_dynamic_forward_token1] = ACTIONS(1912), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1912), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1912), - [aux_sym_escape_char_token1] = ACTIONS(1912), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1912), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1912), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1912), - [aux_sym_forward_agent_token1] = ACTIONS(1912), - [aux_sym_forward_x11_token1] = ACTIONS(1914), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1912), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1912), - [aux_sym_gateway_ports_token1] = ACTIONS(1912), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1912), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1912), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1912), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1912), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1912), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1912), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1912), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1912), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1912), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1912), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1912), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1912), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1912), - [aux_sym_host_key_alias_token1] = ACTIONS(1912), - [aux_sym_hostname_token1] = ACTIONS(1912), - [aux_sym_identities_only_token1] = ACTIONS(1912), - [aux_sym_identity_agent_token1] = ACTIONS(1912), - [aux_sym_identity_file_token1] = ACTIONS(1912), - [aux_sym_ignore_unknown_token1] = ACTIONS(1912), - [aux_sym_include_token1] = ACTIONS(1912), - [aux_sym_ip_qos_token1] = ACTIONS(1912), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1912), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1912), - [aux_sym_kex_algorithms_token1] = ACTIONS(1912), - [aux_sym_known_hosts_command_token1] = ACTIONS(1912), - [aux_sym_local_command_token1] = ACTIONS(1912), - [aux_sym_local_forward_token1] = ACTIONS(1912), - [aux_sym_log_level_token1] = ACTIONS(1912), - [aux_sym_log_verbose_token1] = ACTIONS(1912), - [aux_sym_macs_token1] = ACTIONS(1912), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1912), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1912), - [aux_sym_password_authentication_token1] = ACTIONS(1912), - [aux_sym_permit_local_command_token1] = ACTIONS(1912), - [aux_sym_permit_remote_open_token1] = ACTIONS(1912), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1912), - [aux_sym_port_token1] = ACTIONS(1912), - [aux_sym_preferred_authentications_token1] = ACTIONS(1912), - [aux_sym_protocol_token1] = ACTIONS(1912), - [aux_sym_proxy_command_token1] = ACTIONS(1912), - [aux_sym_proxy_jump_token1] = ACTIONS(1912), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1912), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1912), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1912), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1912), - [aux_sym_rekey_limit_token1] = ACTIONS(1912), - [aux_sym_remote_command_token1] = ACTIONS(1912), - [aux_sym_remote_forward_token1] = ACTIONS(1912), - [aux_sym_request_tty_token1] = ACTIONS(1912), - [aux_sym_required_rsa_size_token1] = ACTIONS(1912), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1912), - [aux_sym_security_key_provider_token1] = ACTIONS(1912), - [aux_sym_send_env_token1] = ACTIONS(1912), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1912), - [aux_sym_server_alive_interval_token1] = ACTIONS(1912), - [aux_sym_session_type_token1] = ACTIONS(1912), - [aux_sym_set_env_token1] = ACTIONS(1912), - [aux_sym_stdin_null_token1] = ACTIONS(1912), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1912), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1912), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1912), - [aux_sym_syslog_facility_token1] = ACTIONS(1912), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1912), - [aux_sym_keep_alive_token1] = ACTIONS(1912), - [aux_sym_tag_token1] = ACTIONS(1912), - [aux_sym_tunnel_token1] = ACTIONS(1914), - [aux_sym_tunnel_device_token1] = ACTIONS(1912), - [aux_sym_update_host_keys_token1] = ACTIONS(1912), - [aux_sym_use_keychain_token1] = ACTIONS(1912), - [aux_sym_use_roaming_token1] = ACTIONS(1912), - [aux_sym_user_token1] = ACTIONS(1914), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1912), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1912), - [aux_sym_visual_host_key_token1] = ACTIONS(1912), - [aux_sym_xauth_location_token1] = ACTIONS(1912), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(619), + [aux_sym_match_token1] = ACTIONS(617), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(617), + [aux_sym_address_family_token1] = ACTIONS(617), + [aux_sym_batch_mode_token1] = ACTIONS(617), + [aux_sym_bind_address_token1] = ACTIONS(617), + [aux_sym_bind_interface_token1] = ACTIONS(617), + [aux_sym_canonical_domains_token1] = ACTIONS(617), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(617), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(617), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(617), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(617), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(617), + [aux_sym_certificate_file_token1] = ACTIONS(617), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(617), + [aux_sym_channel_timeout_token1] = ACTIONS(617), + [aux_sym_check_host_ip_token1] = ACTIONS(617), + [aux_sym_ciphers_token1] = ACTIONS(617), + [aux_sym_cipher_token1] = ACTIONS(619), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(617), + [aux_sym_compression_token1] = ACTIONS(617), + [aux_sym_connection_attempts_token1] = ACTIONS(617), + [aux_sym_connect_timeout_token1] = ACTIONS(617), + [aux_sym_control_master_token1] = ACTIONS(617), + [aux_sym_control_path_token1] = ACTIONS(617), + [aux_sym_control_persist_token1] = ACTIONS(617), + [aux_sym_dynamic_forward_token1] = ACTIONS(617), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(617), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(617), + [aux_sym_escape_char_token1] = ACTIONS(617), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(617), + [aux_sym_fingerprint_hash_token1] = ACTIONS(617), + [aux_sym_fork_after_authentication_token1] = ACTIONS(617), + [aux_sym_forward_agent_token1] = ACTIONS(617), + [aux_sym_forward_x11_token1] = ACTIONS(619), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(617), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(617), + [aux_sym_gateway_ports_token1] = ACTIONS(617), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(617), + [aux_sym_gssapi_authentication_token1] = ACTIONS(617), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(617), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(617), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(617), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(617), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(617), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(617), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(617), + [aux_sym_hash_known_hosts_token1] = ACTIONS(617), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(617), + [aux_sym_hostbased_authentication_token1] = ACTIONS(617), + [aux_sym_host_key_algorithms_token1] = ACTIONS(617), + [aux_sym_host_key_alias_token1] = ACTIONS(617), + [aux_sym_hostname_token1] = ACTIONS(617), + [aux_sym_identities_only_token1] = ACTIONS(617), + [aux_sym_identity_agent_token1] = ACTIONS(617), + [aux_sym_identity_file_token1] = ACTIONS(617), + [aux_sym_ignore_unknown_token1] = ACTIONS(617), + [aux_sym_include_token1] = ACTIONS(617), + [aux_sym_ip_qos_token1] = ACTIONS(617), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(617), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(617), + [aux_sym_kex_algorithms_token1] = ACTIONS(617), + [aux_sym_known_hosts_command_token1] = ACTIONS(617), + [aux_sym_local_command_token1] = ACTIONS(617), + [aux_sym_local_forward_token1] = ACTIONS(617), + [aux_sym_log_level_token1] = ACTIONS(617), + [aux_sym_log_verbose_token1] = ACTIONS(617), + [aux_sym_macs_token1] = ACTIONS(617), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(617), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(617), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(617), + [aux_sym_password_authentication_token1] = ACTIONS(617), + [aux_sym_permit_local_command_token1] = ACTIONS(617), + [aux_sym_permit_remote_open_token1] = ACTIONS(617), + [aux_sym_pkcs11_provider_token1] = ACTIONS(617), + [aux_sym_port_token1] = ACTIONS(617), + [aux_sym_preferred_authentications_token1] = ACTIONS(617), + [aux_sym_protocol_token1] = ACTIONS(617), + [aux_sym_proxy_command_token1] = ACTIONS(617), + [aux_sym_proxy_jump_token1] = ACTIONS(617), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(617), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(617), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(617), + [aux_sym_pubkey_authentication_token1] = ACTIONS(617), + [aux_sym_rekey_limit_token1] = ACTIONS(617), + [aux_sym_remote_command_token1] = ACTIONS(617), + [aux_sym_remote_forward_token1] = ACTIONS(617), + [aux_sym_request_tty_token1] = ACTIONS(617), + [aux_sym_required_rsa_size_token1] = ACTIONS(617), + [aux_sym_revoked_host_keys_token1] = ACTIONS(617), + [aux_sym_security_key_provider_token1] = ACTIONS(617), + [aux_sym_send_env_token1] = ACTIONS(617), + [aux_sym_server_alive_count_max_token1] = ACTIONS(617), + [aux_sym_server_alive_interval_token1] = ACTIONS(617), + [aux_sym_session_type_token1] = ACTIONS(617), + [aux_sym_set_env_token1] = ACTIONS(617), + [aux_sym_stdin_null_token1] = ACTIONS(617), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(617), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(617), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(617), + [aux_sym_syslog_facility_token1] = ACTIONS(617), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(617), + [aux_sym_keep_alive_token1] = ACTIONS(617), + [aux_sym_tag_token1] = ACTIONS(617), + [aux_sym_tunnel_token1] = ACTIONS(619), + [aux_sym_tunnel_device_token1] = ACTIONS(617), + [aux_sym_update_host_keys_token1] = ACTIONS(617), + [aux_sym_use_keychain_token1] = ACTIONS(617), + [aux_sym_use_roaming_token1] = ACTIONS(617), + [aux_sym_user_token1] = ACTIONS(619), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(617), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(617), + [aux_sym_visual_host_key_token1] = ACTIONS(617), + [aux_sym_xauth_location_token1] = ACTIONS(617), }, [704] = { - [ts_builtin_sym_end] = ACTIONS(738), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(740), - [aux_sym_match_token1] = ACTIONS(738), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(738), - [aux_sym_address_family_token1] = ACTIONS(738), - [aux_sym_batch_mode_token1] = ACTIONS(738), - [aux_sym_bind_address_token1] = ACTIONS(738), - [aux_sym_bind_interface_token1] = ACTIONS(738), - [aux_sym_canonical_domains_token1] = ACTIONS(738), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(738), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(738), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(738), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(738), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(738), - [aux_sym_certificate_file_token1] = ACTIONS(738), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(738), - [aux_sym_channel_timeout_token1] = ACTIONS(738), - [aux_sym_check_host_ip_token1] = ACTIONS(738), - [aux_sym_ciphers_token1] = ACTIONS(738), - [aux_sym_cipher_token1] = ACTIONS(740), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(738), - [aux_sym_compression_token1] = ACTIONS(738), - [aux_sym_connection_attempts_token1] = ACTIONS(738), - [aux_sym_connect_timeout_token1] = ACTIONS(738), - [aux_sym_control_master_token1] = ACTIONS(738), - [aux_sym_control_path_token1] = ACTIONS(738), - [aux_sym_control_persist_token1] = ACTIONS(738), - [aux_sym_dynamic_forward_token1] = ACTIONS(738), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(738), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(738), - [aux_sym_escape_char_token1] = ACTIONS(738), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(738), - [aux_sym_fingerprint_hash_token1] = ACTIONS(738), - [aux_sym_fork_after_authentication_token1] = ACTIONS(738), - [aux_sym_forward_agent_token1] = ACTIONS(738), - [aux_sym_forward_x11_token1] = ACTIONS(740), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(738), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(738), - [aux_sym_gateway_ports_token1] = ACTIONS(738), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(738), - [aux_sym_gssapi_authentication_token1] = ACTIONS(738), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(738), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(738), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(738), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(738), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(738), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(738), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(738), - [aux_sym_hash_known_hosts_token1] = ACTIONS(738), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(738), - [aux_sym_hostbased_authentication_token1] = ACTIONS(738), - [aux_sym_host_key_algorithms_token1] = ACTIONS(738), - [aux_sym_host_key_alias_token1] = ACTIONS(738), - [aux_sym_hostname_token1] = ACTIONS(738), - [aux_sym_identities_only_token1] = ACTIONS(738), - [aux_sym_identity_agent_token1] = ACTIONS(738), - [aux_sym_identity_file_token1] = ACTIONS(738), - [aux_sym_ignore_unknown_token1] = ACTIONS(738), - [aux_sym_include_token1] = ACTIONS(738), - [aux_sym_ip_qos_token1] = ACTIONS(738), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(738), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(738), - [aux_sym_kex_algorithms_token1] = ACTIONS(738), - [aux_sym_known_hosts_command_token1] = ACTIONS(738), - [aux_sym_local_command_token1] = ACTIONS(738), - [aux_sym_local_forward_token1] = ACTIONS(738), - [aux_sym_log_level_token1] = ACTIONS(738), - [aux_sym_log_verbose_token1] = ACTIONS(738), - [aux_sym_macs_token1] = ACTIONS(738), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(738), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(738), - [aux_sym_password_authentication_token1] = ACTIONS(738), - [aux_sym_permit_local_command_token1] = ACTIONS(738), - [aux_sym_permit_remote_open_token1] = ACTIONS(738), - [aux_sym_pkcs11_provider_token1] = ACTIONS(738), - [aux_sym_port_token1] = ACTIONS(738), - [aux_sym_preferred_authentications_token1] = ACTIONS(738), - [aux_sym_protocol_token1] = ACTIONS(738), - [aux_sym_proxy_command_token1] = ACTIONS(738), - [aux_sym_proxy_jump_token1] = ACTIONS(738), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(738), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(738), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(738), - [aux_sym_pubkey_authentication_token1] = ACTIONS(738), - [aux_sym_rekey_limit_token1] = ACTIONS(738), - [aux_sym_remote_command_token1] = ACTIONS(738), - [aux_sym_remote_forward_token1] = ACTIONS(738), - [aux_sym_request_tty_token1] = ACTIONS(738), - [aux_sym_required_rsa_size_token1] = ACTIONS(738), - [aux_sym_revoked_host_keys_token1] = ACTIONS(738), - [aux_sym_security_key_provider_token1] = ACTIONS(738), - [aux_sym_send_env_token1] = ACTIONS(738), - [aux_sym_server_alive_count_max_token1] = ACTIONS(738), - [aux_sym_server_alive_interval_token1] = ACTIONS(738), - [aux_sym_session_type_token1] = ACTIONS(738), - [aux_sym_set_env_token1] = ACTIONS(738), - [aux_sym_stdin_null_token1] = ACTIONS(738), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(738), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(738), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(738), - [aux_sym_syslog_facility_token1] = ACTIONS(738), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(738), - [aux_sym_keep_alive_token1] = ACTIONS(738), - [aux_sym_tag_token1] = ACTIONS(738), - [aux_sym_tunnel_token1] = ACTIONS(740), - [aux_sym_tunnel_device_token1] = ACTIONS(738), - [aux_sym_update_host_keys_token1] = ACTIONS(738), - [aux_sym_use_keychain_token1] = ACTIONS(738), - [aux_sym_use_roaming_token1] = ACTIONS(738), - [aux_sym_user_token1] = ACTIONS(740), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(738), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(738), - [aux_sym_visual_host_key_token1] = ACTIONS(738), - [aux_sym_xauth_location_token1] = ACTIONS(738), + [ts_builtin_sym_end] = ACTIONS(881), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(883), + [aux_sym_match_token1] = ACTIONS(881), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(881), + [aux_sym_address_family_token1] = ACTIONS(881), + [aux_sym_batch_mode_token1] = ACTIONS(881), + [aux_sym_bind_address_token1] = ACTIONS(881), + [aux_sym_bind_interface_token1] = ACTIONS(881), + [aux_sym_canonical_domains_token1] = ACTIONS(881), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(881), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(881), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(881), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(881), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(881), + [aux_sym_certificate_file_token1] = ACTIONS(881), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(881), + [aux_sym_channel_timeout_token1] = ACTIONS(881), + [aux_sym_check_host_ip_token1] = ACTIONS(881), + [aux_sym_ciphers_token1] = ACTIONS(881), + [aux_sym_cipher_token1] = ACTIONS(883), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(881), + [aux_sym_compression_token1] = ACTIONS(881), + [aux_sym_connection_attempts_token1] = ACTIONS(881), + [aux_sym_connect_timeout_token1] = ACTIONS(881), + [aux_sym_control_master_token1] = ACTIONS(881), + [aux_sym_control_path_token1] = ACTIONS(881), + [aux_sym_control_persist_token1] = ACTIONS(881), + [aux_sym_dynamic_forward_token1] = ACTIONS(881), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(881), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(881), + [aux_sym_escape_char_token1] = ACTIONS(881), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(881), + [aux_sym_fingerprint_hash_token1] = ACTIONS(881), + [aux_sym_fork_after_authentication_token1] = ACTIONS(881), + [aux_sym_forward_agent_token1] = ACTIONS(881), + [aux_sym_forward_x11_token1] = ACTIONS(883), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(881), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(881), + [aux_sym_gateway_ports_token1] = ACTIONS(881), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(881), + [aux_sym_gssapi_authentication_token1] = ACTIONS(881), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(881), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(881), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(881), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(881), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(881), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(881), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(881), + [aux_sym_hash_known_hosts_token1] = ACTIONS(881), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(881), + [aux_sym_hostbased_authentication_token1] = ACTIONS(881), + [aux_sym_host_key_algorithms_token1] = ACTIONS(881), + [aux_sym_host_key_alias_token1] = ACTIONS(881), + [aux_sym_hostname_token1] = ACTIONS(881), + [aux_sym_identities_only_token1] = ACTIONS(881), + [aux_sym_identity_agent_token1] = ACTIONS(881), + [aux_sym_identity_file_token1] = ACTIONS(881), + [aux_sym_ignore_unknown_token1] = ACTIONS(881), + [aux_sym_include_token1] = ACTIONS(881), + [aux_sym_ip_qos_token1] = ACTIONS(881), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(881), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(881), + [aux_sym_kex_algorithms_token1] = ACTIONS(881), + [aux_sym_known_hosts_command_token1] = ACTIONS(881), + [aux_sym_local_command_token1] = ACTIONS(881), + [aux_sym_local_forward_token1] = ACTIONS(881), + [aux_sym_log_level_token1] = ACTIONS(881), + [aux_sym_log_verbose_token1] = ACTIONS(881), + [aux_sym_macs_token1] = ACTIONS(881), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(881), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(881), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(881), + [aux_sym_password_authentication_token1] = ACTIONS(881), + [aux_sym_permit_local_command_token1] = ACTIONS(881), + [aux_sym_permit_remote_open_token1] = ACTIONS(881), + [aux_sym_pkcs11_provider_token1] = ACTIONS(881), + [aux_sym_port_token1] = ACTIONS(881), + [aux_sym_preferred_authentications_token1] = ACTIONS(881), + [aux_sym_protocol_token1] = ACTIONS(881), + [aux_sym_proxy_command_token1] = ACTIONS(881), + [aux_sym_proxy_jump_token1] = ACTIONS(881), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(881), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(881), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(881), + [aux_sym_pubkey_authentication_token1] = ACTIONS(881), + [aux_sym_rekey_limit_token1] = ACTIONS(881), + [aux_sym_remote_command_token1] = ACTIONS(881), + [aux_sym_remote_forward_token1] = ACTIONS(881), + [aux_sym_request_tty_token1] = ACTIONS(881), + [aux_sym_required_rsa_size_token1] = ACTIONS(881), + [aux_sym_revoked_host_keys_token1] = ACTIONS(881), + [aux_sym_security_key_provider_token1] = ACTIONS(881), + [aux_sym_send_env_token1] = ACTIONS(881), + [aux_sym_server_alive_count_max_token1] = ACTIONS(881), + [aux_sym_server_alive_interval_token1] = ACTIONS(881), + [aux_sym_session_type_token1] = ACTIONS(881), + [aux_sym_set_env_token1] = ACTIONS(881), + [aux_sym_stdin_null_token1] = ACTIONS(881), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(881), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(881), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(881), + [aux_sym_syslog_facility_token1] = ACTIONS(881), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(881), + [aux_sym_keep_alive_token1] = ACTIONS(881), + [aux_sym_tag_token1] = ACTIONS(881), + [aux_sym_tunnel_token1] = ACTIONS(883), + [aux_sym_tunnel_device_token1] = ACTIONS(881), + [aux_sym_update_host_keys_token1] = ACTIONS(881), + [aux_sym_use_keychain_token1] = ACTIONS(881), + [aux_sym_use_roaming_token1] = ACTIONS(881), + [aux_sym_user_token1] = ACTIONS(883), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(881), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(881), + [aux_sym_visual_host_key_token1] = ACTIONS(881), + [aux_sym_xauth_location_token1] = ACTIONS(881), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(744), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(746), - [aux_sym_match_token1] = ACTIONS(744), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(744), - [aux_sym_address_family_token1] = ACTIONS(744), - [aux_sym_batch_mode_token1] = ACTIONS(744), - [aux_sym_bind_address_token1] = ACTIONS(744), - [aux_sym_bind_interface_token1] = ACTIONS(744), - [aux_sym_canonical_domains_token1] = ACTIONS(744), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(744), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(744), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(744), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(744), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(744), - [aux_sym_certificate_file_token1] = ACTIONS(744), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(744), - [aux_sym_channel_timeout_token1] = ACTIONS(744), - [aux_sym_check_host_ip_token1] = ACTIONS(744), - [aux_sym_ciphers_token1] = ACTIONS(744), - [aux_sym_cipher_token1] = ACTIONS(746), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(744), - [aux_sym_compression_token1] = ACTIONS(744), - [aux_sym_connection_attempts_token1] = ACTIONS(744), - [aux_sym_connect_timeout_token1] = ACTIONS(744), - [aux_sym_control_master_token1] = ACTIONS(744), - [aux_sym_control_path_token1] = ACTIONS(744), - [aux_sym_control_persist_token1] = ACTIONS(744), - [aux_sym_dynamic_forward_token1] = ACTIONS(744), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(744), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(744), - [aux_sym_escape_char_token1] = ACTIONS(744), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(744), - [aux_sym_fingerprint_hash_token1] = ACTIONS(744), - [aux_sym_fork_after_authentication_token1] = ACTIONS(744), - [aux_sym_forward_agent_token1] = ACTIONS(744), - [aux_sym_forward_x11_token1] = ACTIONS(746), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(744), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(744), - [aux_sym_gateway_ports_token1] = ACTIONS(744), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(744), - [aux_sym_gssapi_authentication_token1] = ACTIONS(744), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(744), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(744), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(744), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(744), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(744), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(744), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(744), - [aux_sym_hash_known_hosts_token1] = ACTIONS(744), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(744), - [aux_sym_hostbased_authentication_token1] = ACTIONS(744), - [aux_sym_host_key_algorithms_token1] = ACTIONS(744), - [aux_sym_host_key_alias_token1] = ACTIONS(744), - [aux_sym_hostname_token1] = ACTIONS(744), - [aux_sym_identities_only_token1] = ACTIONS(744), - [aux_sym_identity_agent_token1] = ACTIONS(744), - [aux_sym_identity_file_token1] = ACTIONS(744), - [aux_sym_ignore_unknown_token1] = ACTIONS(744), - [aux_sym_include_token1] = ACTIONS(744), - [aux_sym_ip_qos_token1] = ACTIONS(744), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(744), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(744), - [aux_sym_kex_algorithms_token1] = ACTIONS(744), - [aux_sym_known_hosts_command_token1] = ACTIONS(744), - [aux_sym_local_command_token1] = ACTIONS(744), - [aux_sym_local_forward_token1] = ACTIONS(744), - [aux_sym_log_level_token1] = ACTIONS(744), - [aux_sym_log_verbose_token1] = ACTIONS(744), - [aux_sym_macs_token1] = ACTIONS(744), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(744), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(744), - [aux_sym_password_authentication_token1] = ACTIONS(744), - [aux_sym_permit_local_command_token1] = ACTIONS(744), - [aux_sym_permit_remote_open_token1] = ACTIONS(744), - [aux_sym_pkcs11_provider_token1] = ACTIONS(744), - [aux_sym_port_token1] = ACTIONS(744), - [aux_sym_preferred_authentications_token1] = ACTIONS(744), - [aux_sym_protocol_token1] = ACTIONS(744), - [aux_sym_proxy_command_token1] = ACTIONS(744), - [aux_sym_proxy_jump_token1] = ACTIONS(744), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(744), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(744), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(744), - [aux_sym_pubkey_authentication_token1] = ACTIONS(744), - [aux_sym_rekey_limit_token1] = ACTIONS(744), - [aux_sym_remote_command_token1] = ACTIONS(744), - [aux_sym_remote_forward_token1] = ACTIONS(744), - [aux_sym_request_tty_token1] = ACTIONS(744), - [aux_sym_required_rsa_size_token1] = ACTIONS(744), - [aux_sym_revoked_host_keys_token1] = ACTIONS(744), - [aux_sym_security_key_provider_token1] = ACTIONS(744), - [aux_sym_send_env_token1] = ACTIONS(744), - [aux_sym_server_alive_count_max_token1] = ACTIONS(744), - [aux_sym_server_alive_interval_token1] = ACTIONS(744), - [aux_sym_session_type_token1] = ACTIONS(744), - [aux_sym_set_env_token1] = ACTIONS(744), - [aux_sym_stdin_null_token1] = ACTIONS(744), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(744), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(744), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(744), - [aux_sym_syslog_facility_token1] = ACTIONS(744), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(744), - [aux_sym_keep_alive_token1] = ACTIONS(744), - [aux_sym_tag_token1] = ACTIONS(744), - [aux_sym_tunnel_token1] = ACTIONS(746), - [aux_sym_tunnel_device_token1] = ACTIONS(744), - [aux_sym_update_host_keys_token1] = ACTIONS(744), - [aux_sym_use_keychain_token1] = ACTIONS(744), - [aux_sym_use_roaming_token1] = ACTIONS(744), - [aux_sym_user_token1] = ACTIONS(746), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(744), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(744), - [aux_sym_visual_host_key_token1] = ACTIONS(744), - [aux_sym_xauth_location_token1] = ACTIONS(744), + [ts_builtin_sym_end] = ACTIONS(1677), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1679), + [aux_sym_match_token1] = ACTIONS(1677), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1677), + [aux_sym_address_family_token1] = ACTIONS(1677), + [aux_sym_batch_mode_token1] = ACTIONS(1677), + [aux_sym_bind_address_token1] = ACTIONS(1677), + [aux_sym_bind_interface_token1] = ACTIONS(1677), + [aux_sym_canonical_domains_token1] = ACTIONS(1677), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1677), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1677), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1677), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1677), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1677), + [aux_sym_certificate_file_token1] = ACTIONS(1677), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1677), + [aux_sym_channel_timeout_token1] = ACTIONS(1677), + [aux_sym_check_host_ip_token1] = ACTIONS(1677), + [aux_sym_ciphers_token1] = ACTIONS(1677), + [aux_sym_cipher_token1] = ACTIONS(1679), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1677), + [aux_sym_compression_token1] = ACTIONS(1677), + [aux_sym_connection_attempts_token1] = ACTIONS(1677), + [aux_sym_connect_timeout_token1] = ACTIONS(1677), + [aux_sym_control_master_token1] = ACTIONS(1677), + [aux_sym_control_path_token1] = ACTIONS(1677), + [aux_sym_control_persist_token1] = ACTIONS(1677), + [aux_sym_dynamic_forward_token1] = ACTIONS(1677), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1677), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1677), + [aux_sym_escape_char_token1] = ACTIONS(1677), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1677), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1677), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1677), + [aux_sym_forward_agent_token1] = ACTIONS(1677), + [aux_sym_forward_x11_token1] = ACTIONS(1679), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1677), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1677), + [aux_sym_gateway_ports_token1] = ACTIONS(1677), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1677), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1677), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1677), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1677), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1677), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1677), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1677), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1677), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1677), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1677), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1677), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1677), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1677), + [aux_sym_host_key_alias_token1] = ACTIONS(1677), + [aux_sym_hostname_token1] = ACTIONS(1677), + [aux_sym_identities_only_token1] = ACTIONS(1677), + [aux_sym_identity_agent_token1] = ACTIONS(1677), + [aux_sym_identity_file_token1] = ACTIONS(1677), + [aux_sym_ignore_unknown_token1] = ACTIONS(1677), + [aux_sym_include_token1] = ACTIONS(1677), + [aux_sym_ip_qos_token1] = ACTIONS(1677), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1677), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1677), + [aux_sym_kex_algorithms_token1] = ACTIONS(1677), + [aux_sym_known_hosts_command_token1] = ACTIONS(1677), + [aux_sym_local_command_token1] = ACTIONS(1677), + [aux_sym_local_forward_token1] = ACTIONS(1677), + [aux_sym_log_level_token1] = ACTIONS(1677), + [aux_sym_log_verbose_token1] = ACTIONS(1677), + [aux_sym_macs_token1] = ACTIONS(1677), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1677), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1677), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1677), + [aux_sym_password_authentication_token1] = ACTIONS(1677), + [aux_sym_permit_local_command_token1] = ACTIONS(1677), + [aux_sym_permit_remote_open_token1] = ACTIONS(1677), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1677), + [aux_sym_port_token1] = ACTIONS(1677), + [aux_sym_preferred_authentications_token1] = ACTIONS(1677), + [aux_sym_protocol_token1] = ACTIONS(1677), + [aux_sym_proxy_command_token1] = ACTIONS(1677), + [aux_sym_proxy_jump_token1] = ACTIONS(1677), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1677), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1677), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1677), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1677), + [aux_sym_rekey_limit_token1] = ACTIONS(1677), + [aux_sym_remote_command_token1] = ACTIONS(1677), + [aux_sym_remote_forward_token1] = ACTIONS(1677), + [aux_sym_request_tty_token1] = ACTIONS(1677), + [aux_sym_required_rsa_size_token1] = ACTIONS(1677), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1677), + [aux_sym_security_key_provider_token1] = ACTIONS(1677), + [aux_sym_send_env_token1] = ACTIONS(1677), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1677), + [aux_sym_server_alive_interval_token1] = ACTIONS(1677), + [aux_sym_session_type_token1] = ACTIONS(1677), + [aux_sym_set_env_token1] = ACTIONS(1677), + [aux_sym_stdin_null_token1] = ACTIONS(1677), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1677), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1677), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1677), + [aux_sym_syslog_facility_token1] = ACTIONS(1677), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1677), + [aux_sym_keep_alive_token1] = ACTIONS(1677), + [aux_sym_tag_token1] = ACTIONS(1677), + [aux_sym_tunnel_token1] = ACTIONS(1679), + [aux_sym_tunnel_device_token1] = ACTIONS(1677), + [aux_sym_update_host_keys_token1] = ACTIONS(1677), + [aux_sym_use_keychain_token1] = ACTIONS(1677), + [aux_sym_use_roaming_token1] = ACTIONS(1677), + [aux_sym_user_token1] = ACTIONS(1679), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1677), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1677), + [aux_sym_visual_host_key_token1] = ACTIONS(1677), + [aux_sym_xauth_location_token1] = ACTIONS(1677), }, [706] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1908), - [aux_sym_match_token1] = ACTIONS(1906), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1906), - [aux_sym_address_family_token1] = ACTIONS(1906), - [aux_sym_batch_mode_token1] = ACTIONS(1906), - [aux_sym_bind_address_token1] = ACTIONS(1906), - [aux_sym_bind_interface_token1] = ACTIONS(1906), - [aux_sym_canonical_domains_token1] = ACTIONS(1906), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1906), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1906), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1906), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1906), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1906), - [aux_sym_certificate_file_token1] = ACTIONS(1906), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1906), - [aux_sym_channel_timeout_token1] = ACTIONS(1906), - [aux_sym_check_host_ip_token1] = ACTIONS(1906), - [aux_sym_ciphers_token1] = ACTIONS(1906), - [aux_sym_cipher_token1] = ACTIONS(1908), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1906), - [aux_sym_compression_token1] = ACTIONS(1906), - [aux_sym_connection_attempts_token1] = ACTIONS(1906), - [aux_sym_connect_timeout_token1] = ACTIONS(1906), - [aux_sym_control_master_token1] = ACTIONS(1906), - [aux_sym_control_path_token1] = ACTIONS(1906), - [aux_sym_control_persist_token1] = ACTIONS(1906), - [aux_sym_dynamic_forward_token1] = ACTIONS(1906), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1906), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1906), - [aux_sym_escape_char_token1] = ACTIONS(1906), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1906), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1906), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1906), - [aux_sym_forward_agent_token1] = ACTIONS(1906), - [aux_sym_forward_x11_token1] = ACTIONS(1908), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1906), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1906), - [aux_sym_gateway_ports_token1] = ACTIONS(1906), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1906), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1906), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1906), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1906), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1906), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1906), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1906), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1906), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1906), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1906), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1906), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1906), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1906), - [aux_sym_host_key_alias_token1] = ACTIONS(1906), - [aux_sym_hostname_token1] = ACTIONS(1906), - [aux_sym_identities_only_token1] = ACTIONS(1906), - [aux_sym_identity_agent_token1] = ACTIONS(1906), - [aux_sym_identity_file_token1] = ACTIONS(1906), - [aux_sym_ignore_unknown_token1] = ACTIONS(1906), - [aux_sym_include_token1] = ACTIONS(1906), - [aux_sym_ip_qos_token1] = ACTIONS(1906), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1906), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1906), - [aux_sym_kex_algorithms_token1] = ACTIONS(1906), - [aux_sym_known_hosts_command_token1] = ACTIONS(1906), - [aux_sym_local_command_token1] = ACTIONS(1906), - [aux_sym_local_forward_token1] = ACTIONS(1906), - [aux_sym_log_level_token1] = ACTIONS(1906), - [aux_sym_log_verbose_token1] = ACTIONS(1906), - [aux_sym_macs_token1] = ACTIONS(1906), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1906), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1906), - [aux_sym_password_authentication_token1] = ACTIONS(1906), - [aux_sym_permit_local_command_token1] = ACTIONS(1906), - [aux_sym_permit_remote_open_token1] = ACTIONS(1906), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1906), - [aux_sym_port_token1] = ACTIONS(1906), - [aux_sym_preferred_authentications_token1] = ACTIONS(1906), - [aux_sym_protocol_token1] = ACTIONS(1906), - [aux_sym_proxy_command_token1] = ACTIONS(1906), - [aux_sym_proxy_jump_token1] = ACTIONS(1906), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1906), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1906), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1906), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1906), - [aux_sym_rekey_limit_token1] = ACTIONS(1906), - [aux_sym_remote_command_token1] = ACTIONS(1906), - [aux_sym_remote_forward_token1] = ACTIONS(1906), - [aux_sym_request_tty_token1] = ACTIONS(1906), - [aux_sym_required_rsa_size_token1] = ACTIONS(1906), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1906), - [aux_sym_security_key_provider_token1] = ACTIONS(1906), - [aux_sym_send_env_token1] = ACTIONS(1906), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1906), - [aux_sym_server_alive_interval_token1] = ACTIONS(1906), - [aux_sym_session_type_token1] = ACTIONS(1906), - [aux_sym_set_env_token1] = ACTIONS(1906), - [aux_sym_stdin_null_token1] = ACTIONS(1906), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1906), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1906), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1906), - [aux_sym_syslog_facility_token1] = ACTIONS(1906), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1906), - [aux_sym_keep_alive_token1] = ACTIONS(1906), - [aux_sym_tag_token1] = ACTIONS(1906), - [aux_sym_tunnel_token1] = ACTIONS(1908), - [aux_sym_tunnel_device_token1] = ACTIONS(1906), - [aux_sym_update_host_keys_token1] = ACTIONS(1906), - [aux_sym_use_keychain_token1] = ACTIONS(1906), - [aux_sym_use_roaming_token1] = ACTIONS(1906), - [aux_sym_user_token1] = ACTIONS(1908), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1906), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1906), - [aux_sym_visual_host_key_token1] = ACTIONS(1906), - [aux_sym_xauth_location_token1] = ACTIONS(1906), + [ts_builtin_sym_end] = ACTIONS(1935), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1937), + [aux_sym_match_token1] = ACTIONS(1935), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1935), + [aux_sym_address_family_token1] = ACTIONS(1935), + [aux_sym_batch_mode_token1] = ACTIONS(1935), + [aux_sym_bind_address_token1] = ACTIONS(1935), + [aux_sym_bind_interface_token1] = ACTIONS(1935), + [aux_sym_canonical_domains_token1] = ACTIONS(1935), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1935), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1935), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1935), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1935), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1935), + [aux_sym_certificate_file_token1] = ACTIONS(1935), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1935), + [aux_sym_channel_timeout_token1] = ACTIONS(1935), + [aux_sym_check_host_ip_token1] = ACTIONS(1935), + [aux_sym_ciphers_token1] = ACTIONS(1935), + [aux_sym_cipher_token1] = ACTIONS(1937), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1935), + [aux_sym_compression_token1] = ACTIONS(1935), + [aux_sym_connection_attempts_token1] = ACTIONS(1935), + [aux_sym_connect_timeout_token1] = ACTIONS(1935), + [aux_sym_control_master_token1] = ACTIONS(1935), + [aux_sym_control_path_token1] = ACTIONS(1935), + [aux_sym_control_persist_token1] = ACTIONS(1935), + [aux_sym_dynamic_forward_token1] = ACTIONS(1935), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1935), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1935), + [aux_sym_escape_char_token1] = ACTIONS(1935), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1935), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1935), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1935), + [aux_sym_forward_agent_token1] = ACTIONS(1935), + [aux_sym_forward_x11_token1] = ACTIONS(1937), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1935), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1935), + [aux_sym_gateway_ports_token1] = ACTIONS(1935), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1935), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1935), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1935), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1935), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1935), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1935), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1935), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1935), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1935), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1935), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1935), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1935), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1935), + [aux_sym_host_key_alias_token1] = ACTIONS(1935), + [aux_sym_hostname_token1] = ACTIONS(1935), + [aux_sym_identities_only_token1] = ACTIONS(1935), + [aux_sym_identity_agent_token1] = ACTIONS(1935), + [aux_sym_identity_file_token1] = ACTIONS(1935), + [aux_sym_ignore_unknown_token1] = ACTIONS(1935), + [aux_sym_include_token1] = ACTIONS(1935), + [aux_sym_ip_qos_token1] = ACTIONS(1935), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1935), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1935), + [aux_sym_kex_algorithms_token1] = ACTIONS(1935), + [aux_sym_known_hosts_command_token1] = ACTIONS(1935), + [aux_sym_local_command_token1] = ACTIONS(1935), + [aux_sym_local_forward_token1] = ACTIONS(1935), + [aux_sym_log_level_token1] = ACTIONS(1935), + [aux_sym_log_verbose_token1] = ACTIONS(1935), + [aux_sym_macs_token1] = ACTIONS(1935), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1935), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1935), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1935), + [aux_sym_password_authentication_token1] = ACTIONS(1935), + [aux_sym_permit_local_command_token1] = ACTIONS(1935), + [aux_sym_permit_remote_open_token1] = ACTIONS(1935), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1935), + [aux_sym_port_token1] = ACTIONS(1935), + [aux_sym_preferred_authentications_token1] = ACTIONS(1935), + [aux_sym_protocol_token1] = ACTIONS(1935), + [aux_sym_proxy_command_token1] = ACTIONS(1935), + [aux_sym_proxy_jump_token1] = ACTIONS(1935), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1935), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1935), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1935), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1935), + [aux_sym_rekey_limit_token1] = ACTIONS(1935), + [aux_sym_remote_command_token1] = ACTIONS(1935), + [aux_sym_remote_forward_token1] = ACTIONS(1935), + [aux_sym_request_tty_token1] = ACTIONS(1935), + [aux_sym_required_rsa_size_token1] = ACTIONS(1935), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1935), + [aux_sym_security_key_provider_token1] = ACTIONS(1935), + [aux_sym_send_env_token1] = ACTIONS(1935), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1935), + [aux_sym_server_alive_interval_token1] = ACTIONS(1935), + [aux_sym_session_type_token1] = ACTIONS(1935), + [aux_sym_set_env_token1] = ACTIONS(1935), + [aux_sym_stdin_null_token1] = ACTIONS(1935), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1935), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1935), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1935), + [aux_sym_syslog_facility_token1] = ACTIONS(1935), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1935), + [aux_sym_keep_alive_token1] = ACTIONS(1935), + [aux_sym_tag_token1] = ACTIONS(1935), + [aux_sym_tunnel_token1] = ACTIONS(1937), + [aux_sym_tunnel_device_token1] = ACTIONS(1935), + [aux_sym_update_host_keys_token1] = ACTIONS(1935), + [aux_sym_use_keychain_token1] = ACTIONS(1935), + [aux_sym_use_roaming_token1] = ACTIONS(1935), + [aux_sym_user_token1] = ACTIONS(1937), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1935), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1935), + [aux_sym_visual_host_key_token1] = ACTIONS(1935), + [aux_sym_xauth_location_token1] = ACTIONS(1935), }, [707] = { - [ts_builtin_sym_end] = ACTIONS(750), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(752), - [aux_sym_match_token1] = ACTIONS(750), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(750), - [aux_sym_address_family_token1] = ACTIONS(750), - [aux_sym_batch_mode_token1] = ACTIONS(750), - [aux_sym_bind_address_token1] = ACTIONS(750), - [aux_sym_bind_interface_token1] = ACTIONS(750), - [aux_sym_canonical_domains_token1] = ACTIONS(750), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(750), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(750), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(750), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(750), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(750), - [aux_sym_certificate_file_token1] = ACTIONS(750), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(750), - [aux_sym_channel_timeout_token1] = ACTIONS(750), - [aux_sym_check_host_ip_token1] = ACTIONS(750), - [aux_sym_ciphers_token1] = ACTIONS(750), - [aux_sym_cipher_token1] = ACTIONS(752), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(750), - [aux_sym_compression_token1] = ACTIONS(750), - [aux_sym_connection_attempts_token1] = ACTIONS(750), - [aux_sym_connect_timeout_token1] = ACTIONS(750), - [aux_sym_control_master_token1] = ACTIONS(750), - [aux_sym_control_path_token1] = ACTIONS(750), - [aux_sym_control_persist_token1] = ACTIONS(750), - [aux_sym_dynamic_forward_token1] = ACTIONS(750), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(750), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(750), - [aux_sym_escape_char_token1] = ACTIONS(750), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(750), - [aux_sym_fingerprint_hash_token1] = ACTIONS(750), - [aux_sym_fork_after_authentication_token1] = ACTIONS(750), - [aux_sym_forward_agent_token1] = ACTIONS(750), - [aux_sym_forward_x11_token1] = ACTIONS(752), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(750), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(750), - [aux_sym_gateway_ports_token1] = ACTIONS(750), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(750), - [aux_sym_gssapi_authentication_token1] = ACTIONS(750), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(750), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(750), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(750), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(750), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(750), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(750), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(750), - [aux_sym_hash_known_hosts_token1] = ACTIONS(750), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(750), - [aux_sym_hostbased_authentication_token1] = ACTIONS(750), - [aux_sym_host_key_algorithms_token1] = ACTIONS(750), - [aux_sym_host_key_alias_token1] = ACTIONS(750), - [aux_sym_hostname_token1] = ACTIONS(750), - [aux_sym_identities_only_token1] = ACTIONS(750), - [aux_sym_identity_agent_token1] = ACTIONS(750), - [aux_sym_identity_file_token1] = ACTIONS(750), - [aux_sym_ignore_unknown_token1] = ACTIONS(750), - [aux_sym_include_token1] = ACTIONS(750), - [aux_sym_ip_qos_token1] = ACTIONS(750), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(750), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(750), - [aux_sym_kex_algorithms_token1] = ACTIONS(750), - [aux_sym_known_hosts_command_token1] = ACTIONS(750), - [aux_sym_local_command_token1] = ACTIONS(750), - [aux_sym_local_forward_token1] = ACTIONS(750), - [aux_sym_log_level_token1] = ACTIONS(750), - [aux_sym_log_verbose_token1] = ACTIONS(750), - [aux_sym_macs_token1] = ACTIONS(750), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(750), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(750), - [aux_sym_password_authentication_token1] = ACTIONS(750), - [aux_sym_permit_local_command_token1] = ACTIONS(750), - [aux_sym_permit_remote_open_token1] = ACTIONS(750), - [aux_sym_pkcs11_provider_token1] = ACTIONS(750), - [aux_sym_port_token1] = ACTIONS(750), - [aux_sym_preferred_authentications_token1] = ACTIONS(750), - [aux_sym_protocol_token1] = ACTIONS(750), - [aux_sym_proxy_command_token1] = ACTIONS(750), - [aux_sym_proxy_jump_token1] = ACTIONS(750), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(750), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(750), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(750), - [aux_sym_pubkey_authentication_token1] = ACTIONS(750), - [aux_sym_rekey_limit_token1] = ACTIONS(750), - [aux_sym_remote_command_token1] = ACTIONS(750), - [aux_sym_remote_forward_token1] = ACTIONS(750), - [aux_sym_request_tty_token1] = ACTIONS(750), - [aux_sym_required_rsa_size_token1] = ACTIONS(750), - [aux_sym_revoked_host_keys_token1] = ACTIONS(750), - [aux_sym_security_key_provider_token1] = ACTIONS(750), - [aux_sym_send_env_token1] = ACTIONS(750), - [aux_sym_server_alive_count_max_token1] = ACTIONS(750), - [aux_sym_server_alive_interval_token1] = ACTIONS(750), - [aux_sym_session_type_token1] = ACTIONS(750), - [aux_sym_set_env_token1] = ACTIONS(750), - [aux_sym_stdin_null_token1] = ACTIONS(750), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(750), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(750), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(750), - [aux_sym_syslog_facility_token1] = ACTIONS(750), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(750), - [aux_sym_keep_alive_token1] = ACTIONS(750), - [aux_sym_tag_token1] = ACTIONS(750), - [aux_sym_tunnel_token1] = ACTIONS(752), - [aux_sym_tunnel_device_token1] = ACTIONS(750), - [aux_sym_update_host_keys_token1] = ACTIONS(750), - [aux_sym_use_keychain_token1] = ACTIONS(750), - [aux_sym_use_roaming_token1] = ACTIONS(750), - [aux_sym_user_token1] = ACTIONS(752), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(750), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(750), - [aux_sym_visual_host_key_token1] = ACTIONS(750), - [aux_sym_xauth_location_token1] = ACTIONS(750), + [ts_builtin_sym_end] = ACTIONS(671), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(673), + [aux_sym_match_token1] = ACTIONS(671), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(671), + [aux_sym_address_family_token1] = ACTIONS(671), + [aux_sym_batch_mode_token1] = ACTIONS(671), + [aux_sym_bind_address_token1] = ACTIONS(671), + [aux_sym_bind_interface_token1] = ACTIONS(671), + [aux_sym_canonical_domains_token1] = ACTIONS(671), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(671), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(671), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(671), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(671), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(671), + [aux_sym_certificate_file_token1] = ACTIONS(671), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(671), + [aux_sym_channel_timeout_token1] = ACTIONS(671), + [aux_sym_check_host_ip_token1] = ACTIONS(671), + [aux_sym_ciphers_token1] = ACTIONS(671), + [aux_sym_cipher_token1] = ACTIONS(673), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(671), + [aux_sym_compression_token1] = ACTIONS(671), + [aux_sym_connection_attempts_token1] = ACTIONS(671), + [aux_sym_connect_timeout_token1] = ACTIONS(671), + [aux_sym_control_master_token1] = ACTIONS(671), + [aux_sym_control_path_token1] = ACTIONS(671), + [aux_sym_control_persist_token1] = ACTIONS(671), + [aux_sym_dynamic_forward_token1] = ACTIONS(671), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(671), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(671), + [aux_sym_escape_char_token1] = ACTIONS(671), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(671), + [aux_sym_fingerprint_hash_token1] = ACTIONS(671), + [aux_sym_fork_after_authentication_token1] = ACTIONS(671), + [aux_sym_forward_agent_token1] = ACTIONS(671), + [aux_sym_forward_x11_token1] = ACTIONS(673), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(671), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(671), + [aux_sym_gateway_ports_token1] = ACTIONS(671), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(671), + [aux_sym_gssapi_authentication_token1] = ACTIONS(671), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(671), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(671), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(671), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(671), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(671), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(671), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(671), + [aux_sym_hash_known_hosts_token1] = ACTIONS(671), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(671), + [aux_sym_hostbased_authentication_token1] = ACTIONS(671), + [aux_sym_host_key_algorithms_token1] = ACTIONS(671), + [aux_sym_host_key_alias_token1] = ACTIONS(671), + [aux_sym_hostname_token1] = ACTIONS(671), + [aux_sym_identities_only_token1] = ACTIONS(671), + [aux_sym_identity_agent_token1] = ACTIONS(671), + [aux_sym_identity_file_token1] = ACTIONS(671), + [aux_sym_ignore_unknown_token1] = ACTIONS(671), + [aux_sym_include_token1] = ACTIONS(671), + [aux_sym_ip_qos_token1] = ACTIONS(671), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(671), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(671), + [aux_sym_kex_algorithms_token1] = ACTIONS(671), + [aux_sym_known_hosts_command_token1] = ACTIONS(671), + [aux_sym_local_command_token1] = ACTIONS(671), + [aux_sym_local_forward_token1] = ACTIONS(671), + [aux_sym_log_level_token1] = ACTIONS(671), + [aux_sym_log_verbose_token1] = ACTIONS(671), + [aux_sym_macs_token1] = ACTIONS(671), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(671), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(671), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(671), + [aux_sym_password_authentication_token1] = ACTIONS(671), + [aux_sym_permit_local_command_token1] = ACTIONS(671), + [aux_sym_permit_remote_open_token1] = ACTIONS(671), + [aux_sym_pkcs11_provider_token1] = ACTIONS(671), + [aux_sym_port_token1] = ACTIONS(671), + [aux_sym_preferred_authentications_token1] = ACTIONS(671), + [aux_sym_protocol_token1] = ACTIONS(671), + [aux_sym_proxy_command_token1] = ACTIONS(671), + [aux_sym_proxy_jump_token1] = ACTIONS(671), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(671), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(671), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(671), + [aux_sym_pubkey_authentication_token1] = ACTIONS(671), + [aux_sym_rekey_limit_token1] = ACTIONS(671), + [aux_sym_remote_command_token1] = ACTIONS(671), + [aux_sym_remote_forward_token1] = ACTIONS(671), + [aux_sym_request_tty_token1] = ACTIONS(671), + [aux_sym_required_rsa_size_token1] = ACTIONS(671), + [aux_sym_revoked_host_keys_token1] = ACTIONS(671), + [aux_sym_security_key_provider_token1] = ACTIONS(671), + [aux_sym_send_env_token1] = ACTIONS(671), + [aux_sym_server_alive_count_max_token1] = ACTIONS(671), + [aux_sym_server_alive_interval_token1] = ACTIONS(671), + [aux_sym_session_type_token1] = ACTIONS(671), + [aux_sym_set_env_token1] = ACTIONS(671), + [aux_sym_stdin_null_token1] = ACTIONS(671), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(671), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(671), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(671), + [aux_sym_syslog_facility_token1] = ACTIONS(671), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(671), + [aux_sym_keep_alive_token1] = ACTIONS(671), + [aux_sym_tag_token1] = ACTIONS(671), + [aux_sym_tunnel_token1] = ACTIONS(673), + [aux_sym_tunnel_device_token1] = ACTIONS(671), + [aux_sym_update_host_keys_token1] = ACTIONS(671), + [aux_sym_use_keychain_token1] = ACTIONS(671), + [aux_sym_use_roaming_token1] = ACTIONS(671), + [aux_sym_user_token1] = ACTIONS(673), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(671), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(671), + [aux_sym_visual_host_key_token1] = ACTIONS(671), + [aux_sym_xauth_location_token1] = ACTIONS(671), }, [708] = { - [ts_builtin_sym_end] = ACTIONS(756), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(758), - [aux_sym_match_token1] = ACTIONS(756), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(756), - [aux_sym_address_family_token1] = ACTIONS(756), - [aux_sym_batch_mode_token1] = ACTIONS(756), - [aux_sym_bind_address_token1] = ACTIONS(756), - [aux_sym_bind_interface_token1] = ACTIONS(756), - [aux_sym_canonical_domains_token1] = ACTIONS(756), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(756), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(756), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(756), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(756), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(756), - [aux_sym_certificate_file_token1] = ACTIONS(756), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(756), - [aux_sym_channel_timeout_token1] = ACTIONS(756), - [aux_sym_check_host_ip_token1] = ACTIONS(756), - [aux_sym_ciphers_token1] = ACTIONS(756), - [aux_sym_cipher_token1] = ACTIONS(758), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(756), - [aux_sym_compression_token1] = ACTIONS(756), - [aux_sym_connection_attempts_token1] = ACTIONS(756), - [aux_sym_connect_timeout_token1] = ACTIONS(756), - [aux_sym_control_master_token1] = ACTIONS(756), - [aux_sym_control_path_token1] = ACTIONS(756), - [aux_sym_control_persist_token1] = ACTIONS(756), - [aux_sym_dynamic_forward_token1] = ACTIONS(756), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(756), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(756), - [aux_sym_escape_char_token1] = ACTIONS(756), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(756), - [aux_sym_fingerprint_hash_token1] = ACTIONS(756), - [aux_sym_fork_after_authentication_token1] = ACTIONS(756), - [aux_sym_forward_agent_token1] = ACTIONS(756), - [aux_sym_forward_x11_token1] = ACTIONS(758), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(756), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(756), - [aux_sym_gateway_ports_token1] = ACTIONS(756), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(756), - [aux_sym_gssapi_authentication_token1] = ACTIONS(756), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(756), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(756), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(756), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(756), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(756), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(756), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(756), - [aux_sym_hash_known_hosts_token1] = ACTIONS(756), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(756), - [aux_sym_hostbased_authentication_token1] = ACTIONS(756), - [aux_sym_host_key_algorithms_token1] = ACTIONS(756), - [aux_sym_host_key_alias_token1] = ACTIONS(756), - [aux_sym_hostname_token1] = ACTIONS(756), - [aux_sym_identities_only_token1] = ACTIONS(756), - [aux_sym_identity_agent_token1] = ACTIONS(756), - [aux_sym_identity_file_token1] = ACTIONS(756), - [aux_sym_ignore_unknown_token1] = ACTIONS(756), - [aux_sym_include_token1] = ACTIONS(756), - [aux_sym_ip_qos_token1] = ACTIONS(756), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(756), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(756), - [aux_sym_kex_algorithms_token1] = ACTIONS(756), - [aux_sym_known_hosts_command_token1] = ACTIONS(756), - [aux_sym_local_command_token1] = ACTIONS(756), - [aux_sym_local_forward_token1] = ACTIONS(756), - [aux_sym_log_level_token1] = ACTIONS(756), - [aux_sym_log_verbose_token1] = ACTIONS(756), - [aux_sym_macs_token1] = ACTIONS(756), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(756), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(756), - [aux_sym_password_authentication_token1] = ACTIONS(756), - [aux_sym_permit_local_command_token1] = ACTIONS(756), - [aux_sym_permit_remote_open_token1] = ACTIONS(756), - [aux_sym_pkcs11_provider_token1] = ACTIONS(756), - [aux_sym_port_token1] = ACTIONS(756), - [aux_sym_preferred_authentications_token1] = ACTIONS(756), - [aux_sym_protocol_token1] = ACTIONS(756), - [aux_sym_proxy_command_token1] = ACTIONS(756), - [aux_sym_proxy_jump_token1] = ACTIONS(756), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(756), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(756), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(756), - [aux_sym_pubkey_authentication_token1] = ACTIONS(756), - [aux_sym_rekey_limit_token1] = ACTIONS(756), - [aux_sym_remote_command_token1] = ACTIONS(756), - [aux_sym_remote_forward_token1] = ACTIONS(756), - [aux_sym_request_tty_token1] = ACTIONS(756), - [aux_sym_required_rsa_size_token1] = ACTIONS(756), - [aux_sym_revoked_host_keys_token1] = ACTIONS(756), - [aux_sym_security_key_provider_token1] = ACTIONS(756), - [aux_sym_send_env_token1] = ACTIONS(756), - [aux_sym_server_alive_count_max_token1] = ACTIONS(756), - [aux_sym_server_alive_interval_token1] = ACTIONS(756), - [aux_sym_session_type_token1] = ACTIONS(756), - [aux_sym_set_env_token1] = ACTIONS(756), - [aux_sym_stdin_null_token1] = ACTIONS(756), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(756), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(756), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(756), - [aux_sym_syslog_facility_token1] = ACTIONS(756), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(756), - [aux_sym_keep_alive_token1] = ACTIONS(756), - [aux_sym_tag_token1] = ACTIONS(756), - [aux_sym_tunnel_token1] = ACTIONS(758), - [aux_sym_tunnel_device_token1] = ACTIONS(756), - [aux_sym_update_host_keys_token1] = ACTIONS(756), - [aux_sym_use_keychain_token1] = ACTIONS(756), - [aux_sym_use_roaming_token1] = ACTIONS(756), - [aux_sym_user_token1] = ACTIONS(758), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(756), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(756), - [aux_sym_visual_host_key_token1] = ACTIONS(756), - [aux_sym_xauth_location_token1] = ACTIONS(756), + [ts_builtin_sym_end] = ACTIONS(797), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(799), + [aux_sym_match_token1] = ACTIONS(797), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(797), + [aux_sym_address_family_token1] = ACTIONS(797), + [aux_sym_batch_mode_token1] = ACTIONS(797), + [aux_sym_bind_address_token1] = ACTIONS(797), + [aux_sym_bind_interface_token1] = ACTIONS(797), + [aux_sym_canonical_domains_token1] = ACTIONS(797), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(797), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(797), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(797), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(797), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(797), + [aux_sym_certificate_file_token1] = ACTIONS(797), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(797), + [aux_sym_channel_timeout_token1] = ACTIONS(797), + [aux_sym_check_host_ip_token1] = ACTIONS(797), + [aux_sym_ciphers_token1] = ACTIONS(797), + [aux_sym_cipher_token1] = ACTIONS(799), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(797), + [aux_sym_compression_token1] = ACTIONS(797), + [aux_sym_connection_attempts_token1] = ACTIONS(797), + [aux_sym_connect_timeout_token1] = ACTIONS(797), + [aux_sym_control_master_token1] = ACTIONS(797), + [aux_sym_control_path_token1] = ACTIONS(797), + [aux_sym_control_persist_token1] = ACTIONS(797), + [aux_sym_dynamic_forward_token1] = ACTIONS(797), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(797), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(797), + [aux_sym_escape_char_token1] = ACTIONS(797), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(797), + [aux_sym_fingerprint_hash_token1] = ACTIONS(797), + [aux_sym_fork_after_authentication_token1] = ACTIONS(797), + [aux_sym_forward_agent_token1] = ACTIONS(797), + [aux_sym_forward_x11_token1] = ACTIONS(799), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(797), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(797), + [aux_sym_gateway_ports_token1] = ACTIONS(797), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(797), + [aux_sym_gssapi_authentication_token1] = ACTIONS(797), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(797), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(797), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(797), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(797), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(797), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(797), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(797), + [aux_sym_hash_known_hosts_token1] = ACTIONS(797), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(797), + [aux_sym_hostbased_authentication_token1] = ACTIONS(797), + [aux_sym_host_key_algorithms_token1] = ACTIONS(797), + [aux_sym_host_key_alias_token1] = ACTIONS(797), + [aux_sym_hostname_token1] = ACTIONS(797), + [aux_sym_identities_only_token1] = ACTIONS(797), + [aux_sym_identity_agent_token1] = ACTIONS(797), + [aux_sym_identity_file_token1] = ACTIONS(797), + [aux_sym_ignore_unknown_token1] = ACTIONS(797), + [aux_sym_include_token1] = ACTIONS(797), + [aux_sym_ip_qos_token1] = ACTIONS(797), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(797), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(797), + [aux_sym_kex_algorithms_token1] = ACTIONS(797), + [aux_sym_known_hosts_command_token1] = ACTIONS(797), + [aux_sym_local_command_token1] = ACTIONS(797), + [aux_sym_local_forward_token1] = ACTIONS(797), + [aux_sym_log_level_token1] = ACTIONS(797), + [aux_sym_log_verbose_token1] = ACTIONS(797), + [aux_sym_macs_token1] = ACTIONS(797), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(797), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(797), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(797), + [aux_sym_password_authentication_token1] = ACTIONS(797), + [aux_sym_permit_local_command_token1] = ACTIONS(797), + [aux_sym_permit_remote_open_token1] = ACTIONS(797), + [aux_sym_pkcs11_provider_token1] = ACTIONS(797), + [aux_sym_port_token1] = ACTIONS(797), + [aux_sym_preferred_authentications_token1] = ACTIONS(797), + [aux_sym_protocol_token1] = ACTIONS(797), + [aux_sym_proxy_command_token1] = ACTIONS(797), + [aux_sym_proxy_jump_token1] = ACTIONS(797), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(797), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(797), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(797), + [aux_sym_pubkey_authentication_token1] = ACTIONS(797), + [aux_sym_rekey_limit_token1] = ACTIONS(797), + [aux_sym_remote_command_token1] = ACTIONS(797), + [aux_sym_remote_forward_token1] = ACTIONS(797), + [aux_sym_request_tty_token1] = ACTIONS(797), + [aux_sym_required_rsa_size_token1] = ACTIONS(797), + [aux_sym_revoked_host_keys_token1] = ACTIONS(797), + [aux_sym_security_key_provider_token1] = ACTIONS(797), + [aux_sym_send_env_token1] = ACTIONS(797), + [aux_sym_server_alive_count_max_token1] = ACTIONS(797), + [aux_sym_server_alive_interval_token1] = ACTIONS(797), + [aux_sym_session_type_token1] = ACTIONS(797), + [aux_sym_set_env_token1] = ACTIONS(797), + [aux_sym_stdin_null_token1] = ACTIONS(797), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(797), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(797), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(797), + [aux_sym_syslog_facility_token1] = ACTIONS(797), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(797), + [aux_sym_keep_alive_token1] = ACTIONS(797), + [aux_sym_tag_token1] = ACTIONS(797), + [aux_sym_tunnel_token1] = ACTIONS(799), + [aux_sym_tunnel_device_token1] = ACTIONS(797), + [aux_sym_update_host_keys_token1] = ACTIONS(797), + [aux_sym_use_keychain_token1] = ACTIONS(797), + [aux_sym_use_roaming_token1] = ACTIONS(797), + [aux_sym_user_token1] = ACTIONS(799), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(797), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(797), + [aux_sym_visual_host_key_token1] = ACTIONS(797), + [aux_sym_xauth_location_token1] = ACTIONS(797), }, [709] = { - [ts_builtin_sym_end] = ACTIONS(1900), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1902), - [aux_sym_match_token1] = ACTIONS(1900), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1900), - [aux_sym_address_family_token1] = ACTIONS(1900), - [aux_sym_batch_mode_token1] = ACTIONS(1900), - [aux_sym_bind_address_token1] = ACTIONS(1900), - [aux_sym_bind_interface_token1] = ACTIONS(1900), - [aux_sym_canonical_domains_token1] = ACTIONS(1900), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1900), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1900), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1900), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1900), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1900), - [aux_sym_certificate_file_token1] = ACTIONS(1900), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1900), - [aux_sym_channel_timeout_token1] = ACTIONS(1900), - [aux_sym_check_host_ip_token1] = ACTIONS(1900), - [aux_sym_ciphers_token1] = ACTIONS(1900), - [aux_sym_cipher_token1] = ACTIONS(1902), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1900), - [aux_sym_compression_token1] = ACTIONS(1900), - [aux_sym_connection_attempts_token1] = ACTIONS(1900), - [aux_sym_connect_timeout_token1] = ACTIONS(1900), - [aux_sym_control_master_token1] = ACTIONS(1900), - [aux_sym_control_path_token1] = ACTIONS(1900), - [aux_sym_control_persist_token1] = ACTIONS(1900), - [aux_sym_dynamic_forward_token1] = ACTIONS(1900), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1900), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1900), - [aux_sym_escape_char_token1] = ACTIONS(1900), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1900), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1900), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1900), - [aux_sym_forward_agent_token1] = ACTIONS(1900), - [aux_sym_forward_x11_token1] = ACTIONS(1902), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1900), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1900), - [aux_sym_gateway_ports_token1] = ACTIONS(1900), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1900), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1900), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1900), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1900), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1900), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1900), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1900), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1900), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1900), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1900), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1900), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1900), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1900), - [aux_sym_host_key_alias_token1] = ACTIONS(1900), - [aux_sym_hostname_token1] = ACTIONS(1900), - [aux_sym_identities_only_token1] = ACTIONS(1900), - [aux_sym_identity_agent_token1] = ACTIONS(1900), - [aux_sym_identity_file_token1] = ACTIONS(1900), - [aux_sym_ignore_unknown_token1] = ACTIONS(1900), - [aux_sym_include_token1] = ACTIONS(1900), - [aux_sym_ip_qos_token1] = ACTIONS(1900), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1900), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1900), - [aux_sym_kex_algorithms_token1] = ACTIONS(1900), - [aux_sym_known_hosts_command_token1] = ACTIONS(1900), - [aux_sym_local_command_token1] = ACTIONS(1900), - [aux_sym_local_forward_token1] = ACTIONS(1900), - [aux_sym_log_level_token1] = ACTIONS(1900), - [aux_sym_log_verbose_token1] = ACTIONS(1900), - [aux_sym_macs_token1] = ACTIONS(1900), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1900), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1900), - [aux_sym_password_authentication_token1] = ACTIONS(1900), - [aux_sym_permit_local_command_token1] = ACTIONS(1900), - [aux_sym_permit_remote_open_token1] = ACTIONS(1900), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1900), - [aux_sym_port_token1] = ACTIONS(1900), - [aux_sym_preferred_authentications_token1] = ACTIONS(1900), - [aux_sym_protocol_token1] = ACTIONS(1900), - [aux_sym_proxy_command_token1] = ACTIONS(1900), - [aux_sym_proxy_jump_token1] = ACTIONS(1900), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1900), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1900), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1900), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1900), - [aux_sym_rekey_limit_token1] = ACTIONS(1900), - [aux_sym_remote_command_token1] = ACTIONS(1900), - [aux_sym_remote_forward_token1] = ACTIONS(1900), - [aux_sym_request_tty_token1] = ACTIONS(1900), - [aux_sym_required_rsa_size_token1] = ACTIONS(1900), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1900), - [aux_sym_security_key_provider_token1] = ACTIONS(1900), - [aux_sym_send_env_token1] = ACTIONS(1900), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1900), - [aux_sym_server_alive_interval_token1] = ACTIONS(1900), - [aux_sym_session_type_token1] = ACTIONS(1900), - [aux_sym_set_env_token1] = ACTIONS(1900), - [aux_sym_stdin_null_token1] = ACTIONS(1900), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1900), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1900), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1900), - [aux_sym_syslog_facility_token1] = ACTIONS(1900), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1900), - [aux_sym_keep_alive_token1] = ACTIONS(1900), - [aux_sym_tag_token1] = ACTIONS(1900), - [aux_sym_tunnel_token1] = ACTIONS(1902), - [aux_sym_tunnel_device_token1] = ACTIONS(1900), - [aux_sym_update_host_keys_token1] = ACTIONS(1900), - [aux_sym_use_keychain_token1] = ACTIONS(1900), - [aux_sym_use_roaming_token1] = ACTIONS(1900), - [aux_sym_user_token1] = ACTIONS(1902), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1900), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1900), - [aux_sym_visual_host_key_token1] = ACTIONS(1900), - [aux_sym_xauth_location_token1] = ACTIONS(1900), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1931), + [aux_sym_match_token1] = ACTIONS(1929), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1929), + [aux_sym_address_family_token1] = ACTIONS(1929), + [aux_sym_batch_mode_token1] = ACTIONS(1929), + [aux_sym_bind_address_token1] = ACTIONS(1929), + [aux_sym_bind_interface_token1] = ACTIONS(1929), + [aux_sym_canonical_domains_token1] = ACTIONS(1929), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1929), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1929), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1929), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1929), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1929), + [aux_sym_certificate_file_token1] = ACTIONS(1929), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1929), + [aux_sym_channel_timeout_token1] = ACTIONS(1929), + [aux_sym_check_host_ip_token1] = ACTIONS(1929), + [aux_sym_ciphers_token1] = ACTIONS(1929), + [aux_sym_cipher_token1] = ACTIONS(1931), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1929), + [aux_sym_compression_token1] = ACTIONS(1929), + [aux_sym_connection_attempts_token1] = ACTIONS(1929), + [aux_sym_connect_timeout_token1] = ACTIONS(1929), + [aux_sym_control_master_token1] = ACTIONS(1929), + [aux_sym_control_path_token1] = ACTIONS(1929), + [aux_sym_control_persist_token1] = ACTIONS(1929), + [aux_sym_dynamic_forward_token1] = ACTIONS(1929), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1929), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1929), + [aux_sym_escape_char_token1] = ACTIONS(1929), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1929), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1929), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1929), + [aux_sym_forward_agent_token1] = ACTIONS(1929), + [aux_sym_forward_x11_token1] = ACTIONS(1931), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1929), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1929), + [aux_sym_gateway_ports_token1] = ACTIONS(1929), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1929), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1929), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1929), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1929), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1929), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1929), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1929), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1929), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1929), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1929), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1929), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1929), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1929), + [aux_sym_host_key_alias_token1] = ACTIONS(1929), + [aux_sym_hostname_token1] = ACTIONS(1929), + [aux_sym_identities_only_token1] = ACTIONS(1929), + [aux_sym_identity_agent_token1] = ACTIONS(1929), + [aux_sym_identity_file_token1] = ACTIONS(1929), + [aux_sym_ignore_unknown_token1] = ACTIONS(1929), + [aux_sym_include_token1] = ACTIONS(1929), + [aux_sym_ip_qos_token1] = ACTIONS(1929), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1929), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1929), + [aux_sym_kex_algorithms_token1] = ACTIONS(1929), + [aux_sym_known_hosts_command_token1] = ACTIONS(1929), + [aux_sym_local_command_token1] = ACTIONS(1929), + [aux_sym_local_forward_token1] = ACTIONS(1929), + [aux_sym_log_level_token1] = ACTIONS(1929), + [aux_sym_log_verbose_token1] = ACTIONS(1929), + [aux_sym_macs_token1] = ACTIONS(1929), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1929), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1929), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1929), + [aux_sym_password_authentication_token1] = ACTIONS(1929), + [aux_sym_permit_local_command_token1] = ACTIONS(1929), + [aux_sym_permit_remote_open_token1] = ACTIONS(1929), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1929), + [aux_sym_port_token1] = ACTIONS(1929), + [aux_sym_preferred_authentications_token1] = ACTIONS(1929), + [aux_sym_protocol_token1] = ACTIONS(1929), + [aux_sym_proxy_command_token1] = ACTIONS(1929), + [aux_sym_proxy_jump_token1] = ACTIONS(1929), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1929), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1929), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1929), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1929), + [aux_sym_rekey_limit_token1] = ACTIONS(1929), + [aux_sym_remote_command_token1] = ACTIONS(1929), + [aux_sym_remote_forward_token1] = ACTIONS(1929), + [aux_sym_request_tty_token1] = ACTIONS(1929), + [aux_sym_required_rsa_size_token1] = ACTIONS(1929), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1929), + [aux_sym_security_key_provider_token1] = ACTIONS(1929), + [aux_sym_send_env_token1] = ACTIONS(1929), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1929), + [aux_sym_server_alive_interval_token1] = ACTIONS(1929), + [aux_sym_session_type_token1] = ACTIONS(1929), + [aux_sym_set_env_token1] = ACTIONS(1929), + [aux_sym_stdin_null_token1] = ACTIONS(1929), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1929), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1929), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1929), + [aux_sym_syslog_facility_token1] = ACTIONS(1929), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1929), + [aux_sym_keep_alive_token1] = ACTIONS(1929), + [aux_sym_tag_token1] = ACTIONS(1929), + [aux_sym_tunnel_token1] = ACTIONS(1931), + [aux_sym_tunnel_device_token1] = ACTIONS(1929), + [aux_sym_update_host_keys_token1] = ACTIONS(1929), + [aux_sym_use_keychain_token1] = ACTIONS(1929), + [aux_sym_use_roaming_token1] = ACTIONS(1929), + [aux_sym_user_token1] = ACTIONS(1931), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1929), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1929), + [aux_sym_visual_host_key_token1] = ACTIONS(1929), + [aux_sym_xauth_location_token1] = ACTIONS(1929), }, [710] = { - [ts_builtin_sym_end] = ACTIONS(1032), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1034), - [aux_sym_match_token1] = ACTIONS(1032), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1032), - [aux_sym_address_family_token1] = ACTIONS(1032), - [aux_sym_batch_mode_token1] = ACTIONS(1032), - [aux_sym_bind_address_token1] = ACTIONS(1032), - [aux_sym_bind_interface_token1] = ACTIONS(1032), - [aux_sym_canonical_domains_token1] = ACTIONS(1032), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1032), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1032), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1032), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1032), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1032), - [aux_sym_certificate_file_token1] = ACTIONS(1032), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1032), - [aux_sym_channel_timeout_token1] = ACTIONS(1032), - [aux_sym_check_host_ip_token1] = ACTIONS(1032), - [aux_sym_ciphers_token1] = ACTIONS(1032), - [aux_sym_cipher_token1] = ACTIONS(1034), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1032), - [aux_sym_compression_token1] = ACTIONS(1032), - [aux_sym_connection_attempts_token1] = ACTIONS(1032), - [aux_sym_connect_timeout_token1] = ACTIONS(1032), - [aux_sym_control_master_token1] = ACTIONS(1032), - [aux_sym_control_path_token1] = ACTIONS(1032), - [aux_sym_control_persist_token1] = ACTIONS(1032), - [aux_sym_dynamic_forward_token1] = ACTIONS(1032), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1032), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1032), - [aux_sym_escape_char_token1] = ACTIONS(1032), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1032), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1032), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1032), - [aux_sym_forward_agent_token1] = ACTIONS(1032), - [aux_sym_forward_x11_token1] = ACTIONS(1034), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1032), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1032), - [aux_sym_gateway_ports_token1] = ACTIONS(1032), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1032), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1032), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1032), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1032), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1032), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1032), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1032), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1032), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1032), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1032), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1032), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1032), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1032), - [aux_sym_host_key_alias_token1] = ACTIONS(1032), - [aux_sym_hostname_token1] = ACTIONS(1032), - [aux_sym_identities_only_token1] = ACTIONS(1032), - [aux_sym_identity_agent_token1] = ACTIONS(1032), - [aux_sym_identity_file_token1] = ACTIONS(1032), - [aux_sym_ignore_unknown_token1] = ACTIONS(1032), - [aux_sym_include_token1] = ACTIONS(1032), - [aux_sym_ip_qos_token1] = ACTIONS(1032), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1032), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1032), - [aux_sym_kex_algorithms_token1] = ACTIONS(1032), - [aux_sym_known_hosts_command_token1] = ACTIONS(1032), - [aux_sym_local_command_token1] = ACTIONS(1032), - [aux_sym_local_forward_token1] = ACTIONS(1032), - [aux_sym_log_level_token1] = ACTIONS(1032), - [aux_sym_log_verbose_token1] = ACTIONS(1032), - [aux_sym_macs_token1] = ACTIONS(1032), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1032), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1032), - [aux_sym_password_authentication_token1] = ACTIONS(1032), - [aux_sym_permit_local_command_token1] = ACTIONS(1032), - [aux_sym_permit_remote_open_token1] = ACTIONS(1032), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1032), - [aux_sym_port_token1] = ACTIONS(1032), - [aux_sym_preferred_authentications_token1] = ACTIONS(1032), - [aux_sym_protocol_token1] = ACTIONS(1032), - [aux_sym_proxy_command_token1] = ACTIONS(1032), - [aux_sym_proxy_jump_token1] = ACTIONS(1032), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1032), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1032), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1032), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1032), - [aux_sym_rekey_limit_token1] = ACTIONS(1032), - [aux_sym_remote_command_token1] = ACTIONS(1032), - [aux_sym_remote_forward_token1] = ACTIONS(1032), - [aux_sym_request_tty_token1] = ACTIONS(1032), - [aux_sym_required_rsa_size_token1] = ACTIONS(1032), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1032), - [aux_sym_security_key_provider_token1] = ACTIONS(1032), - [aux_sym_send_env_token1] = ACTIONS(1032), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1032), - [aux_sym_server_alive_interval_token1] = ACTIONS(1032), - [aux_sym_session_type_token1] = ACTIONS(1032), - [aux_sym_set_env_token1] = ACTIONS(1032), - [aux_sym_stdin_null_token1] = ACTIONS(1032), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1032), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1032), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1032), - [aux_sym_syslog_facility_token1] = ACTIONS(1032), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1032), - [aux_sym_keep_alive_token1] = ACTIONS(1032), - [aux_sym_tag_token1] = ACTIONS(1032), - [aux_sym_tunnel_token1] = ACTIONS(1034), - [aux_sym_tunnel_device_token1] = ACTIONS(1032), - [aux_sym_update_host_keys_token1] = ACTIONS(1032), - [aux_sym_use_keychain_token1] = ACTIONS(1032), - [aux_sym_use_roaming_token1] = ACTIONS(1032), - [aux_sym_user_token1] = ACTIONS(1034), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1032), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1032), - [aux_sym_visual_host_key_token1] = ACTIONS(1032), - [aux_sym_xauth_location_token1] = ACTIONS(1032), + [ts_builtin_sym_end] = ACTIONS(677), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(679), + [aux_sym_match_token1] = ACTIONS(677), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(677), + [aux_sym_address_family_token1] = ACTIONS(677), + [aux_sym_batch_mode_token1] = ACTIONS(677), + [aux_sym_bind_address_token1] = ACTIONS(677), + [aux_sym_bind_interface_token1] = ACTIONS(677), + [aux_sym_canonical_domains_token1] = ACTIONS(677), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(677), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(677), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(677), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(677), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(677), + [aux_sym_certificate_file_token1] = ACTIONS(677), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(677), + [aux_sym_channel_timeout_token1] = ACTIONS(677), + [aux_sym_check_host_ip_token1] = ACTIONS(677), + [aux_sym_ciphers_token1] = ACTIONS(677), + [aux_sym_cipher_token1] = ACTIONS(679), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(677), + [aux_sym_compression_token1] = ACTIONS(677), + [aux_sym_connection_attempts_token1] = ACTIONS(677), + [aux_sym_connect_timeout_token1] = ACTIONS(677), + [aux_sym_control_master_token1] = ACTIONS(677), + [aux_sym_control_path_token1] = ACTIONS(677), + [aux_sym_control_persist_token1] = ACTIONS(677), + [aux_sym_dynamic_forward_token1] = ACTIONS(677), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(677), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(677), + [aux_sym_escape_char_token1] = ACTIONS(677), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(677), + [aux_sym_fingerprint_hash_token1] = ACTIONS(677), + [aux_sym_fork_after_authentication_token1] = ACTIONS(677), + [aux_sym_forward_agent_token1] = ACTIONS(677), + [aux_sym_forward_x11_token1] = ACTIONS(679), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(677), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(677), + [aux_sym_gateway_ports_token1] = ACTIONS(677), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(677), + [aux_sym_gssapi_authentication_token1] = ACTIONS(677), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(677), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(677), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(677), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(677), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(677), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(677), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(677), + [aux_sym_hash_known_hosts_token1] = ACTIONS(677), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(677), + [aux_sym_hostbased_authentication_token1] = ACTIONS(677), + [aux_sym_host_key_algorithms_token1] = ACTIONS(677), + [aux_sym_host_key_alias_token1] = ACTIONS(677), + [aux_sym_hostname_token1] = ACTIONS(677), + [aux_sym_identities_only_token1] = ACTIONS(677), + [aux_sym_identity_agent_token1] = ACTIONS(677), + [aux_sym_identity_file_token1] = ACTIONS(677), + [aux_sym_ignore_unknown_token1] = ACTIONS(677), + [aux_sym_include_token1] = ACTIONS(677), + [aux_sym_ip_qos_token1] = ACTIONS(677), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(677), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(677), + [aux_sym_kex_algorithms_token1] = ACTIONS(677), + [aux_sym_known_hosts_command_token1] = ACTIONS(677), + [aux_sym_local_command_token1] = ACTIONS(677), + [aux_sym_local_forward_token1] = ACTIONS(677), + [aux_sym_log_level_token1] = ACTIONS(677), + [aux_sym_log_verbose_token1] = ACTIONS(677), + [aux_sym_macs_token1] = ACTIONS(677), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(677), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(677), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(677), + [aux_sym_password_authentication_token1] = ACTIONS(677), + [aux_sym_permit_local_command_token1] = ACTIONS(677), + [aux_sym_permit_remote_open_token1] = ACTIONS(677), + [aux_sym_pkcs11_provider_token1] = ACTIONS(677), + [aux_sym_port_token1] = ACTIONS(677), + [aux_sym_preferred_authentications_token1] = ACTIONS(677), + [aux_sym_protocol_token1] = ACTIONS(677), + [aux_sym_proxy_command_token1] = ACTIONS(677), + [aux_sym_proxy_jump_token1] = ACTIONS(677), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(677), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(677), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(677), + [aux_sym_pubkey_authentication_token1] = ACTIONS(677), + [aux_sym_rekey_limit_token1] = ACTIONS(677), + [aux_sym_remote_command_token1] = ACTIONS(677), + [aux_sym_remote_forward_token1] = ACTIONS(677), + [aux_sym_request_tty_token1] = ACTIONS(677), + [aux_sym_required_rsa_size_token1] = ACTIONS(677), + [aux_sym_revoked_host_keys_token1] = ACTIONS(677), + [aux_sym_security_key_provider_token1] = ACTIONS(677), + [aux_sym_send_env_token1] = ACTIONS(677), + [aux_sym_server_alive_count_max_token1] = ACTIONS(677), + [aux_sym_server_alive_interval_token1] = ACTIONS(677), + [aux_sym_session_type_token1] = ACTIONS(677), + [aux_sym_set_env_token1] = ACTIONS(677), + [aux_sym_stdin_null_token1] = ACTIONS(677), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(677), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(677), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(677), + [aux_sym_syslog_facility_token1] = ACTIONS(677), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(677), + [aux_sym_keep_alive_token1] = ACTIONS(677), + [aux_sym_tag_token1] = ACTIONS(677), + [aux_sym_tunnel_token1] = ACTIONS(679), + [aux_sym_tunnel_device_token1] = ACTIONS(677), + [aux_sym_update_host_keys_token1] = ACTIONS(677), + [aux_sym_use_keychain_token1] = ACTIONS(677), + [aux_sym_use_roaming_token1] = ACTIONS(677), + [aux_sym_user_token1] = ACTIONS(679), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(677), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(677), + [aux_sym_visual_host_key_token1] = ACTIONS(677), + [aux_sym_xauth_location_token1] = ACTIONS(677), }, [711] = { - [ts_builtin_sym_end] = ACTIONS(1026), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1028), - [aux_sym_match_token1] = ACTIONS(1026), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1026), - [aux_sym_address_family_token1] = ACTIONS(1026), - [aux_sym_batch_mode_token1] = ACTIONS(1026), - [aux_sym_bind_address_token1] = ACTIONS(1026), - [aux_sym_bind_interface_token1] = ACTIONS(1026), - [aux_sym_canonical_domains_token1] = ACTIONS(1026), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1026), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1026), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1026), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1026), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1026), - [aux_sym_certificate_file_token1] = ACTIONS(1026), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1026), - [aux_sym_channel_timeout_token1] = ACTIONS(1026), - [aux_sym_check_host_ip_token1] = ACTIONS(1026), - [aux_sym_ciphers_token1] = ACTIONS(1026), - [aux_sym_cipher_token1] = ACTIONS(1028), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1026), - [aux_sym_compression_token1] = ACTIONS(1026), - [aux_sym_connection_attempts_token1] = ACTIONS(1026), - [aux_sym_connect_timeout_token1] = ACTIONS(1026), - [aux_sym_control_master_token1] = ACTIONS(1026), - [aux_sym_control_path_token1] = ACTIONS(1026), - [aux_sym_control_persist_token1] = ACTIONS(1026), - [aux_sym_dynamic_forward_token1] = ACTIONS(1026), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1026), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1026), - [aux_sym_escape_char_token1] = ACTIONS(1026), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1026), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1026), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1026), - [aux_sym_forward_agent_token1] = ACTIONS(1026), - [aux_sym_forward_x11_token1] = ACTIONS(1028), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1026), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1026), - [aux_sym_gateway_ports_token1] = ACTIONS(1026), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1026), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1026), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1026), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1026), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1026), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1026), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1026), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1026), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1026), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1026), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1026), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1026), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1026), - [aux_sym_host_key_alias_token1] = ACTIONS(1026), - [aux_sym_hostname_token1] = ACTIONS(1026), - [aux_sym_identities_only_token1] = ACTIONS(1026), - [aux_sym_identity_agent_token1] = ACTIONS(1026), - [aux_sym_identity_file_token1] = ACTIONS(1026), - [aux_sym_ignore_unknown_token1] = ACTIONS(1026), - [aux_sym_include_token1] = ACTIONS(1026), - [aux_sym_ip_qos_token1] = ACTIONS(1026), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1026), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1026), - [aux_sym_kex_algorithms_token1] = ACTIONS(1026), - [aux_sym_known_hosts_command_token1] = ACTIONS(1026), - [aux_sym_local_command_token1] = ACTIONS(1026), - [aux_sym_local_forward_token1] = ACTIONS(1026), - [aux_sym_log_level_token1] = ACTIONS(1026), - [aux_sym_log_verbose_token1] = ACTIONS(1026), - [aux_sym_macs_token1] = ACTIONS(1026), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1026), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1026), - [aux_sym_password_authentication_token1] = ACTIONS(1026), - [aux_sym_permit_local_command_token1] = ACTIONS(1026), - [aux_sym_permit_remote_open_token1] = ACTIONS(1026), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1026), - [aux_sym_port_token1] = ACTIONS(1026), - [aux_sym_preferred_authentications_token1] = ACTIONS(1026), - [aux_sym_protocol_token1] = ACTIONS(1026), - [aux_sym_proxy_command_token1] = ACTIONS(1026), - [aux_sym_proxy_jump_token1] = ACTIONS(1026), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1026), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1026), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1026), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1026), - [aux_sym_rekey_limit_token1] = ACTIONS(1026), - [aux_sym_remote_command_token1] = ACTIONS(1026), - [aux_sym_remote_forward_token1] = ACTIONS(1026), - [aux_sym_request_tty_token1] = ACTIONS(1026), - [aux_sym_required_rsa_size_token1] = ACTIONS(1026), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1026), - [aux_sym_security_key_provider_token1] = ACTIONS(1026), - [aux_sym_send_env_token1] = ACTIONS(1026), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1026), - [aux_sym_server_alive_interval_token1] = ACTIONS(1026), - [aux_sym_session_type_token1] = ACTIONS(1026), - [aux_sym_set_env_token1] = ACTIONS(1026), - [aux_sym_stdin_null_token1] = ACTIONS(1026), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1026), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1026), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1026), - [aux_sym_syslog_facility_token1] = ACTIONS(1026), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1026), - [aux_sym_keep_alive_token1] = ACTIONS(1026), - [aux_sym_tag_token1] = ACTIONS(1026), - [aux_sym_tunnel_token1] = ACTIONS(1028), - [aux_sym_tunnel_device_token1] = ACTIONS(1026), - [aux_sym_update_host_keys_token1] = ACTIONS(1026), - [aux_sym_use_keychain_token1] = ACTIONS(1026), - [aux_sym_use_roaming_token1] = ACTIONS(1026), - [aux_sym_user_token1] = ACTIONS(1028), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1026), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1026), - [aux_sym_visual_host_key_token1] = ACTIONS(1026), - [aux_sym_xauth_location_token1] = ACTIONS(1026), + [ts_builtin_sym_end] = ACTIONS(1439), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1441), + [aux_sym_match_token1] = ACTIONS(1439), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1439), + [aux_sym_address_family_token1] = ACTIONS(1439), + [aux_sym_batch_mode_token1] = ACTIONS(1439), + [aux_sym_bind_address_token1] = ACTIONS(1439), + [aux_sym_bind_interface_token1] = ACTIONS(1439), + [aux_sym_canonical_domains_token1] = ACTIONS(1439), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1439), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1439), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1439), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1439), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1439), + [aux_sym_certificate_file_token1] = ACTIONS(1439), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1439), + [aux_sym_channel_timeout_token1] = ACTIONS(1439), + [aux_sym_check_host_ip_token1] = ACTIONS(1439), + [aux_sym_ciphers_token1] = ACTIONS(1439), + [aux_sym_cipher_token1] = ACTIONS(1441), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1439), + [aux_sym_compression_token1] = ACTIONS(1439), + [aux_sym_connection_attempts_token1] = ACTIONS(1439), + [aux_sym_connect_timeout_token1] = ACTIONS(1439), + [aux_sym_control_master_token1] = ACTIONS(1439), + [aux_sym_control_path_token1] = ACTIONS(1439), + [aux_sym_control_persist_token1] = ACTIONS(1439), + [aux_sym_dynamic_forward_token1] = ACTIONS(1439), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1439), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1439), + [aux_sym_escape_char_token1] = ACTIONS(1439), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1439), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1439), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1439), + [aux_sym_forward_agent_token1] = ACTIONS(1439), + [aux_sym_forward_x11_token1] = ACTIONS(1441), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1439), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1439), + [aux_sym_gateway_ports_token1] = ACTIONS(1439), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1439), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1439), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1439), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1439), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1439), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1439), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1439), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1439), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1439), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1439), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1439), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1439), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1439), + [aux_sym_host_key_alias_token1] = ACTIONS(1439), + [aux_sym_hostname_token1] = ACTIONS(1439), + [aux_sym_identities_only_token1] = ACTIONS(1439), + [aux_sym_identity_agent_token1] = ACTIONS(1439), + [aux_sym_identity_file_token1] = ACTIONS(1439), + [aux_sym_ignore_unknown_token1] = ACTIONS(1439), + [aux_sym_include_token1] = ACTIONS(1439), + [aux_sym_ip_qos_token1] = ACTIONS(1439), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1439), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1439), + [aux_sym_kex_algorithms_token1] = ACTIONS(1439), + [aux_sym_known_hosts_command_token1] = ACTIONS(1439), + [aux_sym_local_command_token1] = ACTIONS(1439), + [aux_sym_local_forward_token1] = ACTIONS(1439), + [aux_sym_log_level_token1] = ACTIONS(1439), + [aux_sym_log_verbose_token1] = ACTIONS(1439), + [aux_sym_macs_token1] = ACTIONS(1439), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1439), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1439), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1439), + [aux_sym_password_authentication_token1] = ACTIONS(1439), + [aux_sym_permit_local_command_token1] = ACTIONS(1439), + [aux_sym_permit_remote_open_token1] = ACTIONS(1439), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1439), + [aux_sym_port_token1] = ACTIONS(1439), + [aux_sym_preferred_authentications_token1] = ACTIONS(1439), + [aux_sym_protocol_token1] = ACTIONS(1439), + [aux_sym_proxy_command_token1] = ACTIONS(1439), + [aux_sym_proxy_jump_token1] = ACTIONS(1439), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1439), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1439), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1439), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1439), + [aux_sym_rekey_limit_token1] = ACTIONS(1439), + [aux_sym_remote_command_token1] = ACTIONS(1439), + [aux_sym_remote_forward_token1] = ACTIONS(1439), + [aux_sym_request_tty_token1] = ACTIONS(1439), + [aux_sym_required_rsa_size_token1] = ACTIONS(1439), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1439), + [aux_sym_security_key_provider_token1] = ACTIONS(1439), + [aux_sym_send_env_token1] = ACTIONS(1439), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1439), + [aux_sym_server_alive_interval_token1] = ACTIONS(1439), + [aux_sym_session_type_token1] = ACTIONS(1439), + [aux_sym_set_env_token1] = ACTIONS(1439), + [aux_sym_stdin_null_token1] = ACTIONS(1439), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1439), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1439), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1439), + [aux_sym_syslog_facility_token1] = ACTIONS(1439), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1439), + [aux_sym_keep_alive_token1] = ACTIONS(1439), + [aux_sym_tag_token1] = ACTIONS(1439), + [aux_sym_tunnel_token1] = ACTIONS(1441), + [aux_sym_tunnel_device_token1] = ACTIONS(1439), + [aux_sym_update_host_keys_token1] = ACTIONS(1439), + [aux_sym_use_keychain_token1] = ACTIONS(1439), + [aux_sym_use_roaming_token1] = ACTIONS(1439), + [aux_sym_user_token1] = ACTIONS(1441), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1439), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1439), + [aux_sym_visual_host_key_token1] = ACTIONS(1439), + [aux_sym_xauth_location_token1] = ACTIONS(1439), }, [712] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1896), - [aux_sym_match_token1] = ACTIONS(1894), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1894), - [aux_sym_address_family_token1] = ACTIONS(1894), - [aux_sym_batch_mode_token1] = ACTIONS(1894), - [aux_sym_bind_address_token1] = ACTIONS(1894), - [aux_sym_bind_interface_token1] = ACTIONS(1894), - [aux_sym_canonical_domains_token1] = ACTIONS(1894), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1894), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1894), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1894), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1894), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1894), - [aux_sym_certificate_file_token1] = ACTIONS(1894), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1894), - [aux_sym_channel_timeout_token1] = ACTIONS(1894), - [aux_sym_check_host_ip_token1] = ACTIONS(1894), - [aux_sym_ciphers_token1] = ACTIONS(1894), - [aux_sym_cipher_token1] = ACTIONS(1896), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1894), - [aux_sym_compression_token1] = ACTIONS(1894), - [aux_sym_connection_attempts_token1] = ACTIONS(1894), - [aux_sym_connect_timeout_token1] = ACTIONS(1894), - [aux_sym_control_master_token1] = ACTIONS(1894), - [aux_sym_control_path_token1] = ACTIONS(1894), - [aux_sym_control_persist_token1] = ACTIONS(1894), - [aux_sym_dynamic_forward_token1] = ACTIONS(1894), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1894), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1894), - [aux_sym_escape_char_token1] = ACTIONS(1894), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1894), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1894), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1894), - [aux_sym_forward_agent_token1] = ACTIONS(1894), - [aux_sym_forward_x11_token1] = ACTIONS(1896), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1894), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1894), - [aux_sym_gateway_ports_token1] = ACTIONS(1894), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1894), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1894), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1894), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1894), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1894), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1894), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1894), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1894), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1894), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1894), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1894), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1894), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1894), - [aux_sym_host_key_alias_token1] = ACTIONS(1894), - [aux_sym_hostname_token1] = ACTIONS(1894), - [aux_sym_identities_only_token1] = ACTIONS(1894), - [aux_sym_identity_agent_token1] = ACTIONS(1894), - [aux_sym_identity_file_token1] = ACTIONS(1894), - [aux_sym_ignore_unknown_token1] = ACTIONS(1894), - [aux_sym_include_token1] = ACTIONS(1894), - [aux_sym_ip_qos_token1] = ACTIONS(1894), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1894), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1894), - [aux_sym_kex_algorithms_token1] = ACTIONS(1894), - [aux_sym_known_hosts_command_token1] = ACTIONS(1894), - [aux_sym_local_command_token1] = ACTIONS(1894), - [aux_sym_local_forward_token1] = ACTIONS(1894), - [aux_sym_log_level_token1] = ACTIONS(1894), - [aux_sym_log_verbose_token1] = ACTIONS(1894), - [aux_sym_macs_token1] = ACTIONS(1894), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1894), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1894), - [aux_sym_password_authentication_token1] = ACTIONS(1894), - [aux_sym_permit_local_command_token1] = ACTIONS(1894), - [aux_sym_permit_remote_open_token1] = ACTIONS(1894), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1894), - [aux_sym_port_token1] = ACTIONS(1894), - [aux_sym_preferred_authentications_token1] = ACTIONS(1894), - [aux_sym_protocol_token1] = ACTIONS(1894), - [aux_sym_proxy_command_token1] = ACTIONS(1894), - [aux_sym_proxy_jump_token1] = ACTIONS(1894), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1894), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1894), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1894), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1894), - [aux_sym_rekey_limit_token1] = ACTIONS(1894), - [aux_sym_remote_command_token1] = ACTIONS(1894), - [aux_sym_remote_forward_token1] = ACTIONS(1894), - [aux_sym_request_tty_token1] = ACTIONS(1894), - [aux_sym_required_rsa_size_token1] = ACTIONS(1894), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1894), - [aux_sym_security_key_provider_token1] = ACTIONS(1894), - [aux_sym_send_env_token1] = ACTIONS(1894), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1894), - [aux_sym_server_alive_interval_token1] = ACTIONS(1894), - [aux_sym_session_type_token1] = ACTIONS(1894), - [aux_sym_set_env_token1] = ACTIONS(1894), - [aux_sym_stdin_null_token1] = ACTIONS(1894), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1894), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1894), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1894), - [aux_sym_syslog_facility_token1] = ACTIONS(1894), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1894), - [aux_sym_keep_alive_token1] = ACTIONS(1894), - [aux_sym_tag_token1] = ACTIONS(1894), - [aux_sym_tunnel_token1] = ACTIONS(1896), - [aux_sym_tunnel_device_token1] = ACTIONS(1894), - [aux_sym_update_host_keys_token1] = ACTIONS(1894), - [aux_sym_use_keychain_token1] = ACTIONS(1894), - [aux_sym_use_roaming_token1] = ACTIONS(1894), - [aux_sym_user_token1] = ACTIONS(1896), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1894), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1894), - [aux_sym_visual_host_key_token1] = ACTIONS(1894), - [aux_sym_xauth_location_token1] = ACTIONS(1894), + [ts_builtin_sym_end] = ACTIONS(1923), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1925), + [aux_sym_match_token1] = ACTIONS(1923), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1923), + [aux_sym_address_family_token1] = ACTIONS(1923), + [aux_sym_batch_mode_token1] = ACTIONS(1923), + [aux_sym_bind_address_token1] = ACTIONS(1923), + [aux_sym_bind_interface_token1] = ACTIONS(1923), + [aux_sym_canonical_domains_token1] = ACTIONS(1923), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1923), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1923), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1923), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1923), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1923), + [aux_sym_certificate_file_token1] = ACTIONS(1923), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1923), + [aux_sym_channel_timeout_token1] = ACTIONS(1923), + [aux_sym_check_host_ip_token1] = ACTIONS(1923), + [aux_sym_ciphers_token1] = ACTIONS(1923), + [aux_sym_cipher_token1] = ACTIONS(1925), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1923), + [aux_sym_compression_token1] = ACTIONS(1923), + [aux_sym_connection_attempts_token1] = ACTIONS(1923), + [aux_sym_connect_timeout_token1] = ACTIONS(1923), + [aux_sym_control_master_token1] = ACTIONS(1923), + [aux_sym_control_path_token1] = ACTIONS(1923), + [aux_sym_control_persist_token1] = ACTIONS(1923), + [aux_sym_dynamic_forward_token1] = ACTIONS(1923), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1923), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1923), + [aux_sym_escape_char_token1] = ACTIONS(1923), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1923), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1923), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1923), + [aux_sym_forward_agent_token1] = ACTIONS(1923), + [aux_sym_forward_x11_token1] = ACTIONS(1925), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1923), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1923), + [aux_sym_gateway_ports_token1] = ACTIONS(1923), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1923), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1923), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1923), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1923), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1923), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1923), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1923), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1923), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1923), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1923), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1923), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1923), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1923), + [aux_sym_host_key_alias_token1] = ACTIONS(1923), + [aux_sym_hostname_token1] = ACTIONS(1923), + [aux_sym_identities_only_token1] = ACTIONS(1923), + [aux_sym_identity_agent_token1] = ACTIONS(1923), + [aux_sym_identity_file_token1] = ACTIONS(1923), + [aux_sym_ignore_unknown_token1] = ACTIONS(1923), + [aux_sym_include_token1] = ACTIONS(1923), + [aux_sym_ip_qos_token1] = ACTIONS(1923), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1923), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1923), + [aux_sym_kex_algorithms_token1] = ACTIONS(1923), + [aux_sym_known_hosts_command_token1] = ACTIONS(1923), + [aux_sym_local_command_token1] = ACTIONS(1923), + [aux_sym_local_forward_token1] = ACTIONS(1923), + [aux_sym_log_level_token1] = ACTIONS(1923), + [aux_sym_log_verbose_token1] = ACTIONS(1923), + [aux_sym_macs_token1] = ACTIONS(1923), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1923), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1923), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1923), + [aux_sym_password_authentication_token1] = ACTIONS(1923), + [aux_sym_permit_local_command_token1] = ACTIONS(1923), + [aux_sym_permit_remote_open_token1] = ACTIONS(1923), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1923), + [aux_sym_port_token1] = ACTIONS(1923), + [aux_sym_preferred_authentications_token1] = ACTIONS(1923), + [aux_sym_protocol_token1] = ACTIONS(1923), + [aux_sym_proxy_command_token1] = ACTIONS(1923), + [aux_sym_proxy_jump_token1] = ACTIONS(1923), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1923), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1923), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1923), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1923), + [aux_sym_rekey_limit_token1] = ACTIONS(1923), + [aux_sym_remote_command_token1] = ACTIONS(1923), + [aux_sym_remote_forward_token1] = ACTIONS(1923), + [aux_sym_request_tty_token1] = ACTIONS(1923), + [aux_sym_required_rsa_size_token1] = ACTIONS(1923), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1923), + [aux_sym_security_key_provider_token1] = ACTIONS(1923), + [aux_sym_send_env_token1] = ACTIONS(1923), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1923), + [aux_sym_server_alive_interval_token1] = ACTIONS(1923), + [aux_sym_session_type_token1] = ACTIONS(1923), + [aux_sym_set_env_token1] = ACTIONS(1923), + [aux_sym_stdin_null_token1] = ACTIONS(1923), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1923), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1923), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1923), + [aux_sym_syslog_facility_token1] = ACTIONS(1923), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1923), + [aux_sym_keep_alive_token1] = ACTIONS(1923), + [aux_sym_tag_token1] = ACTIONS(1923), + [aux_sym_tunnel_token1] = ACTIONS(1925), + [aux_sym_tunnel_device_token1] = ACTIONS(1923), + [aux_sym_update_host_keys_token1] = ACTIONS(1923), + [aux_sym_use_keychain_token1] = ACTIONS(1923), + [aux_sym_use_roaming_token1] = ACTIONS(1923), + [aux_sym_user_token1] = ACTIONS(1925), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1923), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1923), + [aux_sym_visual_host_key_token1] = ACTIONS(1923), + [aux_sym_xauth_location_token1] = ACTIONS(1923), }, [713] = { - [ts_builtin_sym_end] = ACTIONS(1644), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1646), - [aux_sym_match_token1] = ACTIONS(1644), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1644), - [aux_sym_address_family_token1] = ACTIONS(1644), - [aux_sym_batch_mode_token1] = ACTIONS(1644), - [aux_sym_bind_address_token1] = ACTIONS(1644), - [aux_sym_bind_interface_token1] = ACTIONS(1644), - [aux_sym_canonical_domains_token1] = ACTIONS(1644), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1644), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1644), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1644), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1644), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1644), - [aux_sym_certificate_file_token1] = ACTIONS(1644), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1644), - [aux_sym_channel_timeout_token1] = ACTIONS(1644), - [aux_sym_check_host_ip_token1] = ACTIONS(1644), - [aux_sym_ciphers_token1] = ACTIONS(1644), - [aux_sym_cipher_token1] = ACTIONS(1646), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1644), - [aux_sym_compression_token1] = ACTIONS(1644), - [aux_sym_connection_attempts_token1] = ACTIONS(1644), - [aux_sym_connect_timeout_token1] = ACTIONS(1644), - [aux_sym_control_master_token1] = ACTIONS(1644), - [aux_sym_control_path_token1] = ACTIONS(1644), - [aux_sym_control_persist_token1] = ACTIONS(1644), - [aux_sym_dynamic_forward_token1] = ACTIONS(1644), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1644), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1644), - [aux_sym_escape_char_token1] = ACTIONS(1644), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1644), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1644), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1644), - [aux_sym_forward_agent_token1] = ACTIONS(1644), - [aux_sym_forward_x11_token1] = ACTIONS(1646), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1644), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1644), - [aux_sym_gateway_ports_token1] = ACTIONS(1644), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1644), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1644), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1644), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1644), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1644), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1644), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1644), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1644), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1644), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1644), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1644), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1644), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1644), - [aux_sym_host_key_alias_token1] = ACTIONS(1644), - [aux_sym_hostname_token1] = ACTIONS(1644), - [aux_sym_identities_only_token1] = ACTIONS(1644), - [aux_sym_identity_agent_token1] = ACTIONS(1644), - [aux_sym_identity_file_token1] = ACTIONS(1644), - [aux_sym_ignore_unknown_token1] = ACTIONS(1644), - [aux_sym_include_token1] = ACTIONS(1644), - [aux_sym_ip_qos_token1] = ACTIONS(1644), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1644), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1644), - [aux_sym_kex_algorithms_token1] = ACTIONS(1644), - [aux_sym_known_hosts_command_token1] = ACTIONS(1644), - [aux_sym_local_command_token1] = ACTIONS(1644), - [aux_sym_local_forward_token1] = ACTIONS(1644), - [aux_sym_log_level_token1] = ACTIONS(1644), - [aux_sym_log_verbose_token1] = ACTIONS(1644), - [aux_sym_macs_token1] = ACTIONS(1644), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1644), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1644), - [aux_sym_password_authentication_token1] = ACTIONS(1644), - [aux_sym_permit_local_command_token1] = ACTIONS(1644), - [aux_sym_permit_remote_open_token1] = ACTIONS(1644), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1644), - [aux_sym_port_token1] = ACTIONS(1644), - [aux_sym_preferred_authentications_token1] = ACTIONS(1644), - [aux_sym_protocol_token1] = ACTIONS(1644), - [aux_sym_proxy_command_token1] = ACTIONS(1644), - [aux_sym_proxy_jump_token1] = ACTIONS(1644), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1644), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1644), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1644), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1644), - [aux_sym_rekey_limit_token1] = ACTIONS(1644), - [aux_sym_remote_command_token1] = ACTIONS(1644), - [aux_sym_remote_forward_token1] = ACTIONS(1644), - [aux_sym_request_tty_token1] = ACTIONS(1644), - [aux_sym_required_rsa_size_token1] = ACTIONS(1644), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1644), - [aux_sym_security_key_provider_token1] = ACTIONS(1644), - [aux_sym_send_env_token1] = ACTIONS(1644), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1644), - [aux_sym_server_alive_interval_token1] = ACTIONS(1644), - [aux_sym_session_type_token1] = ACTIONS(1644), - [aux_sym_set_env_token1] = ACTIONS(1644), - [aux_sym_stdin_null_token1] = ACTIONS(1644), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1644), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1644), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1644), - [aux_sym_syslog_facility_token1] = ACTIONS(1644), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1644), - [aux_sym_keep_alive_token1] = ACTIONS(1644), - [aux_sym_tag_token1] = ACTIONS(1644), - [aux_sym_tunnel_token1] = ACTIONS(1646), - [aux_sym_tunnel_device_token1] = ACTIONS(1644), - [aux_sym_update_host_keys_token1] = ACTIONS(1644), - [aux_sym_use_keychain_token1] = ACTIONS(1644), - [aux_sym_use_roaming_token1] = ACTIONS(1644), - [aux_sym_user_token1] = ACTIONS(1646), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1644), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1644), - [aux_sym_visual_host_key_token1] = ACTIONS(1644), - [aux_sym_xauth_location_token1] = ACTIONS(1644), + [ts_builtin_sym_end] = ACTIONS(683), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(685), + [aux_sym_match_token1] = ACTIONS(683), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(683), + [aux_sym_address_family_token1] = ACTIONS(683), + [aux_sym_batch_mode_token1] = ACTIONS(683), + [aux_sym_bind_address_token1] = ACTIONS(683), + [aux_sym_bind_interface_token1] = ACTIONS(683), + [aux_sym_canonical_domains_token1] = ACTIONS(683), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(683), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(683), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(683), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(683), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(683), + [aux_sym_certificate_file_token1] = ACTIONS(683), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(683), + [aux_sym_channel_timeout_token1] = ACTIONS(683), + [aux_sym_check_host_ip_token1] = ACTIONS(683), + [aux_sym_ciphers_token1] = ACTIONS(683), + [aux_sym_cipher_token1] = ACTIONS(685), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(683), + [aux_sym_compression_token1] = ACTIONS(683), + [aux_sym_connection_attempts_token1] = ACTIONS(683), + [aux_sym_connect_timeout_token1] = ACTIONS(683), + [aux_sym_control_master_token1] = ACTIONS(683), + [aux_sym_control_path_token1] = ACTIONS(683), + [aux_sym_control_persist_token1] = ACTIONS(683), + [aux_sym_dynamic_forward_token1] = ACTIONS(683), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(683), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(683), + [aux_sym_escape_char_token1] = ACTIONS(683), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(683), + [aux_sym_fingerprint_hash_token1] = ACTIONS(683), + [aux_sym_fork_after_authentication_token1] = ACTIONS(683), + [aux_sym_forward_agent_token1] = ACTIONS(683), + [aux_sym_forward_x11_token1] = ACTIONS(685), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(683), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(683), + [aux_sym_gateway_ports_token1] = ACTIONS(683), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(683), + [aux_sym_gssapi_authentication_token1] = ACTIONS(683), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(683), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(683), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(683), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(683), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(683), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(683), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(683), + [aux_sym_hash_known_hosts_token1] = ACTIONS(683), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(683), + [aux_sym_hostbased_authentication_token1] = ACTIONS(683), + [aux_sym_host_key_algorithms_token1] = ACTIONS(683), + [aux_sym_host_key_alias_token1] = ACTIONS(683), + [aux_sym_hostname_token1] = ACTIONS(683), + [aux_sym_identities_only_token1] = ACTIONS(683), + [aux_sym_identity_agent_token1] = ACTIONS(683), + [aux_sym_identity_file_token1] = ACTIONS(683), + [aux_sym_ignore_unknown_token1] = ACTIONS(683), + [aux_sym_include_token1] = ACTIONS(683), + [aux_sym_ip_qos_token1] = ACTIONS(683), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(683), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(683), + [aux_sym_kex_algorithms_token1] = ACTIONS(683), + [aux_sym_known_hosts_command_token1] = ACTIONS(683), + [aux_sym_local_command_token1] = ACTIONS(683), + [aux_sym_local_forward_token1] = ACTIONS(683), + [aux_sym_log_level_token1] = ACTIONS(683), + [aux_sym_log_verbose_token1] = ACTIONS(683), + [aux_sym_macs_token1] = ACTIONS(683), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(683), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(683), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(683), + [aux_sym_password_authentication_token1] = ACTIONS(683), + [aux_sym_permit_local_command_token1] = ACTIONS(683), + [aux_sym_permit_remote_open_token1] = ACTIONS(683), + [aux_sym_pkcs11_provider_token1] = ACTIONS(683), + [aux_sym_port_token1] = ACTIONS(683), + [aux_sym_preferred_authentications_token1] = ACTIONS(683), + [aux_sym_protocol_token1] = ACTIONS(683), + [aux_sym_proxy_command_token1] = ACTIONS(683), + [aux_sym_proxy_jump_token1] = ACTIONS(683), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(683), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(683), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(683), + [aux_sym_pubkey_authentication_token1] = ACTIONS(683), + [aux_sym_rekey_limit_token1] = ACTIONS(683), + [aux_sym_remote_command_token1] = ACTIONS(683), + [aux_sym_remote_forward_token1] = ACTIONS(683), + [aux_sym_request_tty_token1] = ACTIONS(683), + [aux_sym_required_rsa_size_token1] = ACTIONS(683), + [aux_sym_revoked_host_keys_token1] = ACTIONS(683), + [aux_sym_security_key_provider_token1] = ACTIONS(683), + [aux_sym_send_env_token1] = ACTIONS(683), + [aux_sym_server_alive_count_max_token1] = ACTIONS(683), + [aux_sym_server_alive_interval_token1] = ACTIONS(683), + [aux_sym_session_type_token1] = ACTIONS(683), + [aux_sym_set_env_token1] = ACTIONS(683), + [aux_sym_stdin_null_token1] = ACTIONS(683), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(683), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(683), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(683), + [aux_sym_syslog_facility_token1] = ACTIONS(683), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(683), + [aux_sym_keep_alive_token1] = ACTIONS(683), + [aux_sym_tag_token1] = ACTIONS(683), + [aux_sym_tunnel_token1] = ACTIONS(685), + [aux_sym_tunnel_device_token1] = ACTIONS(683), + [aux_sym_update_host_keys_token1] = ACTIONS(683), + [aux_sym_use_keychain_token1] = ACTIONS(683), + [aux_sym_use_roaming_token1] = ACTIONS(683), + [aux_sym_user_token1] = ACTIONS(685), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(683), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(683), + [aux_sym_visual_host_key_token1] = ACTIONS(683), + [aux_sym_xauth_location_token1] = ACTIONS(683), }, [714] = { - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1652), - [aux_sym_match_token1] = ACTIONS(1650), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1650), - [aux_sym_address_family_token1] = ACTIONS(1650), - [aux_sym_batch_mode_token1] = ACTIONS(1650), - [aux_sym_bind_address_token1] = ACTIONS(1650), - [aux_sym_bind_interface_token1] = ACTIONS(1650), - [aux_sym_canonical_domains_token1] = ACTIONS(1650), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1650), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1650), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1650), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1650), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1650), - [aux_sym_certificate_file_token1] = ACTIONS(1650), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1650), - [aux_sym_channel_timeout_token1] = ACTIONS(1650), - [aux_sym_check_host_ip_token1] = ACTIONS(1650), - [aux_sym_ciphers_token1] = ACTIONS(1650), - [aux_sym_cipher_token1] = ACTIONS(1652), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1650), - [aux_sym_compression_token1] = ACTIONS(1650), - [aux_sym_connection_attempts_token1] = ACTIONS(1650), - [aux_sym_connect_timeout_token1] = ACTIONS(1650), - [aux_sym_control_master_token1] = ACTIONS(1650), - [aux_sym_control_path_token1] = ACTIONS(1650), - [aux_sym_control_persist_token1] = ACTIONS(1650), - [aux_sym_dynamic_forward_token1] = ACTIONS(1650), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1650), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1650), - [aux_sym_escape_char_token1] = ACTIONS(1650), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1650), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1650), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1650), - [aux_sym_forward_agent_token1] = ACTIONS(1650), - [aux_sym_forward_x11_token1] = ACTIONS(1652), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1650), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1650), - [aux_sym_gateway_ports_token1] = ACTIONS(1650), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1650), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1650), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1650), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1650), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1650), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1650), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1650), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1650), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1650), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1650), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1650), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1650), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1650), - [aux_sym_host_key_alias_token1] = ACTIONS(1650), - [aux_sym_hostname_token1] = ACTIONS(1650), - [aux_sym_identities_only_token1] = ACTIONS(1650), - [aux_sym_identity_agent_token1] = ACTIONS(1650), - [aux_sym_identity_file_token1] = ACTIONS(1650), - [aux_sym_ignore_unknown_token1] = ACTIONS(1650), - [aux_sym_include_token1] = ACTIONS(1650), - [aux_sym_ip_qos_token1] = ACTIONS(1650), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1650), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1650), - [aux_sym_kex_algorithms_token1] = ACTIONS(1650), - [aux_sym_known_hosts_command_token1] = ACTIONS(1650), - [aux_sym_local_command_token1] = ACTIONS(1650), - [aux_sym_local_forward_token1] = ACTIONS(1650), - [aux_sym_log_level_token1] = ACTIONS(1650), - [aux_sym_log_verbose_token1] = ACTIONS(1650), - [aux_sym_macs_token1] = ACTIONS(1650), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1650), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1650), - [aux_sym_password_authentication_token1] = ACTIONS(1650), - [aux_sym_permit_local_command_token1] = ACTIONS(1650), - [aux_sym_permit_remote_open_token1] = ACTIONS(1650), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1650), - [aux_sym_port_token1] = ACTIONS(1650), - [aux_sym_preferred_authentications_token1] = ACTIONS(1650), - [aux_sym_protocol_token1] = ACTIONS(1650), - [aux_sym_proxy_command_token1] = ACTIONS(1650), - [aux_sym_proxy_jump_token1] = ACTIONS(1650), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1650), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1650), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1650), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1650), - [aux_sym_rekey_limit_token1] = ACTIONS(1650), - [aux_sym_remote_command_token1] = ACTIONS(1650), - [aux_sym_remote_forward_token1] = ACTIONS(1650), - [aux_sym_request_tty_token1] = ACTIONS(1650), - [aux_sym_required_rsa_size_token1] = ACTIONS(1650), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1650), - [aux_sym_security_key_provider_token1] = ACTIONS(1650), - [aux_sym_send_env_token1] = ACTIONS(1650), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1650), - [aux_sym_server_alive_interval_token1] = ACTIONS(1650), - [aux_sym_session_type_token1] = ACTIONS(1650), - [aux_sym_set_env_token1] = ACTIONS(1650), - [aux_sym_stdin_null_token1] = ACTIONS(1650), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1650), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1650), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1650), - [aux_sym_syslog_facility_token1] = ACTIONS(1650), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1650), - [aux_sym_keep_alive_token1] = ACTIONS(1650), - [aux_sym_tag_token1] = ACTIONS(1650), - [aux_sym_tunnel_token1] = ACTIONS(1652), - [aux_sym_tunnel_device_token1] = ACTIONS(1650), - [aux_sym_update_host_keys_token1] = ACTIONS(1650), - [aux_sym_use_keychain_token1] = ACTIONS(1650), - [aux_sym_use_roaming_token1] = ACTIONS(1650), - [aux_sym_user_token1] = ACTIONS(1652), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1650), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1650), - [aux_sym_visual_host_key_token1] = ACTIONS(1650), - [aux_sym_xauth_location_token1] = ACTIONS(1650), + [ts_builtin_sym_end] = ACTIONS(965), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(967), + [aux_sym_match_token1] = ACTIONS(965), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(965), + [aux_sym_address_family_token1] = ACTIONS(965), + [aux_sym_batch_mode_token1] = ACTIONS(965), + [aux_sym_bind_address_token1] = ACTIONS(965), + [aux_sym_bind_interface_token1] = ACTIONS(965), + [aux_sym_canonical_domains_token1] = ACTIONS(965), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(965), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(965), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(965), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(965), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(965), + [aux_sym_certificate_file_token1] = ACTIONS(965), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(965), + [aux_sym_channel_timeout_token1] = ACTIONS(965), + [aux_sym_check_host_ip_token1] = ACTIONS(965), + [aux_sym_ciphers_token1] = ACTIONS(965), + [aux_sym_cipher_token1] = ACTIONS(967), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(965), + [aux_sym_compression_token1] = ACTIONS(965), + [aux_sym_connection_attempts_token1] = ACTIONS(965), + [aux_sym_connect_timeout_token1] = ACTIONS(965), + [aux_sym_control_master_token1] = ACTIONS(965), + [aux_sym_control_path_token1] = ACTIONS(965), + [aux_sym_control_persist_token1] = ACTIONS(965), + [aux_sym_dynamic_forward_token1] = ACTIONS(965), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(965), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(965), + [aux_sym_escape_char_token1] = ACTIONS(965), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(965), + [aux_sym_fingerprint_hash_token1] = ACTIONS(965), + [aux_sym_fork_after_authentication_token1] = ACTIONS(965), + [aux_sym_forward_agent_token1] = ACTIONS(965), + [aux_sym_forward_x11_token1] = ACTIONS(967), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(965), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(965), + [aux_sym_gateway_ports_token1] = ACTIONS(965), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(965), + [aux_sym_gssapi_authentication_token1] = ACTIONS(965), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(965), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(965), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(965), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(965), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(965), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(965), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(965), + [aux_sym_hash_known_hosts_token1] = ACTIONS(965), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(965), + [aux_sym_hostbased_authentication_token1] = ACTIONS(965), + [aux_sym_host_key_algorithms_token1] = ACTIONS(965), + [aux_sym_host_key_alias_token1] = ACTIONS(965), + [aux_sym_hostname_token1] = ACTIONS(965), + [aux_sym_identities_only_token1] = ACTIONS(965), + [aux_sym_identity_agent_token1] = ACTIONS(965), + [aux_sym_identity_file_token1] = ACTIONS(965), + [aux_sym_ignore_unknown_token1] = ACTIONS(965), + [aux_sym_include_token1] = ACTIONS(965), + [aux_sym_ip_qos_token1] = ACTIONS(965), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(965), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(965), + [aux_sym_kex_algorithms_token1] = ACTIONS(965), + [aux_sym_known_hosts_command_token1] = ACTIONS(965), + [aux_sym_local_command_token1] = ACTIONS(965), + [aux_sym_local_forward_token1] = ACTIONS(965), + [aux_sym_log_level_token1] = ACTIONS(965), + [aux_sym_log_verbose_token1] = ACTIONS(965), + [aux_sym_macs_token1] = ACTIONS(965), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(965), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(965), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(965), + [aux_sym_password_authentication_token1] = ACTIONS(965), + [aux_sym_permit_local_command_token1] = ACTIONS(965), + [aux_sym_permit_remote_open_token1] = ACTIONS(965), + [aux_sym_pkcs11_provider_token1] = ACTIONS(965), + [aux_sym_port_token1] = ACTIONS(965), + [aux_sym_preferred_authentications_token1] = ACTIONS(965), + [aux_sym_protocol_token1] = ACTIONS(965), + [aux_sym_proxy_command_token1] = ACTIONS(965), + [aux_sym_proxy_jump_token1] = ACTIONS(965), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(965), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(965), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(965), + [aux_sym_pubkey_authentication_token1] = ACTIONS(965), + [aux_sym_rekey_limit_token1] = ACTIONS(965), + [aux_sym_remote_command_token1] = ACTIONS(965), + [aux_sym_remote_forward_token1] = ACTIONS(965), + [aux_sym_request_tty_token1] = ACTIONS(965), + [aux_sym_required_rsa_size_token1] = ACTIONS(965), + [aux_sym_revoked_host_keys_token1] = ACTIONS(965), + [aux_sym_security_key_provider_token1] = ACTIONS(965), + [aux_sym_send_env_token1] = ACTIONS(965), + [aux_sym_server_alive_count_max_token1] = ACTIONS(965), + [aux_sym_server_alive_interval_token1] = ACTIONS(965), + [aux_sym_session_type_token1] = ACTIONS(965), + [aux_sym_set_env_token1] = ACTIONS(965), + [aux_sym_stdin_null_token1] = ACTIONS(965), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(965), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(965), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(965), + [aux_sym_syslog_facility_token1] = ACTIONS(965), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(965), + [aux_sym_keep_alive_token1] = ACTIONS(965), + [aux_sym_tag_token1] = ACTIONS(965), + [aux_sym_tunnel_token1] = ACTIONS(967), + [aux_sym_tunnel_device_token1] = ACTIONS(965), + [aux_sym_update_host_keys_token1] = ACTIONS(965), + [aux_sym_use_keychain_token1] = ACTIONS(965), + [aux_sym_use_roaming_token1] = ACTIONS(965), + [aux_sym_user_token1] = ACTIONS(967), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(965), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(965), + [aux_sym_visual_host_key_token1] = ACTIONS(965), + [aux_sym_xauth_location_token1] = ACTIONS(965), }, [715] = { - [ts_builtin_sym_end] = ACTIONS(1888), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1890), - [aux_sym_match_token1] = ACTIONS(1888), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1888), - [aux_sym_address_family_token1] = ACTIONS(1888), - [aux_sym_batch_mode_token1] = ACTIONS(1888), - [aux_sym_bind_address_token1] = ACTIONS(1888), - [aux_sym_bind_interface_token1] = ACTIONS(1888), - [aux_sym_canonical_domains_token1] = ACTIONS(1888), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1888), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1888), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1888), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1888), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1888), - [aux_sym_certificate_file_token1] = ACTIONS(1888), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1888), - [aux_sym_channel_timeout_token1] = ACTIONS(1888), - [aux_sym_check_host_ip_token1] = ACTIONS(1888), - [aux_sym_ciphers_token1] = ACTIONS(1888), - [aux_sym_cipher_token1] = ACTIONS(1890), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1888), - [aux_sym_compression_token1] = ACTIONS(1888), - [aux_sym_connection_attempts_token1] = ACTIONS(1888), - [aux_sym_connect_timeout_token1] = ACTIONS(1888), - [aux_sym_control_master_token1] = ACTIONS(1888), - [aux_sym_control_path_token1] = ACTIONS(1888), - [aux_sym_control_persist_token1] = ACTIONS(1888), - [aux_sym_dynamic_forward_token1] = ACTIONS(1888), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1888), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1888), - [aux_sym_escape_char_token1] = ACTIONS(1888), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1888), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1888), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1888), - [aux_sym_forward_agent_token1] = ACTIONS(1888), - [aux_sym_forward_x11_token1] = ACTIONS(1890), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1888), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1888), - [aux_sym_gateway_ports_token1] = ACTIONS(1888), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1888), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1888), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1888), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1888), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1888), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1888), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1888), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1888), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1888), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1888), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1888), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1888), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1888), - [aux_sym_host_key_alias_token1] = ACTIONS(1888), - [aux_sym_hostname_token1] = ACTIONS(1888), - [aux_sym_identities_only_token1] = ACTIONS(1888), - [aux_sym_identity_agent_token1] = ACTIONS(1888), - [aux_sym_identity_file_token1] = ACTIONS(1888), - [aux_sym_ignore_unknown_token1] = ACTIONS(1888), - [aux_sym_include_token1] = ACTIONS(1888), - [aux_sym_ip_qos_token1] = ACTIONS(1888), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1888), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1888), - [aux_sym_kex_algorithms_token1] = ACTIONS(1888), - [aux_sym_known_hosts_command_token1] = ACTIONS(1888), - [aux_sym_local_command_token1] = ACTIONS(1888), - [aux_sym_local_forward_token1] = ACTIONS(1888), - [aux_sym_log_level_token1] = ACTIONS(1888), - [aux_sym_log_verbose_token1] = ACTIONS(1888), - [aux_sym_macs_token1] = ACTIONS(1888), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1888), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1888), - [aux_sym_password_authentication_token1] = ACTIONS(1888), - [aux_sym_permit_local_command_token1] = ACTIONS(1888), - [aux_sym_permit_remote_open_token1] = ACTIONS(1888), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1888), - [aux_sym_port_token1] = ACTIONS(1888), - [aux_sym_preferred_authentications_token1] = ACTIONS(1888), - [aux_sym_protocol_token1] = ACTIONS(1888), - [aux_sym_proxy_command_token1] = ACTIONS(1888), - [aux_sym_proxy_jump_token1] = ACTIONS(1888), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1888), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1888), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1888), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1888), - [aux_sym_rekey_limit_token1] = ACTIONS(1888), - [aux_sym_remote_command_token1] = ACTIONS(1888), - [aux_sym_remote_forward_token1] = ACTIONS(1888), - [aux_sym_request_tty_token1] = ACTIONS(1888), - [aux_sym_required_rsa_size_token1] = ACTIONS(1888), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1888), - [aux_sym_security_key_provider_token1] = ACTIONS(1888), - [aux_sym_send_env_token1] = ACTIONS(1888), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1888), - [aux_sym_server_alive_interval_token1] = ACTIONS(1888), - [aux_sym_session_type_token1] = ACTIONS(1888), - [aux_sym_set_env_token1] = ACTIONS(1888), - [aux_sym_stdin_null_token1] = ACTIONS(1888), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1888), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1888), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1888), - [aux_sym_syslog_facility_token1] = ACTIONS(1888), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1888), - [aux_sym_keep_alive_token1] = ACTIONS(1888), - [aux_sym_tag_token1] = ACTIONS(1888), - [aux_sym_tunnel_token1] = ACTIONS(1890), - [aux_sym_tunnel_device_token1] = ACTIONS(1888), - [aux_sym_update_host_keys_token1] = ACTIONS(1888), - [aux_sym_use_keychain_token1] = ACTIONS(1888), - [aux_sym_use_roaming_token1] = ACTIONS(1888), - [aux_sym_user_token1] = ACTIONS(1890), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1888), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1888), - [aux_sym_visual_host_key_token1] = ACTIONS(1888), - [aux_sym_xauth_location_token1] = ACTIONS(1888), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1919), + [aux_sym_match_token1] = ACTIONS(1917), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1917), + [aux_sym_address_family_token1] = ACTIONS(1917), + [aux_sym_batch_mode_token1] = ACTIONS(1917), + [aux_sym_bind_address_token1] = ACTIONS(1917), + [aux_sym_bind_interface_token1] = ACTIONS(1917), + [aux_sym_canonical_domains_token1] = ACTIONS(1917), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1917), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1917), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1917), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1917), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1917), + [aux_sym_certificate_file_token1] = ACTIONS(1917), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1917), + [aux_sym_channel_timeout_token1] = ACTIONS(1917), + [aux_sym_check_host_ip_token1] = ACTIONS(1917), + [aux_sym_ciphers_token1] = ACTIONS(1917), + [aux_sym_cipher_token1] = ACTIONS(1919), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1917), + [aux_sym_compression_token1] = ACTIONS(1917), + [aux_sym_connection_attempts_token1] = ACTIONS(1917), + [aux_sym_connect_timeout_token1] = ACTIONS(1917), + [aux_sym_control_master_token1] = ACTIONS(1917), + [aux_sym_control_path_token1] = ACTIONS(1917), + [aux_sym_control_persist_token1] = ACTIONS(1917), + [aux_sym_dynamic_forward_token1] = ACTIONS(1917), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1917), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1917), + [aux_sym_escape_char_token1] = ACTIONS(1917), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1917), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1917), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1917), + [aux_sym_forward_agent_token1] = ACTIONS(1917), + [aux_sym_forward_x11_token1] = ACTIONS(1919), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1917), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1917), + [aux_sym_gateway_ports_token1] = ACTIONS(1917), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1917), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1917), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1917), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1917), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1917), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1917), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1917), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1917), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1917), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1917), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1917), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1917), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1917), + [aux_sym_host_key_alias_token1] = ACTIONS(1917), + [aux_sym_hostname_token1] = ACTIONS(1917), + [aux_sym_identities_only_token1] = ACTIONS(1917), + [aux_sym_identity_agent_token1] = ACTIONS(1917), + [aux_sym_identity_file_token1] = ACTIONS(1917), + [aux_sym_ignore_unknown_token1] = ACTIONS(1917), + [aux_sym_include_token1] = ACTIONS(1917), + [aux_sym_ip_qos_token1] = ACTIONS(1917), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1917), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1917), + [aux_sym_kex_algorithms_token1] = ACTIONS(1917), + [aux_sym_known_hosts_command_token1] = ACTIONS(1917), + [aux_sym_local_command_token1] = ACTIONS(1917), + [aux_sym_local_forward_token1] = ACTIONS(1917), + [aux_sym_log_level_token1] = ACTIONS(1917), + [aux_sym_log_verbose_token1] = ACTIONS(1917), + [aux_sym_macs_token1] = ACTIONS(1917), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1917), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1917), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1917), + [aux_sym_password_authentication_token1] = ACTIONS(1917), + [aux_sym_permit_local_command_token1] = ACTIONS(1917), + [aux_sym_permit_remote_open_token1] = ACTIONS(1917), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1917), + [aux_sym_port_token1] = ACTIONS(1917), + [aux_sym_preferred_authentications_token1] = ACTIONS(1917), + [aux_sym_protocol_token1] = ACTIONS(1917), + [aux_sym_proxy_command_token1] = ACTIONS(1917), + [aux_sym_proxy_jump_token1] = ACTIONS(1917), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1917), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1917), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1917), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1917), + [aux_sym_rekey_limit_token1] = ACTIONS(1917), + [aux_sym_remote_command_token1] = ACTIONS(1917), + [aux_sym_remote_forward_token1] = ACTIONS(1917), + [aux_sym_request_tty_token1] = ACTIONS(1917), + [aux_sym_required_rsa_size_token1] = ACTIONS(1917), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1917), + [aux_sym_security_key_provider_token1] = ACTIONS(1917), + [aux_sym_send_env_token1] = ACTIONS(1917), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1917), + [aux_sym_server_alive_interval_token1] = ACTIONS(1917), + [aux_sym_session_type_token1] = ACTIONS(1917), + [aux_sym_set_env_token1] = ACTIONS(1917), + [aux_sym_stdin_null_token1] = ACTIONS(1917), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1917), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1917), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1917), + [aux_sym_syslog_facility_token1] = ACTIONS(1917), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1917), + [aux_sym_keep_alive_token1] = ACTIONS(1917), + [aux_sym_tag_token1] = ACTIONS(1917), + [aux_sym_tunnel_token1] = ACTIONS(1919), + [aux_sym_tunnel_device_token1] = ACTIONS(1917), + [aux_sym_update_host_keys_token1] = ACTIONS(1917), + [aux_sym_use_keychain_token1] = ACTIONS(1917), + [aux_sym_use_roaming_token1] = ACTIONS(1917), + [aux_sym_user_token1] = ACTIONS(1919), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1917), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1917), + [aux_sym_visual_host_key_token1] = ACTIONS(1917), + [aux_sym_xauth_location_token1] = ACTIONS(1917), }, [716] = { - [ts_builtin_sym_end] = ACTIONS(762), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(764), - [aux_sym_match_token1] = ACTIONS(762), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(762), - [aux_sym_address_family_token1] = ACTIONS(762), - [aux_sym_batch_mode_token1] = ACTIONS(762), - [aux_sym_bind_address_token1] = ACTIONS(762), - [aux_sym_bind_interface_token1] = ACTIONS(762), - [aux_sym_canonical_domains_token1] = ACTIONS(762), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(762), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(762), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(762), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(762), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(762), - [aux_sym_certificate_file_token1] = ACTIONS(762), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(762), - [aux_sym_channel_timeout_token1] = ACTIONS(762), - [aux_sym_check_host_ip_token1] = ACTIONS(762), - [aux_sym_ciphers_token1] = ACTIONS(762), - [aux_sym_cipher_token1] = ACTIONS(764), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(762), - [aux_sym_compression_token1] = ACTIONS(762), - [aux_sym_connection_attempts_token1] = ACTIONS(762), - [aux_sym_connect_timeout_token1] = ACTIONS(762), - [aux_sym_control_master_token1] = ACTIONS(762), - [aux_sym_control_path_token1] = ACTIONS(762), - [aux_sym_control_persist_token1] = ACTIONS(762), - [aux_sym_dynamic_forward_token1] = ACTIONS(762), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(762), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(762), - [aux_sym_escape_char_token1] = ACTIONS(762), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(762), - [aux_sym_fingerprint_hash_token1] = ACTIONS(762), - [aux_sym_fork_after_authentication_token1] = ACTIONS(762), - [aux_sym_forward_agent_token1] = ACTIONS(762), - [aux_sym_forward_x11_token1] = ACTIONS(764), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(762), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(762), - [aux_sym_gateway_ports_token1] = ACTIONS(762), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(762), - [aux_sym_gssapi_authentication_token1] = ACTIONS(762), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(762), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(762), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(762), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(762), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(762), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(762), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(762), - [aux_sym_hash_known_hosts_token1] = ACTIONS(762), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(762), - [aux_sym_hostbased_authentication_token1] = ACTIONS(762), - [aux_sym_host_key_algorithms_token1] = ACTIONS(762), - [aux_sym_host_key_alias_token1] = ACTIONS(762), - [aux_sym_hostname_token1] = ACTIONS(762), - [aux_sym_identities_only_token1] = ACTIONS(762), - [aux_sym_identity_agent_token1] = ACTIONS(762), - [aux_sym_identity_file_token1] = ACTIONS(762), - [aux_sym_ignore_unknown_token1] = ACTIONS(762), - [aux_sym_include_token1] = ACTIONS(762), - [aux_sym_ip_qos_token1] = ACTIONS(762), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(762), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(762), - [aux_sym_kex_algorithms_token1] = ACTIONS(762), - [aux_sym_known_hosts_command_token1] = ACTIONS(762), - [aux_sym_local_command_token1] = ACTIONS(762), - [aux_sym_local_forward_token1] = ACTIONS(762), - [aux_sym_log_level_token1] = ACTIONS(762), - [aux_sym_log_verbose_token1] = ACTIONS(762), - [aux_sym_macs_token1] = ACTIONS(762), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(762), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(762), - [aux_sym_password_authentication_token1] = ACTIONS(762), - [aux_sym_permit_local_command_token1] = ACTIONS(762), - [aux_sym_permit_remote_open_token1] = ACTIONS(762), - [aux_sym_pkcs11_provider_token1] = ACTIONS(762), - [aux_sym_port_token1] = ACTIONS(762), - [aux_sym_preferred_authentications_token1] = ACTIONS(762), - [aux_sym_protocol_token1] = ACTIONS(762), - [aux_sym_proxy_command_token1] = ACTIONS(762), - [aux_sym_proxy_jump_token1] = ACTIONS(762), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(762), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(762), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(762), - [aux_sym_pubkey_authentication_token1] = ACTIONS(762), - [aux_sym_rekey_limit_token1] = ACTIONS(762), - [aux_sym_remote_command_token1] = ACTIONS(762), - [aux_sym_remote_forward_token1] = ACTIONS(762), - [aux_sym_request_tty_token1] = ACTIONS(762), - [aux_sym_required_rsa_size_token1] = ACTIONS(762), - [aux_sym_revoked_host_keys_token1] = ACTIONS(762), - [aux_sym_security_key_provider_token1] = ACTIONS(762), - [aux_sym_send_env_token1] = ACTIONS(762), - [aux_sym_server_alive_count_max_token1] = ACTIONS(762), - [aux_sym_server_alive_interval_token1] = ACTIONS(762), - [aux_sym_session_type_token1] = ACTIONS(762), - [aux_sym_set_env_token1] = ACTIONS(762), - [aux_sym_stdin_null_token1] = ACTIONS(762), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(762), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(762), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(762), - [aux_sym_syslog_facility_token1] = ACTIONS(762), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(762), - [aux_sym_keep_alive_token1] = ACTIONS(762), - [aux_sym_tag_token1] = ACTIONS(762), - [aux_sym_tunnel_token1] = ACTIONS(764), - [aux_sym_tunnel_device_token1] = ACTIONS(762), - [aux_sym_update_host_keys_token1] = ACTIONS(762), - [aux_sym_use_keychain_token1] = ACTIONS(762), - [aux_sym_use_roaming_token1] = ACTIONS(762), - [aux_sym_user_token1] = ACTIONS(764), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(762), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(762), - [aux_sym_visual_host_key_token1] = ACTIONS(762), - [aux_sym_xauth_location_token1] = ACTIONS(762), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1447), + [aux_sym_match_token1] = ACTIONS(1445), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1445), + [aux_sym_address_family_token1] = ACTIONS(1445), + [aux_sym_batch_mode_token1] = ACTIONS(1445), + [aux_sym_bind_address_token1] = ACTIONS(1445), + [aux_sym_bind_interface_token1] = ACTIONS(1445), + [aux_sym_canonical_domains_token1] = ACTIONS(1445), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1445), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1445), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1445), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1445), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1445), + [aux_sym_certificate_file_token1] = ACTIONS(1445), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1445), + [aux_sym_channel_timeout_token1] = ACTIONS(1445), + [aux_sym_check_host_ip_token1] = ACTIONS(1445), + [aux_sym_ciphers_token1] = ACTIONS(1445), + [aux_sym_cipher_token1] = ACTIONS(1447), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1445), + [aux_sym_compression_token1] = ACTIONS(1445), + [aux_sym_connection_attempts_token1] = ACTIONS(1445), + [aux_sym_connect_timeout_token1] = ACTIONS(1445), + [aux_sym_control_master_token1] = ACTIONS(1445), + [aux_sym_control_path_token1] = ACTIONS(1445), + [aux_sym_control_persist_token1] = ACTIONS(1445), + [aux_sym_dynamic_forward_token1] = ACTIONS(1445), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1445), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1445), + [aux_sym_escape_char_token1] = ACTIONS(1445), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1445), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1445), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1445), + [aux_sym_forward_agent_token1] = ACTIONS(1445), + [aux_sym_forward_x11_token1] = ACTIONS(1447), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1445), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1445), + [aux_sym_gateway_ports_token1] = ACTIONS(1445), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1445), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1445), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1445), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1445), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1445), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1445), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1445), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1445), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1445), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1445), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1445), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1445), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1445), + [aux_sym_host_key_alias_token1] = ACTIONS(1445), + [aux_sym_hostname_token1] = ACTIONS(1445), + [aux_sym_identities_only_token1] = ACTIONS(1445), + [aux_sym_identity_agent_token1] = ACTIONS(1445), + [aux_sym_identity_file_token1] = ACTIONS(1445), + [aux_sym_ignore_unknown_token1] = ACTIONS(1445), + [aux_sym_include_token1] = ACTIONS(1445), + [aux_sym_ip_qos_token1] = ACTIONS(1445), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1445), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1445), + [aux_sym_kex_algorithms_token1] = ACTIONS(1445), + [aux_sym_known_hosts_command_token1] = ACTIONS(1445), + [aux_sym_local_command_token1] = ACTIONS(1445), + [aux_sym_local_forward_token1] = ACTIONS(1445), + [aux_sym_log_level_token1] = ACTIONS(1445), + [aux_sym_log_verbose_token1] = ACTIONS(1445), + [aux_sym_macs_token1] = ACTIONS(1445), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1445), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1445), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1445), + [aux_sym_password_authentication_token1] = ACTIONS(1445), + [aux_sym_permit_local_command_token1] = ACTIONS(1445), + [aux_sym_permit_remote_open_token1] = ACTIONS(1445), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1445), + [aux_sym_port_token1] = ACTIONS(1445), + [aux_sym_preferred_authentications_token1] = ACTIONS(1445), + [aux_sym_protocol_token1] = ACTIONS(1445), + [aux_sym_proxy_command_token1] = ACTIONS(1445), + [aux_sym_proxy_jump_token1] = ACTIONS(1445), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1445), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1445), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1445), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1445), + [aux_sym_rekey_limit_token1] = ACTIONS(1445), + [aux_sym_remote_command_token1] = ACTIONS(1445), + [aux_sym_remote_forward_token1] = ACTIONS(1445), + [aux_sym_request_tty_token1] = ACTIONS(1445), + [aux_sym_required_rsa_size_token1] = ACTIONS(1445), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1445), + [aux_sym_security_key_provider_token1] = ACTIONS(1445), + [aux_sym_send_env_token1] = ACTIONS(1445), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1445), + [aux_sym_server_alive_interval_token1] = ACTIONS(1445), + [aux_sym_session_type_token1] = ACTIONS(1445), + [aux_sym_set_env_token1] = ACTIONS(1445), + [aux_sym_stdin_null_token1] = ACTIONS(1445), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1445), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1445), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1445), + [aux_sym_syslog_facility_token1] = ACTIONS(1445), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1445), + [aux_sym_keep_alive_token1] = ACTIONS(1445), + [aux_sym_tag_token1] = ACTIONS(1445), + [aux_sym_tunnel_token1] = ACTIONS(1447), + [aux_sym_tunnel_device_token1] = ACTIONS(1445), + [aux_sym_update_host_keys_token1] = ACTIONS(1445), + [aux_sym_use_keychain_token1] = ACTIONS(1445), + [aux_sym_use_roaming_token1] = ACTIONS(1445), + [aux_sym_user_token1] = ACTIONS(1447), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1445), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1445), + [aux_sym_visual_host_key_token1] = ACTIONS(1445), + [aux_sym_xauth_location_token1] = ACTIONS(1445), }, [717] = { - [ts_builtin_sym_end] = ACTIONS(1020), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1022), - [aux_sym_match_token1] = ACTIONS(1020), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1020), - [aux_sym_address_family_token1] = ACTIONS(1020), - [aux_sym_batch_mode_token1] = ACTIONS(1020), - [aux_sym_bind_address_token1] = ACTIONS(1020), - [aux_sym_bind_interface_token1] = ACTIONS(1020), - [aux_sym_canonical_domains_token1] = ACTIONS(1020), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1020), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1020), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1020), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1020), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1020), - [aux_sym_certificate_file_token1] = ACTIONS(1020), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1020), - [aux_sym_channel_timeout_token1] = ACTIONS(1020), - [aux_sym_check_host_ip_token1] = ACTIONS(1020), - [aux_sym_ciphers_token1] = ACTIONS(1020), - [aux_sym_cipher_token1] = ACTIONS(1022), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1020), - [aux_sym_compression_token1] = ACTIONS(1020), - [aux_sym_connection_attempts_token1] = ACTIONS(1020), - [aux_sym_connect_timeout_token1] = ACTIONS(1020), - [aux_sym_control_master_token1] = ACTIONS(1020), - [aux_sym_control_path_token1] = ACTIONS(1020), - [aux_sym_control_persist_token1] = ACTIONS(1020), - [aux_sym_dynamic_forward_token1] = ACTIONS(1020), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1020), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1020), - [aux_sym_escape_char_token1] = ACTIONS(1020), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1020), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1020), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1020), - [aux_sym_forward_agent_token1] = ACTIONS(1020), - [aux_sym_forward_x11_token1] = ACTIONS(1022), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1020), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1020), - [aux_sym_gateway_ports_token1] = ACTIONS(1020), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1020), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1020), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1020), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1020), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1020), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1020), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1020), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1020), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1020), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1020), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1020), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1020), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1020), - [aux_sym_host_key_alias_token1] = ACTIONS(1020), - [aux_sym_hostname_token1] = ACTIONS(1020), - [aux_sym_identities_only_token1] = ACTIONS(1020), - [aux_sym_identity_agent_token1] = ACTIONS(1020), - [aux_sym_identity_file_token1] = ACTIONS(1020), - [aux_sym_ignore_unknown_token1] = ACTIONS(1020), - [aux_sym_include_token1] = ACTIONS(1020), - [aux_sym_ip_qos_token1] = ACTIONS(1020), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1020), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1020), - [aux_sym_kex_algorithms_token1] = ACTIONS(1020), - [aux_sym_known_hosts_command_token1] = ACTIONS(1020), - [aux_sym_local_command_token1] = ACTIONS(1020), - [aux_sym_local_forward_token1] = ACTIONS(1020), - [aux_sym_log_level_token1] = ACTIONS(1020), - [aux_sym_log_verbose_token1] = ACTIONS(1020), - [aux_sym_macs_token1] = ACTIONS(1020), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1020), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1020), - [aux_sym_password_authentication_token1] = ACTIONS(1020), - [aux_sym_permit_local_command_token1] = ACTIONS(1020), - [aux_sym_permit_remote_open_token1] = ACTIONS(1020), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1020), - [aux_sym_port_token1] = ACTIONS(1020), - [aux_sym_preferred_authentications_token1] = ACTIONS(1020), - [aux_sym_protocol_token1] = ACTIONS(1020), - [aux_sym_proxy_command_token1] = ACTIONS(1020), - [aux_sym_proxy_jump_token1] = ACTIONS(1020), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1020), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1020), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1020), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1020), - [aux_sym_rekey_limit_token1] = ACTIONS(1020), - [aux_sym_remote_command_token1] = ACTIONS(1020), - [aux_sym_remote_forward_token1] = ACTIONS(1020), - [aux_sym_request_tty_token1] = ACTIONS(1020), - [aux_sym_required_rsa_size_token1] = ACTIONS(1020), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1020), - [aux_sym_security_key_provider_token1] = ACTIONS(1020), - [aux_sym_send_env_token1] = ACTIONS(1020), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1020), - [aux_sym_server_alive_interval_token1] = ACTIONS(1020), - [aux_sym_session_type_token1] = ACTIONS(1020), - [aux_sym_set_env_token1] = ACTIONS(1020), - [aux_sym_stdin_null_token1] = ACTIONS(1020), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1020), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1020), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1020), - [aux_sym_syslog_facility_token1] = ACTIONS(1020), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1020), - [aux_sym_keep_alive_token1] = ACTIONS(1020), - [aux_sym_tag_token1] = ACTIONS(1020), - [aux_sym_tunnel_token1] = ACTIONS(1022), - [aux_sym_tunnel_device_token1] = ACTIONS(1020), - [aux_sym_update_host_keys_token1] = ACTIONS(1020), - [aux_sym_use_keychain_token1] = ACTIONS(1020), - [aux_sym_use_roaming_token1] = ACTIONS(1020), - [aux_sym_user_token1] = ACTIONS(1022), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1020), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1020), - [aux_sym_visual_host_key_token1] = ACTIONS(1020), - [aux_sym_xauth_location_token1] = ACTIONS(1020), + [ts_builtin_sym_end] = ACTIONS(1683), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1685), + [aux_sym_match_token1] = ACTIONS(1683), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1683), + [aux_sym_address_family_token1] = ACTIONS(1683), + [aux_sym_batch_mode_token1] = ACTIONS(1683), + [aux_sym_bind_address_token1] = ACTIONS(1683), + [aux_sym_bind_interface_token1] = ACTIONS(1683), + [aux_sym_canonical_domains_token1] = ACTIONS(1683), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1683), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1683), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1683), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1683), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1683), + [aux_sym_certificate_file_token1] = ACTIONS(1683), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1683), + [aux_sym_channel_timeout_token1] = ACTIONS(1683), + [aux_sym_check_host_ip_token1] = ACTIONS(1683), + [aux_sym_ciphers_token1] = ACTIONS(1683), + [aux_sym_cipher_token1] = ACTIONS(1685), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1683), + [aux_sym_compression_token1] = ACTIONS(1683), + [aux_sym_connection_attempts_token1] = ACTIONS(1683), + [aux_sym_connect_timeout_token1] = ACTIONS(1683), + [aux_sym_control_master_token1] = ACTIONS(1683), + [aux_sym_control_path_token1] = ACTIONS(1683), + [aux_sym_control_persist_token1] = ACTIONS(1683), + [aux_sym_dynamic_forward_token1] = ACTIONS(1683), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1683), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1683), + [aux_sym_escape_char_token1] = ACTIONS(1683), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1683), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1683), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1683), + [aux_sym_forward_agent_token1] = ACTIONS(1683), + [aux_sym_forward_x11_token1] = ACTIONS(1685), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1683), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1683), + [aux_sym_gateway_ports_token1] = ACTIONS(1683), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1683), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1683), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1683), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1683), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1683), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1683), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1683), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1683), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1683), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1683), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1683), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1683), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1683), + [aux_sym_host_key_alias_token1] = ACTIONS(1683), + [aux_sym_hostname_token1] = ACTIONS(1683), + [aux_sym_identities_only_token1] = ACTIONS(1683), + [aux_sym_identity_agent_token1] = ACTIONS(1683), + [aux_sym_identity_file_token1] = ACTIONS(1683), + [aux_sym_ignore_unknown_token1] = ACTIONS(1683), + [aux_sym_include_token1] = ACTIONS(1683), + [aux_sym_ip_qos_token1] = ACTIONS(1683), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1683), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1683), + [aux_sym_kex_algorithms_token1] = ACTIONS(1683), + [aux_sym_known_hosts_command_token1] = ACTIONS(1683), + [aux_sym_local_command_token1] = ACTIONS(1683), + [aux_sym_local_forward_token1] = ACTIONS(1683), + [aux_sym_log_level_token1] = ACTIONS(1683), + [aux_sym_log_verbose_token1] = ACTIONS(1683), + [aux_sym_macs_token1] = ACTIONS(1683), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1683), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1683), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1683), + [aux_sym_password_authentication_token1] = ACTIONS(1683), + [aux_sym_permit_local_command_token1] = ACTIONS(1683), + [aux_sym_permit_remote_open_token1] = ACTIONS(1683), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1683), + [aux_sym_port_token1] = ACTIONS(1683), + [aux_sym_preferred_authentications_token1] = ACTIONS(1683), + [aux_sym_protocol_token1] = ACTIONS(1683), + [aux_sym_proxy_command_token1] = ACTIONS(1683), + [aux_sym_proxy_jump_token1] = ACTIONS(1683), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1683), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1683), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1683), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1683), + [aux_sym_rekey_limit_token1] = ACTIONS(1683), + [aux_sym_remote_command_token1] = ACTIONS(1683), + [aux_sym_remote_forward_token1] = ACTIONS(1683), + [aux_sym_request_tty_token1] = ACTIONS(1683), + [aux_sym_required_rsa_size_token1] = ACTIONS(1683), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1683), + [aux_sym_security_key_provider_token1] = ACTIONS(1683), + [aux_sym_send_env_token1] = ACTIONS(1683), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1683), + [aux_sym_server_alive_interval_token1] = ACTIONS(1683), + [aux_sym_session_type_token1] = ACTIONS(1683), + [aux_sym_set_env_token1] = ACTIONS(1683), + [aux_sym_stdin_null_token1] = ACTIONS(1683), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1683), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1683), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1683), + [aux_sym_syslog_facility_token1] = ACTIONS(1683), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1683), + [aux_sym_keep_alive_token1] = ACTIONS(1683), + [aux_sym_tag_token1] = ACTIONS(1683), + [aux_sym_tunnel_token1] = ACTIONS(1685), + [aux_sym_tunnel_device_token1] = ACTIONS(1683), + [aux_sym_update_host_keys_token1] = ACTIONS(1683), + [aux_sym_use_keychain_token1] = ACTIONS(1683), + [aux_sym_use_roaming_token1] = ACTIONS(1683), + [aux_sym_user_token1] = ACTIONS(1685), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1683), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1683), + [aux_sym_visual_host_key_token1] = ACTIONS(1683), + [aux_sym_xauth_location_token1] = ACTIONS(1683), }, [718] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1884), - [aux_sym_match_token1] = ACTIONS(1882), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1882), - [aux_sym_address_family_token1] = ACTIONS(1882), - [aux_sym_batch_mode_token1] = ACTIONS(1882), - [aux_sym_bind_address_token1] = ACTIONS(1882), - [aux_sym_bind_interface_token1] = ACTIONS(1882), - [aux_sym_canonical_domains_token1] = ACTIONS(1882), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1882), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1882), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1882), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1882), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1882), - [aux_sym_certificate_file_token1] = ACTIONS(1882), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1882), - [aux_sym_channel_timeout_token1] = ACTIONS(1882), - [aux_sym_check_host_ip_token1] = ACTIONS(1882), - [aux_sym_ciphers_token1] = ACTIONS(1882), - [aux_sym_cipher_token1] = ACTIONS(1884), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1882), - [aux_sym_compression_token1] = ACTIONS(1882), - [aux_sym_connection_attempts_token1] = ACTIONS(1882), - [aux_sym_connect_timeout_token1] = ACTIONS(1882), - [aux_sym_control_master_token1] = ACTIONS(1882), - [aux_sym_control_path_token1] = ACTIONS(1882), - [aux_sym_control_persist_token1] = ACTIONS(1882), - [aux_sym_dynamic_forward_token1] = ACTIONS(1882), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1882), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1882), - [aux_sym_escape_char_token1] = ACTIONS(1882), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1882), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1882), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1882), - [aux_sym_forward_agent_token1] = ACTIONS(1882), - [aux_sym_forward_x11_token1] = ACTIONS(1884), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1882), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1882), - [aux_sym_gateway_ports_token1] = ACTIONS(1882), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1882), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1882), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1882), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1882), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1882), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1882), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1882), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1882), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1882), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1882), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1882), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1882), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1882), - [aux_sym_host_key_alias_token1] = ACTIONS(1882), - [aux_sym_hostname_token1] = ACTIONS(1882), - [aux_sym_identities_only_token1] = ACTIONS(1882), - [aux_sym_identity_agent_token1] = ACTIONS(1882), - [aux_sym_identity_file_token1] = ACTIONS(1882), - [aux_sym_ignore_unknown_token1] = ACTIONS(1882), - [aux_sym_include_token1] = ACTIONS(1882), - [aux_sym_ip_qos_token1] = ACTIONS(1882), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1882), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1882), - [aux_sym_kex_algorithms_token1] = ACTIONS(1882), - [aux_sym_known_hosts_command_token1] = ACTIONS(1882), - [aux_sym_local_command_token1] = ACTIONS(1882), - [aux_sym_local_forward_token1] = ACTIONS(1882), - [aux_sym_log_level_token1] = ACTIONS(1882), - [aux_sym_log_verbose_token1] = ACTIONS(1882), - [aux_sym_macs_token1] = ACTIONS(1882), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1882), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1882), - [aux_sym_password_authentication_token1] = ACTIONS(1882), - [aux_sym_permit_local_command_token1] = ACTIONS(1882), - [aux_sym_permit_remote_open_token1] = ACTIONS(1882), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1882), - [aux_sym_port_token1] = ACTIONS(1882), - [aux_sym_preferred_authentications_token1] = ACTIONS(1882), - [aux_sym_protocol_token1] = ACTIONS(1882), - [aux_sym_proxy_command_token1] = ACTIONS(1882), - [aux_sym_proxy_jump_token1] = ACTIONS(1882), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1882), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1882), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1882), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1882), - [aux_sym_rekey_limit_token1] = ACTIONS(1882), - [aux_sym_remote_command_token1] = ACTIONS(1882), - [aux_sym_remote_forward_token1] = ACTIONS(1882), - [aux_sym_request_tty_token1] = ACTIONS(1882), - [aux_sym_required_rsa_size_token1] = ACTIONS(1882), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1882), - [aux_sym_security_key_provider_token1] = ACTIONS(1882), - [aux_sym_send_env_token1] = ACTIONS(1882), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1882), - [aux_sym_server_alive_interval_token1] = ACTIONS(1882), - [aux_sym_session_type_token1] = ACTIONS(1882), - [aux_sym_set_env_token1] = ACTIONS(1882), - [aux_sym_stdin_null_token1] = ACTIONS(1882), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1882), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1882), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1882), - [aux_sym_syslog_facility_token1] = ACTIONS(1882), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1882), - [aux_sym_keep_alive_token1] = ACTIONS(1882), - [aux_sym_tag_token1] = ACTIONS(1882), - [aux_sym_tunnel_token1] = ACTIONS(1884), - [aux_sym_tunnel_device_token1] = ACTIONS(1882), - [aux_sym_update_host_keys_token1] = ACTIONS(1882), - [aux_sym_use_keychain_token1] = ACTIONS(1882), - [aux_sym_use_roaming_token1] = ACTIONS(1882), - [aux_sym_user_token1] = ACTIONS(1884), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1882), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1882), - [aux_sym_visual_host_key_token1] = ACTIONS(1882), - [aux_sym_xauth_location_token1] = ACTIONS(1882), + [ts_builtin_sym_end] = ACTIONS(1911), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1913), + [aux_sym_match_token1] = ACTIONS(1911), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1911), + [aux_sym_address_family_token1] = ACTIONS(1911), + [aux_sym_batch_mode_token1] = ACTIONS(1911), + [aux_sym_bind_address_token1] = ACTIONS(1911), + [aux_sym_bind_interface_token1] = ACTIONS(1911), + [aux_sym_canonical_domains_token1] = ACTIONS(1911), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1911), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1911), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1911), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1911), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1911), + [aux_sym_certificate_file_token1] = ACTIONS(1911), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1911), + [aux_sym_channel_timeout_token1] = ACTIONS(1911), + [aux_sym_check_host_ip_token1] = ACTIONS(1911), + [aux_sym_ciphers_token1] = ACTIONS(1911), + [aux_sym_cipher_token1] = ACTIONS(1913), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1911), + [aux_sym_compression_token1] = ACTIONS(1911), + [aux_sym_connection_attempts_token1] = ACTIONS(1911), + [aux_sym_connect_timeout_token1] = ACTIONS(1911), + [aux_sym_control_master_token1] = ACTIONS(1911), + [aux_sym_control_path_token1] = ACTIONS(1911), + [aux_sym_control_persist_token1] = ACTIONS(1911), + [aux_sym_dynamic_forward_token1] = ACTIONS(1911), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1911), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1911), + [aux_sym_escape_char_token1] = ACTIONS(1911), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1911), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1911), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1911), + [aux_sym_forward_agent_token1] = ACTIONS(1911), + [aux_sym_forward_x11_token1] = ACTIONS(1913), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1911), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1911), + [aux_sym_gateway_ports_token1] = ACTIONS(1911), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1911), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1911), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1911), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1911), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1911), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1911), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1911), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1911), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1911), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1911), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1911), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1911), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1911), + [aux_sym_host_key_alias_token1] = ACTIONS(1911), + [aux_sym_hostname_token1] = ACTIONS(1911), + [aux_sym_identities_only_token1] = ACTIONS(1911), + [aux_sym_identity_agent_token1] = ACTIONS(1911), + [aux_sym_identity_file_token1] = ACTIONS(1911), + [aux_sym_ignore_unknown_token1] = ACTIONS(1911), + [aux_sym_include_token1] = ACTIONS(1911), + [aux_sym_ip_qos_token1] = ACTIONS(1911), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1911), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1911), + [aux_sym_kex_algorithms_token1] = ACTIONS(1911), + [aux_sym_known_hosts_command_token1] = ACTIONS(1911), + [aux_sym_local_command_token1] = ACTIONS(1911), + [aux_sym_local_forward_token1] = ACTIONS(1911), + [aux_sym_log_level_token1] = ACTIONS(1911), + [aux_sym_log_verbose_token1] = ACTIONS(1911), + [aux_sym_macs_token1] = ACTIONS(1911), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1911), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1911), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1911), + [aux_sym_password_authentication_token1] = ACTIONS(1911), + [aux_sym_permit_local_command_token1] = ACTIONS(1911), + [aux_sym_permit_remote_open_token1] = ACTIONS(1911), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1911), + [aux_sym_port_token1] = ACTIONS(1911), + [aux_sym_preferred_authentications_token1] = ACTIONS(1911), + [aux_sym_protocol_token1] = ACTIONS(1911), + [aux_sym_proxy_command_token1] = ACTIONS(1911), + [aux_sym_proxy_jump_token1] = ACTIONS(1911), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1911), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1911), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1911), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1911), + [aux_sym_rekey_limit_token1] = ACTIONS(1911), + [aux_sym_remote_command_token1] = ACTIONS(1911), + [aux_sym_remote_forward_token1] = ACTIONS(1911), + [aux_sym_request_tty_token1] = ACTIONS(1911), + [aux_sym_required_rsa_size_token1] = ACTIONS(1911), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1911), + [aux_sym_security_key_provider_token1] = ACTIONS(1911), + [aux_sym_send_env_token1] = ACTIONS(1911), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1911), + [aux_sym_server_alive_interval_token1] = ACTIONS(1911), + [aux_sym_session_type_token1] = ACTIONS(1911), + [aux_sym_set_env_token1] = ACTIONS(1911), + [aux_sym_stdin_null_token1] = ACTIONS(1911), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1911), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1911), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1911), + [aux_sym_syslog_facility_token1] = ACTIONS(1911), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1911), + [aux_sym_keep_alive_token1] = ACTIONS(1911), + [aux_sym_tag_token1] = ACTIONS(1911), + [aux_sym_tunnel_token1] = ACTIONS(1913), + [aux_sym_tunnel_device_token1] = ACTIONS(1911), + [aux_sym_update_host_keys_token1] = ACTIONS(1911), + [aux_sym_use_keychain_token1] = ACTIONS(1911), + [aux_sym_use_roaming_token1] = ACTIONS(1911), + [aux_sym_user_token1] = ACTIONS(1913), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1911), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1911), + [aux_sym_visual_host_key_token1] = ACTIONS(1911), + [aux_sym_xauth_location_token1] = ACTIONS(1911), }, [719] = { - [ts_builtin_sym_end] = ACTIONS(768), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(770), - [aux_sym_match_token1] = ACTIONS(768), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(768), - [aux_sym_address_family_token1] = ACTIONS(768), - [aux_sym_batch_mode_token1] = ACTIONS(768), - [aux_sym_bind_address_token1] = ACTIONS(768), - [aux_sym_bind_interface_token1] = ACTIONS(768), - [aux_sym_canonical_domains_token1] = ACTIONS(768), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(768), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(768), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(768), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(768), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(768), - [aux_sym_certificate_file_token1] = ACTIONS(768), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(768), - [aux_sym_channel_timeout_token1] = ACTIONS(768), - [aux_sym_check_host_ip_token1] = ACTIONS(768), - [aux_sym_ciphers_token1] = ACTIONS(768), - [aux_sym_cipher_token1] = ACTIONS(770), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(768), - [aux_sym_compression_token1] = ACTIONS(768), - [aux_sym_connection_attempts_token1] = ACTIONS(768), - [aux_sym_connect_timeout_token1] = ACTIONS(768), - [aux_sym_control_master_token1] = ACTIONS(768), - [aux_sym_control_path_token1] = ACTIONS(768), - [aux_sym_control_persist_token1] = ACTIONS(768), - [aux_sym_dynamic_forward_token1] = ACTIONS(768), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(768), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(768), - [aux_sym_escape_char_token1] = ACTIONS(768), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(768), - [aux_sym_fingerprint_hash_token1] = ACTIONS(768), - [aux_sym_fork_after_authentication_token1] = ACTIONS(768), - [aux_sym_forward_agent_token1] = ACTIONS(768), - [aux_sym_forward_x11_token1] = ACTIONS(770), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(768), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(768), - [aux_sym_gateway_ports_token1] = ACTIONS(768), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(768), - [aux_sym_gssapi_authentication_token1] = ACTIONS(768), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(768), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(768), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(768), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(768), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(768), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(768), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(768), - [aux_sym_hash_known_hosts_token1] = ACTIONS(768), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(768), - [aux_sym_hostbased_authentication_token1] = ACTIONS(768), - [aux_sym_host_key_algorithms_token1] = ACTIONS(768), - [aux_sym_host_key_alias_token1] = ACTIONS(768), - [aux_sym_hostname_token1] = ACTIONS(768), - [aux_sym_identities_only_token1] = ACTIONS(768), - [aux_sym_identity_agent_token1] = ACTIONS(768), - [aux_sym_identity_file_token1] = ACTIONS(768), - [aux_sym_ignore_unknown_token1] = ACTIONS(768), - [aux_sym_include_token1] = ACTIONS(768), - [aux_sym_ip_qos_token1] = ACTIONS(768), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(768), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(768), - [aux_sym_kex_algorithms_token1] = ACTIONS(768), - [aux_sym_known_hosts_command_token1] = ACTIONS(768), - [aux_sym_local_command_token1] = ACTIONS(768), - [aux_sym_local_forward_token1] = ACTIONS(768), - [aux_sym_log_level_token1] = ACTIONS(768), - [aux_sym_log_verbose_token1] = ACTIONS(768), - [aux_sym_macs_token1] = ACTIONS(768), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(768), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(768), - [aux_sym_password_authentication_token1] = ACTIONS(768), - [aux_sym_permit_local_command_token1] = ACTIONS(768), - [aux_sym_permit_remote_open_token1] = ACTIONS(768), - [aux_sym_pkcs11_provider_token1] = ACTIONS(768), - [aux_sym_port_token1] = ACTIONS(768), - [aux_sym_preferred_authentications_token1] = ACTIONS(768), - [aux_sym_protocol_token1] = ACTIONS(768), - [aux_sym_proxy_command_token1] = ACTIONS(768), - [aux_sym_proxy_jump_token1] = ACTIONS(768), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(768), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(768), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(768), - [aux_sym_pubkey_authentication_token1] = ACTIONS(768), - [aux_sym_rekey_limit_token1] = ACTIONS(768), - [aux_sym_remote_command_token1] = ACTIONS(768), - [aux_sym_remote_forward_token1] = ACTIONS(768), - [aux_sym_request_tty_token1] = ACTIONS(768), - [aux_sym_required_rsa_size_token1] = ACTIONS(768), - [aux_sym_revoked_host_keys_token1] = ACTIONS(768), - [aux_sym_security_key_provider_token1] = ACTIONS(768), - [aux_sym_send_env_token1] = ACTIONS(768), - [aux_sym_server_alive_count_max_token1] = ACTIONS(768), - [aux_sym_server_alive_interval_token1] = ACTIONS(768), - [aux_sym_session_type_token1] = ACTIONS(768), - [aux_sym_set_env_token1] = ACTIONS(768), - [aux_sym_stdin_null_token1] = ACTIONS(768), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(768), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(768), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(768), - [aux_sym_syslog_facility_token1] = ACTIONS(768), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(768), - [aux_sym_keep_alive_token1] = ACTIONS(768), - [aux_sym_tag_token1] = ACTIONS(768), - [aux_sym_tunnel_token1] = ACTIONS(770), - [aux_sym_tunnel_device_token1] = ACTIONS(768), - [aux_sym_update_host_keys_token1] = ACTIONS(768), - [aux_sym_use_keychain_token1] = ACTIONS(768), - [aux_sym_use_roaming_token1] = ACTIONS(768), - [aux_sym_user_token1] = ACTIONS(770), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(768), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(768), - [aux_sym_visual_host_key_token1] = ACTIONS(768), - [aux_sym_xauth_location_token1] = ACTIONS(768), + [ts_builtin_sym_end] = ACTIONS(1559), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1561), + [aux_sym_match_token1] = ACTIONS(1559), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1559), + [aux_sym_address_family_token1] = ACTIONS(1559), + [aux_sym_batch_mode_token1] = ACTIONS(1559), + [aux_sym_bind_address_token1] = ACTIONS(1559), + [aux_sym_bind_interface_token1] = ACTIONS(1559), + [aux_sym_canonical_domains_token1] = ACTIONS(1559), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1559), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1559), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1559), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1559), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1559), + [aux_sym_certificate_file_token1] = ACTIONS(1559), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1559), + [aux_sym_channel_timeout_token1] = ACTIONS(1559), + [aux_sym_check_host_ip_token1] = ACTIONS(1559), + [aux_sym_ciphers_token1] = ACTIONS(1559), + [aux_sym_cipher_token1] = ACTIONS(1561), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1559), + [aux_sym_compression_token1] = ACTIONS(1559), + [aux_sym_connection_attempts_token1] = ACTIONS(1559), + [aux_sym_connect_timeout_token1] = ACTIONS(1559), + [aux_sym_control_master_token1] = ACTIONS(1559), + [aux_sym_control_path_token1] = ACTIONS(1559), + [aux_sym_control_persist_token1] = ACTIONS(1559), + [aux_sym_dynamic_forward_token1] = ACTIONS(1559), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1559), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1559), + [aux_sym_escape_char_token1] = ACTIONS(1559), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1559), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1559), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1559), + [aux_sym_forward_agent_token1] = ACTIONS(1559), + [aux_sym_forward_x11_token1] = ACTIONS(1561), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1559), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1559), + [aux_sym_gateway_ports_token1] = ACTIONS(1559), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1559), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1559), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1559), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1559), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1559), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1559), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1559), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1559), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1559), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1559), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1559), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1559), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1559), + [aux_sym_host_key_alias_token1] = ACTIONS(1559), + [aux_sym_hostname_token1] = ACTIONS(1559), + [aux_sym_identities_only_token1] = ACTIONS(1559), + [aux_sym_identity_agent_token1] = ACTIONS(1559), + [aux_sym_identity_file_token1] = ACTIONS(1559), + [aux_sym_ignore_unknown_token1] = ACTIONS(1559), + [aux_sym_include_token1] = ACTIONS(1559), + [aux_sym_ip_qos_token1] = ACTIONS(1559), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1559), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1559), + [aux_sym_kex_algorithms_token1] = ACTIONS(1559), + [aux_sym_known_hosts_command_token1] = ACTIONS(1559), + [aux_sym_local_command_token1] = ACTIONS(1559), + [aux_sym_local_forward_token1] = ACTIONS(1559), + [aux_sym_log_level_token1] = ACTIONS(1559), + [aux_sym_log_verbose_token1] = ACTIONS(1559), + [aux_sym_macs_token1] = ACTIONS(1559), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1559), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1559), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1559), + [aux_sym_password_authentication_token1] = ACTIONS(1559), + [aux_sym_permit_local_command_token1] = ACTIONS(1559), + [aux_sym_permit_remote_open_token1] = ACTIONS(1559), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1559), + [aux_sym_port_token1] = ACTIONS(1559), + [aux_sym_preferred_authentications_token1] = ACTIONS(1559), + [aux_sym_protocol_token1] = ACTIONS(1559), + [aux_sym_proxy_command_token1] = ACTIONS(1559), + [aux_sym_proxy_jump_token1] = ACTIONS(1559), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1559), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1559), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1559), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1559), + [aux_sym_rekey_limit_token1] = ACTIONS(1559), + [aux_sym_remote_command_token1] = ACTIONS(1559), + [aux_sym_remote_forward_token1] = ACTIONS(1559), + [aux_sym_request_tty_token1] = ACTIONS(1559), + [aux_sym_required_rsa_size_token1] = ACTIONS(1559), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1559), + [aux_sym_security_key_provider_token1] = ACTIONS(1559), + [aux_sym_send_env_token1] = ACTIONS(1559), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1559), + [aux_sym_server_alive_interval_token1] = ACTIONS(1559), + [aux_sym_session_type_token1] = ACTIONS(1559), + [aux_sym_set_env_token1] = ACTIONS(1559), + [aux_sym_stdin_null_token1] = ACTIONS(1559), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1559), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1559), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1559), + [aux_sym_syslog_facility_token1] = ACTIONS(1559), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1559), + [aux_sym_keep_alive_token1] = ACTIONS(1559), + [aux_sym_tag_token1] = ACTIONS(1559), + [aux_sym_tunnel_token1] = ACTIONS(1561), + [aux_sym_tunnel_device_token1] = ACTIONS(1559), + [aux_sym_update_host_keys_token1] = ACTIONS(1559), + [aux_sym_use_keychain_token1] = ACTIONS(1559), + [aux_sym_use_roaming_token1] = ACTIONS(1559), + [aux_sym_user_token1] = ACTIONS(1561), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1559), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1559), + [aux_sym_visual_host_key_token1] = ACTIONS(1559), + [aux_sym_xauth_location_token1] = ACTIONS(1559), }, [720] = { - [ts_builtin_sym_end] = ACTIONS(774), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(776), - [aux_sym_match_token1] = ACTIONS(774), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(774), - [aux_sym_address_family_token1] = ACTIONS(774), - [aux_sym_batch_mode_token1] = ACTIONS(774), - [aux_sym_bind_address_token1] = ACTIONS(774), - [aux_sym_bind_interface_token1] = ACTIONS(774), - [aux_sym_canonical_domains_token1] = ACTIONS(774), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(774), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(774), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(774), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(774), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(774), - [aux_sym_certificate_file_token1] = ACTIONS(774), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(774), - [aux_sym_channel_timeout_token1] = ACTIONS(774), - [aux_sym_check_host_ip_token1] = ACTIONS(774), - [aux_sym_ciphers_token1] = ACTIONS(774), - [aux_sym_cipher_token1] = ACTIONS(776), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(774), - [aux_sym_compression_token1] = ACTIONS(774), - [aux_sym_connection_attempts_token1] = ACTIONS(774), - [aux_sym_connect_timeout_token1] = ACTIONS(774), - [aux_sym_control_master_token1] = ACTIONS(774), - [aux_sym_control_path_token1] = ACTIONS(774), - [aux_sym_control_persist_token1] = ACTIONS(774), - [aux_sym_dynamic_forward_token1] = ACTIONS(774), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(774), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(774), - [aux_sym_escape_char_token1] = ACTIONS(774), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(774), - [aux_sym_fingerprint_hash_token1] = ACTIONS(774), - [aux_sym_fork_after_authentication_token1] = ACTIONS(774), - [aux_sym_forward_agent_token1] = ACTIONS(774), - [aux_sym_forward_x11_token1] = ACTIONS(776), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(774), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(774), - [aux_sym_gateway_ports_token1] = ACTIONS(774), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(774), - [aux_sym_gssapi_authentication_token1] = ACTIONS(774), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(774), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(774), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(774), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(774), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(774), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(774), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(774), - [aux_sym_hash_known_hosts_token1] = ACTIONS(774), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(774), - [aux_sym_hostbased_authentication_token1] = ACTIONS(774), - [aux_sym_host_key_algorithms_token1] = ACTIONS(774), - [aux_sym_host_key_alias_token1] = ACTIONS(774), - [aux_sym_hostname_token1] = ACTIONS(774), - [aux_sym_identities_only_token1] = ACTIONS(774), - [aux_sym_identity_agent_token1] = ACTIONS(774), - [aux_sym_identity_file_token1] = ACTIONS(774), - [aux_sym_ignore_unknown_token1] = ACTIONS(774), - [aux_sym_include_token1] = ACTIONS(774), - [aux_sym_ip_qos_token1] = ACTIONS(774), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(774), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(774), - [aux_sym_kex_algorithms_token1] = ACTIONS(774), - [aux_sym_known_hosts_command_token1] = ACTIONS(774), - [aux_sym_local_command_token1] = ACTIONS(774), - [aux_sym_local_forward_token1] = ACTIONS(774), - [aux_sym_log_level_token1] = ACTIONS(774), - [aux_sym_log_verbose_token1] = ACTIONS(774), - [aux_sym_macs_token1] = ACTIONS(774), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(774), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(774), - [aux_sym_password_authentication_token1] = ACTIONS(774), - [aux_sym_permit_local_command_token1] = ACTIONS(774), - [aux_sym_permit_remote_open_token1] = ACTIONS(774), - [aux_sym_pkcs11_provider_token1] = ACTIONS(774), - [aux_sym_port_token1] = ACTIONS(774), - [aux_sym_preferred_authentications_token1] = ACTIONS(774), - [aux_sym_protocol_token1] = ACTIONS(774), - [aux_sym_proxy_command_token1] = ACTIONS(774), - [aux_sym_proxy_jump_token1] = ACTIONS(774), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(774), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(774), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(774), - [aux_sym_pubkey_authentication_token1] = ACTIONS(774), - [aux_sym_rekey_limit_token1] = ACTIONS(774), - [aux_sym_remote_command_token1] = ACTIONS(774), - [aux_sym_remote_forward_token1] = ACTIONS(774), - [aux_sym_request_tty_token1] = ACTIONS(774), - [aux_sym_required_rsa_size_token1] = ACTIONS(774), - [aux_sym_revoked_host_keys_token1] = ACTIONS(774), - [aux_sym_security_key_provider_token1] = ACTIONS(774), - [aux_sym_send_env_token1] = ACTIONS(774), - [aux_sym_server_alive_count_max_token1] = ACTIONS(774), - [aux_sym_server_alive_interval_token1] = ACTIONS(774), - [aux_sym_session_type_token1] = ACTIONS(774), - [aux_sym_set_env_token1] = ACTIONS(774), - [aux_sym_stdin_null_token1] = ACTIONS(774), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(774), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(774), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(774), - [aux_sym_syslog_facility_token1] = ACTIONS(774), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(774), - [aux_sym_keep_alive_token1] = ACTIONS(774), - [aux_sym_tag_token1] = ACTIONS(774), - [aux_sym_tunnel_token1] = ACTIONS(776), - [aux_sym_tunnel_device_token1] = ACTIONS(774), - [aux_sym_update_host_keys_token1] = ACTIONS(774), - [aux_sym_use_keychain_token1] = ACTIONS(774), - [aux_sym_use_roaming_token1] = ACTIONS(774), - [aux_sym_user_token1] = ACTIONS(776), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(774), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(774), - [aux_sym_visual_host_key_token1] = ACTIONS(774), - [aux_sym_xauth_location_token1] = ACTIONS(774), + [ts_builtin_sym_end] = ACTIONS(887), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(889), + [aux_sym_match_token1] = ACTIONS(887), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(887), + [aux_sym_address_family_token1] = ACTIONS(887), + [aux_sym_batch_mode_token1] = ACTIONS(887), + [aux_sym_bind_address_token1] = ACTIONS(887), + [aux_sym_bind_interface_token1] = ACTIONS(887), + [aux_sym_canonical_domains_token1] = ACTIONS(887), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(887), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(887), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(887), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(887), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(887), + [aux_sym_certificate_file_token1] = ACTIONS(887), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(887), + [aux_sym_channel_timeout_token1] = ACTIONS(887), + [aux_sym_check_host_ip_token1] = ACTIONS(887), + [aux_sym_ciphers_token1] = ACTIONS(887), + [aux_sym_cipher_token1] = ACTIONS(889), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(887), + [aux_sym_compression_token1] = ACTIONS(887), + [aux_sym_connection_attempts_token1] = ACTIONS(887), + [aux_sym_connect_timeout_token1] = ACTIONS(887), + [aux_sym_control_master_token1] = ACTIONS(887), + [aux_sym_control_path_token1] = ACTIONS(887), + [aux_sym_control_persist_token1] = ACTIONS(887), + [aux_sym_dynamic_forward_token1] = ACTIONS(887), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(887), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(887), + [aux_sym_escape_char_token1] = ACTIONS(887), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(887), + [aux_sym_fingerprint_hash_token1] = ACTIONS(887), + [aux_sym_fork_after_authentication_token1] = ACTIONS(887), + [aux_sym_forward_agent_token1] = ACTIONS(887), + [aux_sym_forward_x11_token1] = ACTIONS(889), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(887), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(887), + [aux_sym_gateway_ports_token1] = ACTIONS(887), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(887), + [aux_sym_gssapi_authentication_token1] = ACTIONS(887), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(887), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(887), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(887), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(887), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(887), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(887), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(887), + [aux_sym_hash_known_hosts_token1] = ACTIONS(887), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(887), + [aux_sym_hostbased_authentication_token1] = ACTIONS(887), + [aux_sym_host_key_algorithms_token1] = ACTIONS(887), + [aux_sym_host_key_alias_token1] = ACTIONS(887), + [aux_sym_hostname_token1] = ACTIONS(887), + [aux_sym_identities_only_token1] = ACTIONS(887), + [aux_sym_identity_agent_token1] = ACTIONS(887), + [aux_sym_identity_file_token1] = ACTIONS(887), + [aux_sym_ignore_unknown_token1] = ACTIONS(887), + [aux_sym_include_token1] = ACTIONS(887), + [aux_sym_ip_qos_token1] = ACTIONS(887), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(887), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(887), + [aux_sym_kex_algorithms_token1] = ACTIONS(887), + [aux_sym_known_hosts_command_token1] = ACTIONS(887), + [aux_sym_local_command_token1] = ACTIONS(887), + [aux_sym_local_forward_token1] = ACTIONS(887), + [aux_sym_log_level_token1] = ACTIONS(887), + [aux_sym_log_verbose_token1] = ACTIONS(887), + [aux_sym_macs_token1] = ACTIONS(887), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(887), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(887), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(887), + [aux_sym_password_authentication_token1] = ACTIONS(887), + [aux_sym_permit_local_command_token1] = ACTIONS(887), + [aux_sym_permit_remote_open_token1] = ACTIONS(887), + [aux_sym_pkcs11_provider_token1] = ACTIONS(887), + [aux_sym_port_token1] = ACTIONS(887), + [aux_sym_preferred_authentications_token1] = ACTIONS(887), + [aux_sym_protocol_token1] = ACTIONS(887), + [aux_sym_proxy_command_token1] = ACTIONS(887), + [aux_sym_proxy_jump_token1] = ACTIONS(887), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(887), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(887), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(887), + [aux_sym_pubkey_authentication_token1] = ACTIONS(887), + [aux_sym_rekey_limit_token1] = ACTIONS(887), + [aux_sym_remote_command_token1] = ACTIONS(887), + [aux_sym_remote_forward_token1] = ACTIONS(887), + [aux_sym_request_tty_token1] = ACTIONS(887), + [aux_sym_required_rsa_size_token1] = ACTIONS(887), + [aux_sym_revoked_host_keys_token1] = ACTIONS(887), + [aux_sym_security_key_provider_token1] = ACTIONS(887), + [aux_sym_send_env_token1] = ACTIONS(887), + [aux_sym_server_alive_count_max_token1] = ACTIONS(887), + [aux_sym_server_alive_interval_token1] = ACTIONS(887), + [aux_sym_session_type_token1] = ACTIONS(887), + [aux_sym_set_env_token1] = ACTIONS(887), + [aux_sym_stdin_null_token1] = ACTIONS(887), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(887), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(887), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(887), + [aux_sym_syslog_facility_token1] = ACTIONS(887), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(887), + [aux_sym_keep_alive_token1] = ACTIONS(887), + [aux_sym_tag_token1] = ACTIONS(887), + [aux_sym_tunnel_token1] = ACTIONS(889), + [aux_sym_tunnel_device_token1] = ACTIONS(887), + [aux_sym_update_host_keys_token1] = ACTIONS(887), + [aux_sym_use_keychain_token1] = ACTIONS(887), + [aux_sym_use_roaming_token1] = ACTIONS(887), + [aux_sym_user_token1] = ACTIONS(889), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(887), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(887), + [aux_sym_visual_host_key_token1] = ACTIONS(887), + [aux_sym_xauth_location_token1] = ACTIONS(887), }, [721] = { - [ts_builtin_sym_end] = ACTIONS(1876), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1878), - [aux_sym_match_token1] = ACTIONS(1876), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1876), - [aux_sym_address_family_token1] = ACTIONS(1876), - [aux_sym_batch_mode_token1] = ACTIONS(1876), - [aux_sym_bind_address_token1] = ACTIONS(1876), - [aux_sym_bind_interface_token1] = ACTIONS(1876), - [aux_sym_canonical_domains_token1] = ACTIONS(1876), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1876), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1876), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1876), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1876), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1876), - [aux_sym_certificate_file_token1] = ACTIONS(1876), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1876), - [aux_sym_channel_timeout_token1] = ACTIONS(1876), - [aux_sym_check_host_ip_token1] = ACTIONS(1876), - [aux_sym_ciphers_token1] = ACTIONS(1876), - [aux_sym_cipher_token1] = ACTIONS(1878), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1876), - [aux_sym_compression_token1] = ACTIONS(1876), - [aux_sym_connection_attempts_token1] = ACTIONS(1876), - [aux_sym_connect_timeout_token1] = ACTIONS(1876), - [aux_sym_control_master_token1] = ACTIONS(1876), - [aux_sym_control_path_token1] = ACTIONS(1876), - [aux_sym_control_persist_token1] = ACTIONS(1876), - [aux_sym_dynamic_forward_token1] = ACTIONS(1876), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1876), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1876), - [aux_sym_escape_char_token1] = ACTIONS(1876), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1876), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1876), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1876), - [aux_sym_forward_agent_token1] = ACTIONS(1876), - [aux_sym_forward_x11_token1] = ACTIONS(1878), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1876), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1876), - [aux_sym_gateway_ports_token1] = ACTIONS(1876), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1876), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1876), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1876), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1876), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1876), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1876), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1876), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1876), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1876), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1876), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1876), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1876), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1876), - [aux_sym_host_key_alias_token1] = ACTIONS(1876), - [aux_sym_hostname_token1] = ACTIONS(1876), - [aux_sym_identities_only_token1] = ACTIONS(1876), - [aux_sym_identity_agent_token1] = ACTIONS(1876), - [aux_sym_identity_file_token1] = ACTIONS(1876), - [aux_sym_ignore_unknown_token1] = ACTIONS(1876), - [aux_sym_include_token1] = ACTIONS(1876), - [aux_sym_ip_qos_token1] = ACTIONS(1876), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1876), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1876), - [aux_sym_kex_algorithms_token1] = ACTIONS(1876), - [aux_sym_known_hosts_command_token1] = ACTIONS(1876), - [aux_sym_local_command_token1] = ACTIONS(1876), - [aux_sym_local_forward_token1] = ACTIONS(1876), - [aux_sym_log_level_token1] = ACTIONS(1876), - [aux_sym_log_verbose_token1] = ACTIONS(1876), - [aux_sym_macs_token1] = ACTIONS(1876), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1876), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1876), - [aux_sym_password_authentication_token1] = ACTIONS(1876), - [aux_sym_permit_local_command_token1] = ACTIONS(1876), - [aux_sym_permit_remote_open_token1] = ACTIONS(1876), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1876), - [aux_sym_port_token1] = ACTIONS(1876), - [aux_sym_preferred_authentications_token1] = ACTIONS(1876), - [aux_sym_protocol_token1] = ACTIONS(1876), - [aux_sym_proxy_command_token1] = ACTIONS(1876), - [aux_sym_proxy_jump_token1] = ACTIONS(1876), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1876), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1876), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1876), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1876), - [aux_sym_rekey_limit_token1] = ACTIONS(1876), - [aux_sym_remote_command_token1] = ACTIONS(1876), - [aux_sym_remote_forward_token1] = ACTIONS(1876), - [aux_sym_request_tty_token1] = ACTIONS(1876), - [aux_sym_required_rsa_size_token1] = ACTIONS(1876), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1876), - [aux_sym_security_key_provider_token1] = ACTIONS(1876), - [aux_sym_send_env_token1] = ACTIONS(1876), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1876), - [aux_sym_server_alive_interval_token1] = ACTIONS(1876), - [aux_sym_session_type_token1] = ACTIONS(1876), - [aux_sym_set_env_token1] = ACTIONS(1876), - [aux_sym_stdin_null_token1] = ACTIONS(1876), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1876), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1876), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1876), - [aux_sym_syslog_facility_token1] = ACTIONS(1876), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1876), - [aux_sym_keep_alive_token1] = ACTIONS(1876), - [aux_sym_tag_token1] = ACTIONS(1876), - [aux_sym_tunnel_token1] = ACTIONS(1878), - [aux_sym_tunnel_device_token1] = ACTIONS(1876), - [aux_sym_update_host_keys_token1] = ACTIONS(1876), - [aux_sym_use_keychain_token1] = ACTIONS(1876), - [aux_sym_use_roaming_token1] = ACTIONS(1876), - [aux_sym_user_token1] = ACTIONS(1878), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1876), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1876), - [aux_sym_visual_host_key_token1] = ACTIONS(1876), - [aux_sym_xauth_location_token1] = ACTIONS(1876), + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1907), + [aux_sym_match_token1] = ACTIONS(1905), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1905), + [aux_sym_address_family_token1] = ACTIONS(1905), + [aux_sym_batch_mode_token1] = ACTIONS(1905), + [aux_sym_bind_address_token1] = ACTIONS(1905), + [aux_sym_bind_interface_token1] = ACTIONS(1905), + [aux_sym_canonical_domains_token1] = ACTIONS(1905), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1905), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1905), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1905), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1905), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1905), + [aux_sym_certificate_file_token1] = ACTIONS(1905), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1905), + [aux_sym_channel_timeout_token1] = ACTIONS(1905), + [aux_sym_check_host_ip_token1] = ACTIONS(1905), + [aux_sym_ciphers_token1] = ACTIONS(1905), + [aux_sym_cipher_token1] = ACTIONS(1907), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1905), + [aux_sym_compression_token1] = ACTIONS(1905), + [aux_sym_connection_attempts_token1] = ACTIONS(1905), + [aux_sym_connect_timeout_token1] = ACTIONS(1905), + [aux_sym_control_master_token1] = ACTIONS(1905), + [aux_sym_control_path_token1] = ACTIONS(1905), + [aux_sym_control_persist_token1] = ACTIONS(1905), + [aux_sym_dynamic_forward_token1] = ACTIONS(1905), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1905), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1905), + [aux_sym_escape_char_token1] = ACTIONS(1905), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1905), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1905), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1905), + [aux_sym_forward_agent_token1] = ACTIONS(1905), + [aux_sym_forward_x11_token1] = ACTIONS(1907), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1905), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1905), + [aux_sym_gateway_ports_token1] = ACTIONS(1905), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1905), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1905), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1905), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1905), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1905), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1905), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1905), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1905), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1905), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1905), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1905), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1905), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1905), + [aux_sym_host_key_alias_token1] = ACTIONS(1905), + [aux_sym_hostname_token1] = ACTIONS(1905), + [aux_sym_identities_only_token1] = ACTIONS(1905), + [aux_sym_identity_agent_token1] = ACTIONS(1905), + [aux_sym_identity_file_token1] = ACTIONS(1905), + [aux_sym_ignore_unknown_token1] = ACTIONS(1905), + [aux_sym_include_token1] = ACTIONS(1905), + [aux_sym_ip_qos_token1] = ACTIONS(1905), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1905), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1905), + [aux_sym_kex_algorithms_token1] = ACTIONS(1905), + [aux_sym_known_hosts_command_token1] = ACTIONS(1905), + [aux_sym_local_command_token1] = ACTIONS(1905), + [aux_sym_local_forward_token1] = ACTIONS(1905), + [aux_sym_log_level_token1] = ACTIONS(1905), + [aux_sym_log_verbose_token1] = ACTIONS(1905), + [aux_sym_macs_token1] = ACTIONS(1905), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1905), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1905), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1905), + [aux_sym_password_authentication_token1] = ACTIONS(1905), + [aux_sym_permit_local_command_token1] = ACTIONS(1905), + [aux_sym_permit_remote_open_token1] = ACTIONS(1905), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1905), + [aux_sym_port_token1] = ACTIONS(1905), + [aux_sym_preferred_authentications_token1] = ACTIONS(1905), + [aux_sym_protocol_token1] = ACTIONS(1905), + [aux_sym_proxy_command_token1] = ACTIONS(1905), + [aux_sym_proxy_jump_token1] = ACTIONS(1905), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1905), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1905), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1905), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1905), + [aux_sym_rekey_limit_token1] = ACTIONS(1905), + [aux_sym_remote_command_token1] = ACTIONS(1905), + [aux_sym_remote_forward_token1] = ACTIONS(1905), + [aux_sym_request_tty_token1] = ACTIONS(1905), + [aux_sym_required_rsa_size_token1] = ACTIONS(1905), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1905), + [aux_sym_security_key_provider_token1] = ACTIONS(1905), + [aux_sym_send_env_token1] = ACTIONS(1905), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1905), + [aux_sym_server_alive_interval_token1] = ACTIONS(1905), + [aux_sym_session_type_token1] = ACTIONS(1905), + [aux_sym_set_env_token1] = ACTIONS(1905), + [aux_sym_stdin_null_token1] = ACTIONS(1905), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1905), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1905), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1905), + [aux_sym_syslog_facility_token1] = ACTIONS(1905), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1905), + [aux_sym_keep_alive_token1] = ACTIONS(1905), + [aux_sym_tag_token1] = ACTIONS(1905), + [aux_sym_tunnel_token1] = ACTIONS(1907), + [aux_sym_tunnel_device_token1] = ACTIONS(1905), + [aux_sym_update_host_keys_token1] = ACTIONS(1905), + [aux_sym_use_keychain_token1] = ACTIONS(1905), + [aux_sym_use_roaming_token1] = ACTIONS(1905), + [aux_sym_user_token1] = ACTIONS(1907), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1905), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1905), + [aux_sym_visual_host_key_token1] = ACTIONS(1905), + [aux_sym_xauth_location_token1] = ACTIONS(1905), }, [722] = { - [ts_builtin_sym_end] = ACTIONS(780), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(782), - [aux_sym_match_token1] = ACTIONS(780), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(780), - [aux_sym_address_family_token1] = ACTIONS(780), - [aux_sym_batch_mode_token1] = ACTIONS(780), - [aux_sym_bind_address_token1] = ACTIONS(780), - [aux_sym_bind_interface_token1] = ACTIONS(780), - [aux_sym_canonical_domains_token1] = ACTIONS(780), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(780), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(780), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(780), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(780), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(780), - [aux_sym_certificate_file_token1] = ACTIONS(780), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(780), - [aux_sym_channel_timeout_token1] = ACTIONS(780), - [aux_sym_check_host_ip_token1] = ACTIONS(780), - [aux_sym_ciphers_token1] = ACTIONS(780), - [aux_sym_cipher_token1] = ACTIONS(782), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(780), - [aux_sym_compression_token1] = ACTIONS(780), - [aux_sym_connection_attempts_token1] = ACTIONS(780), - [aux_sym_connect_timeout_token1] = ACTIONS(780), - [aux_sym_control_master_token1] = ACTIONS(780), - [aux_sym_control_path_token1] = ACTIONS(780), - [aux_sym_control_persist_token1] = ACTIONS(780), - [aux_sym_dynamic_forward_token1] = ACTIONS(780), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(780), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(780), - [aux_sym_escape_char_token1] = ACTIONS(780), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(780), - [aux_sym_fingerprint_hash_token1] = ACTIONS(780), - [aux_sym_fork_after_authentication_token1] = ACTIONS(780), - [aux_sym_forward_agent_token1] = ACTIONS(780), - [aux_sym_forward_x11_token1] = ACTIONS(782), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(780), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(780), - [aux_sym_gateway_ports_token1] = ACTIONS(780), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(780), - [aux_sym_gssapi_authentication_token1] = ACTIONS(780), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(780), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(780), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(780), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(780), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(780), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(780), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(780), - [aux_sym_hash_known_hosts_token1] = ACTIONS(780), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(780), - [aux_sym_hostbased_authentication_token1] = ACTIONS(780), - [aux_sym_host_key_algorithms_token1] = ACTIONS(780), - [aux_sym_host_key_alias_token1] = ACTIONS(780), - [aux_sym_hostname_token1] = ACTIONS(780), - [aux_sym_identities_only_token1] = ACTIONS(780), - [aux_sym_identity_agent_token1] = ACTIONS(780), - [aux_sym_identity_file_token1] = ACTIONS(780), - [aux_sym_ignore_unknown_token1] = ACTIONS(780), - [aux_sym_include_token1] = ACTIONS(780), - [aux_sym_ip_qos_token1] = ACTIONS(780), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(780), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(780), - [aux_sym_kex_algorithms_token1] = ACTIONS(780), - [aux_sym_known_hosts_command_token1] = ACTIONS(780), - [aux_sym_local_command_token1] = ACTIONS(780), - [aux_sym_local_forward_token1] = ACTIONS(780), - [aux_sym_log_level_token1] = ACTIONS(780), - [aux_sym_log_verbose_token1] = ACTIONS(780), - [aux_sym_macs_token1] = ACTIONS(780), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(780), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(780), - [aux_sym_password_authentication_token1] = ACTIONS(780), - [aux_sym_permit_local_command_token1] = ACTIONS(780), - [aux_sym_permit_remote_open_token1] = ACTIONS(780), - [aux_sym_pkcs11_provider_token1] = ACTIONS(780), - [aux_sym_port_token1] = ACTIONS(780), - [aux_sym_preferred_authentications_token1] = ACTIONS(780), - [aux_sym_protocol_token1] = ACTIONS(780), - [aux_sym_proxy_command_token1] = ACTIONS(780), - [aux_sym_proxy_jump_token1] = ACTIONS(780), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(780), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(780), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(780), - [aux_sym_pubkey_authentication_token1] = ACTIONS(780), - [aux_sym_rekey_limit_token1] = ACTIONS(780), - [aux_sym_remote_command_token1] = ACTIONS(780), - [aux_sym_remote_forward_token1] = ACTIONS(780), - [aux_sym_request_tty_token1] = ACTIONS(780), - [aux_sym_required_rsa_size_token1] = ACTIONS(780), - [aux_sym_revoked_host_keys_token1] = ACTIONS(780), - [aux_sym_security_key_provider_token1] = ACTIONS(780), - [aux_sym_send_env_token1] = ACTIONS(780), - [aux_sym_server_alive_count_max_token1] = ACTIONS(780), - [aux_sym_server_alive_interval_token1] = ACTIONS(780), - [aux_sym_session_type_token1] = ACTIONS(780), - [aux_sym_set_env_token1] = ACTIONS(780), - [aux_sym_stdin_null_token1] = ACTIONS(780), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(780), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(780), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(780), - [aux_sym_syslog_facility_token1] = ACTIONS(780), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(780), - [aux_sym_keep_alive_token1] = ACTIONS(780), - [aux_sym_tag_token1] = ACTIONS(780), - [aux_sym_tunnel_token1] = ACTIONS(782), - [aux_sym_tunnel_device_token1] = ACTIONS(780), - [aux_sym_update_host_keys_token1] = ACTIONS(780), - [aux_sym_use_keychain_token1] = ACTIONS(780), - [aux_sym_use_roaming_token1] = ACTIONS(780), - [aux_sym_user_token1] = ACTIONS(782), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(780), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(780), - [aux_sym_visual_host_key_token1] = ACTIONS(780), - [aux_sym_xauth_location_token1] = ACTIONS(780), + [ts_builtin_sym_end] = ACTIONS(689), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(691), + [aux_sym_match_token1] = ACTIONS(689), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(689), + [aux_sym_address_family_token1] = ACTIONS(689), + [aux_sym_batch_mode_token1] = ACTIONS(689), + [aux_sym_bind_address_token1] = ACTIONS(689), + [aux_sym_bind_interface_token1] = ACTIONS(689), + [aux_sym_canonical_domains_token1] = ACTIONS(689), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(689), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(689), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(689), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(689), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(689), + [aux_sym_certificate_file_token1] = ACTIONS(689), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(689), + [aux_sym_channel_timeout_token1] = ACTIONS(689), + [aux_sym_check_host_ip_token1] = ACTIONS(689), + [aux_sym_ciphers_token1] = ACTIONS(689), + [aux_sym_cipher_token1] = ACTIONS(691), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(689), + [aux_sym_compression_token1] = ACTIONS(689), + [aux_sym_connection_attempts_token1] = ACTIONS(689), + [aux_sym_connect_timeout_token1] = ACTIONS(689), + [aux_sym_control_master_token1] = ACTIONS(689), + [aux_sym_control_path_token1] = ACTIONS(689), + [aux_sym_control_persist_token1] = ACTIONS(689), + [aux_sym_dynamic_forward_token1] = ACTIONS(689), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(689), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(689), + [aux_sym_escape_char_token1] = ACTIONS(689), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(689), + [aux_sym_fingerprint_hash_token1] = ACTIONS(689), + [aux_sym_fork_after_authentication_token1] = ACTIONS(689), + [aux_sym_forward_agent_token1] = ACTIONS(689), + [aux_sym_forward_x11_token1] = ACTIONS(691), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(689), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(689), + [aux_sym_gateway_ports_token1] = ACTIONS(689), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(689), + [aux_sym_gssapi_authentication_token1] = ACTIONS(689), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(689), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(689), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(689), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(689), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(689), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(689), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(689), + [aux_sym_hash_known_hosts_token1] = ACTIONS(689), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(689), + [aux_sym_hostbased_authentication_token1] = ACTIONS(689), + [aux_sym_host_key_algorithms_token1] = ACTIONS(689), + [aux_sym_host_key_alias_token1] = ACTIONS(689), + [aux_sym_hostname_token1] = ACTIONS(689), + [aux_sym_identities_only_token1] = ACTIONS(689), + [aux_sym_identity_agent_token1] = ACTIONS(689), + [aux_sym_identity_file_token1] = ACTIONS(689), + [aux_sym_ignore_unknown_token1] = ACTIONS(689), + [aux_sym_include_token1] = ACTIONS(689), + [aux_sym_ip_qos_token1] = ACTIONS(689), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(689), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(689), + [aux_sym_kex_algorithms_token1] = ACTIONS(689), + [aux_sym_known_hosts_command_token1] = ACTIONS(689), + [aux_sym_local_command_token1] = ACTIONS(689), + [aux_sym_local_forward_token1] = ACTIONS(689), + [aux_sym_log_level_token1] = ACTIONS(689), + [aux_sym_log_verbose_token1] = ACTIONS(689), + [aux_sym_macs_token1] = ACTIONS(689), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(689), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(689), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(689), + [aux_sym_password_authentication_token1] = ACTIONS(689), + [aux_sym_permit_local_command_token1] = ACTIONS(689), + [aux_sym_permit_remote_open_token1] = ACTIONS(689), + [aux_sym_pkcs11_provider_token1] = ACTIONS(689), + [aux_sym_port_token1] = ACTIONS(689), + [aux_sym_preferred_authentications_token1] = ACTIONS(689), + [aux_sym_protocol_token1] = ACTIONS(689), + [aux_sym_proxy_command_token1] = ACTIONS(689), + [aux_sym_proxy_jump_token1] = ACTIONS(689), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(689), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(689), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(689), + [aux_sym_pubkey_authentication_token1] = ACTIONS(689), + [aux_sym_rekey_limit_token1] = ACTIONS(689), + [aux_sym_remote_command_token1] = ACTIONS(689), + [aux_sym_remote_forward_token1] = ACTIONS(689), + [aux_sym_request_tty_token1] = ACTIONS(689), + [aux_sym_required_rsa_size_token1] = ACTIONS(689), + [aux_sym_revoked_host_keys_token1] = ACTIONS(689), + [aux_sym_security_key_provider_token1] = ACTIONS(689), + [aux_sym_send_env_token1] = ACTIONS(689), + [aux_sym_server_alive_count_max_token1] = ACTIONS(689), + [aux_sym_server_alive_interval_token1] = ACTIONS(689), + [aux_sym_session_type_token1] = ACTIONS(689), + [aux_sym_set_env_token1] = ACTIONS(689), + [aux_sym_stdin_null_token1] = ACTIONS(689), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(689), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(689), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(689), + [aux_sym_syslog_facility_token1] = ACTIONS(689), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(689), + [aux_sym_keep_alive_token1] = ACTIONS(689), + [aux_sym_tag_token1] = ACTIONS(689), + [aux_sym_tunnel_token1] = ACTIONS(691), + [aux_sym_tunnel_device_token1] = ACTIONS(689), + [aux_sym_update_host_keys_token1] = ACTIONS(689), + [aux_sym_use_keychain_token1] = ACTIONS(689), + [aux_sym_use_roaming_token1] = ACTIONS(689), + [aux_sym_user_token1] = ACTIONS(691), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(689), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(689), + [aux_sym_visual_host_key_token1] = ACTIONS(689), + [aux_sym_xauth_location_token1] = ACTIONS(689), }, [723] = { - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1016), - [aux_sym_match_token1] = ACTIONS(1014), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1014), - [aux_sym_address_family_token1] = ACTIONS(1014), - [aux_sym_batch_mode_token1] = ACTIONS(1014), - [aux_sym_bind_address_token1] = ACTIONS(1014), - [aux_sym_bind_interface_token1] = ACTIONS(1014), - [aux_sym_canonical_domains_token1] = ACTIONS(1014), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1014), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1014), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1014), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1014), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1014), - [aux_sym_certificate_file_token1] = ACTIONS(1014), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1014), - [aux_sym_channel_timeout_token1] = ACTIONS(1014), - [aux_sym_check_host_ip_token1] = ACTIONS(1014), - [aux_sym_ciphers_token1] = ACTIONS(1014), - [aux_sym_cipher_token1] = ACTIONS(1016), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1014), - [aux_sym_compression_token1] = ACTIONS(1014), - [aux_sym_connection_attempts_token1] = ACTIONS(1014), - [aux_sym_connect_timeout_token1] = ACTIONS(1014), - [aux_sym_control_master_token1] = ACTIONS(1014), - [aux_sym_control_path_token1] = ACTIONS(1014), - [aux_sym_control_persist_token1] = ACTIONS(1014), - [aux_sym_dynamic_forward_token1] = ACTIONS(1014), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1014), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1014), - [aux_sym_escape_char_token1] = ACTIONS(1014), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1014), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1014), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1014), - [aux_sym_forward_agent_token1] = ACTIONS(1014), - [aux_sym_forward_x11_token1] = ACTIONS(1016), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1014), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1014), - [aux_sym_gateway_ports_token1] = ACTIONS(1014), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1014), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1014), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1014), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1014), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1014), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1014), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1014), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1014), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1014), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1014), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1014), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1014), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1014), - [aux_sym_host_key_alias_token1] = ACTIONS(1014), - [aux_sym_hostname_token1] = ACTIONS(1014), - [aux_sym_identities_only_token1] = ACTIONS(1014), - [aux_sym_identity_agent_token1] = ACTIONS(1014), - [aux_sym_identity_file_token1] = ACTIONS(1014), - [aux_sym_ignore_unknown_token1] = ACTIONS(1014), - [aux_sym_include_token1] = ACTIONS(1014), - [aux_sym_ip_qos_token1] = ACTIONS(1014), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1014), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1014), - [aux_sym_kex_algorithms_token1] = ACTIONS(1014), - [aux_sym_known_hosts_command_token1] = ACTIONS(1014), - [aux_sym_local_command_token1] = ACTIONS(1014), - [aux_sym_local_forward_token1] = ACTIONS(1014), - [aux_sym_log_level_token1] = ACTIONS(1014), - [aux_sym_log_verbose_token1] = ACTIONS(1014), - [aux_sym_macs_token1] = ACTIONS(1014), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1014), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1014), - [aux_sym_password_authentication_token1] = ACTIONS(1014), - [aux_sym_permit_local_command_token1] = ACTIONS(1014), - [aux_sym_permit_remote_open_token1] = ACTIONS(1014), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1014), - [aux_sym_port_token1] = ACTIONS(1014), - [aux_sym_preferred_authentications_token1] = ACTIONS(1014), - [aux_sym_protocol_token1] = ACTIONS(1014), - [aux_sym_proxy_command_token1] = ACTIONS(1014), - [aux_sym_proxy_jump_token1] = ACTIONS(1014), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1014), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1014), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1014), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1014), - [aux_sym_rekey_limit_token1] = ACTIONS(1014), - [aux_sym_remote_command_token1] = ACTIONS(1014), - [aux_sym_remote_forward_token1] = ACTIONS(1014), - [aux_sym_request_tty_token1] = ACTIONS(1014), - [aux_sym_required_rsa_size_token1] = ACTIONS(1014), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1014), - [aux_sym_security_key_provider_token1] = ACTIONS(1014), - [aux_sym_send_env_token1] = ACTIONS(1014), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1014), - [aux_sym_server_alive_interval_token1] = ACTIONS(1014), - [aux_sym_session_type_token1] = ACTIONS(1014), - [aux_sym_set_env_token1] = ACTIONS(1014), - [aux_sym_stdin_null_token1] = ACTIONS(1014), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1014), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1014), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1014), - [aux_sym_syslog_facility_token1] = ACTIONS(1014), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1014), - [aux_sym_keep_alive_token1] = ACTIONS(1014), - [aux_sym_tag_token1] = ACTIONS(1014), - [aux_sym_tunnel_token1] = ACTIONS(1016), - [aux_sym_tunnel_device_token1] = ACTIONS(1014), - [aux_sym_update_host_keys_token1] = ACTIONS(1014), - [aux_sym_use_keychain_token1] = ACTIONS(1014), - [aux_sym_use_roaming_token1] = ACTIONS(1014), - [aux_sym_user_token1] = ACTIONS(1016), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1014), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1014), - [aux_sym_visual_host_key_token1] = ACTIONS(1014), - [aux_sym_xauth_location_token1] = ACTIONS(1014), + [ts_builtin_sym_end] = ACTIONS(1689), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1691), + [aux_sym_match_token1] = ACTIONS(1689), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1689), + [aux_sym_address_family_token1] = ACTIONS(1689), + [aux_sym_batch_mode_token1] = ACTIONS(1689), + [aux_sym_bind_address_token1] = ACTIONS(1689), + [aux_sym_bind_interface_token1] = ACTIONS(1689), + [aux_sym_canonical_domains_token1] = ACTIONS(1689), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1689), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1689), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1689), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1689), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1689), + [aux_sym_certificate_file_token1] = ACTIONS(1689), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1689), + [aux_sym_channel_timeout_token1] = ACTIONS(1689), + [aux_sym_check_host_ip_token1] = ACTIONS(1689), + [aux_sym_ciphers_token1] = ACTIONS(1689), + [aux_sym_cipher_token1] = ACTIONS(1691), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1689), + [aux_sym_compression_token1] = ACTIONS(1689), + [aux_sym_connection_attempts_token1] = ACTIONS(1689), + [aux_sym_connect_timeout_token1] = ACTIONS(1689), + [aux_sym_control_master_token1] = ACTIONS(1689), + [aux_sym_control_path_token1] = ACTIONS(1689), + [aux_sym_control_persist_token1] = ACTIONS(1689), + [aux_sym_dynamic_forward_token1] = ACTIONS(1689), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1689), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1689), + [aux_sym_escape_char_token1] = ACTIONS(1689), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1689), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1689), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1689), + [aux_sym_forward_agent_token1] = ACTIONS(1689), + [aux_sym_forward_x11_token1] = ACTIONS(1691), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1689), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1689), + [aux_sym_gateway_ports_token1] = ACTIONS(1689), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1689), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1689), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1689), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1689), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1689), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1689), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1689), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1689), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1689), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1689), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1689), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1689), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1689), + [aux_sym_host_key_alias_token1] = ACTIONS(1689), + [aux_sym_hostname_token1] = ACTIONS(1689), + [aux_sym_identities_only_token1] = ACTIONS(1689), + [aux_sym_identity_agent_token1] = ACTIONS(1689), + [aux_sym_identity_file_token1] = ACTIONS(1689), + [aux_sym_ignore_unknown_token1] = ACTIONS(1689), + [aux_sym_include_token1] = ACTIONS(1689), + [aux_sym_ip_qos_token1] = ACTIONS(1689), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1689), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1689), + [aux_sym_kex_algorithms_token1] = ACTIONS(1689), + [aux_sym_known_hosts_command_token1] = ACTIONS(1689), + [aux_sym_local_command_token1] = ACTIONS(1689), + [aux_sym_local_forward_token1] = ACTIONS(1689), + [aux_sym_log_level_token1] = ACTIONS(1689), + [aux_sym_log_verbose_token1] = ACTIONS(1689), + [aux_sym_macs_token1] = ACTIONS(1689), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1689), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1689), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1689), + [aux_sym_password_authentication_token1] = ACTIONS(1689), + [aux_sym_permit_local_command_token1] = ACTIONS(1689), + [aux_sym_permit_remote_open_token1] = ACTIONS(1689), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1689), + [aux_sym_port_token1] = ACTIONS(1689), + [aux_sym_preferred_authentications_token1] = ACTIONS(1689), + [aux_sym_protocol_token1] = ACTIONS(1689), + [aux_sym_proxy_command_token1] = ACTIONS(1689), + [aux_sym_proxy_jump_token1] = ACTIONS(1689), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1689), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1689), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1689), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1689), + [aux_sym_rekey_limit_token1] = ACTIONS(1689), + [aux_sym_remote_command_token1] = ACTIONS(1689), + [aux_sym_remote_forward_token1] = ACTIONS(1689), + [aux_sym_request_tty_token1] = ACTIONS(1689), + [aux_sym_required_rsa_size_token1] = ACTIONS(1689), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1689), + [aux_sym_security_key_provider_token1] = ACTIONS(1689), + [aux_sym_send_env_token1] = ACTIONS(1689), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1689), + [aux_sym_server_alive_interval_token1] = ACTIONS(1689), + [aux_sym_session_type_token1] = ACTIONS(1689), + [aux_sym_set_env_token1] = ACTIONS(1689), + [aux_sym_stdin_null_token1] = ACTIONS(1689), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1689), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1689), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1689), + [aux_sym_syslog_facility_token1] = ACTIONS(1689), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1689), + [aux_sym_keep_alive_token1] = ACTIONS(1689), + [aux_sym_tag_token1] = ACTIONS(1689), + [aux_sym_tunnel_token1] = ACTIONS(1691), + [aux_sym_tunnel_device_token1] = ACTIONS(1689), + [aux_sym_update_host_keys_token1] = ACTIONS(1689), + [aux_sym_use_keychain_token1] = ACTIONS(1689), + [aux_sym_use_roaming_token1] = ACTIONS(1689), + [aux_sym_user_token1] = ACTIONS(1691), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1689), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1689), + [aux_sym_visual_host_key_token1] = ACTIONS(1689), + [aux_sym_xauth_location_token1] = ACTIONS(1689), }, [724] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1872), - [aux_sym_match_token1] = ACTIONS(1870), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1870), - [aux_sym_address_family_token1] = ACTIONS(1870), - [aux_sym_batch_mode_token1] = ACTIONS(1870), - [aux_sym_bind_address_token1] = ACTIONS(1870), - [aux_sym_bind_interface_token1] = ACTIONS(1870), - [aux_sym_canonical_domains_token1] = ACTIONS(1870), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1870), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1870), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1870), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1870), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1870), - [aux_sym_certificate_file_token1] = ACTIONS(1870), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1870), - [aux_sym_channel_timeout_token1] = ACTIONS(1870), - [aux_sym_check_host_ip_token1] = ACTIONS(1870), - [aux_sym_ciphers_token1] = ACTIONS(1870), - [aux_sym_cipher_token1] = ACTIONS(1872), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1870), - [aux_sym_compression_token1] = ACTIONS(1870), - [aux_sym_connection_attempts_token1] = ACTIONS(1870), - [aux_sym_connect_timeout_token1] = ACTIONS(1870), - [aux_sym_control_master_token1] = ACTIONS(1870), - [aux_sym_control_path_token1] = ACTIONS(1870), - [aux_sym_control_persist_token1] = ACTIONS(1870), - [aux_sym_dynamic_forward_token1] = ACTIONS(1870), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1870), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1870), - [aux_sym_escape_char_token1] = ACTIONS(1870), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1870), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1870), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1870), - [aux_sym_forward_agent_token1] = ACTIONS(1870), - [aux_sym_forward_x11_token1] = ACTIONS(1872), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1870), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1870), - [aux_sym_gateway_ports_token1] = ACTIONS(1870), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1870), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1870), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1870), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1870), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1870), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1870), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1870), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1870), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1870), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1870), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1870), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1870), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1870), - [aux_sym_host_key_alias_token1] = ACTIONS(1870), - [aux_sym_hostname_token1] = ACTIONS(1870), - [aux_sym_identities_only_token1] = ACTIONS(1870), - [aux_sym_identity_agent_token1] = ACTIONS(1870), - [aux_sym_identity_file_token1] = ACTIONS(1870), - [aux_sym_ignore_unknown_token1] = ACTIONS(1870), - [aux_sym_include_token1] = ACTIONS(1870), - [aux_sym_ip_qos_token1] = ACTIONS(1870), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1870), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1870), - [aux_sym_kex_algorithms_token1] = ACTIONS(1870), - [aux_sym_known_hosts_command_token1] = ACTIONS(1870), - [aux_sym_local_command_token1] = ACTIONS(1870), - [aux_sym_local_forward_token1] = ACTIONS(1870), - [aux_sym_log_level_token1] = ACTIONS(1870), - [aux_sym_log_verbose_token1] = ACTIONS(1870), - [aux_sym_macs_token1] = ACTIONS(1870), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1870), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1870), - [aux_sym_password_authentication_token1] = ACTIONS(1870), - [aux_sym_permit_local_command_token1] = ACTIONS(1870), - [aux_sym_permit_remote_open_token1] = ACTIONS(1870), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1870), - [aux_sym_port_token1] = ACTIONS(1870), - [aux_sym_preferred_authentications_token1] = ACTIONS(1870), - [aux_sym_protocol_token1] = ACTIONS(1870), - [aux_sym_proxy_command_token1] = ACTIONS(1870), - [aux_sym_proxy_jump_token1] = ACTIONS(1870), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1870), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1870), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1870), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1870), - [aux_sym_rekey_limit_token1] = ACTIONS(1870), - [aux_sym_remote_command_token1] = ACTIONS(1870), - [aux_sym_remote_forward_token1] = ACTIONS(1870), - [aux_sym_request_tty_token1] = ACTIONS(1870), - [aux_sym_required_rsa_size_token1] = ACTIONS(1870), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1870), - [aux_sym_security_key_provider_token1] = ACTIONS(1870), - [aux_sym_send_env_token1] = ACTIONS(1870), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1870), - [aux_sym_server_alive_interval_token1] = ACTIONS(1870), - [aux_sym_session_type_token1] = ACTIONS(1870), - [aux_sym_set_env_token1] = ACTIONS(1870), - [aux_sym_stdin_null_token1] = ACTIONS(1870), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1870), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1870), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1870), - [aux_sym_syslog_facility_token1] = ACTIONS(1870), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1870), - [aux_sym_keep_alive_token1] = ACTIONS(1870), - [aux_sym_tag_token1] = ACTIONS(1870), - [aux_sym_tunnel_token1] = ACTIONS(1872), - [aux_sym_tunnel_device_token1] = ACTIONS(1870), - [aux_sym_update_host_keys_token1] = ACTIONS(1870), - [aux_sym_use_keychain_token1] = ACTIONS(1870), - [aux_sym_use_roaming_token1] = ACTIONS(1870), - [aux_sym_user_token1] = ACTIONS(1872), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1870), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1870), - [aux_sym_visual_host_key_token1] = ACTIONS(1870), - [aux_sym_xauth_location_token1] = ACTIONS(1870), + [ts_builtin_sym_end] = ACTIONS(1899), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1901), + [aux_sym_match_token1] = ACTIONS(1899), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1899), + [aux_sym_address_family_token1] = ACTIONS(1899), + [aux_sym_batch_mode_token1] = ACTIONS(1899), + [aux_sym_bind_address_token1] = ACTIONS(1899), + [aux_sym_bind_interface_token1] = ACTIONS(1899), + [aux_sym_canonical_domains_token1] = ACTIONS(1899), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1899), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1899), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1899), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1899), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1899), + [aux_sym_certificate_file_token1] = ACTIONS(1899), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1899), + [aux_sym_channel_timeout_token1] = ACTIONS(1899), + [aux_sym_check_host_ip_token1] = ACTIONS(1899), + [aux_sym_ciphers_token1] = ACTIONS(1899), + [aux_sym_cipher_token1] = ACTIONS(1901), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1899), + [aux_sym_compression_token1] = ACTIONS(1899), + [aux_sym_connection_attempts_token1] = ACTIONS(1899), + [aux_sym_connect_timeout_token1] = ACTIONS(1899), + [aux_sym_control_master_token1] = ACTIONS(1899), + [aux_sym_control_path_token1] = ACTIONS(1899), + [aux_sym_control_persist_token1] = ACTIONS(1899), + [aux_sym_dynamic_forward_token1] = ACTIONS(1899), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1899), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1899), + [aux_sym_escape_char_token1] = ACTIONS(1899), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1899), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1899), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1899), + [aux_sym_forward_agent_token1] = ACTIONS(1899), + [aux_sym_forward_x11_token1] = ACTIONS(1901), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1899), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1899), + [aux_sym_gateway_ports_token1] = ACTIONS(1899), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1899), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1899), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1899), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1899), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1899), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1899), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1899), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1899), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1899), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1899), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1899), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1899), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1899), + [aux_sym_host_key_alias_token1] = ACTIONS(1899), + [aux_sym_hostname_token1] = ACTIONS(1899), + [aux_sym_identities_only_token1] = ACTIONS(1899), + [aux_sym_identity_agent_token1] = ACTIONS(1899), + [aux_sym_identity_file_token1] = ACTIONS(1899), + [aux_sym_ignore_unknown_token1] = ACTIONS(1899), + [aux_sym_include_token1] = ACTIONS(1899), + [aux_sym_ip_qos_token1] = ACTIONS(1899), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1899), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1899), + [aux_sym_kex_algorithms_token1] = ACTIONS(1899), + [aux_sym_known_hosts_command_token1] = ACTIONS(1899), + [aux_sym_local_command_token1] = ACTIONS(1899), + [aux_sym_local_forward_token1] = ACTIONS(1899), + [aux_sym_log_level_token1] = ACTIONS(1899), + [aux_sym_log_verbose_token1] = ACTIONS(1899), + [aux_sym_macs_token1] = ACTIONS(1899), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1899), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1899), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1899), + [aux_sym_password_authentication_token1] = ACTIONS(1899), + [aux_sym_permit_local_command_token1] = ACTIONS(1899), + [aux_sym_permit_remote_open_token1] = ACTIONS(1899), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1899), + [aux_sym_port_token1] = ACTIONS(1899), + [aux_sym_preferred_authentications_token1] = ACTIONS(1899), + [aux_sym_protocol_token1] = ACTIONS(1899), + [aux_sym_proxy_command_token1] = ACTIONS(1899), + [aux_sym_proxy_jump_token1] = ACTIONS(1899), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1899), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1899), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1899), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1899), + [aux_sym_rekey_limit_token1] = ACTIONS(1899), + [aux_sym_remote_command_token1] = ACTIONS(1899), + [aux_sym_remote_forward_token1] = ACTIONS(1899), + [aux_sym_request_tty_token1] = ACTIONS(1899), + [aux_sym_required_rsa_size_token1] = ACTIONS(1899), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1899), + [aux_sym_security_key_provider_token1] = ACTIONS(1899), + [aux_sym_send_env_token1] = ACTIONS(1899), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1899), + [aux_sym_server_alive_interval_token1] = ACTIONS(1899), + [aux_sym_session_type_token1] = ACTIONS(1899), + [aux_sym_set_env_token1] = ACTIONS(1899), + [aux_sym_stdin_null_token1] = ACTIONS(1899), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1899), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1899), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1899), + [aux_sym_syslog_facility_token1] = ACTIONS(1899), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1899), + [aux_sym_keep_alive_token1] = ACTIONS(1899), + [aux_sym_tag_token1] = ACTIONS(1899), + [aux_sym_tunnel_token1] = ACTIONS(1901), + [aux_sym_tunnel_device_token1] = ACTIONS(1899), + [aux_sym_update_host_keys_token1] = ACTIONS(1899), + [aux_sym_use_keychain_token1] = ACTIONS(1899), + [aux_sym_use_roaming_token1] = ACTIONS(1899), + [aux_sym_user_token1] = ACTIONS(1901), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1899), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1899), + [aux_sym_visual_host_key_token1] = ACTIONS(1899), + [aux_sym_xauth_location_token1] = ACTIONS(1899), }, [725] = { - [ts_builtin_sym_end] = ACTIONS(786), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(788), - [aux_sym_match_token1] = ACTIONS(786), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(786), - [aux_sym_address_family_token1] = ACTIONS(786), - [aux_sym_batch_mode_token1] = ACTIONS(786), - [aux_sym_bind_address_token1] = ACTIONS(786), - [aux_sym_bind_interface_token1] = ACTIONS(786), - [aux_sym_canonical_domains_token1] = ACTIONS(786), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(786), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(786), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(786), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(786), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(786), - [aux_sym_certificate_file_token1] = ACTIONS(786), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(786), - [aux_sym_channel_timeout_token1] = ACTIONS(786), - [aux_sym_check_host_ip_token1] = ACTIONS(786), - [aux_sym_ciphers_token1] = ACTIONS(786), - [aux_sym_cipher_token1] = ACTIONS(788), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(786), - [aux_sym_compression_token1] = ACTIONS(786), - [aux_sym_connection_attempts_token1] = ACTIONS(786), - [aux_sym_connect_timeout_token1] = ACTIONS(786), - [aux_sym_control_master_token1] = ACTIONS(786), - [aux_sym_control_path_token1] = ACTIONS(786), - [aux_sym_control_persist_token1] = ACTIONS(786), - [aux_sym_dynamic_forward_token1] = ACTIONS(786), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(786), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(786), - [aux_sym_escape_char_token1] = ACTIONS(786), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(786), - [aux_sym_fingerprint_hash_token1] = ACTIONS(786), - [aux_sym_fork_after_authentication_token1] = ACTIONS(786), - [aux_sym_forward_agent_token1] = ACTIONS(786), - [aux_sym_forward_x11_token1] = ACTIONS(788), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(786), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(786), - [aux_sym_gateway_ports_token1] = ACTIONS(786), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(786), - [aux_sym_gssapi_authentication_token1] = ACTIONS(786), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(786), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(786), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(786), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(786), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(786), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(786), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(786), - [aux_sym_hash_known_hosts_token1] = ACTIONS(786), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(786), - [aux_sym_hostbased_authentication_token1] = ACTIONS(786), - [aux_sym_host_key_algorithms_token1] = ACTIONS(786), - [aux_sym_host_key_alias_token1] = ACTIONS(786), - [aux_sym_hostname_token1] = ACTIONS(786), - [aux_sym_identities_only_token1] = ACTIONS(786), - [aux_sym_identity_agent_token1] = ACTIONS(786), - [aux_sym_identity_file_token1] = ACTIONS(786), - [aux_sym_ignore_unknown_token1] = ACTIONS(786), - [aux_sym_include_token1] = ACTIONS(786), - [aux_sym_ip_qos_token1] = ACTIONS(786), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(786), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(786), - [aux_sym_kex_algorithms_token1] = ACTIONS(786), - [aux_sym_known_hosts_command_token1] = ACTIONS(786), - [aux_sym_local_command_token1] = ACTIONS(786), - [aux_sym_local_forward_token1] = ACTIONS(786), - [aux_sym_log_level_token1] = ACTIONS(786), - [aux_sym_log_verbose_token1] = ACTIONS(786), - [aux_sym_macs_token1] = ACTIONS(786), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(786), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(786), - [aux_sym_password_authentication_token1] = ACTIONS(786), - [aux_sym_permit_local_command_token1] = ACTIONS(786), - [aux_sym_permit_remote_open_token1] = ACTIONS(786), - [aux_sym_pkcs11_provider_token1] = ACTIONS(786), - [aux_sym_port_token1] = ACTIONS(786), - [aux_sym_preferred_authentications_token1] = ACTIONS(786), - [aux_sym_protocol_token1] = ACTIONS(786), - [aux_sym_proxy_command_token1] = ACTIONS(786), - [aux_sym_proxy_jump_token1] = ACTIONS(786), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(786), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(786), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(786), - [aux_sym_pubkey_authentication_token1] = ACTIONS(786), - [aux_sym_rekey_limit_token1] = ACTIONS(786), - [aux_sym_remote_command_token1] = ACTIONS(786), - [aux_sym_remote_forward_token1] = ACTIONS(786), - [aux_sym_request_tty_token1] = ACTIONS(786), - [aux_sym_required_rsa_size_token1] = ACTIONS(786), - [aux_sym_revoked_host_keys_token1] = ACTIONS(786), - [aux_sym_security_key_provider_token1] = ACTIONS(786), - [aux_sym_send_env_token1] = ACTIONS(786), - [aux_sym_server_alive_count_max_token1] = ACTIONS(786), - [aux_sym_server_alive_interval_token1] = ACTIONS(786), - [aux_sym_session_type_token1] = ACTIONS(786), - [aux_sym_set_env_token1] = ACTIONS(786), - [aux_sym_stdin_null_token1] = ACTIONS(786), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(786), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(786), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(786), - [aux_sym_syslog_facility_token1] = ACTIONS(786), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(786), - [aux_sym_keep_alive_token1] = ACTIONS(786), - [aux_sym_tag_token1] = ACTIONS(786), - [aux_sym_tunnel_token1] = ACTIONS(788), - [aux_sym_tunnel_device_token1] = ACTIONS(786), - [aux_sym_update_host_keys_token1] = ACTIONS(786), - [aux_sym_use_keychain_token1] = ACTIONS(786), - [aux_sym_use_roaming_token1] = ACTIONS(786), - [aux_sym_user_token1] = ACTIONS(788), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(786), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(786), - [aux_sym_visual_host_key_token1] = ACTIONS(786), - [aux_sym_xauth_location_token1] = ACTIONS(786), + [ts_builtin_sym_end] = ACTIONS(695), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(697), + [aux_sym_match_token1] = ACTIONS(695), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(695), + [aux_sym_address_family_token1] = ACTIONS(695), + [aux_sym_batch_mode_token1] = ACTIONS(695), + [aux_sym_bind_address_token1] = ACTIONS(695), + [aux_sym_bind_interface_token1] = ACTIONS(695), + [aux_sym_canonical_domains_token1] = ACTIONS(695), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(695), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(695), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(695), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(695), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(695), + [aux_sym_certificate_file_token1] = ACTIONS(695), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(695), + [aux_sym_channel_timeout_token1] = ACTIONS(695), + [aux_sym_check_host_ip_token1] = ACTIONS(695), + [aux_sym_ciphers_token1] = ACTIONS(695), + [aux_sym_cipher_token1] = ACTIONS(697), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(695), + [aux_sym_compression_token1] = ACTIONS(695), + [aux_sym_connection_attempts_token1] = ACTIONS(695), + [aux_sym_connect_timeout_token1] = ACTIONS(695), + [aux_sym_control_master_token1] = ACTIONS(695), + [aux_sym_control_path_token1] = ACTIONS(695), + [aux_sym_control_persist_token1] = ACTIONS(695), + [aux_sym_dynamic_forward_token1] = ACTIONS(695), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(695), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(695), + [aux_sym_escape_char_token1] = ACTIONS(695), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(695), + [aux_sym_fingerprint_hash_token1] = ACTIONS(695), + [aux_sym_fork_after_authentication_token1] = ACTIONS(695), + [aux_sym_forward_agent_token1] = ACTIONS(695), + [aux_sym_forward_x11_token1] = ACTIONS(697), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(695), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(695), + [aux_sym_gateway_ports_token1] = ACTIONS(695), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(695), + [aux_sym_gssapi_authentication_token1] = ACTIONS(695), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(695), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(695), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(695), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(695), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(695), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(695), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(695), + [aux_sym_hash_known_hosts_token1] = ACTIONS(695), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(695), + [aux_sym_hostbased_authentication_token1] = ACTIONS(695), + [aux_sym_host_key_algorithms_token1] = ACTIONS(695), + [aux_sym_host_key_alias_token1] = ACTIONS(695), + [aux_sym_hostname_token1] = ACTIONS(695), + [aux_sym_identities_only_token1] = ACTIONS(695), + [aux_sym_identity_agent_token1] = ACTIONS(695), + [aux_sym_identity_file_token1] = ACTIONS(695), + [aux_sym_ignore_unknown_token1] = ACTIONS(695), + [aux_sym_include_token1] = ACTIONS(695), + [aux_sym_ip_qos_token1] = ACTIONS(695), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(695), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(695), + [aux_sym_kex_algorithms_token1] = ACTIONS(695), + [aux_sym_known_hosts_command_token1] = ACTIONS(695), + [aux_sym_local_command_token1] = ACTIONS(695), + [aux_sym_local_forward_token1] = ACTIONS(695), + [aux_sym_log_level_token1] = ACTIONS(695), + [aux_sym_log_verbose_token1] = ACTIONS(695), + [aux_sym_macs_token1] = ACTIONS(695), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(695), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(695), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(695), + [aux_sym_password_authentication_token1] = ACTIONS(695), + [aux_sym_permit_local_command_token1] = ACTIONS(695), + [aux_sym_permit_remote_open_token1] = ACTIONS(695), + [aux_sym_pkcs11_provider_token1] = ACTIONS(695), + [aux_sym_port_token1] = ACTIONS(695), + [aux_sym_preferred_authentications_token1] = ACTIONS(695), + [aux_sym_protocol_token1] = ACTIONS(695), + [aux_sym_proxy_command_token1] = ACTIONS(695), + [aux_sym_proxy_jump_token1] = ACTIONS(695), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(695), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(695), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(695), + [aux_sym_pubkey_authentication_token1] = ACTIONS(695), + [aux_sym_rekey_limit_token1] = ACTIONS(695), + [aux_sym_remote_command_token1] = ACTIONS(695), + [aux_sym_remote_forward_token1] = ACTIONS(695), + [aux_sym_request_tty_token1] = ACTIONS(695), + [aux_sym_required_rsa_size_token1] = ACTIONS(695), + [aux_sym_revoked_host_keys_token1] = ACTIONS(695), + [aux_sym_security_key_provider_token1] = ACTIONS(695), + [aux_sym_send_env_token1] = ACTIONS(695), + [aux_sym_server_alive_count_max_token1] = ACTIONS(695), + [aux_sym_server_alive_interval_token1] = ACTIONS(695), + [aux_sym_session_type_token1] = ACTIONS(695), + [aux_sym_set_env_token1] = ACTIONS(695), + [aux_sym_stdin_null_token1] = ACTIONS(695), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(695), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(695), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(695), + [aux_sym_syslog_facility_token1] = ACTIONS(695), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(695), + [aux_sym_keep_alive_token1] = ACTIONS(695), + [aux_sym_tag_token1] = ACTIONS(695), + [aux_sym_tunnel_token1] = ACTIONS(697), + [aux_sym_tunnel_device_token1] = ACTIONS(695), + [aux_sym_update_host_keys_token1] = ACTIONS(695), + [aux_sym_use_keychain_token1] = ACTIONS(695), + [aux_sym_use_roaming_token1] = ACTIONS(695), + [aux_sym_user_token1] = ACTIONS(697), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(695), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(695), + [aux_sym_visual_host_key_token1] = ACTIONS(695), + [aux_sym_xauth_location_token1] = ACTIONS(695), }, [726] = { - [ts_builtin_sym_end] = ACTIONS(792), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(794), - [aux_sym_match_token1] = ACTIONS(792), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(792), - [aux_sym_address_family_token1] = ACTIONS(792), - [aux_sym_batch_mode_token1] = ACTIONS(792), - [aux_sym_bind_address_token1] = ACTIONS(792), - [aux_sym_bind_interface_token1] = ACTIONS(792), - [aux_sym_canonical_domains_token1] = ACTIONS(792), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(792), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(792), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(792), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(792), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(792), - [aux_sym_certificate_file_token1] = ACTIONS(792), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(792), - [aux_sym_channel_timeout_token1] = ACTIONS(792), - [aux_sym_check_host_ip_token1] = ACTIONS(792), - [aux_sym_ciphers_token1] = ACTIONS(792), - [aux_sym_cipher_token1] = ACTIONS(794), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(792), - [aux_sym_compression_token1] = ACTIONS(792), - [aux_sym_connection_attempts_token1] = ACTIONS(792), - [aux_sym_connect_timeout_token1] = ACTIONS(792), - [aux_sym_control_master_token1] = ACTIONS(792), - [aux_sym_control_path_token1] = ACTIONS(792), - [aux_sym_control_persist_token1] = ACTIONS(792), - [aux_sym_dynamic_forward_token1] = ACTIONS(792), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(792), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(792), - [aux_sym_escape_char_token1] = ACTIONS(792), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(792), - [aux_sym_fingerprint_hash_token1] = ACTIONS(792), - [aux_sym_fork_after_authentication_token1] = ACTIONS(792), - [aux_sym_forward_agent_token1] = ACTIONS(792), - [aux_sym_forward_x11_token1] = ACTIONS(794), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(792), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(792), - [aux_sym_gateway_ports_token1] = ACTIONS(792), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(792), - [aux_sym_gssapi_authentication_token1] = ACTIONS(792), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(792), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(792), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(792), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(792), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(792), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(792), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(792), - [aux_sym_hash_known_hosts_token1] = ACTIONS(792), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(792), - [aux_sym_hostbased_authentication_token1] = ACTIONS(792), - [aux_sym_host_key_algorithms_token1] = ACTIONS(792), - [aux_sym_host_key_alias_token1] = ACTIONS(792), - [aux_sym_hostname_token1] = ACTIONS(792), - [aux_sym_identities_only_token1] = ACTIONS(792), - [aux_sym_identity_agent_token1] = ACTIONS(792), - [aux_sym_identity_file_token1] = ACTIONS(792), - [aux_sym_ignore_unknown_token1] = ACTIONS(792), - [aux_sym_include_token1] = ACTIONS(792), - [aux_sym_ip_qos_token1] = ACTIONS(792), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(792), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(792), - [aux_sym_kex_algorithms_token1] = ACTIONS(792), - [aux_sym_known_hosts_command_token1] = ACTIONS(792), - [aux_sym_local_command_token1] = ACTIONS(792), - [aux_sym_local_forward_token1] = ACTIONS(792), - [aux_sym_log_level_token1] = ACTIONS(792), - [aux_sym_log_verbose_token1] = ACTIONS(792), - [aux_sym_macs_token1] = ACTIONS(792), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(792), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(792), - [aux_sym_password_authentication_token1] = ACTIONS(792), - [aux_sym_permit_local_command_token1] = ACTIONS(792), - [aux_sym_permit_remote_open_token1] = ACTIONS(792), - [aux_sym_pkcs11_provider_token1] = ACTIONS(792), - [aux_sym_port_token1] = ACTIONS(792), - [aux_sym_preferred_authentications_token1] = ACTIONS(792), - [aux_sym_protocol_token1] = ACTIONS(792), - [aux_sym_proxy_command_token1] = ACTIONS(792), - [aux_sym_proxy_jump_token1] = ACTIONS(792), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(792), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(792), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(792), - [aux_sym_pubkey_authentication_token1] = ACTIONS(792), - [aux_sym_rekey_limit_token1] = ACTIONS(792), - [aux_sym_remote_command_token1] = ACTIONS(792), - [aux_sym_remote_forward_token1] = ACTIONS(792), - [aux_sym_request_tty_token1] = ACTIONS(792), - [aux_sym_required_rsa_size_token1] = ACTIONS(792), - [aux_sym_revoked_host_keys_token1] = ACTIONS(792), - [aux_sym_security_key_provider_token1] = ACTIONS(792), - [aux_sym_send_env_token1] = ACTIONS(792), - [aux_sym_server_alive_count_max_token1] = ACTIONS(792), - [aux_sym_server_alive_interval_token1] = ACTIONS(792), - [aux_sym_session_type_token1] = ACTIONS(792), - [aux_sym_set_env_token1] = ACTIONS(792), - [aux_sym_stdin_null_token1] = ACTIONS(792), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(792), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(792), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(792), - [aux_sym_syslog_facility_token1] = ACTIONS(792), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(792), - [aux_sym_keep_alive_token1] = ACTIONS(792), - [aux_sym_tag_token1] = ACTIONS(792), - [aux_sym_tunnel_token1] = ACTIONS(794), - [aux_sym_tunnel_device_token1] = ACTIONS(792), - [aux_sym_update_host_keys_token1] = ACTIONS(792), - [aux_sym_use_keychain_token1] = ACTIONS(792), - [aux_sym_use_roaming_token1] = ACTIONS(792), - [aux_sym_user_token1] = ACTIONS(794), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(792), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(792), - [aux_sym_visual_host_key_token1] = ACTIONS(792), - [aux_sym_xauth_location_token1] = ACTIONS(792), + [ts_builtin_sym_end] = ACTIONS(959), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(961), + [aux_sym_match_token1] = ACTIONS(959), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(959), + [aux_sym_address_family_token1] = ACTIONS(959), + [aux_sym_batch_mode_token1] = ACTIONS(959), + [aux_sym_bind_address_token1] = ACTIONS(959), + [aux_sym_bind_interface_token1] = ACTIONS(959), + [aux_sym_canonical_domains_token1] = ACTIONS(959), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(959), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(959), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(959), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(959), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(959), + [aux_sym_certificate_file_token1] = ACTIONS(959), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(959), + [aux_sym_channel_timeout_token1] = ACTIONS(959), + [aux_sym_check_host_ip_token1] = ACTIONS(959), + [aux_sym_ciphers_token1] = ACTIONS(959), + [aux_sym_cipher_token1] = ACTIONS(961), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(959), + [aux_sym_compression_token1] = ACTIONS(959), + [aux_sym_connection_attempts_token1] = ACTIONS(959), + [aux_sym_connect_timeout_token1] = ACTIONS(959), + [aux_sym_control_master_token1] = ACTIONS(959), + [aux_sym_control_path_token1] = ACTIONS(959), + [aux_sym_control_persist_token1] = ACTIONS(959), + [aux_sym_dynamic_forward_token1] = ACTIONS(959), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(959), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(959), + [aux_sym_escape_char_token1] = ACTIONS(959), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(959), + [aux_sym_fingerprint_hash_token1] = ACTIONS(959), + [aux_sym_fork_after_authentication_token1] = ACTIONS(959), + [aux_sym_forward_agent_token1] = ACTIONS(959), + [aux_sym_forward_x11_token1] = ACTIONS(961), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(959), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(959), + [aux_sym_gateway_ports_token1] = ACTIONS(959), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(959), + [aux_sym_gssapi_authentication_token1] = ACTIONS(959), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(959), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(959), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(959), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(959), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(959), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(959), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(959), + [aux_sym_hash_known_hosts_token1] = ACTIONS(959), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(959), + [aux_sym_hostbased_authentication_token1] = ACTIONS(959), + [aux_sym_host_key_algorithms_token1] = ACTIONS(959), + [aux_sym_host_key_alias_token1] = ACTIONS(959), + [aux_sym_hostname_token1] = ACTIONS(959), + [aux_sym_identities_only_token1] = ACTIONS(959), + [aux_sym_identity_agent_token1] = ACTIONS(959), + [aux_sym_identity_file_token1] = ACTIONS(959), + [aux_sym_ignore_unknown_token1] = ACTIONS(959), + [aux_sym_include_token1] = ACTIONS(959), + [aux_sym_ip_qos_token1] = ACTIONS(959), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(959), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(959), + [aux_sym_kex_algorithms_token1] = ACTIONS(959), + [aux_sym_known_hosts_command_token1] = ACTIONS(959), + [aux_sym_local_command_token1] = ACTIONS(959), + [aux_sym_local_forward_token1] = ACTIONS(959), + [aux_sym_log_level_token1] = ACTIONS(959), + [aux_sym_log_verbose_token1] = ACTIONS(959), + [aux_sym_macs_token1] = ACTIONS(959), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(959), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(959), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(959), + [aux_sym_password_authentication_token1] = ACTIONS(959), + [aux_sym_permit_local_command_token1] = ACTIONS(959), + [aux_sym_permit_remote_open_token1] = ACTIONS(959), + [aux_sym_pkcs11_provider_token1] = ACTIONS(959), + [aux_sym_port_token1] = ACTIONS(959), + [aux_sym_preferred_authentications_token1] = ACTIONS(959), + [aux_sym_protocol_token1] = ACTIONS(959), + [aux_sym_proxy_command_token1] = ACTIONS(959), + [aux_sym_proxy_jump_token1] = ACTIONS(959), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(959), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(959), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(959), + [aux_sym_pubkey_authentication_token1] = ACTIONS(959), + [aux_sym_rekey_limit_token1] = ACTIONS(959), + [aux_sym_remote_command_token1] = ACTIONS(959), + [aux_sym_remote_forward_token1] = ACTIONS(959), + [aux_sym_request_tty_token1] = ACTIONS(959), + [aux_sym_required_rsa_size_token1] = ACTIONS(959), + [aux_sym_revoked_host_keys_token1] = ACTIONS(959), + [aux_sym_security_key_provider_token1] = ACTIONS(959), + [aux_sym_send_env_token1] = ACTIONS(959), + [aux_sym_server_alive_count_max_token1] = ACTIONS(959), + [aux_sym_server_alive_interval_token1] = ACTIONS(959), + [aux_sym_session_type_token1] = ACTIONS(959), + [aux_sym_set_env_token1] = ACTIONS(959), + [aux_sym_stdin_null_token1] = ACTIONS(959), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(959), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(959), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(959), + [aux_sym_syslog_facility_token1] = ACTIONS(959), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(959), + [aux_sym_keep_alive_token1] = ACTIONS(959), + [aux_sym_tag_token1] = ACTIONS(959), + [aux_sym_tunnel_token1] = ACTIONS(961), + [aux_sym_tunnel_device_token1] = ACTIONS(959), + [aux_sym_update_host_keys_token1] = ACTIONS(959), + [aux_sym_use_keychain_token1] = ACTIONS(959), + [aux_sym_use_roaming_token1] = ACTIONS(959), + [aux_sym_user_token1] = ACTIONS(961), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(959), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(959), + [aux_sym_visual_host_key_token1] = ACTIONS(959), + [aux_sym_xauth_location_token1] = ACTIONS(959), }, [727] = { - [ts_builtin_sym_end] = ACTIONS(1864), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1866), - [aux_sym_match_token1] = ACTIONS(1864), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1864), - [aux_sym_address_family_token1] = ACTIONS(1864), - [aux_sym_batch_mode_token1] = ACTIONS(1864), - [aux_sym_bind_address_token1] = ACTIONS(1864), - [aux_sym_bind_interface_token1] = ACTIONS(1864), - [aux_sym_canonical_domains_token1] = ACTIONS(1864), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1864), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1864), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1864), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1864), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1864), - [aux_sym_certificate_file_token1] = ACTIONS(1864), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1864), - [aux_sym_channel_timeout_token1] = ACTIONS(1864), - [aux_sym_check_host_ip_token1] = ACTIONS(1864), - [aux_sym_ciphers_token1] = ACTIONS(1864), - [aux_sym_cipher_token1] = ACTIONS(1866), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1864), - [aux_sym_compression_token1] = ACTIONS(1864), - [aux_sym_connection_attempts_token1] = ACTIONS(1864), - [aux_sym_connect_timeout_token1] = ACTIONS(1864), - [aux_sym_control_master_token1] = ACTIONS(1864), - [aux_sym_control_path_token1] = ACTIONS(1864), - [aux_sym_control_persist_token1] = ACTIONS(1864), - [aux_sym_dynamic_forward_token1] = ACTIONS(1864), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1864), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1864), - [aux_sym_escape_char_token1] = ACTIONS(1864), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1864), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1864), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1864), - [aux_sym_forward_agent_token1] = ACTIONS(1864), - [aux_sym_forward_x11_token1] = ACTIONS(1866), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1864), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1864), - [aux_sym_gateway_ports_token1] = ACTIONS(1864), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1864), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1864), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1864), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1864), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1864), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1864), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1864), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1864), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1864), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1864), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1864), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1864), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1864), - [aux_sym_host_key_alias_token1] = ACTIONS(1864), - [aux_sym_hostname_token1] = ACTIONS(1864), - [aux_sym_identities_only_token1] = ACTIONS(1864), - [aux_sym_identity_agent_token1] = ACTIONS(1864), - [aux_sym_identity_file_token1] = ACTIONS(1864), - [aux_sym_ignore_unknown_token1] = ACTIONS(1864), - [aux_sym_include_token1] = ACTIONS(1864), - [aux_sym_ip_qos_token1] = ACTIONS(1864), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1864), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1864), - [aux_sym_kex_algorithms_token1] = ACTIONS(1864), - [aux_sym_known_hosts_command_token1] = ACTIONS(1864), - [aux_sym_local_command_token1] = ACTIONS(1864), - [aux_sym_local_forward_token1] = ACTIONS(1864), - [aux_sym_log_level_token1] = ACTIONS(1864), - [aux_sym_log_verbose_token1] = ACTIONS(1864), - [aux_sym_macs_token1] = ACTIONS(1864), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1864), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1864), - [aux_sym_password_authentication_token1] = ACTIONS(1864), - [aux_sym_permit_local_command_token1] = ACTIONS(1864), - [aux_sym_permit_remote_open_token1] = ACTIONS(1864), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1864), - [aux_sym_port_token1] = ACTIONS(1864), - [aux_sym_preferred_authentications_token1] = ACTIONS(1864), - [aux_sym_protocol_token1] = ACTIONS(1864), - [aux_sym_proxy_command_token1] = ACTIONS(1864), - [aux_sym_proxy_jump_token1] = ACTIONS(1864), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1864), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1864), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1864), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1864), - [aux_sym_rekey_limit_token1] = ACTIONS(1864), - [aux_sym_remote_command_token1] = ACTIONS(1864), - [aux_sym_remote_forward_token1] = ACTIONS(1864), - [aux_sym_request_tty_token1] = ACTIONS(1864), - [aux_sym_required_rsa_size_token1] = ACTIONS(1864), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1864), - [aux_sym_security_key_provider_token1] = ACTIONS(1864), - [aux_sym_send_env_token1] = ACTIONS(1864), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1864), - [aux_sym_server_alive_interval_token1] = ACTIONS(1864), - [aux_sym_session_type_token1] = ACTIONS(1864), - [aux_sym_set_env_token1] = ACTIONS(1864), - [aux_sym_stdin_null_token1] = ACTIONS(1864), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1864), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1864), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1864), - [aux_sym_syslog_facility_token1] = ACTIONS(1864), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1864), - [aux_sym_keep_alive_token1] = ACTIONS(1864), - [aux_sym_tag_token1] = ACTIONS(1864), - [aux_sym_tunnel_token1] = ACTIONS(1866), - [aux_sym_tunnel_device_token1] = ACTIONS(1864), - [aux_sym_update_host_keys_token1] = ACTIONS(1864), - [aux_sym_use_keychain_token1] = ACTIONS(1864), - [aux_sym_use_roaming_token1] = ACTIONS(1864), - [aux_sym_user_token1] = ACTIONS(1866), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1864), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1864), - [aux_sym_visual_host_key_token1] = ACTIONS(1864), - [aux_sym_xauth_location_token1] = ACTIONS(1864), + [ts_builtin_sym_end] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1895), + [aux_sym_match_token1] = ACTIONS(1893), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1893), + [aux_sym_address_family_token1] = ACTIONS(1893), + [aux_sym_batch_mode_token1] = ACTIONS(1893), + [aux_sym_bind_address_token1] = ACTIONS(1893), + [aux_sym_bind_interface_token1] = ACTIONS(1893), + [aux_sym_canonical_domains_token1] = ACTIONS(1893), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1893), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1893), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1893), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1893), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1893), + [aux_sym_certificate_file_token1] = ACTIONS(1893), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1893), + [aux_sym_channel_timeout_token1] = ACTIONS(1893), + [aux_sym_check_host_ip_token1] = ACTIONS(1893), + [aux_sym_ciphers_token1] = ACTIONS(1893), + [aux_sym_cipher_token1] = ACTIONS(1895), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1893), + [aux_sym_compression_token1] = ACTIONS(1893), + [aux_sym_connection_attempts_token1] = ACTIONS(1893), + [aux_sym_connect_timeout_token1] = ACTIONS(1893), + [aux_sym_control_master_token1] = ACTIONS(1893), + [aux_sym_control_path_token1] = ACTIONS(1893), + [aux_sym_control_persist_token1] = ACTIONS(1893), + [aux_sym_dynamic_forward_token1] = ACTIONS(1893), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1893), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1893), + [aux_sym_escape_char_token1] = ACTIONS(1893), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1893), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1893), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1893), + [aux_sym_forward_agent_token1] = ACTIONS(1893), + [aux_sym_forward_x11_token1] = ACTIONS(1895), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1893), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1893), + [aux_sym_gateway_ports_token1] = ACTIONS(1893), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1893), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1893), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1893), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1893), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1893), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1893), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1893), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1893), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1893), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1893), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1893), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1893), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1893), + [aux_sym_host_key_alias_token1] = ACTIONS(1893), + [aux_sym_hostname_token1] = ACTIONS(1893), + [aux_sym_identities_only_token1] = ACTIONS(1893), + [aux_sym_identity_agent_token1] = ACTIONS(1893), + [aux_sym_identity_file_token1] = ACTIONS(1893), + [aux_sym_ignore_unknown_token1] = ACTIONS(1893), + [aux_sym_include_token1] = ACTIONS(1893), + [aux_sym_ip_qos_token1] = ACTIONS(1893), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1893), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1893), + [aux_sym_kex_algorithms_token1] = ACTIONS(1893), + [aux_sym_known_hosts_command_token1] = ACTIONS(1893), + [aux_sym_local_command_token1] = ACTIONS(1893), + [aux_sym_local_forward_token1] = ACTIONS(1893), + [aux_sym_log_level_token1] = ACTIONS(1893), + [aux_sym_log_verbose_token1] = ACTIONS(1893), + [aux_sym_macs_token1] = ACTIONS(1893), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1893), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1893), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1893), + [aux_sym_password_authentication_token1] = ACTIONS(1893), + [aux_sym_permit_local_command_token1] = ACTIONS(1893), + [aux_sym_permit_remote_open_token1] = ACTIONS(1893), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1893), + [aux_sym_port_token1] = ACTIONS(1893), + [aux_sym_preferred_authentications_token1] = ACTIONS(1893), + [aux_sym_protocol_token1] = ACTIONS(1893), + [aux_sym_proxy_command_token1] = ACTIONS(1893), + [aux_sym_proxy_jump_token1] = ACTIONS(1893), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1893), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1893), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1893), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1893), + [aux_sym_rekey_limit_token1] = ACTIONS(1893), + [aux_sym_remote_command_token1] = ACTIONS(1893), + [aux_sym_remote_forward_token1] = ACTIONS(1893), + [aux_sym_request_tty_token1] = ACTIONS(1893), + [aux_sym_required_rsa_size_token1] = ACTIONS(1893), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1893), + [aux_sym_security_key_provider_token1] = ACTIONS(1893), + [aux_sym_send_env_token1] = ACTIONS(1893), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1893), + [aux_sym_server_alive_interval_token1] = ACTIONS(1893), + [aux_sym_session_type_token1] = ACTIONS(1893), + [aux_sym_set_env_token1] = ACTIONS(1893), + [aux_sym_stdin_null_token1] = ACTIONS(1893), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1893), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1893), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1893), + [aux_sym_syslog_facility_token1] = ACTIONS(1893), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1893), + [aux_sym_keep_alive_token1] = ACTIONS(1893), + [aux_sym_tag_token1] = ACTIONS(1893), + [aux_sym_tunnel_token1] = ACTIONS(1895), + [aux_sym_tunnel_device_token1] = ACTIONS(1893), + [aux_sym_update_host_keys_token1] = ACTIONS(1893), + [aux_sym_use_keychain_token1] = ACTIONS(1893), + [aux_sym_use_roaming_token1] = ACTIONS(1893), + [aux_sym_user_token1] = ACTIONS(1895), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1893), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1893), + [aux_sym_visual_host_key_token1] = ACTIONS(1893), + [aux_sym_xauth_location_token1] = ACTIONS(1893), }, [728] = { - [ts_builtin_sym_end] = ACTIONS(1656), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1658), - [aux_sym_match_token1] = ACTIONS(1656), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1656), - [aux_sym_address_family_token1] = ACTIONS(1656), - [aux_sym_batch_mode_token1] = ACTIONS(1656), - [aux_sym_bind_address_token1] = ACTIONS(1656), - [aux_sym_bind_interface_token1] = ACTIONS(1656), - [aux_sym_canonical_domains_token1] = ACTIONS(1656), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1656), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1656), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1656), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1656), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1656), - [aux_sym_certificate_file_token1] = ACTIONS(1656), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1656), - [aux_sym_channel_timeout_token1] = ACTIONS(1656), - [aux_sym_check_host_ip_token1] = ACTIONS(1656), - [aux_sym_ciphers_token1] = ACTIONS(1656), - [aux_sym_cipher_token1] = ACTIONS(1658), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1656), - [aux_sym_compression_token1] = ACTIONS(1656), - [aux_sym_connection_attempts_token1] = ACTIONS(1656), - [aux_sym_connect_timeout_token1] = ACTIONS(1656), - [aux_sym_control_master_token1] = ACTIONS(1656), - [aux_sym_control_path_token1] = ACTIONS(1656), - [aux_sym_control_persist_token1] = ACTIONS(1656), - [aux_sym_dynamic_forward_token1] = ACTIONS(1656), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1656), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1656), - [aux_sym_escape_char_token1] = ACTIONS(1656), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1656), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1656), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1656), - [aux_sym_forward_agent_token1] = ACTIONS(1656), - [aux_sym_forward_x11_token1] = ACTIONS(1658), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1656), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1656), - [aux_sym_gateway_ports_token1] = ACTIONS(1656), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1656), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1656), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1656), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1656), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1656), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1656), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1656), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1656), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1656), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1656), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1656), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1656), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1656), - [aux_sym_host_key_alias_token1] = ACTIONS(1656), - [aux_sym_hostname_token1] = ACTIONS(1656), - [aux_sym_identities_only_token1] = ACTIONS(1656), - [aux_sym_identity_agent_token1] = ACTIONS(1656), - [aux_sym_identity_file_token1] = ACTIONS(1656), - [aux_sym_ignore_unknown_token1] = ACTIONS(1656), - [aux_sym_include_token1] = ACTIONS(1656), - [aux_sym_ip_qos_token1] = ACTIONS(1656), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1656), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1656), - [aux_sym_kex_algorithms_token1] = ACTIONS(1656), - [aux_sym_known_hosts_command_token1] = ACTIONS(1656), - [aux_sym_local_command_token1] = ACTIONS(1656), - [aux_sym_local_forward_token1] = ACTIONS(1656), - [aux_sym_log_level_token1] = ACTIONS(1656), - [aux_sym_log_verbose_token1] = ACTIONS(1656), - [aux_sym_macs_token1] = ACTIONS(1656), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1656), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1656), - [aux_sym_password_authentication_token1] = ACTIONS(1656), - [aux_sym_permit_local_command_token1] = ACTIONS(1656), - [aux_sym_permit_remote_open_token1] = ACTIONS(1656), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1656), - [aux_sym_port_token1] = ACTIONS(1656), - [aux_sym_preferred_authentications_token1] = ACTIONS(1656), - [aux_sym_protocol_token1] = ACTIONS(1656), - [aux_sym_proxy_command_token1] = ACTIONS(1656), - [aux_sym_proxy_jump_token1] = ACTIONS(1656), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1656), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1656), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1656), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1656), - [aux_sym_rekey_limit_token1] = ACTIONS(1656), - [aux_sym_remote_command_token1] = ACTIONS(1656), - [aux_sym_remote_forward_token1] = ACTIONS(1656), - [aux_sym_request_tty_token1] = ACTIONS(1656), - [aux_sym_required_rsa_size_token1] = ACTIONS(1656), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1656), - [aux_sym_security_key_provider_token1] = ACTIONS(1656), - [aux_sym_send_env_token1] = ACTIONS(1656), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1656), - [aux_sym_server_alive_interval_token1] = ACTIONS(1656), - [aux_sym_session_type_token1] = ACTIONS(1656), - [aux_sym_set_env_token1] = ACTIONS(1656), - [aux_sym_stdin_null_token1] = ACTIONS(1656), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1656), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1656), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1656), - [aux_sym_syslog_facility_token1] = ACTIONS(1656), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1656), - [aux_sym_keep_alive_token1] = ACTIONS(1656), - [aux_sym_tag_token1] = ACTIONS(1656), - [aux_sym_tunnel_token1] = ACTIONS(1658), - [aux_sym_tunnel_device_token1] = ACTIONS(1656), - [aux_sym_update_host_keys_token1] = ACTIONS(1656), - [aux_sym_use_keychain_token1] = ACTIONS(1656), - [aux_sym_use_roaming_token1] = ACTIONS(1656), - [aux_sym_user_token1] = ACTIONS(1658), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1656), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1656), - [aux_sym_visual_host_key_token1] = ACTIONS(1656), - [aux_sym_xauth_location_token1] = ACTIONS(1656), + [ts_builtin_sym_end] = ACTIONS(701), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(703), + [aux_sym_match_token1] = ACTIONS(701), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(701), + [aux_sym_address_family_token1] = ACTIONS(701), + [aux_sym_batch_mode_token1] = ACTIONS(701), + [aux_sym_bind_address_token1] = ACTIONS(701), + [aux_sym_bind_interface_token1] = ACTIONS(701), + [aux_sym_canonical_domains_token1] = ACTIONS(701), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(701), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(701), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(701), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(701), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(701), + [aux_sym_certificate_file_token1] = ACTIONS(701), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(701), + [aux_sym_channel_timeout_token1] = ACTIONS(701), + [aux_sym_check_host_ip_token1] = ACTIONS(701), + [aux_sym_ciphers_token1] = ACTIONS(701), + [aux_sym_cipher_token1] = ACTIONS(703), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(701), + [aux_sym_compression_token1] = ACTIONS(701), + [aux_sym_connection_attempts_token1] = ACTIONS(701), + [aux_sym_connect_timeout_token1] = ACTIONS(701), + [aux_sym_control_master_token1] = ACTIONS(701), + [aux_sym_control_path_token1] = ACTIONS(701), + [aux_sym_control_persist_token1] = ACTIONS(701), + [aux_sym_dynamic_forward_token1] = ACTIONS(701), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(701), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(701), + [aux_sym_escape_char_token1] = ACTIONS(701), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(701), + [aux_sym_fingerprint_hash_token1] = ACTIONS(701), + [aux_sym_fork_after_authentication_token1] = ACTIONS(701), + [aux_sym_forward_agent_token1] = ACTIONS(701), + [aux_sym_forward_x11_token1] = ACTIONS(703), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(701), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(701), + [aux_sym_gateway_ports_token1] = ACTIONS(701), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(701), + [aux_sym_gssapi_authentication_token1] = ACTIONS(701), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(701), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(701), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(701), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(701), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(701), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(701), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(701), + [aux_sym_hash_known_hosts_token1] = ACTIONS(701), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(701), + [aux_sym_hostbased_authentication_token1] = ACTIONS(701), + [aux_sym_host_key_algorithms_token1] = ACTIONS(701), + [aux_sym_host_key_alias_token1] = ACTIONS(701), + [aux_sym_hostname_token1] = ACTIONS(701), + [aux_sym_identities_only_token1] = ACTIONS(701), + [aux_sym_identity_agent_token1] = ACTIONS(701), + [aux_sym_identity_file_token1] = ACTIONS(701), + [aux_sym_ignore_unknown_token1] = ACTIONS(701), + [aux_sym_include_token1] = ACTIONS(701), + [aux_sym_ip_qos_token1] = ACTIONS(701), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(701), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(701), + [aux_sym_kex_algorithms_token1] = ACTIONS(701), + [aux_sym_known_hosts_command_token1] = ACTIONS(701), + [aux_sym_local_command_token1] = ACTIONS(701), + [aux_sym_local_forward_token1] = ACTIONS(701), + [aux_sym_log_level_token1] = ACTIONS(701), + [aux_sym_log_verbose_token1] = ACTIONS(701), + [aux_sym_macs_token1] = ACTIONS(701), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(701), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(701), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(701), + [aux_sym_password_authentication_token1] = ACTIONS(701), + [aux_sym_permit_local_command_token1] = ACTIONS(701), + [aux_sym_permit_remote_open_token1] = ACTIONS(701), + [aux_sym_pkcs11_provider_token1] = ACTIONS(701), + [aux_sym_port_token1] = ACTIONS(701), + [aux_sym_preferred_authentications_token1] = ACTIONS(701), + [aux_sym_protocol_token1] = ACTIONS(701), + [aux_sym_proxy_command_token1] = ACTIONS(701), + [aux_sym_proxy_jump_token1] = ACTIONS(701), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(701), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(701), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(701), + [aux_sym_pubkey_authentication_token1] = ACTIONS(701), + [aux_sym_rekey_limit_token1] = ACTIONS(701), + [aux_sym_remote_command_token1] = ACTIONS(701), + [aux_sym_remote_forward_token1] = ACTIONS(701), + [aux_sym_request_tty_token1] = ACTIONS(701), + [aux_sym_required_rsa_size_token1] = ACTIONS(701), + [aux_sym_revoked_host_keys_token1] = ACTIONS(701), + [aux_sym_security_key_provider_token1] = ACTIONS(701), + [aux_sym_send_env_token1] = ACTIONS(701), + [aux_sym_server_alive_count_max_token1] = ACTIONS(701), + [aux_sym_server_alive_interval_token1] = ACTIONS(701), + [aux_sym_session_type_token1] = ACTIONS(701), + [aux_sym_set_env_token1] = ACTIONS(701), + [aux_sym_stdin_null_token1] = ACTIONS(701), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(701), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(701), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(701), + [aux_sym_syslog_facility_token1] = ACTIONS(701), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(701), + [aux_sym_keep_alive_token1] = ACTIONS(701), + [aux_sym_tag_token1] = ACTIONS(701), + [aux_sym_tunnel_token1] = ACTIONS(703), + [aux_sym_tunnel_device_token1] = ACTIONS(701), + [aux_sym_update_host_keys_token1] = ACTIONS(701), + [aux_sym_use_keychain_token1] = ACTIONS(701), + [aux_sym_use_roaming_token1] = ACTIONS(701), + [aux_sym_user_token1] = ACTIONS(703), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(701), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(701), + [aux_sym_visual_host_key_token1] = ACTIONS(701), + [aux_sym_xauth_location_token1] = ACTIONS(701), }, [729] = { - [ts_builtin_sym_end] = ACTIONS(1008), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1010), - [aux_sym_match_token1] = ACTIONS(1008), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1008), - [aux_sym_address_family_token1] = ACTIONS(1008), - [aux_sym_batch_mode_token1] = ACTIONS(1008), - [aux_sym_bind_address_token1] = ACTIONS(1008), - [aux_sym_bind_interface_token1] = ACTIONS(1008), - [aux_sym_canonical_domains_token1] = ACTIONS(1008), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1008), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1008), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1008), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1008), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1008), - [aux_sym_certificate_file_token1] = ACTIONS(1008), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1008), - [aux_sym_channel_timeout_token1] = ACTIONS(1008), - [aux_sym_check_host_ip_token1] = ACTIONS(1008), - [aux_sym_ciphers_token1] = ACTIONS(1008), - [aux_sym_cipher_token1] = ACTIONS(1010), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1008), - [aux_sym_compression_token1] = ACTIONS(1008), - [aux_sym_connection_attempts_token1] = ACTIONS(1008), - [aux_sym_connect_timeout_token1] = ACTIONS(1008), - [aux_sym_control_master_token1] = ACTIONS(1008), - [aux_sym_control_path_token1] = ACTIONS(1008), - [aux_sym_control_persist_token1] = ACTIONS(1008), - [aux_sym_dynamic_forward_token1] = ACTIONS(1008), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1008), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1008), - [aux_sym_escape_char_token1] = ACTIONS(1008), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1008), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1008), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1008), - [aux_sym_forward_agent_token1] = ACTIONS(1008), - [aux_sym_forward_x11_token1] = ACTIONS(1010), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1008), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1008), - [aux_sym_gateway_ports_token1] = ACTIONS(1008), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1008), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1008), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1008), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1008), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1008), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1008), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1008), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1008), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1008), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1008), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1008), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1008), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1008), - [aux_sym_host_key_alias_token1] = ACTIONS(1008), - [aux_sym_hostname_token1] = ACTIONS(1008), - [aux_sym_identities_only_token1] = ACTIONS(1008), - [aux_sym_identity_agent_token1] = ACTIONS(1008), - [aux_sym_identity_file_token1] = ACTIONS(1008), - [aux_sym_ignore_unknown_token1] = ACTIONS(1008), - [aux_sym_include_token1] = ACTIONS(1008), - [aux_sym_ip_qos_token1] = ACTIONS(1008), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1008), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1008), - [aux_sym_kex_algorithms_token1] = ACTIONS(1008), - [aux_sym_known_hosts_command_token1] = ACTIONS(1008), - [aux_sym_local_command_token1] = ACTIONS(1008), - [aux_sym_local_forward_token1] = ACTIONS(1008), - [aux_sym_log_level_token1] = ACTIONS(1008), - [aux_sym_log_verbose_token1] = ACTIONS(1008), - [aux_sym_macs_token1] = ACTIONS(1008), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1008), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1008), - [aux_sym_password_authentication_token1] = ACTIONS(1008), - [aux_sym_permit_local_command_token1] = ACTIONS(1008), - [aux_sym_permit_remote_open_token1] = ACTIONS(1008), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1008), - [aux_sym_port_token1] = ACTIONS(1008), - [aux_sym_preferred_authentications_token1] = ACTIONS(1008), - [aux_sym_protocol_token1] = ACTIONS(1008), - [aux_sym_proxy_command_token1] = ACTIONS(1008), - [aux_sym_proxy_jump_token1] = ACTIONS(1008), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1008), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1008), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1008), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1008), - [aux_sym_rekey_limit_token1] = ACTIONS(1008), - [aux_sym_remote_command_token1] = ACTIONS(1008), - [aux_sym_remote_forward_token1] = ACTIONS(1008), - [aux_sym_request_tty_token1] = ACTIONS(1008), - [aux_sym_required_rsa_size_token1] = ACTIONS(1008), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1008), - [aux_sym_security_key_provider_token1] = ACTIONS(1008), - [aux_sym_send_env_token1] = ACTIONS(1008), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1008), - [aux_sym_server_alive_interval_token1] = ACTIONS(1008), - [aux_sym_session_type_token1] = ACTIONS(1008), - [aux_sym_set_env_token1] = ACTIONS(1008), - [aux_sym_stdin_null_token1] = ACTIONS(1008), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1008), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1008), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1008), - [aux_sym_syslog_facility_token1] = ACTIONS(1008), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1008), - [aux_sym_keep_alive_token1] = ACTIONS(1008), - [aux_sym_tag_token1] = ACTIONS(1008), - [aux_sym_tunnel_token1] = ACTIONS(1010), - [aux_sym_tunnel_device_token1] = ACTIONS(1008), - [aux_sym_update_host_keys_token1] = ACTIONS(1008), - [aux_sym_use_keychain_token1] = ACTIONS(1008), - [aux_sym_use_roaming_token1] = ACTIONS(1008), - [aux_sym_user_token1] = ACTIONS(1010), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1008), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1008), - [aux_sym_visual_host_key_token1] = ACTIONS(1008), - [aux_sym_xauth_location_token1] = ACTIONS(1008), + [ts_builtin_sym_end] = ACTIONS(1451), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1453), + [aux_sym_match_token1] = ACTIONS(1451), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1451), + [aux_sym_address_family_token1] = ACTIONS(1451), + [aux_sym_batch_mode_token1] = ACTIONS(1451), + [aux_sym_bind_address_token1] = ACTIONS(1451), + [aux_sym_bind_interface_token1] = ACTIONS(1451), + [aux_sym_canonical_domains_token1] = ACTIONS(1451), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1451), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1451), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1451), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1451), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1451), + [aux_sym_certificate_file_token1] = ACTIONS(1451), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1451), + [aux_sym_channel_timeout_token1] = ACTIONS(1451), + [aux_sym_check_host_ip_token1] = ACTIONS(1451), + [aux_sym_ciphers_token1] = ACTIONS(1451), + [aux_sym_cipher_token1] = ACTIONS(1453), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1451), + [aux_sym_compression_token1] = ACTIONS(1451), + [aux_sym_connection_attempts_token1] = ACTIONS(1451), + [aux_sym_connect_timeout_token1] = ACTIONS(1451), + [aux_sym_control_master_token1] = ACTIONS(1451), + [aux_sym_control_path_token1] = ACTIONS(1451), + [aux_sym_control_persist_token1] = ACTIONS(1451), + [aux_sym_dynamic_forward_token1] = ACTIONS(1451), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1451), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1451), + [aux_sym_escape_char_token1] = ACTIONS(1451), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1451), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1451), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1451), + [aux_sym_forward_agent_token1] = ACTIONS(1451), + [aux_sym_forward_x11_token1] = ACTIONS(1453), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1451), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1451), + [aux_sym_gateway_ports_token1] = ACTIONS(1451), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1451), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1451), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1451), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1451), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1451), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1451), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1451), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1451), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1451), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1451), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1451), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1451), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1451), + [aux_sym_host_key_alias_token1] = ACTIONS(1451), + [aux_sym_hostname_token1] = ACTIONS(1451), + [aux_sym_identities_only_token1] = ACTIONS(1451), + [aux_sym_identity_agent_token1] = ACTIONS(1451), + [aux_sym_identity_file_token1] = ACTIONS(1451), + [aux_sym_ignore_unknown_token1] = ACTIONS(1451), + [aux_sym_include_token1] = ACTIONS(1451), + [aux_sym_ip_qos_token1] = ACTIONS(1451), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1451), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1451), + [aux_sym_kex_algorithms_token1] = ACTIONS(1451), + [aux_sym_known_hosts_command_token1] = ACTIONS(1451), + [aux_sym_local_command_token1] = ACTIONS(1451), + [aux_sym_local_forward_token1] = ACTIONS(1451), + [aux_sym_log_level_token1] = ACTIONS(1451), + [aux_sym_log_verbose_token1] = ACTIONS(1451), + [aux_sym_macs_token1] = ACTIONS(1451), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1451), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1451), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1451), + [aux_sym_password_authentication_token1] = ACTIONS(1451), + [aux_sym_permit_local_command_token1] = ACTIONS(1451), + [aux_sym_permit_remote_open_token1] = ACTIONS(1451), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1451), + [aux_sym_port_token1] = ACTIONS(1451), + [aux_sym_preferred_authentications_token1] = ACTIONS(1451), + [aux_sym_protocol_token1] = ACTIONS(1451), + [aux_sym_proxy_command_token1] = ACTIONS(1451), + [aux_sym_proxy_jump_token1] = ACTIONS(1451), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1451), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1451), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1451), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1451), + [aux_sym_rekey_limit_token1] = ACTIONS(1451), + [aux_sym_remote_command_token1] = ACTIONS(1451), + [aux_sym_remote_forward_token1] = ACTIONS(1451), + [aux_sym_request_tty_token1] = ACTIONS(1451), + [aux_sym_required_rsa_size_token1] = ACTIONS(1451), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1451), + [aux_sym_security_key_provider_token1] = ACTIONS(1451), + [aux_sym_send_env_token1] = ACTIONS(1451), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1451), + [aux_sym_server_alive_interval_token1] = ACTIONS(1451), + [aux_sym_session_type_token1] = ACTIONS(1451), + [aux_sym_set_env_token1] = ACTIONS(1451), + [aux_sym_stdin_null_token1] = ACTIONS(1451), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1451), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1451), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1451), + [aux_sym_syslog_facility_token1] = ACTIONS(1451), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1451), + [aux_sym_keep_alive_token1] = ACTIONS(1451), + [aux_sym_tag_token1] = ACTIONS(1451), + [aux_sym_tunnel_token1] = ACTIONS(1453), + [aux_sym_tunnel_device_token1] = ACTIONS(1451), + [aux_sym_update_host_keys_token1] = ACTIONS(1451), + [aux_sym_use_keychain_token1] = ACTIONS(1451), + [aux_sym_use_roaming_token1] = ACTIONS(1451), + [aux_sym_user_token1] = ACTIONS(1453), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1451), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1451), + [aux_sym_visual_host_key_token1] = ACTIONS(1451), + [aux_sym_xauth_location_token1] = ACTIONS(1451), }, [730] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1860), - [aux_sym_match_token1] = ACTIONS(1858), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1858), - [aux_sym_address_family_token1] = ACTIONS(1858), - [aux_sym_batch_mode_token1] = ACTIONS(1858), - [aux_sym_bind_address_token1] = ACTIONS(1858), - [aux_sym_bind_interface_token1] = ACTIONS(1858), - [aux_sym_canonical_domains_token1] = ACTIONS(1858), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1858), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1858), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1858), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1858), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1858), - [aux_sym_certificate_file_token1] = ACTIONS(1858), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1858), - [aux_sym_channel_timeout_token1] = ACTIONS(1858), - [aux_sym_check_host_ip_token1] = ACTIONS(1858), - [aux_sym_ciphers_token1] = ACTIONS(1858), - [aux_sym_cipher_token1] = ACTIONS(1860), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1858), - [aux_sym_compression_token1] = ACTIONS(1858), - [aux_sym_connection_attempts_token1] = ACTIONS(1858), - [aux_sym_connect_timeout_token1] = ACTIONS(1858), - [aux_sym_control_master_token1] = ACTIONS(1858), - [aux_sym_control_path_token1] = ACTIONS(1858), - [aux_sym_control_persist_token1] = ACTIONS(1858), - [aux_sym_dynamic_forward_token1] = ACTIONS(1858), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1858), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1858), - [aux_sym_escape_char_token1] = ACTIONS(1858), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1858), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1858), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1858), - [aux_sym_forward_agent_token1] = ACTIONS(1858), - [aux_sym_forward_x11_token1] = ACTIONS(1860), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1858), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1858), - [aux_sym_gateway_ports_token1] = ACTIONS(1858), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1858), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1858), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1858), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1858), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1858), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1858), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1858), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1858), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1858), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1858), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1858), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1858), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1858), - [aux_sym_host_key_alias_token1] = ACTIONS(1858), - [aux_sym_hostname_token1] = ACTIONS(1858), - [aux_sym_identities_only_token1] = ACTIONS(1858), - [aux_sym_identity_agent_token1] = ACTIONS(1858), - [aux_sym_identity_file_token1] = ACTIONS(1858), - [aux_sym_ignore_unknown_token1] = ACTIONS(1858), - [aux_sym_include_token1] = ACTIONS(1858), - [aux_sym_ip_qos_token1] = ACTIONS(1858), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1858), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1858), - [aux_sym_kex_algorithms_token1] = ACTIONS(1858), - [aux_sym_known_hosts_command_token1] = ACTIONS(1858), - [aux_sym_local_command_token1] = ACTIONS(1858), - [aux_sym_local_forward_token1] = ACTIONS(1858), - [aux_sym_log_level_token1] = ACTIONS(1858), - [aux_sym_log_verbose_token1] = ACTIONS(1858), - [aux_sym_macs_token1] = ACTIONS(1858), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1858), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1858), - [aux_sym_password_authentication_token1] = ACTIONS(1858), - [aux_sym_permit_local_command_token1] = ACTIONS(1858), - [aux_sym_permit_remote_open_token1] = ACTIONS(1858), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1858), - [aux_sym_port_token1] = ACTIONS(1858), - [aux_sym_preferred_authentications_token1] = ACTIONS(1858), - [aux_sym_protocol_token1] = ACTIONS(1858), - [aux_sym_proxy_command_token1] = ACTIONS(1858), - [aux_sym_proxy_jump_token1] = ACTIONS(1858), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1858), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1858), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1858), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1858), - [aux_sym_rekey_limit_token1] = ACTIONS(1858), - [aux_sym_remote_command_token1] = ACTIONS(1858), - [aux_sym_remote_forward_token1] = ACTIONS(1858), - [aux_sym_request_tty_token1] = ACTIONS(1858), - [aux_sym_required_rsa_size_token1] = ACTIONS(1858), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1858), - [aux_sym_security_key_provider_token1] = ACTIONS(1858), - [aux_sym_send_env_token1] = ACTIONS(1858), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1858), - [aux_sym_server_alive_interval_token1] = ACTIONS(1858), - [aux_sym_session_type_token1] = ACTIONS(1858), - [aux_sym_set_env_token1] = ACTIONS(1858), - [aux_sym_stdin_null_token1] = ACTIONS(1858), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1858), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1858), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1858), - [aux_sym_syslog_facility_token1] = ACTIONS(1858), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1858), - [aux_sym_keep_alive_token1] = ACTIONS(1858), - [aux_sym_tag_token1] = ACTIONS(1858), - [aux_sym_tunnel_token1] = ACTIONS(1860), - [aux_sym_tunnel_device_token1] = ACTIONS(1858), - [aux_sym_update_host_keys_token1] = ACTIONS(1858), - [aux_sym_use_keychain_token1] = ACTIONS(1858), - [aux_sym_use_roaming_token1] = ACTIONS(1858), - [aux_sym_user_token1] = ACTIONS(1860), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1858), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1858), - [aux_sym_visual_host_key_token1] = ACTIONS(1858), - [aux_sym_xauth_location_token1] = ACTIONS(1858), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1889), + [aux_sym_match_token1] = ACTIONS(1887), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1887), + [aux_sym_address_family_token1] = ACTIONS(1887), + [aux_sym_batch_mode_token1] = ACTIONS(1887), + [aux_sym_bind_address_token1] = ACTIONS(1887), + [aux_sym_bind_interface_token1] = ACTIONS(1887), + [aux_sym_canonical_domains_token1] = ACTIONS(1887), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1887), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1887), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1887), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1887), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1887), + [aux_sym_certificate_file_token1] = ACTIONS(1887), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1887), + [aux_sym_channel_timeout_token1] = ACTIONS(1887), + [aux_sym_check_host_ip_token1] = ACTIONS(1887), + [aux_sym_ciphers_token1] = ACTIONS(1887), + [aux_sym_cipher_token1] = ACTIONS(1889), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1887), + [aux_sym_compression_token1] = ACTIONS(1887), + [aux_sym_connection_attempts_token1] = ACTIONS(1887), + [aux_sym_connect_timeout_token1] = ACTIONS(1887), + [aux_sym_control_master_token1] = ACTIONS(1887), + [aux_sym_control_path_token1] = ACTIONS(1887), + [aux_sym_control_persist_token1] = ACTIONS(1887), + [aux_sym_dynamic_forward_token1] = ACTIONS(1887), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1887), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1887), + [aux_sym_escape_char_token1] = ACTIONS(1887), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1887), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1887), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1887), + [aux_sym_forward_agent_token1] = ACTIONS(1887), + [aux_sym_forward_x11_token1] = ACTIONS(1889), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1887), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1887), + [aux_sym_gateway_ports_token1] = ACTIONS(1887), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1887), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1887), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1887), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1887), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1887), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1887), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1887), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1887), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1887), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1887), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1887), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1887), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1887), + [aux_sym_host_key_alias_token1] = ACTIONS(1887), + [aux_sym_hostname_token1] = ACTIONS(1887), + [aux_sym_identities_only_token1] = ACTIONS(1887), + [aux_sym_identity_agent_token1] = ACTIONS(1887), + [aux_sym_identity_file_token1] = ACTIONS(1887), + [aux_sym_ignore_unknown_token1] = ACTIONS(1887), + [aux_sym_include_token1] = ACTIONS(1887), + [aux_sym_ip_qos_token1] = ACTIONS(1887), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1887), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1887), + [aux_sym_kex_algorithms_token1] = ACTIONS(1887), + [aux_sym_known_hosts_command_token1] = ACTIONS(1887), + [aux_sym_local_command_token1] = ACTIONS(1887), + [aux_sym_local_forward_token1] = ACTIONS(1887), + [aux_sym_log_level_token1] = ACTIONS(1887), + [aux_sym_log_verbose_token1] = ACTIONS(1887), + [aux_sym_macs_token1] = ACTIONS(1887), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1887), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1887), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1887), + [aux_sym_password_authentication_token1] = ACTIONS(1887), + [aux_sym_permit_local_command_token1] = ACTIONS(1887), + [aux_sym_permit_remote_open_token1] = ACTIONS(1887), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1887), + [aux_sym_port_token1] = ACTIONS(1887), + [aux_sym_preferred_authentications_token1] = ACTIONS(1887), + [aux_sym_protocol_token1] = ACTIONS(1887), + [aux_sym_proxy_command_token1] = ACTIONS(1887), + [aux_sym_proxy_jump_token1] = ACTIONS(1887), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1887), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1887), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1887), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1887), + [aux_sym_rekey_limit_token1] = ACTIONS(1887), + [aux_sym_remote_command_token1] = ACTIONS(1887), + [aux_sym_remote_forward_token1] = ACTIONS(1887), + [aux_sym_request_tty_token1] = ACTIONS(1887), + [aux_sym_required_rsa_size_token1] = ACTIONS(1887), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1887), + [aux_sym_security_key_provider_token1] = ACTIONS(1887), + [aux_sym_send_env_token1] = ACTIONS(1887), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1887), + [aux_sym_server_alive_interval_token1] = ACTIONS(1887), + [aux_sym_session_type_token1] = ACTIONS(1887), + [aux_sym_set_env_token1] = ACTIONS(1887), + [aux_sym_stdin_null_token1] = ACTIONS(1887), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1887), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1887), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1887), + [aux_sym_syslog_facility_token1] = ACTIONS(1887), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1887), + [aux_sym_keep_alive_token1] = ACTIONS(1887), + [aux_sym_tag_token1] = ACTIONS(1887), + [aux_sym_tunnel_token1] = ACTIONS(1889), + [aux_sym_tunnel_device_token1] = ACTIONS(1887), + [aux_sym_update_host_keys_token1] = ACTIONS(1887), + [aux_sym_use_keychain_token1] = ACTIONS(1887), + [aux_sym_use_roaming_token1] = ACTIONS(1887), + [aux_sym_user_token1] = ACTIONS(1889), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1887), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1887), + [aux_sym_visual_host_key_token1] = ACTIONS(1887), + [aux_sym_xauth_location_token1] = ACTIONS(1887), }, [731] = { - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1664), - [aux_sym_match_token1] = ACTIONS(1662), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1662), - [aux_sym_address_family_token1] = ACTIONS(1662), - [aux_sym_batch_mode_token1] = ACTIONS(1662), - [aux_sym_bind_address_token1] = ACTIONS(1662), - [aux_sym_bind_interface_token1] = ACTIONS(1662), - [aux_sym_canonical_domains_token1] = ACTIONS(1662), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1662), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1662), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1662), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1662), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1662), - [aux_sym_certificate_file_token1] = ACTIONS(1662), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1662), - [aux_sym_channel_timeout_token1] = ACTIONS(1662), - [aux_sym_check_host_ip_token1] = ACTIONS(1662), - [aux_sym_ciphers_token1] = ACTIONS(1662), - [aux_sym_cipher_token1] = ACTIONS(1664), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1662), - [aux_sym_compression_token1] = ACTIONS(1662), - [aux_sym_connection_attempts_token1] = ACTIONS(1662), - [aux_sym_connect_timeout_token1] = ACTIONS(1662), - [aux_sym_control_master_token1] = ACTIONS(1662), - [aux_sym_control_path_token1] = ACTIONS(1662), - [aux_sym_control_persist_token1] = ACTIONS(1662), - [aux_sym_dynamic_forward_token1] = ACTIONS(1662), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1662), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1662), - [aux_sym_escape_char_token1] = ACTIONS(1662), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1662), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1662), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1662), - [aux_sym_forward_agent_token1] = ACTIONS(1662), - [aux_sym_forward_x11_token1] = ACTIONS(1664), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1662), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1662), - [aux_sym_gateway_ports_token1] = ACTIONS(1662), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1662), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1662), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1662), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1662), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1662), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1662), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1662), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1662), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1662), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1662), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1662), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1662), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1662), - [aux_sym_host_key_alias_token1] = ACTIONS(1662), - [aux_sym_hostname_token1] = ACTIONS(1662), - [aux_sym_identities_only_token1] = ACTIONS(1662), - [aux_sym_identity_agent_token1] = ACTIONS(1662), - [aux_sym_identity_file_token1] = ACTIONS(1662), - [aux_sym_ignore_unknown_token1] = ACTIONS(1662), - [aux_sym_include_token1] = ACTIONS(1662), - [aux_sym_ip_qos_token1] = ACTIONS(1662), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1662), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1662), - [aux_sym_kex_algorithms_token1] = ACTIONS(1662), - [aux_sym_known_hosts_command_token1] = ACTIONS(1662), - [aux_sym_local_command_token1] = ACTIONS(1662), - [aux_sym_local_forward_token1] = ACTIONS(1662), - [aux_sym_log_level_token1] = ACTIONS(1662), - [aux_sym_log_verbose_token1] = ACTIONS(1662), - [aux_sym_macs_token1] = ACTIONS(1662), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1662), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1662), - [aux_sym_password_authentication_token1] = ACTIONS(1662), - [aux_sym_permit_local_command_token1] = ACTIONS(1662), - [aux_sym_permit_remote_open_token1] = ACTIONS(1662), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1662), - [aux_sym_port_token1] = ACTIONS(1662), - [aux_sym_preferred_authentications_token1] = ACTIONS(1662), - [aux_sym_protocol_token1] = ACTIONS(1662), - [aux_sym_proxy_command_token1] = ACTIONS(1662), - [aux_sym_proxy_jump_token1] = ACTIONS(1662), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1662), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1662), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1662), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1662), - [aux_sym_rekey_limit_token1] = ACTIONS(1662), - [aux_sym_remote_command_token1] = ACTIONS(1662), - [aux_sym_remote_forward_token1] = ACTIONS(1662), - [aux_sym_request_tty_token1] = ACTIONS(1662), - [aux_sym_required_rsa_size_token1] = ACTIONS(1662), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1662), - [aux_sym_security_key_provider_token1] = ACTIONS(1662), - [aux_sym_send_env_token1] = ACTIONS(1662), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1662), - [aux_sym_server_alive_interval_token1] = ACTIONS(1662), - [aux_sym_session_type_token1] = ACTIONS(1662), - [aux_sym_set_env_token1] = ACTIONS(1662), - [aux_sym_stdin_null_token1] = ACTIONS(1662), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1662), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1662), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1662), - [aux_sym_syslog_facility_token1] = ACTIONS(1662), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1662), - [aux_sym_keep_alive_token1] = ACTIONS(1662), - [aux_sym_tag_token1] = ACTIONS(1662), - [aux_sym_tunnel_token1] = ACTIONS(1664), - [aux_sym_tunnel_device_token1] = ACTIONS(1662), - [aux_sym_update_host_keys_token1] = ACTIONS(1662), - [aux_sym_use_keychain_token1] = ACTIONS(1662), - [aux_sym_use_roaming_token1] = ACTIONS(1662), - [aux_sym_user_token1] = ACTIONS(1664), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1662), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1662), - [aux_sym_visual_host_key_token1] = ACTIONS(1662), - [aux_sym_xauth_location_token1] = ACTIONS(1662), + [ts_builtin_sym_end] = ACTIONS(707), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(709), + [aux_sym_match_token1] = ACTIONS(707), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(707), + [aux_sym_address_family_token1] = ACTIONS(707), + [aux_sym_batch_mode_token1] = ACTIONS(707), + [aux_sym_bind_address_token1] = ACTIONS(707), + [aux_sym_bind_interface_token1] = ACTIONS(707), + [aux_sym_canonical_domains_token1] = ACTIONS(707), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(707), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(707), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(707), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(707), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(707), + [aux_sym_certificate_file_token1] = ACTIONS(707), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(707), + [aux_sym_channel_timeout_token1] = ACTIONS(707), + [aux_sym_check_host_ip_token1] = ACTIONS(707), + [aux_sym_ciphers_token1] = ACTIONS(707), + [aux_sym_cipher_token1] = ACTIONS(709), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(707), + [aux_sym_compression_token1] = ACTIONS(707), + [aux_sym_connection_attempts_token1] = ACTIONS(707), + [aux_sym_connect_timeout_token1] = ACTIONS(707), + [aux_sym_control_master_token1] = ACTIONS(707), + [aux_sym_control_path_token1] = ACTIONS(707), + [aux_sym_control_persist_token1] = ACTIONS(707), + [aux_sym_dynamic_forward_token1] = ACTIONS(707), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(707), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(707), + [aux_sym_escape_char_token1] = ACTIONS(707), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(707), + [aux_sym_fingerprint_hash_token1] = ACTIONS(707), + [aux_sym_fork_after_authentication_token1] = ACTIONS(707), + [aux_sym_forward_agent_token1] = ACTIONS(707), + [aux_sym_forward_x11_token1] = ACTIONS(709), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(707), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(707), + [aux_sym_gateway_ports_token1] = ACTIONS(707), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(707), + [aux_sym_gssapi_authentication_token1] = ACTIONS(707), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(707), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(707), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(707), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(707), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(707), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(707), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(707), + [aux_sym_hash_known_hosts_token1] = ACTIONS(707), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(707), + [aux_sym_hostbased_authentication_token1] = ACTIONS(707), + [aux_sym_host_key_algorithms_token1] = ACTIONS(707), + [aux_sym_host_key_alias_token1] = ACTIONS(707), + [aux_sym_hostname_token1] = ACTIONS(707), + [aux_sym_identities_only_token1] = ACTIONS(707), + [aux_sym_identity_agent_token1] = ACTIONS(707), + [aux_sym_identity_file_token1] = ACTIONS(707), + [aux_sym_ignore_unknown_token1] = ACTIONS(707), + [aux_sym_include_token1] = ACTIONS(707), + [aux_sym_ip_qos_token1] = ACTIONS(707), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(707), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(707), + [aux_sym_kex_algorithms_token1] = ACTIONS(707), + [aux_sym_known_hosts_command_token1] = ACTIONS(707), + [aux_sym_local_command_token1] = ACTIONS(707), + [aux_sym_local_forward_token1] = ACTIONS(707), + [aux_sym_log_level_token1] = ACTIONS(707), + [aux_sym_log_verbose_token1] = ACTIONS(707), + [aux_sym_macs_token1] = ACTIONS(707), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(707), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(707), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(707), + [aux_sym_password_authentication_token1] = ACTIONS(707), + [aux_sym_permit_local_command_token1] = ACTIONS(707), + [aux_sym_permit_remote_open_token1] = ACTIONS(707), + [aux_sym_pkcs11_provider_token1] = ACTIONS(707), + [aux_sym_port_token1] = ACTIONS(707), + [aux_sym_preferred_authentications_token1] = ACTIONS(707), + [aux_sym_protocol_token1] = ACTIONS(707), + [aux_sym_proxy_command_token1] = ACTIONS(707), + [aux_sym_proxy_jump_token1] = ACTIONS(707), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(707), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(707), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(707), + [aux_sym_pubkey_authentication_token1] = ACTIONS(707), + [aux_sym_rekey_limit_token1] = ACTIONS(707), + [aux_sym_remote_command_token1] = ACTIONS(707), + [aux_sym_remote_forward_token1] = ACTIONS(707), + [aux_sym_request_tty_token1] = ACTIONS(707), + [aux_sym_required_rsa_size_token1] = ACTIONS(707), + [aux_sym_revoked_host_keys_token1] = ACTIONS(707), + [aux_sym_security_key_provider_token1] = ACTIONS(707), + [aux_sym_send_env_token1] = ACTIONS(707), + [aux_sym_server_alive_count_max_token1] = ACTIONS(707), + [aux_sym_server_alive_interval_token1] = ACTIONS(707), + [aux_sym_session_type_token1] = ACTIONS(707), + [aux_sym_set_env_token1] = ACTIONS(707), + [aux_sym_stdin_null_token1] = ACTIONS(707), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(707), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(707), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(707), + [aux_sym_syslog_facility_token1] = ACTIONS(707), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(707), + [aux_sym_keep_alive_token1] = ACTIONS(707), + [aux_sym_tag_token1] = ACTIONS(707), + [aux_sym_tunnel_token1] = ACTIONS(709), + [aux_sym_tunnel_device_token1] = ACTIONS(707), + [aux_sym_update_host_keys_token1] = ACTIONS(707), + [aux_sym_use_keychain_token1] = ACTIONS(707), + [aux_sym_use_roaming_token1] = ACTIONS(707), + [aux_sym_user_token1] = ACTIONS(709), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(707), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(707), + [aux_sym_visual_host_key_token1] = ACTIONS(707), + [aux_sym_xauth_location_token1] = ACTIONS(707), }, [732] = { - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1004), - [aux_sym_match_token1] = ACTIONS(1002), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1002), - [aux_sym_address_family_token1] = ACTIONS(1002), - [aux_sym_batch_mode_token1] = ACTIONS(1002), - [aux_sym_bind_address_token1] = ACTIONS(1002), - [aux_sym_bind_interface_token1] = ACTIONS(1002), - [aux_sym_canonical_domains_token1] = ACTIONS(1002), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1002), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1002), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1002), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1002), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1002), - [aux_sym_certificate_file_token1] = ACTIONS(1002), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1002), - [aux_sym_channel_timeout_token1] = ACTIONS(1002), - [aux_sym_check_host_ip_token1] = ACTIONS(1002), - [aux_sym_ciphers_token1] = ACTIONS(1002), - [aux_sym_cipher_token1] = ACTIONS(1004), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1002), - [aux_sym_compression_token1] = ACTIONS(1002), - [aux_sym_connection_attempts_token1] = ACTIONS(1002), - [aux_sym_connect_timeout_token1] = ACTIONS(1002), - [aux_sym_control_master_token1] = ACTIONS(1002), - [aux_sym_control_path_token1] = ACTIONS(1002), - [aux_sym_control_persist_token1] = ACTIONS(1002), - [aux_sym_dynamic_forward_token1] = ACTIONS(1002), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1002), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1002), - [aux_sym_escape_char_token1] = ACTIONS(1002), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1002), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1002), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1002), - [aux_sym_forward_agent_token1] = ACTIONS(1002), - [aux_sym_forward_x11_token1] = ACTIONS(1004), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1002), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1002), - [aux_sym_gateway_ports_token1] = ACTIONS(1002), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1002), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1002), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1002), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1002), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1002), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1002), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1002), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1002), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1002), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1002), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1002), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1002), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1002), - [aux_sym_host_key_alias_token1] = ACTIONS(1002), - [aux_sym_hostname_token1] = ACTIONS(1002), - [aux_sym_identities_only_token1] = ACTIONS(1002), - [aux_sym_identity_agent_token1] = ACTIONS(1002), - [aux_sym_identity_file_token1] = ACTIONS(1002), - [aux_sym_ignore_unknown_token1] = ACTIONS(1002), - [aux_sym_include_token1] = ACTIONS(1002), - [aux_sym_ip_qos_token1] = ACTIONS(1002), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1002), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1002), - [aux_sym_kex_algorithms_token1] = ACTIONS(1002), - [aux_sym_known_hosts_command_token1] = ACTIONS(1002), - [aux_sym_local_command_token1] = ACTIONS(1002), - [aux_sym_local_forward_token1] = ACTIONS(1002), - [aux_sym_log_level_token1] = ACTIONS(1002), - [aux_sym_log_verbose_token1] = ACTIONS(1002), - [aux_sym_macs_token1] = ACTIONS(1002), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1002), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1002), - [aux_sym_password_authentication_token1] = ACTIONS(1002), - [aux_sym_permit_local_command_token1] = ACTIONS(1002), - [aux_sym_permit_remote_open_token1] = ACTIONS(1002), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1002), - [aux_sym_port_token1] = ACTIONS(1002), - [aux_sym_preferred_authentications_token1] = ACTIONS(1002), - [aux_sym_protocol_token1] = ACTIONS(1002), - [aux_sym_proxy_command_token1] = ACTIONS(1002), - [aux_sym_proxy_jump_token1] = ACTIONS(1002), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1002), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1002), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1002), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1002), - [aux_sym_rekey_limit_token1] = ACTIONS(1002), - [aux_sym_remote_command_token1] = ACTIONS(1002), - [aux_sym_remote_forward_token1] = ACTIONS(1002), - [aux_sym_request_tty_token1] = ACTIONS(1002), - [aux_sym_required_rsa_size_token1] = ACTIONS(1002), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1002), - [aux_sym_security_key_provider_token1] = ACTIONS(1002), - [aux_sym_send_env_token1] = ACTIONS(1002), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1002), - [aux_sym_server_alive_interval_token1] = ACTIONS(1002), - [aux_sym_session_type_token1] = ACTIONS(1002), - [aux_sym_set_env_token1] = ACTIONS(1002), - [aux_sym_stdin_null_token1] = ACTIONS(1002), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1002), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1002), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1002), - [aux_sym_syslog_facility_token1] = ACTIONS(1002), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1002), - [aux_sym_keep_alive_token1] = ACTIONS(1002), - [aux_sym_tag_token1] = ACTIONS(1002), - [aux_sym_tunnel_token1] = ACTIONS(1004), - [aux_sym_tunnel_device_token1] = ACTIONS(1002), - [aux_sym_update_host_keys_token1] = ACTIONS(1002), - [aux_sym_use_keychain_token1] = ACTIONS(1002), - [aux_sym_use_roaming_token1] = ACTIONS(1002), - [aux_sym_user_token1] = ACTIONS(1004), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1002), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1002), - [aux_sym_visual_host_key_token1] = ACTIONS(1002), - [aux_sym_xauth_location_token1] = ACTIONS(1002), + [ts_builtin_sym_end] = ACTIONS(953), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(955), + [aux_sym_match_token1] = ACTIONS(953), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(953), + [aux_sym_address_family_token1] = ACTIONS(953), + [aux_sym_batch_mode_token1] = ACTIONS(953), + [aux_sym_bind_address_token1] = ACTIONS(953), + [aux_sym_bind_interface_token1] = ACTIONS(953), + [aux_sym_canonical_domains_token1] = ACTIONS(953), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(953), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(953), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(953), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(953), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(953), + [aux_sym_certificate_file_token1] = ACTIONS(953), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(953), + [aux_sym_channel_timeout_token1] = ACTIONS(953), + [aux_sym_check_host_ip_token1] = ACTIONS(953), + [aux_sym_ciphers_token1] = ACTIONS(953), + [aux_sym_cipher_token1] = ACTIONS(955), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(953), + [aux_sym_compression_token1] = ACTIONS(953), + [aux_sym_connection_attempts_token1] = ACTIONS(953), + [aux_sym_connect_timeout_token1] = ACTIONS(953), + [aux_sym_control_master_token1] = ACTIONS(953), + [aux_sym_control_path_token1] = ACTIONS(953), + [aux_sym_control_persist_token1] = ACTIONS(953), + [aux_sym_dynamic_forward_token1] = ACTIONS(953), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(953), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(953), + [aux_sym_escape_char_token1] = ACTIONS(953), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(953), + [aux_sym_fingerprint_hash_token1] = ACTIONS(953), + [aux_sym_fork_after_authentication_token1] = ACTIONS(953), + [aux_sym_forward_agent_token1] = ACTIONS(953), + [aux_sym_forward_x11_token1] = ACTIONS(955), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(953), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(953), + [aux_sym_gateway_ports_token1] = ACTIONS(953), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(953), + [aux_sym_gssapi_authentication_token1] = ACTIONS(953), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(953), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(953), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(953), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(953), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(953), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(953), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(953), + [aux_sym_hash_known_hosts_token1] = ACTIONS(953), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(953), + [aux_sym_hostbased_authentication_token1] = ACTIONS(953), + [aux_sym_host_key_algorithms_token1] = ACTIONS(953), + [aux_sym_host_key_alias_token1] = ACTIONS(953), + [aux_sym_hostname_token1] = ACTIONS(953), + [aux_sym_identities_only_token1] = ACTIONS(953), + [aux_sym_identity_agent_token1] = ACTIONS(953), + [aux_sym_identity_file_token1] = ACTIONS(953), + [aux_sym_ignore_unknown_token1] = ACTIONS(953), + [aux_sym_include_token1] = ACTIONS(953), + [aux_sym_ip_qos_token1] = ACTIONS(953), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(953), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(953), + [aux_sym_kex_algorithms_token1] = ACTIONS(953), + [aux_sym_known_hosts_command_token1] = ACTIONS(953), + [aux_sym_local_command_token1] = ACTIONS(953), + [aux_sym_local_forward_token1] = ACTIONS(953), + [aux_sym_log_level_token1] = ACTIONS(953), + [aux_sym_log_verbose_token1] = ACTIONS(953), + [aux_sym_macs_token1] = ACTIONS(953), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(953), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(953), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(953), + [aux_sym_password_authentication_token1] = ACTIONS(953), + [aux_sym_permit_local_command_token1] = ACTIONS(953), + [aux_sym_permit_remote_open_token1] = ACTIONS(953), + [aux_sym_pkcs11_provider_token1] = ACTIONS(953), + [aux_sym_port_token1] = ACTIONS(953), + [aux_sym_preferred_authentications_token1] = ACTIONS(953), + [aux_sym_protocol_token1] = ACTIONS(953), + [aux_sym_proxy_command_token1] = ACTIONS(953), + [aux_sym_proxy_jump_token1] = ACTIONS(953), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(953), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(953), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(953), + [aux_sym_pubkey_authentication_token1] = ACTIONS(953), + [aux_sym_rekey_limit_token1] = ACTIONS(953), + [aux_sym_remote_command_token1] = ACTIONS(953), + [aux_sym_remote_forward_token1] = ACTIONS(953), + [aux_sym_request_tty_token1] = ACTIONS(953), + [aux_sym_required_rsa_size_token1] = ACTIONS(953), + [aux_sym_revoked_host_keys_token1] = ACTIONS(953), + [aux_sym_security_key_provider_token1] = ACTIONS(953), + [aux_sym_send_env_token1] = ACTIONS(953), + [aux_sym_server_alive_count_max_token1] = ACTIONS(953), + [aux_sym_server_alive_interval_token1] = ACTIONS(953), + [aux_sym_session_type_token1] = ACTIONS(953), + [aux_sym_set_env_token1] = ACTIONS(953), + [aux_sym_stdin_null_token1] = ACTIONS(953), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(953), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(953), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(953), + [aux_sym_syslog_facility_token1] = ACTIONS(953), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(953), + [aux_sym_keep_alive_token1] = ACTIONS(953), + [aux_sym_tag_token1] = ACTIONS(953), + [aux_sym_tunnel_token1] = ACTIONS(955), + [aux_sym_tunnel_device_token1] = ACTIONS(953), + [aux_sym_update_host_keys_token1] = ACTIONS(953), + [aux_sym_use_keychain_token1] = ACTIONS(953), + [aux_sym_use_roaming_token1] = ACTIONS(953), + [aux_sym_user_token1] = ACTIONS(955), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(953), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(953), + [aux_sym_visual_host_key_token1] = ACTIONS(953), + [aux_sym_xauth_location_token1] = ACTIONS(953), }, [733] = { - [ts_builtin_sym_end] = ACTIONS(798), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(800), - [aux_sym_match_token1] = ACTIONS(798), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(798), - [aux_sym_address_family_token1] = ACTIONS(798), - [aux_sym_batch_mode_token1] = ACTIONS(798), - [aux_sym_bind_address_token1] = ACTIONS(798), - [aux_sym_bind_interface_token1] = ACTIONS(798), - [aux_sym_canonical_domains_token1] = ACTIONS(798), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(798), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(798), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(798), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(798), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(798), - [aux_sym_certificate_file_token1] = ACTIONS(798), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(798), - [aux_sym_channel_timeout_token1] = ACTIONS(798), - [aux_sym_check_host_ip_token1] = ACTIONS(798), - [aux_sym_ciphers_token1] = ACTIONS(798), - [aux_sym_cipher_token1] = ACTIONS(800), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(798), - [aux_sym_compression_token1] = ACTIONS(798), - [aux_sym_connection_attempts_token1] = ACTIONS(798), - [aux_sym_connect_timeout_token1] = ACTIONS(798), - [aux_sym_control_master_token1] = ACTIONS(798), - [aux_sym_control_path_token1] = ACTIONS(798), - [aux_sym_control_persist_token1] = ACTIONS(798), - [aux_sym_dynamic_forward_token1] = ACTIONS(798), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(798), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(798), - [aux_sym_escape_char_token1] = ACTIONS(798), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(798), - [aux_sym_fingerprint_hash_token1] = ACTIONS(798), - [aux_sym_fork_after_authentication_token1] = ACTIONS(798), - [aux_sym_forward_agent_token1] = ACTIONS(798), - [aux_sym_forward_x11_token1] = ACTIONS(800), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(798), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(798), - [aux_sym_gateway_ports_token1] = ACTIONS(798), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(798), - [aux_sym_gssapi_authentication_token1] = ACTIONS(798), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(798), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(798), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(798), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(798), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(798), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(798), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(798), - [aux_sym_hash_known_hosts_token1] = ACTIONS(798), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(798), - [aux_sym_hostbased_authentication_token1] = ACTIONS(798), - [aux_sym_host_key_algorithms_token1] = ACTIONS(798), - [aux_sym_host_key_alias_token1] = ACTIONS(798), - [aux_sym_hostname_token1] = ACTIONS(798), - [aux_sym_identities_only_token1] = ACTIONS(798), - [aux_sym_identity_agent_token1] = ACTIONS(798), - [aux_sym_identity_file_token1] = ACTIONS(798), - [aux_sym_ignore_unknown_token1] = ACTIONS(798), - [aux_sym_include_token1] = ACTIONS(798), - [aux_sym_ip_qos_token1] = ACTIONS(798), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(798), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(798), - [aux_sym_kex_algorithms_token1] = ACTIONS(798), - [aux_sym_known_hosts_command_token1] = ACTIONS(798), - [aux_sym_local_command_token1] = ACTIONS(798), - [aux_sym_local_forward_token1] = ACTIONS(798), - [aux_sym_log_level_token1] = ACTIONS(798), - [aux_sym_log_verbose_token1] = ACTIONS(798), - [aux_sym_macs_token1] = ACTIONS(798), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(798), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(798), - [aux_sym_password_authentication_token1] = ACTIONS(798), - [aux_sym_permit_local_command_token1] = ACTIONS(798), - [aux_sym_permit_remote_open_token1] = ACTIONS(798), - [aux_sym_pkcs11_provider_token1] = ACTIONS(798), - [aux_sym_port_token1] = ACTIONS(798), - [aux_sym_preferred_authentications_token1] = ACTIONS(798), - [aux_sym_protocol_token1] = ACTIONS(798), - [aux_sym_proxy_command_token1] = ACTIONS(798), - [aux_sym_proxy_jump_token1] = ACTIONS(798), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(798), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(798), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(798), - [aux_sym_pubkey_authentication_token1] = ACTIONS(798), - [aux_sym_rekey_limit_token1] = ACTIONS(798), - [aux_sym_remote_command_token1] = ACTIONS(798), - [aux_sym_remote_forward_token1] = ACTIONS(798), - [aux_sym_request_tty_token1] = ACTIONS(798), - [aux_sym_required_rsa_size_token1] = ACTIONS(798), - [aux_sym_revoked_host_keys_token1] = ACTIONS(798), - [aux_sym_security_key_provider_token1] = ACTIONS(798), - [aux_sym_send_env_token1] = ACTIONS(798), - [aux_sym_server_alive_count_max_token1] = ACTIONS(798), - [aux_sym_server_alive_interval_token1] = ACTIONS(798), - [aux_sym_session_type_token1] = ACTIONS(798), - [aux_sym_set_env_token1] = ACTIONS(798), - [aux_sym_stdin_null_token1] = ACTIONS(798), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(798), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(798), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(798), - [aux_sym_syslog_facility_token1] = ACTIONS(798), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(798), - [aux_sym_keep_alive_token1] = ACTIONS(798), - [aux_sym_tag_token1] = ACTIONS(798), - [aux_sym_tunnel_token1] = ACTIONS(800), - [aux_sym_tunnel_device_token1] = ACTIONS(798), - [aux_sym_update_host_keys_token1] = ACTIONS(798), - [aux_sym_use_keychain_token1] = ACTIONS(798), - [aux_sym_use_roaming_token1] = ACTIONS(798), - [aux_sym_user_token1] = ACTIONS(800), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(798), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(798), - [aux_sym_visual_host_key_token1] = ACTIONS(798), - [aux_sym_xauth_location_token1] = ACTIONS(798), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1883), + [aux_sym_match_token1] = ACTIONS(1881), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1881), + [aux_sym_address_family_token1] = ACTIONS(1881), + [aux_sym_batch_mode_token1] = ACTIONS(1881), + [aux_sym_bind_address_token1] = ACTIONS(1881), + [aux_sym_bind_interface_token1] = ACTIONS(1881), + [aux_sym_canonical_domains_token1] = ACTIONS(1881), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1881), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1881), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1881), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1881), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1881), + [aux_sym_certificate_file_token1] = ACTIONS(1881), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1881), + [aux_sym_channel_timeout_token1] = ACTIONS(1881), + [aux_sym_check_host_ip_token1] = ACTIONS(1881), + [aux_sym_ciphers_token1] = ACTIONS(1881), + [aux_sym_cipher_token1] = ACTIONS(1883), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1881), + [aux_sym_compression_token1] = ACTIONS(1881), + [aux_sym_connection_attempts_token1] = ACTIONS(1881), + [aux_sym_connect_timeout_token1] = ACTIONS(1881), + [aux_sym_control_master_token1] = ACTIONS(1881), + [aux_sym_control_path_token1] = ACTIONS(1881), + [aux_sym_control_persist_token1] = ACTIONS(1881), + [aux_sym_dynamic_forward_token1] = ACTIONS(1881), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1881), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1881), + [aux_sym_escape_char_token1] = ACTIONS(1881), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1881), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1881), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1881), + [aux_sym_forward_agent_token1] = ACTIONS(1881), + [aux_sym_forward_x11_token1] = ACTIONS(1883), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1881), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1881), + [aux_sym_gateway_ports_token1] = ACTIONS(1881), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1881), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1881), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1881), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1881), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1881), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1881), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1881), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1881), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1881), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1881), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1881), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1881), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1881), + [aux_sym_host_key_alias_token1] = ACTIONS(1881), + [aux_sym_hostname_token1] = ACTIONS(1881), + [aux_sym_identities_only_token1] = ACTIONS(1881), + [aux_sym_identity_agent_token1] = ACTIONS(1881), + [aux_sym_identity_file_token1] = ACTIONS(1881), + [aux_sym_ignore_unknown_token1] = ACTIONS(1881), + [aux_sym_include_token1] = ACTIONS(1881), + [aux_sym_ip_qos_token1] = ACTIONS(1881), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1881), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1881), + [aux_sym_kex_algorithms_token1] = ACTIONS(1881), + [aux_sym_known_hosts_command_token1] = ACTIONS(1881), + [aux_sym_local_command_token1] = ACTIONS(1881), + [aux_sym_local_forward_token1] = ACTIONS(1881), + [aux_sym_log_level_token1] = ACTIONS(1881), + [aux_sym_log_verbose_token1] = ACTIONS(1881), + [aux_sym_macs_token1] = ACTIONS(1881), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1881), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1881), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1881), + [aux_sym_password_authentication_token1] = ACTIONS(1881), + [aux_sym_permit_local_command_token1] = ACTIONS(1881), + [aux_sym_permit_remote_open_token1] = ACTIONS(1881), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1881), + [aux_sym_port_token1] = ACTIONS(1881), + [aux_sym_preferred_authentications_token1] = ACTIONS(1881), + [aux_sym_protocol_token1] = ACTIONS(1881), + [aux_sym_proxy_command_token1] = ACTIONS(1881), + [aux_sym_proxy_jump_token1] = ACTIONS(1881), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1881), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1881), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1881), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1881), + [aux_sym_rekey_limit_token1] = ACTIONS(1881), + [aux_sym_remote_command_token1] = ACTIONS(1881), + [aux_sym_remote_forward_token1] = ACTIONS(1881), + [aux_sym_request_tty_token1] = ACTIONS(1881), + [aux_sym_required_rsa_size_token1] = ACTIONS(1881), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1881), + [aux_sym_security_key_provider_token1] = ACTIONS(1881), + [aux_sym_send_env_token1] = ACTIONS(1881), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1881), + [aux_sym_server_alive_interval_token1] = ACTIONS(1881), + [aux_sym_session_type_token1] = ACTIONS(1881), + [aux_sym_set_env_token1] = ACTIONS(1881), + [aux_sym_stdin_null_token1] = ACTIONS(1881), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1881), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1881), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1881), + [aux_sym_syslog_facility_token1] = ACTIONS(1881), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1881), + [aux_sym_keep_alive_token1] = ACTIONS(1881), + [aux_sym_tag_token1] = ACTIONS(1881), + [aux_sym_tunnel_token1] = ACTIONS(1883), + [aux_sym_tunnel_device_token1] = ACTIONS(1881), + [aux_sym_update_host_keys_token1] = ACTIONS(1881), + [aux_sym_use_keychain_token1] = ACTIONS(1881), + [aux_sym_use_roaming_token1] = ACTIONS(1881), + [aux_sym_user_token1] = ACTIONS(1883), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1881), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1881), + [aux_sym_visual_host_key_token1] = ACTIONS(1881), + [aux_sym_xauth_location_token1] = ACTIONS(1881), }, [734] = { - [ts_builtin_sym_end] = ACTIONS(602), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(604), - [aux_sym_match_token1] = ACTIONS(602), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(602), - [aux_sym_address_family_token1] = ACTIONS(602), - [aux_sym_batch_mode_token1] = ACTIONS(602), - [aux_sym_bind_address_token1] = ACTIONS(602), - [aux_sym_bind_interface_token1] = ACTIONS(602), - [aux_sym_canonical_domains_token1] = ACTIONS(602), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(602), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(602), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(602), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(602), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(602), - [aux_sym_certificate_file_token1] = ACTIONS(602), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(602), - [aux_sym_channel_timeout_token1] = ACTIONS(602), - [aux_sym_check_host_ip_token1] = ACTIONS(602), - [aux_sym_ciphers_token1] = ACTIONS(602), - [aux_sym_cipher_token1] = ACTIONS(604), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(602), - [aux_sym_compression_token1] = ACTIONS(602), - [aux_sym_connection_attempts_token1] = ACTIONS(602), - [aux_sym_connect_timeout_token1] = ACTIONS(602), - [aux_sym_control_master_token1] = ACTIONS(602), - [aux_sym_control_path_token1] = ACTIONS(602), - [aux_sym_control_persist_token1] = ACTIONS(602), - [aux_sym_dynamic_forward_token1] = ACTIONS(602), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(602), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(602), - [aux_sym_escape_char_token1] = ACTIONS(602), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(602), - [aux_sym_fingerprint_hash_token1] = ACTIONS(602), - [aux_sym_fork_after_authentication_token1] = ACTIONS(602), - [aux_sym_forward_agent_token1] = ACTIONS(602), - [aux_sym_forward_x11_token1] = ACTIONS(604), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(602), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(602), - [aux_sym_gateway_ports_token1] = ACTIONS(602), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(602), - [aux_sym_gssapi_authentication_token1] = ACTIONS(602), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(602), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(602), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(602), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(602), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(602), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(602), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(602), - [aux_sym_hash_known_hosts_token1] = ACTIONS(602), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(602), - [aux_sym_hostbased_authentication_token1] = ACTIONS(602), - [aux_sym_host_key_algorithms_token1] = ACTIONS(602), - [aux_sym_host_key_alias_token1] = ACTIONS(602), - [aux_sym_hostname_token1] = ACTIONS(602), - [aux_sym_identities_only_token1] = ACTIONS(602), - [aux_sym_identity_agent_token1] = ACTIONS(602), - [aux_sym_identity_file_token1] = ACTIONS(602), - [aux_sym_ignore_unknown_token1] = ACTIONS(602), - [aux_sym_include_token1] = ACTIONS(602), - [aux_sym_ip_qos_token1] = ACTIONS(602), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(602), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(602), - [aux_sym_kex_algorithms_token1] = ACTIONS(602), - [aux_sym_known_hosts_command_token1] = ACTIONS(602), - [aux_sym_local_command_token1] = ACTIONS(602), - [aux_sym_local_forward_token1] = ACTIONS(602), - [aux_sym_log_level_token1] = ACTIONS(602), - [aux_sym_log_verbose_token1] = ACTIONS(602), - [aux_sym_macs_token1] = ACTIONS(602), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(602), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(602), - [aux_sym_password_authentication_token1] = ACTIONS(602), - [aux_sym_permit_local_command_token1] = ACTIONS(602), - [aux_sym_permit_remote_open_token1] = ACTIONS(602), - [aux_sym_pkcs11_provider_token1] = ACTIONS(602), - [aux_sym_port_token1] = ACTIONS(602), - [aux_sym_preferred_authentications_token1] = ACTIONS(602), - [aux_sym_protocol_token1] = ACTIONS(602), - [aux_sym_proxy_command_token1] = ACTIONS(602), - [aux_sym_proxy_jump_token1] = ACTIONS(602), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(602), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(602), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(602), - [aux_sym_pubkey_authentication_token1] = ACTIONS(602), - [aux_sym_rekey_limit_token1] = ACTIONS(602), - [aux_sym_remote_command_token1] = ACTIONS(602), - [aux_sym_remote_forward_token1] = ACTIONS(602), - [aux_sym_request_tty_token1] = ACTIONS(602), - [aux_sym_required_rsa_size_token1] = ACTIONS(602), - [aux_sym_revoked_host_keys_token1] = ACTIONS(602), - [aux_sym_security_key_provider_token1] = ACTIONS(602), - [aux_sym_send_env_token1] = ACTIONS(602), - [aux_sym_server_alive_count_max_token1] = ACTIONS(602), - [aux_sym_server_alive_interval_token1] = ACTIONS(602), - [aux_sym_session_type_token1] = ACTIONS(602), - [aux_sym_set_env_token1] = ACTIONS(602), - [aux_sym_stdin_null_token1] = ACTIONS(602), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(602), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(602), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(602), - [aux_sym_syslog_facility_token1] = ACTIONS(602), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(602), - [aux_sym_keep_alive_token1] = ACTIONS(602), - [aux_sym_tag_token1] = ACTIONS(602), - [aux_sym_tunnel_token1] = ACTIONS(604), - [aux_sym_tunnel_device_token1] = ACTIONS(602), - [aux_sym_update_host_keys_token1] = ACTIONS(602), - [aux_sym_use_keychain_token1] = ACTIONS(602), - [aux_sym_use_roaming_token1] = ACTIONS(602), - [aux_sym_user_token1] = ACTIONS(604), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(602), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(602), - [aux_sym_visual_host_key_token1] = ACTIONS(602), - [aux_sym_xauth_location_token1] = ACTIONS(602), + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1459), + [aux_sym_match_token1] = ACTIONS(1457), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1457), + [aux_sym_address_family_token1] = ACTIONS(1457), + [aux_sym_batch_mode_token1] = ACTIONS(1457), + [aux_sym_bind_address_token1] = ACTIONS(1457), + [aux_sym_bind_interface_token1] = ACTIONS(1457), + [aux_sym_canonical_domains_token1] = ACTIONS(1457), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1457), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1457), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1457), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1457), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1457), + [aux_sym_certificate_file_token1] = ACTIONS(1457), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1457), + [aux_sym_channel_timeout_token1] = ACTIONS(1457), + [aux_sym_check_host_ip_token1] = ACTIONS(1457), + [aux_sym_ciphers_token1] = ACTIONS(1457), + [aux_sym_cipher_token1] = ACTIONS(1459), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1457), + [aux_sym_compression_token1] = ACTIONS(1457), + [aux_sym_connection_attempts_token1] = ACTIONS(1457), + [aux_sym_connect_timeout_token1] = ACTIONS(1457), + [aux_sym_control_master_token1] = ACTIONS(1457), + [aux_sym_control_path_token1] = ACTIONS(1457), + [aux_sym_control_persist_token1] = ACTIONS(1457), + [aux_sym_dynamic_forward_token1] = ACTIONS(1457), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1457), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1457), + [aux_sym_escape_char_token1] = ACTIONS(1457), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1457), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1457), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1457), + [aux_sym_forward_agent_token1] = ACTIONS(1457), + [aux_sym_forward_x11_token1] = ACTIONS(1459), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1457), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1457), + [aux_sym_gateway_ports_token1] = ACTIONS(1457), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1457), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1457), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1457), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1457), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1457), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1457), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1457), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1457), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1457), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1457), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1457), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1457), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1457), + [aux_sym_host_key_alias_token1] = ACTIONS(1457), + [aux_sym_hostname_token1] = ACTIONS(1457), + [aux_sym_identities_only_token1] = ACTIONS(1457), + [aux_sym_identity_agent_token1] = ACTIONS(1457), + [aux_sym_identity_file_token1] = ACTIONS(1457), + [aux_sym_ignore_unknown_token1] = ACTIONS(1457), + [aux_sym_include_token1] = ACTIONS(1457), + [aux_sym_ip_qos_token1] = ACTIONS(1457), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1457), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1457), + [aux_sym_kex_algorithms_token1] = ACTIONS(1457), + [aux_sym_known_hosts_command_token1] = ACTIONS(1457), + [aux_sym_local_command_token1] = ACTIONS(1457), + [aux_sym_local_forward_token1] = ACTIONS(1457), + [aux_sym_log_level_token1] = ACTIONS(1457), + [aux_sym_log_verbose_token1] = ACTIONS(1457), + [aux_sym_macs_token1] = ACTIONS(1457), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1457), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1457), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1457), + [aux_sym_password_authentication_token1] = ACTIONS(1457), + [aux_sym_permit_local_command_token1] = ACTIONS(1457), + [aux_sym_permit_remote_open_token1] = ACTIONS(1457), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1457), + [aux_sym_port_token1] = ACTIONS(1457), + [aux_sym_preferred_authentications_token1] = ACTIONS(1457), + [aux_sym_protocol_token1] = ACTIONS(1457), + [aux_sym_proxy_command_token1] = ACTIONS(1457), + [aux_sym_proxy_jump_token1] = ACTIONS(1457), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1457), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1457), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1457), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1457), + [aux_sym_rekey_limit_token1] = ACTIONS(1457), + [aux_sym_remote_command_token1] = ACTIONS(1457), + [aux_sym_remote_forward_token1] = ACTIONS(1457), + [aux_sym_request_tty_token1] = ACTIONS(1457), + [aux_sym_required_rsa_size_token1] = ACTIONS(1457), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1457), + [aux_sym_security_key_provider_token1] = ACTIONS(1457), + [aux_sym_send_env_token1] = ACTIONS(1457), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1457), + [aux_sym_server_alive_interval_token1] = ACTIONS(1457), + [aux_sym_session_type_token1] = ACTIONS(1457), + [aux_sym_set_env_token1] = ACTIONS(1457), + [aux_sym_stdin_null_token1] = ACTIONS(1457), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1457), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1457), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1457), + [aux_sym_syslog_facility_token1] = ACTIONS(1457), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1457), + [aux_sym_keep_alive_token1] = ACTIONS(1457), + [aux_sym_tag_token1] = ACTIONS(1457), + [aux_sym_tunnel_token1] = ACTIONS(1459), + [aux_sym_tunnel_device_token1] = ACTIONS(1457), + [aux_sym_update_host_keys_token1] = ACTIONS(1457), + [aux_sym_use_keychain_token1] = ACTIONS(1457), + [aux_sym_use_roaming_token1] = ACTIONS(1457), + [aux_sym_user_token1] = ACTIONS(1459), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1457), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1457), + [aux_sym_visual_host_key_token1] = ACTIONS(1457), + [aux_sym_xauth_location_token1] = ACTIONS(1457), }, [735] = { - [ts_builtin_sym_end] = ACTIONS(1668), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1670), - [aux_sym_match_token1] = ACTIONS(1668), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1668), - [aux_sym_address_family_token1] = ACTIONS(1668), - [aux_sym_batch_mode_token1] = ACTIONS(1668), - [aux_sym_bind_address_token1] = ACTIONS(1668), - [aux_sym_bind_interface_token1] = ACTIONS(1668), - [aux_sym_canonical_domains_token1] = ACTIONS(1668), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1668), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1668), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1668), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1668), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1668), - [aux_sym_certificate_file_token1] = ACTIONS(1668), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1668), - [aux_sym_channel_timeout_token1] = ACTIONS(1668), - [aux_sym_check_host_ip_token1] = ACTIONS(1668), - [aux_sym_ciphers_token1] = ACTIONS(1668), - [aux_sym_cipher_token1] = ACTIONS(1670), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1668), - [aux_sym_compression_token1] = ACTIONS(1668), - [aux_sym_connection_attempts_token1] = ACTIONS(1668), - [aux_sym_connect_timeout_token1] = ACTIONS(1668), - [aux_sym_control_master_token1] = ACTIONS(1668), - [aux_sym_control_path_token1] = ACTIONS(1668), - [aux_sym_control_persist_token1] = ACTIONS(1668), - [aux_sym_dynamic_forward_token1] = ACTIONS(1668), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1668), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1668), - [aux_sym_escape_char_token1] = ACTIONS(1668), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1668), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1668), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1668), - [aux_sym_forward_agent_token1] = ACTIONS(1668), - [aux_sym_forward_x11_token1] = ACTIONS(1670), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1668), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1668), - [aux_sym_gateway_ports_token1] = ACTIONS(1668), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1668), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1668), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1668), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1668), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1668), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1668), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1668), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1668), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1668), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1668), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1668), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1668), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1668), - [aux_sym_host_key_alias_token1] = ACTIONS(1668), - [aux_sym_hostname_token1] = ACTIONS(1668), - [aux_sym_identities_only_token1] = ACTIONS(1668), - [aux_sym_identity_agent_token1] = ACTIONS(1668), - [aux_sym_identity_file_token1] = ACTIONS(1668), - [aux_sym_ignore_unknown_token1] = ACTIONS(1668), - [aux_sym_include_token1] = ACTIONS(1668), - [aux_sym_ip_qos_token1] = ACTIONS(1668), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1668), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1668), - [aux_sym_kex_algorithms_token1] = ACTIONS(1668), - [aux_sym_known_hosts_command_token1] = ACTIONS(1668), - [aux_sym_local_command_token1] = ACTIONS(1668), - [aux_sym_local_forward_token1] = ACTIONS(1668), - [aux_sym_log_level_token1] = ACTIONS(1668), - [aux_sym_log_verbose_token1] = ACTIONS(1668), - [aux_sym_macs_token1] = ACTIONS(1668), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1668), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1668), - [aux_sym_password_authentication_token1] = ACTIONS(1668), - [aux_sym_permit_local_command_token1] = ACTIONS(1668), - [aux_sym_permit_remote_open_token1] = ACTIONS(1668), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1668), - [aux_sym_port_token1] = ACTIONS(1668), - [aux_sym_preferred_authentications_token1] = ACTIONS(1668), - [aux_sym_protocol_token1] = ACTIONS(1668), - [aux_sym_proxy_command_token1] = ACTIONS(1668), - [aux_sym_proxy_jump_token1] = ACTIONS(1668), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1668), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1668), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1668), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1668), - [aux_sym_rekey_limit_token1] = ACTIONS(1668), - [aux_sym_remote_command_token1] = ACTIONS(1668), - [aux_sym_remote_forward_token1] = ACTIONS(1668), - [aux_sym_request_tty_token1] = ACTIONS(1668), - [aux_sym_required_rsa_size_token1] = ACTIONS(1668), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1668), - [aux_sym_security_key_provider_token1] = ACTIONS(1668), - [aux_sym_send_env_token1] = ACTIONS(1668), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1668), - [aux_sym_server_alive_interval_token1] = ACTIONS(1668), - [aux_sym_session_type_token1] = ACTIONS(1668), - [aux_sym_set_env_token1] = ACTIONS(1668), - [aux_sym_stdin_null_token1] = ACTIONS(1668), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1668), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1668), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1668), - [aux_sym_syslog_facility_token1] = ACTIONS(1668), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1668), - [aux_sym_keep_alive_token1] = ACTIONS(1668), - [aux_sym_tag_token1] = ACTIONS(1668), - [aux_sym_tunnel_token1] = ACTIONS(1670), - [aux_sym_tunnel_device_token1] = ACTIONS(1668), - [aux_sym_update_host_keys_token1] = ACTIONS(1668), - [aux_sym_use_keychain_token1] = ACTIONS(1668), - [aux_sym_use_roaming_token1] = ACTIONS(1668), - [aux_sym_user_token1] = ACTIONS(1670), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1668), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1668), - [aux_sym_visual_host_key_token1] = ACTIONS(1668), - [aux_sym_xauth_location_token1] = ACTIONS(1668), + [ts_builtin_sym_end] = ACTIONS(791), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(793), + [aux_sym_match_token1] = ACTIONS(791), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(791), + [aux_sym_address_family_token1] = ACTIONS(791), + [aux_sym_batch_mode_token1] = ACTIONS(791), + [aux_sym_bind_address_token1] = ACTIONS(791), + [aux_sym_bind_interface_token1] = ACTIONS(791), + [aux_sym_canonical_domains_token1] = ACTIONS(791), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(791), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(791), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(791), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(791), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(791), + [aux_sym_certificate_file_token1] = ACTIONS(791), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(791), + [aux_sym_channel_timeout_token1] = ACTIONS(791), + [aux_sym_check_host_ip_token1] = ACTIONS(791), + [aux_sym_ciphers_token1] = ACTIONS(791), + [aux_sym_cipher_token1] = ACTIONS(793), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(791), + [aux_sym_compression_token1] = ACTIONS(791), + [aux_sym_connection_attempts_token1] = ACTIONS(791), + [aux_sym_connect_timeout_token1] = ACTIONS(791), + [aux_sym_control_master_token1] = ACTIONS(791), + [aux_sym_control_path_token1] = ACTIONS(791), + [aux_sym_control_persist_token1] = ACTIONS(791), + [aux_sym_dynamic_forward_token1] = ACTIONS(791), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(791), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(791), + [aux_sym_escape_char_token1] = ACTIONS(791), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(791), + [aux_sym_fingerprint_hash_token1] = ACTIONS(791), + [aux_sym_fork_after_authentication_token1] = ACTIONS(791), + [aux_sym_forward_agent_token1] = ACTIONS(791), + [aux_sym_forward_x11_token1] = ACTIONS(793), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(791), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(791), + [aux_sym_gateway_ports_token1] = ACTIONS(791), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(791), + [aux_sym_gssapi_authentication_token1] = ACTIONS(791), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(791), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(791), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(791), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(791), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(791), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(791), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(791), + [aux_sym_hash_known_hosts_token1] = ACTIONS(791), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(791), + [aux_sym_hostbased_authentication_token1] = ACTIONS(791), + [aux_sym_host_key_algorithms_token1] = ACTIONS(791), + [aux_sym_host_key_alias_token1] = ACTIONS(791), + [aux_sym_hostname_token1] = ACTIONS(791), + [aux_sym_identities_only_token1] = ACTIONS(791), + [aux_sym_identity_agent_token1] = ACTIONS(791), + [aux_sym_identity_file_token1] = ACTIONS(791), + [aux_sym_ignore_unknown_token1] = ACTIONS(791), + [aux_sym_include_token1] = ACTIONS(791), + [aux_sym_ip_qos_token1] = ACTIONS(791), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(791), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(791), + [aux_sym_kex_algorithms_token1] = ACTIONS(791), + [aux_sym_known_hosts_command_token1] = ACTIONS(791), + [aux_sym_local_command_token1] = ACTIONS(791), + [aux_sym_local_forward_token1] = ACTIONS(791), + [aux_sym_log_level_token1] = ACTIONS(791), + [aux_sym_log_verbose_token1] = ACTIONS(791), + [aux_sym_macs_token1] = ACTIONS(791), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(791), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(791), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(791), + [aux_sym_password_authentication_token1] = ACTIONS(791), + [aux_sym_permit_local_command_token1] = ACTIONS(791), + [aux_sym_permit_remote_open_token1] = ACTIONS(791), + [aux_sym_pkcs11_provider_token1] = ACTIONS(791), + [aux_sym_port_token1] = ACTIONS(791), + [aux_sym_preferred_authentications_token1] = ACTIONS(791), + [aux_sym_protocol_token1] = ACTIONS(791), + [aux_sym_proxy_command_token1] = ACTIONS(791), + [aux_sym_proxy_jump_token1] = ACTIONS(791), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(791), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(791), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(791), + [aux_sym_pubkey_authentication_token1] = ACTIONS(791), + [aux_sym_rekey_limit_token1] = ACTIONS(791), + [aux_sym_remote_command_token1] = ACTIONS(791), + [aux_sym_remote_forward_token1] = ACTIONS(791), + [aux_sym_request_tty_token1] = ACTIONS(791), + [aux_sym_required_rsa_size_token1] = ACTIONS(791), + [aux_sym_revoked_host_keys_token1] = ACTIONS(791), + [aux_sym_security_key_provider_token1] = ACTIONS(791), + [aux_sym_send_env_token1] = ACTIONS(791), + [aux_sym_server_alive_count_max_token1] = ACTIONS(791), + [aux_sym_server_alive_interval_token1] = ACTIONS(791), + [aux_sym_session_type_token1] = ACTIONS(791), + [aux_sym_set_env_token1] = ACTIONS(791), + [aux_sym_stdin_null_token1] = ACTIONS(791), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(791), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(791), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(791), + [aux_sym_syslog_facility_token1] = ACTIONS(791), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(791), + [aux_sym_keep_alive_token1] = ACTIONS(791), + [aux_sym_tag_token1] = ACTIONS(791), + [aux_sym_tunnel_token1] = ACTIONS(793), + [aux_sym_tunnel_device_token1] = ACTIONS(791), + [aux_sym_update_host_keys_token1] = ACTIONS(791), + [aux_sym_use_keychain_token1] = ACTIONS(791), + [aux_sym_use_roaming_token1] = ACTIONS(791), + [aux_sym_user_token1] = ACTIONS(793), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(791), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(791), + [aux_sym_visual_host_key_token1] = ACTIONS(791), + [aux_sym_xauth_location_token1] = ACTIONS(791), }, [736] = { - [ts_builtin_sym_end] = ACTIONS(996), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(998), - [aux_sym_match_token1] = ACTIONS(996), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(996), - [aux_sym_address_family_token1] = ACTIONS(996), - [aux_sym_batch_mode_token1] = ACTIONS(996), - [aux_sym_bind_address_token1] = ACTIONS(996), - [aux_sym_bind_interface_token1] = ACTIONS(996), - [aux_sym_canonical_domains_token1] = ACTIONS(996), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(996), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(996), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(996), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(996), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(996), - [aux_sym_certificate_file_token1] = ACTIONS(996), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(996), - [aux_sym_channel_timeout_token1] = ACTIONS(996), - [aux_sym_check_host_ip_token1] = ACTIONS(996), - [aux_sym_ciphers_token1] = ACTIONS(996), - [aux_sym_cipher_token1] = ACTIONS(998), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(996), - [aux_sym_compression_token1] = ACTIONS(996), - [aux_sym_connection_attempts_token1] = ACTIONS(996), - [aux_sym_connect_timeout_token1] = ACTIONS(996), - [aux_sym_control_master_token1] = ACTIONS(996), - [aux_sym_control_path_token1] = ACTIONS(996), - [aux_sym_control_persist_token1] = ACTIONS(996), - [aux_sym_dynamic_forward_token1] = ACTIONS(996), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(996), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(996), - [aux_sym_escape_char_token1] = ACTIONS(996), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(996), - [aux_sym_fingerprint_hash_token1] = ACTIONS(996), - [aux_sym_fork_after_authentication_token1] = ACTIONS(996), - [aux_sym_forward_agent_token1] = ACTIONS(996), - [aux_sym_forward_x11_token1] = ACTIONS(998), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(996), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(996), - [aux_sym_gateway_ports_token1] = ACTIONS(996), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(996), - [aux_sym_gssapi_authentication_token1] = ACTIONS(996), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(996), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(996), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(996), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(996), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(996), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(996), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(996), - [aux_sym_hash_known_hosts_token1] = ACTIONS(996), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(996), - [aux_sym_hostbased_authentication_token1] = ACTIONS(996), - [aux_sym_host_key_algorithms_token1] = ACTIONS(996), - [aux_sym_host_key_alias_token1] = ACTIONS(996), - [aux_sym_hostname_token1] = ACTIONS(996), - [aux_sym_identities_only_token1] = ACTIONS(996), - [aux_sym_identity_agent_token1] = ACTIONS(996), - [aux_sym_identity_file_token1] = ACTIONS(996), - [aux_sym_ignore_unknown_token1] = ACTIONS(996), - [aux_sym_include_token1] = ACTIONS(996), - [aux_sym_ip_qos_token1] = ACTIONS(996), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(996), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(996), - [aux_sym_kex_algorithms_token1] = ACTIONS(996), - [aux_sym_known_hosts_command_token1] = ACTIONS(996), - [aux_sym_local_command_token1] = ACTIONS(996), - [aux_sym_local_forward_token1] = ACTIONS(996), - [aux_sym_log_level_token1] = ACTIONS(996), - [aux_sym_log_verbose_token1] = ACTIONS(996), - [aux_sym_macs_token1] = ACTIONS(996), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(996), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(996), - [aux_sym_password_authentication_token1] = ACTIONS(996), - [aux_sym_permit_local_command_token1] = ACTIONS(996), - [aux_sym_permit_remote_open_token1] = ACTIONS(996), - [aux_sym_pkcs11_provider_token1] = ACTIONS(996), - [aux_sym_port_token1] = ACTIONS(996), - [aux_sym_preferred_authentications_token1] = ACTIONS(996), - [aux_sym_protocol_token1] = ACTIONS(996), - [aux_sym_proxy_command_token1] = ACTIONS(996), - [aux_sym_proxy_jump_token1] = ACTIONS(996), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(996), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(996), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(996), - [aux_sym_pubkey_authentication_token1] = ACTIONS(996), - [aux_sym_rekey_limit_token1] = ACTIONS(996), - [aux_sym_remote_command_token1] = ACTIONS(996), - [aux_sym_remote_forward_token1] = ACTIONS(996), - [aux_sym_request_tty_token1] = ACTIONS(996), - [aux_sym_required_rsa_size_token1] = ACTIONS(996), - [aux_sym_revoked_host_keys_token1] = ACTIONS(996), - [aux_sym_security_key_provider_token1] = ACTIONS(996), - [aux_sym_send_env_token1] = ACTIONS(996), - [aux_sym_server_alive_count_max_token1] = ACTIONS(996), - [aux_sym_server_alive_interval_token1] = ACTIONS(996), - [aux_sym_session_type_token1] = ACTIONS(996), - [aux_sym_set_env_token1] = ACTIONS(996), - [aux_sym_stdin_null_token1] = ACTIONS(996), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(996), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(996), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(996), - [aux_sym_syslog_facility_token1] = ACTIONS(996), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(996), - [aux_sym_keep_alive_token1] = ACTIONS(996), - [aux_sym_tag_token1] = ACTIONS(996), - [aux_sym_tunnel_token1] = ACTIONS(998), - [aux_sym_tunnel_device_token1] = ACTIONS(996), - [aux_sym_update_host_keys_token1] = ACTIONS(996), - [aux_sym_use_keychain_token1] = ACTIONS(996), - [aux_sym_use_roaming_token1] = ACTIONS(996), - [aux_sym_user_token1] = ACTIONS(998), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(996), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(996), - [aux_sym_visual_host_key_token1] = ACTIONS(996), - [aux_sym_xauth_location_token1] = ACTIONS(996), + [ts_builtin_sym_end] = ACTIONS(1875), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1877), + [aux_sym_match_token1] = ACTIONS(1875), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1875), + [aux_sym_address_family_token1] = ACTIONS(1875), + [aux_sym_batch_mode_token1] = ACTIONS(1875), + [aux_sym_bind_address_token1] = ACTIONS(1875), + [aux_sym_bind_interface_token1] = ACTIONS(1875), + [aux_sym_canonical_domains_token1] = ACTIONS(1875), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1875), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1875), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1875), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1875), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1875), + [aux_sym_certificate_file_token1] = ACTIONS(1875), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1875), + [aux_sym_channel_timeout_token1] = ACTIONS(1875), + [aux_sym_check_host_ip_token1] = ACTIONS(1875), + [aux_sym_ciphers_token1] = ACTIONS(1875), + [aux_sym_cipher_token1] = ACTIONS(1877), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1875), + [aux_sym_compression_token1] = ACTIONS(1875), + [aux_sym_connection_attempts_token1] = ACTIONS(1875), + [aux_sym_connect_timeout_token1] = ACTIONS(1875), + [aux_sym_control_master_token1] = ACTIONS(1875), + [aux_sym_control_path_token1] = ACTIONS(1875), + [aux_sym_control_persist_token1] = ACTIONS(1875), + [aux_sym_dynamic_forward_token1] = ACTIONS(1875), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1875), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1875), + [aux_sym_escape_char_token1] = ACTIONS(1875), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1875), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1875), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1875), + [aux_sym_forward_agent_token1] = ACTIONS(1875), + [aux_sym_forward_x11_token1] = ACTIONS(1877), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1875), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1875), + [aux_sym_gateway_ports_token1] = ACTIONS(1875), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1875), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1875), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1875), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1875), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1875), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1875), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1875), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1875), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1875), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1875), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1875), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1875), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1875), + [aux_sym_host_key_alias_token1] = ACTIONS(1875), + [aux_sym_hostname_token1] = ACTIONS(1875), + [aux_sym_identities_only_token1] = ACTIONS(1875), + [aux_sym_identity_agent_token1] = ACTIONS(1875), + [aux_sym_identity_file_token1] = ACTIONS(1875), + [aux_sym_ignore_unknown_token1] = ACTIONS(1875), + [aux_sym_include_token1] = ACTIONS(1875), + [aux_sym_ip_qos_token1] = ACTIONS(1875), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1875), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1875), + [aux_sym_kex_algorithms_token1] = ACTIONS(1875), + [aux_sym_known_hosts_command_token1] = ACTIONS(1875), + [aux_sym_local_command_token1] = ACTIONS(1875), + [aux_sym_local_forward_token1] = ACTIONS(1875), + [aux_sym_log_level_token1] = ACTIONS(1875), + [aux_sym_log_verbose_token1] = ACTIONS(1875), + [aux_sym_macs_token1] = ACTIONS(1875), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1875), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1875), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1875), + [aux_sym_password_authentication_token1] = ACTIONS(1875), + [aux_sym_permit_local_command_token1] = ACTIONS(1875), + [aux_sym_permit_remote_open_token1] = ACTIONS(1875), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1875), + [aux_sym_port_token1] = ACTIONS(1875), + [aux_sym_preferred_authentications_token1] = ACTIONS(1875), + [aux_sym_protocol_token1] = ACTIONS(1875), + [aux_sym_proxy_command_token1] = ACTIONS(1875), + [aux_sym_proxy_jump_token1] = ACTIONS(1875), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1875), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1875), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1875), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1875), + [aux_sym_rekey_limit_token1] = ACTIONS(1875), + [aux_sym_remote_command_token1] = ACTIONS(1875), + [aux_sym_remote_forward_token1] = ACTIONS(1875), + [aux_sym_request_tty_token1] = ACTIONS(1875), + [aux_sym_required_rsa_size_token1] = ACTIONS(1875), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1875), + [aux_sym_security_key_provider_token1] = ACTIONS(1875), + [aux_sym_send_env_token1] = ACTIONS(1875), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1875), + [aux_sym_server_alive_interval_token1] = ACTIONS(1875), + [aux_sym_session_type_token1] = ACTIONS(1875), + [aux_sym_set_env_token1] = ACTIONS(1875), + [aux_sym_stdin_null_token1] = ACTIONS(1875), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1875), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1875), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1875), + [aux_sym_syslog_facility_token1] = ACTIONS(1875), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1875), + [aux_sym_keep_alive_token1] = ACTIONS(1875), + [aux_sym_tag_token1] = ACTIONS(1875), + [aux_sym_tunnel_token1] = ACTIONS(1877), + [aux_sym_tunnel_device_token1] = ACTIONS(1875), + [aux_sym_update_host_keys_token1] = ACTIONS(1875), + [aux_sym_use_keychain_token1] = ACTIONS(1875), + [aux_sym_use_roaming_token1] = ACTIONS(1875), + [aux_sym_user_token1] = ACTIONS(1877), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1875), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1875), + [aux_sym_visual_host_key_token1] = ACTIONS(1875), + [aux_sym_xauth_location_token1] = ACTIONS(1875), }, [737] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1676), - [aux_sym_match_token1] = ACTIONS(1674), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1674), - [aux_sym_address_family_token1] = ACTIONS(1674), - [aux_sym_batch_mode_token1] = ACTIONS(1674), - [aux_sym_bind_address_token1] = ACTIONS(1674), - [aux_sym_bind_interface_token1] = ACTIONS(1674), - [aux_sym_canonical_domains_token1] = ACTIONS(1674), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1674), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1674), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1674), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1674), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1674), - [aux_sym_certificate_file_token1] = ACTIONS(1674), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1674), - [aux_sym_channel_timeout_token1] = ACTIONS(1674), - [aux_sym_check_host_ip_token1] = ACTIONS(1674), - [aux_sym_ciphers_token1] = ACTIONS(1674), - [aux_sym_cipher_token1] = ACTIONS(1676), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1674), - [aux_sym_compression_token1] = ACTIONS(1674), - [aux_sym_connection_attempts_token1] = ACTIONS(1674), - [aux_sym_connect_timeout_token1] = ACTIONS(1674), - [aux_sym_control_master_token1] = ACTIONS(1674), - [aux_sym_control_path_token1] = ACTIONS(1674), - [aux_sym_control_persist_token1] = ACTIONS(1674), - [aux_sym_dynamic_forward_token1] = ACTIONS(1674), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1674), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1674), - [aux_sym_escape_char_token1] = ACTIONS(1674), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1674), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1674), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1674), - [aux_sym_forward_agent_token1] = ACTIONS(1674), - [aux_sym_forward_x11_token1] = ACTIONS(1676), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1674), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1674), - [aux_sym_gateway_ports_token1] = ACTIONS(1674), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1674), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1674), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1674), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1674), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1674), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1674), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1674), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1674), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1674), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1674), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1674), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1674), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1674), - [aux_sym_host_key_alias_token1] = ACTIONS(1674), - [aux_sym_hostname_token1] = ACTIONS(1674), - [aux_sym_identities_only_token1] = ACTIONS(1674), - [aux_sym_identity_agent_token1] = ACTIONS(1674), - [aux_sym_identity_file_token1] = ACTIONS(1674), - [aux_sym_ignore_unknown_token1] = ACTIONS(1674), - [aux_sym_include_token1] = ACTIONS(1674), - [aux_sym_ip_qos_token1] = ACTIONS(1674), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1674), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1674), - [aux_sym_kex_algorithms_token1] = ACTIONS(1674), - [aux_sym_known_hosts_command_token1] = ACTIONS(1674), - [aux_sym_local_command_token1] = ACTIONS(1674), - [aux_sym_local_forward_token1] = ACTIONS(1674), - [aux_sym_log_level_token1] = ACTIONS(1674), - [aux_sym_log_verbose_token1] = ACTIONS(1674), - [aux_sym_macs_token1] = ACTIONS(1674), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1674), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1674), - [aux_sym_password_authentication_token1] = ACTIONS(1674), - [aux_sym_permit_local_command_token1] = ACTIONS(1674), - [aux_sym_permit_remote_open_token1] = ACTIONS(1674), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1674), - [aux_sym_port_token1] = ACTIONS(1674), - [aux_sym_preferred_authentications_token1] = ACTIONS(1674), - [aux_sym_protocol_token1] = ACTIONS(1674), - [aux_sym_proxy_command_token1] = ACTIONS(1674), - [aux_sym_proxy_jump_token1] = ACTIONS(1674), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1674), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1674), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1674), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1674), - [aux_sym_rekey_limit_token1] = ACTIONS(1674), - [aux_sym_remote_command_token1] = ACTIONS(1674), - [aux_sym_remote_forward_token1] = ACTIONS(1674), - [aux_sym_request_tty_token1] = ACTIONS(1674), - [aux_sym_required_rsa_size_token1] = ACTIONS(1674), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1674), - [aux_sym_security_key_provider_token1] = ACTIONS(1674), - [aux_sym_send_env_token1] = ACTIONS(1674), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1674), - [aux_sym_server_alive_interval_token1] = ACTIONS(1674), - [aux_sym_session_type_token1] = ACTIONS(1674), - [aux_sym_set_env_token1] = ACTIONS(1674), - [aux_sym_stdin_null_token1] = ACTIONS(1674), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1674), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1674), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1674), - [aux_sym_syslog_facility_token1] = ACTIONS(1674), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1674), - [aux_sym_keep_alive_token1] = ACTIONS(1674), - [aux_sym_tag_token1] = ACTIONS(1674), - [aux_sym_tunnel_token1] = ACTIONS(1676), - [aux_sym_tunnel_device_token1] = ACTIONS(1674), - [aux_sym_update_host_keys_token1] = ACTIONS(1674), - [aux_sym_use_keychain_token1] = ACTIONS(1674), - [aux_sym_use_roaming_token1] = ACTIONS(1674), - [aux_sym_user_token1] = ACTIONS(1676), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1674), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1674), - [aux_sym_visual_host_key_token1] = ACTIONS(1674), - [aux_sym_xauth_location_token1] = ACTIONS(1674), + [ts_builtin_sym_end] = ACTIONS(1695), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1697), + [aux_sym_match_token1] = ACTIONS(1695), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1695), + [aux_sym_address_family_token1] = ACTIONS(1695), + [aux_sym_batch_mode_token1] = ACTIONS(1695), + [aux_sym_bind_address_token1] = ACTIONS(1695), + [aux_sym_bind_interface_token1] = ACTIONS(1695), + [aux_sym_canonical_domains_token1] = ACTIONS(1695), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1695), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1695), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1695), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1695), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1695), + [aux_sym_certificate_file_token1] = ACTIONS(1695), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1695), + [aux_sym_channel_timeout_token1] = ACTIONS(1695), + [aux_sym_check_host_ip_token1] = ACTIONS(1695), + [aux_sym_ciphers_token1] = ACTIONS(1695), + [aux_sym_cipher_token1] = ACTIONS(1697), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1695), + [aux_sym_compression_token1] = ACTIONS(1695), + [aux_sym_connection_attempts_token1] = ACTIONS(1695), + [aux_sym_connect_timeout_token1] = ACTIONS(1695), + [aux_sym_control_master_token1] = ACTIONS(1695), + [aux_sym_control_path_token1] = ACTIONS(1695), + [aux_sym_control_persist_token1] = ACTIONS(1695), + [aux_sym_dynamic_forward_token1] = ACTIONS(1695), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1695), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1695), + [aux_sym_escape_char_token1] = ACTIONS(1695), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1695), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1695), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1695), + [aux_sym_forward_agent_token1] = ACTIONS(1695), + [aux_sym_forward_x11_token1] = ACTIONS(1697), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1695), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1695), + [aux_sym_gateway_ports_token1] = ACTIONS(1695), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1695), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1695), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1695), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1695), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1695), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1695), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1695), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1695), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1695), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1695), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1695), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1695), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1695), + [aux_sym_host_key_alias_token1] = ACTIONS(1695), + [aux_sym_hostname_token1] = ACTIONS(1695), + [aux_sym_identities_only_token1] = ACTIONS(1695), + [aux_sym_identity_agent_token1] = ACTIONS(1695), + [aux_sym_identity_file_token1] = ACTIONS(1695), + [aux_sym_ignore_unknown_token1] = ACTIONS(1695), + [aux_sym_include_token1] = ACTIONS(1695), + [aux_sym_ip_qos_token1] = ACTIONS(1695), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1695), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1695), + [aux_sym_kex_algorithms_token1] = ACTIONS(1695), + [aux_sym_known_hosts_command_token1] = ACTIONS(1695), + [aux_sym_local_command_token1] = ACTIONS(1695), + [aux_sym_local_forward_token1] = ACTIONS(1695), + [aux_sym_log_level_token1] = ACTIONS(1695), + [aux_sym_log_verbose_token1] = ACTIONS(1695), + [aux_sym_macs_token1] = ACTIONS(1695), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1695), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1695), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1695), + [aux_sym_password_authentication_token1] = ACTIONS(1695), + [aux_sym_permit_local_command_token1] = ACTIONS(1695), + [aux_sym_permit_remote_open_token1] = ACTIONS(1695), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1695), + [aux_sym_port_token1] = ACTIONS(1695), + [aux_sym_preferred_authentications_token1] = ACTIONS(1695), + [aux_sym_protocol_token1] = ACTIONS(1695), + [aux_sym_proxy_command_token1] = ACTIONS(1695), + [aux_sym_proxy_jump_token1] = ACTIONS(1695), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1695), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1695), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1695), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1695), + [aux_sym_rekey_limit_token1] = ACTIONS(1695), + [aux_sym_remote_command_token1] = ACTIONS(1695), + [aux_sym_remote_forward_token1] = ACTIONS(1695), + [aux_sym_request_tty_token1] = ACTIONS(1695), + [aux_sym_required_rsa_size_token1] = ACTIONS(1695), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1695), + [aux_sym_security_key_provider_token1] = ACTIONS(1695), + [aux_sym_send_env_token1] = ACTIONS(1695), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1695), + [aux_sym_server_alive_interval_token1] = ACTIONS(1695), + [aux_sym_session_type_token1] = ACTIONS(1695), + [aux_sym_set_env_token1] = ACTIONS(1695), + [aux_sym_stdin_null_token1] = ACTIONS(1695), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1695), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1695), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1695), + [aux_sym_syslog_facility_token1] = ACTIONS(1695), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1695), + [aux_sym_keep_alive_token1] = ACTIONS(1695), + [aux_sym_tag_token1] = ACTIONS(1695), + [aux_sym_tunnel_token1] = ACTIONS(1697), + [aux_sym_tunnel_device_token1] = ACTIONS(1695), + [aux_sym_update_host_keys_token1] = ACTIONS(1695), + [aux_sym_use_keychain_token1] = ACTIONS(1695), + [aux_sym_use_roaming_token1] = ACTIONS(1695), + [aux_sym_user_token1] = ACTIONS(1697), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1695), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1695), + [aux_sym_visual_host_key_token1] = ACTIONS(1695), + [aux_sym_xauth_location_token1] = ACTIONS(1695), }, [738] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1844), - [aux_sym_match_token1] = ACTIONS(1842), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1842), - [aux_sym_address_family_token1] = ACTIONS(1842), - [aux_sym_batch_mode_token1] = ACTIONS(1842), - [aux_sym_bind_address_token1] = ACTIONS(1842), - [aux_sym_bind_interface_token1] = ACTIONS(1842), - [aux_sym_canonical_domains_token1] = ACTIONS(1842), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1842), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1842), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1842), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1842), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1842), - [aux_sym_certificate_file_token1] = ACTIONS(1842), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1842), - [aux_sym_channel_timeout_token1] = ACTIONS(1842), - [aux_sym_check_host_ip_token1] = ACTIONS(1842), - [aux_sym_ciphers_token1] = ACTIONS(1842), - [aux_sym_cipher_token1] = ACTIONS(1844), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1842), - [aux_sym_compression_token1] = ACTIONS(1842), - [aux_sym_connection_attempts_token1] = ACTIONS(1842), - [aux_sym_connect_timeout_token1] = ACTIONS(1842), - [aux_sym_control_master_token1] = ACTIONS(1842), - [aux_sym_control_path_token1] = ACTIONS(1842), - [aux_sym_control_persist_token1] = ACTIONS(1842), - [aux_sym_dynamic_forward_token1] = ACTIONS(1842), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1842), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1842), - [aux_sym_escape_char_token1] = ACTIONS(1842), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1842), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1842), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1842), - [aux_sym_forward_agent_token1] = ACTIONS(1842), - [aux_sym_forward_x11_token1] = ACTIONS(1844), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1842), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1842), - [aux_sym_gateway_ports_token1] = ACTIONS(1842), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1842), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1842), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1842), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1842), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1842), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1842), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1842), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1842), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1842), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1842), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1842), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1842), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1842), - [aux_sym_host_key_alias_token1] = ACTIONS(1842), - [aux_sym_hostname_token1] = ACTIONS(1842), - [aux_sym_identities_only_token1] = ACTIONS(1842), - [aux_sym_identity_agent_token1] = ACTIONS(1842), - [aux_sym_identity_file_token1] = ACTIONS(1842), - [aux_sym_ignore_unknown_token1] = ACTIONS(1842), - [aux_sym_include_token1] = ACTIONS(1842), - [aux_sym_ip_qos_token1] = ACTIONS(1842), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1842), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1842), - [aux_sym_kex_algorithms_token1] = ACTIONS(1842), - [aux_sym_known_hosts_command_token1] = ACTIONS(1842), - [aux_sym_local_command_token1] = ACTIONS(1842), - [aux_sym_local_forward_token1] = ACTIONS(1842), - [aux_sym_log_level_token1] = ACTIONS(1842), - [aux_sym_log_verbose_token1] = ACTIONS(1842), - [aux_sym_macs_token1] = ACTIONS(1842), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1842), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1842), - [aux_sym_password_authentication_token1] = ACTIONS(1842), - [aux_sym_permit_local_command_token1] = ACTIONS(1842), - [aux_sym_permit_remote_open_token1] = ACTIONS(1842), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1842), - [aux_sym_port_token1] = ACTIONS(1842), - [aux_sym_preferred_authentications_token1] = ACTIONS(1842), - [aux_sym_protocol_token1] = ACTIONS(1842), - [aux_sym_proxy_command_token1] = ACTIONS(1842), - [aux_sym_proxy_jump_token1] = ACTIONS(1842), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1842), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1842), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1842), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1842), - [aux_sym_rekey_limit_token1] = ACTIONS(1842), - [aux_sym_remote_command_token1] = ACTIONS(1842), - [aux_sym_remote_forward_token1] = ACTIONS(1842), - [aux_sym_request_tty_token1] = ACTIONS(1842), - [aux_sym_required_rsa_size_token1] = ACTIONS(1842), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1842), - [aux_sym_security_key_provider_token1] = ACTIONS(1842), - [aux_sym_send_env_token1] = ACTIONS(1842), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1842), - [aux_sym_server_alive_interval_token1] = ACTIONS(1842), - [aux_sym_session_type_token1] = ACTIONS(1842), - [aux_sym_set_env_token1] = ACTIONS(1842), - [aux_sym_stdin_null_token1] = ACTIONS(1842), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1842), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1842), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1842), - [aux_sym_syslog_facility_token1] = ACTIONS(1842), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1842), - [aux_sym_keep_alive_token1] = ACTIONS(1842), - [aux_sym_tag_token1] = ACTIONS(1842), - [aux_sym_tunnel_token1] = ACTIONS(1844), - [aux_sym_tunnel_device_token1] = ACTIONS(1842), - [aux_sym_update_host_keys_token1] = ACTIONS(1842), - [aux_sym_use_keychain_token1] = ACTIONS(1842), - [aux_sym_use_roaming_token1] = ACTIONS(1842), - [aux_sym_user_token1] = ACTIONS(1844), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1842), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1842), - [aux_sym_visual_host_key_token1] = ACTIONS(1842), - [aux_sym_xauth_location_token1] = ACTIONS(1842), + [ts_builtin_sym_end] = ACTIONS(1553), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1555), + [aux_sym_match_token1] = ACTIONS(1553), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1553), + [aux_sym_address_family_token1] = ACTIONS(1553), + [aux_sym_batch_mode_token1] = ACTIONS(1553), + [aux_sym_bind_address_token1] = ACTIONS(1553), + [aux_sym_bind_interface_token1] = ACTIONS(1553), + [aux_sym_canonical_domains_token1] = ACTIONS(1553), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1553), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1553), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1553), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1553), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1553), + [aux_sym_certificate_file_token1] = ACTIONS(1553), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1553), + [aux_sym_channel_timeout_token1] = ACTIONS(1553), + [aux_sym_check_host_ip_token1] = ACTIONS(1553), + [aux_sym_ciphers_token1] = ACTIONS(1553), + [aux_sym_cipher_token1] = ACTIONS(1555), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1553), + [aux_sym_compression_token1] = ACTIONS(1553), + [aux_sym_connection_attempts_token1] = ACTIONS(1553), + [aux_sym_connect_timeout_token1] = ACTIONS(1553), + [aux_sym_control_master_token1] = ACTIONS(1553), + [aux_sym_control_path_token1] = ACTIONS(1553), + [aux_sym_control_persist_token1] = ACTIONS(1553), + [aux_sym_dynamic_forward_token1] = ACTIONS(1553), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1553), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1553), + [aux_sym_escape_char_token1] = ACTIONS(1553), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1553), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1553), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1553), + [aux_sym_forward_agent_token1] = ACTIONS(1553), + [aux_sym_forward_x11_token1] = ACTIONS(1555), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1553), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1553), + [aux_sym_gateway_ports_token1] = ACTIONS(1553), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1553), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1553), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1553), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1553), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1553), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1553), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1553), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1553), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1553), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1553), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1553), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1553), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1553), + [aux_sym_host_key_alias_token1] = ACTIONS(1553), + [aux_sym_hostname_token1] = ACTIONS(1553), + [aux_sym_identities_only_token1] = ACTIONS(1553), + [aux_sym_identity_agent_token1] = ACTIONS(1553), + [aux_sym_identity_file_token1] = ACTIONS(1553), + [aux_sym_ignore_unknown_token1] = ACTIONS(1553), + [aux_sym_include_token1] = ACTIONS(1553), + [aux_sym_ip_qos_token1] = ACTIONS(1553), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1553), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1553), + [aux_sym_kex_algorithms_token1] = ACTIONS(1553), + [aux_sym_known_hosts_command_token1] = ACTIONS(1553), + [aux_sym_local_command_token1] = ACTIONS(1553), + [aux_sym_local_forward_token1] = ACTIONS(1553), + [aux_sym_log_level_token1] = ACTIONS(1553), + [aux_sym_log_verbose_token1] = ACTIONS(1553), + [aux_sym_macs_token1] = ACTIONS(1553), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1553), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1553), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1553), + [aux_sym_password_authentication_token1] = ACTIONS(1553), + [aux_sym_permit_local_command_token1] = ACTIONS(1553), + [aux_sym_permit_remote_open_token1] = ACTIONS(1553), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1553), + [aux_sym_port_token1] = ACTIONS(1553), + [aux_sym_preferred_authentications_token1] = ACTIONS(1553), + [aux_sym_protocol_token1] = ACTIONS(1553), + [aux_sym_proxy_command_token1] = ACTIONS(1553), + [aux_sym_proxy_jump_token1] = ACTIONS(1553), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1553), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1553), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1553), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1553), + [aux_sym_rekey_limit_token1] = ACTIONS(1553), + [aux_sym_remote_command_token1] = ACTIONS(1553), + [aux_sym_remote_forward_token1] = ACTIONS(1553), + [aux_sym_request_tty_token1] = ACTIONS(1553), + [aux_sym_required_rsa_size_token1] = ACTIONS(1553), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1553), + [aux_sym_security_key_provider_token1] = ACTIONS(1553), + [aux_sym_send_env_token1] = ACTIONS(1553), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1553), + [aux_sym_server_alive_interval_token1] = ACTIONS(1553), + [aux_sym_session_type_token1] = ACTIONS(1553), + [aux_sym_set_env_token1] = ACTIONS(1553), + [aux_sym_stdin_null_token1] = ACTIONS(1553), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1553), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1553), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1553), + [aux_sym_syslog_facility_token1] = ACTIONS(1553), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1553), + [aux_sym_keep_alive_token1] = ACTIONS(1553), + [aux_sym_tag_token1] = ACTIONS(1553), + [aux_sym_tunnel_token1] = ACTIONS(1555), + [aux_sym_tunnel_device_token1] = ACTIONS(1553), + [aux_sym_update_host_keys_token1] = ACTIONS(1553), + [aux_sym_use_keychain_token1] = ACTIONS(1553), + [aux_sym_use_roaming_token1] = ACTIONS(1553), + [aux_sym_user_token1] = ACTIONS(1555), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1553), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1553), + [aux_sym_visual_host_key_token1] = ACTIONS(1553), + [aux_sym_xauth_location_token1] = ACTIONS(1553), }, [739] = { - [ts_builtin_sym_end] = ACTIONS(804), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(806), - [aux_sym_match_token1] = ACTIONS(804), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(804), - [aux_sym_address_family_token1] = ACTIONS(804), - [aux_sym_batch_mode_token1] = ACTIONS(804), - [aux_sym_bind_address_token1] = ACTIONS(804), - [aux_sym_bind_interface_token1] = ACTIONS(804), - [aux_sym_canonical_domains_token1] = ACTIONS(804), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(804), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(804), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(804), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(804), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(804), - [aux_sym_certificate_file_token1] = ACTIONS(804), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(804), - [aux_sym_channel_timeout_token1] = ACTIONS(804), - [aux_sym_check_host_ip_token1] = ACTIONS(804), - [aux_sym_ciphers_token1] = ACTIONS(804), - [aux_sym_cipher_token1] = ACTIONS(806), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(804), - [aux_sym_compression_token1] = ACTIONS(804), - [aux_sym_connection_attempts_token1] = ACTIONS(804), - [aux_sym_connect_timeout_token1] = ACTIONS(804), - [aux_sym_control_master_token1] = ACTIONS(804), - [aux_sym_control_path_token1] = ACTIONS(804), - [aux_sym_control_persist_token1] = ACTIONS(804), - [aux_sym_dynamic_forward_token1] = ACTIONS(804), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(804), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(804), - [aux_sym_escape_char_token1] = ACTIONS(804), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(804), - [aux_sym_fingerprint_hash_token1] = ACTIONS(804), - [aux_sym_fork_after_authentication_token1] = ACTIONS(804), - [aux_sym_forward_agent_token1] = ACTIONS(804), - [aux_sym_forward_x11_token1] = ACTIONS(806), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(804), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(804), - [aux_sym_gateway_ports_token1] = ACTIONS(804), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(804), - [aux_sym_gssapi_authentication_token1] = ACTIONS(804), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(804), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(804), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(804), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(804), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(804), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(804), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(804), - [aux_sym_hash_known_hosts_token1] = ACTIONS(804), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(804), - [aux_sym_hostbased_authentication_token1] = ACTIONS(804), - [aux_sym_host_key_algorithms_token1] = ACTIONS(804), - [aux_sym_host_key_alias_token1] = ACTIONS(804), - [aux_sym_hostname_token1] = ACTIONS(804), - [aux_sym_identities_only_token1] = ACTIONS(804), - [aux_sym_identity_agent_token1] = ACTIONS(804), - [aux_sym_identity_file_token1] = ACTIONS(804), - [aux_sym_ignore_unknown_token1] = ACTIONS(804), - [aux_sym_include_token1] = ACTIONS(804), - [aux_sym_ip_qos_token1] = ACTIONS(804), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(804), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(804), - [aux_sym_kex_algorithms_token1] = ACTIONS(804), - [aux_sym_known_hosts_command_token1] = ACTIONS(804), - [aux_sym_local_command_token1] = ACTIONS(804), - [aux_sym_local_forward_token1] = ACTIONS(804), - [aux_sym_log_level_token1] = ACTIONS(804), - [aux_sym_log_verbose_token1] = ACTIONS(804), - [aux_sym_macs_token1] = ACTIONS(804), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(804), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(804), - [aux_sym_password_authentication_token1] = ACTIONS(804), - [aux_sym_permit_local_command_token1] = ACTIONS(804), - [aux_sym_permit_remote_open_token1] = ACTIONS(804), - [aux_sym_pkcs11_provider_token1] = ACTIONS(804), - [aux_sym_port_token1] = ACTIONS(804), - [aux_sym_preferred_authentications_token1] = ACTIONS(804), - [aux_sym_protocol_token1] = ACTIONS(804), - [aux_sym_proxy_command_token1] = ACTIONS(804), - [aux_sym_proxy_jump_token1] = ACTIONS(804), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(804), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(804), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(804), - [aux_sym_pubkey_authentication_token1] = ACTIONS(804), - [aux_sym_rekey_limit_token1] = ACTIONS(804), - [aux_sym_remote_command_token1] = ACTIONS(804), - [aux_sym_remote_forward_token1] = ACTIONS(804), - [aux_sym_request_tty_token1] = ACTIONS(804), - [aux_sym_required_rsa_size_token1] = ACTIONS(804), - [aux_sym_revoked_host_keys_token1] = ACTIONS(804), - [aux_sym_security_key_provider_token1] = ACTIONS(804), - [aux_sym_send_env_token1] = ACTIONS(804), - [aux_sym_server_alive_count_max_token1] = ACTIONS(804), - [aux_sym_server_alive_interval_token1] = ACTIONS(804), - [aux_sym_session_type_token1] = ACTIONS(804), - [aux_sym_set_env_token1] = ACTIONS(804), - [aux_sym_stdin_null_token1] = ACTIONS(804), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(804), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(804), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(804), - [aux_sym_syslog_facility_token1] = ACTIONS(804), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(804), - [aux_sym_keep_alive_token1] = ACTIONS(804), - [aux_sym_tag_token1] = ACTIONS(804), - [aux_sym_tunnel_token1] = ACTIONS(806), - [aux_sym_tunnel_device_token1] = ACTIONS(804), - [aux_sym_update_host_keys_token1] = ACTIONS(804), - [aux_sym_use_keychain_token1] = ACTIONS(804), - [aux_sym_use_roaming_token1] = ACTIONS(804), - [aux_sym_user_token1] = ACTIONS(806), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(804), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(804), - [aux_sym_visual_host_key_token1] = ACTIONS(804), - [aux_sym_xauth_location_token1] = ACTIONS(804), + [ts_builtin_sym_end] = ACTIONS(713), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(715), + [aux_sym_match_token1] = ACTIONS(713), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(713), + [aux_sym_address_family_token1] = ACTIONS(713), + [aux_sym_batch_mode_token1] = ACTIONS(713), + [aux_sym_bind_address_token1] = ACTIONS(713), + [aux_sym_bind_interface_token1] = ACTIONS(713), + [aux_sym_canonical_domains_token1] = ACTIONS(713), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(713), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(713), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(713), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(713), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(713), + [aux_sym_certificate_file_token1] = ACTIONS(713), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(713), + [aux_sym_channel_timeout_token1] = ACTIONS(713), + [aux_sym_check_host_ip_token1] = ACTIONS(713), + [aux_sym_ciphers_token1] = ACTIONS(713), + [aux_sym_cipher_token1] = ACTIONS(715), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(713), + [aux_sym_compression_token1] = ACTIONS(713), + [aux_sym_connection_attempts_token1] = ACTIONS(713), + [aux_sym_connect_timeout_token1] = ACTIONS(713), + [aux_sym_control_master_token1] = ACTIONS(713), + [aux_sym_control_path_token1] = ACTIONS(713), + [aux_sym_control_persist_token1] = ACTIONS(713), + [aux_sym_dynamic_forward_token1] = ACTIONS(713), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(713), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(713), + [aux_sym_escape_char_token1] = ACTIONS(713), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(713), + [aux_sym_fingerprint_hash_token1] = ACTIONS(713), + [aux_sym_fork_after_authentication_token1] = ACTIONS(713), + [aux_sym_forward_agent_token1] = ACTIONS(713), + [aux_sym_forward_x11_token1] = ACTIONS(715), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(713), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(713), + [aux_sym_gateway_ports_token1] = ACTIONS(713), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(713), + [aux_sym_gssapi_authentication_token1] = ACTIONS(713), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(713), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(713), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(713), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(713), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(713), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(713), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(713), + [aux_sym_hash_known_hosts_token1] = ACTIONS(713), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(713), + [aux_sym_hostbased_authentication_token1] = ACTIONS(713), + [aux_sym_host_key_algorithms_token1] = ACTIONS(713), + [aux_sym_host_key_alias_token1] = ACTIONS(713), + [aux_sym_hostname_token1] = ACTIONS(713), + [aux_sym_identities_only_token1] = ACTIONS(713), + [aux_sym_identity_agent_token1] = ACTIONS(713), + [aux_sym_identity_file_token1] = ACTIONS(713), + [aux_sym_ignore_unknown_token1] = ACTIONS(713), + [aux_sym_include_token1] = ACTIONS(713), + [aux_sym_ip_qos_token1] = ACTIONS(713), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(713), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(713), + [aux_sym_kex_algorithms_token1] = ACTIONS(713), + [aux_sym_known_hosts_command_token1] = ACTIONS(713), + [aux_sym_local_command_token1] = ACTIONS(713), + [aux_sym_local_forward_token1] = ACTIONS(713), + [aux_sym_log_level_token1] = ACTIONS(713), + [aux_sym_log_verbose_token1] = ACTIONS(713), + [aux_sym_macs_token1] = ACTIONS(713), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(713), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(713), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(713), + [aux_sym_password_authentication_token1] = ACTIONS(713), + [aux_sym_permit_local_command_token1] = ACTIONS(713), + [aux_sym_permit_remote_open_token1] = ACTIONS(713), + [aux_sym_pkcs11_provider_token1] = ACTIONS(713), + [aux_sym_port_token1] = ACTIONS(713), + [aux_sym_preferred_authentications_token1] = ACTIONS(713), + [aux_sym_protocol_token1] = ACTIONS(713), + [aux_sym_proxy_command_token1] = ACTIONS(713), + [aux_sym_proxy_jump_token1] = ACTIONS(713), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(713), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(713), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(713), + [aux_sym_pubkey_authentication_token1] = ACTIONS(713), + [aux_sym_rekey_limit_token1] = ACTIONS(713), + [aux_sym_remote_command_token1] = ACTIONS(713), + [aux_sym_remote_forward_token1] = ACTIONS(713), + [aux_sym_request_tty_token1] = ACTIONS(713), + [aux_sym_required_rsa_size_token1] = ACTIONS(713), + [aux_sym_revoked_host_keys_token1] = ACTIONS(713), + [aux_sym_security_key_provider_token1] = ACTIONS(713), + [aux_sym_send_env_token1] = ACTIONS(713), + [aux_sym_server_alive_count_max_token1] = ACTIONS(713), + [aux_sym_server_alive_interval_token1] = ACTIONS(713), + [aux_sym_session_type_token1] = ACTIONS(713), + [aux_sym_set_env_token1] = ACTIONS(713), + [aux_sym_stdin_null_token1] = ACTIONS(713), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(713), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(713), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(713), + [aux_sym_syslog_facility_token1] = ACTIONS(713), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(713), + [aux_sym_keep_alive_token1] = ACTIONS(713), + [aux_sym_tag_token1] = ACTIONS(713), + [aux_sym_tunnel_token1] = ACTIONS(715), + [aux_sym_tunnel_device_token1] = ACTIONS(713), + [aux_sym_update_host_keys_token1] = ACTIONS(713), + [aux_sym_use_keychain_token1] = ACTIONS(713), + [aux_sym_use_roaming_token1] = ACTIONS(713), + [aux_sym_user_token1] = ACTIONS(715), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(713), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(713), + [aux_sym_visual_host_key_token1] = ACTIONS(713), + [aux_sym_xauth_location_token1] = ACTIONS(713), }, [740] = { - [ts_builtin_sym_end] = ACTIONS(990), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(992), - [aux_sym_match_token1] = ACTIONS(990), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(990), - [aux_sym_address_family_token1] = ACTIONS(990), - [aux_sym_batch_mode_token1] = ACTIONS(990), - [aux_sym_bind_address_token1] = ACTIONS(990), - [aux_sym_bind_interface_token1] = ACTIONS(990), - [aux_sym_canonical_domains_token1] = ACTIONS(990), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(990), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(990), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(990), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(990), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(990), - [aux_sym_certificate_file_token1] = ACTIONS(990), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(990), - [aux_sym_channel_timeout_token1] = ACTIONS(990), - [aux_sym_check_host_ip_token1] = ACTIONS(990), - [aux_sym_ciphers_token1] = ACTIONS(990), - [aux_sym_cipher_token1] = ACTIONS(992), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(990), - [aux_sym_compression_token1] = ACTIONS(990), - [aux_sym_connection_attempts_token1] = ACTIONS(990), - [aux_sym_connect_timeout_token1] = ACTIONS(990), - [aux_sym_control_master_token1] = ACTIONS(990), - [aux_sym_control_path_token1] = ACTIONS(990), - [aux_sym_control_persist_token1] = ACTIONS(990), - [aux_sym_dynamic_forward_token1] = ACTIONS(990), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(990), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(990), - [aux_sym_escape_char_token1] = ACTIONS(990), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(990), - [aux_sym_fingerprint_hash_token1] = ACTIONS(990), - [aux_sym_fork_after_authentication_token1] = ACTIONS(990), - [aux_sym_forward_agent_token1] = ACTIONS(990), - [aux_sym_forward_x11_token1] = ACTIONS(992), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(990), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(990), - [aux_sym_gateway_ports_token1] = ACTIONS(990), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(990), - [aux_sym_gssapi_authentication_token1] = ACTIONS(990), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(990), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(990), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(990), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(990), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(990), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(990), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(990), - [aux_sym_hash_known_hosts_token1] = ACTIONS(990), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(990), - [aux_sym_hostbased_authentication_token1] = ACTIONS(990), - [aux_sym_host_key_algorithms_token1] = ACTIONS(990), - [aux_sym_host_key_alias_token1] = ACTIONS(990), - [aux_sym_hostname_token1] = ACTIONS(990), - [aux_sym_identities_only_token1] = ACTIONS(990), - [aux_sym_identity_agent_token1] = ACTIONS(990), - [aux_sym_identity_file_token1] = ACTIONS(990), - [aux_sym_ignore_unknown_token1] = ACTIONS(990), - [aux_sym_include_token1] = ACTIONS(990), - [aux_sym_ip_qos_token1] = ACTIONS(990), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(990), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(990), - [aux_sym_kex_algorithms_token1] = ACTIONS(990), - [aux_sym_known_hosts_command_token1] = ACTIONS(990), - [aux_sym_local_command_token1] = ACTIONS(990), - [aux_sym_local_forward_token1] = ACTIONS(990), - [aux_sym_log_level_token1] = ACTIONS(990), - [aux_sym_log_verbose_token1] = ACTIONS(990), - [aux_sym_macs_token1] = ACTIONS(990), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(990), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(990), - [aux_sym_password_authentication_token1] = ACTIONS(990), - [aux_sym_permit_local_command_token1] = ACTIONS(990), - [aux_sym_permit_remote_open_token1] = ACTIONS(990), - [aux_sym_pkcs11_provider_token1] = ACTIONS(990), - [aux_sym_port_token1] = ACTIONS(990), - [aux_sym_preferred_authentications_token1] = ACTIONS(990), - [aux_sym_protocol_token1] = ACTIONS(990), - [aux_sym_proxy_command_token1] = ACTIONS(990), - [aux_sym_proxy_jump_token1] = ACTIONS(990), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(990), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(990), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(990), - [aux_sym_pubkey_authentication_token1] = ACTIONS(990), - [aux_sym_rekey_limit_token1] = ACTIONS(990), - [aux_sym_remote_command_token1] = ACTIONS(990), - [aux_sym_remote_forward_token1] = ACTIONS(990), - [aux_sym_request_tty_token1] = ACTIONS(990), - [aux_sym_required_rsa_size_token1] = ACTIONS(990), - [aux_sym_revoked_host_keys_token1] = ACTIONS(990), - [aux_sym_security_key_provider_token1] = ACTIONS(990), - [aux_sym_send_env_token1] = ACTIONS(990), - [aux_sym_server_alive_count_max_token1] = ACTIONS(990), - [aux_sym_server_alive_interval_token1] = ACTIONS(990), - [aux_sym_session_type_token1] = ACTIONS(990), - [aux_sym_set_env_token1] = ACTIONS(990), - [aux_sym_stdin_null_token1] = ACTIONS(990), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(990), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(990), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(990), - [aux_sym_syslog_facility_token1] = ACTIONS(990), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(990), - [aux_sym_keep_alive_token1] = ACTIONS(990), - [aux_sym_tag_token1] = ACTIONS(990), - [aux_sym_tunnel_token1] = ACTIONS(992), - [aux_sym_tunnel_device_token1] = ACTIONS(990), - [aux_sym_update_host_keys_token1] = ACTIONS(990), - [aux_sym_use_keychain_token1] = ACTIONS(990), - [aux_sym_use_roaming_token1] = ACTIONS(990), - [aux_sym_user_token1] = ACTIONS(992), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(990), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(990), - [aux_sym_visual_host_key_token1] = ACTIONS(990), - [aux_sym_xauth_location_token1] = ACTIONS(990), + [ts_builtin_sym_end] = ACTIONS(607), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(609), + [aux_sym_match_token1] = ACTIONS(607), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(607), + [aux_sym_address_family_token1] = ACTIONS(607), + [aux_sym_batch_mode_token1] = ACTIONS(607), + [aux_sym_bind_address_token1] = ACTIONS(607), + [aux_sym_bind_interface_token1] = ACTIONS(607), + [aux_sym_canonical_domains_token1] = ACTIONS(607), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(607), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(607), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(607), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(607), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(607), + [aux_sym_certificate_file_token1] = ACTIONS(607), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(607), + [aux_sym_channel_timeout_token1] = ACTIONS(607), + [aux_sym_check_host_ip_token1] = ACTIONS(607), + [aux_sym_ciphers_token1] = ACTIONS(607), + [aux_sym_cipher_token1] = ACTIONS(609), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(607), + [aux_sym_compression_token1] = ACTIONS(607), + [aux_sym_connection_attempts_token1] = ACTIONS(607), + [aux_sym_connect_timeout_token1] = ACTIONS(607), + [aux_sym_control_master_token1] = ACTIONS(607), + [aux_sym_control_path_token1] = ACTIONS(607), + [aux_sym_control_persist_token1] = ACTIONS(607), + [aux_sym_dynamic_forward_token1] = ACTIONS(607), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(607), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(607), + [aux_sym_escape_char_token1] = ACTIONS(607), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(607), + [aux_sym_fingerprint_hash_token1] = ACTIONS(607), + [aux_sym_fork_after_authentication_token1] = ACTIONS(607), + [aux_sym_forward_agent_token1] = ACTIONS(607), + [aux_sym_forward_x11_token1] = ACTIONS(609), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(607), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(607), + [aux_sym_gateway_ports_token1] = ACTIONS(607), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(607), + [aux_sym_gssapi_authentication_token1] = ACTIONS(607), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(607), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(607), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(607), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(607), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(607), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(607), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(607), + [aux_sym_hash_known_hosts_token1] = ACTIONS(607), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(607), + [aux_sym_hostbased_authentication_token1] = ACTIONS(607), + [aux_sym_host_key_algorithms_token1] = ACTIONS(607), + [aux_sym_host_key_alias_token1] = ACTIONS(607), + [aux_sym_hostname_token1] = ACTIONS(607), + [aux_sym_identities_only_token1] = ACTIONS(607), + [aux_sym_identity_agent_token1] = ACTIONS(607), + [aux_sym_identity_file_token1] = ACTIONS(607), + [aux_sym_ignore_unknown_token1] = ACTIONS(607), + [aux_sym_include_token1] = ACTIONS(607), + [aux_sym_ip_qos_token1] = ACTIONS(607), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(607), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(607), + [aux_sym_kex_algorithms_token1] = ACTIONS(607), + [aux_sym_known_hosts_command_token1] = ACTIONS(607), + [aux_sym_local_command_token1] = ACTIONS(607), + [aux_sym_local_forward_token1] = ACTIONS(607), + [aux_sym_log_level_token1] = ACTIONS(607), + [aux_sym_log_verbose_token1] = ACTIONS(607), + [aux_sym_macs_token1] = ACTIONS(607), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(607), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(607), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(607), + [aux_sym_password_authentication_token1] = ACTIONS(607), + [aux_sym_permit_local_command_token1] = ACTIONS(607), + [aux_sym_permit_remote_open_token1] = ACTIONS(607), + [aux_sym_pkcs11_provider_token1] = ACTIONS(607), + [aux_sym_port_token1] = ACTIONS(607), + [aux_sym_preferred_authentications_token1] = ACTIONS(607), + [aux_sym_protocol_token1] = ACTIONS(607), + [aux_sym_proxy_command_token1] = ACTIONS(607), + [aux_sym_proxy_jump_token1] = ACTIONS(607), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(607), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(607), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(607), + [aux_sym_pubkey_authentication_token1] = ACTIONS(607), + [aux_sym_rekey_limit_token1] = ACTIONS(607), + [aux_sym_remote_command_token1] = ACTIONS(607), + [aux_sym_remote_forward_token1] = ACTIONS(607), + [aux_sym_request_tty_token1] = ACTIONS(607), + [aux_sym_required_rsa_size_token1] = ACTIONS(607), + [aux_sym_revoked_host_keys_token1] = ACTIONS(607), + [aux_sym_security_key_provider_token1] = ACTIONS(607), + [aux_sym_send_env_token1] = ACTIONS(607), + [aux_sym_server_alive_count_max_token1] = ACTIONS(607), + [aux_sym_server_alive_interval_token1] = ACTIONS(607), + [aux_sym_session_type_token1] = ACTIONS(607), + [aux_sym_set_env_token1] = ACTIONS(607), + [aux_sym_stdin_null_token1] = ACTIONS(607), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(607), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(607), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(607), + [aux_sym_syslog_facility_token1] = ACTIONS(607), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(607), + [aux_sym_keep_alive_token1] = ACTIONS(607), + [aux_sym_tag_token1] = ACTIONS(607), + [aux_sym_tunnel_token1] = ACTIONS(609), + [aux_sym_tunnel_device_token1] = ACTIONS(607), + [aux_sym_update_host_keys_token1] = ACTIONS(607), + [aux_sym_use_keychain_token1] = ACTIONS(607), + [aux_sym_use_roaming_token1] = ACTIONS(607), + [aux_sym_user_token1] = ACTIONS(609), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(607), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(607), + [aux_sym_visual_host_key_token1] = ACTIONS(607), + [aux_sym_xauth_location_token1] = ACTIONS(607), }, [741] = { - [ts_builtin_sym_end] = ACTIONS(1836), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1838), - [aux_sym_match_token1] = ACTIONS(1836), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1836), - [aux_sym_address_family_token1] = ACTIONS(1836), - [aux_sym_batch_mode_token1] = ACTIONS(1836), - [aux_sym_bind_address_token1] = ACTIONS(1836), - [aux_sym_bind_interface_token1] = ACTIONS(1836), - [aux_sym_canonical_domains_token1] = ACTIONS(1836), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1836), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1836), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1836), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1836), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1836), - [aux_sym_certificate_file_token1] = ACTIONS(1836), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1836), - [aux_sym_channel_timeout_token1] = ACTIONS(1836), - [aux_sym_check_host_ip_token1] = ACTIONS(1836), - [aux_sym_ciphers_token1] = ACTIONS(1836), - [aux_sym_cipher_token1] = ACTIONS(1838), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1836), - [aux_sym_compression_token1] = ACTIONS(1836), - [aux_sym_connection_attempts_token1] = ACTIONS(1836), - [aux_sym_connect_timeout_token1] = ACTIONS(1836), - [aux_sym_control_master_token1] = ACTIONS(1836), - [aux_sym_control_path_token1] = ACTIONS(1836), - [aux_sym_control_persist_token1] = ACTIONS(1836), - [aux_sym_dynamic_forward_token1] = ACTIONS(1836), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1836), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1836), - [aux_sym_escape_char_token1] = ACTIONS(1836), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1836), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1836), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1836), - [aux_sym_forward_agent_token1] = ACTIONS(1836), - [aux_sym_forward_x11_token1] = ACTIONS(1838), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1836), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1836), - [aux_sym_gateway_ports_token1] = ACTIONS(1836), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1836), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1836), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1836), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1836), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1836), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1836), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1836), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1836), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1836), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1836), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1836), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1836), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1836), - [aux_sym_host_key_alias_token1] = ACTIONS(1836), - [aux_sym_hostname_token1] = ACTIONS(1836), - [aux_sym_identities_only_token1] = ACTIONS(1836), - [aux_sym_identity_agent_token1] = ACTIONS(1836), - [aux_sym_identity_file_token1] = ACTIONS(1836), - [aux_sym_ignore_unknown_token1] = ACTIONS(1836), - [aux_sym_include_token1] = ACTIONS(1836), - [aux_sym_ip_qos_token1] = ACTIONS(1836), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1836), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1836), - [aux_sym_kex_algorithms_token1] = ACTIONS(1836), - [aux_sym_known_hosts_command_token1] = ACTIONS(1836), - [aux_sym_local_command_token1] = ACTIONS(1836), - [aux_sym_local_forward_token1] = ACTIONS(1836), - [aux_sym_log_level_token1] = ACTIONS(1836), - [aux_sym_log_verbose_token1] = ACTIONS(1836), - [aux_sym_macs_token1] = ACTIONS(1836), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1836), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1836), - [aux_sym_password_authentication_token1] = ACTIONS(1836), - [aux_sym_permit_local_command_token1] = ACTIONS(1836), - [aux_sym_permit_remote_open_token1] = ACTIONS(1836), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1836), - [aux_sym_port_token1] = ACTIONS(1836), - [aux_sym_preferred_authentications_token1] = ACTIONS(1836), - [aux_sym_protocol_token1] = ACTIONS(1836), - [aux_sym_proxy_command_token1] = ACTIONS(1836), - [aux_sym_proxy_jump_token1] = ACTIONS(1836), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1836), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1836), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1836), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1836), - [aux_sym_rekey_limit_token1] = ACTIONS(1836), - [aux_sym_remote_command_token1] = ACTIONS(1836), - [aux_sym_remote_forward_token1] = ACTIONS(1836), - [aux_sym_request_tty_token1] = ACTIONS(1836), - [aux_sym_required_rsa_size_token1] = ACTIONS(1836), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1836), - [aux_sym_security_key_provider_token1] = ACTIONS(1836), - [aux_sym_send_env_token1] = ACTIONS(1836), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1836), - [aux_sym_server_alive_interval_token1] = ACTIONS(1836), - [aux_sym_session_type_token1] = ACTIONS(1836), - [aux_sym_set_env_token1] = ACTIONS(1836), - [aux_sym_stdin_null_token1] = ACTIONS(1836), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1836), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1836), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1836), - [aux_sym_syslog_facility_token1] = ACTIONS(1836), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1836), - [aux_sym_keep_alive_token1] = ACTIONS(1836), - [aux_sym_tag_token1] = ACTIONS(1836), - [aux_sym_tunnel_token1] = ACTIONS(1838), - [aux_sym_tunnel_device_token1] = ACTIONS(1836), - [aux_sym_update_host_keys_token1] = ACTIONS(1836), - [aux_sym_use_keychain_token1] = ACTIONS(1836), - [aux_sym_use_roaming_token1] = ACTIONS(1836), - [aux_sym_user_token1] = ACTIONS(1838), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1836), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1836), - [aux_sym_visual_host_key_token1] = ACTIONS(1836), - [aux_sym_xauth_location_token1] = ACTIONS(1836), + [ts_builtin_sym_end] = ACTIONS(1701), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1703), + [aux_sym_match_token1] = ACTIONS(1701), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1701), + [aux_sym_address_family_token1] = ACTIONS(1701), + [aux_sym_batch_mode_token1] = ACTIONS(1701), + [aux_sym_bind_address_token1] = ACTIONS(1701), + [aux_sym_bind_interface_token1] = ACTIONS(1701), + [aux_sym_canonical_domains_token1] = ACTIONS(1701), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1701), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1701), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1701), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1701), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1701), + [aux_sym_certificate_file_token1] = ACTIONS(1701), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1701), + [aux_sym_channel_timeout_token1] = ACTIONS(1701), + [aux_sym_check_host_ip_token1] = ACTIONS(1701), + [aux_sym_ciphers_token1] = ACTIONS(1701), + [aux_sym_cipher_token1] = ACTIONS(1703), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1701), + [aux_sym_compression_token1] = ACTIONS(1701), + [aux_sym_connection_attempts_token1] = ACTIONS(1701), + [aux_sym_connect_timeout_token1] = ACTIONS(1701), + [aux_sym_control_master_token1] = ACTIONS(1701), + [aux_sym_control_path_token1] = ACTIONS(1701), + [aux_sym_control_persist_token1] = ACTIONS(1701), + [aux_sym_dynamic_forward_token1] = ACTIONS(1701), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1701), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1701), + [aux_sym_escape_char_token1] = ACTIONS(1701), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1701), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1701), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1701), + [aux_sym_forward_agent_token1] = ACTIONS(1701), + [aux_sym_forward_x11_token1] = ACTIONS(1703), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1701), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1701), + [aux_sym_gateway_ports_token1] = ACTIONS(1701), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1701), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1701), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1701), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1701), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1701), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1701), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1701), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1701), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1701), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1701), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1701), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1701), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1701), + [aux_sym_host_key_alias_token1] = ACTIONS(1701), + [aux_sym_hostname_token1] = ACTIONS(1701), + [aux_sym_identities_only_token1] = ACTIONS(1701), + [aux_sym_identity_agent_token1] = ACTIONS(1701), + [aux_sym_identity_file_token1] = ACTIONS(1701), + [aux_sym_ignore_unknown_token1] = ACTIONS(1701), + [aux_sym_include_token1] = ACTIONS(1701), + [aux_sym_ip_qos_token1] = ACTIONS(1701), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1701), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1701), + [aux_sym_kex_algorithms_token1] = ACTIONS(1701), + [aux_sym_known_hosts_command_token1] = ACTIONS(1701), + [aux_sym_local_command_token1] = ACTIONS(1701), + [aux_sym_local_forward_token1] = ACTIONS(1701), + [aux_sym_log_level_token1] = ACTIONS(1701), + [aux_sym_log_verbose_token1] = ACTIONS(1701), + [aux_sym_macs_token1] = ACTIONS(1701), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1701), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1701), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1701), + [aux_sym_password_authentication_token1] = ACTIONS(1701), + [aux_sym_permit_local_command_token1] = ACTIONS(1701), + [aux_sym_permit_remote_open_token1] = ACTIONS(1701), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1701), + [aux_sym_port_token1] = ACTIONS(1701), + [aux_sym_preferred_authentications_token1] = ACTIONS(1701), + [aux_sym_protocol_token1] = ACTIONS(1701), + [aux_sym_proxy_command_token1] = ACTIONS(1701), + [aux_sym_proxy_jump_token1] = ACTIONS(1701), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1701), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1701), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1701), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1701), + [aux_sym_rekey_limit_token1] = ACTIONS(1701), + [aux_sym_remote_command_token1] = ACTIONS(1701), + [aux_sym_remote_forward_token1] = ACTIONS(1701), + [aux_sym_request_tty_token1] = ACTIONS(1701), + [aux_sym_required_rsa_size_token1] = ACTIONS(1701), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1701), + [aux_sym_security_key_provider_token1] = ACTIONS(1701), + [aux_sym_send_env_token1] = ACTIONS(1701), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1701), + [aux_sym_server_alive_interval_token1] = ACTIONS(1701), + [aux_sym_session_type_token1] = ACTIONS(1701), + [aux_sym_set_env_token1] = ACTIONS(1701), + [aux_sym_stdin_null_token1] = ACTIONS(1701), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1701), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1701), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1701), + [aux_sym_syslog_facility_token1] = ACTIONS(1701), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1701), + [aux_sym_keep_alive_token1] = ACTIONS(1701), + [aux_sym_tag_token1] = ACTIONS(1701), + [aux_sym_tunnel_token1] = ACTIONS(1703), + [aux_sym_tunnel_device_token1] = ACTIONS(1701), + [aux_sym_update_host_keys_token1] = ACTIONS(1701), + [aux_sym_use_keychain_token1] = ACTIONS(1701), + [aux_sym_use_roaming_token1] = ACTIONS(1701), + [aux_sym_user_token1] = ACTIONS(1703), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1701), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1701), + [aux_sym_visual_host_key_token1] = ACTIONS(1701), + [aux_sym_xauth_location_token1] = ACTIONS(1701), }, [742] = { - [ts_builtin_sym_end] = ACTIONS(810), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(812), - [aux_sym_match_token1] = ACTIONS(810), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(810), - [aux_sym_address_family_token1] = ACTIONS(810), - [aux_sym_batch_mode_token1] = ACTIONS(810), - [aux_sym_bind_address_token1] = ACTIONS(810), - [aux_sym_bind_interface_token1] = ACTIONS(810), - [aux_sym_canonical_domains_token1] = ACTIONS(810), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(810), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(810), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(810), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(810), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(810), - [aux_sym_certificate_file_token1] = ACTIONS(810), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(810), - [aux_sym_channel_timeout_token1] = ACTIONS(810), - [aux_sym_check_host_ip_token1] = ACTIONS(810), - [aux_sym_ciphers_token1] = ACTIONS(810), - [aux_sym_cipher_token1] = ACTIONS(812), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(810), - [aux_sym_compression_token1] = ACTIONS(810), - [aux_sym_connection_attempts_token1] = ACTIONS(810), - [aux_sym_connect_timeout_token1] = ACTIONS(810), - [aux_sym_control_master_token1] = ACTIONS(810), - [aux_sym_control_path_token1] = ACTIONS(810), - [aux_sym_control_persist_token1] = ACTIONS(810), - [aux_sym_dynamic_forward_token1] = ACTIONS(810), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(810), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(810), - [aux_sym_escape_char_token1] = ACTIONS(810), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(810), - [aux_sym_fingerprint_hash_token1] = ACTIONS(810), - [aux_sym_fork_after_authentication_token1] = ACTIONS(810), - [aux_sym_forward_agent_token1] = ACTIONS(810), - [aux_sym_forward_x11_token1] = ACTIONS(812), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(810), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(810), - [aux_sym_gateway_ports_token1] = ACTIONS(810), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(810), - [aux_sym_gssapi_authentication_token1] = ACTIONS(810), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(810), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(810), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(810), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(810), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(810), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(810), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(810), - [aux_sym_hash_known_hosts_token1] = ACTIONS(810), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(810), - [aux_sym_hostbased_authentication_token1] = ACTIONS(810), - [aux_sym_host_key_algorithms_token1] = ACTIONS(810), - [aux_sym_host_key_alias_token1] = ACTIONS(810), - [aux_sym_hostname_token1] = ACTIONS(810), - [aux_sym_identities_only_token1] = ACTIONS(810), - [aux_sym_identity_agent_token1] = ACTIONS(810), - [aux_sym_identity_file_token1] = ACTIONS(810), - [aux_sym_ignore_unknown_token1] = ACTIONS(810), - [aux_sym_include_token1] = ACTIONS(810), - [aux_sym_ip_qos_token1] = ACTIONS(810), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(810), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(810), - [aux_sym_kex_algorithms_token1] = ACTIONS(810), - [aux_sym_known_hosts_command_token1] = ACTIONS(810), - [aux_sym_local_command_token1] = ACTIONS(810), - [aux_sym_local_forward_token1] = ACTIONS(810), - [aux_sym_log_level_token1] = ACTIONS(810), - [aux_sym_log_verbose_token1] = ACTIONS(810), - [aux_sym_macs_token1] = ACTIONS(810), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(810), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(810), - [aux_sym_password_authentication_token1] = ACTIONS(810), - [aux_sym_permit_local_command_token1] = ACTIONS(810), - [aux_sym_permit_remote_open_token1] = ACTIONS(810), - [aux_sym_pkcs11_provider_token1] = ACTIONS(810), - [aux_sym_port_token1] = ACTIONS(810), - [aux_sym_preferred_authentications_token1] = ACTIONS(810), - [aux_sym_protocol_token1] = ACTIONS(810), - [aux_sym_proxy_command_token1] = ACTIONS(810), - [aux_sym_proxy_jump_token1] = ACTIONS(810), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(810), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(810), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(810), - [aux_sym_pubkey_authentication_token1] = ACTIONS(810), - [aux_sym_rekey_limit_token1] = ACTIONS(810), - [aux_sym_remote_command_token1] = ACTIONS(810), - [aux_sym_remote_forward_token1] = ACTIONS(810), - [aux_sym_request_tty_token1] = ACTIONS(810), - [aux_sym_required_rsa_size_token1] = ACTIONS(810), - [aux_sym_revoked_host_keys_token1] = ACTIONS(810), - [aux_sym_security_key_provider_token1] = ACTIONS(810), - [aux_sym_send_env_token1] = ACTIONS(810), - [aux_sym_server_alive_count_max_token1] = ACTIONS(810), - [aux_sym_server_alive_interval_token1] = ACTIONS(810), - [aux_sym_session_type_token1] = ACTIONS(810), - [aux_sym_set_env_token1] = ACTIONS(810), - [aux_sym_stdin_null_token1] = ACTIONS(810), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(810), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(810), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(810), - [aux_sym_syslog_facility_token1] = ACTIONS(810), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(810), - [aux_sym_keep_alive_token1] = ACTIONS(810), - [aux_sym_tag_token1] = ACTIONS(810), - [aux_sym_tunnel_token1] = ACTIONS(812), - [aux_sym_tunnel_device_token1] = ACTIONS(810), - [aux_sym_update_host_keys_token1] = ACTIONS(810), - [aux_sym_use_keychain_token1] = ACTIONS(810), - [aux_sym_use_roaming_token1] = ACTIONS(810), - [aux_sym_user_token1] = ACTIONS(812), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(810), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(810), - [aux_sym_visual_host_key_token1] = ACTIONS(810), - [aux_sym_xauth_location_token1] = ACTIONS(810), + [ts_builtin_sym_end] = ACTIONS(1547), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1549), + [aux_sym_match_token1] = ACTIONS(1547), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1547), + [aux_sym_address_family_token1] = ACTIONS(1547), + [aux_sym_batch_mode_token1] = ACTIONS(1547), + [aux_sym_bind_address_token1] = ACTIONS(1547), + [aux_sym_bind_interface_token1] = ACTIONS(1547), + [aux_sym_canonical_domains_token1] = ACTIONS(1547), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1547), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1547), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1547), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1547), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1547), + [aux_sym_certificate_file_token1] = ACTIONS(1547), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1547), + [aux_sym_channel_timeout_token1] = ACTIONS(1547), + [aux_sym_check_host_ip_token1] = ACTIONS(1547), + [aux_sym_ciphers_token1] = ACTIONS(1547), + [aux_sym_cipher_token1] = ACTIONS(1549), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1547), + [aux_sym_compression_token1] = ACTIONS(1547), + [aux_sym_connection_attempts_token1] = ACTIONS(1547), + [aux_sym_connect_timeout_token1] = ACTIONS(1547), + [aux_sym_control_master_token1] = ACTIONS(1547), + [aux_sym_control_path_token1] = ACTIONS(1547), + [aux_sym_control_persist_token1] = ACTIONS(1547), + [aux_sym_dynamic_forward_token1] = ACTIONS(1547), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1547), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1547), + [aux_sym_escape_char_token1] = ACTIONS(1547), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1547), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1547), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1547), + [aux_sym_forward_agent_token1] = ACTIONS(1547), + [aux_sym_forward_x11_token1] = ACTIONS(1549), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1547), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1547), + [aux_sym_gateway_ports_token1] = ACTIONS(1547), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1547), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1547), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1547), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1547), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1547), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1547), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1547), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1547), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1547), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1547), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1547), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1547), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1547), + [aux_sym_host_key_alias_token1] = ACTIONS(1547), + [aux_sym_hostname_token1] = ACTIONS(1547), + [aux_sym_identities_only_token1] = ACTIONS(1547), + [aux_sym_identity_agent_token1] = ACTIONS(1547), + [aux_sym_identity_file_token1] = ACTIONS(1547), + [aux_sym_ignore_unknown_token1] = ACTIONS(1547), + [aux_sym_include_token1] = ACTIONS(1547), + [aux_sym_ip_qos_token1] = ACTIONS(1547), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1547), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1547), + [aux_sym_kex_algorithms_token1] = ACTIONS(1547), + [aux_sym_known_hosts_command_token1] = ACTIONS(1547), + [aux_sym_local_command_token1] = ACTIONS(1547), + [aux_sym_local_forward_token1] = ACTIONS(1547), + [aux_sym_log_level_token1] = ACTIONS(1547), + [aux_sym_log_verbose_token1] = ACTIONS(1547), + [aux_sym_macs_token1] = ACTIONS(1547), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1547), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1547), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1547), + [aux_sym_password_authentication_token1] = ACTIONS(1547), + [aux_sym_permit_local_command_token1] = ACTIONS(1547), + [aux_sym_permit_remote_open_token1] = ACTIONS(1547), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1547), + [aux_sym_port_token1] = ACTIONS(1547), + [aux_sym_preferred_authentications_token1] = ACTIONS(1547), + [aux_sym_protocol_token1] = ACTIONS(1547), + [aux_sym_proxy_command_token1] = ACTIONS(1547), + [aux_sym_proxy_jump_token1] = ACTIONS(1547), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1547), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1547), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1547), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1547), + [aux_sym_rekey_limit_token1] = ACTIONS(1547), + [aux_sym_remote_command_token1] = ACTIONS(1547), + [aux_sym_remote_forward_token1] = ACTIONS(1547), + [aux_sym_request_tty_token1] = ACTIONS(1547), + [aux_sym_required_rsa_size_token1] = ACTIONS(1547), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1547), + [aux_sym_security_key_provider_token1] = ACTIONS(1547), + [aux_sym_send_env_token1] = ACTIONS(1547), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1547), + [aux_sym_server_alive_interval_token1] = ACTIONS(1547), + [aux_sym_session_type_token1] = ACTIONS(1547), + [aux_sym_set_env_token1] = ACTIONS(1547), + [aux_sym_stdin_null_token1] = ACTIONS(1547), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1547), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1547), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1547), + [aux_sym_syslog_facility_token1] = ACTIONS(1547), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1547), + [aux_sym_keep_alive_token1] = ACTIONS(1547), + [aux_sym_tag_token1] = ACTIONS(1547), + [aux_sym_tunnel_token1] = ACTIONS(1549), + [aux_sym_tunnel_device_token1] = ACTIONS(1547), + [aux_sym_update_host_keys_token1] = ACTIONS(1547), + [aux_sym_use_keychain_token1] = ACTIONS(1547), + [aux_sym_use_roaming_token1] = ACTIONS(1547), + [aux_sym_user_token1] = ACTIONS(1549), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1547), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1547), + [aux_sym_visual_host_key_token1] = ACTIONS(1547), + [aux_sym_xauth_location_token1] = ACTIONS(1547), }, [743] = { - [ts_builtin_sym_end] = ACTIONS(816), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(818), - [aux_sym_match_token1] = ACTIONS(816), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(816), - [aux_sym_address_family_token1] = ACTIONS(816), - [aux_sym_batch_mode_token1] = ACTIONS(816), - [aux_sym_bind_address_token1] = ACTIONS(816), - [aux_sym_bind_interface_token1] = ACTIONS(816), - [aux_sym_canonical_domains_token1] = ACTIONS(816), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(816), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(816), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(816), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(816), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(816), - [aux_sym_certificate_file_token1] = ACTIONS(816), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(816), - [aux_sym_channel_timeout_token1] = ACTIONS(816), - [aux_sym_check_host_ip_token1] = ACTIONS(816), - [aux_sym_ciphers_token1] = ACTIONS(816), - [aux_sym_cipher_token1] = ACTIONS(818), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(816), - [aux_sym_compression_token1] = ACTIONS(816), - [aux_sym_connection_attempts_token1] = ACTIONS(816), - [aux_sym_connect_timeout_token1] = ACTIONS(816), - [aux_sym_control_master_token1] = ACTIONS(816), - [aux_sym_control_path_token1] = ACTIONS(816), - [aux_sym_control_persist_token1] = ACTIONS(816), - [aux_sym_dynamic_forward_token1] = ACTIONS(816), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(816), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(816), - [aux_sym_escape_char_token1] = ACTIONS(816), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(816), - [aux_sym_fingerprint_hash_token1] = ACTIONS(816), - [aux_sym_fork_after_authentication_token1] = ACTIONS(816), - [aux_sym_forward_agent_token1] = ACTIONS(816), - [aux_sym_forward_x11_token1] = ACTIONS(818), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(816), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(816), - [aux_sym_gateway_ports_token1] = ACTIONS(816), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(816), - [aux_sym_gssapi_authentication_token1] = ACTIONS(816), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(816), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(816), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(816), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(816), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(816), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(816), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(816), - [aux_sym_hash_known_hosts_token1] = ACTIONS(816), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(816), - [aux_sym_hostbased_authentication_token1] = ACTIONS(816), - [aux_sym_host_key_algorithms_token1] = ACTIONS(816), - [aux_sym_host_key_alias_token1] = ACTIONS(816), - [aux_sym_hostname_token1] = ACTIONS(816), - [aux_sym_identities_only_token1] = ACTIONS(816), - [aux_sym_identity_agent_token1] = ACTIONS(816), - [aux_sym_identity_file_token1] = ACTIONS(816), - [aux_sym_ignore_unknown_token1] = ACTIONS(816), - [aux_sym_include_token1] = ACTIONS(816), - [aux_sym_ip_qos_token1] = ACTIONS(816), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(816), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(816), - [aux_sym_kex_algorithms_token1] = ACTIONS(816), - [aux_sym_known_hosts_command_token1] = ACTIONS(816), - [aux_sym_local_command_token1] = ACTIONS(816), - [aux_sym_local_forward_token1] = ACTIONS(816), - [aux_sym_log_level_token1] = ACTIONS(816), - [aux_sym_log_verbose_token1] = ACTIONS(816), - [aux_sym_macs_token1] = ACTIONS(816), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(816), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(816), - [aux_sym_password_authentication_token1] = ACTIONS(816), - [aux_sym_permit_local_command_token1] = ACTIONS(816), - [aux_sym_permit_remote_open_token1] = ACTIONS(816), - [aux_sym_pkcs11_provider_token1] = ACTIONS(816), - [aux_sym_port_token1] = ACTIONS(816), - [aux_sym_preferred_authentications_token1] = ACTIONS(816), - [aux_sym_protocol_token1] = ACTIONS(816), - [aux_sym_proxy_command_token1] = ACTIONS(816), - [aux_sym_proxy_jump_token1] = ACTIONS(816), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(816), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(816), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(816), - [aux_sym_pubkey_authentication_token1] = ACTIONS(816), - [aux_sym_rekey_limit_token1] = ACTIONS(816), - [aux_sym_remote_command_token1] = ACTIONS(816), - [aux_sym_remote_forward_token1] = ACTIONS(816), - [aux_sym_request_tty_token1] = ACTIONS(816), - [aux_sym_required_rsa_size_token1] = ACTIONS(816), - [aux_sym_revoked_host_keys_token1] = ACTIONS(816), - [aux_sym_security_key_provider_token1] = ACTIONS(816), - [aux_sym_send_env_token1] = ACTIONS(816), - [aux_sym_server_alive_count_max_token1] = ACTIONS(816), - [aux_sym_server_alive_interval_token1] = ACTIONS(816), - [aux_sym_session_type_token1] = ACTIONS(816), - [aux_sym_set_env_token1] = ACTIONS(816), - [aux_sym_stdin_null_token1] = ACTIONS(816), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(816), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(816), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(816), - [aux_sym_syslog_facility_token1] = ACTIONS(816), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(816), - [aux_sym_keep_alive_token1] = ACTIONS(816), - [aux_sym_tag_token1] = ACTIONS(816), - [aux_sym_tunnel_token1] = ACTIONS(818), - [aux_sym_tunnel_device_token1] = ACTIONS(816), - [aux_sym_update_host_keys_token1] = ACTIONS(816), - [aux_sym_use_keychain_token1] = ACTIONS(816), - [aux_sym_use_roaming_token1] = ACTIONS(816), - [aux_sym_user_token1] = ACTIONS(818), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(816), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(816), - [aux_sym_visual_host_key_token1] = ACTIONS(816), - [aux_sym_xauth_location_token1] = ACTIONS(816), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1709), + [aux_sym_match_token1] = ACTIONS(1707), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1707), + [aux_sym_address_family_token1] = ACTIONS(1707), + [aux_sym_batch_mode_token1] = ACTIONS(1707), + [aux_sym_bind_address_token1] = ACTIONS(1707), + [aux_sym_bind_interface_token1] = ACTIONS(1707), + [aux_sym_canonical_domains_token1] = ACTIONS(1707), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1707), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1707), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1707), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1707), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1707), + [aux_sym_certificate_file_token1] = ACTIONS(1707), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1707), + [aux_sym_channel_timeout_token1] = ACTIONS(1707), + [aux_sym_check_host_ip_token1] = ACTIONS(1707), + [aux_sym_ciphers_token1] = ACTIONS(1707), + [aux_sym_cipher_token1] = ACTIONS(1709), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1707), + [aux_sym_compression_token1] = ACTIONS(1707), + [aux_sym_connection_attempts_token1] = ACTIONS(1707), + [aux_sym_connect_timeout_token1] = ACTIONS(1707), + [aux_sym_control_master_token1] = ACTIONS(1707), + [aux_sym_control_path_token1] = ACTIONS(1707), + [aux_sym_control_persist_token1] = ACTIONS(1707), + [aux_sym_dynamic_forward_token1] = ACTIONS(1707), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1707), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1707), + [aux_sym_escape_char_token1] = ACTIONS(1707), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1707), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1707), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1707), + [aux_sym_forward_agent_token1] = ACTIONS(1707), + [aux_sym_forward_x11_token1] = ACTIONS(1709), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1707), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1707), + [aux_sym_gateway_ports_token1] = ACTIONS(1707), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1707), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1707), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1707), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1707), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1707), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1707), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1707), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1707), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1707), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1707), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1707), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1707), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1707), + [aux_sym_host_key_alias_token1] = ACTIONS(1707), + [aux_sym_hostname_token1] = ACTIONS(1707), + [aux_sym_identities_only_token1] = ACTIONS(1707), + [aux_sym_identity_agent_token1] = ACTIONS(1707), + [aux_sym_identity_file_token1] = ACTIONS(1707), + [aux_sym_ignore_unknown_token1] = ACTIONS(1707), + [aux_sym_include_token1] = ACTIONS(1707), + [aux_sym_ip_qos_token1] = ACTIONS(1707), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1707), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1707), + [aux_sym_kex_algorithms_token1] = ACTIONS(1707), + [aux_sym_known_hosts_command_token1] = ACTIONS(1707), + [aux_sym_local_command_token1] = ACTIONS(1707), + [aux_sym_local_forward_token1] = ACTIONS(1707), + [aux_sym_log_level_token1] = ACTIONS(1707), + [aux_sym_log_verbose_token1] = ACTIONS(1707), + [aux_sym_macs_token1] = ACTIONS(1707), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1707), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1707), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1707), + [aux_sym_password_authentication_token1] = ACTIONS(1707), + [aux_sym_permit_local_command_token1] = ACTIONS(1707), + [aux_sym_permit_remote_open_token1] = ACTIONS(1707), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1707), + [aux_sym_port_token1] = ACTIONS(1707), + [aux_sym_preferred_authentications_token1] = ACTIONS(1707), + [aux_sym_protocol_token1] = ACTIONS(1707), + [aux_sym_proxy_command_token1] = ACTIONS(1707), + [aux_sym_proxy_jump_token1] = ACTIONS(1707), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1707), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1707), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1707), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1707), + [aux_sym_rekey_limit_token1] = ACTIONS(1707), + [aux_sym_remote_command_token1] = ACTIONS(1707), + [aux_sym_remote_forward_token1] = ACTIONS(1707), + [aux_sym_request_tty_token1] = ACTIONS(1707), + [aux_sym_required_rsa_size_token1] = ACTIONS(1707), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1707), + [aux_sym_security_key_provider_token1] = ACTIONS(1707), + [aux_sym_send_env_token1] = ACTIONS(1707), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1707), + [aux_sym_server_alive_interval_token1] = ACTIONS(1707), + [aux_sym_session_type_token1] = ACTIONS(1707), + [aux_sym_set_env_token1] = ACTIONS(1707), + [aux_sym_stdin_null_token1] = ACTIONS(1707), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1707), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1707), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1707), + [aux_sym_syslog_facility_token1] = ACTIONS(1707), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1707), + [aux_sym_keep_alive_token1] = ACTIONS(1707), + [aux_sym_tag_token1] = ACTIONS(1707), + [aux_sym_tunnel_token1] = ACTIONS(1709), + [aux_sym_tunnel_device_token1] = ACTIONS(1707), + [aux_sym_update_host_keys_token1] = ACTIONS(1707), + [aux_sym_use_keychain_token1] = ACTIONS(1707), + [aux_sym_use_roaming_token1] = ACTIONS(1707), + [aux_sym_user_token1] = ACTIONS(1709), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1707), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1707), + [aux_sym_visual_host_key_token1] = ACTIONS(1707), + [aux_sym_xauth_location_token1] = ACTIONS(1707), }, [744] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1832), - [aux_sym_match_token1] = ACTIONS(1830), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1830), - [aux_sym_address_family_token1] = ACTIONS(1830), - [aux_sym_batch_mode_token1] = ACTIONS(1830), - [aux_sym_bind_address_token1] = ACTIONS(1830), - [aux_sym_bind_interface_token1] = ACTIONS(1830), - [aux_sym_canonical_domains_token1] = ACTIONS(1830), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1830), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1830), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1830), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1830), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1830), - [aux_sym_certificate_file_token1] = ACTIONS(1830), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1830), - [aux_sym_channel_timeout_token1] = ACTIONS(1830), - [aux_sym_check_host_ip_token1] = ACTIONS(1830), - [aux_sym_ciphers_token1] = ACTIONS(1830), - [aux_sym_cipher_token1] = ACTIONS(1832), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1830), - [aux_sym_compression_token1] = ACTIONS(1830), - [aux_sym_connection_attempts_token1] = ACTIONS(1830), - [aux_sym_connect_timeout_token1] = ACTIONS(1830), - [aux_sym_control_master_token1] = ACTIONS(1830), - [aux_sym_control_path_token1] = ACTIONS(1830), - [aux_sym_control_persist_token1] = ACTIONS(1830), - [aux_sym_dynamic_forward_token1] = ACTIONS(1830), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1830), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1830), - [aux_sym_escape_char_token1] = ACTIONS(1830), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1830), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1830), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1830), - [aux_sym_forward_agent_token1] = ACTIONS(1830), - [aux_sym_forward_x11_token1] = ACTIONS(1832), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1830), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1830), - [aux_sym_gateway_ports_token1] = ACTIONS(1830), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1830), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1830), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1830), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1830), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1830), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1830), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1830), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1830), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1830), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1830), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1830), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1830), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1830), - [aux_sym_host_key_alias_token1] = ACTIONS(1830), - [aux_sym_hostname_token1] = ACTIONS(1830), - [aux_sym_identities_only_token1] = ACTIONS(1830), - [aux_sym_identity_agent_token1] = ACTIONS(1830), - [aux_sym_identity_file_token1] = ACTIONS(1830), - [aux_sym_ignore_unknown_token1] = ACTIONS(1830), - [aux_sym_include_token1] = ACTIONS(1830), - [aux_sym_ip_qos_token1] = ACTIONS(1830), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1830), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1830), - [aux_sym_kex_algorithms_token1] = ACTIONS(1830), - [aux_sym_known_hosts_command_token1] = ACTIONS(1830), - [aux_sym_local_command_token1] = ACTIONS(1830), - [aux_sym_local_forward_token1] = ACTIONS(1830), - [aux_sym_log_level_token1] = ACTIONS(1830), - [aux_sym_log_verbose_token1] = ACTIONS(1830), - [aux_sym_macs_token1] = ACTIONS(1830), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1830), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1830), - [aux_sym_password_authentication_token1] = ACTIONS(1830), - [aux_sym_permit_local_command_token1] = ACTIONS(1830), - [aux_sym_permit_remote_open_token1] = ACTIONS(1830), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1830), - [aux_sym_port_token1] = ACTIONS(1830), - [aux_sym_preferred_authentications_token1] = ACTIONS(1830), - [aux_sym_protocol_token1] = ACTIONS(1830), - [aux_sym_proxy_command_token1] = ACTIONS(1830), - [aux_sym_proxy_jump_token1] = ACTIONS(1830), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1830), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1830), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1830), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1830), - [aux_sym_rekey_limit_token1] = ACTIONS(1830), - [aux_sym_remote_command_token1] = ACTIONS(1830), - [aux_sym_remote_forward_token1] = ACTIONS(1830), - [aux_sym_request_tty_token1] = ACTIONS(1830), - [aux_sym_required_rsa_size_token1] = ACTIONS(1830), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1830), - [aux_sym_security_key_provider_token1] = ACTIONS(1830), - [aux_sym_send_env_token1] = ACTIONS(1830), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1830), - [aux_sym_server_alive_interval_token1] = ACTIONS(1830), - [aux_sym_session_type_token1] = ACTIONS(1830), - [aux_sym_set_env_token1] = ACTIONS(1830), - [aux_sym_stdin_null_token1] = ACTIONS(1830), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1830), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1830), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1830), - [aux_sym_syslog_facility_token1] = ACTIONS(1830), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1830), - [aux_sym_keep_alive_token1] = ACTIONS(1830), - [aux_sym_tag_token1] = ACTIONS(1830), - [aux_sym_tunnel_token1] = ACTIONS(1832), - [aux_sym_tunnel_device_token1] = ACTIONS(1830), - [aux_sym_update_host_keys_token1] = ACTIONS(1830), - [aux_sym_use_keychain_token1] = ACTIONS(1830), - [aux_sym_use_roaming_token1] = ACTIONS(1830), - [aux_sym_user_token1] = ACTIONS(1832), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1830), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1830), - [aux_sym_visual_host_key_token1] = ACTIONS(1830), - [aux_sym_xauth_location_token1] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1859), + [aux_sym_match_token1] = ACTIONS(1857), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1857), + [aux_sym_address_family_token1] = ACTIONS(1857), + [aux_sym_batch_mode_token1] = ACTIONS(1857), + [aux_sym_bind_address_token1] = ACTIONS(1857), + [aux_sym_bind_interface_token1] = ACTIONS(1857), + [aux_sym_canonical_domains_token1] = ACTIONS(1857), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1857), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1857), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1857), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1857), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1857), + [aux_sym_certificate_file_token1] = ACTIONS(1857), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1857), + [aux_sym_channel_timeout_token1] = ACTIONS(1857), + [aux_sym_check_host_ip_token1] = ACTIONS(1857), + [aux_sym_ciphers_token1] = ACTIONS(1857), + [aux_sym_cipher_token1] = ACTIONS(1859), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1857), + [aux_sym_compression_token1] = ACTIONS(1857), + [aux_sym_connection_attempts_token1] = ACTIONS(1857), + [aux_sym_connect_timeout_token1] = ACTIONS(1857), + [aux_sym_control_master_token1] = ACTIONS(1857), + [aux_sym_control_path_token1] = ACTIONS(1857), + [aux_sym_control_persist_token1] = ACTIONS(1857), + [aux_sym_dynamic_forward_token1] = ACTIONS(1857), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1857), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1857), + [aux_sym_escape_char_token1] = ACTIONS(1857), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1857), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1857), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1857), + [aux_sym_forward_agent_token1] = ACTIONS(1857), + [aux_sym_forward_x11_token1] = ACTIONS(1859), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1857), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1857), + [aux_sym_gateway_ports_token1] = ACTIONS(1857), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1857), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1857), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1857), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1857), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1857), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1857), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1857), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1857), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1857), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1857), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1857), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1857), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1857), + [aux_sym_host_key_alias_token1] = ACTIONS(1857), + [aux_sym_hostname_token1] = ACTIONS(1857), + [aux_sym_identities_only_token1] = ACTIONS(1857), + [aux_sym_identity_agent_token1] = ACTIONS(1857), + [aux_sym_identity_file_token1] = ACTIONS(1857), + [aux_sym_ignore_unknown_token1] = ACTIONS(1857), + [aux_sym_include_token1] = ACTIONS(1857), + [aux_sym_ip_qos_token1] = ACTIONS(1857), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1857), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1857), + [aux_sym_kex_algorithms_token1] = ACTIONS(1857), + [aux_sym_known_hosts_command_token1] = ACTIONS(1857), + [aux_sym_local_command_token1] = ACTIONS(1857), + [aux_sym_local_forward_token1] = ACTIONS(1857), + [aux_sym_log_level_token1] = ACTIONS(1857), + [aux_sym_log_verbose_token1] = ACTIONS(1857), + [aux_sym_macs_token1] = ACTIONS(1857), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1857), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1857), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1857), + [aux_sym_password_authentication_token1] = ACTIONS(1857), + [aux_sym_permit_local_command_token1] = ACTIONS(1857), + [aux_sym_permit_remote_open_token1] = ACTIONS(1857), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1857), + [aux_sym_port_token1] = ACTIONS(1857), + [aux_sym_preferred_authentications_token1] = ACTIONS(1857), + [aux_sym_protocol_token1] = ACTIONS(1857), + [aux_sym_proxy_command_token1] = ACTIONS(1857), + [aux_sym_proxy_jump_token1] = ACTIONS(1857), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1857), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1857), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1857), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1857), + [aux_sym_rekey_limit_token1] = ACTIONS(1857), + [aux_sym_remote_command_token1] = ACTIONS(1857), + [aux_sym_remote_forward_token1] = ACTIONS(1857), + [aux_sym_request_tty_token1] = ACTIONS(1857), + [aux_sym_required_rsa_size_token1] = ACTIONS(1857), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1857), + [aux_sym_security_key_provider_token1] = ACTIONS(1857), + [aux_sym_send_env_token1] = ACTIONS(1857), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1857), + [aux_sym_server_alive_interval_token1] = ACTIONS(1857), + [aux_sym_session_type_token1] = ACTIONS(1857), + [aux_sym_set_env_token1] = ACTIONS(1857), + [aux_sym_stdin_null_token1] = ACTIONS(1857), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1857), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1857), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1857), + [aux_sym_syslog_facility_token1] = ACTIONS(1857), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1857), + [aux_sym_keep_alive_token1] = ACTIONS(1857), + [aux_sym_tag_token1] = ACTIONS(1857), + [aux_sym_tunnel_token1] = ACTIONS(1859), + [aux_sym_tunnel_device_token1] = ACTIONS(1857), + [aux_sym_update_host_keys_token1] = ACTIONS(1857), + [aux_sym_use_keychain_token1] = ACTIONS(1857), + [aux_sym_use_roaming_token1] = ACTIONS(1857), + [aux_sym_user_token1] = ACTIONS(1859), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1857), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1857), + [aux_sym_visual_host_key_token1] = ACTIONS(1857), + [aux_sym_xauth_location_token1] = ACTIONS(1857), }, [745] = { - [ts_builtin_sym_end] = ACTIONS(1680), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1682), - [aux_sym_match_token1] = ACTIONS(1680), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1680), - [aux_sym_address_family_token1] = ACTIONS(1680), - [aux_sym_batch_mode_token1] = ACTIONS(1680), - [aux_sym_bind_address_token1] = ACTIONS(1680), - [aux_sym_bind_interface_token1] = ACTIONS(1680), - [aux_sym_canonical_domains_token1] = ACTIONS(1680), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1680), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1680), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1680), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1680), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1680), - [aux_sym_certificate_file_token1] = ACTIONS(1680), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1680), - [aux_sym_channel_timeout_token1] = ACTIONS(1680), - [aux_sym_check_host_ip_token1] = ACTIONS(1680), - [aux_sym_ciphers_token1] = ACTIONS(1680), - [aux_sym_cipher_token1] = ACTIONS(1682), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1680), - [aux_sym_compression_token1] = ACTIONS(1680), - [aux_sym_connection_attempts_token1] = ACTIONS(1680), - [aux_sym_connect_timeout_token1] = ACTIONS(1680), - [aux_sym_control_master_token1] = ACTIONS(1680), - [aux_sym_control_path_token1] = ACTIONS(1680), - [aux_sym_control_persist_token1] = ACTIONS(1680), - [aux_sym_dynamic_forward_token1] = ACTIONS(1680), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1680), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1680), - [aux_sym_escape_char_token1] = ACTIONS(1680), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1680), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1680), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1680), - [aux_sym_forward_agent_token1] = ACTIONS(1680), - [aux_sym_forward_x11_token1] = ACTIONS(1682), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1680), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1680), - [aux_sym_gateway_ports_token1] = ACTIONS(1680), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1680), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1680), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1680), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1680), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1680), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1680), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1680), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1680), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1680), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1680), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1680), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1680), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1680), - [aux_sym_host_key_alias_token1] = ACTIONS(1680), - [aux_sym_hostname_token1] = ACTIONS(1680), - [aux_sym_identities_only_token1] = ACTIONS(1680), - [aux_sym_identity_agent_token1] = ACTIONS(1680), - [aux_sym_identity_file_token1] = ACTIONS(1680), - [aux_sym_ignore_unknown_token1] = ACTIONS(1680), - [aux_sym_include_token1] = ACTIONS(1680), - [aux_sym_ip_qos_token1] = ACTIONS(1680), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1680), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1680), - [aux_sym_kex_algorithms_token1] = ACTIONS(1680), - [aux_sym_known_hosts_command_token1] = ACTIONS(1680), - [aux_sym_local_command_token1] = ACTIONS(1680), - [aux_sym_local_forward_token1] = ACTIONS(1680), - [aux_sym_log_level_token1] = ACTIONS(1680), - [aux_sym_log_verbose_token1] = ACTIONS(1680), - [aux_sym_macs_token1] = ACTIONS(1680), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1680), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1680), - [aux_sym_password_authentication_token1] = ACTIONS(1680), - [aux_sym_permit_local_command_token1] = ACTIONS(1680), - [aux_sym_permit_remote_open_token1] = ACTIONS(1680), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1680), - [aux_sym_port_token1] = ACTIONS(1680), - [aux_sym_preferred_authentications_token1] = ACTIONS(1680), - [aux_sym_protocol_token1] = ACTIONS(1680), - [aux_sym_proxy_command_token1] = ACTIONS(1680), - [aux_sym_proxy_jump_token1] = ACTIONS(1680), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1680), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1680), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1680), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1680), - [aux_sym_rekey_limit_token1] = ACTIONS(1680), - [aux_sym_remote_command_token1] = ACTIONS(1680), - [aux_sym_remote_forward_token1] = ACTIONS(1680), - [aux_sym_request_tty_token1] = ACTIONS(1680), - [aux_sym_required_rsa_size_token1] = ACTIONS(1680), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1680), - [aux_sym_security_key_provider_token1] = ACTIONS(1680), - [aux_sym_send_env_token1] = ACTIONS(1680), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1680), - [aux_sym_server_alive_interval_token1] = ACTIONS(1680), - [aux_sym_session_type_token1] = ACTIONS(1680), - [aux_sym_set_env_token1] = ACTIONS(1680), - [aux_sym_stdin_null_token1] = ACTIONS(1680), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1680), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1680), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1680), - [aux_sym_syslog_facility_token1] = ACTIONS(1680), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1680), - [aux_sym_keep_alive_token1] = ACTIONS(1680), - [aux_sym_tag_token1] = ACTIONS(1680), - [aux_sym_tunnel_token1] = ACTIONS(1682), - [aux_sym_tunnel_device_token1] = ACTIONS(1680), - [aux_sym_update_host_keys_token1] = ACTIONS(1680), - [aux_sym_use_keychain_token1] = ACTIONS(1680), - [aux_sym_use_roaming_token1] = ACTIONS(1680), - [aux_sym_user_token1] = ACTIONS(1682), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1680), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1680), - [aux_sym_visual_host_key_token1] = ACTIONS(1680), - [aux_sym_xauth_location_token1] = ACTIONS(1680), + [ts_builtin_sym_end] = ACTIONS(719), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(721), + [aux_sym_match_token1] = ACTIONS(719), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(719), + [aux_sym_address_family_token1] = ACTIONS(719), + [aux_sym_batch_mode_token1] = ACTIONS(719), + [aux_sym_bind_address_token1] = ACTIONS(719), + [aux_sym_bind_interface_token1] = ACTIONS(719), + [aux_sym_canonical_domains_token1] = ACTIONS(719), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(719), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(719), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(719), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(719), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(719), + [aux_sym_certificate_file_token1] = ACTIONS(719), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(719), + [aux_sym_channel_timeout_token1] = ACTIONS(719), + [aux_sym_check_host_ip_token1] = ACTIONS(719), + [aux_sym_ciphers_token1] = ACTIONS(719), + [aux_sym_cipher_token1] = ACTIONS(721), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(719), + [aux_sym_compression_token1] = ACTIONS(719), + [aux_sym_connection_attempts_token1] = ACTIONS(719), + [aux_sym_connect_timeout_token1] = ACTIONS(719), + [aux_sym_control_master_token1] = ACTIONS(719), + [aux_sym_control_path_token1] = ACTIONS(719), + [aux_sym_control_persist_token1] = ACTIONS(719), + [aux_sym_dynamic_forward_token1] = ACTIONS(719), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(719), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(719), + [aux_sym_escape_char_token1] = ACTIONS(719), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(719), + [aux_sym_fingerprint_hash_token1] = ACTIONS(719), + [aux_sym_fork_after_authentication_token1] = ACTIONS(719), + [aux_sym_forward_agent_token1] = ACTIONS(719), + [aux_sym_forward_x11_token1] = ACTIONS(721), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(719), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(719), + [aux_sym_gateway_ports_token1] = ACTIONS(719), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(719), + [aux_sym_gssapi_authentication_token1] = ACTIONS(719), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(719), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(719), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(719), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(719), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(719), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(719), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(719), + [aux_sym_hash_known_hosts_token1] = ACTIONS(719), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(719), + [aux_sym_hostbased_authentication_token1] = ACTIONS(719), + [aux_sym_host_key_algorithms_token1] = ACTIONS(719), + [aux_sym_host_key_alias_token1] = ACTIONS(719), + [aux_sym_hostname_token1] = ACTIONS(719), + [aux_sym_identities_only_token1] = ACTIONS(719), + [aux_sym_identity_agent_token1] = ACTIONS(719), + [aux_sym_identity_file_token1] = ACTIONS(719), + [aux_sym_ignore_unknown_token1] = ACTIONS(719), + [aux_sym_include_token1] = ACTIONS(719), + [aux_sym_ip_qos_token1] = ACTIONS(719), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(719), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(719), + [aux_sym_kex_algorithms_token1] = ACTIONS(719), + [aux_sym_known_hosts_command_token1] = ACTIONS(719), + [aux_sym_local_command_token1] = ACTIONS(719), + [aux_sym_local_forward_token1] = ACTIONS(719), + [aux_sym_log_level_token1] = ACTIONS(719), + [aux_sym_log_verbose_token1] = ACTIONS(719), + [aux_sym_macs_token1] = ACTIONS(719), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(719), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(719), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(719), + [aux_sym_password_authentication_token1] = ACTIONS(719), + [aux_sym_permit_local_command_token1] = ACTIONS(719), + [aux_sym_permit_remote_open_token1] = ACTIONS(719), + [aux_sym_pkcs11_provider_token1] = ACTIONS(719), + [aux_sym_port_token1] = ACTIONS(719), + [aux_sym_preferred_authentications_token1] = ACTIONS(719), + [aux_sym_protocol_token1] = ACTIONS(719), + [aux_sym_proxy_command_token1] = ACTIONS(719), + [aux_sym_proxy_jump_token1] = ACTIONS(719), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(719), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(719), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(719), + [aux_sym_pubkey_authentication_token1] = ACTIONS(719), + [aux_sym_rekey_limit_token1] = ACTIONS(719), + [aux_sym_remote_command_token1] = ACTIONS(719), + [aux_sym_remote_forward_token1] = ACTIONS(719), + [aux_sym_request_tty_token1] = ACTIONS(719), + [aux_sym_required_rsa_size_token1] = ACTIONS(719), + [aux_sym_revoked_host_keys_token1] = ACTIONS(719), + [aux_sym_security_key_provider_token1] = ACTIONS(719), + [aux_sym_send_env_token1] = ACTIONS(719), + [aux_sym_server_alive_count_max_token1] = ACTIONS(719), + [aux_sym_server_alive_interval_token1] = ACTIONS(719), + [aux_sym_session_type_token1] = ACTIONS(719), + [aux_sym_set_env_token1] = ACTIONS(719), + [aux_sym_stdin_null_token1] = ACTIONS(719), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(719), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(719), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(719), + [aux_sym_syslog_facility_token1] = ACTIONS(719), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(719), + [aux_sym_keep_alive_token1] = ACTIONS(719), + [aux_sym_tag_token1] = ACTIONS(719), + [aux_sym_tunnel_token1] = ACTIONS(721), + [aux_sym_tunnel_device_token1] = ACTIONS(719), + [aux_sym_update_host_keys_token1] = ACTIONS(719), + [aux_sym_use_keychain_token1] = ACTIONS(719), + [aux_sym_use_roaming_token1] = ACTIONS(719), + [aux_sym_user_token1] = ACTIONS(721), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(719), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(719), + [aux_sym_visual_host_key_token1] = ACTIONS(719), + [aux_sym_xauth_location_token1] = ACTIONS(719), }, [746] = { - [ts_builtin_sym_end] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1688), - [aux_sym_match_token1] = ACTIONS(1686), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1686), - [aux_sym_address_family_token1] = ACTIONS(1686), - [aux_sym_batch_mode_token1] = ACTIONS(1686), - [aux_sym_bind_address_token1] = ACTIONS(1686), - [aux_sym_bind_interface_token1] = ACTIONS(1686), - [aux_sym_canonical_domains_token1] = ACTIONS(1686), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1686), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1686), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1686), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1686), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1686), - [aux_sym_certificate_file_token1] = ACTIONS(1686), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1686), - [aux_sym_channel_timeout_token1] = ACTIONS(1686), - [aux_sym_check_host_ip_token1] = ACTIONS(1686), - [aux_sym_ciphers_token1] = ACTIONS(1686), - [aux_sym_cipher_token1] = ACTIONS(1688), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1686), - [aux_sym_compression_token1] = ACTIONS(1686), - [aux_sym_connection_attempts_token1] = ACTIONS(1686), - [aux_sym_connect_timeout_token1] = ACTIONS(1686), - [aux_sym_control_master_token1] = ACTIONS(1686), - [aux_sym_control_path_token1] = ACTIONS(1686), - [aux_sym_control_persist_token1] = ACTIONS(1686), - [aux_sym_dynamic_forward_token1] = ACTIONS(1686), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1686), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1686), - [aux_sym_escape_char_token1] = ACTIONS(1686), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1686), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1686), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1686), - [aux_sym_forward_agent_token1] = ACTIONS(1686), - [aux_sym_forward_x11_token1] = ACTIONS(1688), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1686), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1686), - [aux_sym_gateway_ports_token1] = ACTIONS(1686), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1686), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1686), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1686), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1686), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1686), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1686), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1686), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1686), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1686), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1686), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1686), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1686), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1686), - [aux_sym_host_key_alias_token1] = ACTIONS(1686), - [aux_sym_hostname_token1] = ACTIONS(1686), - [aux_sym_identities_only_token1] = ACTIONS(1686), - [aux_sym_identity_agent_token1] = ACTIONS(1686), - [aux_sym_identity_file_token1] = ACTIONS(1686), - [aux_sym_ignore_unknown_token1] = ACTIONS(1686), - [aux_sym_include_token1] = ACTIONS(1686), - [aux_sym_ip_qos_token1] = ACTIONS(1686), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1686), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1686), - [aux_sym_kex_algorithms_token1] = ACTIONS(1686), - [aux_sym_known_hosts_command_token1] = ACTIONS(1686), - [aux_sym_local_command_token1] = ACTIONS(1686), - [aux_sym_local_forward_token1] = ACTIONS(1686), - [aux_sym_log_level_token1] = ACTIONS(1686), - [aux_sym_log_verbose_token1] = ACTIONS(1686), - [aux_sym_macs_token1] = ACTIONS(1686), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1686), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1686), - [aux_sym_password_authentication_token1] = ACTIONS(1686), - [aux_sym_permit_local_command_token1] = ACTIONS(1686), - [aux_sym_permit_remote_open_token1] = ACTIONS(1686), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1686), - [aux_sym_port_token1] = ACTIONS(1686), - [aux_sym_preferred_authentications_token1] = ACTIONS(1686), - [aux_sym_protocol_token1] = ACTIONS(1686), - [aux_sym_proxy_command_token1] = ACTIONS(1686), - [aux_sym_proxy_jump_token1] = ACTIONS(1686), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1686), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1686), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1686), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1686), - [aux_sym_rekey_limit_token1] = ACTIONS(1686), - [aux_sym_remote_command_token1] = ACTIONS(1686), - [aux_sym_remote_forward_token1] = ACTIONS(1686), - [aux_sym_request_tty_token1] = ACTIONS(1686), - [aux_sym_required_rsa_size_token1] = ACTIONS(1686), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1686), - [aux_sym_security_key_provider_token1] = ACTIONS(1686), - [aux_sym_send_env_token1] = ACTIONS(1686), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1686), - [aux_sym_server_alive_interval_token1] = ACTIONS(1686), - [aux_sym_session_type_token1] = ACTIONS(1686), - [aux_sym_set_env_token1] = ACTIONS(1686), - [aux_sym_stdin_null_token1] = ACTIONS(1686), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1686), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1686), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1686), - [aux_sym_syslog_facility_token1] = ACTIONS(1686), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1686), - [aux_sym_keep_alive_token1] = ACTIONS(1686), - [aux_sym_tag_token1] = ACTIONS(1686), - [aux_sym_tunnel_token1] = ACTIONS(1688), - [aux_sym_tunnel_device_token1] = ACTIONS(1686), - [aux_sym_update_host_keys_token1] = ACTIONS(1686), - [aux_sym_use_keychain_token1] = ACTIONS(1686), - [aux_sym_use_roaming_token1] = ACTIONS(1686), - [aux_sym_user_token1] = ACTIONS(1688), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1686), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1686), - [aux_sym_visual_host_key_token1] = ACTIONS(1686), - [aux_sym_xauth_location_token1] = ACTIONS(1686), + [ts_builtin_sym_end] = ACTIONS(893), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(895), + [aux_sym_match_token1] = ACTIONS(893), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(893), + [aux_sym_address_family_token1] = ACTIONS(893), + [aux_sym_batch_mode_token1] = ACTIONS(893), + [aux_sym_bind_address_token1] = ACTIONS(893), + [aux_sym_bind_interface_token1] = ACTIONS(893), + [aux_sym_canonical_domains_token1] = ACTIONS(893), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(893), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(893), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(893), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(893), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(893), + [aux_sym_certificate_file_token1] = ACTIONS(893), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(893), + [aux_sym_channel_timeout_token1] = ACTIONS(893), + [aux_sym_check_host_ip_token1] = ACTIONS(893), + [aux_sym_ciphers_token1] = ACTIONS(893), + [aux_sym_cipher_token1] = ACTIONS(895), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(893), + [aux_sym_compression_token1] = ACTIONS(893), + [aux_sym_connection_attempts_token1] = ACTIONS(893), + [aux_sym_connect_timeout_token1] = ACTIONS(893), + [aux_sym_control_master_token1] = ACTIONS(893), + [aux_sym_control_path_token1] = ACTIONS(893), + [aux_sym_control_persist_token1] = ACTIONS(893), + [aux_sym_dynamic_forward_token1] = ACTIONS(893), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(893), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(893), + [aux_sym_escape_char_token1] = ACTIONS(893), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(893), + [aux_sym_fingerprint_hash_token1] = ACTIONS(893), + [aux_sym_fork_after_authentication_token1] = ACTIONS(893), + [aux_sym_forward_agent_token1] = ACTIONS(893), + [aux_sym_forward_x11_token1] = ACTIONS(895), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(893), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(893), + [aux_sym_gateway_ports_token1] = ACTIONS(893), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(893), + [aux_sym_gssapi_authentication_token1] = ACTIONS(893), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(893), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(893), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(893), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(893), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(893), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(893), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(893), + [aux_sym_hash_known_hosts_token1] = ACTIONS(893), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(893), + [aux_sym_hostbased_authentication_token1] = ACTIONS(893), + [aux_sym_host_key_algorithms_token1] = ACTIONS(893), + [aux_sym_host_key_alias_token1] = ACTIONS(893), + [aux_sym_hostname_token1] = ACTIONS(893), + [aux_sym_identities_only_token1] = ACTIONS(893), + [aux_sym_identity_agent_token1] = ACTIONS(893), + [aux_sym_identity_file_token1] = ACTIONS(893), + [aux_sym_ignore_unknown_token1] = ACTIONS(893), + [aux_sym_include_token1] = ACTIONS(893), + [aux_sym_ip_qos_token1] = ACTIONS(893), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(893), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(893), + [aux_sym_kex_algorithms_token1] = ACTIONS(893), + [aux_sym_known_hosts_command_token1] = ACTIONS(893), + [aux_sym_local_command_token1] = ACTIONS(893), + [aux_sym_local_forward_token1] = ACTIONS(893), + [aux_sym_log_level_token1] = ACTIONS(893), + [aux_sym_log_verbose_token1] = ACTIONS(893), + [aux_sym_macs_token1] = ACTIONS(893), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(893), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(893), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(893), + [aux_sym_password_authentication_token1] = ACTIONS(893), + [aux_sym_permit_local_command_token1] = ACTIONS(893), + [aux_sym_permit_remote_open_token1] = ACTIONS(893), + [aux_sym_pkcs11_provider_token1] = ACTIONS(893), + [aux_sym_port_token1] = ACTIONS(893), + [aux_sym_preferred_authentications_token1] = ACTIONS(893), + [aux_sym_protocol_token1] = ACTIONS(893), + [aux_sym_proxy_command_token1] = ACTIONS(893), + [aux_sym_proxy_jump_token1] = ACTIONS(893), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(893), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(893), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(893), + [aux_sym_pubkey_authentication_token1] = ACTIONS(893), + [aux_sym_rekey_limit_token1] = ACTIONS(893), + [aux_sym_remote_command_token1] = ACTIONS(893), + [aux_sym_remote_forward_token1] = ACTIONS(893), + [aux_sym_request_tty_token1] = ACTIONS(893), + [aux_sym_required_rsa_size_token1] = ACTIONS(893), + [aux_sym_revoked_host_keys_token1] = ACTIONS(893), + [aux_sym_security_key_provider_token1] = ACTIONS(893), + [aux_sym_send_env_token1] = ACTIONS(893), + [aux_sym_server_alive_count_max_token1] = ACTIONS(893), + [aux_sym_server_alive_interval_token1] = ACTIONS(893), + [aux_sym_session_type_token1] = ACTIONS(893), + [aux_sym_set_env_token1] = ACTIONS(893), + [aux_sym_stdin_null_token1] = ACTIONS(893), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(893), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(893), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(893), + [aux_sym_syslog_facility_token1] = ACTIONS(893), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(893), + [aux_sym_keep_alive_token1] = ACTIONS(893), + [aux_sym_tag_token1] = ACTIONS(893), + [aux_sym_tunnel_token1] = ACTIONS(895), + [aux_sym_tunnel_device_token1] = ACTIONS(893), + [aux_sym_update_host_keys_token1] = ACTIONS(893), + [aux_sym_use_keychain_token1] = ACTIONS(893), + [aux_sym_use_roaming_token1] = ACTIONS(893), + [aux_sym_user_token1] = ACTIONS(895), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(893), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(893), + [aux_sym_visual_host_key_token1] = ACTIONS(893), + [aux_sym_xauth_location_token1] = ACTIONS(893), }, [747] = { - [ts_builtin_sym_end] = ACTIONS(1824), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1826), - [aux_sym_match_token1] = ACTIONS(1824), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1824), - [aux_sym_address_family_token1] = ACTIONS(1824), - [aux_sym_batch_mode_token1] = ACTIONS(1824), - [aux_sym_bind_address_token1] = ACTIONS(1824), - [aux_sym_bind_interface_token1] = ACTIONS(1824), - [aux_sym_canonical_domains_token1] = ACTIONS(1824), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1824), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1824), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1824), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1824), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1824), - [aux_sym_certificate_file_token1] = ACTIONS(1824), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1824), - [aux_sym_channel_timeout_token1] = ACTIONS(1824), - [aux_sym_check_host_ip_token1] = ACTIONS(1824), - [aux_sym_ciphers_token1] = ACTIONS(1824), - [aux_sym_cipher_token1] = ACTIONS(1826), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1824), - [aux_sym_compression_token1] = ACTIONS(1824), - [aux_sym_connection_attempts_token1] = ACTIONS(1824), - [aux_sym_connect_timeout_token1] = ACTIONS(1824), - [aux_sym_control_master_token1] = ACTIONS(1824), - [aux_sym_control_path_token1] = ACTIONS(1824), - [aux_sym_control_persist_token1] = ACTIONS(1824), - [aux_sym_dynamic_forward_token1] = ACTIONS(1824), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1824), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1824), - [aux_sym_escape_char_token1] = ACTIONS(1824), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1824), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1824), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1824), - [aux_sym_forward_agent_token1] = ACTIONS(1824), - [aux_sym_forward_x11_token1] = ACTIONS(1826), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1824), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1824), - [aux_sym_gateway_ports_token1] = ACTIONS(1824), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1824), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1824), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1824), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1824), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1824), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1824), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1824), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1824), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1824), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1824), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1824), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1824), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1824), - [aux_sym_host_key_alias_token1] = ACTIONS(1824), - [aux_sym_hostname_token1] = ACTIONS(1824), - [aux_sym_identities_only_token1] = ACTIONS(1824), - [aux_sym_identity_agent_token1] = ACTIONS(1824), - [aux_sym_identity_file_token1] = ACTIONS(1824), - [aux_sym_ignore_unknown_token1] = ACTIONS(1824), - [aux_sym_include_token1] = ACTIONS(1824), - [aux_sym_ip_qos_token1] = ACTIONS(1824), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1824), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1824), - [aux_sym_kex_algorithms_token1] = ACTIONS(1824), - [aux_sym_known_hosts_command_token1] = ACTIONS(1824), - [aux_sym_local_command_token1] = ACTIONS(1824), - [aux_sym_local_forward_token1] = ACTIONS(1824), - [aux_sym_log_level_token1] = ACTIONS(1824), - [aux_sym_log_verbose_token1] = ACTIONS(1824), - [aux_sym_macs_token1] = ACTIONS(1824), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1824), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1824), - [aux_sym_password_authentication_token1] = ACTIONS(1824), - [aux_sym_permit_local_command_token1] = ACTIONS(1824), - [aux_sym_permit_remote_open_token1] = ACTIONS(1824), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1824), - [aux_sym_port_token1] = ACTIONS(1824), - [aux_sym_preferred_authentications_token1] = ACTIONS(1824), - [aux_sym_protocol_token1] = ACTIONS(1824), - [aux_sym_proxy_command_token1] = ACTIONS(1824), - [aux_sym_proxy_jump_token1] = ACTIONS(1824), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1824), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1824), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1824), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1824), - [aux_sym_rekey_limit_token1] = ACTIONS(1824), - [aux_sym_remote_command_token1] = ACTIONS(1824), - [aux_sym_remote_forward_token1] = ACTIONS(1824), - [aux_sym_request_tty_token1] = ACTIONS(1824), - [aux_sym_required_rsa_size_token1] = ACTIONS(1824), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1824), - [aux_sym_security_key_provider_token1] = ACTIONS(1824), - [aux_sym_send_env_token1] = ACTIONS(1824), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1824), - [aux_sym_server_alive_interval_token1] = ACTIONS(1824), - [aux_sym_session_type_token1] = ACTIONS(1824), - [aux_sym_set_env_token1] = ACTIONS(1824), - [aux_sym_stdin_null_token1] = ACTIONS(1824), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1824), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1824), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1824), - [aux_sym_syslog_facility_token1] = ACTIONS(1824), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1824), - [aux_sym_keep_alive_token1] = ACTIONS(1824), - [aux_sym_tag_token1] = ACTIONS(1824), - [aux_sym_tunnel_token1] = ACTIONS(1826), - [aux_sym_tunnel_device_token1] = ACTIONS(1824), - [aux_sym_update_host_keys_token1] = ACTIONS(1824), - [aux_sym_use_keychain_token1] = ACTIONS(1824), - [aux_sym_use_roaming_token1] = ACTIONS(1824), - [aux_sym_user_token1] = ACTIONS(1826), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1824), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1824), - [aux_sym_visual_host_key_token1] = ACTIONS(1824), - [aux_sym_xauth_location_token1] = ACTIONS(1824), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1853), + [aux_sym_match_token1] = ACTIONS(1851), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1851), + [aux_sym_address_family_token1] = ACTIONS(1851), + [aux_sym_batch_mode_token1] = ACTIONS(1851), + [aux_sym_bind_address_token1] = ACTIONS(1851), + [aux_sym_bind_interface_token1] = ACTIONS(1851), + [aux_sym_canonical_domains_token1] = ACTIONS(1851), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1851), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1851), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1851), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1851), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1851), + [aux_sym_certificate_file_token1] = ACTIONS(1851), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1851), + [aux_sym_channel_timeout_token1] = ACTIONS(1851), + [aux_sym_check_host_ip_token1] = ACTIONS(1851), + [aux_sym_ciphers_token1] = ACTIONS(1851), + [aux_sym_cipher_token1] = ACTIONS(1853), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1851), + [aux_sym_compression_token1] = ACTIONS(1851), + [aux_sym_connection_attempts_token1] = ACTIONS(1851), + [aux_sym_connect_timeout_token1] = ACTIONS(1851), + [aux_sym_control_master_token1] = ACTIONS(1851), + [aux_sym_control_path_token1] = ACTIONS(1851), + [aux_sym_control_persist_token1] = ACTIONS(1851), + [aux_sym_dynamic_forward_token1] = ACTIONS(1851), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1851), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1851), + [aux_sym_escape_char_token1] = ACTIONS(1851), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1851), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1851), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1851), + [aux_sym_forward_agent_token1] = ACTIONS(1851), + [aux_sym_forward_x11_token1] = ACTIONS(1853), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1851), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1851), + [aux_sym_gateway_ports_token1] = ACTIONS(1851), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1851), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1851), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1851), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1851), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1851), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1851), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1851), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1851), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1851), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1851), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1851), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1851), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1851), + [aux_sym_host_key_alias_token1] = ACTIONS(1851), + [aux_sym_hostname_token1] = ACTIONS(1851), + [aux_sym_identities_only_token1] = ACTIONS(1851), + [aux_sym_identity_agent_token1] = ACTIONS(1851), + [aux_sym_identity_file_token1] = ACTIONS(1851), + [aux_sym_ignore_unknown_token1] = ACTIONS(1851), + [aux_sym_include_token1] = ACTIONS(1851), + [aux_sym_ip_qos_token1] = ACTIONS(1851), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1851), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1851), + [aux_sym_kex_algorithms_token1] = ACTIONS(1851), + [aux_sym_known_hosts_command_token1] = ACTIONS(1851), + [aux_sym_local_command_token1] = ACTIONS(1851), + [aux_sym_local_forward_token1] = ACTIONS(1851), + [aux_sym_log_level_token1] = ACTIONS(1851), + [aux_sym_log_verbose_token1] = ACTIONS(1851), + [aux_sym_macs_token1] = ACTIONS(1851), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1851), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1851), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1851), + [aux_sym_password_authentication_token1] = ACTIONS(1851), + [aux_sym_permit_local_command_token1] = ACTIONS(1851), + [aux_sym_permit_remote_open_token1] = ACTIONS(1851), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1851), + [aux_sym_port_token1] = ACTIONS(1851), + [aux_sym_preferred_authentications_token1] = ACTIONS(1851), + [aux_sym_protocol_token1] = ACTIONS(1851), + [aux_sym_proxy_command_token1] = ACTIONS(1851), + [aux_sym_proxy_jump_token1] = ACTIONS(1851), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1851), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1851), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1851), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1851), + [aux_sym_rekey_limit_token1] = ACTIONS(1851), + [aux_sym_remote_command_token1] = ACTIONS(1851), + [aux_sym_remote_forward_token1] = ACTIONS(1851), + [aux_sym_request_tty_token1] = ACTIONS(1851), + [aux_sym_required_rsa_size_token1] = ACTIONS(1851), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1851), + [aux_sym_security_key_provider_token1] = ACTIONS(1851), + [aux_sym_send_env_token1] = ACTIONS(1851), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1851), + [aux_sym_server_alive_interval_token1] = ACTIONS(1851), + [aux_sym_session_type_token1] = ACTIONS(1851), + [aux_sym_set_env_token1] = ACTIONS(1851), + [aux_sym_stdin_null_token1] = ACTIONS(1851), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1851), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1851), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1851), + [aux_sym_syslog_facility_token1] = ACTIONS(1851), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1851), + [aux_sym_keep_alive_token1] = ACTIONS(1851), + [aux_sym_tag_token1] = ACTIONS(1851), + [aux_sym_tunnel_token1] = ACTIONS(1853), + [aux_sym_tunnel_device_token1] = ACTIONS(1851), + [aux_sym_update_host_keys_token1] = ACTIONS(1851), + [aux_sym_use_keychain_token1] = ACTIONS(1851), + [aux_sym_use_roaming_token1] = ACTIONS(1851), + [aux_sym_user_token1] = ACTIONS(1853), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1851), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1851), + [aux_sym_visual_host_key_token1] = ACTIONS(1851), + [aux_sym_xauth_location_token1] = ACTIONS(1851), }, [748] = { - [ts_builtin_sym_end] = ACTIONS(984), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(986), - [aux_sym_match_token1] = ACTIONS(984), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(984), - [aux_sym_address_family_token1] = ACTIONS(984), - [aux_sym_batch_mode_token1] = ACTIONS(984), - [aux_sym_bind_address_token1] = ACTIONS(984), - [aux_sym_bind_interface_token1] = ACTIONS(984), - [aux_sym_canonical_domains_token1] = ACTIONS(984), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(984), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(984), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(984), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(984), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(984), - [aux_sym_certificate_file_token1] = ACTIONS(984), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(984), - [aux_sym_channel_timeout_token1] = ACTIONS(984), - [aux_sym_check_host_ip_token1] = ACTIONS(984), - [aux_sym_ciphers_token1] = ACTIONS(984), - [aux_sym_cipher_token1] = ACTIONS(986), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(984), - [aux_sym_compression_token1] = ACTIONS(984), - [aux_sym_connection_attempts_token1] = ACTIONS(984), - [aux_sym_connect_timeout_token1] = ACTIONS(984), - [aux_sym_control_master_token1] = ACTIONS(984), - [aux_sym_control_path_token1] = ACTIONS(984), - [aux_sym_control_persist_token1] = ACTIONS(984), - [aux_sym_dynamic_forward_token1] = ACTIONS(984), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(984), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(984), - [aux_sym_escape_char_token1] = ACTIONS(984), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(984), - [aux_sym_fingerprint_hash_token1] = ACTIONS(984), - [aux_sym_fork_after_authentication_token1] = ACTIONS(984), - [aux_sym_forward_agent_token1] = ACTIONS(984), - [aux_sym_forward_x11_token1] = ACTIONS(986), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(984), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(984), - [aux_sym_gateway_ports_token1] = ACTIONS(984), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(984), - [aux_sym_gssapi_authentication_token1] = ACTIONS(984), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(984), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(984), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(984), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(984), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(984), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(984), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(984), - [aux_sym_hash_known_hosts_token1] = ACTIONS(984), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(984), - [aux_sym_hostbased_authentication_token1] = ACTIONS(984), - [aux_sym_host_key_algorithms_token1] = ACTIONS(984), - [aux_sym_host_key_alias_token1] = ACTIONS(984), - [aux_sym_hostname_token1] = ACTIONS(984), - [aux_sym_identities_only_token1] = ACTIONS(984), - [aux_sym_identity_agent_token1] = ACTIONS(984), - [aux_sym_identity_file_token1] = ACTIONS(984), - [aux_sym_ignore_unknown_token1] = ACTIONS(984), - [aux_sym_include_token1] = ACTIONS(984), - [aux_sym_ip_qos_token1] = ACTIONS(984), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(984), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(984), - [aux_sym_kex_algorithms_token1] = ACTIONS(984), - [aux_sym_known_hosts_command_token1] = ACTIONS(984), - [aux_sym_local_command_token1] = ACTIONS(984), - [aux_sym_local_forward_token1] = ACTIONS(984), - [aux_sym_log_level_token1] = ACTIONS(984), - [aux_sym_log_verbose_token1] = ACTIONS(984), - [aux_sym_macs_token1] = ACTIONS(984), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(984), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(984), - [aux_sym_password_authentication_token1] = ACTIONS(984), - [aux_sym_permit_local_command_token1] = ACTIONS(984), - [aux_sym_permit_remote_open_token1] = ACTIONS(984), - [aux_sym_pkcs11_provider_token1] = ACTIONS(984), - [aux_sym_port_token1] = ACTIONS(984), - [aux_sym_preferred_authentications_token1] = ACTIONS(984), - [aux_sym_protocol_token1] = ACTIONS(984), - [aux_sym_proxy_command_token1] = ACTIONS(984), - [aux_sym_proxy_jump_token1] = ACTIONS(984), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(984), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(984), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(984), - [aux_sym_pubkey_authentication_token1] = ACTIONS(984), - [aux_sym_rekey_limit_token1] = ACTIONS(984), - [aux_sym_remote_command_token1] = ACTIONS(984), - [aux_sym_remote_forward_token1] = ACTIONS(984), - [aux_sym_request_tty_token1] = ACTIONS(984), - [aux_sym_required_rsa_size_token1] = ACTIONS(984), - [aux_sym_revoked_host_keys_token1] = ACTIONS(984), - [aux_sym_security_key_provider_token1] = ACTIONS(984), - [aux_sym_send_env_token1] = ACTIONS(984), - [aux_sym_server_alive_count_max_token1] = ACTIONS(984), - [aux_sym_server_alive_interval_token1] = ACTIONS(984), - [aux_sym_session_type_token1] = ACTIONS(984), - [aux_sym_set_env_token1] = ACTIONS(984), - [aux_sym_stdin_null_token1] = ACTIONS(984), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(984), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(984), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(984), - [aux_sym_syslog_facility_token1] = ACTIONS(984), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(984), - [aux_sym_keep_alive_token1] = ACTIONS(984), - [aux_sym_tag_token1] = ACTIONS(984), - [aux_sym_tunnel_token1] = ACTIONS(986), - [aux_sym_tunnel_device_token1] = ACTIONS(984), - [aux_sym_update_host_keys_token1] = ACTIONS(984), - [aux_sym_use_keychain_token1] = ACTIONS(984), - [aux_sym_use_roaming_token1] = ACTIONS(984), - [aux_sym_user_token1] = ACTIONS(986), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(984), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(984), - [aux_sym_visual_host_key_token1] = ACTIONS(984), - [aux_sym_xauth_location_token1] = ACTIONS(984), + [ts_builtin_sym_end] = ACTIONS(1981), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1983), + [aux_sym_match_token1] = ACTIONS(1981), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1981), + [aux_sym_address_family_token1] = ACTIONS(1981), + [aux_sym_batch_mode_token1] = ACTIONS(1981), + [aux_sym_bind_address_token1] = ACTIONS(1981), + [aux_sym_bind_interface_token1] = ACTIONS(1981), + [aux_sym_canonical_domains_token1] = ACTIONS(1981), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1981), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1981), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1981), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1981), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1981), + [aux_sym_certificate_file_token1] = ACTIONS(1981), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1981), + [aux_sym_channel_timeout_token1] = ACTIONS(1981), + [aux_sym_check_host_ip_token1] = ACTIONS(1981), + [aux_sym_ciphers_token1] = ACTIONS(1981), + [aux_sym_cipher_token1] = ACTIONS(1983), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1981), + [aux_sym_compression_token1] = ACTIONS(1981), + [aux_sym_connection_attempts_token1] = ACTIONS(1981), + [aux_sym_connect_timeout_token1] = ACTIONS(1981), + [aux_sym_control_master_token1] = ACTIONS(1981), + [aux_sym_control_path_token1] = ACTIONS(1981), + [aux_sym_control_persist_token1] = ACTIONS(1981), + [aux_sym_dynamic_forward_token1] = ACTIONS(1981), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1981), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1981), + [aux_sym_escape_char_token1] = ACTIONS(1981), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1981), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1981), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1981), + [aux_sym_forward_agent_token1] = ACTIONS(1981), + [aux_sym_forward_x11_token1] = ACTIONS(1983), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1981), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1981), + [aux_sym_gateway_ports_token1] = ACTIONS(1981), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1981), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1981), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1981), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1981), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1981), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1981), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1981), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1981), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1981), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1981), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1981), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1981), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1981), + [aux_sym_host_key_alias_token1] = ACTIONS(1981), + [aux_sym_hostname_token1] = ACTIONS(1981), + [aux_sym_identities_only_token1] = ACTIONS(1981), + [aux_sym_identity_agent_token1] = ACTIONS(1981), + [aux_sym_identity_file_token1] = ACTIONS(1981), + [aux_sym_ignore_unknown_token1] = ACTIONS(1981), + [aux_sym_include_token1] = ACTIONS(1981), + [aux_sym_ip_qos_token1] = ACTIONS(1981), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1981), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1981), + [aux_sym_kex_algorithms_token1] = ACTIONS(1981), + [aux_sym_known_hosts_command_token1] = ACTIONS(1981), + [aux_sym_local_command_token1] = ACTIONS(1981), + [aux_sym_local_forward_token1] = ACTIONS(1981), + [aux_sym_log_level_token1] = ACTIONS(1981), + [aux_sym_log_verbose_token1] = ACTIONS(1981), + [aux_sym_macs_token1] = ACTIONS(1981), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1981), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1981), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1981), + [aux_sym_password_authentication_token1] = ACTIONS(1981), + [aux_sym_permit_local_command_token1] = ACTIONS(1981), + [aux_sym_permit_remote_open_token1] = ACTIONS(1981), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1981), + [aux_sym_port_token1] = ACTIONS(1981), + [aux_sym_preferred_authentications_token1] = ACTIONS(1981), + [aux_sym_protocol_token1] = ACTIONS(1981), + [aux_sym_proxy_command_token1] = ACTIONS(1981), + [aux_sym_proxy_jump_token1] = ACTIONS(1981), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1981), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1981), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1981), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1981), + [aux_sym_rekey_limit_token1] = ACTIONS(1981), + [aux_sym_remote_command_token1] = ACTIONS(1981), + [aux_sym_remote_forward_token1] = ACTIONS(1981), + [aux_sym_request_tty_token1] = ACTIONS(1981), + [aux_sym_required_rsa_size_token1] = ACTIONS(1981), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1981), + [aux_sym_security_key_provider_token1] = ACTIONS(1981), + [aux_sym_send_env_token1] = ACTIONS(1981), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1981), + [aux_sym_server_alive_interval_token1] = ACTIONS(1981), + [aux_sym_session_type_token1] = ACTIONS(1981), + [aux_sym_set_env_token1] = ACTIONS(1981), + [aux_sym_stdin_null_token1] = ACTIONS(1981), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1981), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1981), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1981), + [aux_sym_syslog_facility_token1] = ACTIONS(1981), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1981), + [aux_sym_keep_alive_token1] = ACTIONS(1981), + [aux_sym_tag_token1] = ACTIONS(1981), + [aux_sym_tunnel_token1] = ACTIONS(1983), + [aux_sym_tunnel_device_token1] = ACTIONS(1981), + [aux_sym_update_host_keys_token1] = ACTIONS(1981), + [aux_sym_use_keychain_token1] = ACTIONS(1981), + [aux_sym_use_roaming_token1] = ACTIONS(1981), + [aux_sym_user_token1] = ACTIONS(1983), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1981), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1981), + [aux_sym_visual_host_key_token1] = ACTIONS(1981), + [aux_sym_xauth_location_token1] = ACTIONS(1981), }, [749] = { - [ts_builtin_sym_end] = ACTIONS(822), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(824), - [aux_sym_match_token1] = ACTIONS(822), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(822), - [aux_sym_address_family_token1] = ACTIONS(822), - [aux_sym_batch_mode_token1] = ACTIONS(822), - [aux_sym_bind_address_token1] = ACTIONS(822), - [aux_sym_bind_interface_token1] = ACTIONS(822), - [aux_sym_canonical_domains_token1] = ACTIONS(822), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(822), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(822), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(822), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(822), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(822), - [aux_sym_certificate_file_token1] = ACTIONS(822), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(822), - [aux_sym_channel_timeout_token1] = ACTIONS(822), - [aux_sym_check_host_ip_token1] = ACTIONS(822), - [aux_sym_ciphers_token1] = ACTIONS(822), - [aux_sym_cipher_token1] = ACTIONS(824), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(822), - [aux_sym_compression_token1] = ACTIONS(822), - [aux_sym_connection_attempts_token1] = ACTIONS(822), - [aux_sym_connect_timeout_token1] = ACTIONS(822), - [aux_sym_control_master_token1] = ACTIONS(822), - [aux_sym_control_path_token1] = ACTIONS(822), - [aux_sym_control_persist_token1] = ACTIONS(822), - [aux_sym_dynamic_forward_token1] = ACTIONS(822), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(822), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(822), - [aux_sym_escape_char_token1] = ACTIONS(822), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(822), - [aux_sym_fingerprint_hash_token1] = ACTIONS(822), - [aux_sym_fork_after_authentication_token1] = ACTIONS(822), - [aux_sym_forward_agent_token1] = ACTIONS(822), - [aux_sym_forward_x11_token1] = ACTIONS(824), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(822), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(822), - [aux_sym_gateway_ports_token1] = ACTIONS(822), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(822), - [aux_sym_gssapi_authentication_token1] = ACTIONS(822), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(822), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(822), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(822), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(822), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(822), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(822), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(822), - [aux_sym_hash_known_hosts_token1] = ACTIONS(822), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(822), - [aux_sym_hostbased_authentication_token1] = ACTIONS(822), - [aux_sym_host_key_algorithms_token1] = ACTIONS(822), - [aux_sym_host_key_alias_token1] = ACTIONS(822), - [aux_sym_hostname_token1] = ACTIONS(822), - [aux_sym_identities_only_token1] = ACTIONS(822), - [aux_sym_identity_agent_token1] = ACTIONS(822), - [aux_sym_identity_file_token1] = ACTIONS(822), - [aux_sym_ignore_unknown_token1] = ACTIONS(822), - [aux_sym_include_token1] = ACTIONS(822), - [aux_sym_ip_qos_token1] = ACTIONS(822), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(822), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(822), - [aux_sym_kex_algorithms_token1] = ACTIONS(822), - [aux_sym_known_hosts_command_token1] = ACTIONS(822), - [aux_sym_local_command_token1] = ACTIONS(822), - [aux_sym_local_forward_token1] = ACTIONS(822), - [aux_sym_log_level_token1] = ACTIONS(822), - [aux_sym_log_verbose_token1] = ACTIONS(822), - [aux_sym_macs_token1] = ACTIONS(822), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(822), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(822), - [aux_sym_password_authentication_token1] = ACTIONS(822), - [aux_sym_permit_local_command_token1] = ACTIONS(822), - [aux_sym_permit_remote_open_token1] = ACTIONS(822), - [aux_sym_pkcs11_provider_token1] = ACTIONS(822), - [aux_sym_port_token1] = ACTIONS(822), - [aux_sym_preferred_authentications_token1] = ACTIONS(822), - [aux_sym_protocol_token1] = ACTIONS(822), - [aux_sym_proxy_command_token1] = ACTIONS(822), - [aux_sym_proxy_jump_token1] = ACTIONS(822), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(822), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(822), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(822), - [aux_sym_pubkey_authentication_token1] = ACTIONS(822), - [aux_sym_rekey_limit_token1] = ACTIONS(822), - [aux_sym_remote_command_token1] = ACTIONS(822), - [aux_sym_remote_forward_token1] = ACTIONS(822), - [aux_sym_request_tty_token1] = ACTIONS(822), - [aux_sym_required_rsa_size_token1] = ACTIONS(822), - [aux_sym_revoked_host_keys_token1] = ACTIONS(822), - [aux_sym_security_key_provider_token1] = ACTIONS(822), - [aux_sym_send_env_token1] = ACTIONS(822), - [aux_sym_server_alive_count_max_token1] = ACTIONS(822), - [aux_sym_server_alive_interval_token1] = ACTIONS(822), - [aux_sym_session_type_token1] = ACTIONS(822), - [aux_sym_set_env_token1] = ACTIONS(822), - [aux_sym_stdin_null_token1] = ACTIONS(822), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(822), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(822), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(822), - [aux_sym_syslog_facility_token1] = ACTIONS(822), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(822), - [aux_sym_keep_alive_token1] = ACTIONS(822), - [aux_sym_tag_token1] = ACTIONS(822), - [aux_sym_tunnel_token1] = ACTIONS(824), - [aux_sym_tunnel_device_token1] = ACTIONS(822), - [aux_sym_update_host_keys_token1] = ACTIONS(822), - [aux_sym_use_keychain_token1] = ACTIONS(822), - [aux_sym_use_roaming_token1] = ACTIONS(822), - [aux_sym_user_token1] = ACTIONS(824), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(822), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(822), - [aux_sym_visual_host_key_token1] = ACTIONS(822), - [aux_sym_xauth_location_token1] = ACTIONS(822), + [ts_builtin_sym_end] = ACTIONS(1463), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1465), + [aux_sym_match_token1] = ACTIONS(1463), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1463), + [aux_sym_address_family_token1] = ACTIONS(1463), + [aux_sym_batch_mode_token1] = ACTIONS(1463), + [aux_sym_bind_address_token1] = ACTIONS(1463), + [aux_sym_bind_interface_token1] = ACTIONS(1463), + [aux_sym_canonical_domains_token1] = ACTIONS(1463), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1463), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1463), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1463), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1463), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1463), + [aux_sym_certificate_file_token1] = ACTIONS(1463), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1463), + [aux_sym_channel_timeout_token1] = ACTIONS(1463), + [aux_sym_check_host_ip_token1] = ACTIONS(1463), + [aux_sym_ciphers_token1] = ACTIONS(1463), + [aux_sym_cipher_token1] = ACTIONS(1465), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1463), + [aux_sym_compression_token1] = ACTIONS(1463), + [aux_sym_connection_attempts_token1] = ACTIONS(1463), + [aux_sym_connect_timeout_token1] = ACTIONS(1463), + [aux_sym_control_master_token1] = ACTIONS(1463), + [aux_sym_control_path_token1] = ACTIONS(1463), + [aux_sym_control_persist_token1] = ACTIONS(1463), + [aux_sym_dynamic_forward_token1] = ACTIONS(1463), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1463), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1463), + [aux_sym_escape_char_token1] = ACTIONS(1463), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1463), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1463), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1463), + [aux_sym_forward_agent_token1] = ACTIONS(1463), + [aux_sym_forward_x11_token1] = ACTIONS(1465), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1463), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1463), + [aux_sym_gateway_ports_token1] = ACTIONS(1463), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1463), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1463), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1463), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1463), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1463), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1463), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1463), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1463), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1463), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1463), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1463), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1463), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1463), + [aux_sym_host_key_alias_token1] = ACTIONS(1463), + [aux_sym_hostname_token1] = ACTIONS(1463), + [aux_sym_identities_only_token1] = ACTIONS(1463), + [aux_sym_identity_agent_token1] = ACTIONS(1463), + [aux_sym_identity_file_token1] = ACTIONS(1463), + [aux_sym_ignore_unknown_token1] = ACTIONS(1463), + [aux_sym_include_token1] = ACTIONS(1463), + [aux_sym_ip_qos_token1] = ACTIONS(1463), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1463), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1463), + [aux_sym_kex_algorithms_token1] = ACTIONS(1463), + [aux_sym_known_hosts_command_token1] = ACTIONS(1463), + [aux_sym_local_command_token1] = ACTIONS(1463), + [aux_sym_local_forward_token1] = ACTIONS(1463), + [aux_sym_log_level_token1] = ACTIONS(1463), + [aux_sym_log_verbose_token1] = ACTIONS(1463), + [aux_sym_macs_token1] = ACTIONS(1463), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1463), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1463), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1463), + [aux_sym_password_authentication_token1] = ACTIONS(1463), + [aux_sym_permit_local_command_token1] = ACTIONS(1463), + [aux_sym_permit_remote_open_token1] = ACTIONS(1463), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1463), + [aux_sym_port_token1] = ACTIONS(1463), + [aux_sym_preferred_authentications_token1] = ACTIONS(1463), + [aux_sym_protocol_token1] = ACTIONS(1463), + [aux_sym_proxy_command_token1] = ACTIONS(1463), + [aux_sym_proxy_jump_token1] = ACTIONS(1463), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1463), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1463), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1463), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1463), + [aux_sym_rekey_limit_token1] = ACTIONS(1463), + [aux_sym_remote_command_token1] = ACTIONS(1463), + [aux_sym_remote_forward_token1] = ACTIONS(1463), + [aux_sym_request_tty_token1] = ACTIONS(1463), + [aux_sym_required_rsa_size_token1] = ACTIONS(1463), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1463), + [aux_sym_security_key_provider_token1] = ACTIONS(1463), + [aux_sym_send_env_token1] = ACTIONS(1463), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1463), + [aux_sym_server_alive_interval_token1] = ACTIONS(1463), + [aux_sym_session_type_token1] = ACTIONS(1463), + [aux_sym_set_env_token1] = ACTIONS(1463), + [aux_sym_stdin_null_token1] = ACTIONS(1463), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1463), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1463), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1463), + [aux_sym_syslog_facility_token1] = ACTIONS(1463), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1463), + [aux_sym_keep_alive_token1] = ACTIONS(1463), + [aux_sym_tag_token1] = ACTIONS(1463), + [aux_sym_tunnel_token1] = ACTIONS(1465), + [aux_sym_tunnel_device_token1] = ACTIONS(1463), + [aux_sym_update_host_keys_token1] = ACTIONS(1463), + [aux_sym_use_keychain_token1] = ACTIONS(1463), + [aux_sym_use_roaming_token1] = ACTIONS(1463), + [aux_sym_user_token1] = ACTIONS(1465), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1463), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1463), + [aux_sym_visual_host_key_token1] = ACTIONS(1463), + [aux_sym_xauth_location_token1] = ACTIONS(1463), }, [750] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1820), - [aux_sym_match_token1] = ACTIONS(1818), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1818), - [aux_sym_address_family_token1] = ACTIONS(1818), - [aux_sym_batch_mode_token1] = ACTIONS(1818), - [aux_sym_bind_address_token1] = ACTIONS(1818), - [aux_sym_bind_interface_token1] = ACTIONS(1818), - [aux_sym_canonical_domains_token1] = ACTIONS(1818), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1818), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1818), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1818), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1818), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1818), - [aux_sym_certificate_file_token1] = ACTIONS(1818), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1818), - [aux_sym_channel_timeout_token1] = ACTIONS(1818), - [aux_sym_check_host_ip_token1] = ACTIONS(1818), - [aux_sym_ciphers_token1] = ACTIONS(1818), - [aux_sym_cipher_token1] = ACTIONS(1820), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1818), - [aux_sym_compression_token1] = ACTIONS(1818), - [aux_sym_connection_attempts_token1] = ACTIONS(1818), - [aux_sym_connect_timeout_token1] = ACTIONS(1818), - [aux_sym_control_master_token1] = ACTIONS(1818), - [aux_sym_control_path_token1] = ACTIONS(1818), - [aux_sym_control_persist_token1] = ACTIONS(1818), - [aux_sym_dynamic_forward_token1] = ACTIONS(1818), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1818), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1818), - [aux_sym_escape_char_token1] = ACTIONS(1818), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1818), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1818), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1818), - [aux_sym_forward_agent_token1] = ACTIONS(1818), - [aux_sym_forward_x11_token1] = ACTIONS(1820), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1818), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1818), - [aux_sym_gateway_ports_token1] = ACTIONS(1818), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1818), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1818), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1818), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1818), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1818), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1818), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1818), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1818), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1818), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1818), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1818), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1818), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1818), - [aux_sym_host_key_alias_token1] = ACTIONS(1818), - [aux_sym_hostname_token1] = ACTIONS(1818), - [aux_sym_identities_only_token1] = ACTIONS(1818), - [aux_sym_identity_agent_token1] = ACTIONS(1818), - [aux_sym_identity_file_token1] = ACTIONS(1818), - [aux_sym_ignore_unknown_token1] = ACTIONS(1818), - [aux_sym_include_token1] = ACTIONS(1818), - [aux_sym_ip_qos_token1] = ACTIONS(1818), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1818), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1818), - [aux_sym_kex_algorithms_token1] = ACTIONS(1818), - [aux_sym_known_hosts_command_token1] = ACTIONS(1818), - [aux_sym_local_command_token1] = ACTIONS(1818), - [aux_sym_local_forward_token1] = ACTIONS(1818), - [aux_sym_log_level_token1] = ACTIONS(1818), - [aux_sym_log_verbose_token1] = ACTIONS(1818), - [aux_sym_macs_token1] = ACTIONS(1818), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1818), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1818), - [aux_sym_password_authentication_token1] = ACTIONS(1818), - [aux_sym_permit_local_command_token1] = ACTIONS(1818), - [aux_sym_permit_remote_open_token1] = ACTIONS(1818), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1818), - [aux_sym_port_token1] = ACTIONS(1818), - [aux_sym_preferred_authentications_token1] = ACTIONS(1818), - [aux_sym_protocol_token1] = ACTIONS(1818), - [aux_sym_proxy_command_token1] = ACTIONS(1818), - [aux_sym_proxy_jump_token1] = ACTIONS(1818), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1818), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1818), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1818), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1818), - [aux_sym_rekey_limit_token1] = ACTIONS(1818), - [aux_sym_remote_command_token1] = ACTIONS(1818), - [aux_sym_remote_forward_token1] = ACTIONS(1818), - [aux_sym_request_tty_token1] = ACTIONS(1818), - [aux_sym_required_rsa_size_token1] = ACTIONS(1818), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1818), - [aux_sym_security_key_provider_token1] = ACTIONS(1818), - [aux_sym_send_env_token1] = ACTIONS(1818), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1818), - [aux_sym_server_alive_interval_token1] = ACTIONS(1818), - [aux_sym_session_type_token1] = ACTIONS(1818), - [aux_sym_set_env_token1] = ACTIONS(1818), - [aux_sym_stdin_null_token1] = ACTIONS(1818), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1818), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1818), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1818), - [aux_sym_syslog_facility_token1] = ACTIONS(1818), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1818), - [aux_sym_keep_alive_token1] = ACTIONS(1818), - [aux_sym_tag_token1] = ACTIONS(1818), - [aux_sym_tunnel_token1] = ACTIONS(1820), - [aux_sym_tunnel_device_token1] = ACTIONS(1818), - [aux_sym_update_host_keys_token1] = ACTIONS(1818), - [aux_sym_use_keychain_token1] = ACTIONS(1818), - [aux_sym_use_roaming_token1] = ACTIONS(1818), - [aux_sym_user_token1] = ACTIONS(1820), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1818), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1818), - [aux_sym_visual_host_key_token1] = ACTIONS(1818), - [aux_sym_xauth_location_token1] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1847), + [aux_sym_match_token1] = ACTIONS(1845), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1845), + [aux_sym_address_family_token1] = ACTIONS(1845), + [aux_sym_batch_mode_token1] = ACTIONS(1845), + [aux_sym_bind_address_token1] = ACTIONS(1845), + [aux_sym_bind_interface_token1] = ACTIONS(1845), + [aux_sym_canonical_domains_token1] = ACTIONS(1845), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1845), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1845), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1845), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1845), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1845), + [aux_sym_certificate_file_token1] = ACTIONS(1845), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1845), + [aux_sym_channel_timeout_token1] = ACTIONS(1845), + [aux_sym_check_host_ip_token1] = ACTIONS(1845), + [aux_sym_ciphers_token1] = ACTIONS(1845), + [aux_sym_cipher_token1] = ACTIONS(1847), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1845), + [aux_sym_compression_token1] = ACTIONS(1845), + [aux_sym_connection_attempts_token1] = ACTIONS(1845), + [aux_sym_connect_timeout_token1] = ACTIONS(1845), + [aux_sym_control_master_token1] = ACTIONS(1845), + [aux_sym_control_path_token1] = ACTIONS(1845), + [aux_sym_control_persist_token1] = ACTIONS(1845), + [aux_sym_dynamic_forward_token1] = ACTIONS(1845), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1845), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1845), + [aux_sym_escape_char_token1] = ACTIONS(1845), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1845), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1845), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1845), + [aux_sym_forward_agent_token1] = ACTIONS(1845), + [aux_sym_forward_x11_token1] = ACTIONS(1847), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1845), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1845), + [aux_sym_gateway_ports_token1] = ACTIONS(1845), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1845), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1845), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1845), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1845), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1845), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1845), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1845), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1845), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1845), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1845), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1845), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1845), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1845), + [aux_sym_host_key_alias_token1] = ACTIONS(1845), + [aux_sym_hostname_token1] = ACTIONS(1845), + [aux_sym_identities_only_token1] = ACTIONS(1845), + [aux_sym_identity_agent_token1] = ACTIONS(1845), + [aux_sym_identity_file_token1] = ACTIONS(1845), + [aux_sym_ignore_unknown_token1] = ACTIONS(1845), + [aux_sym_include_token1] = ACTIONS(1845), + [aux_sym_ip_qos_token1] = ACTIONS(1845), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1845), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1845), + [aux_sym_kex_algorithms_token1] = ACTIONS(1845), + [aux_sym_known_hosts_command_token1] = ACTIONS(1845), + [aux_sym_local_command_token1] = ACTIONS(1845), + [aux_sym_local_forward_token1] = ACTIONS(1845), + [aux_sym_log_level_token1] = ACTIONS(1845), + [aux_sym_log_verbose_token1] = ACTIONS(1845), + [aux_sym_macs_token1] = ACTIONS(1845), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1845), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1845), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1845), + [aux_sym_password_authentication_token1] = ACTIONS(1845), + [aux_sym_permit_local_command_token1] = ACTIONS(1845), + [aux_sym_permit_remote_open_token1] = ACTIONS(1845), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1845), + [aux_sym_port_token1] = ACTIONS(1845), + [aux_sym_preferred_authentications_token1] = ACTIONS(1845), + [aux_sym_protocol_token1] = ACTIONS(1845), + [aux_sym_proxy_command_token1] = ACTIONS(1845), + [aux_sym_proxy_jump_token1] = ACTIONS(1845), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1845), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1845), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1845), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1845), + [aux_sym_rekey_limit_token1] = ACTIONS(1845), + [aux_sym_remote_command_token1] = ACTIONS(1845), + [aux_sym_remote_forward_token1] = ACTIONS(1845), + [aux_sym_request_tty_token1] = ACTIONS(1845), + [aux_sym_required_rsa_size_token1] = ACTIONS(1845), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1845), + [aux_sym_security_key_provider_token1] = ACTIONS(1845), + [aux_sym_send_env_token1] = ACTIONS(1845), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1845), + [aux_sym_server_alive_interval_token1] = ACTIONS(1845), + [aux_sym_session_type_token1] = ACTIONS(1845), + [aux_sym_set_env_token1] = ACTIONS(1845), + [aux_sym_stdin_null_token1] = ACTIONS(1845), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1845), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1845), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1845), + [aux_sym_syslog_facility_token1] = ACTIONS(1845), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1845), + [aux_sym_keep_alive_token1] = ACTIONS(1845), + [aux_sym_tag_token1] = ACTIONS(1845), + [aux_sym_tunnel_token1] = ACTIONS(1847), + [aux_sym_tunnel_device_token1] = ACTIONS(1845), + [aux_sym_update_host_keys_token1] = ACTIONS(1845), + [aux_sym_use_keychain_token1] = ACTIONS(1845), + [aux_sym_use_roaming_token1] = ACTIONS(1845), + [aux_sym_user_token1] = ACTIONS(1847), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1845), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1845), + [aux_sym_visual_host_key_token1] = ACTIONS(1845), + [aux_sym_xauth_location_token1] = ACTIONS(1845), }, [751] = { - [ts_builtin_sym_end] = ACTIONS(828), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(830), - [aux_sym_match_token1] = ACTIONS(828), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(828), - [aux_sym_address_family_token1] = ACTIONS(828), - [aux_sym_batch_mode_token1] = ACTIONS(828), - [aux_sym_bind_address_token1] = ACTIONS(828), - [aux_sym_bind_interface_token1] = ACTIONS(828), - [aux_sym_canonical_domains_token1] = ACTIONS(828), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(828), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(828), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(828), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(828), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(828), - [aux_sym_certificate_file_token1] = ACTIONS(828), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(828), - [aux_sym_channel_timeout_token1] = ACTIONS(828), - [aux_sym_check_host_ip_token1] = ACTIONS(828), - [aux_sym_ciphers_token1] = ACTIONS(828), - [aux_sym_cipher_token1] = ACTIONS(830), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(828), - [aux_sym_compression_token1] = ACTIONS(828), - [aux_sym_connection_attempts_token1] = ACTIONS(828), - [aux_sym_connect_timeout_token1] = ACTIONS(828), - [aux_sym_control_master_token1] = ACTIONS(828), - [aux_sym_control_path_token1] = ACTIONS(828), - [aux_sym_control_persist_token1] = ACTIONS(828), - [aux_sym_dynamic_forward_token1] = ACTIONS(828), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(828), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(828), - [aux_sym_escape_char_token1] = ACTIONS(828), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(828), - [aux_sym_fingerprint_hash_token1] = ACTIONS(828), - [aux_sym_fork_after_authentication_token1] = ACTIONS(828), - [aux_sym_forward_agent_token1] = ACTIONS(828), - [aux_sym_forward_x11_token1] = ACTIONS(830), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(828), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(828), - [aux_sym_gateway_ports_token1] = ACTIONS(828), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(828), - [aux_sym_gssapi_authentication_token1] = ACTIONS(828), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(828), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(828), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(828), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(828), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(828), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(828), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(828), - [aux_sym_hash_known_hosts_token1] = ACTIONS(828), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(828), - [aux_sym_hostbased_authentication_token1] = ACTIONS(828), - [aux_sym_host_key_algorithms_token1] = ACTIONS(828), - [aux_sym_host_key_alias_token1] = ACTIONS(828), - [aux_sym_hostname_token1] = ACTIONS(828), - [aux_sym_identities_only_token1] = ACTIONS(828), - [aux_sym_identity_agent_token1] = ACTIONS(828), - [aux_sym_identity_file_token1] = ACTIONS(828), - [aux_sym_ignore_unknown_token1] = ACTIONS(828), - [aux_sym_include_token1] = ACTIONS(828), - [aux_sym_ip_qos_token1] = ACTIONS(828), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(828), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(828), - [aux_sym_kex_algorithms_token1] = ACTIONS(828), - [aux_sym_known_hosts_command_token1] = ACTIONS(828), - [aux_sym_local_command_token1] = ACTIONS(828), - [aux_sym_local_forward_token1] = ACTIONS(828), - [aux_sym_log_level_token1] = ACTIONS(828), - [aux_sym_log_verbose_token1] = ACTIONS(828), - [aux_sym_macs_token1] = ACTIONS(828), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(828), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(828), - [aux_sym_password_authentication_token1] = ACTIONS(828), - [aux_sym_permit_local_command_token1] = ACTIONS(828), - [aux_sym_permit_remote_open_token1] = ACTIONS(828), - [aux_sym_pkcs11_provider_token1] = ACTIONS(828), - [aux_sym_port_token1] = ACTIONS(828), - [aux_sym_preferred_authentications_token1] = ACTIONS(828), - [aux_sym_protocol_token1] = ACTIONS(828), - [aux_sym_proxy_command_token1] = ACTIONS(828), - [aux_sym_proxy_jump_token1] = ACTIONS(828), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(828), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(828), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(828), - [aux_sym_pubkey_authentication_token1] = ACTIONS(828), - [aux_sym_rekey_limit_token1] = ACTIONS(828), - [aux_sym_remote_command_token1] = ACTIONS(828), - [aux_sym_remote_forward_token1] = ACTIONS(828), - [aux_sym_request_tty_token1] = ACTIONS(828), - [aux_sym_required_rsa_size_token1] = ACTIONS(828), - [aux_sym_revoked_host_keys_token1] = ACTIONS(828), - [aux_sym_security_key_provider_token1] = ACTIONS(828), - [aux_sym_send_env_token1] = ACTIONS(828), - [aux_sym_server_alive_count_max_token1] = ACTIONS(828), - [aux_sym_server_alive_interval_token1] = ACTIONS(828), - [aux_sym_session_type_token1] = ACTIONS(828), - [aux_sym_set_env_token1] = ACTIONS(828), - [aux_sym_stdin_null_token1] = ACTIONS(828), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(828), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(828), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(828), - [aux_sym_syslog_facility_token1] = ACTIONS(828), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(828), - [aux_sym_keep_alive_token1] = ACTIONS(828), - [aux_sym_tag_token1] = ACTIONS(828), - [aux_sym_tunnel_token1] = ACTIONS(830), - [aux_sym_tunnel_device_token1] = ACTIONS(828), - [aux_sym_update_host_keys_token1] = ACTIONS(828), - [aux_sym_use_keychain_token1] = ACTIONS(828), - [aux_sym_use_roaming_token1] = ACTIONS(828), - [aux_sym_user_token1] = ACTIONS(830), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(828), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(828), - [aux_sym_visual_host_key_token1] = ACTIONS(828), - [aux_sym_xauth_location_token1] = ACTIONS(828), + [ts_builtin_sym_end] = ACTIONS(947), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(949), + [aux_sym_match_token1] = ACTIONS(947), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(947), + [aux_sym_address_family_token1] = ACTIONS(947), + [aux_sym_batch_mode_token1] = ACTIONS(947), + [aux_sym_bind_address_token1] = ACTIONS(947), + [aux_sym_bind_interface_token1] = ACTIONS(947), + [aux_sym_canonical_domains_token1] = ACTIONS(947), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(947), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(947), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(947), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(947), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(947), + [aux_sym_certificate_file_token1] = ACTIONS(947), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(947), + [aux_sym_channel_timeout_token1] = ACTIONS(947), + [aux_sym_check_host_ip_token1] = ACTIONS(947), + [aux_sym_ciphers_token1] = ACTIONS(947), + [aux_sym_cipher_token1] = ACTIONS(949), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(947), + [aux_sym_compression_token1] = ACTIONS(947), + [aux_sym_connection_attempts_token1] = ACTIONS(947), + [aux_sym_connect_timeout_token1] = ACTIONS(947), + [aux_sym_control_master_token1] = ACTIONS(947), + [aux_sym_control_path_token1] = ACTIONS(947), + [aux_sym_control_persist_token1] = ACTIONS(947), + [aux_sym_dynamic_forward_token1] = ACTIONS(947), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(947), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(947), + [aux_sym_escape_char_token1] = ACTIONS(947), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(947), + [aux_sym_fingerprint_hash_token1] = ACTIONS(947), + [aux_sym_fork_after_authentication_token1] = ACTIONS(947), + [aux_sym_forward_agent_token1] = ACTIONS(947), + [aux_sym_forward_x11_token1] = ACTIONS(949), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(947), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(947), + [aux_sym_gateway_ports_token1] = ACTIONS(947), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(947), + [aux_sym_gssapi_authentication_token1] = ACTIONS(947), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(947), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(947), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(947), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(947), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(947), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(947), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(947), + [aux_sym_hash_known_hosts_token1] = ACTIONS(947), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(947), + [aux_sym_hostbased_authentication_token1] = ACTIONS(947), + [aux_sym_host_key_algorithms_token1] = ACTIONS(947), + [aux_sym_host_key_alias_token1] = ACTIONS(947), + [aux_sym_hostname_token1] = ACTIONS(947), + [aux_sym_identities_only_token1] = ACTIONS(947), + [aux_sym_identity_agent_token1] = ACTIONS(947), + [aux_sym_identity_file_token1] = ACTIONS(947), + [aux_sym_ignore_unknown_token1] = ACTIONS(947), + [aux_sym_include_token1] = ACTIONS(947), + [aux_sym_ip_qos_token1] = ACTIONS(947), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(947), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(947), + [aux_sym_kex_algorithms_token1] = ACTIONS(947), + [aux_sym_known_hosts_command_token1] = ACTIONS(947), + [aux_sym_local_command_token1] = ACTIONS(947), + [aux_sym_local_forward_token1] = ACTIONS(947), + [aux_sym_log_level_token1] = ACTIONS(947), + [aux_sym_log_verbose_token1] = ACTIONS(947), + [aux_sym_macs_token1] = ACTIONS(947), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(947), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(947), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(947), + [aux_sym_password_authentication_token1] = ACTIONS(947), + [aux_sym_permit_local_command_token1] = ACTIONS(947), + [aux_sym_permit_remote_open_token1] = ACTIONS(947), + [aux_sym_pkcs11_provider_token1] = ACTIONS(947), + [aux_sym_port_token1] = ACTIONS(947), + [aux_sym_preferred_authentications_token1] = ACTIONS(947), + [aux_sym_protocol_token1] = ACTIONS(947), + [aux_sym_proxy_command_token1] = ACTIONS(947), + [aux_sym_proxy_jump_token1] = ACTIONS(947), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(947), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(947), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(947), + [aux_sym_pubkey_authentication_token1] = ACTIONS(947), + [aux_sym_rekey_limit_token1] = ACTIONS(947), + [aux_sym_remote_command_token1] = ACTIONS(947), + [aux_sym_remote_forward_token1] = ACTIONS(947), + [aux_sym_request_tty_token1] = ACTIONS(947), + [aux_sym_required_rsa_size_token1] = ACTIONS(947), + [aux_sym_revoked_host_keys_token1] = ACTIONS(947), + [aux_sym_security_key_provider_token1] = ACTIONS(947), + [aux_sym_send_env_token1] = ACTIONS(947), + [aux_sym_server_alive_count_max_token1] = ACTIONS(947), + [aux_sym_server_alive_interval_token1] = ACTIONS(947), + [aux_sym_session_type_token1] = ACTIONS(947), + [aux_sym_set_env_token1] = ACTIONS(947), + [aux_sym_stdin_null_token1] = ACTIONS(947), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(947), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(947), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(947), + [aux_sym_syslog_facility_token1] = ACTIONS(947), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(947), + [aux_sym_keep_alive_token1] = ACTIONS(947), + [aux_sym_tag_token1] = ACTIONS(947), + [aux_sym_tunnel_token1] = ACTIONS(949), + [aux_sym_tunnel_device_token1] = ACTIONS(947), + [aux_sym_update_host_keys_token1] = ACTIONS(947), + [aux_sym_use_keychain_token1] = ACTIONS(947), + [aux_sym_use_roaming_token1] = ACTIONS(947), + [aux_sym_user_token1] = ACTIONS(949), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(947), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(947), + [aux_sym_visual_host_key_token1] = ACTIONS(947), + [aux_sym_xauth_location_token1] = ACTIONS(947), }, [752] = { - [ts_builtin_sym_end] = ACTIONS(1692), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1694), - [aux_sym_match_token1] = ACTIONS(1692), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1692), - [aux_sym_address_family_token1] = ACTIONS(1692), - [aux_sym_batch_mode_token1] = ACTIONS(1692), - [aux_sym_bind_address_token1] = ACTIONS(1692), - [aux_sym_bind_interface_token1] = ACTIONS(1692), - [aux_sym_canonical_domains_token1] = ACTIONS(1692), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1692), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1692), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1692), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1692), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1692), - [aux_sym_certificate_file_token1] = ACTIONS(1692), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1692), - [aux_sym_channel_timeout_token1] = ACTIONS(1692), - [aux_sym_check_host_ip_token1] = ACTIONS(1692), - [aux_sym_ciphers_token1] = ACTIONS(1692), - [aux_sym_cipher_token1] = ACTIONS(1694), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1692), - [aux_sym_compression_token1] = ACTIONS(1692), - [aux_sym_connection_attempts_token1] = ACTIONS(1692), - [aux_sym_connect_timeout_token1] = ACTIONS(1692), - [aux_sym_control_master_token1] = ACTIONS(1692), - [aux_sym_control_path_token1] = ACTIONS(1692), - [aux_sym_control_persist_token1] = ACTIONS(1692), - [aux_sym_dynamic_forward_token1] = ACTIONS(1692), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1692), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1692), - [aux_sym_escape_char_token1] = ACTIONS(1692), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1692), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1692), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1692), - [aux_sym_forward_agent_token1] = ACTIONS(1692), - [aux_sym_forward_x11_token1] = ACTIONS(1694), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1692), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1692), - [aux_sym_gateway_ports_token1] = ACTIONS(1692), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1692), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1692), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1692), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1692), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1692), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1692), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1692), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1692), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1692), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1692), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1692), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1692), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1692), - [aux_sym_host_key_alias_token1] = ACTIONS(1692), - [aux_sym_hostname_token1] = ACTIONS(1692), - [aux_sym_identities_only_token1] = ACTIONS(1692), - [aux_sym_identity_agent_token1] = ACTIONS(1692), - [aux_sym_identity_file_token1] = ACTIONS(1692), - [aux_sym_ignore_unknown_token1] = ACTIONS(1692), - [aux_sym_include_token1] = ACTIONS(1692), - [aux_sym_ip_qos_token1] = ACTIONS(1692), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1692), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1692), - [aux_sym_kex_algorithms_token1] = ACTIONS(1692), - [aux_sym_known_hosts_command_token1] = ACTIONS(1692), - [aux_sym_local_command_token1] = ACTIONS(1692), - [aux_sym_local_forward_token1] = ACTIONS(1692), - [aux_sym_log_level_token1] = ACTIONS(1692), - [aux_sym_log_verbose_token1] = ACTIONS(1692), - [aux_sym_macs_token1] = ACTIONS(1692), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1692), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1692), - [aux_sym_password_authentication_token1] = ACTIONS(1692), - [aux_sym_permit_local_command_token1] = ACTIONS(1692), - [aux_sym_permit_remote_open_token1] = ACTIONS(1692), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1692), - [aux_sym_port_token1] = ACTIONS(1692), - [aux_sym_preferred_authentications_token1] = ACTIONS(1692), - [aux_sym_protocol_token1] = ACTIONS(1692), - [aux_sym_proxy_command_token1] = ACTIONS(1692), - [aux_sym_proxy_jump_token1] = ACTIONS(1692), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1692), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1692), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1692), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1692), - [aux_sym_rekey_limit_token1] = ACTIONS(1692), - [aux_sym_remote_command_token1] = ACTIONS(1692), - [aux_sym_remote_forward_token1] = ACTIONS(1692), - [aux_sym_request_tty_token1] = ACTIONS(1692), - [aux_sym_required_rsa_size_token1] = ACTIONS(1692), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1692), - [aux_sym_security_key_provider_token1] = ACTIONS(1692), - [aux_sym_send_env_token1] = ACTIONS(1692), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1692), - [aux_sym_server_alive_interval_token1] = ACTIONS(1692), - [aux_sym_session_type_token1] = ACTIONS(1692), - [aux_sym_set_env_token1] = ACTIONS(1692), - [aux_sym_stdin_null_token1] = ACTIONS(1692), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1692), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1692), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1692), - [aux_sym_syslog_facility_token1] = ACTIONS(1692), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1692), - [aux_sym_keep_alive_token1] = ACTIONS(1692), - [aux_sym_tag_token1] = ACTIONS(1692), - [aux_sym_tunnel_token1] = ACTIONS(1694), - [aux_sym_tunnel_device_token1] = ACTIONS(1692), - [aux_sym_update_host_keys_token1] = ACTIONS(1692), - [aux_sym_use_keychain_token1] = ACTIONS(1692), - [aux_sym_use_roaming_token1] = ACTIONS(1692), - [aux_sym_user_token1] = ACTIONS(1694), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1692), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1692), - [aux_sym_visual_host_key_token1] = ACTIONS(1692), - [aux_sym_xauth_location_token1] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1541), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1543), + [aux_sym_match_token1] = ACTIONS(1541), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1541), + [aux_sym_address_family_token1] = ACTIONS(1541), + [aux_sym_batch_mode_token1] = ACTIONS(1541), + [aux_sym_bind_address_token1] = ACTIONS(1541), + [aux_sym_bind_interface_token1] = ACTIONS(1541), + [aux_sym_canonical_domains_token1] = ACTIONS(1541), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1541), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1541), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1541), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1541), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1541), + [aux_sym_certificate_file_token1] = ACTIONS(1541), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1541), + [aux_sym_channel_timeout_token1] = ACTIONS(1541), + [aux_sym_check_host_ip_token1] = ACTIONS(1541), + [aux_sym_ciphers_token1] = ACTIONS(1541), + [aux_sym_cipher_token1] = ACTIONS(1543), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1541), + [aux_sym_compression_token1] = ACTIONS(1541), + [aux_sym_connection_attempts_token1] = ACTIONS(1541), + [aux_sym_connect_timeout_token1] = ACTIONS(1541), + [aux_sym_control_master_token1] = ACTIONS(1541), + [aux_sym_control_path_token1] = ACTIONS(1541), + [aux_sym_control_persist_token1] = ACTIONS(1541), + [aux_sym_dynamic_forward_token1] = ACTIONS(1541), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1541), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1541), + [aux_sym_escape_char_token1] = ACTIONS(1541), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1541), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1541), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1541), + [aux_sym_forward_agent_token1] = ACTIONS(1541), + [aux_sym_forward_x11_token1] = ACTIONS(1543), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1541), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1541), + [aux_sym_gateway_ports_token1] = ACTIONS(1541), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1541), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1541), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1541), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1541), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1541), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1541), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1541), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1541), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1541), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1541), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1541), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1541), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1541), + [aux_sym_host_key_alias_token1] = ACTIONS(1541), + [aux_sym_hostname_token1] = ACTIONS(1541), + [aux_sym_identities_only_token1] = ACTIONS(1541), + [aux_sym_identity_agent_token1] = ACTIONS(1541), + [aux_sym_identity_file_token1] = ACTIONS(1541), + [aux_sym_ignore_unknown_token1] = ACTIONS(1541), + [aux_sym_include_token1] = ACTIONS(1541), + [aux_sym_ip_qos_token1] = ACTIONS(1541), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1541), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1541), + [aux_sym_kex_algorithms_token1] = ACTIONS(1541), + [aux_sym_known_hosts_command_token1] = ACTIONS(1541), + [aux_sym_local_command_token1] = ACTIONS(1541), + [aux_sym_local_forward_token1] = ACTIONS(1541), + [aux_sym_log_level_token1] = ACTIONS(1541), + [aux_sym_log_verbose_token1] = ACTIONS(1541), + [aux_sym_macs_token1] = ACTIONS(1541), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1541), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1541), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1541), + [aux_sym_password_authentication_token1] = ACTIONS(1541), + [aux_sym_permit_local_command_token1] = ACTIONS(1541), + [aux_sym_permit_remote_open_token1] = ACTIONS(1541), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1541), + [aux_sym_port_token1] = ACTIONS(1541), + [aux_sym_preferred_authentications_token1] = ACTIONS(1541), + [aux_sym_protocol_token1] = ACTIONS(1541), + [aux_sym_proxy_command_token1] = ACTIONS(1541), + [aux_sym_proxy_jump_token1] = ACTIONS(1541), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1541), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1541), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1541), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1541), + [aux_sym_rekey_limit_token1] = ACTIONS(1541), + [aux_sym_remote_command_token1] = ACTIONS(1541), + [aux_sym_remote_forward_token1] = ACTIONS(1541), + [aux_sym_request_tty_token1] = ACTIONS(1541), + [aux_sym_required_rsa_size_token1] = ACTIONS(1541), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1541), + [aux_sym_security_key_provider_token1] = ACTIONS(1541), + [aux_sym_send_env_token1] = ACTIONS(1541), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1541), + [aux_sym_server_alive_interval_token1] = ACTIONS(1541), + [aux_sym_session_type_token1] = ACTIONS(1541), + [aux_sym_set_env_token1] = ACTIONS(1541), + [aux_sym_stdin_null_token1] = ACTIONS(1541), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1541), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1541), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1541), + [aux_sym_syslog_facility_token1] = ACTIONS(1541), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1541), + [aux_sym_keep_alive_token1] = ACTIONS(1541), + [aux_sym_tag_token1] = ACTIONS(1541), + [aux_sym_tunnel_token1] = ACTIONS(1543), + [aux_sym_tunnel_device_token1] = ACTIONS(1541), + [aux_sym_update_host_keys_token1] = ACTIONS(1541), + [aux_sym_use_keychain_token1] = ACTIONS(1541), + [aux_sym_use_roaming_token1] = ACTIONS(1541), + [aux_sym_user_token1] = ACTIONS(1543), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1541), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1541), + [aux_sym_visual_host_key_token1] = ACTIONS(1541), + [aux_sym_xauth_location_token1] = ACTIONS(1541), }, [753] = { - [ts_builtin_sym_end] = ACTIONS(1812), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1814), - [aux_sym_match_token1] = ACTIONS(1812), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1812), - [aux_sym_address_family_token1] = ACTIONS(1812), - [aux_sym_batch_mode_token1] = ACTIONS(1812), - [aux_sym_bind_address_token1] = ACTIONS(1812), - [aux_sym_bind_interface_token1] = ACTIONS(1812), - [aux_sym_canonical_domains_token1] = ACTIONS(1812), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1812), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1812), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1812), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1812), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1812), - [aux_sym_certificate_file_token1] = ACTIONS(1812), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1812), - [aux_sym_channel_timeout_token1] = ACTIONS(1812), - [aux_sym_check_host_ip_token1] = ACTIONS(1812), - [aux_sym_ciphers_token1] = ACTIONS(1812), - [aux_sym_cipher_token1] = ACTIONS(1814), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1812), - [aux_sym_compression_token1] = ACTIONS(1812), - [aux_sym_connection_attempts_token1] = ACTIONS(1812), - [aux_sym_connect_timeout_token1] = ACTIONS(1812), - [aux_sym_control_master_token1] = ACTIONS(1812), - [aux_sym_control_path_token1] = ACTIONS(1812), - [aux_sym_control_persist_token1] = ACTIONS(1812), - [aux_sym_dynamic_forward_token1] = ACTIONS(1812), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1812), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1812), - [aux_sym_escape_char_token1] = ACTIONS(1812), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1812), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1812), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1812), - [aux_sym_forward_agent_token1] = ACTIONS(1812), - [aux_sym_forward_x11_token1] = ACTIONS(1814), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1812), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1812), - [aux_sym_gateway_ports_token1] = ACTIONS(1812), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1812), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1812), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1812), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1812), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1812), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1812), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1812), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1812), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1812), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1812), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1812), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1812), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1812), - [aux_sym_host_key_alias_token1] = ACTIONS(1812), - [aux_sym_hostname_token1] = ACTIONS(1812), - [aux_sym_identities_only_token1] = ACTIONS(1812), - [aux_sym_identity_agent_token1] = ACTIONS(1812), - [aux_sym_identity_file_token1] = ACTIONS(1812), - [aux_sym_ignore_unknown_token1] = ACTIONS(1812), - [aux_sym_include_token1] = ACTIONS(1812), - [aux_sym_ip_qos_token1] = ACTIONS(1812), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1812), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1812), - [aux_sym_kex_algorithms_token1] = ACTIONS(1812), - [aux_sym_known_hosts_command_token1] = ACTIONS(1812), - [aux_sym_local_command_token1] = ACTIONS(1812), - [aux_sym_local_forward_token1] = ACTIONS(1812), - [aux_sym_log_level_token1] = ACTIONS(1812), - [aux_sym_log_verbose_token1] = ACTIONS(1812), - [aux_sym_macs_token1] = ACTIONS(1812), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1812), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1812), - [aux_sym_password_authentication_token1] = ACTIONS(1812), - [aux_sym_permit_local_command_token1] = ACTIONS(1812), - [aux_sym_permit_remote_open_token1] = ACTIONS(1812), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1812), - [aux_sym_port_token1] = ACTIONS(1812), - [aux_sym_preferred_authentications_token1] = ACTIONS(1812), - [aux_sym_protocol_token1] = ACTIONS(1812), - [aux_sym_proxy_command_token1] = ACTIONS(1812), - [aux_sym_proxy_jump_token1] = ACTIONS(1812), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1812), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1812), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1812), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1812), - [aux_sym_rekey_limit_token1] = ACTIONS(1812), - [aux_sym_remote_command_token1] = ACTIONS(1812), - [aux_sym_remote_forward_token1] = ACTIONS(1812), - [aux_sym_request_tty_token1] = ACTIONS(1812), - [aux_sym_required_rsa_size_token1] = ACTIONS(1812), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1812), - [aux_sym_security_key_provider_token1] = ACTIONS(1812), - [aux_sym_send_env_token1] = ACTIONS(1812), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1812), - [aux_sym_server_alive_interval_token1] = ACTIONS(1812), - [aux_sym_session_type_token1] = ACTIONS(1812), - [aux_sym_set_env_token1] = ACTIONS(1812), - [aux_sym_stdin_null_token1] = ACTIONS(1812), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1812), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1812), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1812), - [aux_sym_syslog_facility_token1] = ACTIONS(1812), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1812), - [aux_sym_keep_alive_token1] = ACTIONS(1812), - [aux_sym_tag_token1] = ACTIONS(1812), - [aux_sym_tunnel_token1] = ACTIONS(1814), - [aux_sym_tunnel_device_token1] = ACTIONS(1812), - [aux_sym_update_host_keys_token1] = ACTIONS(1812), - [aux_sym_use_keychain_token1] = ACTIONS(1812), - [aux_sym_use_roaming_token1] = ACTIONS(1812), - [aux_sym_user_token1] = ACTIONS(1814), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1812), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1812), - [aux_sym_visual_host_key_token1] = ACTIONS(1812), - [aux_sym_xauth_location_token1] = ACTIONS(1812), + [ts_builtin_sym_end] = ACTIONS(1839), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1841), + [aux_sym_match_token1] = ACTIONS(1839), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1839), + [aux_sym_address_family_token1] = ACTIONS(1839), + [aux_sym_batch_mode_token1] = ACTIONS(1839), + [aux_sym_bind_address_token1] = ACTIONS(1839), + [aux_sym_bind_interface_token1] = ACTIONS(1839), + [aux_sym_canonical_domains_token1] = ACTIONS(1839), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1839), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1839), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1839), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1839), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1839), + [aux_sym_certificate_file_token1] = ACTIONS(1839), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1839), + [aux_sym_channel_timeout_token1] = ACTIONS(1839), + [aux_sym_check_host_ip_token1] = ACTIONS(1839), + [aux_sym_ciphers_token1] = ACTIONS(1839), + [aux_sym_cipher_token1] = ACTIONS(1841), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1839), + [aux_sym_compression_token1] = ACTIONS(1839), + [aux_sym_connection_attempts_token1] = ACTIONS(1839), + [aux_sym_connect_timeout_token1] = ACTIONS(1839), + [aux_sym_control_master_token1] = ACTIONS(1839), + [aux_sym_control_path_token1] = ACTIONS(1839), + [aux_sym_control_persist_token1] = ACTIONS(1839), + [aux_sym_dynamic_forward_token1] = ACTIONS(1839), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1839), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1839), + [aux_sym_escape_char_token1] = ACTIONS(1839), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1839), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1839), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1839), + [aux_sym_forward_agent_token1] = ACTIONS(1839), + [aux_sym_forward_x11_token1] = ACTIONS(1841), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1839), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1839), + [aux_sym_gateway_ports_token1] = ACTIONS(1839), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1839), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1839), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1839), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1839), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1839), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1839), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1839), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1839), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1839), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1839), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1839), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1839), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1839), + [aux_sym_host_key_alias_token1] = ACTIONS(1839), + [aux_sym_hostname_token1] = ACTIONS(1839), + [aux_sym_identities_only_token1] = ACTIONS(1839), + [aux_sym_identity_agent_token1] = ACTIONS(1839), + [aux_sym_identity_file_token1] = ACTIONS(1839), + [aux_sym_ignore_unknown_token1] = ACTIONS(1839), + [aux_sym_include_token1] = ACTIONS(1839), + [aux_sym_ip_qos_token1] = ACTIONS(1839), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1839), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1839), + [aux_sym_kex_algorithms_token1] = ACTIONS(1839), + [aux_sym_known_hosts_command_token1] = ACTIONS(1839), + [aux_sym_local_command_token1] = ACTIONS(1839), + [aux_sym_local_forward_token1] = ACTIONS(1839), + [aux_sym_log_level_token1] = ACTIONS(1839), + [aux_sym_log_verbose_token1] = ACTIONS(1839), + [aux_sym_macs_token1] = ACTIONS(1839), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1839), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1839), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1839), + [aux_sym_password_authentication_token1] = ACTIONS(1839), + [aux_sym_permit_local_command_token1] = ACTIONS(1839), + [aux_sym_permit_remote_open_token1] = ACTIONS(1839), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1839), + [aux_sym_port_token1] = ACTIONS(1839), + [aux_sym_preferred_authentications_token1] = ACTIONS(1839), + [aux_sym_protocol_token1] = ACTIONS(1839), + [aux_sym_proxy_command_token1] = ACTIONS(1839), + [aux_sym_proxy_jump_token1] = ACTIONS(1839), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1839), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1839), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1839), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1839), + [aux_sym_rekey_limit_token1] = ACTIONS(1839), + [aux_sym_remote_command_token1] = ACTIONS(1839), + [aux_sym_remote_forward_token1] = ACTIONS(1839), + [aux_sym_request_tty_token1] = ACTIONS(1839), + [aux_sym_required_rsa_size_token1] = ACTIONS(1839), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1839), + [aux_sym_security_key_provider_token1] = ACTIONS(1839), + [aux_sym_send_env_token1] = ACTIONS(1839), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1839), + [aux_sym_server_alive_interval_token1] = ACTIONS(1839), + [aux_sym_session_type_token1] = ACTIONS(1839), + [aux_sym_set_env_token1] = ACTIONS(1839), + [aux_sym_stdin_null_token1] = ACTIONS(1839), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1839), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1839), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1839), + [aux_sym_syslog_facility_token1] = ACTIONS(1839), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1839), + [aux_sym_keep_alive_token1] = ACTIONS(1839), + [aux_sym_tag_token1] = ACTIONS(1839), + [aux_sym_tunnel_token1] = ACTIONS(1841), + [aux_sym_tunnel_device_token1] = ACTIONS(1839), + [aux_sym_update_host_keys_token1] = ACTIONS(1839), + [aux_sym_use_keychain_token1] = ACTIONS(1839), + [aux_sym_use_roaming_token1] = ACTIONS(1839), + [aux_sym_user_token1] = ACTIONS(1841), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1839), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1839), + [aux_sym_visual_host_key_token1] = ACTIONS(1839), + [aux_sym_xauth_location_token1] = ACTIONS(1839), }, [754] = { - [ts_builtin_sym_end] = ACTIONS(834), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(836), - [aux_sym_match_token1] = ACTIONS(834), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(834), - [aux_sym_address_family_token1] = ACTIONS(834), - [aux_sym_batch_mode_token1] = ACTIONS(834), - [aux_sym_bind_address_token1] = ACTIONS(834), - [aux_sym_bind_interface_token1] = ACTIONS(834), - [aux_sym_canonical_domains_token1] = ACTIONS(834), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(834), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(834), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(834), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(834), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(834), - [aux_sym_certificate_file_token1] = ACTIONS(834), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(834), - [aux_sym_channel_timeout_token1] = ACTIONS(834), - [aux_sym_check_host_ip_token1] = ACTIONS(834), - [aux_sym_ciphers_token1] = ACTIONS(834), - [aux_sym_cipher_token1] = ACTIONS(836), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(834), - [aux_sym_compression_token1] = ACTIONS(834), - [aux_sym_connection_attempts_token1] = ACTIONS(834), - [aux_sym_connect_timeout_token1] = ACTIONS(834), - [aux_sym_control_master_token1] = ACTIONS(834), - [aux_sym_control_path_token1] = ACTIONS(834), - [aux_sym_control_persist_token1] = ACTIONS(834), - [aux_sym_dynamic_forward_token1] = ACTIONS(834), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(834), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(834), - [aux_sym_escape_char_token1] = ACTIONS(834), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(834), - [aux_sym_fingerprint_hash_token1] = ACTIONS(834), - [aux_sym_fork_after_authentication_token1] = ACTIONS(834), - [aux_sym_forward_agent_token1] = ACTIONS(834), - [aux_sym_forward_x11_token1] = ACTIONS(836), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(834), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(834), - [aux_sym_gateway_ports_token1] = ACTIONS(834), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(834), - [aux_sym_gssapi_authentication_token1] = ACTIONS(834), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(834), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(834), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(834), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(834), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(834), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(834), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(834), - [aux_sym_hash_known_hosts_token1] = ACTIONS(834), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(834), - [aux_sym_hostbased_authentication_token1] = ACTIONS(834), - [aux_sym_host_key_algorithms_token1] = ACTIONS(834), - [aux_sym_host_key_alias_token1] = ACTIONS(834), - [aux_sym_hostname_token1] = ACTIONS(834), - [aux_sym_identities_only_token1] = ACTIONS(834), - [aux_sym_identity_agent_token1] = ACTIONS(834), - [aux_sym_identity_file_token1] = ACTIONS(834), - [aux_sym_ignore_unknown_token1] = ACTIONS(834), - [aux_sym_include_token1] = ACTIONS(834), - [aux_sym_ip_qos_token1] = ACTIONS(834), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(834), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(834), - [aux_sym_kex_algorithms_token1] = ACTIONS(834), - [aux_sym_known_hosts_command_token1] = ACTIONS(834), - [aux_sym_local_command_token1] = ACTIONS(834), - [aux_sym_local_forward_token1] = ACTIONS(834), - [aux_sym_log_level_token1] = ACTIONS(834), - [aux_sym_log_verbose_token1] = ACTIONS(834), - [aux_sym_macs_token1] = ACTIONS(834), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(834), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(834), - [aux_sym_password_authentication_token1] = ACTIONS(834), - [aux_sym_permit_local_command_token1] = ACTIONS(834), - [aux_sym_permit_remote_open_token1] = ACTIONS(834), - [aux_sym_pkcs11_provider_token1] = ACTIONS(834), - [aux_sym_port_token1] = ACTIONS(834), - [aux_sym_preferred_authentications_token1] = ACTIONS(834), - [aux_sym_protocol_token1] = ACTIONS(834), - [aux_sym_proxy_command_token1] = ACTIONS(834), - [aux_sym_proxy_jump_token1] = ACTIONS(834), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(834), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(834), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(834), - [aux_sym_pubkey_authentication_token1] = ACTIONS(834), - [aux_sym_rekey_limit_token1] = ACTIONS(834), - [aux_sym_remote_command_token1] = ACTIONS(834), - [aux_sym_remote_forward_token1] = ACTIONS(834), - [aux_sym_request_tty_token1] = ACTIONS(834), - [aux_sym_required_rsa_size_token1] = ACTIONS(834), - [aux_sym_revoked_host_keys_token1] = ACTIONS(834), - [aux_sym_security_key_provider_token1] = ACTIONS(834), - [aux_sym_send_env_token1] = ACTIONS(834), - [aux_sym_server_alive_count_max_token1] = ACTIONS(834), - [aux_sym_server_alive_interval_token1] = ACTIONS(834), - [aux_sym_session_type_token1] = ACTIONS(834), - [aux_sym_set_env_token1] = ACTIONS(834), - [aux_sym_stdin_null_token1] = ACTIONS(834), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(834), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(834), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(834), - [aux_sym_syslog_facility_token1] = ACTIONS(834), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(834), - [aux_sym_keep_alive_token1] = ACTIONS(834), - [aux_sym_tag_token1] = ACTIONS(834), - [aux_sym_tunnel_token1] = ACTIONS(836), - [aux_sym_tunnel_device_token1] = ACTIONS(834), - [aux_sym_update_host_keys_token1] = ACTIONS(834), - [aux_sym_use_keychain_token1] = ACTIONS(834), - [aux_sym_use_roaming_token1] = ACTIONS(834), - [aux_sym_user_token1] = ACTIONS(836), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(834), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(834), - [aux_sym_visual_host_key_token1] = ACTIONS(834), - [aux_sym_xauth_location_token1] = ACTIONS(834), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1471), + [aux_sym_match_token1] = ACTIONS(1469), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1469), + [aux_sym_address_family_token1] = ACTIONS(1469), + [aux_sym_batch_mode_token1] = ACTIONS(1469), + [aux_sym_bind_address_token1] = ACTIONS(1469), + [aux_sym_bind_interface_token1] = ACTIONS(1469), + [aux_sym_canonical_domains_token1] = ACTIONS(1469), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1469), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1469), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1469), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1469), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1469), + [aux_sym_certificate_file_token1] = ACTIONS(1469), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1469), + [aux_sym_channel_timeout_token1] = ACTIONS(1469), + [aux_sym_check_host_ip_token1] = ACTIONS(1469), + [aux_sym_ciphers_token1] = ACTIONS(1469), + [aux_sym_cipher_token1] = ACTIONS(1471), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1469), + [aux_sym_compression_token1] = ACTIONS(1469), + [aux_sym_connection_attempts_token1] = ACTIONS(1469), + [aux_sym_connect_timeout_token1] = ACTIONS(1469), + [aux_sym_control_master_token1] = ACTIONS(1469), + [aux_sym_control_path_token1] = ACTIONS(1469), + [aux_sym_control_persist_token1] = ACTIONS(1469), + [aux_sym_dynamic_forward_token1] = ACTIONS(1469), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1469), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1469), + [aux_sym_escape_char_token1] = ACTIONS(1469), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1469), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1469), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1469), + [aux_sym_forward_agent_token1] = ACTIONS(1469), + [aux_sym_forward_x11_token1] = ACTIONS(1471), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1469), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1469), + [aux_sym_gateway_ports_token1] = ACTIONS(1469), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1469), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1469), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1469), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1469), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1469), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1469), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1469), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1469), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1469), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1469), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1469), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1469), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1469), + [aux_sym_host_key_alias_token1] = ACTIONS(1469), + [aux_sym_hostname_token1] = ACTIONS(1469), + [aux_sym_identities_only_token1] = ACTIONS(1469), + [aux_sym_identity_agent_token1] = ACTIONS(1469), + [aux_sym_identity_file_token1] = ACTIONS(1469), + [aux_sym_ignore_unknown_token1] = ACTIONS(1469), + [aux_sym_include_token1] = ACTIONS(1469), + [aux_sym_ip_qos_token1] = ACTIONS(1469), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1469), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1469), + [aux_sym_kex_algorithms_token1] = ACTIONS(1469), + [aux_sym_known_hosts_command_token1] = ACTIONS(1469), + [aux_sym_local_command_token1] = ACTIONS(1469), + [aux_sym_local_forward_token1] = ACTIONS(1469), + [aux_sym_log_level_token1] = ACTIONS(1469), + [aux_sym_log_verbose_token1] = ACTIONS(1469), + [aux_sym_macs_token1] = ACTIONS(1469), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1469), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1469), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1469), + [aux_sym_password_authentication_token1] = ACTIONS(1469), + [aux_sym_permit_local_command_token1] = ACTIONS(1469), + [aux_sym_permit_remote_open_token1] = ACTIONS(1469), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1469), + [aux_sym_port_token1] = ACTIONS(1469), + [aux_sym_preferred_authentications_token1] = ACTIONS(1469), + [aux_sym_protocol_token1] = ACTIONS(1469), + [aux_sym_proxy_command_token1] = ACTIONS(1469), + [aux_sym_proxy_jump_token1] = ACTIONS(1469), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1469), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1469), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1469), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1469), + [aux_sym_rekey_limit_token1] = ACTIONS(1469), + [aux_sym_remote_command_token1] = ACTIONS(1469), + [aux_sym_remote_forward_token1] = ACTIONS(1469), + [aux_sym_request_tty_token1] = ACTIONS(1469), + [aux_sym_required_rsa_size_token1] = ACTIONS(1469), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1469), + [aux_sym_security_key_provider_token1] = ACTIONS(1469), + [aux_sym_send_env_token1] = ACTIONS(1469), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1469), + [aux_sym_server_alive_interval_token1] = ACTIONS(1469), + [aux_sym_session_type_token1] = ACTIONS(1469), + [aux_sym_set_env_token1] = ACTIONS(1469), + [aux_sym_stdin_null_token1] = ACTIONS(1469), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1469), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1469), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1469), + [aux_sym_syslog_facility_token1] = ACTIONS(1469), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1469), + [aux_sym_keep_alive_token1] = ACTIONS(1469), + [aux_sym_tag_token1] = ACTIONS(1469), + [aux_sym_tunnel_token1] = ACTIONS(1471), + [aux_sym_tunnel_device_token1] = ACTIONS(1469), + [aux_sym_update_host_keys_token1] = ACTIONS(1469), + [aux_sym_use_keychain_token1] = ACTIONS(1469), + [aux_sym_use_roaming_token1] = ACTIONS(1469), + [aux_sym_user_token1] = ACTIONS(1471), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1469), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1469), + [aux_sym_visual_host_key_token1] = ACTIONS(1469), + [aux_sym_xauth_location_token1] = ACTIONS(1469), }, [755] = { - [ts_builtin_sym_end] = ACTIONS(840), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(842), - [aux_sym_match_token1] = ACTIONS(840), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(840), - [aux_sym_address_family_token1] = ACTIONS(840), - [aux_sym_batch_mode_token1] = ACTIONS(840), - [aux_sym_bind_address_token1] = ACTIONS(840), - [aux_sym_bind_interface_token1] = ACTIONS(840), - [aux_sym_canonical_domains_token1] = ACTIONS(840), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(840), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(840), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(840), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(840), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(840), - [aux_sym_certificate_file_token1] = ACTIONS(840), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(840), - [aux_sym_channel_timeout_token1] = ACTIONS(840), - [aux_sym_check_host_ip_token1] = ACTIONS(840), - [aux_sym_ciphers_token1] = ACTIONS(840), - [aux_sym_cipher_token1] = ACTIONS(842), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(840), - [aux_sym_compression_token1] = ACTIONS(840), - [aux_sym_connection_attempts_token1] = ACTIONS(840), - [aux_sym_connect_timeout_token1] = ACTIONS(840), - [aux_sym_control_master_token1] = ACTIONS(840), - [aux_sym_control_path_token1] = ACTIONS(840), - [aux_sym_control_persist_token1] = ACTIONS(840), - [aux_sym_dynamic_forward_token1] = ACTIONS(840), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(840), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(840), - [aux_sym_escape_char_token1] = ACTIONS(840), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(840), - [aux_sym_fingerprint_hash_token1] = ACTIONS(840), - [aux_sym_fork_after_authentication_token1] = ACTIONS(840), - [aux_sym_forward_agent_token1] = ACTIONS(840), - [aux_sym_forward_x11_token1] = ACTIONS(842), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(840), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(840), - [aux_sym_gateway_ports_token1] = ACTIONS(840), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(840), - [aux_sym_gssapi_authentication_token1] = ACTIONS(840), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(840), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(840), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(840), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(840), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(840), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(840), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(840), - [aux_sym_hash_known_hosts_token1] = ACTIONS(840), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(840), - [aux_sym_hostbased_authentication_token1] = ACTIONS(840), - [aux_sym_host_key_algorithms_token1] = ACTIONS(840), - [aux_sym_host_key_alias_token1] = ACTIONS(840), - [aux_sym_hostname_token1] = ACTIONS(840), - [aux_sym_identities_only_token1] = ACTIONS(840), - [aux_sym_identity_agent_token1] = ACTIONS(840), - [aux_sym_identity_file_token1] = ACTIONS(840), - [aux_sym_ignore_unknown_token1] = ACTIONS(840), - [aux_sym_include_token1] = ACTIONS(840), - [aux_sym_ip_qos_token1] = ACTIONS(840), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(840), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(840), - [aux_sym_kex_algorithms_token1] = ACTIONS(840), - [aux_sym_known_hosts_command_token1] = ACTIONS(840), - [aux_sym_local_command_token1] = ACTIONS(840), - [aux_sym_local_forward_token1] = ACTIONS(840), - [aux_sym_log_level_token1] = ACTIONS(840), - [aux_sym_log_verbose_token1] = ACTIONS(840), - [aux_sym_macs_token1] = ACTIONS(840), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(840), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(840), - [aux_sym_password_authentication_token1] = ACTIONS(840), - [aux_sym_permit_local_command_token1] = ACTIONS(840), - [aux_sym_permit_remote_open_token1] = ACTIONS(840), - [aux_sym_pkcs11_provider_token1] = ACTIONS(840), - [aux_sym_port_token1] = ACTIONS(840), - [aux_sym_preferred_authentications_token1] = ACTIONS(840), - [aux_sym_protocol_token1] = ACTIONS(840), - [aux_sym_proxy_command_token1] = ACTIONS(840), - [aux_sym_proxy_jump_token1] = ACTIONS(840), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(840), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(840), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(840), - [aux_sym_pubkey_authentication_token1] = ACTIONS(840), - [aux_sym_rekey_limit_token1] = ACTIONS(840), - [aux_sym_remote_command_token1] = ACTIONS(840), - [aux_sym_remote_forward_token1] = ACTIONS(840), - [aux_sym_request_tty_token1] = ACTIONS(840), - [aux_sym_required_rsa_size_token1] = ACTIONS(840), - [aux_sym_revoked_host_keys_token1] = ACTIONS(840), - [aux_sym_security_key_provider_token1] = ACTIONS(840), - [aux_sym_send_env_token1] = ACTIONS(840), - [aux_sym_server_alive_count_max_token1] = ACTIONS(840), - [aux_sym_server_alive_interval_token1] = ACTIONS(840), - [aux_sym_session_type_token1] = ACTIONS(840), - [aux_sym_set_env_token1] = ACTIONS(840), - [aux_sym_stdin_null_token1] = ACTIONS(840), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(840), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(840), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(840), - [aux_sym_syslog_facility_token1] = ACTIONS(840), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(840), - [aux_sym_keep_alive_token1] = ACTIONS(840), - [aux_sym_tag_token1] = ACTIONS(840), - [aux_sym_tunnel_token1] = ACTIONS(842), - [aux_sym_tunnel_device_token1] = ACTIONS(840), - [aux_sym_update_host_keys_token1] = ACTIONS(840), - [aux_sym_use_keychain_token1] = ACTIONS(840), - [aux_sym_use_roaming_token1] = ACTIONS(840), - [aux_sym_user_token1] = ACTIONS(842), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(840), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(840), - [aux_sym_visual_host_key_token1] = ACTIONS(840), - [aux_sym_xauth_location_token1] = ACTIONS(840), + [ts_builtin_sym_end] = ACTIONS(1713), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1715), + [aux_sym_match_token1] = ACTIONS(1713), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1713), + [aux_sym_address_family_token1] = ACTIONS(1713), + [aux_sym_batch_mode_token1] = ACTIONS(1713), + [aux_sym_bind_address_token1] = ACTIONS(1713), + [aux_sym_bind_interface_token1] = ACTIONS(1713), + [aux_sym_canonical_domains_token1] = ACTIONS(1713), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1713), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1713), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1713), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1713), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1713), + [aux_sym_certificate_file_token1] = ACTIONS(1713), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1713), + [aux_sym_channel_timeout_token1] = ACTIONS(1713), + [aux_sym_check_host_ip_token1] = ACTIONS(1713), + [aux_sym_ciphers_token1] = ACTIONS(1713), + [aux_sym_cipher_token1] = ACTIONS(1715), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1713), + [aux_sym_compression_token1] = ACTIONS(1713), + [aux_sym_connection_attempts_token1] = ACTIONS(1713), + [aux_sym_connect_timeout_token1] = ACTIONS(1713), + [aux_sym_control_master_token1] = ACTIONS(1713), + [aux_sym_control_path_token1] = ACTIONS(1713), + [aux_sym_control_persist_token1] = ACTIONS(1713), + [aux_sym_dynamic_forward_token1] = ACTIONS(1713), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1713), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1713), + [aux_sym_escape_char_token1] = ACTIONS(1713), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1713), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1713), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1713), + [aux_sym_forward_agent_token1] = ACTIONS(1713), + [aux_sym_forward_x11_token1] = ACTIONS(1715), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1713), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1713), + [aux_sym_gateway_ports_token1] = ACTIONS(1713), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1713), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1713), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1713), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1713), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1713), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1713), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1713), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1713), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1713), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1713), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1713), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1713), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1713), + [aux_sym_host_key_alias_token1] = ACTIONS(1713), + [aux_sym_hostname_token1] = ACTIONS(1713), + [aux_sym_identities_only_token1] = ACTIONS(1713), + [aux_sym_identity_agent_token1] = ACTIONS(1713), + [aux_sym_identity_file_token1] = ACTIONS(1713), + [aux_sym_ignore_unknown_token1] = ACTIONS(1713), + [aux_sym_include_token1] = ACTIONS(1713), + [aux_sym_ip_qos_token1] = ACTIONS(1713), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1713), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1713), + [aux_sym_kex_algorithms_token1] = ACTIONS(1713), + [aux_sym_known_hosts_command_token1] = ACTIONS(1713), + [aux_sym_local_command_token1] = ACTIONS(1713), + [aux_sym_local_forward_token1] = ACTIONS(1713), + [aux_sym_log_level_token1] = ACTIONS(1713), + [aux_sym_log_verbose_token1] = ACTIONS(1713), + [aux_sym_macs_token1] = ACTIONS(1713), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1713), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1713), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1713), + [aux_sym_password_authentication_token1] = ACTIONS(1713), + [aux_sym_permit_local_command_token1] = ACTIONS(1713), + [aux_sym_permit_remote_open_token1] = ACTIONS(1713), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1713), + [aux_sym_port_token1] = ACTIONS(1713), + [aux_sym_preferred_authentications_token1] = ACTIONS(1713), + [aux_sym_protocol_token1] = ACTIONS(1713), + [aux_sym_proxy_command_token1] = ACTIONS(1713), + [aux_sym_proxy_jump_token1] = ACTIONS(1713), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1713), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1713), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1713), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1713), + [aux_sym_rekey_limit_token1] = ACTIONS(1713), + [aux_sym_remote_command_token1] = ACTIONS(1713), + [aux_sym_remote_forward_token1] = ACTIONS(1713), + [aux_sym_request_tty_token1] = ACTIONS(1713), + [aux_sym_required_rsa_size_token1] = ACTIONS(1713), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1713), + [aux_sym_security_key_provider_token1] = ACTIONS(1713), + [aux_sym_send_env_token1] = ACTIONS(1713), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1713), + [aux_sym_server_alive_interval_token1] = ACTIONS(1713), + [aux_sym_session_type_token1] = ACTIONS(1713), + [aux_sym_set_env_token1] = ACTIONS(1713), + [aux_sym_stdin_null_token1] = ACTIONS(1713), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1713), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1713), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1713), + [aux_sym_syslog_facility_token1] = ACTIONS(1713), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1713), + [aux_sym_keep_alive_token1] = ACTIONS(1713), + [aux_sym_tag_token1] = ACTIONS(1713), + [aux_sym_tunnel_token1] = ACTIONS(1715), + [aux_sym_tunnel_device_token1] = ACTIONS(1713), + [aux_sym_update_host_keys_token1] = ACTIONS(1713), + [aux_sym_use_keychain_token1] = ACTIONS(1713), + [aux_sym_use_roaming_token1] = ACTIONS(1713), + [aux_sym_user_token1] = ACTIONS(1715), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1713), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1713), + [aux_sym_visual_host_key_token1] = ACTIONS(1713), + [aux_sym_xauth_location_token1] = ACTIONS(1713), }, [756] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1808), - [aux_sym_match_token1] = ACTIONS(1806), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1806), - [aux_sym_address_family_token1] = ACTIONS(1806), - [aux_sym_batch_mode_token1] = ACTIONS(1806), - [aux_sym_bind_address_token1] = ACTIONS(1806), - [aux_sym_bind_interface_token1] = ACTIONS(1806), - [aux_sym_canonical_domains_token1] = ACTIONS(1806), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1806), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1806), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1806), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1806), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1806), - [aux_sym_certificate_file_token1] = ACTIONS(1806), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1806), - [aux_sym_channel_timeout_token1] = ACTIONS(1806), - [aux_sym_check_host_ip_token1] = ACTIONS(1806), - [aux_sym_ciphers_token1] = ACTIONS(1806), - [aux_sym_cipher_token1] = ACTIONS(1808), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1806), - [aux_sym_compression_token1] = ACTIONS(1806), - [aux_sym_connection_attempts_token1] = ACTIONS(1806), - [aux_sym_connect_timeout_token1] = ACTIONS(1806), - [aux_sym_control_master_token1] = ACTIONS(1806), - [aux_sym_control_path_token1] = ACTIONS(1806), - [aux_sym_control_persist_token1] = ACTIONS(1806), - [aux_sym_dynamic_forward_token1] = ACTIONS(1806), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1806), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1806), - [aux_sym_escape_char_token1] = ACTIONS(1806), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1806), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1806), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1806), - [aux_sym_forward_agent_token1] = ACTIONS(1806), - [aux_sym_forward_x11_token1] = ACTIONS(1808), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1806), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1806), - [aux_sym_gateway_ports_token1] = ACTIONS(1806), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1806), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1806), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1806), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1806), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1806), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1806), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1806), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1806), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1806), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1806), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1806), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1806), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1806), - [aux_sym_host_key_alias_token1] = ACTIONS(1806), - [aux_sym_hostname_token1] = ACTIONS(1806), - [aux_sym_identities_only_token1] = ACTIONS(1806), - [aux_sym_identity_agent_token1] = ACTIONS(1806), - [aux_sym_identity_file_token1] = ACTIONS(1806), - [aux_sym_ignore_unknown_token1] = ACTIONS(1806), - [aux_sym_include_token1] = ACTIONS(1806), - [aux_sym_ip_qos_token1] = ACTIONS(1806), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1806), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1806), - [aux_sym_kex_algorithms_token1] = ACTIONS(1806), - [aux_sym_known_hosts_command_token1] = ACTIONS(1806), - [aux_sym_local_command_token1] = ACTIONS(1806), - [aux_sym_local_forward_token1] = ACTIONS(1806), - [aux_sym_log_level_token1] = ACTIONS(1806), - [aux_sym_log_verbose_token1] = ACTIONS(1806), - [aux_sym_macs_token1] = ACTIONS(1806), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1806), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1806), - [aux_sym_password_authentication_token1] = ACTIONS(1806), - [aux_sym_permit_local_command_token1] = ACTIONS(1806), - [aux_sym_permit_remote_open_token1] = ACTIONS(1806), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1806), - [aux_sym_port_token1] = ACTIONS(1806), - [aux_sym_preferred_authentications_token1] = ACTIONS(1806), - [aux_sym_protocol_token1] = ACTIONS(1806), - [aux_sym_proxy_command_token1] = ACTIONS(1806), - [aux_sym_proxy_jump_token1] = ACTIONS(1806), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1806), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1806), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1806), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1806), - [aux_sym_rekey_limit_token1] = ACTIONS(1806), - [aux_sym_remote_command_token1] = ACTIONS(1806), - [aux_sym_remote_forward_token1] = ACTIONS(1806), - [aux_sym_request_tty_token1] = ACTIONS(1806), - [aux_sym_required_rsa_size_token1] = ACTIONS(1806), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1806), - [aux_sym_security_key_provider_token1] = ACTIONS(1806), - [aux_sym_send_env_token1] = ACTIONS(1806), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1806), - [aux_sym_server_alive_interval_token1] = ACTIONS(1806), - [aux_sym_session_type_token1] = ACTIONS(1806), - [aux_sym_set_env_token1] = ACTIONS(1806), - [aux_sym_stdin_null_token1] = ACTIONS(1806), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1806), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1806), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1806), - [aux_sym_syslog_facility_token1] = ACTIONS(1806), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1806), - [aux_sym_keep_alive_token1] = ACTIONS(1806), - [aux_sym_tag_token1] = ACTIONS(1806), - [aux_sym_tunnel_token1] = ACTIONS(1808), - [aux_sym_tunnel_device_token1] = ACTIONS(1806), - [aux_sym_update_host_keys_token1] = ACTIONS(1806), - [aux_sym_use_keychain_token1] = ACTIONS(1806), - [aux_sym_use_roaming_token1] = ACTIONS(1806), - [aux_sym_user_token1] = ACTIONS(1808), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1806), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1806), - [aux_sym_visual_host_key_token1] = ACTIONS(1806), - [aux_sym_xauth_location_token1] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1835), + [aux_sym_match_token1] = ACTIONS(1833), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1833), + [aux_sym_address_family_token1] = ACTIONS(1833), + [aux_sym_batch_mode_token1] = ACTIONS(1833), + [aux_sym_bind_address_token1] = ACTIONS(1833), + [aux_sym_bind_interface_token1] = ACTIONS(1833), + [aux_sym_canonical_domains_token1] = ACTIONS(1833), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1833), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1833), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1833), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1833), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1833), + [aux_sym_certificate_file_token1] = ACTIONS(1833), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1833), + [aux_sym_channel_timeout_token1] = ACTIONS(1833), + [aux_sym_check_host_ip_token1] = ACTIONS(1833), + [aux_sym_ciphers_token1] = ACTIONS(1833), + [aux_sym_cipher_token1] = ACTIONS(1835), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1833), + [aux_sym_compression_token1] = ACTIONS(1833), + [aux_sym_connection_attempts_token1] = ACTIONS(1833), + [aux_sym_connect_timeout_token1] = ACTIONS(1833), + [aux_sym_control_master_token1] = ACTIONS(1833), + [aux_sym_control_path_token1] = ACTIONS(1833), + [aux_sym_control_persist_token1] = ACTIONS(1833), + [aux_sym_dynamic_forward_token1] = ACTIONS(1833), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1833), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1833), + [aux_sym_escape_char_token1] = ACTIONS(1833), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1833), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1833), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1833), + [aux_sym_forward_agent_token1] = ACTIONS(1833), + [aux_sym_forward_x11_token1] = ACTIONS(1835), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1833), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1833), + [aux_sym_gateway_ports_token1] = ACTIONS(1833), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1833), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1833), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1833), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1833), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1833), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1833), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1833), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1833), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1833), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1833), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1833), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1833), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1833), + [aux_sym_host_key_alias_token1] = ACTIONS(1833), + [aux_sym_hostname_token1] = ACTIONS(1833), + [aux_sym_identities_only_token1] = ACTIONS(1833), + [aux_sym_identity_agent_token1] = ACTIONS(1833), + [aux_sym_identity_file_token1] = ACTIONS(1833), + [aux_sym_ignore_unknown_token1] = ACTIONS(1833), + [aux_sym_include_token1] = ACTIONS(1833), + [aux_sym_ip_qos_token1] = ACTIONS(1833), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1833), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1833), + [aux_sym_kex_algorithms_token1] = ACTIONS(1833), + [aux_sym_known_hosts_command_token1] = ACTIONS(1833), + [aux_sym_local_command_token1] = ACTIONS(1833), + [aux_sym_local_forward_token1] = ACTIONS(1833), + [aux_sym_log_level_token1] = ACTIONS(1833), + [aux_sym_log_verbose_token1] = ACTIONS(1833), + [aux_sym_macs_token1] = ACTIONS(1833), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1833), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1833), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1833), + [aux_sym_password_authentication_token1] = ACTIONS(1833), + [aux_sym_permit_local_command_token1] = ACTIONS(1833), + [aux_sym_permit_remote_open_token1] = ACTIONS(1833), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1833), + [aux_sym_port_token1] = ACTIONS(1833), + [aux_sym_preferred_authentications_token1] = ACTIONS(1833), + [aux_sym_protocol_token1] = ACTIONS(1833), + [aux_sym_proxy_command_token1] = ACTIONS(1833), + [aux_sym_proxy_jump_token1] = ACTIONS(1833), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1833), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1833), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1833), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1833), + [aux_sym_rekey_limit_token1] = ACTIONS(1833), + [aux_sym_remote_command_token1] = ACTIONS(1833), + [aux_sym_remote_forward_token1] = ACTIONS(1833), + [aux_sym_request_tty_token1] = ACTIONS(1833), + [aux_sym_required_rsa_size_token1] = ACTIONS(1833), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1833), + [aux_sym_security_key_provider_token1] = ACTIONS(1833), + [aux_sym_send_env_token1] = ACTIONS(1833), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1833), + [aux_sym_server_alive_interval_token1] = ACTIONS(1833), + [aux_sym_session_type_token1] = ACTIONS(1833), + [aux_sym_set_env_token1] = ACTIONS(1833), + [aux_sym_stdin_null_token1] = ACTIONS(1833), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1833), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1833), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1833), + [aux_sym_syslog_facility_token1] = ACTIONS(1833), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1833), + [aux_sym_keep_alive_token1] = ACTIONS(1833), + [aux_sym_tag_token1] = ACTIONS(1833), + [aux_sym_tunnel_token1] = ACTIONS(1835), + [aux_sym_tunnel_device_token1] = ACTIONS(1833), + [aux_sym_update_host_keys_token1] = ACTIONS(1833), + [aux_sym_use_keychain_token1] = ACTIONS(1833), + [aux_sym_use_roaming_token1] = ACTIONS(1833), + [aux_sym_user_token1] = ACTIONS(1835), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1833), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1833), + [aux_sym_visual_host_key_token1] = ACTIONS(1833), + [aux_sym_xauth_location_token1] = ACTIONS(1833), }, [757] = { - [ts_builtin_sym_end] = ACTIONS(978), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(980), - [aux_sym_match_token1] = ACTIONS(978), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(978), - [aux_sym_address_family_token1] = ACTIONS(978), - [aux_sym_batch_mode_token1] = ACTIONS(978), - [aux_sym_bind_address_token1] = ACTIONS(978), - [aux_sym_bind_interface_token1] = ACTIONS(978), - [aux_sym_canonical_domains_token1] = ACTIONS(978), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(978), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(978), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(978), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(978), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(978), - [aux_sym_certificate_file_token1] = ACTIONS(978), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(978), - [aux_sym_channel_timeout_token1] = ACTIONS(978), - [aux_sym_check_host_ip_token1] = ACTIONS(978), - [aux_sym_ciphers_token1] = ACTIONS(978), - [aux_sym_cipher_token1] = ACTIONS(980), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(978), - [aux_sym_compression_token1] = ACTIONS(978), - [aux_sym_connection_attempts_token1] = ACTIONS(978), - [aux_sym_connect_timeout_token1] = ACTIONS(978), - [aux_sym_control_master_token1] = ACTIONS(978), - [aux_sym_control_path_token1] = ACTIONS(978), - [aux_sym_control_persist_token1] = ACTIONS(978), - [aux_sym_dynamic_forward_token1] = ACTIONS(978), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(978), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(978), - [aux_sym_escape_char_token1] = ACTIONS(978), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(978), - [aux_sym_fingerprint_hash_token1] = ACTIONS(978), - [aux_sym_fork_after_authentication_token1] = ACTIONS(978), - [aux_sym_forward_agent_token1] = ACTIONS(978), - [aux_sym_forward_x11_token1] = ACTIONS(980), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(978), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(978), - [aux_sym_gateway_ports_token1] = ACTIONS(978), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(978), - [aux_sym_gssapi_authentication_token1] = ACTIONS(978), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(978), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(978), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(978), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(978), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(978), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(978), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(978), - [aux_sym_hash_known_hosts_token1] = ACTIONS(978), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(978), - [aux_sym_hostbased_authentication_token1] = ACTIONS(978), - [aux_sym_host_key_algorithms_token1] = ACTIONS(978), - [aux_sym_host_key_alias_token1] = ACTIONS(978), - [aux_sym_hostname_token1] = ACTIONS(978), - [aux_sym_identities_only_token1] = ACTIONS(978), - [aux_sym_identity_agent_token1] = ACTIONS(978), - [aux_sym_identity_file_token1] = ACTIONS(978), - [aux_sym_ignore_unknown_token1] = ACTIONS(978), - [aux_sym_include_token1] = ACTIONS(978), - [aux_sym_ip_qos_token1] = ACTIONS(978), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(978), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(978), - [aux_sym_kex_algorithms_token1] = ACTIONS(978), - [aux_sym_known_hosts_command_token1] = ACTIONS(978), - [aux_sym_local_command_token1] = ACTIONS(978), - [aux_sym_local_forward_token1] = ACTIONS(978), - [aux_sym_log_level_token1] = ACTIONS(978), - [aux_sym_log_verbose_token1] = ACTIONS(978), - [aux_sym_macs_token1] = ACTIONS(978), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(978), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(978), - [aux_sym_password_authentication_token1] = ACTIONS(978), - [aux_sym_permit_local_command_token1] = ACTIONS(978), - [aux_sym_permit_remote_open_token1] = ACTIONS(978), - [aux_sym_pkcs11_provider_token1] = ACTIONS(978), - [aux_sym_port_token1] = ACTIONS(978), - [aux_sym_preferred_authentications_token1] = ACTIONS(978), - [aux_sym_protocol_token1] = ACTIONS(978), - [aux_sym_proxy_command_token1] = ACTIONS(978), - [aux_sym_proxy_jump_token1] = ACTIONS(978), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(978), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(978), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(978), - [aux_sym_pubkey_authentication_token1] = ACTIONS(978), - [aux_sym_rekey_limit_token1] = ACTIONS(978), - [aux_sym_remote_command_token1] = ACTIONS(978), - [aux_sym_remote_forward_token1] = ACTIONS(978), - [aux_sym_request_tty_token1] = ACTIONS(978), - [aux_sym_required_rsa_size_token1] = ACTIONS(978), - [aux_sym_revoked_host_keys_token1] = ACTIONS(978), - [aux_sym_security_key_provider_token1] = ACTIONS(978), - [aux_sym_send_env_token1] = ACTIONS(978), - [aux_sym_server_alive_count_max_token1] = ACTIONS(978), - [aux_sym_server_alive_interval_token1] = ACTIONS(978), - [aux_sym_session_type_token1] = ACTIONS(978), - [aux_sym_set_env_token1] = ACTIONS(978), - [aux_sym_stdin_null_token1] = ACTIONS(978), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(978), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(978), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(978), - [aux_sym_syslog_facility_token1] = ACTIONS(978), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(978), - [aux_sym_keep_alive_token1] = ACTIONS(978), - [aux_sym_tag_token1] = ACTIONS(978), - [aux_sym_tunnel_token1] = ACTIONS(980), - [aux_sym_tunnel_device_token1] = ACTIONS(978), - [aux_sym_update_host_keys_token1] = ACTIONS(978), - [aux_sym_use_keychain_token1] = ACTIONS(978), - [aux_sym_use_roaming_token1] = ACTIONS(978), - [aux_sym_user_token1] = ACTIONS(980), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(978), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(978), - [aux_sym_visual_host_key_token1] = ACTIONS(978), - [aux_sym_xauth_location_token1] = ACTIONS(978), + [ts_builtin_sym_end] = ACTIONS(731), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(733), + [aux_sym_match_token1] = ACTIONS(731), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(731), + [aux_sym_address_family_token1] = ACTIONS(731), + [aux_sym_batch_mode_token1] = ACTIONS(731), + [aux_sym_bind_address_token1] = ACTIONS(731), + [aux_sym_bind_interface_token1] = ACTIONS(731), + [aux_sym_canonical_domains_token1] = ACTIONS(731), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(731), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(731), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(731), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(731), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(731), + [aux_sym_certificate_file_token1] = ACTIONS(731), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(731), + [aux_sym_channel_timeout_token1] = ACTIONS(731), + [aux_sym_check_host_ip_token1] = ACTIONS(731), + [aux_sym_ciphers_token1] = ACTIONS(731), + [aux_sym_cipher_token1] = ACTIONS(733), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(731), + [aux_sym_compression_token1] = ACTIONS(731), + [aux_sym_connection_attempts_token1] = ACTIONS(731), + [aux_sym_connect_timeout_token1] = ACTIONS(731), + [aux_sym_control_master_token1] = ACTIONS(731), + [aux_sym_control_path_token1] = ACTIONS(731), + [aux_sym_control_persist_token1] = ACTIONS(731), + [aux_sym_dynamic_forward_token1] = ACTIONS(731), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(731), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(731), + [aux_sym_escape_char_token1] = ACTIONS(731), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(731), + [aux_sym_fingerprint_hash_token1] = ACTIONS(731), + [aux_sym_fork_after_authentication_token1] = ACTIONS(731), + [aux_sym_forward_agent_token1] = ACTIONS(731), + [aux_sym_forward_x11_token1] = ACTIONS(733), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(731), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(731), + [aux_sym_gateway_ports_token1] = ACTIONS(731), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(731), + [aux_sym_gssapi_authentication_token1] = ACTIONS(731), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(731), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(731), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(731), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(731), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(731), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(731), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(731), + [aux_sym_hash_known_hosts_token1] = ACTIONS(731), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(731), + [aux_sym_hostbased_authentication_token1] = ACTIONS(731), + [aux_sym_host_key_algorithms_token1] = ACTIONS(731), + [aux_sym_host_key_alias_token1] = ACTIONS(731), + [aux_sym_hostname_token1] = ACTIONS(731), + [aux_sym_identities_only_token1] = ACTIONS(731), + [aux_sym_identity_agent_token1] = ACTIONS(731), + [aux_sym_identity_file_token1] = ACTIONS(731), + [aux_sym_ignore_unknown_token1] = ACTIONS(731), + [aux_sym_include_token1] = ACTIONS(731), + [aux_sym_ip_qos_token1] = ACTIONS(731), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(731), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(731), + [aux_sym_kex_algorithms_token1] = ACTIONS(731), + [aux_sym_known_hosts_command_token1] = ACTIONS(731), + [aux_sym_local_command_token1] = ACTIONS(731), + [aux_sym_local_forward_token1] = ACTIONS(731), + [aux_sym_log_level_token1] = ACTIONS(731), + [aux_sym_log_verbose_token1] = ACTIONS(731), + [aux_sym_macs_token1] = ACTIONS(731), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(731), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(731), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(731), + [aux_sym_password_authentication_token1] = ACTIONS(731), + [aux_sym_permit_local_command_token1] = ACTIONS(731), + [aux_sym_permit_remote_open_token1] = ACTIONS(731), + [aux_sym_pkcs11_provider_token1] = ACTIONS(731), + [aux_sym_port_token1] = ACTIONS(731), + [aux_sym_preferred_authentications_token1] = ACTIONS(731), + [aux_sym_protocol_token1] = ACTIONS(731), + [aux_sym_proxy_command_token1] = ACTIONS(731), + [aux_sym_proxy_jump_token1] = ACTIONS(731), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(731), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(731), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(731), + [aux_sym_pubkey_authentication_token1] = ACTIONS(731), + [aux_sym_rekey_limit_token1] = ACTIONS(731), + [aux_sym_remote_command_token1] = ACTIONS(731), + [aux_sym_remote_forward_token1] = ACTIONS(731), + [aux_sym_request_tty_token1] = ACTIONS(731), + [aux_sym_required_rsa_size_token1] = ACTIONS(731), + [aux_sym_revoked_host_keys_token1] = ACTIONS(731), + [aux_sym_security_key_provider_token1] = ACTIONS(731), + [aux_sym_send_env_token1] = ACTIONS(731), + [aux_sym_server_alive_count_max_token1] = ACTIONS(731), + [aux_sym_server_alive_interval_token1] = ACTIONS(731), + [aux_sym_session_type_token1] = ACTIONS(731), + [aux_sym_set_env_token1] = ACTIONS(731), + [aux_sym_stdin_null_token1] = ACTIONS(731), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(731), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(731), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(731), + [aux_sym_syslog_facility_token1] = ACTIONS(731), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(731), + [aux_sym_keep_alive_token1] = ACTIONS(731), + [aux_sym_tag_token1] = ACTIONS(731), + [aux_sym_tunnel_token1] = ACTIONS(733), + [aux_sym_tunnel_device_token1] = ACTIONS(731), + [aux_sym_update_host_keys_token1] = ACTIONS(731), + [aux_sym_use_keychain_token1] = ACTIONS(731), + [aux_sym_use_roaming_token1] = ACTIONS(731), + [aux_sym_user_token1] = ACTIONS(733), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(731), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(731), + [aux_sym_visual_host_key_token1] = ACTIONS(731), + [aux_sym_xauth_location_token1] = ACTIONS(731), }, [758] = { - [ts_builtin_sym_end] = ACTIONS(846), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(848), - [aux_sym_match_token1] = ACTIONS(846), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(846), - [aux_sym_address_family_token1] = ACTIONS(846), - [aux_sym_batch_mode_token1] = ACTIONS(846), - [aux_sym_bind_address_token1] = ACTIONS(846), - [aux_sym_bind_interface_token1] = ACTIONS(846), - [aux_sym_canonical_domains_token1] = ACTIONS(846), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(846), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(846), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(846), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(846), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(846), - [aux_sym_certificate_file_token1] = ACTIONS(846), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(846), - [aux_sym_channel_timeout_token1] = ACTIONS(846), - [aux_sym_check_host_ip_token1] = ACTIONS(846), - [aux_sym_ciphers_token1] = ACTIONS(846), - [aux_sym_cipher_token1] = ACTIONS(848), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(846), - [aux_sym_compression_token1] = ACTIONS(846), - [aux_sym_connection_attempts_token1] = ACTIONS(846), - [aux_sym_connect_timeout_token1] = ACTIONS(846), - [aux_sym_control_master_token1] = ACTIONS(846), - [aux_sym_control_path_token1] = ACTIONS(846), - [aux_sym_control_persist_token1] = ACTIONS(846), - [aux_sym_dynamic_forward_token1] = ACTIONS(846), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(846), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(846), - [aux_sym_escape_char_token1] = ACTIONS(846), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(846), - [aux_sym_fingerprint_hash_token1] = ACTIONS(846), - [aux_sym_fork_after_authentication_token1] = ACTIONS(846), - [aux_sym_forward_agent_token1] = ACTIONS(846), - [aux_sym_forward_x11_token1] = ACTIONS(848), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(846), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(846), - [aux_sym_gateway_ports_token1] = ACTIONS(846), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(846), - [aux_sym_gssapi_authentication_token1] = ACTIONS(846), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(846), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(846), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(846), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(846), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(846), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(846), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(846), - [aux_sym_hash_known_hosts_token1] = ACTIONS(846), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(846), - [aux_sym_hostbased_authentication_token1] = ACTIONS(846), - [aux_sym_host_key_algorithms_token1] = ACTIONS(846), - [aux_sym_host_key_alias_token1] = ACTIONS(846), - [aux_sym_hostname_token1] = ACTIONS(846), - [aux_sym_identities_only_token1] = ACTIONS(846), - [aux_sym_identity_agent_token1] = ACTIONS(846), - [aux_sym_identity_file_token1] = ACTIONS(846), - [aux_sym_ignore_unknown_token1] = ACTIONS(846), - [aux_sym_include_token1] = ACTIONS(846), - [aux_sym_ip_qos_token1] = ACTIONS(846), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(846), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(846), - [aux_sym_kex_algorithms_token1] = ACTIONS(846), - [aux_sym_known_hosts_command_token1] = ACTIONS(846), - [aux_sym_local_command_token1] = ACTIONS(846), - [aux_sym_local_forward_token1] = ACTIONS(846), - [aux_sym_log_level_token1] = ACTIONS(846), - [aux_sym_log_verbose_token1] = ACTIONS(846), - [aux_sym_macs_token1] = ACTIONS(846), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(846), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(846), - [aux_sym_password_authentication_token1] = ACTIONS(846), - [aux_sym_permit_local_command_token1] = ACTIONS(846), - [aux_sym_permit_remote_open_token1] = ACTIONS(846), - [aux_sym_pkcs11_provider_token1] = ACTIONS(846), - [aux_sym_port_token1] = ACTIONS(846), - [aux_sym_preferred_authentications_token1] = ACTIONS(846), - [aux_sym_protocol_token1] = ACTIONS(846), - [aux_sym_proxy_command_token1] = ACTIONS(846), - [aux_sym_proxy_jump_token1] = ACTIONS(846), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(846), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(846), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(846), - [aux_sym_pubkey_authentication_token1] = ACTIONS(846), - [aux_sym_rekey_limit_token1] = ACTIONS(846), - [aux_sym_remote_command_token1] = ACTIONS(846), - [aux_sym_remote_forward_token1] = ACTIONS(846), - [aux_sym_request_tty_token1] = ACTIONS(846), - [aux_sym_required_rsa_size_token1] = ACTIONS(846), - [aux_sym_revoked_host_keys_token1] = ACTIONS(846), - [aux_sym_security_key_provider_token1] = ACTIONS(846), - [aux_sym_send_env_token1] = ACTIONS(846), - [aux_sym_server_alive_count_max_token1] = ACTIONS(846), - [aux_sym_server_alive_interval_token1] = ACTIONS(846), - [aux_sym_session_type_token1] = ACTIONS(846), - [aux_sym_set_env_token1] = ACTIONS(846), - [aux_sym_stdin_null_token1] = ACTIONS(846), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(846), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(846), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(846), - [aux_sym_syslog_facility_token1] = ACTIONS(846), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(846), - [aux_sym_keep_alive_token1] = ACTIONS(846), - [aux_sym_tag_token1] = ACTIONS(846), - [aux_sym_tunnel_token1] = ACTIONS(848), - [aux_sym_tunnel_device_token1] = ACTIONS(846), - [aux_sym_update_host_keys_token1] = ACTIONS(846), - [aux_sym_use_keychain_token1] = ACTIONS(846), - [aux_sym_use_roaming_token1] = ACTIONS(846), - [aux_sym_user_token1] = ACTIONS(848), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(846), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(846), - [aux_sym_visual_host_key_token1] = ACTIONS(846), - [aux_sym_xauth_location_token1] = ACTIONS(846), + [ts_builtin_sym_end] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(943), + [aux_sym_match_token1] = ACTIONS(941), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(941), + [aux_sym_address_family_token1] = ACTIONS(941), + [aux_sym_batch_mode_token1] = ACTIONS(941), + [aux_sym_bind_address_token1] = ACTIONS(941), + [aux_sym_bind_interface_token1] = ACTIONS(941), + [aux_sym_canonical_domains_token1] = ACTIONS(941), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(941), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(941), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(941), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(941), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(941), + [aux_sym_certificate_file_token1] = ACTIONS(941), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(941), + [aux_sym_channel_timeout_token1] = ACTIONS(941), + [aux_sym_check_host_ip_token1] = ACTIONS(941), + [aux_sym_ciphers_token1] = ACTIONS(941), + [aux_sym_cipher_token1] = ACTIONS(943), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(941), + [aux_sym_compression_token1] = ACTIONS(941), + [aux_sym_connection_attempts_token1] = ACTIONS(941), + [aux_sym_connect_timeout_token1] = ACTIONS(941), + [aux_sym_control_master_token1] = ACTIONS(941), + [aux_sym_control_path_token1] = ACTIONS(941), + [aux_sym_control_persist_token1] = ACTIONS(941), + [aux_sym_dynamic_forward_token1] = ACTIONS(941), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(941), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(941), + [aux_sym_escape_char_token1] = ACTIONS(941), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(941), + [aux_sym_fingerprint_hash_token1] = ACTIONS(941), + [aux_sym_fork_after_authentication_token1] = ACTIONS(941), + [aux_sym_forward_agent_token1] = ACTIONS(941), + [aux_sym_forward_x11_token1] = ACTIONS(943), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(941), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(941), + [aux_sym_gateway_ports_token1] = ACTIONS(941), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(941), + [aux_sym_gssapi_authentication_token1] = ACTIONS(941), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(941), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(941), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(941), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(941), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(941), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(941), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(941), + [aux_sym_hash_known_hosts_token1] = ACTIONS(941), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(941), + [aux_sym_hostbased_authentication_token1] = ACTIONS(941), + [aux_sym_host_key_algorithms_token1] = ACTIONS(941), + [aux_sym_host_key_alias_token1] = ACTIONS(941), + [aux_sym_hostname_token1] = ACTIONS(941), + [aux_sym_identities_only_token1] = ACTIONS(941), + [aux_sym_identity_agent_token1] = ACTIONS(941), + [aux_sym_identity_file_token1] = ACTIONS(941), + [aux_sym_ignore_unknown_token1] = ACTIONS(941), + [aux_sym_include_token1] = ACTIONS(941), + [aux_sym_ip_qos_token1] = ACTIONS(941), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(941), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(941), + [aux_sym_kex_algorithms_token1] = ACTIONS(941), + [aux_sym_known_hosts_command_token1] = ACTIONS(941), + [aux_sym_local_command_token1] = ACTIONS(941), + [aux_sym_local_forward_token1] = ACTIONS(941), + [aux_sym_log_level_token1] = ACTIONS(941), + [aux_sym_log_verbose_token1] = ACTIONS(941), + [aux_sym_macs_token1] = ACTIONS(941), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(941), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(941), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(941), + [aux_sym_password_authentication_token1] = ACTIONS(941), + [aux_sym_permit_local_command_token1] = ACTIONS(941), + [aux_sym_permit_remote_open_token1] = ACTIONS(941), + [aux_sym_pkcs11_provider_token1] = ACTIONS(941), + [aux_sym_port_token1] = ACTIONS(941), + [aux_sym_preferred_authentications_token1] = ACTIONS(941), + [aux_sym_protocol_token1] = ACTIONS(941), + [aux_sym_proxy_command_token1] = ACTIONS(941), + [aux_sym_proxy_jump_token1] = ACTIONS(941), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(941), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(941), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(941), + [aux_sym_pubkey_authentication_token1] = ACTIONS(941), + [aux_sym_rekey_limit_token1] = ACTIONS(941), + [aux_sym_remote_command_token1] = ACTIONS(941), + [aux_sym_remote_forward_token1] = ACTIONS(941), + [aux_sym_request_tty_token1] = ACTIONS(941), + [aux_sym_required_rsa_size_token1] = ACTIONS(941), + [aux_sym_revoked_host_keys_token1] = ACTIONS(941), + [aux_sym_security_key_provider_token1] = ACTIONS(941), + [aux_sym_send_env_token1] = ACTIONS(941), + [aux_sym_server_alive_count_max_token1] = ACTIONS(941), + [aux_sym_server_alive_interval_token1] = ACTIONS(941), + [aux_sym_session_type_token1] = ACTIONS(941), + [aux_sym_set_env_token1] = ACTIONS(941), + [aux_sym_stdin_null_token1] = ACTIONS(941), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(941), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(941), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(941), + [aux_sym_syslog_facility_token1] = ACTIONS(941), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(941), + [aux_sym_keep_alive_token1] = ACTIONS(941), + [aux_sym_tag_token1] = ACTIONS(941), + [aux_sym_tunnel_token1] = ACTIONS(943), + [aux_sym_tunnel_device_token1] = ACTIONS(941), + [aux_sym_update_host_keys_token1] = ACTIONS(941), + [aux_sym_use_keychain_token1] = ACTIONS(941), + [aux_sym_use_roaming_token1] = ACTIONS(941), + [aux_sym_user_token1] = ACTIONS(943), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(941), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(941), + [aux_sym_visual_host_key_token1] = ACTIONS(941), + [aux_sym_xauth_location_token1] = ACTIONS(941), }, [759] = { - [ts_builtin_sym_end] = ACTIONS(1800), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1802), - [aux_sym_match_token1] = ACTIONS(1800), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1800), - [aux_sym_address_family_token1] = ACTIONS(1800), - [aux_sym_batch_mode_token1] = ACTIONS(1800), - [aux_sym_bind_address_token1] = ACTIONS(1800), - [aux_sym_bind_interface_token1] = ACTIONS(1800), - [aux_sym_canonical_domains_token1] = ACTIONS(1800), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1800), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1800), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1800), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1800), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1800), - [aux_sym_certificate_file_token1] = ACTIONS(1800), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1800), - [aux_sym_channel_timeout_token1] = ACTIONS(1800), - [aux_sym_check_host_ip_token1] = ACTIONS(1800), - [aux_sym_ciphers_token1] = ACTIONS(1800), - [aux_sym_cipher_token1] = ACTIONS(1802), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1800), - [aux_sym_compression_token1] = ACTIONS(1800), - [aux_sym_connection_attempts_token1] = ACTIONS(1800), - [aux_sym_connect_timeout_token1] = ACTIONS(1800), - [aux_sym_control_master_token1] = ACTIONS(1800), - [aux_sym_control_path_token1] = ACTIONS(1800), - [aux_sym_control_persist_token1] = ACTIONS(1800), - [aux_sym_dynamic_forward_token1] = ACTIONS(1800), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1800), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1800), - [aux_sym_escape_char_token1] = ACTIONS(1800), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1800), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1800), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1800), - [aux_sym_forward_agent_token1] = ACTIONS(1800), - [aux_sym_forward_x11_token1] = ACTIONS(1802), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1800), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1800), - [aux_sym_gateway_ports_token1] = ACTIONS(1800), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1800), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1800), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1800), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1800), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1800), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1800), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1800), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1800), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1800), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1800), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1800), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1800), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1800), - [aux_sym_host_key_alias_token1] = ACTIONS(1800), - [aux_sym_hostname_token1] = ACTIONS(1800), - [aux_sym_identities_only_token1] = ACTIONS(1800), - [aux_sym_identity_agent_token1] = ACTIONS(1800), - [aux_sym_identity_file_token1] = ACTIONS(1800), - [aux_sym_ignore_unknown_token1] = ACTIONS(1800), - [aux_sym_include_token1] = ACTIONS(1800), - [aux_sym_ip_qos_token1] = ACTIONS(1800), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1800), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1800), - [aux_sym_kex_algorithms_token1] = ACTIONS(1800), - [aux_sym_known_hosts_command_token1] = ACTIONS(1800), - [aux_sym_local_command_token1] = ACTIONS(1800), - [aux_sym_local_forward_token1] = ACTIONS(1800), - [aux_sym_log_level_token1] = ACTIONS(1800), - [aux_sym_log_verbose_token1] = ACTIONS(1800), - [aux_sym_macs_token1] = ACTIONS(1800), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1800), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1800), - [aux_sym_password_authentication_token1] = ACTIONS(1800), - [aux_sym_permit_local_command_token1] = ACTIONS(1800), - [aux_sym_permit_remote_open_token1] = ACTIONS(1800), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1800), - [aux_sym_port_token1] = ACTIONS(1800), - [aux_sym_preferred_authentications_token1] = ACTIONS(1800), - [aux_sym_protocol_token1] = ACTIONS(1800), - [aux_sym_proxy_command_token1] = ACTIONS(1800), - [aux_sym_proxy_jump_token1] = ACTIONS(1800), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1800), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1800), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1800), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1800), - [aux_sym_rekey_limit_token1] = ACTIONS(1800), - [aux_sym_remote_command_token1] = ACTIONS(1800), - [aux_sym_remote_forward_token1] = ACTIONS(1800), - [aux_sym_request_tty_token1] = ACTIONS(1800), - [aux_sym_required_rsa_size_token1] = ACTIONS(1800), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1800), - [aux_sym_security_key_provider_token1] = ACTIONS(1800), - [aux_sym_send_env_token1] = ACTIONS(1800), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1800), - [aux_sym_server_alive_interval_token1] = ACTIONS(1800), - [aux_sym_session_type_token1] = ACTIONS(1800), - [aux_sym_set_env_token1] = ACTIONS(1800), - [aux_sym_stdin_null_token1] = ACTIONS(1800), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1800), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1800), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1800), - [aux_sym_syslog_facility_token1] = ACTIONS(1800), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1800), - [aux_sym_keep_alive_token1] = ACTIONS(1800), - [aux_sym_tag_token1] = ACTIONS(1800), - [aux_sym_tunnel_token1] = ACTIONS(1802), - [aux_sym_tunnel_device_token1] = ACTIONS(1800), - [aux_sym_update_host_keys_token1] = ACTIONS(1800), - [aux_sym_use_keychain_token1] = ACTIONS(1800), - [aux_sym_use_roaming_token1] = ACTIONS(1800), - [aux_sym_user_token1] = ACTIONS(1802), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1800), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1800), - [aux_sym_visual_host_key_token1] = ACTIONS(1800), - [aux_sym_xauth_location_token1] = ACTIONS(1800), + [ts_builtin_sym_end] = ACTIONS(1827), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1829), + [aux_sym_match_token1] = ACTIONS(1827), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1827), + [aux_sym_address_family_token1] = ACTIONS(1827), + [aux_sym_batch_mode_token1] = ACTIONS(1827), + [aux_sym_bind_address_token1] = ACTIONS(1827), + [aux_sym_bind_interface_token1] = ACTIONS(1827), + [aux_sym_canonical_domains_token1] = ACTIONS(1827), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1827), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1827), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1827), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1827), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1827), + [aux_sym_certificate_file_token1] = ACTIONS(1827), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1827), + [aux_sym_channel_timeout_token1] = ACTIONS(1827), + [aux_sym_check_host_ip_token1] = ACTIONS(1827), + [aux_sym_ciphers_token1] = ACTIONS(1827), + [aux_sym_cipher_token1] = ACTIONS(1829), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1827), + [aux_sym_compression_token1] = ACTIONS(1827), + [aux_sym_connection_attempts_token1] = ACTIONS(1827), + [aux_sym_connect_timeout_token1] = ACTIONS(1827), + [aux_sym_control_master_token1] = ACTIONS(1827), + [aux_sym_control_path_token1] = ACTIONS(1827), + [aux_sym_control_persist_token1] = ACTIONS(1827), + [aux_sym_dynamic_forward_token1] = ACTIONS(1827), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1827), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1827), + [aux_sym_escape_char_token1] = ACTIONS(1827), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1827), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1827), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1827), + [aux_sym_forward_agent_token1] = ACTIONS(1827), + [aux_sym_forward_x11_token1] = ACTIONS(1829), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1827), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1827), + [aux_sym_gateway_ports_token1] = ACTIONS(1827), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1827), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1827), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1827), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1827), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1827), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1827), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1827), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1827), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1827), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1827), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1827), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1827), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1827), + [aux_sym_host_key_alias_token1] = ACTIONS(1827), + [aux_sym_hostname_token1] = ACTIONS(1827), + [aux_sym_identities_only_token1] = ACTIONS(1827), + [aux_sym_identity_agent_token1] = ACTIONS(1827), + [aux_sym_identity_file_token1] = ACTIONS(1827), + [aux_sym_ignore_unknown_token1] = ACTIONS(1827), + [aux_sym_include_token1] = ACTIONS(1827), + [aux_sym_ip_qos_token1] = ACTIONS(1827), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1827), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1827), + [aux_sym_kex_algorithms_token1] = ACTIONS(1827), + [aux_sym_known_hosts_command_token1] = ACTIONS(1827), + [aux_sym_local_command_token1] = ACTIONS(1827), + [aux_sym_local_forward_token1] = ACTIONS(1827), + [aux_sym_log_level_token1] = ACTIONS(1827), + [aux_sym_log_verbose_token1] = ACTIONS(1827), + [aux_sym_macs_token1] = ACTIONS(1827), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1827), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1827), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1827), + [aux_sym_password_authentication_token1] = ACTIONS(1827), + [aux_sym_permit_local_command_token1] = ACTIONS(1827), + [aux_sym_permit_remote_open_token1] = ACTIONS(1827), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1827), + [aux_sym_port_token1] = ACTIONS(1827), + [aux_sym_preferred_authentications_token1] = ACTIONS(1827), + [aux_sym_protocol_token1] = ACTIONS(1827), + [aux_sym_proxy_command_token1] = ACTIONS(1827), + [aux_sym_proxy_jump_token1] = ACTIONS(1827), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1827), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1827), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1827), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1827), + [aux_sym_rekey_limit_token1] = ACTIONS(1827), + [aux_sym_remote_command_token1] = ACTIONS(1827), + [aux_sym_remote_forward_token1] = ACTIONS(1827), + [aux_sym_request_tty_token1] = ACTIONS(1827), + [aux_sym_required_rsa_size_token1] = ACTIONS(1827), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1827), + [aux_sym_security_key_provider_token1] = ACTIONS(1827), + [aux_sym_send_env_token1] = ACTIONS(1827), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1827), + [aux_sym_server_alive_interval_token1] = ACTIONS(1827), + [aux_sym_session_type_token1] = ACTIONS(1827), + [aux_sym_set_env_token1] = ACTIONS(1827), + [aux_sym_stdin_null_token1] = ACTIONS(1827), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1827), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1827), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1827), + [aux_sym_syslog_facility_token1] = ACTIONS(1827), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1827), + [aux_sym_keep_alive_token1] = ACTIONS(1827), + [aux_sym_tag_token1] = ACTIONS(1827), + [aux_sym_tunnel_token1] = ACTIONS(1829), + [aux_sym_tunnel_device_token1] = ACTIONS(1827), + [aux_sym_update_host_keys_token1] = ACTIONS(1827), + [aux_sym_use_keychain_token1] = ACTIONS(1827), + [aux_sym_use_roaming_token1] = ACTIONS(1827), + [aux_sym_user_token1] = ACTIONS(1829), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1827), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1827), + [aux_sym_visual_host_key_token1] = ACTIONS(1827), + [aux_sym_xauth_location_token1] = ACTIONS(1827), }, [760] = { - [ts_builtin_sym_end] = ACTIONS(852), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(854), - [aux_sym_match_token1] = ACTIONS(852), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(852), - [aux_sym_address_family_token1] = ACTIONS(852), - [aux_sym_batch_mode_token1] = ACTIONS(852), - [aux_sym_bind_address_token1] = ACTIONS(852), - [aux_sym_bind_interface_token1] = ACTIONS(852), - [aux_sym_canonical_domains_token1] = ACTIONS(852), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(852), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(852), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(852), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(852), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(852), - [aux_sym_certificate_file_token1] = ACTIONS(852), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(852), - [aux_sym_channel_timeout_token1] = ACTIONS(852), - [aux_sym_check_host_ip_token1] = ACTIONS(852), - [aux_sym_ciphers_token1] = ACTIONS(852), - [aux_sym_cipher_token1] = ACTIONS(854), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(852), - [aux_sym_compression_token1] = ACTIONS(852), - [aux_sym_connection_attempts_token1] = ACTIONS(852), - [aux_sym_connect_timeout_token1] = ACTIONS(852), - [aux_sym_control_master_token1] = ACTIONS(852), - [aux_sym_control_path_token1] = ACTIONS(852), - [aux_sym_control_persist_token1] = ACTIONS(852), - [aux_sym_dynamic_forward_token1] = ACTIONS(852), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(852), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(852), - [aux_sym_escape_char_token1] = ACTIONS(852), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(852), - [aux_sym_fingerprint_hash_token1] = ACTIONS(852), - [aux_sym_fork_after_authentication_token1] = ACTIONS(852), - [aux_sym_forward_agent_token1] = ACTIONS(852), - [aux_sym_forward_x11_token1] = ACTIONS(854), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(852), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(852), - [aux_sym_gateway_ports_token1] = ACTIONS(852), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(852), - [aux_sym_gssapi_authentication_token1] = ACTIONS(852), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(852), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(852), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(852), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(852), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(852), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(852), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(852), - [aux_sym_hash_known_hosts_token1] = ACTIONS(852), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(852), - [aux_sym_hostbased_authentication_token1] = ACTIONS(852), - [aux_sym_host_key_algorithms_token1] = ACTIONS(852), - [aux_sym_host_key_alias_token1] = ACTIONS(852), - [aux_sym_hostname_token1] = ACTIONS(852), - [aux_sym_identities_only_token1] = ACTIONS(852), - [aux_sym_identity_agent_token1] = ACTIONS(852), - [aux_sym_identity_file_token1] = ACTIONS(852), - [aux_sym_ignore_unknown_token1] = ACTIONS(852), - [aux_sym_include_token1] = ACTIONS(852), - [aux_sym_ip_qos_token1] = ACTIONS(852), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(852), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(852), - [aux_sym_kex_algorithms_token1] = ACTIONS(852), - [aux_sym_known_hosts_command_token1] = ACTIONS(852), - [aux_sym_local_command_token1] = ACTIONS(852), - [aux_sym_local_forward_token1] = ACTIONS(852), - [aux_sym_log_level_token1] = ACTIONS(852), - [aux_sym_log_verbose_token1] = ACTIONS(852), - [aux_sym_macs_token1] = ACTIONS(852), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(852), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(852), - [aux_sym_password_authentication_token1] = ACTIONS(852), - [aux_sym_permit_local_command_token1] = ACTIONS(852), - [aux_sym_permit_remote_open_token1] = ACTIONS(852), - [aux_sym_pkcs11_provider_token1] = ACTIONS(852), - [aux_sym_port_token1] = ACTIONS(852), - [aux_sym_preferred_authentications_token1] = ACTIONS(852), - [aux_sym_protocol_token1] = ACTIONS(852), - [aux_sym_proxy_command_token1] = ACTIONS(852), - [aux_sym_proxy_jump_token1] = ACTIONS(852), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(852), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(852), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(852), - [aux_sym_pubkey_authentication_token1] = ACTIONS(852), - [aux_sym_rekey_limit_token1] = ACTIONS(852), - [aux_sym_remote_command_token1] = ACTIONS(852), - [aux_sym_remote_forward_token1] = ACTIONS(852), - [aux_sym_request_tty_token1] = ACTIONS(852), - [aux_sym_required_rsa_size_token1] = ACTIONS(852), - [aux_sym_revoked_host_keys_token1] = ACTIONS(852), - [aux_sym_security_key_provider_token1] = ACTIONS(852), - [aux_sym_send_env_token1] = ACTIONS(852), - [aux_sym_server_alive_count_max_token1] = ACTIONS(852), - [aux_sym_server_alive_interval_token1] = ACTIONS(852), - [aux_sym_session_type_token1] = ACTIONS(852), - [aux_sym_set_env_token1] = ACTIONS(852), - [aux_sym_stdin_null_token1] = ACTIONS(852), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(852), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(852), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(852), - [aux_sym_syslog_facility_token1] = ACTIONS(852), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(852), - [aux_sym_keep_alive_token1] = ACTIONS(852), - [aux_sym_tag_token1] = ACTIONS(852), - [aux_sym_tunnel_token1] = ACTIONS(854), - [aux_sym_tunnel_device_token1] = ACTIONS(852), - [aux_sym_update_host_keys_token1] = ACTIONS(852), - [aux_sym_use_keychain_token1] = ACTIONS(852), - [aux_sym_use_roaming_token1] = ACTIONS(852), - [aux_sym_user_token1] = ACTIONS(854), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(852), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(852), - [aux_sym_visual_host_key_token1] = ACTIONS(852), - [aux_sym_xauth_location_token1] = ACTIONS(852), + [ts_builtin_sym_end] = ACTIONS(737), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(739), + [aux_sym_match_token1] = ACTIONS(737), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(737), + [aux_sym_address_family_token1] = ACTIONS(737), + [aux_sym_batch_mode_token1] = ACTIONS(737), + [aux_sym_bind_address_token1] = ACTIONS(737), + [aux_sym_bind_interface_token1] = ACTIONS(737), + [aux_sym_canonical_domains_token1] = ACTIONS(737), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(737), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(737), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(737), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(737), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(737), + [aux_sym_certificate_file_token1] = ACTIONS(737), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(737), + [aux_sym_channel_timeout_token1] = ACTIONS(737), + [aux_sym_check_host_ip_token1] = ACTIONS(737), + [aux_sym_ciphers_token1] = ACTIONS(737), + [aux_sym_cipher_token1] = ACTIONS(739), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(737), + [aux_sym_compression_token1] = ACTIONS(737), + [aux_sym_connection_attempts_token1] = ACTIONS(737), + [aux_sym_connect_timeout_token1] = ACTIONS(737), + [aux_sym_control_master_token1] = ACTIONS(737), + [aux_sym_control_path_token1] = ACTIONS(737), + [aux_sym_control_persist_token1] = ACTIONS(737), + [aux_sym_dynamic_forward_token1] = ACTIONS(737), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(737), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(737), + [aux_sym_escape_char_token1] = ACTIONS(737), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(737), + [aux_sym_fingerprint_hash_token1] = ACTIONS(737), + [aux_sym_fork_after_authentication_token1] = ACTIONS(737), + [aux_sym_forward_agent_token1] = ACTIONS(737), + [aux_sym_forward_x11_token1] = ACTIONS(739), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(737), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(737), + [aux_sym_gateway_ports_token1] = ACTIONS(737), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(737), + [aux_sym_gssapi_authentication_token1] = ACTIONS(737), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(737), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(737), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(737), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(737), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(737), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(737), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(737), + [aux_sym_hash_known_hosts_token1] = ACTIONS(737), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(737), + [aux_sym_hostbased_authentication_token1] = ACTIONS(737), + [aux_sym_host_key_algorithms_token1] = ACTIONS(737), + [aux_sym_host_key_alias_token1] = ACTIONS(737), + [aux_sym_hostname_token1] = ACTIONS(737), + [aux_sym_identities_only_token1] = ACTIONS(737), + [aux_sym_identity_agent_token1] = ACTIONS(737), + [aux_sym_identity_file_token1] = ACTIONS(737), + [aux_sym_ignore_unknown_token1] = ACTIONS(737), + [aux_sym_include_token1] = ACTIONS(737), + [aux_sym_ip_qos_token1] = ACTIONS(737), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(737), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(737), + [aux_sym_kex_algorithms_token1] = ACTIONS(737), + [aux_sym_known_hosts_command_token1] = ACTIONS(737), + [aux_sym_local_command_token1] = ACTIONS(737), + [aux_sym_local_forward_token1] = ACTIONS(737), + [aux_sym_log_level_token1] = ACTIONS(737), + [aux_sym_log_verbose_token1] = ACTIONS(737), + [aux_sym_macs_token1] = ACTIONS(737), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(737), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(737), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(737), + [aux_sym_password_authentication_token1] = ACTIONS(737), + [aux_sym_permit_local_command_token1] = ACTIONS(737), + [aux_sym_permit_remote_open_token1] = ACTIONS(737), + [aux_sym_pkcs11_provider_token1] = ACTIONS(737), + [aux_sym_port_token1] = ACTIONS(737), + [aux_sym_preferred_authentications_token1] = ACTIONS(737), + [aux_sym_protocol_token1] = ACTIONS(737), + [aux_sym_proxy_command_token1] = ACTIONS(737), + [aux_sym_proxy_jump_token1] = ACTIONS(737), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(737), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(737), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(737), + [aux_sym_pubkey_authentication_token1] = ACTIONS(737), + [aux_sym_rekey_limit_token1] = ACTIONS(737), + [aux_sym_remote_command_token1] = ACTIONS(737), + [aux_sym_remote_forward_token1] = ACTIONS(737), + [aux_sym_request_tty_token1] = ACTIONS(737), + [aux_sym_required_rsa_size_token1] = ACTIONS(737), + [aux_sym_revoked_host_keys_token1] = ACTIONS(737), + [aux_sym_security_key_provider_token1] = ACTIONS(737), + [aux_sym_send_env_token1] = ACTIONS(737), + [aux_sym_server_alive_count_max_token1] = ACTIONS(737), + [aux_sym_server_alive_interval_token1] = ACTIONS(737), + [aux_sym_session_type_token1] = ACTIONS(737), + [aux_sym_set_env_token1] = ACTIONS(737), + [aux_sym_stdin_null_token1] = ACTIONS(737), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(737), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(737), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(737), + [aux_sym_syslog_facility_token1] = ACTIONS(737), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(737), + [aux_sym_keep_alive_token1] = ACTIONS(737), + [aux_sym_tag_token1] = ACTIONS(737), + [aux_sym_tunnel_token1] = ACTIONS(739), + [aux_sym_tunnel_device_token1] = ACTIONS(737), + [aux_sym_update_host_keys_token1] = ACTIONS(737), + [aux_sym_use_keychain_token1] = ACTIONS(737), + [aux_sym_use_roaming_token1] = ACTIONS(737), + [aux_sym_user_token1] = ACTIONS(739), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(737), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(737), + [aux_sym_visual_host_key_token1] = ACTIONS(737), + [aux_sym_xauth_location_token1] = ACTIONS(737), }, [761] = { - [ts_builtin_sym_end] = ACTIONS(858), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(860), - [aux_sym_match_token1] = ACTIONS(858), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(858), - [aux_sym_address_family_token1] = ACTIONS(858), - [aux_sym_batch_mode_token1] = ACTIONS(858), - [aux_sym_bind_address_token1] = ACTIONS(858), - [aux_sym_bind_interface_token1] = ACTIONS(858), - [aux_sym_canonical_domains_token1] = ACTIONS(858), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(858), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(858), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(858), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(858), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(858), - [aux_sym_certificate_file_token1] = ACTIONS(858), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(858), - [aux_sym_channel_timeout_token1] = ACTIONS(858), - [aux_sym_check_host_ip_token1] = ACTIONS(858), - [aux_sym_ciphers_token1] = ACTIONS(858), - [aux_sym_cipher_token1] = ACTIONS(860), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(858), - [aux_sym_compression_token1] = ACTIONS(858), - [aux_sym_connection_attempts_token1] = ACTIONS(858), - [aux_sym_connect_timeout_token1] = ACTIONS(858), - [aux_sym_control_master_token1] = ACTIONS(858), - [aux_sym_control_path_token1] = ACTIONS(858), - [aux_sym_control_persist_token1] = ACTIONS(858), - [aux_sym_dynamic_forward_token1] = ACTIONS(858), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(858), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(858), - [aux_sym_escape_char_token1] = ACTIONS(858), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(858), - [aux_sym_fingerprint_hash_token1] = ACTIONS(858), - [aux_sym_fork_after_authentication_token1] = ACTIONS(858), - [aux_sym_forward_agent_token1] = ACTIONS(858), - [aux_sym_forward_x11_token1] = ACTIONS(860), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(858), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(858), - [aux_sym_gateway_ports_token1] = ACTIONS(858), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(858), - [aux_sym_gssapi_authentication_token1] = ACTIONS(858), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(858), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(858), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(858), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(858), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(858), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(858), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(858), - [aux_sym_hash_known_hosts_token1] = ACTIONS(858), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(858), - [aux_sym_hostbased_authentication_token1] = ACTIONS(858), - [aux_sym_host_key_algorithms_token1] = ACTIONS(858), - [aux_sym_host_key_alias_token1] = ACTIONS(858), - [aux_sym_hostname_token1] = ACTIONS(858), - [aux_sym_identities_only_token1] = ACTIONS(858), - [aux_sym_identity_agent_token1] = ACTIONS(858), - [aux_sym_identity_file_token1] = ACTIONS(858), - [aux_sym_ignore_unknown_token1] = ACTIONS(858), - [aux_sym_include_token1] = ACTIONS(858), - [aux_sym_ip_qos_token1] = ACTIONS(858), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(858), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(858), - [aux_sym_kex_algorithms_token1] = ACTIONS(858), - [aux_sym_known_hosts_command_token1] = ACTIONS(858), - [aux_sym_local_command_token1] = ACTIONS(858), - [aux_sym_local_forward_token1] = ACTIONS(858), - [aux_sym_log_level_token1] = ACTIONS(858), - [aux_sym_log_verbose_token1] = ACTIONS(858), - [aux_sym_macs_token1] = ACTIONS(858), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(858), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(858), - [aux_sym_password_authentication_token1] = ACTIONS(858), - [aux_sym_permit_local_command_token1] = ACTIONS(858), - [aux_sym_permit_remote_open_token1] = ACTIONS(858), - [aux_sym_pkcs11_provider_token1] = ACTIONS(858), - [aux_sym_port_token1] = ACTIONS(858), - [aux_sym_preferred_authentications_token1] = ACTIONS(858), - [aux_sym_protocol_token1] = ACTIONS(858), - [aux_sym_proxy_command_token1] = ACTIONS(858), - [aux_sym_proxy_jump_token1] = ACTIONS(858), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(858), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(858), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(858), - [aux_sym_pubkey_authentication_token1] = ACTIONS(858), - [aux_sym_rekey_limit_token1] = ACTIONS(858), - [aux_sym_remote_command_token1] = ACTIONS(858), - [aux_sym_remote_forward_token1] = ACTIONS(858), - [aux_sym_request_tty_token1] = ACTIONS(858), - [aux_sym_required_rsa_size_token1] = ACTIONS(858), - [aux_sym_revoked_host_keys_token1] = ACTIONS(858), - [aux_sym_security_key_provider_token1] = ACTIONS(858), - [aux_sym_send_env_token1] = ACTIONS(858), - [aux_sym_server_alive_count_max_token1] = ACTIONS(858), - [aux_sym_server_alive_interval_token1] = ACTIONS(858), - [aux_sym_session_type_token1] = ACTIONS(858), - [aux_sym_set_env_token1] = ACTIONS(858), - [aux_sym_stdin_null_token1] = ACTIONS(858), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(858), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(858), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(858), - [aux_sym_syslog_facility_token1] = ACTIONS(858), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(858), - [aux_sym_keep_alive_token1] = ACTIONS(858), - [aux_sym_tag_token1] = ACTIONS(858), - [aux_sym_tunnel_token1] = ACTIONS(860), - [aux_sym_tunnel_device_token1] = ACTIONS(858), - [aux_sym_update_host_keys_token1] = ACTIONS(858), - [aux_sym_use_keychain_token1] = ACTIONS(858), - [aux_sym_use_roaming_token1] = ACTIONS(858), - [aux_sym_user_token1] = ACTIONS(860), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(858), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(858), - [aux_sym_visual_host_key_token1] = ACTIONS(858), - [aux_sym_xauth_location_token1] = ACTIONS(858), + [ts_builtin_sym_end] = ACTIONS(1475), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1477), + [aux_sym_match_token1] = ACTIONS(1475), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1475), + [aux_sym_address_family_token1] = ACTIONS(1475), + [aux_sym_batch_mode_token1] = ACTIONS(1475), + [aux_sym_bind_address_token1] = ACTIONS(1475), + [aux_sym_bind_interface_token1] = ACTIONS(1475), + [aux_sym_canonical_domains_token1] = ACTIONS(1475), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1475), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1475), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1475), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1475), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1475), + [aux_sym_certificate_file_token1] = ACTIONS(1475), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1475), + [aux_sym_channel_timeout_token1] = ACTIONS(1475), + [aux_sym_check_host_ip_token1] = ACTIONS(1475), + [aux_sym_ciphers_token1] = ACTIONS(1475), + [aux_sym_cipher_token1] = ACTIONS(1477), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1475), + [aux_sym_compression_token1] = ACTIONS(1475), + [aux_sym_connection_attempts_token1] = ACTIONS(1475), + [aux_sym_connect_timeout_token1] = ACTIONS(1475), + [aux_sym_control_master_token1] = ACTIONS(1475), + [aux_sym_control_path_token1] = ACTIONS(1475), + [aux_sym_control_persist_token1] = ACTIONS(1475), + [aux_sym_dynamic_forward_token1] = ACTIONS(1475), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1475), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1475), + [aux_sym_escape_char_token1] = ACTIONS(1475), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1475), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1475), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1475), + [aux_sym_forward_agent_token1] = ACTIONS(1475), + [aux_sym_forward_x11_token1] = ACTIONS(1477), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1475), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1475), + [aux_sym_gateway_ports_token1] = ACTIONS(1475), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1475), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1475), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1475), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1475), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1475), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1475), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1475), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1475), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1475), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1475), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1475), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1475), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1475), + [aux_sym_host_key_alias_token1] = ACTIONS(1475), + [aux_sym_hostname_token1] = ACTIONS(1475), + [aux_sym_identities_only_token1] = ACTIONS(1475), + [aux_sym_identity_agent_token1] = ACTIONS(1475), + [aux_sym_identity_file_token1] = ACTIONS(1475), + [aux_sym_ignore_unknown_token1] = ACTIONS(1475), + [aux_sym_include_token1] = ACTIONS(1475), + [aux_sym_ip_qos_token1] = ACTIONS(1475), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1475), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1475), + [aux_sym_kex_algorithms_token1] = ACTIONS(1475), + [aux_sym_known_hosts_command_token1] = ACTIONS(1475), + [aux_sym_local_command_token1] = ACTIONS(1475), + [aux_sym_local_forward_token1] = ACTIONS(1475), + [aux_sym_log_level_token1] = ACTIONS(1475), + [aux_sym_log_verbose_token1] = ACTIONS(1475), + [aux_sym_macs_token1] = ACTIONS(1475), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1475), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1475), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1475), + [aux_sym_password_authentication_token1] = ACTIONS(1475), + [aux_sym_permit_local_command_token1] = ACTIONS(1475), + [aux_sym_permit_remote_open_token1] = ACTIONS(1475), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1475), + [aux_sym_port_token1] = ACTIONS(1475), + [aux_sym_preferred_authentications_token1] = ACTIONS(1475), + [aux_sym_protocol_token1] = ACTIONS(1475), + [aux_sym_proxy_command_token1] = ACTIONS(1475), + [aux_sym_proxy_jump_token1] = ACTIONS(1475), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1475), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1475), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1475), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1475), + [aux_sym_rekey_limit_token1] = ACTIONS(1475), + [aux_sym_remote_command_token1] = ACTIONS(1475), + [aux_sym_remote_forward_token1] = ACTIONS(1475), + [aux_sym_request_tty_token1] = ACTIONS(1475), + [aux_sym_required_rsa_size_token1] = ACTIONS(1475), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1475), + [aux_sym_security_key_provider_token1] = ACTIONS(1475), + [aux_sym_send_env_token1] = ACTIONS(1475), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1475), + [aux_sym_server_alive_interval_token1] = ACTIONS(1475), + [aux_sym_session_type_token1] = ACTIONS(1475), + [aux_sym_set_env_token1] = ACTIONS(1475), + [aux_sym_stdin_null_token1] = ACTIONS(1475), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1475), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1475), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1475), + [aux_sym_syslog_facility_token1] = ACTIONS(1475), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1475), + [aux_sym_keep_alive_token1] = ACTIONS(1475), + [aux_sym_tag_token1] = ACTIONS(1475), + [aux_sym_tunnel_token1] = ACTIONS(1477), + [aux_sym_tunnel_device_token1] = ACTIONS(1475), + [aux_sym_update_host_keys_token1] = ACTIONS(1475), + [aux_sym_use_keychain_token1] = ACTIONS(1475), + [aux_sym_use_roaming_token1] = ACTIONS(1475), + [aux_sym_user_token1] = ACTIONS(1477), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1475), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1475), + [aux_sym_visual_host_key_token1] = ACTIONS(1475), + [aux_sym_xauth_location_token1] = ACTIONS(1475), }, [762] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1796), - [aux_sym_match_token1] = ACTIONS(1794), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1794), - [aux_sym_address_family_token1] = ACTIONS(1794), - [aux_sym_batch_mode_token1] = ACTIONS(1794), - [aux_sym_bind_address_token1] = ACTIONS(1794), - [aux_sym_bind_interface_token1] = ACTIONS(1794), - [aux_sym_canonical_domains_token1] = ACTIONS(1794), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1794), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1794), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1794), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1794), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1794), - [aux_sym_certificate_file_token1] = ACTIONS(1794), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1794), - [aux_sym_channel_timeout_token1] = ACTIONS(1794), - [aux_sym_check_host_ip_token1] = ACTIONS(1794), - [aux_sym_ciphers_token1] = ACTIONS(1794), - [aux_sym_cipher_token1] = ACTIONS(1796), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1794), - [aux_sym_compression_token1] = ACTIONS(1794), - [aux_sym_connection_attempts_token1] = ACTIONS(1794), - [aux_sym_connect_timeout_token1] = ACTIONS(1794), - [aux_sym_control_master_token1] = ACTIONS(1794), - [aux_sym_control_path_token1] = ACTIONS(1794), - [aux_sym_control_persist_token1] = ACTIONS(1794), - [aux_sym_dynamic_forward_token1] = ACTIONS(1794), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1794), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1794), - [aux_sym_escape_char_token1] = ACTIONS(1794), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1794), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1794), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1794), - [aux_sym_forward_agent_token1] = ACTIONS(1794), - [aux_sym_forward_x11_token1] = ACTIONS(1796), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1794), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1794), - [aux_sym_gateway_ports_token1] = ACTIONS(1794), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1794), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1794), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1794), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1794), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1794), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1794), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1794), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1794), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1794), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1794), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1794), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1794), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1794), - [aux_sym_host_key_alias_token1] = ACTIONS(1794), - [aux_sym_hostname_token1] = ACTIONS(1794), - [aux_sym_identities_only_token1] = ACTIONS(1794), - [aux_sym_identity_agent_token1] = ACTIONS(1794), - [aux_sym_identity_file_token1] = ACTIONS(1794), - [aux_sym_ignore_unknown_token1] = ACTIONS(1794), - [aux_sym_include_token1] = ACTIONS(1794), - [aux_sym_ip_qos_token1] = ACTIONS(1794), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1794), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1794), - [aux_sym_kex_algorithms_token1] = ACTIONS(1794), - [aux_sym_known_hosts_command_token1] = ACTIONS(1794), - [aux_sym_local_command_token1] = ACTIONS(1794), - [aux_sym_local_forward_token1] = ACTIONS(1794), - [aux_sym_log_level_token1] = ACTIONS(1794), - [aux_sym_log_verbose_token1] = ACTIONS(1794), - [aux_sym_macs_token1] = ACTIONS(1794), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1794), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1794), - [aux_sym_password_authentication_token1] = ACTIONS(1794), - [aux_sym_permit_local_command_token1] = ACTIONS(1794), - [aux_sym_permit_remote_open_token1] = ACTIONS(1794), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1794), - [aux_sym_port_token1] = ACTIONS(1794), - [aux_sym_preferred_authentications_token1] = ACTIONS(1794), - [aux_sym_protocol_token1] = ACTIONS(1794), - [aux_sym_proxy_command_token1] = ACTIONS(1794), - [aux_sym_proxy_jump_token1] = ACTIONS(1794), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1794), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1794), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1794), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1794), - [aux_sym_rekey_limit_token1] = ACTIONS(1794), - [aux_sym_remote_command_token1] = ACTIONS(1794), - [aux_sym_remote_forward_token1] = ACTIONS(1794), - [aux_sym_request_tty_token1] = ACTIONS(1794), - [aux_sym_required_rsa_size_token1] = ACTIONS(1794), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1794), - [aux_sym_security_key_provider_token1] = ACTIONS(1794), - [aux_sym_send_env_token1] = ACTIONS(1794), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1794), - [aux_sym_server_alive_interval_token1] = ACTIONS(1794), - [aux_sym_session_type_token1] = ACTIONS(1794), - [aux_sym_set_env_token1] = ACTIONS(1794), - [aux_sym_stdin_null_token1] = ACTIONS(1794), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1794), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1794), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1794), - [aux_sym_syslog_facility_token1] = ACTIONS(1794), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1794), - [aux_sym_keep_alive_token1] = ACTIONS(1794), - [aux_sym_tag_token1] = ACTIONS(1794), - [aux_sym_tunnel_token1] = ACTIONS(1796), - [aux_sym_tunnel_device_token1] = ACTIONS(1794), - [aux_sym_update_host_keys_token1] = ACTIONS(1794), - [aux_sym_use_keychain_token1] = ACTIONS(1794), - [aux_sym_use_roaming_token1] = ACTIONS(1794), - [aux_sym_user_token1] = ACTIONS(1796), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1794), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1794), - [aux_sym_visual_host_key_token1] = ACTIONS(1794), - [aux_sym_xauth_location_token1] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1823), + [aux_sym_match_token1] = ACTIONS(1821), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1821), + [aux_sym_address_family_token1] = ACTIONS(1821), + [aux_sym_batch_mode_token1] = ACTIONS(1821), + [aux_sym_bind_address_token1] = ACTIONS(1821), + [aux_sym_bind_interface_token1] = ACTIONS(1821), + [aux_sym_canonical_domains_token1] = ACTIONS(1821), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1821), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1821), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1821), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1821), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1821), + [aux_sym_certificate_file_token1] = ACTIONS(1821), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1821), + [aux_sym_channel_timeout_token1] = ACTIONS(1821), + [aux_sym_check_host_ip_token1] = ACTIONS(1821), + [aux_sym_ciphers_token1] = ACTIONS(1821), + [aux_sym_cipher_token1] = ACTIONS(1823), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1821), + [aux_sym_compression_token1] = ACTIONS(1821), + [aux_sym_connection_attempts_token1] = ACTIONS(1821), + [aux_sym_connect_timeout_token1] = ACTIONS(1821), + [aux_sym_control_master_token1] = ACTIONS(1821), + [aux_sym_control_path_token1] = ACTIONS(1821), + [aux_sym_control_persist_token1] = ACTIONS(1821), + [aux_sym_dynamic_forward_token1] = ACTIONS(1821), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1821), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1821), + [aux_sym_escape_char_token1] = ACTIONS(1821), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1821), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1821), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1821), + [aux_sym_forward_agent_token1] = ACTIONS(1821), + [aux_sym_forward_x11_token1] = ACTIONS(1823), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1821), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1821), + [aux_sym_gateway_ports_token1] = ACTIONS(1821), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1821), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1821), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1821), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1821), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1821), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1821), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1821), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1821), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1821), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1821), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1821), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1821), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1821), + [aux_sym_host_key_alias_token1] = ACTIONS(1821), + [aux_sym_hostname_token1] = ACTIONS(1821), + [aux_sym_identities_only_token1] = ACTIONS(1821), + [aux_sym_identity_agent_token1] = ACTIONS(1821), + [aux_sym_identity_file_token1] = ACTIONS(1821), + [aux_sym_ignore_unknown_token1] = ACTIONS(1821), + [aux_sym_include_token1] = ACTIONS(1821), + [aux_sym_ip_qos_token1] = ACTIONS(1821), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1821), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1821), + [aux_sym_kex_algorithms_token1] = ACTIONS(1821), + [aux_sym_known_hosts_command_token1] = ACTIONS(1821), + [aux_sym_local_command_token1] = ACTIONS(1821), + [aux_sym_local_forward_token1] = ACTIONS(1821), + [aux_sym_log_level_token1] = ACTIONS(1821), + [aux_sym_log_verbose_token1] = ACTIONS(1821), + [aux_sym_macs_token1] = ACTIONS(1821), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1821), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1821), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1821), + [aux_sym_password_authentication_token1] = ACTIONS(1821), + [aux_sym_permit_local_command_token1] = ACTIONS(1821), + [aux_sym_permit_remote_open_token1] = ACTIONS(1821), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1821), + [aux_sym_port_token1] = ACTIONS(1821), + [aux_sym_preferred_authentications_token1] = ACTIONS(1821), + [aux_sym_protocol_token1] = ACTIONS(1821), + [aux_sym_proxy_command_token1] = ACTIONS(1821), + [aux_sym_proxy_jump_token1] = ACTIONS(1821), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1821), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1821), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1821), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1821), + [aux_sym_rekey_limit_token1] = ACTIONS(1821), + [aux_sym_remote_command_token1] = ACTIONS(1821), + [aux_sym_remote_forward_token1] = ACTIONS(1821), + [aux_sym_request_tty_token1] = ACTIONS(1821), + [aux_sym_required_rsa_size_token1] = ACTIONS(1821), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1821), + [aux_sym_security_key_provider_token1] = ACTIONS(1821), + [aux_sym_send_env_token1] = ACTIONS(1821), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1821), + [aux_sym_server_alive_interval_token1] = ACTIONS(1821), + [aux_sym_session_type_token1] = ACTIONS(1821), + [aux_sym_set_env_token1] = ACTIONS(1821), + [aux_sym_stdin_null_token1] = ACTIONS(1821), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1821), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1821), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1821), + [aux_sym_syslog_facility_token1] = ACTIONS(1821), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1821), + [aux_sym_keep_alive_token1] = ACTIONS(1821), + [aux_sym_tag_token1] = ACTIONS(1821), + [aux_sym_tunnel_token1] = ACTIONS(1823), + [aux_sym_tunnel_device_token1] = ACTIONS(1821), + [aux_sym_update_host_keys_token1] = ACTIONS(1821), + [aux_sym_use_keychain_token1] = ACTIONS(1821), + [aux_sym_use_roaming_token1] = ACTIONS(1821), + [aux_sym_user_token1] = ACTIONS(1823), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1821), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1821), + [aux_sym_visual_host_key_token1] = ACTIONS(1821), + [aux_sym_xauth_location_token1] = ACTIONS(1821), }, [763] = { - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1700), - [aux_sym_match_token1] = ACTIONS(1698), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1698), - [aux_sym_address_family_token1] = ACTIONS(1698), - [aux_sym_batch_mode_token1] = ACTIONS(1698), - [aux_sym_bind_address_token1] = ACTIONS(1698), - [aux_sym_bind_interface_token1] = ACTIONS(1698), - [aux_sym_canonical_domains_token1] = ACTIONS(1698), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1698), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1698), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1698), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1698), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1698), - [aux_sym_certificate_file_token1] = ACTIONS(1698), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1698), - [aux_sym_channel_timeout_token1] = ACTIONS(1698), - [aux_sym_check_host_ip_token1] = ACTIONS(1698), - [aux_sym_ciphers_token1] = ACTIONS(1698), - [aux_sym_cipher_token1] = ACTIONS(1700), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1698), - [aux_sym_compression_token1] = ACTIONS(1698), - [aux_sym_connection_attempts_token1] = ACTIONS(1698), - [aux_sym_connect_timeout_token1] = ACTIONS(1698), - [aux_sym_control_master_token1] = ACTIONS(1698), - [aux_sym_control_path_token1] = ACTIONS(1698), - [aux_sym_control_persist_token1] = ACTIONS(1698), - [aux_sym_dynamic_forward_token1] = ACTIONS(1698), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1698), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1698), - [aux_sym_escape_char_token1] = ACTIONS(1698), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1698), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1698), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1698), - [aux_sym_forward_agent_token1] = ACTIONS(1698), - [aux_sym_forward_x11_token1] = ACTIONS(1700), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1698), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1698), - [aux_sym_gateway_ports_token1] = ACTIONS(1698), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1698), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1698), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1698), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1698), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1698), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1698), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1698), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1698), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1698), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1698), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1698), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1698), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1698), - [aux_sym_host_key_alias_token1] = ACTIONS(1698), - [aux_sym_hostname_token1] = ACTIONS(1698), - [aux_sym_identities_only_token1] = ACTIONS(1698), - [aux_sym_identity_agent_token1] = ACTIONS(1698), - [aux_sym_identity_file_token1] = ACTIONS(1698), - [aux_sym_ignore_unknown_token1] = ACTIONS(1698), - [aux_sym_include_token1] = ACTIONS(1698), - [aux_sym_ip_qos_token1] = ACTIONS(1698), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1698), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1698), - [aux_sym_kex_algorithms_token1] = ACTIONS(1698), - [aux_sym_known_hosts_command_token1] = ACTIONS(1698), - [aux_sym_local_command_token1] = ACTIONS(1698), - [aux_sym_local_forward_token1] = ACTIONS(1698), - [aux_sym_log_level_token1] = ACTIONS(1698), - [aux_sym_log_verbose_token1] = ACTIONS(1698), - [aux_sym_macs_token1] = ACTIONS(1698), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1698), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1698), - [aux_sym_password_authentication_token1] = ACTIONS(1698), - [aux_sym_permit_local_command_token1] = ACTIONS(1698), - [aux_sym_permit_remote_open_token1] = ACTIONS(1698), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1698), - [aux_sym_port_token1] = ACTIONS(1698), - [aux_sym_preferred_authentications_token1] = ACTIONS(1698), - [aux_sym_protocol_token1] = ACTIONS(1698), - [aux_sym_proxy_command_token1] = ACTIONS(1698), - [aux_sym_proxy_jump_token1] = ACTIONS(1698), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1698), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1698), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1698), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1698), - [aux_sym_rekey_limit_token1] = ACTIONS(1698), - [aux_sym_remote_command_token1] = ACTIONS(1698), - [aux_sym_remote_forward_token1] = ACTIONS(1698), - [aux_sym_request_tty_token1] = ACTIONS(1698), - [aux_sym_required_rsa_size_token1] = ACTIONS(1698), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1698), - [aux_sym_security_key_provider_token1] = ACTIONS(1698), - [aux_sym_send_env_token1] = ACTIONS(1698), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1698), - [aux_sym_server_alive_interval_token1] = ACTIONS(1698), - [aux_sym_session_type_token1] = ACTIONS(1698), - [aux_sym_set_env_token1] = ACTIONS(1698), - [aux_sym_stdin_null_token1] = ACTIONS(1698), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1698), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1698), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1698), - [aux_sym_syslog_facility_token1] = ACTIONS(1698), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1698), - [aux_sym_keep_alive_token1] = ACTIONS(1698), - [aux_sym_tag_token1] = ACTIONS(1698), - [aux_sym_tunnel_token1] = ACTIONS(1700), - [aux_sym_tunnel_device_token1] = ACTIONS(1698), - [aux_sym_update_host_keys_token1] = ACTIONS(1698), - [aux_sym_use_keychain_token1] = ACTIONS(1698), - [aux_sym_use_roaming_token1] = ACTIONS(1698), - [aux_sym_user_token1] = ACTIONS(1700), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1698), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1698), - [aux_sym_visual_host_key_token1] = ACTIONS(1698), - [aux_sym_xauth_location_token1] = ACTIONS(1698), + [ts_builtin_sym_end] = ACTIONS(785), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(787), + [aux_sym_match_token1] = ACTIONS(785), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(785), + [aux_sym_address_family_token1] = ACTIONS(785), + [aux_sym_batch_mode_token1] = ACTIONS(785), + [aux_sym_bind_address_token1] = ACTIONS(785), + [aux_sym_bind_interface_token1] = ACTIONS(785), + [aux_sym_canonical_domains_token1] = ACTIONS(785), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(785), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(785), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(785), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(785), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(785), + [aux_sym_certificate_file_token1] = ACTIONS(785), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(785), + [aux_sym_channel_timeout_token1] = ACTIONS(785), + [aux_sym_check_host_ip_token1] = ACTIONS(785), + [aux_sym_ciphers_token1] = ACTIONS(785), + [aux_sym_cipher_token1] = ACTIONS(787), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(785), + [aux_sym_compression_token1] = ACTIONS(785), + [aux_sym_connection_attempts_token1] = ACTIONS(785), + [aux_sym_connect_timeout_token1] = ACTIONS(785), + [aux_sym_control_master_token1] = ACTIONS(785), + [aux_sym_control_path_token1] = ACTIONS(785), + [aux_sym_control_persist_token1] = ACTIONS(785), + [aux_sym_dynamic_forward_token1] = ACTIONS(785), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(785), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(785), + [aux_sym_escape_char_token1] = ACTIONS(785), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(785), + [aux_sym_fingerprint_hash_token1] = ACTIONS(785), + [aux_sym_fork_after_authentication_token1] = ACTIONS(785), + [aux_sym_forward_agent_token1] = ACTIONS(785), + [aux_sym_forward_x11_token1] = ACTIONS(787), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(785), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(785), + [aux_sym_gateway_ports_token1] = ACTIONS(785), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(785), + [aux_sym_gssapi_authentication_token1] = ACTIONS(785), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(785), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(785), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(785), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(785), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(785), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(785), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(785), + [aux_sym_hash_known_hosts_token1] = ACTIONS(785), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(785), + [aux_sym_hostbased_authentication_token1] = ACTIONS(785), + [aux_sym_host_key_algorithms_token1] = ACTIONS(785), + [aux_sym_host_key_alias_token1] = ACTIONS(785), + [aux_sym_hostname_token1] = ACTIONS(785), + [aux_sym_identities_only_token1] = ACTIONS(785), + [aux_sym_identity_agent_token1] = ACTIONS(785), + [aux_sym_identity_file_token1] = ACTIONS(785), + [aux_sym_ignore_unknown_token1] = ACTIONS(785), + [aux_sym_include_token1] = ACTIONS(785), + [aux_sym_ip_qos_token1] = ACTIONS(785), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(785), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(785), + [aux_sym_kex_algorithms_token1] = ACTIONS(785), + [aux_sym_known_hosts_command_token1] = ACTIONS(785), + [aux_sym_local_command_token1] = ACTIONS(785), + [aux_sym_local_forward_token1] = ACTIONS(785), + [aux_sym_log_level_token1] = ACTIONS(785), + [aux_sym_log_verbose_token1] = ACTIONS(785), + [aux_sym_macs_token1] = ACTIONS(785), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(785), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(785), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(785), + [aux_sym_password_authentication_token1] = ACTIONS(785), + [aux_sym_permit_local_command_token1] = ACTIONS(785), + [aux_sym_permit_remote_open_token1] = ACTIONS(785), + [aux_sym_pkcs11_provider_token1] = ACTIONS(785), + [aux_sym_port_token1] = ACTIONS(785), + [aux_sym_preferred_authentications_token1] = ACTIONS(785), + [aux_sym_protocol_token1] = ACTIONS(785), + [aux_sym_proxy_command_token1] = ACTIONS(785), + [aux_sym_proxy_jump_token1] = ACTIONS(785), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(785), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(785), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(785), + [aux_sym_pubkey_authentication_token1] = ACTIONS(785), + [aux_sym_rekey_limit_token1] = ACTIONS(785), + [aux_sym_remote_command_token1] = ACTIONS(785), + [aux_sym_remote_forward_token1] = ACTIONS(785), + [aux_sym_request_tty_token1] = ACTIONS(785), + [aux_sym_required_rsa_size_token1] = ACTIONS(785), + [aux_sym_revoked_host_keys_token1] = ACTIONS(785), + [aux_sym_security_key_provider_token1] = ACTIONS(785), + [aux_sym_send_env_token1] = ACTIONS(785), + [aux_sym_server_alive_count_max_token1] = ACTIONS(785), + [aux_sym_server_alive_interval_token1] = ACTIONS(785), + [aux_sym_session_type_token1] = ACTIONS(785), + [aux_sym_set_env_token1] = ACTIONS(785), + [aux_sym_stdin_null_token1] = ACTIONS(785), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(785), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(785), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(785), + [aux_sym_syslog_facility_token1] = ACTIONS(785), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(785), + [aux_sym_keep_alive_token1] = ACTIONS(785), + [aux_sym_tag_token1] = ACTIONS(785), + [aux_sym_tunnel_token1] = ACTIONS(787), + [aux_sym_tunnel_device_token1] = ACTIONS(785), + [aux_sym_update_host_keys_token1] = ACTIONS(785), + [aux_sym_use_keychain_token1] = ACTIONS(785), + [aux_sym_use_roaming_token1] = ACTIONS(785), + [aux_sym_user_token1] = ACTIONS(787), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(785), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(785), + [aux_sym_visual_host_key_token1] = ACTIONS(785), + [aux_sym_xauth_location_token1] = ACTIONS(785), }, [764] = { - [ts_builtin_sym_end] = ACTIONS(864), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(866), - [aux_sym_match_token1] = ACTIONS(864), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(864), - [aux_sym_address_family_token1] = ACTIONS(864), - [aux_sym_batch_mode_token1] = ACTIONS(864), - [aux_sym_bind_address_token1] = ACTIONS(864), - [aux_sym_bind_interface_token1] = ACTIONS(864), - [aux_sym_canonical_domains_token1] = ACTIONS(864), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(864), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(864), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(864), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(864), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(864), - [aux_sym_certificate_file_token1] = ACTIONS(864), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(864), - [aux_sym_channel_timeout_token1] = ACTIONS(864), - [aux_sym_check_host_ip_token1] = ACTIONS(864), - [aux_sym_ciphers_token1] = ACTIONS(864), - [aux_sym_cipher_token1] = ACTIONS(866), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(864), - [aux_sym_compression_token1] = ACTIONS(864), - [aux_sym_connection_attempts_token1] = ACTIONS(864), - [aux_sym_connect_timeout_token1] = ACTIONS(864), - [aux_sym_control_master_token1] = ACTIONS(864), - [aux_sym_control_path_token1] = ACTIONS(864), - [aux_sym_control_persist_token1] = ACTIONS(864), - [aux_sym_dynamic_forward_token1] = ACTIONS(864), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(864), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(864), - [aux_sym_escape_char_token1] = ACTIONS(864), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(864), - [aux_sym_fingerprint_hash_token1] = ACTIONS(864), - [aux_sym_fork_after_authentication_token1] = ACTIONS(864), - [aux_sym_forward_agent_token1] = ACTIONS(864), - [aux_sym_forward_x11_token1] = ACTIONS(866), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(864), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(864), - [aux_sym_gateway_ports_token1] = ACTIONS(864), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(864), - [aux_sym_gssapi_authentication_token1] = ACTIONS(864), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(864), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(864), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(864), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(864), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(864), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(864), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(864), - [aux_sym_hash_known_hosts_token1] = ACTIONS(864), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(864), - [aux_sym_hostbased_authentication_token1] = ACTIONS(864), - [aux_sym_host_key_algorithms_token1] = ACTIONS(864), - [aux_sym_host_key_alias_token1] = ACTIONS(864), - [aux_sym_hostname_token1] = ACTIONS(864), - [aux_sym_identities_only_token1] = ACTIONS(864), - [aux_sym_identity_agent_token1] = ACTIONS(864), - [aux_sym_identity_file_token1] = ACTIONS(864), - [aux_sym_ignore_unknown_token1] = ACTIONS(864), - [aux_sym_include_token1] = ACTIONS(864), - [aux_sym_ip_qos_token1] = ACTIONS(864), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(864), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(864), - [aux_sym_kex_algorithms_token1] = ACTIONS(864), - [aux_sym_known_hosts_command_token1] = ACTIONS(864), - [aux_sym_local_command_token1] = ACTIONS(864), - [aux_sym_local_forward_token1] = ACTIONS(864), - [aux_sym_log_level_token1] = ACTIONS(864), - [aux_sym_log_verbose_token1] = ACTIONS(864), - [aux_sym_macs_token1] = ACTIONS(864), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(864), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(864), - [aux_sym_password_authentication_token1] = ACTIONS(864), - [aux_sym_permit_local_command_token1] = ACTIONS(864), - [aux_sym_permit_remote_open_token1] = ACTIONS(864), - [aux_sym_pkcs11_provider_token1] = ACTIONS(864), - [aux_sym_port_token1] = ACTIONS(864), - [aux_sym_preferred_authentications_token1] = ACTIONS(864), - [aux_sym_protocol_token1] = ACTIONS(864), - [aux_sym_proxy_command_token1] = ACTIONS(864), - [aux_sym_proxy_jump_token1] = ACTIONS(864), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(864), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(864), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(864), - [aux_sym_pubkey_authentication_token1] = ACTIONS(864), - [aux_sym_rekey_limit_token1] = ACTIONS(864), - [aux_sym_remote_command_token1] = ACTIONS(864), - [aux_sym_remote_forward_token1] = ACTIONS(864), - [aux_sym_request_tty_token1] = ACTIONS(864), - [aux_sym_required_rsa_size_token1] = ACTIONS(864), - [aux_sym_revoked_host_keys_token1] = ACTIONS(864), - [aux_sym_security_key_provider_token1] = ACTIONS(864), - [aux_sym_send_env_token1] = ACTIONS(864), - [aux_sym_server_alive_count_max_token1] = ACTIONS(864), - [aux_sym_server_alive_interval_token1] = ACTIONS(864), - [aux_sym_session_type_token1] = ACTIONS(864), - [aux_sym_set_env_token1] = ACTIONS(864), - [aux_sym_stdin_null_token1] = ACTIONS(864), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(864), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(864), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(864), - [aux_sym_syslog_facility_token1] = ACTIONS(864), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(864), - [aux_sym_keep_alive_token1] = ACTIONS(864), - [aux_sym_tag_token1] = ACTIONS(864), - [aux_sym_tunnel_token1] = ACTIONS(866), - [aux_sym_tunnel_device_token1] = ACTIONS(864), - [aux_sym_update_host_keys_token1] = ACTIONS(864), - [aux_sym_use_keychain_token1] = ACTIONS(864), - [aux_sym_use_roaming_token1] = ACTIONS(864), - [aux_sym_user_token1] = ACTIONS(866), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(864), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(864), - [aux_sym_visual_host_key_token1] = ACTIONS(864), - [aux_sym_xauth_location_token1] = ACTIONS(864), + [ts_builtin_sym_end] = ACTIONS(1481), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1483), + [aux_sym_match_token1] = ACTIONS(1481), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1481), + [aux_sym_address_family_token1] = ACTIONS(1481), + [aux_sym_batch_mode_token1] = ACTIONS(1481), + [aux_sym_bind_address_token1] = ACTIONS(1481), + [aux_sym_bind_interface_token1] = ACTIONS(1481), + [aux_sym_canonical_domains_token1] = ACTIONS(1481), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1481), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1481), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1481), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1481), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1481), + [aux_sym_certificate_file_token1] = ACTIONS(1481), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1481), + [aux_sym_channel_timeout_token1] = ACTIONS(1481), + [aux_sym_check_host_ip_token1] = ACTIONS(1481), + [aux_sym_ciphers_token1] = ACTIONS(1481), + [aux_sym_cipher_token1] = ACTIONS(1483), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1481), + [aux_sym_compression_token1] = ACTIONS(1481), + [aux_sym_connection_attempts_token1] = ACTIONS(1481), + [aux_sym_connect_timeout_token1] = ACTIONS(1481), + [aux_sym_control_master_token1] = ACTIONS(1481), + [aux_sym_control_path_token1] = ACTIONS(1481), + [aux_sym_control_persist_token1] = ACTIONS(1481), + [aux_sym_dynamic_forward_token1] = ACTIONS(1481), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1481), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1481), + [aux_sym_escape_char_token1] = ACTIONS(1481), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1481), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1481), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1481), + [aux_sym_forward_agent_token1] = ACTIONS(1481), + [aux_sym_forward_x11_token1] = ACTIONS(1483), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1481), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1481), + [aux_sym_gateway_ports_token1] = ACTIONS(1481), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1481), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1481), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1481), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1481), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1481), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1481), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1481), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1481), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1481), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1481), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1481), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1481), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1481), + [aux_sym_host_key_alias_token1] = ACTIONS(1481), + [aux_sym_hostname_token1] = ACTIONS(1481), + [aux_sym_identities_only_token1] = ACTIONS(1481), + [aux_sym_identity_agent_token1] = ACTIONS(1481), + [aux_sym_identity_file_token1] = ACTIONS(1481), + [aux_sym_ignore_unknown_token1] = ACTIONS(1481), + [aux_sym_include_token1] = ACTIONS(1481), + [aux_sym_ip_qos_token1] = ACTIONS(1481), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1481), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1481), + [aux_sym_kex_algorithms_token1] = ACTIONS(1481), + [aux_sym_known_hosts_command_token1] = ACTIONS(1481), + [aux_sym_local_command_token1] = ACTIONS(1481), + [aux_sym_local_forward_token1] = ACTIONS(1481), + [aux_sym_log_level_token1] = ACTIONS(1481), + [aux_sym_log_verbose_token1] = ACTIONS(1481), + [aux_sym_macs_token1] = ACTIONS(1481), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1481), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1481), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1481), + [aux_sym_password_authentication_token1] = ACTIONS(1481), + [aux_sym_permit_local_command_token1] = ACTIONS(1481), + [aux_sym_permit_remote_open_token1] = ACTIONS(1481), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1481), + [aux_sym_port_token1] = ACTIONS(1481), + [aux_sym_preferred_authentications_token1] = ACTIONS(1481), + [aux_sym_protocol_token1] = ACTIONS(1481), + [aux_sym_proxy_command_token1] = ACTIONS(1481), + [aux_sym_proxy_jump_token1] = ACTIONS(1481), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1481), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1481), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1481), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1481), + [aux_sym_rekey_limit_token1] = ACTIONS(1481), + [aux_sym_remote_command_token1] = ACTIONS(1481), + [aux_sym_remote_forward_token1] = ACTIONS(1481), + [aux_sym_request_tty_token1] = ACTIONS(1481), + [aux_sym_required_rsa_size_token1] = ACTIONS(1481), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1481), + [aux_sym_security_key_provider_token1] = ACTIONS(1481), + [aux_sym_send_env_token1] = ACTIONS(1481), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1481), + [aux_sym_server_alive_interval_token1] = ACTIONS(1481), + [aux_sym_session_type_token1] = ACTIONS(1481), + [aux_sym_set_env_token1] = ACTIONS(1481), + [aux_sym_stdin_null_token1] = ACTIONS(1481), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1481), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1481), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1481), + [aux_sym_syslog_facility_token1] = ACTIONS(1481), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1481), + [aux_sym_keep_alive_token1] = ACTIONS(1481), + [aux_sym_tag_token1] = ACTIONS(1481), + [aux_sym_tunnel_token1] = ACTIONS(1483), + [aux_sym_tunnel_device_token1] = ACTIONS(1481), + [aux_sym_update_host_keys_token1] = ACTIONS(1481), + [aux_sym_use_keychain_token1] = ACTIONS(1481), + [aux_sym_use_roaming_token1] = ACTIONS(1481), + [aux_sym_user_token1] = ACTIONS(1483), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1481), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1481), + [aux_sym_visual_host_key_token1] = ACTIONS(1481), + [aux_sym_xauth_location_token1] = ACTIONS(1481), }, [765] = { - [ts_builtin_sym_end] = ACTIONS(1788), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1790), - [aux_sym_match_token1] = ACTIONS(1788), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1788), - [aux_sym_address_family_token1] = ACTIONS(1788), - [aux_sym_batch_mode_token1] = ACTIONS(1788), - [aux_sym_bind_address_token1] = ACTIONS(1788), - [aux_sym_bind_interface_token1] = ACTIONS(1788), - [aux_sym_canonical_domains_token1] = ACTIONS(1788), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1788), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1788), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1788), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1788), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1788), - [aux_sym_certificate_file_token1] = ACTIONS(1788), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1788), - [aux_sym_channel_timeout_token1] = ACTIONS(1788), - [aux_sym_check_host_ip_token1] = ACTIONS(1788), - [aux_sym_ciphers_token1] = ACTIONS(1788), - [aux_sym_cipher_token1] = ACTIONS(1790), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1788), - [aux_sym_compression_token1] = ACTIONS(1788), - [aux_sym_connection_attempts_token1] = ACTIONS(1788), - [aux_sym_connect_timeout_token1] = ACTIONS(1788), - [aux_sym_control_master_token1] = ACTIONS(1788), - [aux_sym_control_path_token1] = ACTIONS(1788), - [aux_sym_control_persist_token1] = ACTIONS(1788), - [aux_sym_dynamic_forward_token1] = ACTIONS(1788), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1788), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1788), - [aux_sym_escape_char_token1] = ACTIONS(1788), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1788), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1788), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1788), - [aux_sym_forward_agent_token1] = ACTIONS(1788), - [aux_sym_forward_x11_token1] = ACTIONS(1790), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1788), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1788), - [aux_sym_gateway_ports_token1] = ACTIONS(1788), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1788), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1788), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1788), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1788), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1788), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1788), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1788), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1788), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1788), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1788), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1788), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1788), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1788), - [aux_sym_host_key_alias_token1] = ACTIONS(1788), - [aux_sym_hostname_token1] = ACTIONS(1788), - [aux_sym_identities_only_token1] = ACTIONS(1788), - [aux_sym_identity_agent_token1] = ACTIONS(1788), - [aux_sym_identity_file_token1] = ACTIONS(1788), - [aux_sym_ignore_unknown_token1] = ACTIONS(1788), - [aux_sym_include_token1] = ACTIONS(1788), - [aux_sym_ip_qos_token1] = ACTIONS(1788), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1788), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1788), - [aux_sym_kex_algorithms_token1] = ACTIONS(1788), - [aux_sym_known_hosts_command_token1] = ACTIONS(1788), - [aux_sym_local_command_token1] = ACTIONS(1788), - [aux_sym_local_forward_token1] = ACTIONS(1788), - [aux_sym_log_level_token1] = ACTIONS(1788), - [aux_sym_log_verbose_token1] = ACTIONS(1788), - [aux_sym_macs_token1] = ACTIONS(1788), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1788), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1788), - [aux_sym_password_authentication_token1] = ACTIONS(1788), - [aux_sym_permit_local_command_token1] = ACTIONS(1788), - [aux_sym_permit_remote_open_token1] = ACTIONS(1788), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1788), - [aux_sym_port_token1] = ACTIONS(1788), - [aux_sym_preferred_authentications_token1] = ACTIONS(1788), - [aux_sym_protocol_token1] = ACTIONS(1788), - [aux_sym_proxy_command_token1] = ACTIONS(1788), - [aux_sym_proxy_jump_token1] = ACTIONS(1788), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1788), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1788), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1788), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1788), - [aux_sym_rekey_limit_token1] = ACTIONS(1788), - [aux_sym_remote_command_token1] = ACTIONS(1788), - [aux_sym_remote_forward_token1] = ACTIONS(1788), - [aux_sym_request_tty_token1] = ACTIONS(1788), - [aux_sym_required_rsa_size_token1] = ACTIONS(1788), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1788), - [aux_sym_security_key_provider_token1] = ACTIONS(1788), - [aux_sym_send_env_token1] = ACTIONS(1788), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1788), - [aux_sym_server_alive_interval_token1] = ACTIONS(1788), - [aux_sym_session_type_token1] = ACTIONS(1788), - [aux_sym_set_env_token1] = ACTIONS(1788), - [aux_sym_stdin_null_token1] = ACTIONS(1788), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1788), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1788), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1788), - [aux_sym_syslog_facility_token1] = ACTIONS(1788), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1788), - [aux_sym_keep_alive_token1] = ACTIONS(1788), - [aux_sym_tag_token1] = ACTIONS(1788), - [aux_sym_tunnel_token1] = ACTIONS(1790), - [aux_sym_tunnel_device_token1] = ACTIONS(1788), - [aux_sym_update_host_keys_token1] = ACTIONS(1788), - [aux_sym_use_keychain_token1] = ACTIONS(1788), - [aux_sym_use_roaming_token1] = ACTIONS(1788), - [aux_sym_user_token1] = ACTIONS(1790), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1788), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1788), - [aux_sym_visual_host_key_token1] = ACTIONS(1788), - [aux_sym_xauth_location_token1] = ACTIONS(1788), + [ts_builtin_sym_end] = ACTIONS(1815), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1817), + [aux_sym_match_token1] = ACTIONS(1815), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1815), + [aux_sym_address_family_token1] = ACTIONS(1815), + [aux_sym_batch_mode_token1] = ACTIONS(1815), + [aux_sym_bind_address_token1] = ACTIONS(1815), + [aux_sym_bind_interface_token1] = ACTIONS(1815), + [aux_sym_canonical_domains_token1] = ACTIONS(1815), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1815), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1815), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1815), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1815), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1815), + [aux_sym_certificate_file_token1] = ACTIONS(1815), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1815), + [aux_sym_channel_timeout_token1] = ACTIONS(1815), + [aux_sym_check_host_ip_token1] = ACTIONS(1815), + [aux_sym_ciphers_token1] = ACTIONS(1815), + [aux_sym_cipher_token1] = ACTIONS(1817), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1815), + [aux_sym_compression_token1] = ACTIONS(1815), + [aux_sym_connection_attempts_token1] = ACTIONS(1815), + [aux_sym_connect_timeout_token1] = ACTIONS(1815), + [aux_sym_control_master_token1] = ACTIONS(1815), + [aux_sym_control_path_token1] = ACTIONS(1815), + [aux_sym_control_persist_token1] = ACTIONS(1815), + [aux_sym_dynamic_forward_token1] = ACTIONS(1815), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1815), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1815), + [aux_sym_escape_char_token1] = ACTIONS(1815), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1815), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1815), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1815), + [aux_sym_forward_agent_token1] = ACTIONS(1815), + [aux_sym_forward_x11_token1] = ACTIONS(1817), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1815), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1815), + [aux_sym_gateway_ports_token1] = ACTIONS(1815), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1815), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1815), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1815), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1815), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1815), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1815), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1815), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1815), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1815), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1815), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1815), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1815), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1815), + [aux_sym_host_key_alias_token1] = ACTIONS(1815), + [aux_sym_hostname_token1] = ACTIONS(1815), + [aux_sym_identities_only_token1] = ACTIONS(1815), + [aux_sym_identity_agent_token1] = ACTIONS(1815), + [aux_sym_identity_file_token1] = ACTIONS(1815), + [aux_sym_ignore_unknown_token1] = ACTIONS(1815), + [aux_sym_include_token1] = ACTIONS(1815), + [aux_sym_ip_qos_token1] = ACTIONS(1815), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1815), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1815), + [aux_sym_kex_algorithms_token1] = ACTIONS(1815), + [aux_sym_known_hosts_command_token1] = ACTIONS(1815), + [aux_sym_local_command_token1] = ACTIONS(1815), + [aux_sym_local_forward_token1] = ACTIONS(1815), + [aux_sym_log_level_token1] = ACTIONS(1815), + [aux_sym_log_verbose_token1] = ACTIONS(1815), + [aux_sym_macs_token1] = ACTIONS(1815), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1815), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1815), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1815), + [aux_sym_password_authentication_token1] = ACTIONS(1815), + [aux_sym_permit_local_command_token1] = ACTIONS(1815), + [aux_sym_permit_remote_open_token1] = ACTIONS(1815), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1815), + [aux_sym_port_token1] = ACTIONS(1815), + [aux_sym_preferred_authentications_token1] = ACTIONS(1815), + [aux_sym_protocol_token1] = ACTIONS(1815), + [aux_sym_proxy_command_token1] = ACTIONS(1815), + [aux_sym_proxy_jump_token1] = ACTIONS(1815), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1815), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1815), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1815), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1815), + [aux_sym_rekey_limit_token1] = ACTIONS(1815), + [aux_sym_remote_command_token1] = ACTIONS(1815), + [aux_sym_remote_forward_token1] = ACTIONS(1815), + [aux_sym_request_tty_token1] = ACTIONS(1815), + [aux_sym_required_rsa_size_token1] = ACTIONS(1815), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1815), + [aux_sym_security_key_provider_token1] = ACTIONS(1815), + [aux_sym_send_env_token1] = ACTIONS(1815), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1815), + [aux_sym_server_alive_interval_token1] = ACTIONS(1815), + [aux_sym_session_type_token1] = ACTIONS(1815), + [aux_sym_set_env_token1] = ACTIONS(1815), + [aux_sym_stdin_null_token1] = ACTIONS(1815), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1815), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1815), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1815), + [aux_sym_syslog_facility_token1] = ACTIONS(1815), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1815), + [aux_sym_keep_alive_token1] = ACTIONS(1815), + [aux_sym_tag_token1] = ACTIONS(1815), + [aux_sym_tunnel_token1] = ACTIONS(1817), + [aux_sym_tunnel_device_token1] = ACTIONS(1815), + [aux_sym_update_host_keys_token1] = ACTIONS(1815), + [aux_sym_use_keychain_token1] = ACTIONS(1815), + [aux_sym_use_roaming_token1] = ACTIONS(1815), + [aux_sym_user_token1] = ACTIONS(1817), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1815), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1815), + [aux_sym_visual_host_key_token1] = ACTIONS(1815), + [aux_sym_xauth_location_token1] = ACTIONS(1815), }, [766] = { - [ts_builtin_sym_end] = ACTIONS(870), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(872), - [aux_sym_match_token1] = ACTIONS(870), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(870), - [aux_sym_address_family_token1] = ACTIONS(870), - [aux_sym_batch_mode_token1] = ACTIONS(870), - [aux_sym_bind_address_token1] = ACTIONS(870), - [aux_sym_bind_interface_token1] = ACTIONS(870), - [aux_sym_canonical_domains_token1] = ACTIONS(870), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(870), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(870), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(870), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(870), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(870), - [aux_sym_certificate_file_token1] = ACTIONS(870), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(870), - [aux_sym_channel_timeout_token1] = ACTIONS(870), - [aux_sym_check_host_ip_token1] = ACTIONS(870), - [aux_sym_ciphers_token1] = ACTIONS(870), - [aux_sym_cipher_token1] = ACTIONS(872), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(870), - [aux_sym_compression_token1] = ACTIONS(870), - [aux_sym_connection_attempts_token1] = ACTIONS(870), - [aux_sym_connect_timeout_token1] = ACTIONS(870), - [aux_sym_control_master_token1] = ACTIONS(870), - [aux_sym_control_path_token1] = ACTIONS(870), - [aux_sym_control_persist_token1] = ACTIONS(870), - [aux_sym_dynamic_forward_token1] = ACTIONS(870), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(870), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(870), - [aux_sym_escape_char_token1] = ACTIONS(870), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(870), - [aux_sym_fingerprint_hash_token1] = ACTIONS(870), - [aux_sym_fork_after_authentication_token1] = ACTIONS(870), - [aux_sym_forward_agent_token1] = ACTIONS(870), - [aux_sym_forward_x11_token1] = ACTIONS(872), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(870), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(870), - [aux_sym_gateway_ports_token1] = ACTIONS(870), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(870), - [aux_sym_gssapi_authentication_token1] = ACTIONS(870), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(870), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(870), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(870), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(870), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(870), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(870), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(870), - [aux_sym_hash_known_hosts_token1] = ACTIONS(870), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(870), - [aux_sym_hostbased_authentication_token1] = ACTIONS(870), - [aux_sym_host_key_algorithms_token1] = ACTIONS(870), - [aux_sym_host_key_alias_token1] = ACTIONS(870), - [aux_sym_hostname_token1] = ACTIONS(870), - [aux_sym_identities_only_token1] = ACTIONS(870), - [aux_sym_identity_agent_token1] = ACTIONS(870), - [aux_sym_identity_file_token1] = ACTIONS(870), - [aux_sym_ignore_unknown_token1] = ACTIONS(870), - [aux_sym_include_token1] = ACTIONS(870), - [aux_sym_ip_qos_token1] = ACTIONS(870), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(870), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(870), - [aux_sym_kex_algorithms_token1] = ACTIONS(870), - [aux_sym_known_hosts_command_token1] = ACTIONS(870), - [aux_sym_local_command_token1] = ACTIONS(870), - [aux_sym_local_forward_token1] = ACTIONS(870), - [aux_sym_log_level_token1] = ACTIONS(870), - [aux_sym_log_verbose_token1] = ACTIONS(870), - [aux_sym_macs_token1] = ACTIONS(870), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(870), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(870), - [aux_sym_password_authentication_token1] = ACTIONS(870), - [aux_sym_permit_local_command_token1] = ACTIONS(870), - [aux_sym_permit_remote_open_token1] = ACTIONS(870), - [aux_sym_pkcs11_provider_token1] = ACTIONS(870), - [aux_sym_port_token1] = ACTIONS(870), - [aux_sym_preferred_authentications_token1] = ACTIONS(870), - [aux_sym_protocol_token1] = ACTIONS(870), - [aux_sym_proxy_command_token1] = ACTIONS(870), - [aux_sym_proxy_jump_token1] = ACTIONS(870), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(870), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(870), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(870), - [aux_sym_pubkey_authentication_token1] = ACTIONS(870), - [aux_sym_rekey_limit_token1] = ACTIONS(870), - [aux_sym_remote_command_token1] = ACTIONS(870), - [aux_sym_remote_forward_token1] = ACTIONS(870), - [aux_sym_request_tty_token1] = ACTIONS(870), - [aux_sym_required_rsa_size_token1] = ACTIONS(870), - [aux_sym_revoked_host_keys_token1] = ACTIONS(870), - [aux_sym_security_key_provider_token1] = ACTIONS(870), - [aux_sym_send_env_token1] = ACTIONS(870), - [aux_sym_server_alive_count_max_token1] = ACTIONS(870), - [aux_sym_server_alive_interval_token1] = ACTIONS(870), - [aux_sym_session_type_token1] = ACTIONS(870), - [aux_sym_set_env_token1] = ACTIONS(870), - [aux_sym_stdin_null_token1] = ACTIONS(870), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(870), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(870), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(870), - [aux_sym_syslog_facility_token1] = ACTIONS(870), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(870), - [aux_sym_keep_alive_token1] = ACTIONS(870), - [aux_sym_tag_token1] = ACTIONS(870), - [aux_sym_tunnel_token1] = ACTIONS(872), - [aux_sym_tunnel_device_token1] = ACTIONS(870), - [aux_sym_update_host_keys_token1] = ACTIONS(870), - [aux_sym_use_keychain_token1] = ACTIONS(870), - [aux_sym_use_roaming_token1] = ACTIONS(870), - [aux_sym_user_token1] = ACTIONS(872), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(870), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(870), - [aux_sym_visual_host_key_token1] = ACTIONS(870), - [aux_sym_xauth_location_token1] = ACTIONS(870), + [ts_builtin_sym_end] = ACTIONS(743), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(745), + [aux_sym_match_token1] = ACTIONS(743), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(743), + [aux_sym_address_family_token1] = ACTIONS(743), + [aux_sym_batch_mode_token1] = ACTIONS(743), + [aux_sym_bind_address_token1] = ACTIONS(743), + [aux_sym_bind_interface_token1] = ACTIONS(743), + [aux_sym_canonical_domains_token1] = ACTIONS(743), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(743), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(743), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(743), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(743), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(743), + [aux_sym_certificate_file_token1] = ACTIONS(743), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(743), + [aux_sym_channel_timeout_token1] = ACTIONS(743), + [aux_sym_check_host_ip_token1] = ACTIONS(743), + [aux_sym_ciphers_token1] = ACTIONS(743), + [aux_sym_cipher_token1] = ACTIONS(745), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(743), + [aux_sym_compression_token1] = ACTIONS(743), + [aux_sym_connection_attempts_token1] = ACTIONS(743), + [aux_sym_connect_timeout_token1] = ACTIONS(743), + [aux_sym_control_master_token1] = ACTIONS(743), + [aux_sym_control_path_token1] = ACTIONS(743), + [aux_sym_control_persist_token1] = ACTIONS(743), + [aux_sym_dynamic_forward_token1] = ACTIONS(743), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(743), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(743), + [aux_sym_escape_char_token1] = ACTIONS(743), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(743), + [aux_sym_fingerprint_hash_token1] = ACTIONS(743), + [aux_sym_fork_after_authentication_token1] = ACTIONS(743), + [aux_sym_forward_agent_token1] = ACTIONS(743), + [aux_sym_forward_x11_token1] = ACTIONS(745), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(743), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(743), + [aux_sym_gateway_ports_token1] = ACTIONS(743), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(743), + [aux_sym_gssapi_authentication_token1] = ACTIONS(743), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(743), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(743), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(743), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(743), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(743), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(743), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(743), + [aux_sym_hash_known_hosts_token1] = ACTIONS(743), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(743), + [aux_sym_hostbased_authentication_token1] = ACTIONS(743), + [aux_sym_host_key_algorithms_token1] = ACTIONS(743), + [aux_sym_host_key_alias_token1] = ACTIONS(743), + [aux_sym_hostname_token1] = ACTIONS(743), + [aux_sym_identities_only_token1] = ACTIONS(743), + [aux_sym_identity_agent_token1] = ACTIONS(743), + [aux_sym_identity_file_token1] = ACTIONS(743), + [aux_sym_ignore_unknown_token1] = ACTIONS(743), + [aux_sym_include_token1] = ACTIONS(743), + [aux_sym_ip_qos_token1] = ACTIONS(743), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(743), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(743), + [aux_sym_kex_algorithms_token1] = ACTIONS(743), + [aux_sym_known_hosts_command_token1] = ACTIONS(743), + [aux_sym_local_command_token1] = ACTIONS(743), + [aux_sym_local_forward_token1] = ACTIONS(743), + [aux_sym_log_level_token1] = ACTIONS(743), + [aux_sym_log_verbose_token1] = ACTIONS(743), + [aux_sym_macs_token1] = ACTIONS(743), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(743), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(743), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(743), + [aux_sym_password_authentication_token1] = ACTIONS(743), + [aux_sym_permit_local_command_token1] = ACTIONS(743), + [aux_sym_permit_remote_open_token1] = ACTIONS(743), + [aux_sym_pkcs11_provider_token1] = ACTIONS(743), + [aux_sym_port_token1] = ACTIONS(743), + [aux_sym_preferred_authentications_token1] = ACTIONS(743), + [aux_sym_protocol_token1] = ACTIONS(743), + [aux_sym_proxy_command_token1] = ACTIONS(743), + [aux_sym_proxy_jump_token1] = ACTIONS(743), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(743), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(743), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(743), + [aux_sym_pubkey_authentication_token1] = ACTIONS(743), + [aux_sym_rekey_limit_token1] = ACTIONS(743), + [aux_sym_remote_command_token1] = ACTIONS(743), + [aux_sym_remote_forward_token1] = ACTIONS(743), + [aux_sym_request_tty_token1] = ACTIONS(743), + [aux_sym_required_rsa_size_token1] = ACTIONS(743), + [aux_sym_revoked_host_keys_token1] = ACTIONS(743), + [aux_sym_security_key_provider_token1] = ACTIONS(743), + [aux_sym_send_env_token1] = ACTIONS(743), + [aux_sym_server_alive_count_max_token1] = ACTIONS(743), + [aux_sym_server_alive_interval_token1] = ACTIONS(743), + [aux_sym_session_type_token1] = ACTIONS(743), + [aux_sym_set_env_token1] = ACTIONS(743), + [aux_sym_stdin_null_token1] = ACTIONS(743), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(743), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(743), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(743), + [aux_sym_syslog_facility_token1] = ACTIONS(743), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(743), + [aux_sym_keep_alive_token1] = ACTIONS(743), + [aux_sym_tag_token1] = ACTIONS(743), + [aux_sym_tunnel_token1] = ACTIONS(745), + [aux_sym_tunnel_device_token1] = ACTIONS(743), + [aux_sym_update_host_keys_token1] = ACTIONS(743), + [aux_sym_use_keychain_token1] = ACTIONS(743), + [aux_sym_use_roaming_token1] = ACTIONS(743), + [aux_sym_user_token1] = ACTIONS(745), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(743), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(743), + [aux_sym_visual_host_key_token1] = ACTIONS(743), + [aux_sym_xauth_location_token1] = ACTIONS(743), }, [767] = { - [ts_builtin_sym_end] = ACTIONS(876), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(878), - [aux_sym_match_token1] = ACTIONS(876), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(876), - [aux_sym_address_family_token1] = ACTIONS(876), - [aux_sym_batch_mode_token1] = ACTIONS(876), - [aux_sym_bind_address_token1] = ACTIONS(876), - [aux_sym_bind_interface_token1] = ACTIONS(876), - [aux_sym_canonical_domains_token1] = ACTIONS(876), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(876), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(876), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(876), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(876), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(876), - [aux_sym_certificate_file_token1] = ACTIONS(876), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(876), - [aux_sym_channel_timeout_token1] = ACTIONS(876), - [aux_sym_check_host_ip_token1] = ACTIONS(876), - [aux_sym_ciphers_token1] = ACTIONS(876), - [aux_sym_cipher_token1] = ACTIONS(878), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(876), - [aux_sym_compression_token1] = ACTIONS(876), - [aux_sym_connection_attempts_token1] = ACTIONS(876), - [aux_sym_connect_timeout_token1] = ACTIONS(876), - [aux_sym_control_master_token1] = ACTIONS(876), - [aux_sym_control_path_token1] = ACTIONS(876), - [aux_sym_control_persist_token1] = ACTIONS(876), - [aux_sym_dynamic_forward_token1] = ACTIONS(876), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(876), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(876), - [aux_sym_escape_char_token1] = ACTIONS(876), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(876), - [aux_sym_fingerprint_hash_token1] = ACTIONS(876), - [aux_sym_fork_after_authentication_token1] = ACTIONS(876), - [aux_sym_forward_agent_token1] = ACTIONS(876), - [aux_sym_forward_x11_token1] = ACTIONS(878), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(876), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(876), - [aux_sym_gateway_ports_token1] = ACTIONS(876), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(876), - [aux_sym_gssapi_authentication_token1] = ACTIONS(876), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(876), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(876), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(876), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(876), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(876), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(876), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(876), - [aux_sym_hash_known_hosts_token1] = ACTIONS(876), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(876), - [aux_sym_hostbased_authentication_token1] = ACTIONS(876), - [aux_sym_host_key_algorithms_token1] = ACTIONS(876), - [aux_sym_host_key_alias_token1] = ACTIONS(876), - [aux_sym_hostname_token1] = ACTIONS(876), - [aux_sym_identities_only_token1] = ACTIONS(876), - [aux_sym_identity_agent_token1] = ACTIONS(876), - [aux_sym_identity_file_token1] = ACTIONS(876), - [aux_sym_ignore_unknown_token1] = ACTIONS(876), - [aux_sym_include_token1] = ACTIONS(876), - [aux_sym_ip_qos_token1] = ACTIONS(876), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(876), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(876), - [aux_sym_kex_algorithms_token1] = ACTIONS(876), - [aux_sym_known_hosts_command_token1] = ACTIONS(876), - [aux_sym_local_command_token1] = ACTIONS(876), - [aux_sym_local_forward_token1] = ACTIONS(876), - [aux_sym_log_level_token1] = ACTIONS(876), - [aux_sym_log_verbose_token1] = ACTIONS(876), - [aux_sym_macs_token1] = ACTIONS(876), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(876), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(876), - [aux_sym_password_authentication_token1] = ACTIONS(876), - [aux_sym_permit_local_command_token1] = ACTIONS(876), - [aux_sym_permit_remote_open_token1] = ACTIONS(876), - [aux_sym_pkcs11_provider_token1] = ACTIONS(876), - [aux_sym_port_token1] = ACTIONS(876), - [aux_sym_preferred_authentications_token1] = ACTIONS(876), - [aux_sym_protocol_token1] = ACTIONS(876), - [aux_sym_proxy_command_token1] = ACTIONS(876), - [aux_sym_proxy_jump_token1] = ACTIONS(876), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(876), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(876), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(876), - [aux_sym_pubkey_authentication_token1] = ACTIONS(876), - [aux_sym_rekey_limit_token1] = ACTIONS(876), - [aux_sym_remote_command_token1] = ACTIONS(876), - [aux_sym_remote_forward_token1] = ACTIONS(876), - [aux_sym_request_tty_token1] = ACTIONS(876), - [aux_sym_required_rsa_size_token1] = ACTIONS(876), - [aux_sym_revoked_host_keys_token1] = ACTIONS(876), - [aux_sym_security_key_provider_token1] = ACTIONS(876), - [aux_sym_send_env_token1] = ACTIONS(876), - [aux_sym_server_alive_count_max_token1] = ACTIONS(876), - [aux_sym_server_alive_interval_token1] = ACTIONS(876), - [aux_sym_session_type_token1] = ACTIONS(876), - [aux_sym_set_env_token1] = ACTIONS(876), - [aux_sym_stdin_null_token1] = ACTIONS(876), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(876), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(876), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(876), - [aux_sym_syslog_facility_token1] = ACTIONS(876), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(876), - [aux_sym_keep_alive_token1] = ACTIONS(876), - [aux_sym_tag_token1] = ACTIONS(876), - [aux_sym_tunnel_token1] = ACTIONS(878), - [aux_sym_tunnel_device_token1] = ACTIONS(876), - [aux_sym_update_host_keys_token1] = ACTIONS(876), - [aux_sym_use_keychain_token1] = ACTIONS(876), - [aux_sym_use_roaming_token1] = ACTIONS(876), - [aux_sym_user_token1] = ACTIONS(878), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(876), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(876), - [aux_sym_visual_host_key_token1] = ACTIONS(876), - [aux_sym_xauth_location_token1] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(1719), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1721), + [aux_sym_match_token1] = ACTIONS(1719), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1719), + [aux_sym_address_family_token1] = ACTIONS(1719), + [aux_sym_batch_mode_token1] = ACTIONS(1719), + [aux_sym_bind_address_token1] = ACTIONS(1719), + [aux_sym_bind_interface_token1] = ACTIONS(1719), + [aux_sym_canonical_domains_token1] = ACTIONS(1719), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1719), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1719), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1719), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1719), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1719), + [aux_sym_certificate_file_token1] = ACTIONS(1719), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1719), + [aux_sym_channel_timeout_token1] = ACTIONS(1719), + [aux_sym_check_host_ip_token1] = ACTIONS(1719), + [aux_sym_ciphers_token1] = ACTIONS(1719), + [aux_sym_cipher_token1] = ACTIONS(1721), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1719), + [aux_sym_compression_token1] = ACTIONS(1719), + [aux_sym_connection_attempts_token1] = ACTIONS(1719), + [aux_sym_connect_timeout_token1] = ACTIONS(1719), + [aux_sym_control_master_token1] = ACTIONS(1719), + [aux_sym_control_path_token1] = ACTIONS(1719), + [aux_sym_control_persist_token1] = ACTIONS(1719), + [aux_sym_dynamic_forward_token1] = ACTIONS(1719), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1719), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1719), + [aux_sym_escape_char_token1] = ACTIONS(1719), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1719), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1719), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1719), + [aux_sym_forward_agent_token1] = ACTIONS(1719), + [aux_sym_forward_x11_token1] = ACTIONS(1721), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1719), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1719), + [aux_sym_gateway_ports_token1] = ACTIONS(1719), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1719), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1719), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1719), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1719), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1719), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1719), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1719), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1719), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1719), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1719), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1719), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1719), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1719), + [aux_sym_host_key_alias_token1] = ACTIONS(1719), + [aux_sym_hostname_token1] = ACTIONS(1719), + [aux_sym_identities_only_token1] = ACTIONS(1719), + [aux_sym_identity_agent_token1] = ACTIONS(1719), + [aux_sym_identity_file_token1] = ACTIONS(1719), + [aux_sym_ignore_unknown_token1] = ACTIONS(1719), + [aux_sym_include_token1] = ACTIONS(1719), + [aux_sym_ip_qos_token1] = ACTIONS(1719), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1719), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1719), + [aux_sym_kex_algorithms_token1] = ACTIONS(1719), + [aux_sym_known_hosts_command_token1] = ACTIONS(1719), + [aux_sym_local_command_token1] = ACTIONS(1719), + [aux_sym_local_forward_token1] = ACTIONS(1719), + [aux_sym_log_level_token1] = ACTIONS(1719), + [aux_sym_log_verbose_token1] = ACTIONS(1719), + [aux_sym_macs_token1] = ACTIONS(1719), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1719), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1719), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1719), + [aux_sym_password_authentication_token1] = ACTIONS(1719), + [aux_sym_permit_local_command_token1] = ACTIONS(1719), + [aux_sym_permit_remote_open_token1] = ACTIONS(1719), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1719), + [aux_sym_port_token1] = ACTIONS(1719), + [aux_sym_preferred_authentications_token1] = ACTIONS(1719), + [aux_sym_protocol_token1] = ACTIONS(1719), + [aux_sym_proxy_command_token1] = ACTIONS(1719), + [aux_sym_proxy_jump_token1] = ACTIONS(1719), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1719), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1719), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1719), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1719), + [aux_sym_rekey_limit_token1] = ACTIONS(1719), + [aux_sym_remote_command_token1] = ACTIONS(1719), + [aux_sym_remote_forward_token1] = ACTIONS(1719), + [aux_sym_request_tty_token1] = ACTIONS(1719), + [aux_sym_required_rsa_size_token1] = ACTIONS(1719), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1719), + [aux_sym_security_key_provider_token1] = ACTIONS(1719), + [aux_sym_send_env_token1] = ACTIONS(1719), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1719), + [aux_sym_server_alive_interval_token1] = ACTIONS(1719), + [aux_sym_session_type_token1] = ACTIONS(1719), + [aux_sym_set_env_token1] = ACTIONS(1719), + [aux_sym_stdin_null_token1] = ACTIONS(1719), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1719), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1719), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1719), + [aux_sym_syslog_facility_token1] = ACTIONS(1719), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1719), + [aux_sym_keep_alive_token1] = ACTIONS(1719), + [aux_sym_tag_token1] = ACTIONS(1719), + [aux_sym_tunnel_token1] = ACTIONS(1721), + [aux_sym_tunnel_device_token1] = ACTIONS(1719), + [aux_sym_update_host_keys_token1] = ACTIONS(1719), + [aux_sym_use_keychain_token1] = ACTIONS(1719), + [aux_sym_use_roaming_token1] = ACTIONS(1719), + [aux_sym_user_token1] = ACTIONS(1721), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1719), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1719), + [aux_sym_visual_host_key_token1] = ACTIONS(1719), + [aux_sym_xauth_location_token1] = ACTIONS(1719), }, [768] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1784), - [aux_sym_match_token1] = ACTIONS(1782), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1782), - [aux_sym_address_family_token1] = ACTIONS(1782), - [aux_sym_batch_mode_token1] = ACTIONS(1782), - [aux_sym_bind_address_token1] = ACTIONS(1782), - [aux_sym_bind_interface_token1] = ACTIONS(1782), - [aux_sym_canonical_domains_token1] = ACTIONS(1782), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1782), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1782), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1782), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1782), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1782), - [aux_sym_certificate_file_token1] = ACTIONS(1782), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1782), - [aux_sym_channel_timeout_token1] = ACTIONS(1782), - [aux_sym_check_host_ip_token1] = ACTIONS(1782), - [aux_sym_ciphers_token1] = ACTIONS(1782), - [aux_sym_cipher_token1] = ACTIONS(1784), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1782), - [aux_sym_compression_token1] = ACTIONS(1782), - [aux_sym_connection_attempts_token1] = ACTIONS(1782), - [aux_sym_connect_timeout_token1] = ACTIONS(1782), - [aux_sym_control_master_token1] = ACTIONS(1782), - [aux_sym_control_path_token1] = ACTIONS(1782), - [aux_sym_control_persist_token1] = ACTIONS(1782), - [aux_sym_dynamic_forward_token1] = ACTIONS(1782), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1782), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1782), - [aux_sym_escape_char_token1] = ACTIONS(1782), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1782), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1782), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1782), - [aux_sym_forward_agent_token1] = ACTIONS(1782), - [aux_sym_forward_x11_token1] = ACTIONS(1784), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1782), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1782), - [aux_sym_gateway_ports_token1] = ACTIONS(1782), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1782), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1782), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1782), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1782), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1782), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1782), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1782), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1782), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1782), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1782), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1782), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1782), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1782), - [aux_sym_host_key_alias_token1] = ACTIONS(1782), - [aux_sym_hostname_token1] = ACTIONS(1782), - [aux_sym_identities_only_token1] = ACTIONS(1782), - [aux_sym_identity_agent_token1] = ACTIONS(1782), - [aux_sym_identity_file_token1] = ACTIONS(1782), - [aux_sym_ignore_unknown_token1] = ACTIONS(1782), - [aux_sym_include_token1] = ACTIONS(1782), - [aux_sym_ip_qos_token1] = ACTIONS(1782), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1782), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1782), - [aux_sym_kex_algorithms_token1] = ACTIONS(1782), - [aux_sym_known_hosts_command_token1] = ACTIONS(1782), - [aux_sym_local_command_token1] = ACTIONS(1782), - [aux_sym_local_forward_token1] = ACTIONS(1782), - [aux_sym_log_level_token1] = ACTIONS(1782), - [aux_sym_log_verbose_token1] = ACTIONS(1782), - [aux_sym_macs_token1] = ACTIONS(1782), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1782), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1782), - [aux_sym_password_authentication_token1] = ACTIONS(1782), - [aux_sym_permit_local_command_token1] = ACTIONS(1782), - [aux_sym_permit_remote_open_token1] = ACTIONS(1782), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1782), - [aux_sym_port_token1] = ACTIONS(1782), - [aux_sym_preferred_authentications_token1] = ACTIONS(1782), - [aux_sym_protocol_token1] = ACTIONS(1782), - [aux_sym_proxy_command_token1] = ACTIONS(1782), - [aux_sym_proxy_jump_token1] = ACTIONS(1782), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1782), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1782), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1782), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1782), - [aux_sym_rekey_limit_token1] = ACTIONS(1782), - [aux_sym_remote_command_token1] = ACTIONS(1782), - [aux_sym_remote_forward_token1] = ACTIONS(1782), - [aux_sym_request_tty_token1] = ACTIONS(1782), - [aux_sym_required_rsa_size_token1] = ACTIONS(1782), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1782), - [aux_sym_security_key_provider_token1] = ACTIONS(1782), - [aux_sym_send_env_token1] = ACTIONS(1782), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1782), - [aux_sym_server_alive_interval_token1] = ACTIONS(1782), - [aux_sym_session_type_token1] = ACTIONS(1782), - [aux_sym_set_env_token1] = ACTIONS(1782), - [aux_sym_stdin_null_token1] = ACTIONS(1782), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1782), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1782), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1782), - [aux_sym_syslog_facility_token1] = ACTIONS(1782), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1782), - [aux_sym_keep_alive_token1] = ACTIONS(1782), - [aux_sym_tag_token1] = ACTIONS(1782), - [aux_sym_tunnel_token1] = ACTIONS(1784), - [aux_sym_tunnel_device_token1] = ACTIONS(1782), - [aux_sym_update_host_keys_token1] = ACTIONS(1782), - [aux_sym_use_keychain_token1] = ACTIONS(1782), - [aux_sym_use_roaming_token1] = ACTIONS(1782), - [aux_sym_user_token1] = ACTIONS(1784), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1782), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1782), - [aux_sym_visual_host_key_token1] = ACTIONS(1782), - [aux_sym_xauth_location_token1] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1811), + [aux_sym_match_token1] = ACTIONS(1809), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1809), + [aux_sym_address_family_token1] = ACTIONS(1809), + [aux_sym_batch_mode_token1] = ACTIONS(1809), + [aux_sym_bind_address_token1] = ACTIONS(1809), + [aux_sym_bind_interface_token1] = ACTIONS(1809), + [aux_sym_canonical_domains_token1] = ACTIONS(1809), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1809), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1809), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1809), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1809), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1809), + [aux_sym_certificate_file_token1] = ACTIONS(1809), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1809), + [aux_sym_channel_timeout_token1] = ACTIONS(1809), + [aux_sym_check_host_ip_token1] = ACTIONS(1809), + [aux_sym_ciphers_token1] = ACTIONS(1809), + [aux_sym_cipher_token1] = ACTIONS(1811), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1809), + [aux_sym_compression_token1] = ACTIONS(1809), + [aux_sym_connection_attempts_token1] = ACTIONS(1809), + [aux_sym_connect_timeout_token1] = ACTIONS(1809), + [aux_sym_control_master_token1] = ACTIONS(1809), + [aux_sym_control_path_token1] = ACTIONS(1809), + [aux_sym_control_persist_token1] = ACTIONS(1809), + [aux_sym_dynamic_forward_token1] = ACTIONS(1809), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1809), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1809), + [aux_sym_escape_char_token1] = ACTIONS(1809), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1809), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1809), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1809), + [aux_sym_forward_agent_token1] = ACTIONS(1809), + [aux_sym_forward_x11_token1] = ACTIONS(1811), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1809), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1809), + [aux_sym_gateway_ports_token1] = ACTIONS(1809), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1809), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1809), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1809), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1809), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1809), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1809), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1809), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1809), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1809), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1809), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1809), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1809), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1809), + [aux_sym_host_key_alias_token1] = ACTIONS(1809), + [aux_sym_hostname_token1] = ACTIONS(1809), + [aux_sym_identities_only_token1] = ACTIONS(1809), + [aux_sym_identity_agent_token1] = ACTIONS(1809), + [aux_sym_identity_file_token1] = ACTIONS(1809), + [aux_sym_ignore_unknown_token1] = ACTIONS(1809), + [aux_sym_include_token1] = ACTIONS(1809), + [aux_sym_ip_qos_token1] = ACTIONS(1809), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1809), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1809), + [aux_sym_kex_algorithms_token1] = ACTIONS(1809), + [aux_sym_known_hosts_command_token1] = ACTIONS(1809), + [aux_sym_local_command_token1] = ACTIONS(1809), + [aux_sym_local_forward_token1] = ACTIONS(1809), + [aux_sym_log_level_token1] = ACTIONS(1809), + [aux_sym_log_verbose_token1] = ACTIONS(1809), + [aux_sym_macs_token1] = ACTIONS(1809), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1809), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1809), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1809), + [aux_sym_password_authentication_token1] = ACTIONS(1809), + [aux_sym_permit_local_command_token1] = ACTIONS(1809), + [aux_sym_permit_remote_open_token1] = ACTIONS(1809), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1809), + [aux_sym_port_token1] = ACTIONS(1809), + [aux_sym_preferred_authentications_token1] = ACTIONS(1809), + [aux_sym_protocol_token1] = ACTIONS(1809), + [aux_sym_proxy_command_token1] = ACTIONS(1809), + [aux_sym_proxy_jump_token1] = ACTIONS(1809), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1809), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1809), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1809), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1809), + [aux_sym_rekey_limit_token1] = ACTIONS(1809), + [aux_sym_remote_command_token1] = ACTIONS(1809), + [aux_sym_remote_forward_token1] = ACTIONS(1809), + [aux_sym_request_tty_token1] = ACTIONS(1809), + [aux_sym_required_rsa_size_token1] = ACTIONS(1809), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1809), + [aux_sym_security_key_provider_token1] = ACTIONS(1809), + [aux_sym_send_env_token1] = ACTIONS(1809), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1809), + [aux_sym_server_alive_interval_token1] = ACTIONS(1809), + [aux_sym_session_type_token1] = ACTIONS(1809), + [aux_sym_set_env_token1] = ACTIONS(1809), + [aux_sym_stdin_null_token1] = ACTIONS(1809), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1809), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1809), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1809), + [aux_sym_syslog_facility_token1] = ACTIONS(1809), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1809), + [aux_sym_keep_alive_token1] = ACTIONS(1809), + [aux_sym_tag_token1] = ACTIONS(1809), + [aux_sym_tunnel_token1] = ACTIONS(1811), + [aux_sym_tunnel_device_token1] = ACTIONS(1809), + [aux_sym_update_host_keys_token1] = ACTIONS(1809), + [aux_sym_use_keychain_token1] = ACTIONS(1809), + [aux_sym_use_roaming_token1] = ACTIONS(1809), + [aux_sym_user_token1] = ACTIONS(1811), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1809), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1809), + [aux_sym_visual_host_key_token1] = ACTIONS(1809), + [aux_sym_xauth_location_token1] = ACTIONS(1809), }, [769] = { - [ts_builtin_sym_end] = ACTIONS(972), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(974), - [aux_sym_match_token1] = ACTIONS(972), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(972), - [aux_sym_address_family_token1] = ACTIONS(972), - [aux_sym_batch_mode_token1] = ACTIONS(972), - [aux_sym_bind_address_token1] = ACTIONS(972), - [aux_sym_bind_interface_token1] = ACTIONS(972), - [aux_sym_canonical_domains_token1] = ACTIONS(972), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(972), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(972), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(972), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(972), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(972), - [aux_sym_certificate_file_token1] = ACTIONS(972), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(972), - [aux_sym_channel_timeout_token1] = ACTIONS(972), - [aux_sym_check_host_ip_token1] = ACTIONS(972), - [aux_sym_ciphers_token1] = ACTIONS(972), - [aux_sym_cipher_token1] = ACTIONS(974), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(972), - [aux_sym_compression_token1] = ACTIONS(972), - [aux_sym_connection_attempts_token1] = ACTIONS(972), - [aux_sym_connect_timeout_token1] = ACTIONS(972), - [aux_sym_control_master_token1] = ACTIONS(972), - [aux_sym_control_path_token1] = ACTIONS(972), - [aux_sym_control_persist_token1] = ACTIONS(972), - [aux_sym_dynamic_forward_token1] = ACTIONS(972), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(972), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(972), - [aux_sym_escape_char_token1] = ACTIONS(972), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(972), - [aux_sym_fingerprint_hash_token1] = ACTIONS(972), - [aux_sym_fork_after_authentication_token1] = ACTIONS(972), - [aux_sym_forward_agent_token1] = ACTIONS(972), - [aux_sym_forward_x11_token1] = ACTIONS(974), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(972), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(972), - [aux_sym_gateway_ports_token1] = ACTIONS(972), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(972), - [aux_sym_gssapi_authentication_token1] = ACTIONS(972), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(972), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(972), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(972), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(972), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(972), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(972), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(972), - [aux_sym_hash_known_hosts_token1] = ACTIONS(972), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(972), - [aux_sym_hostbased_authentication_token1] = ACTIONS(972), - [aux_sym_host_key_algorithms_token1] = ACTIONS(972), - [aux_sym_host_key_alias_token1] = ACTIONS(972), - [aux_sym_hostname_token1] = ACTIONS(972), - [aux_sym_identities_only_token1] = ACTIONS(972), - [aux_sym_identity_agent_token1] = ACTIONS(972), - [aux_sym_identity_file_token1] = ACTIONS(972), - [aux_sym_ignore_unknown_token1] = ACTIONS(972), - [aux_sym_include_token1] = ACTIONS(972), - [aux_sym_ip_qos_token1] = ACTIONS(972), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(972), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(972), - [aux_sym_kex_algorithms_token1] = ACTIONS(972), - [aux_sym_known_hosts_command_token1] = ACTIONS(972), - [aux_sym_local_command_token1] = ACTIONS(972), - [aux_sym_local_forward_token1] = ACTIONS(972), - [aux_sym_log_level_token1] = ACTIONS(972), - [aux_sym_log_verbose_token1] = ACTIONS(972), - [aux_sym_macs_token1] = ACTIONS(972), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(972), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(972), - [aux_sym_password_authentication_token1] = ACTIONS(972), - [aux_sym_permit_local_command_token1] = ACTIONS(972), - [aux_sym_permit_remote_open_token1] = ACTIONS(972), - [aux_sym_pkcs11_provider_token1] = ACTIONS(972), - [aux_sym_port_token1] = ACTIONS(972), - [aux_sym_preferred_authentications_token1] = ACTIONS(972), - [aux_sym_protocol_token1] = ACTIONS(972), - [aux_sym_proxy_command_token1] = ACTIONS(972), - [aux_sym_proxy_jump_token1] = ACTIONS(972), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(972), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(972), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(972), - [aux_sym_pubkey_authentication_token1] = ACTIONS(972), - [aux_sym_rekey_limit_token1] = ACTIONS(972), - [aux_sym_remote_command_token1] = ACTIONS(972), - [aux_sym_remote_forward_token1] = ACTIONS(972), - [aux_sym_request_tty_token1] = ACTIONS(972), - [aux_sym_required_rsa_size_token1] = ACTIONS(972), - [aux_sym_revoked_host_keys_token1] = ACTIONS(972), - [aux_sym_security_key_provider_token1] = ACTIONS(972), - [aux_sym_send_env_token1] = ACTIONS(972), - [aux_sym_server_alive_count_max_token1] = ACTIONS(972), - [aux_sym_server_alive_interval_token1] = ACTIONS(972), - [aux_sym_session_type_token1] = ACTIONS(972), - [aux_sym_set_env_token1] = ACTIONS(972), - [aux_sym_stdin_null_token1] = ACTIONS(972), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(972), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(972), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(972), - [aux_sym_syslog_facility_token1] = ACTIONS(972), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(972), - [aux_sym_keep_alive_token1] = ACTIONS(972), - [aux_sym_tag_token1] = ACTIONS(972), - [aux_sym_tunnel_token1] = ACTIONS(974), - [aux_sym_tunnel_device_token1] = ACTIONS(972), - [aux_sym_update_host_keys_token1] = ACTIONS(972), - [aux_sym_use_keychain_token1] = ACTIONS(972), - [aux_sym_use_roaming_token1] = ACTIONS(972), - [aux_sym_user_token1] = ACTIONS(974), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(972), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(972), - [aux_sym_visual_host_key_token1] = ACTIONS(972), - [aux_sym_xauth_location_token1] = ACTIONS(972), + [ts_builtin_sym_end] = ACTIONS(935), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(937), + [aux_sym_match_token1] = ACTIONS(935), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(935), + [aux_sym_address_family_token1] = ACTIONS(935), + [aux_sym_batch_mode_token1] = ACTIONS(935), + [aux_sym_bind_address_token1] = ACTIONS(935), + [aux_sym_bind_interface_token1] = ACTIONS(935), + [aux_sym_canonical_domains_token1] = ACTIONS(935), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(935), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(935), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(935), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(935), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(935), + [aux_sym_certificate_file_token1] = ACTIONS(935), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(935), + [aux_sym_channel_timeout_token1] = ACTIONS(935), + [aux_sym_check_host_ip_token1] = ACTIONS(935), + [aux_sym_ciphers_token1] = ACTIONS(935), + [aux_sym_cipher_token1] = ACTIONS(937), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(935), + [aux_sym_compression_token1] = ACTIONS(935), + [aux_sym_connection_attempts_token1] = ACTIONS(935), + [aux_sym_connect_timeout_token1] = ACTIONS(935), + [aux_sym_control_master_token1] = ACTIONS(935), + [aux_sym_control_path_token1] = ACTIONS(935), + [aux_sym_control_persist_token1] = ACTIONS(935), + [aux_sym_dynamic_forward_token1] = ACTIONS(935), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(935), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(935), + [aux_sym_escape_char_token1] = ACTIONS(935), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(935), + [aux_sym_fingerprint_hash_token1] = ACTIONS(935), + [aux_sym_fork_after_authentication_token1] = ACTIONS(935), + [aux_sym_forward_agent_token1] = ACTIONS(935), + [aux_sym_forward_x11_token1] = ACTIONS(937), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(935), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(935), + [aux_sym_gateway_ports_token1] = ACTIONS(935), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(935), + [aux_sym_gssapi_authentication_token1] = ACTIONS(935), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(935), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(935), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(935), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(935), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(935), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(935), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(935), + [aux_sym_hash_known_hosts_token1] = ACTIONS(935), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(935), + [aux_sym_hostbased_authentication_token1] = ACTIONS(935), + [aux_sym_host_key_algorithms_token1] = ACTIONS(935), + [aux_sym_host_key_alias_token1] = ACTIONS(935), + [aux_sym_hostname_token1] = ACTIONS(935), + [aux_sym_identities_only_token1] = ACTIONS(935), + [aux_sym_identity_agent_token1] = ACTIONS(935), + [aux_sym_identity_file_token1] = ACTIONS(935), + [aux_sym_ignore_unknown_token1] = ACTIONS(935), + [aux_sym_include_token1] = ACTIONS(935), + [aux_sym_ip_qos_token1] = ACTIONS(935), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(935), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(935), + [aux_sym_kex_algorithms_token1] = ACTIONS(935), + [aux_sym_known_hosts_command_token1] = ACTIONS(935), + [aux_sym_local_command_token1] = ACTIONS(935), + [aux_sym_local_forward_token1] = ACTIONS(935), + [aux_sym_log_level_token1] = ACTIONS(935), + [aux_sym_log_verbose_token1] = ACTIONS(935), + [aux_sym_macs_token1] = ACTIONS(935), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(935), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(935), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(935), + [aux_sym_password_authentication_token1] = ACTIONS(935), + [aux_sym_permit_local_command_token1] = ACTIONS(935), + [aux_sym_permit_remote_open_token1] = ACTIONS(935), + [aux_sym_pkcs11_provider_token1] = ACTIONS(935), + [aux_sym_port_token1] = ACTIONS(935), + [aux_sym_preferred_authentications_token1] = ACTIONS(935), + [aux_sym_protocol_token1] = ACTIONS(935), + [aux_sym_proxy_command_token1] = ACTIONS(935), + [aux_sym_proxy_jump_token1] = ACTIONS(935), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(935), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(935), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(935), + [aux_sym_pubkey_authentication_token1] = ACTIONS(935), + [aux_sym_rekey_limit_token1] = ACTIONS(935), + [aux_sym_remote_command_token1] = ACTIONS(935), + [aux_sym_remote_forward_token1] = ACTIONS(935), + [aux_sym_request_tty_token1] = ACTIONS(935), + [aux_sym_required_rsa_size_token1] = ACTIONS(935), + [aux_sym_revoked_host_keys_token1] = ACTIONS(935), + [aux_sym_security_key_provider_token1] = ACTIONS(935), + [aux_sym_send_env_token1] = ACTIONS(935), + [aux_sym_server_alive_count_max_token1] = ACTIONS(935), + [aux_sym_server_alive_interval_token1] = ACTIONS(935), + [aux_sym_session_type_token1] = ACTIONS(935), + [aux_sym_set_env_token1] = ACTIONS(935), + [aux_sym_stdin_null_token1] = ACTIONS(935), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(935), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(935), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(935), + [aux_sym_syslog_facility_token1] = ACTIONS(935), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(935), + [aux_sym_keep_alive_token1] = ACTIONS(935), + [aux_sym_tag_token1] = ACTIONS(935), + [aux_sym_tunnel_token1] = ACTIONS(937), + [aux_sym_tunnel_device_token1] = ACTIONS(935), + [aux_sym_update_host_keys_token1] = ACTIONS(935), + [aux_sym_use_keychain_token1] = ACTIONS(935), + [aux_sym_use_roaming_token1] = ACTIONS(935), + [aux_sym_user_token1] = ACTIONS(937), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(935), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(935), + [aux_sym_visual_host_key_token1] = ACTIONS(935), + [aux_sym_xauth_location_token1] = ACTIONS(935), }, [770] = { - [ts_builtin_sym_end] = ACTIONS(882), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(884), - [aux_sym_match_token1] = ACTIONS(882), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(882), - [aux_sym_address_family_token1] = ACTIONS(882), - [aux_sym_batch_mode_token1] = ACTIONS(882), - [aux_sym_bind_address_token1] = ACTIONS(882), - [aux_sym_bind_interface_token1] = ACTIONS(882), - [aux_sym_canonical_domains_token1] = ACTIONS(882), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(882), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(882), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(882), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(882), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(882), - [aux_sym_certificate_file_token1] = ACTIONS(882), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(882), - [aux_sym_channel_timeout_token1] = ACTIONS(882), - [aux_sym_check_host_ip_token1] = ACTIONS(882), - [aux_sym_ciphers_token1] = ACTIONS(882), - [aux_sym_cipher_token1] = ACTIONS(884), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(882), - [aux_sym_compression_token1] = ACTIONS(882), - [aux_sym_connection_attempts_token1] = ACTIONS(882), - [aux_sym_connect_timeout_token1] = ACTIONS(882), - [aux_sym_control_master_token1] = ACTIONS(882), - [aux_sym_control_path_token1] = ACTIONS(882), - [aux_sym_control_persist_token1] = ACTIONS(882), - [aux_sym_dynamic_forward_token1] = ACTIONS(882), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(882), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(882), - [aux_sym_escape_char_token1] = ACTIONS(882), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(882), - [aux_sym_fingerprint_hash_token1] = ACTIONS(882), - [aux_sym_fork_after_authentication_token1] = ACTIONS(882), - [aux_sym_forward_agent_token1] = ACTIONS(882), - [aux_sym_forward_x11_token1] = ACTIONS(884), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(882), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(882), - [aux_sym_gateway_ports_token1] = ACTIONS(882), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(882), - [aux_sym_gssapi_authentication_token1] = ACTIONS(882), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(882), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(882), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(882), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(882), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(882), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(882), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(882), - [aux_sym_hash_known_hosts_token1] = ACTIONS(882), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(882), - [aux_sym_hostbased_authentication_token1] = ACTIONS(882), - [aux_sym_host_key_algorithms_token1] = ACTIONS(882), - [aux_sym_host_key_alias_token1] = ACTIONS(882), - [aux_sym_hostname_token1] = ACTIONS(882), - [aux_sym_identities_only_token1] = ACTIONS(882), - [aux_sym_identity_agent_token1] = ACTIONS(882), - [aux_sym_identity_file_token1] = ACTIONS(882), - [aux_sym_ignore_unknown_token1] = ACTIONS(882), - [aux_sym_include_token1] = ACTIONS(882), - [aux_sym_ip_qos_token1] = ACTIONS(882), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(882), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(882), - [aux_sym_kex_algorithms_token1] = ACTIONS(882), - [aux_sym_known_hosts_command_token1] = ACTIONS(882), - [aux_sym_local_command_token1] = ACTIONS(882), - [aux_sym_local_forward_token1] = ACTIONS(882), - [aux_sym_log_level_token1] = ACTIONS(882), - [aux_sym_log_verbose_token1] = ACTIONS(882), - [aux_sym_macs_token1] = ACTIONS(882), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(882), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(882), - [aux_sym_password_authentication_token1] = ACTIONS(882), - [aux_sym_permit_local_command_token1] = ACTIONS(882), - [aux_sym_permit_remote_open_token1] = ACTIONS(882), - [aux_sym_pkcs11_provider_token1] = ACTIONS(882), - [aux_sym_port_token1] = ACTIONS(882), - [aux_sym_preferred_authentications_token1] = ACTIONS(882), - [aux_sym_protocol_token1] = ACTIONS(882), - [aux_sym_proxy_command_token1] = ACTIONS(882), - [aux_sym_proxy_jump_token1] = ACTIONS(882), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(882), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(882), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(882), - [aux_sym_pubkey_authentication_token1] = ACTIONS(882), - [aux_sym_rekey_limit_token1] = ACTIONS(882), - [aux_sym_remote_command_token1] = ACTIONS(882), - [aux_sym_remote_forward_token1] = ACTIONS(882), - [aux_sym_request_tty_token1] = ACTIONS(882), - [aux_sym_required_rsa_size_token1] = ACTIONS(882), - [aux_sym_revoked_host_keys_token1] = ACTIONS(882), - [aux_sym_security_key_provider_token1] = ACTIONS(882), - [aux_sym_send_env_token1] = ACTIONS(882), - [aux_sym_server_alive_count_max_token1] = ACTIONS(882), - [aux_sym_server_alive_interval_token1] = ACTIONS(882), - [aux_sym_session_type_token1] = ACTIONS(882), - [aux_sym_set_env_token1] = ACTIONS(882), - [aux_sym_stdin_null_token1] = ACTIONS(882), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(882), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(882), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(882), - [aux_sym_syslog_facility_token1] = ACTIONS(882), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(882), - [aux_sym_keep_alive_token1] = ACTIONS(882), - [aux_sym_tag_token1] = ACTIONS(882), - [aux_sym_tunnel_token1] = ACTIONS(884), - [aux_sym_tunnel_device_token1] = ACTIONS(882), - [aux_sym_update_host_keys_token1] = ACTIONS(882), - [aux_sym_use_keychain_token1] = ACTIONS(882), - [aux_sym_use_roaming_token1] = ACTIONS(882), - [aux_sym_user_token1] = ACTIONS(884), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(882), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(882), - [aux_sym_visual_host_key_token1] = ACTIONS(882), - [aux_sym_xauth_location_token1] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(1487), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1489), + [aux_sym_match_token1] = ACTIONS(1487), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1487), + [aux_sym_address_family_token1] = ACTIONS(1487), + [aux_sym_batch_mode_token1] = ACTIONS(1487), + [aux_sym_bind_address_token1] = ACTIONS(1487), + [aux_sym_bind_interface_token1] = ACTIONS(1487), + [aux_sym_canonical_domains_token1] = ACTIONS(1487), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1487), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1487), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1487), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1487), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1487), + [aux_sym_certificate_file_token1] = ACTIONS(1487), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1487), + [aux_sym_channel_timeout_token1] = ACTIONS(1487), + [aux_sym_check_host_ip_token1] = ACTIONS(1487), + [aux_sym_ciphers_token1] = ACTIONS(1487), + [aux_sym_cipher_token1] = ACTIONS(1489), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1487), + [aux_sym_compression_token1] = ACTIONS(1487), + [aux_sym_connection_attempts_token1] = ACTIONS(1487), + [aux_sym_connect_timeout_token1] = ACTIONS(1487), + [aux_sym_control_master_token1] = ACTIONS(1487), + [aux_sym_control_path_token1] = ACTIONS(1487), + [aux_sym_control_persist_token1] = ACTIONS(1487), + [aux_sym_dynamic_forward_token1] = ACTIONS(1487), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1487), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1487), + [aux_sym_escape_char_token1] = ACTIONS(1487), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1487), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1487), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1487), + [aux_sym_forward_agent_token1] = ACTIONS(1487), + [aux_sym_forward_x11_token1] = ACTIONS(1489), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1487), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1487), + [aux_sym_gateway_ports_token1] = ACTIONS(1487), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1487), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1487), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1487), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1487), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1487), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1487), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1487), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1487), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1487), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1487), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1487), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1487), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1487), + [aux_sym_host_key_alias_token1] = ACTIONS(1487), + [aux_sym_hostname_token1] = ACTIONS(1487), + [aux_sym_identities_only_token1] = ACTIONS(1487), + [aux_sym_identity_agent_token1] = ACTIONS(1487), + [aux_sym_identity_file_token1] = ACTIONS(1487), + [aux_sym_ignore_unknown_token1] = ACTIONS(1487), + [aux_sym_include_token1] = ACTIONS(1487), + [aux_sym_ip_qos_token1] = ACTIONS(1487), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1487), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1487), + [aux_sym_kex_algorithms_token1] = ACTIONS(1487), + [aux_sym_known_hosts_command_token1] = ACTIONS(1487), + [aux_sym_local_command_token1] = ACTIONS(1487), + [aux_sym_local_forward_token1] = ACTIONS(1487), + [aux_sym_log_level_token1] = ACTIONS(1487), + [aux_sym_log_verbose_token1] = ACTIONS(1487), + [aux_sym_macs_token1] = ACTIONS(1487), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1487), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1487), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1487), + [aux_sym_password_authentication_token1] = ACTIONS(1487), + [aux_sym_permit_local_command_token1] = ACTIONS(1487), + [aux_sym_permit_remote_open_token1] = ACTIONS(1487), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1487), + [aux_sym_port_token1] = ACTIONS(1487), + [aux_sym_preferred_authentications_token1] = ACTIONS(1487), + [aux_sym_protocol_token1] = ACTIONS(1487), + [aux_sym_proxy_command_token1] = ACTIONS(1487), + [aux_sym_proxy_jump_token1] = ACTIONS(1487), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1487), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1487), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1487), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1487), + [aux_sym_rekey_limit_token1] = ACTIONS(1487), + [aux_sym_remote_command_token1] = ACTIONS(1487), + [aux_sym_remote_forward_token1] = ACTIONS(1487), + [aux_sym_request_tty_token1] = ACTIONS(1487), + [aux_sym_required_rsa_size_token1] = ACTIONS(1487), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1487), + [aux_sym_security_key_provider_token1] = ACTIONS(1487), + [aux_sym_send_env_token1] = ACTIONS(1487), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1487), + [aux_sym_server_alive_interval_token1] = ACTIONS(1487), + [aux_sym_session_type_token1] = ACTIONS(1487), + [aux_sym_set_env_token1] = ACTIONS(1487), + [aux_sym_stdin_null_token1] = ACTIONS(1487), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1487), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1487), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1487), + [aux_sym_syslog_facility_token1] = ACTIONS(1487), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1487), + [aux_sym_keep_alive_token1] = ACTIONS(1487), + [aux_sym_tag_token1] = ACTIONS(1487), + [aux_sym_tunnel_token1] = ACTIONS(1489), + [aux_sym_tunnel_device_token1] = ACTIONS(1487), + [aux_sym_update_host_keys_token1] = ACTIONS(1487), + [aux_sym_use_keychain_token1] = ACTIONS(1487), + [aux_sym_use_roaming_token1] = ACTIONS(1487), + [aux_sym_user_token1] = ACTIONS(1489), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1487), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1487), + [aux_sym_visual_host_key_token1] = ACTIONS(1487), + [aux_sym_xauth_location_token1] = ACTIONS(1487), }, [771] = { - [ts_builtin_sym_end] = ACTIONS(1776), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1778), - [aux_sym_match_token1] = ACTIONS(1776), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1776), - [aux_sym_address_family_token1] = ACTIONS(1776), - [aux_sym_batch_mode_token1] = ACTIONS(1776), - [aux_sym_bind_address_token1] = ACTIONS(1776), - [aux_sym_bind_interface_token1] = ACTIONS(1776), - [aux_sym_canonical_domains_token1] = ACTIONS(1776), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1776), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1776), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1776), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1776), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1776), - [aux_sym_certificate_file_token1] = ACTIONS(1776), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1776), - [aux_sym_channel_timeout_token1] = ACTIONS(1776), - [aux_sym_check_host_ip_token1] = ACTIONS(1776), - [aux_sym_ciphers_token1] = ACTIONS(1776), - [aux_sym_cipher_token1] = ACTIONS(1778), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1776), - [aux_sym_compression_token1] = ACTIONS(1776), - [aux_sym_connection_attempts_token1] = ACTIONS(1776), - [aux_sym_connect_timeout_token1] = ACTIONS(1776), - [aux_sym_control_master_token1] = ACTIONS(1776), - [aux_sym_control_path_token1] = ACTIONS(1776), - [aux_sym_control_persist_token1] = ACTIONS(1776), - [aux_sym_dynamic_forward_token1] = ACTIONS(1776), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1776), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1776), - [aux_sym_escape_char_token1] = ACTIONS(1776), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1776), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1776), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1776), - [aux_sym_forward_agent_token1] = ACTIONS(1776), - [aux_sym_forward_x11_token1] = ACTIONS(1778), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1776), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1776), - [aux_sym_gateway_ports_token1] = ACTIONS(1776), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1776), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1776), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1776), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1776), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1776), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1776), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1776), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1776), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1776), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1776), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1776), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1776), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1776), - [aux_sym_host_key_alias_token1] = ACTIONS(1776), - [aux_sym_hostname_token1] = ACTIONS(1776), - [aux_sym_identities_only_token1] = ACTIONS(1776), - [aux_sym_identity_agent_token1] = ACTIONS(1776), - [aux_sym_identity_file_token1] = ACTIONS(1776), - [aux_sym_ignore_unknown_token1] = ACTIONS(1776), - [aux_sym_include_token1] = ACTIONS(1776), - [aux_sym_ip_qos_token1] = ACTIONS(1776), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1776), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1776), - [aux_sym_kex_algorithms_token1] = ACTIONS(1776), - [aux_sym_known_hosts_command_token1] = ACTIONS(1776), - [aux_sym_local_command_token1] = ACTIONS(1776), - [aux_sym_local_forward_token1] = ACTIONS(1776), - [aux_sym_log_level_token1] = ACTIONS(1776), - [aux_sym_log_verbose_token1] = ACTIONS(1776), - [aux_sym_macs_token1] = ACTIONS(1776), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1776), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1776), - [aux_sym_password_authentication_token1] = ACTIONS(1776), - [aux_sym_permit_local_command_token1] = ACTIONS(1776), - [aux_sym_permit_remote_open_token1] = ACTIONS(1776), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1776), - [aux_sym_port_token1] = ACTIONS(1776), - [aux_sym_preferred_authentications_token1] = ACTIONS(1776), - [aux_sym_protocol_token1] = ACTIONS(1776), - [aux_sym_proxy_command_token1] = ACTIONS(1776), - [aux_sym_proxy_jump_token1] = ACTIONS(1776), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1776), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1776), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1776), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1776), - [aux_sym_rekey_limit_token1] = ACTIONS(1776), - [aux_sym_remote_command_token1] = ACTIONS(1776), - [aux_sym_remote_forward_token1] = ACTIONS(1776), - [aux_sym_request_tty_token1] = ACTIONS(1776), - [aux_sym_required_rsa_size_token1] = ACTIONS(1776), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1776), - [aux_sym_security_key_provider_token1] = ACTIONS(1776), - [aux_sym_send_env_token1] = ACTIONS(1776), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1776), - [aux_sym_server_alive_interval_token1] = ACTIONS(1776), - [aux_sym_session_type_token1] = ACTIONS(1776), - [aux_sym_set_env_token1] = ACTIONS(1776), - [aux_sym_stdin_null_token1] = ACTIONS(1776), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1776), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1776), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1776), - [aux_sym_syslog_facility_token1] = ACTIONS(1776), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1776), - [aux_sym_keep_alive_token1] = ACTIONS(1776), - [aux_sym_tag_token1] = ACTIONS(1776), - [aux_sym_tunnel_token1] = ACTIONS(1778), - [aux_sym_tunnel_device_token1] = ACTIONS(1776), - [aux_sym_update_host_keys_token1] = ACTIONS(1776), - [aux_sym_use_keychain_token1] = ACTIONS(1776), - [aux_sym_use_roaming_token1] = ACTIONS(1776), - [aux_sym_user_token1] = ACTIONS(1778), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1776), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1776), - [aux_sym_visual_host_key_token1] = ACTIONS(1776), - [aux_sym_xauth_location_token1] = ACTIONS(1776), + [ts_builtin_sym_end] = ACTIONS(1803), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1805), + [aux_sym_match_token1] = ACTIONS(1803), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1803), + [aux_sym_address_family_token1] = ACTIONS(1803), + [aux_sym_batch_mode_token1] = ACTIONS(1803), + [aux_sym_bind_address_token1] = ACTIONS(1803), + [aux_sym_bind_interface_token1] = ACTIONS(1803), + [aux_sym_canonical_domains_token1] = ACTIONS(1803), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1803), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1803), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1803), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1803), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1803), + [aux_sym_certificate_file_token1] = ACTIONS(1803), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1803), + [aux_sym_channel_timeout_token1] = ACTIONS(1803), + [aux_sym_check_host_ip_token1] = ACTIONS(1803), + [aux_sym_ciphers_token1] = ACTIONS(1803), + [aux_sym_cipher_token1] = ACTIONS(1805), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1803), + [aux_sym_compression_token1] = ACTIONS(1803), + [aux_sym_connection_attempts_token1] = ACTIONS(1803), + [aux_sym_connect_timeout_token1] = ACTIONS(1803), + [aux_sym_control_master_token1] = ACTIONS(1803), + [aux_sym_control_path_token1] = ACTIONS(1803), + [aux_sym_control_persist_token1] = ACTIONS(1803), + [aux_sym_dynamic_forward_token1] = ACTIONS(1803), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1803), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1803), + [aux_sym_escape_char_token1] = ACTIONS(1803), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1803), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1803), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1803), + [aux_sym_forward_agent_token1] = ACTIONS(1803), + [aux_sym_forward_x11_token1] = ACTIONS(1805), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1803), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1803), + [aux_sym_gateway_ports_token1] = ACTIONS(1803), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1803), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1803), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1803), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1803), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1803), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1803), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1803), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1803), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1803), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1803), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1803), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1803), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1803), + [aux_sym_host_key_alias_token1] = ACTIONS(1803), + [aux_sym_hostname_token1] = ACTIONS(1803), + [aux_sym_identities_only_token1] = ACTIONS(1803), + [aux_sym_identity_agent_token1] = ACTIONS(1803), + [aux_sym_identity_file_token1] = ACTIONS(1803), + [aux_sym_ignore_unknown_token1] = ACTIONS(1803), + [aux_sym_include_token1] = ACTIONS(1803), + [aux_sym_ip_qos_token1] = ACTIONS(1803), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1803), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1803), + [aux_sym_kex_algorithms_token1] = ACTIONS(1803), + [aux_sym_known_hosts_command_token1] = ACTIONS(1803), + [aux_sym_local_command_token1] = ACTIONS(1803), + [aux_sym_local_forward_token1] = ACTIONS(1803), + [aux_sym_log_level_token1] = ACTIONS(1803), + [aux_sym_log_verbose_token1] = ACTIONS(1803), + [aux_sym_macs_token1] = ACTIONS(1803), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1803), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1803), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1803), + [aux_sym_password_authentication_token1] = ACTIONS(1803), + [aux_sym_permit_local_command_token1] = ACTIONS(1803), + [aux_sym_permit_remote_open_token1] = ACTIONS(1803), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1803), + [aux_sym_port_token1] = ACTIONS(1803), + [aux_sym_preferred_authentications_token1] = ACTIONS(1803), + [aux_sym_protocol_token1] = ACTIONS(1803), + [aux_sym_proxy_command_token1] = ACTIONS(1803), + [aux_sym_proxy_jump_token1] = ACTIONS(1803), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1803), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1803), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1803), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1803), + [aux_sym_rekey_limit_token1] = ACTIONS(1803), + [aux_sym_remote_command_token1] = ACTIONS(1803), + [aux_sym_remote_forward_token1] = ACTIONS(1803), + [aux_sym_request_tty_token1] = ACTIONS(1803), + [aux_sym_required_rsa_size_token1] = ACTIONS(1803), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1803), + [aux_sym_security_key_provider_token1] = ACTIONS(1803), + [aux_sym_send_env_token1] = ACTIONS(1803), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1803), + [aux_sym_server_alive_interval_token1] = ACTIONS(1803), + [aux_sym_session_type_token1] = ACTIONS(1803), + [aux_sym_set_env_token1] = ACTIONS(1803), + [aux_sym_stdin_null_token1] = ACTIONS(1803), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1803), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1803), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1803), + [aux_sym_syslog_facility_token1] = ACTIONS(1803), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1803), + [aux_sym_keep_alive_token1] = ACTIONS(1803), + [aux_sym_tag_token1] = ACTIONS(1803), + [aux_sym_tunnel_token1] = ACTIONS(1805), + [aux_sym_tunnel_device_token1] = ACTIONS(1803), + [aux_sym_update_host_keys_token1] = ACTIONS(1803), + [aux_sym_use_keychain_token1] = ACTIONS(1803), + [aux_sym_use_roaming_token1] = ACTIONS(1803), + [aux_sym_user_token1] = ACTIONS(1805), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1803), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1803), + [aux_sym_visual_host_key_token1] = ACTIONS(1803), + [aux_sym_xauth_location_token1] = ACTIONS(1803), }, [772] = { - [ts_builtin_sym_end] = ACTIONS(966), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(968), - [aux_sym_match_token1] = ACTIONS(966), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(966), - [aux_sym_address_family_token1] = ACTIONS(966), - [aux_sym_batch_mode_token1] = ACTIONS(966), - [aux_sym_bind_address_token1] = ACTIONS(966), - [aux_sym_bind_interface_token1] = ACTIONS(966), - [aux_sym_canonical_domains_token1] = ACTIONS(966), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(966), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(966), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(966), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(966), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(966), - [aux_sym_certificate_file_token1] = ACTIONS(966), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(966), - [aux_sym_channel_timeout_token1] = ACTIONS(966), - [aux_sym_check_host_ip_token1] = ACTIONS(966), - [aux_sym_ciphers_token1] = ACTIONS(966), - [aux_sym_cipher_token1] = ACTIONS(968), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(966), - [aux_sym_compression_token1] = ACTIONS(966), - [aux_sym_connection_attempts_token1] = ACTIONS(966), - [aux_sym_connect_timeout_token1] = ACTIONS(966), - [aux_sym_control_master_token1] = ACTIONS(966), - [aux_sym_control_path_token1] = ACTIONS(966), - [aux_sym_control_persist_token1] = ACTIONS(966), - [aux_sym_dynamic_forward_token1] = ACTIONS(966), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(966), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(966), - [aux_sym_escape_char_token1] = ACTIONS(966), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(966), - [aux_sym_fingerprint_hash_token1] = ACTIONS(966), - [aux_sym_fork_after_authentication_token1] = ACTIONS(966), - [aux_sym_forward_agent_token1] = ACTIONS(966), - [aux_sym_forward_x11_token1] = ACTIONS(968), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(966), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(966), - [aux_sym_gateway_ports_token1] = ACTIONS(966), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(966), - [aux_sym_gssapi_authentication_token1] = ACTIONS(966), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(966), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(966), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(966), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(966), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(966), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(966), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(966), - [aux_sym_hash_known_hosts_token1] = ACTIONS(966), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(966), - [aux_sym_hostbased_authentication_token1] = ACTIONS(966), - [aux_sym_host_key_algorithms_token1] = ACTIONS(966), - [aux_sym_host_key_alias_token1] = ACTIONS(966), - [aux_sym_hostname_token1] = ACTIONS(966), - [aux_sym_identities_only_token1] = ACTIONS(966), - [aux_sym_identity_agent_token1] = ACTIONS(966), - [aux_sym_identity_file_token1] = ACTIONS(966), - [aux_sym_ignore_unknown_token1] = ACTIONS(966), - [aux_sym_include_token1] = ACTIONS(966), - [aux_sym_ip_qos_token1] = ACTIONS(966), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(966), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(966), - [aux_sym_kex_algorithms_token1] = ACTIONS(966), - [aux_sym_known_hosts_command_token1] = ACTIONS(966), - [aux_sym_local_command_token1] = ACTIONS(966), - [aux_sym_local_forward_token1] = ACTIONS(966), - [aux_sym_log_level_token1] = ACTIONS(966), - [aux_sym_log_verbose_token1] = ACTIONS(966), - [aux_sym_macs_token1] = ACTIONS(966), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(966), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(966), - [aux_sym_password_authentication_token1] = ACTIONS(966), - [aux_sym_permit_local_command_token1] = ACTIONS(966), - [aux_sym_permit_remote_open_token1] = ACTIONS(966), - [aux_sym_pkcs11_provider_token1] = ACTIONS(966), - [aux_sym_port_token1] = ACTIONS(966), - [aux_sym_preferred_authentications_token1] = ACTIONS(966), - [aux_sym_protocol_token1] = ACTIONS(966), - [aux_sym_proxy_command_token1] = ACTIONS(966), - [aux_sym_proxy_jump_token1] = ACTIONS(966), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(966), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(966), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(966), - [aux_sym_pubkey_authentication_token1] = ACTIONS(966), - [aux_sym_rekey_limit_token1] = ACTIONS(966), - [aux_sym_remote_command_token1] = ACTIONS(966), - [aux_sym_remote_forward_token1] = ACTIONS(966), - [aux_sym_request_tty_token1] = ACTIONS(966), - [aux_sym_required_rsa_size_token1] = ACTIONS(966), - [aux_sym_revoked_host_keys_token1] = ACTIONS(966), - [aux_sym_security_key_provider_token1] = ACTIONS(966), - [aux_sym_send_env_token1] = ACTIONS(966), - [aux_sym_server_alive_count_max_token1] = ACTIONS(966), - [aux_sym_server_alive_interval_token1] = ACTIONS(966), - [aux_sym_session_type_token1] = ACTIONS(966), - [aux_sym_set_env_token1] = ACTIONS(966), - [aux_sym_stdin_null_token1] = ACTIONS(966), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(966), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(966), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(966), - [aux_sym_syslog_facility_token1] = ACTIONS(966), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(966), - [aux_sym_keep_alive_token1] = ACTIONS(966), - [aux_sym_tag_token1] = ACTIONS(966), - [aux_sym_tunnel_token1] = ACTIONS(968), - [aux_sym_tunnel_device_token1] = ACTIONS(966), - [aux_sym_update_host_keys_token1] = ACTIONS(966), - [aux_sym_use_keychain_token1] = ACTIONS(966), - [aux_sym_use_roaming_token1] = ACTIONS(966), - [aux_sym_user_token1] = ACTIONS(968), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(966), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(966), - [aux_sym_visual_host_key_token1] = ACTIONS(966), - [aux_sym_xauth_location_token1] = ACTIONS(966), + [ts_builtin_sym_end] = ACTIONS(749), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(751), + [aux_sym_match_token1] = ACTIONS(749), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(749), + [aux_sym_address_family_token1] = ACTIONS(749), + [aux_sym_batch_mode_token1] = ACTIONS(749), + [aux_sym_bind_address_token1] = ACTIONS(749), + [aux_sym_bind_interface_token1] = ACTIONS(749), + [aux_sym_canonical_domains_token1] = ACTIONS(749), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(749), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(749), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(749), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(749), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(749), + [aux_sym_certificate_file_token1] = ACTIONS(749), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(749), + [aux_sym_channel_timeout_token1] = ACTIONS(749), + [aux_sym_check_host_ip_token1] = ACTIONS(749), + [aux_sym_ciphers_token1] = ACTIONS(749), + [aux_sym_cipher_token1] = ACTIONS(751), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(749), + [aux_sym_compression_token1] = ACTIONS(749), + [aux_sym_connection_attempts_token1] = ACTIONS(749), + [aux_sym_connect_timeout_token1] = ACTIONS(749), + [aux_sym_control_master_token1] = ACTIONS(749), + [aux_sym_control_path_token1] = ACTIONS(749), + [aux_sym_control_persist_token1] = ACTIONS(749), + [aux_sym_dynamic_forward_token1] = ACTIONS(749), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(749), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(749), + [aux_sym_escape_char_token1] = ACTIONS(749), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(749), + [aux_sym_fingerprint_hash_token1] = ACTIONS(749), + [aux_sym_fork_after_authentication_token1] = ACTIONS(749), + [aux_sym_forward_agent_token1] = ACTIONS(749), + [aux_sym_forward_x11_token1] = ACTIONS(751), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(749), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(749), + [aux_sym_gateway_ports_token1] = ACTIONS(749), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(749), + [aux_sym_gssapi_authentication_token1] = ACTIONS(749), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(749), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(749), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(749), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(749), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(749), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(749), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(749), + [aux_sym_hash_known_hosts_token1] = ACTIONS(749), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(749), + [aux_sym_hostbased_authentication_token1] = ACTIONS(749), + [aux_sym_host_key_algorithms_token1] = ACTIONS(749), + [aux_sym_host_key_alias_token1] = ACTIONS(749), + [aux_sym_hostname_token1] = ACTIONS(749), + [aux_sym_identities_only_token1] = ACTIONS(749), + [aux_sym_identity_agent_token1] = ACTIONS(749), + [aux_sym_identity_file_token1] = ACTIONS(749), + [aux_sym_ignore_unknown_token1] = ACTIONS(749), + [aux_sym_include_token1] = ACTIONS(749), + [aux_sym_ip_qos_token1] = ACTIONS(749), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(749), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(749), + [aux_sym_kex_algorithms_token1] = ACTIONS(749), + [aux_sym_known_hosts_command_token1] = ACTIONS(749), + [aux_sym_local_command_token1] = ACTIONS(749), + [aux_sym_local_forward_token1] = ACTIONS(749), + [aux_sym_log_level_token1] = ACTIONS(749), + [aux_sym_log_verbose_token1] = ACTIONS(749), + [aux_sym_macs_token1] = ACTIONS(749), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(749), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(749), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(749), + [aux_sym_password_authentication_token1] = ACTIONS(749), + [aux_sym_permit_local_command_token1] = ACTIONS(749), + [aux_sym_permit_remote_open_token1] = ACTIONS(749), + [aux_sym_pkcs11_provider_token1] = ACTIONS(749), + [aux_sym_port_token1] = ACTIONS(749), + [aux_sym_preferred_authentications_token1] = ACTIONS(749), + [aux_sym_protocol_token1] = ACTIONS(749), + [aux_sym_proxy_command_token1] = ACTIONS(749), + [aux_sym_proxy_jump_token1] = ACTIONS(749), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(749), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(749), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(749), + [aux_sym_pubkey_authentication_token1] = ACTIONS(749), + [aux_sym_rekey_limit_token1] = ACTIONS(749), + [aux_sym_remote_command_token1] = ACTIONS(749), + [aux_sym_remote_forward_token1] = ACTIONS(749), + [aux_sym_request_tty_token1] = ACTIONS(749), + [aux_sym_required_rsa_size_token1] = ACTIONS(749), + [aux_sym_revoked_host_keys_token1] = ACTIONS(749), + [aux_sym_security_key_provider_token1] = ACTIONS(749), + [aux_sym_send_env_token1] = ACTIONS(749), + [aux_sym_server_alive_count_max_token1] = ACTIONS(749), + [aux_sym_server_alive_interval_token1] = ACTIONS(749), + [aux_sym_session_type_token1] = ACTIONS(749), + [aux_sym_set_env_token1] = ACTIONS(749), + [aux_sym_stdin_null_token1] = ACTIONS(749), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(749), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(749), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(749), + [aux_sym_syslog_facility_token1] = ACTIONS(749), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(749), + [aux_sym_keep_alive_token1] = ACTIONS(749), + [aux_sym_tag_token1] = ACTIONS(749), + [aux_sym_tunnel_token1] = ACTIONS(751), + [aux_sym_tunnel_device_token1] = ACTIONS(749), + [aux_sym_update_host_keys_token1] = ACTIONS(749), + [aux_sym_use_keychain_token1] = ACTIONS(749), + [aux_sym_use_roaming_token1] = ACTIONS(749), + [aux_sym_user_token1] = ACTIONS(751), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(749), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(749), + [aux_sym_visual_host_key_token1] = ACTIONS(749), + [aux_sym_xauth_location_token1] = ACTIONS(749), }, [773] = { - [ts_builtin_sym_end] = ACTIONS(1704), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1706), - [aux_sym_match_token1] = ACTIONS(1704), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1704), - [aux_sym_address_family_token1] = ACTIONS(1704), - [aux_sym_batch_mode_token1] = ACTIONS(1704), - [aux_sym_bind_address_token1] = ACTIONS(1704), - [aux_sym_bind_interface_token1] = ACTIONS(1704), - [aux_sym_canonical_domains_token1] = ACTIONS(1704), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1704), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1704), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1704), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1704), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1704), - [aux_sym_certificate_file_token1] = ACTIONS(1704), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1704), - [aux_sym_channel_timeout_token1] = ACTIONS(1704), - [aux_sym_check_host_ip_token1] = ACTIONS(1704), - [aux_sym_ciphers_token1] = ACTIONS(1704), - [aux_sym_cipher_token1] = ACTIONS(1706), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1704), - [aux_sym_compression_token1] = ACTIONS(1704), - [aux_sym_connection_attempts_token1] = ACTIONS(1704), - [aux_sym_connect_timeout_token1] = ACTIONS(1704), - [aux_sym_control_master_token1] = ACTIONS(1704), - [aux_sym_control_path_token1] = ACTIONS(1704), - [aux_sym_control_persist_token1] = ACTIONS(1704), - [aux_sym_dynamic_forward_token1] = ACTIONS(1704), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1704), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1704), - [aux_sym_escape_char_token1] = ACTIONS(1704), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1704), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1704), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1704), - [aux_sym_forward_agent_token1] = ACTIONS(1704), - [aux_sym_forward_x11_token1] = ACTIONS(1706), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1704), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1704), - [aux_sym_gateway_ports_token1] = ACTIONS(1704), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1704), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1704), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1704), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1704), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1704), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1704), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1704), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1704), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1704), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1704), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1704), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1704), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1704), - [aux_sym_host_key_alias_token1] = ACTIONS(1704), - [aux_sym_hostname_token1] = ACTIONS(1704), - [aux_sym_identities_only_token1] = ACTIONS(1704), - [aux_sym_identity_agent_token1] = ACTIONS(1704), - [aux_sym_identity_file_token1] = ACTIONS(1704), - [aux_sym_ignore_unknown_token1] = ACTIONS(1704), - [aux_sym_include_token1] = ACTIONS(1704), - [aux_sym_ip_qos_token1] = ACTIONS(1704), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1704), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1704), - [aux_sym_kex_algorithms_token1] = ACTIONS(1704), - [aux_sym_known_hosts_command_token1] = ACTIONS(1704), - [aux_sym_local_command_token1] = ACTIONS(1704), - [aux_sym_local_forward_token1] = ACTIONS(1704), - [aux_sym_log_level_token1] = ACTIONS(1704), - [aux_sym_log_verbose_token1] = ACTIONS(1704), - [aux_sym_macs_token1] = ACTIONS(1704), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1704), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1704), - [aux_sym_password_authentication_token1] = ACTIONS(1704), - [aux_sym_permit_local_command_token1] = ACTIONS(1704), - [aux_sym_permit_remote_open_token1] = ACTIONS(1704), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1704), - [aux_sym_port_token1] = ACTIONS(1704), - [aux_sym_preferred_authentications_token1] = ACTIONS(1704), - [aux_sym_protocol_token1] = ACTIONS(1704), - [aux_sym_proxy_command_token1] = ACTIONS(1704), - [aux_sym_proxy_jump_token1] = ACTIONS(1704), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1704), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1704), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1704), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1704), - [aux_sym_rekey_limit_token1] = ACTIONS(1704), - [aux_sym_remote_command_token1] = ACTIONS(1704), - [aux_sym_remote_forward_token1] = ACTIONS(1704), - [aux_sym_request_tty_token1] = ACTIONS(1704), - [aux_sym_required_rsa_size_token1] = ACTIONS(1704), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1704), - [aux_sym_security_key_provider_token1] = ACTIONS(1704), - [aux_sym_send_env_token1] = ACTIONS(1704), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1704), - [aux_sym_server_alive_interval_token1] = ACTIONS(1704), - [aux_sym_session_type_token1] = ACTIONS(1704), - [aux_sym_set_env_token1] = ACTIONS(1704), - [aux_sym_stdin_null_token1] = ACTIONS(1704), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1704), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1704), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1704), - [aux_sym_syslog_facility_token1] = ACTIONS(1704), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1704), - [aux_sym_keep_alive_token1] = ACTIONS(1704), - [aux_sym_tag_token1] = ACTIONS(1704), - [aux_sym_tunnel_token1] = ACTIONS(1706), - [aux_sym_tunnel_device_token1] = ACTIONS(1704), - [aux_sym_update_host_keys_token1] = ACTIONS(1704), - [aux_sym_use_keychain_token1] = ACTIONS(1704), - [aux_sym_use_roaming_token1] = ACTIONS(1704), - [aux_sym_user_token1] = ACTIONS(1706), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1704), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1704), - [aux_sym_visual_host_key_token1] = ACTIONS(1704), - [aux_sym_xauth_location_token1] = ACTIONS(1704), + [ts_builtin_sym_end] = ACTIONS(1535), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1537), + [aux_sym_match_token1] = ACTIONS(1535), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1535), + [aux_sym_address_family_token1] = ACTIONS(1535), + [aux_sym_batch_mode_token1] = ACTIONS(1535), + [aux_sym_bind_address_token1] = ACTIONS(1535), + [aux_sym_bind_interface_token1] = ACTIONS(1535), + [aux_sym_canonical_domains_token1] = ACTIONS(1535), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1535), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1535), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1535), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1535), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1535), + [aux_sym_certificate_file_token1] = ACTIONS(1535), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1535), + [aux_sym_channel_timeout_token1] = ACTIONS(1535), + [aux_sym_check_host_ip_token1] = ACTIONS(1535), + [aux_sym_ciphers_token1] = ACTIONS(1535), + [aux_sym_cipher_token1] = ACTIONS(1537), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1535), + [aux_sym_compression_token1] = ACTIONS(1535), + [aux_sym_connection_attempts_token1] = ACTIONS(1535), + [aux_sym_connect_timeout_token1] = ACTIONS(1535), + [aux_sym_control_master_token1] = ACTIONS(1535), + [aux_sym_control_path_token1] = ACTIONS(1535), + [aux_sym_control_persist_token1] = ACTIONS(1535), + [aux_sym_dynamic_forward_token1] = ACTIONS(1535), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1535), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1535), + [aux_sym_escape_char_token1] = ACTIONS(1535), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1535), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1535), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1535), + [aux_sym_forward_agent_token1] = ACTIONS(1535), + [aux_sym_forward_x11_token1] = ACTIONS(1537), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1535), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1535), + [aux_sym_gateway_ports_token1] = ACTIONS(1535), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1535), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1535), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1535), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1535), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1535), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1535), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1535), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1535), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1535), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1535), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1535), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1535), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1535), + [aux_sym_host_key_alias_token1] = ACTIONS(1535), + [aux_sym_hostname_token1] = ACTIONS(1535), + [aux_sym_identities_only_token1] = ACTIONS(1535), + [aux_sym_identity_agent_token1] = ACTIONS(1535), + [aux_sym_identity_file_token1] = ACTIONS(1535), + [aux_sym_ignore_unknown_token1] = ACTIONS(1535), + [aux_sym_include_token1] = ACTIONS(1535), + [aux_sym_ip_qos_token1] = ACTIONS(1535), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1535), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1535), + [aux_sym_kex_algorithms_token1] = ACTIONS(1535), + [aux_sym_known_hosts_command_token1] = ACTIONS(1535), + [aux_sym_local_command_token1] = ACTIONS(1535), + [aux_sym_local_forward_token1] = ACTIONS(1535), + [aux_sym_log_level_token1] = ACTIONS(1535), + [aux_sym_log_verbose_token1] = ACTIONS(1535), + [aux_sym_macs_token1] = ACTIONS(1535), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1535), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1535), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1535), + [aux_sym_password_authentication_token1] = ACTIONS(1535), + [aux_sym_permit_local_command_token1] = ACTIONS(1535), + [aux_sym_permit_remote_open_token1] = ACTIONS(1535), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1535), + [aux_sym_port_token1] = ACTIONS(1535), + [aux_sym_preferred_authentications_token1] = ACTIONS(1535), + [aux_sym_protocol_token1] = ACTIONS(1535), + [aux_sym_proxy_command_token1] = ACTIONS(1535), + [aux_sym_proxy_jump_token1] = ACTIONS(1535), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1535), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1535), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1535), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1535), + [aux_sym_rekey_limit_token1] = ACTIONS(1535), + [aux_sym_remote_command_token1] = ACTIONS(1535), + [aux_sym_remote_forward_token1] = ACTIONS(1535), + [aux_sym_request_tty_token1] = ACTIONS(1535), + [aux_sym_required_rsa_size_token1] = ACTIONS(1535), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1535), + [aux_sym_security_key_provider_token1] = ACTIONS(1535), + [aux_sym_send_env_token1] = ACTIONS(1535), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1535), + [aux_sym_server_alive_interval_token1] = ACTIONS(1535), + [aux_sym_session_type_token1] = ACTIONS(1535), + [aux_sym_set_env_token1] = ACTIONS(1535), + [aux_sym_stdin_null_token1] = ACTIONS(1535), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1535), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1535), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1535), + [aux_sym_syslog_facility_token1] = ACTIONS(1535), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1535), + [aux_sym_keep_alive_token1] = ACTIONS(1535), + [aux_sym_tag_token1] = ACTIONS(1535), + [aux_sym_tunnel_token1] = ACTIONS(1537), + [aux_sym_tunnel_device_token1] = ACTIONS(1535), + [aux_sym_update_host_keys_token1] = ACTIONS(1535), + [aux_sym_use_keychain_token1] = ACTIONS(1535), + [aux_sym_use_roaming_token1] = ACTIONS(1535), + [aux_sym_user_token1] = ACTIONS(1537), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1535), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1535), + [aux_sym_visual_host_key_token1] = ACTIONS(1535), + [aux_sym_xauth_location_token1] = ACTIONS(1535), }, [774] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1772), - [aux_sym_match_token1] = ACTIONS(1770), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1770), - [aux_sym_address_family_token1] = ACTIONS(1770), - [aux_sym_batch_mode_token1] = ACTIONS(1770), - [aux_sym_bind_address_token1] = ACTIONS(1770), - [aux_sym_bind_interface_token1] = ACTIONS(1770), - [aux_sym_canonical_domains_token1] = ACTIONS(1770), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1770), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1770), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1770), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1770), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1770), - [aux_sym_certificate_file_token1] = ACTIONS(1770), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1770), - [aux_sym_channel_timeout_token1] = ACTIONS(1770), - [aux_sym_check_host_ip_token1] = ACTIONS(1770), - [aux_sym_ciphers_token1] = ACTIONS(1770), - [aux_sym_cipher_token1] = ACTIONS(1772), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1770), - [aux_sym_compression_token1] = ACTIONS(1770), - [aux_sym_connection_attempts_token1] = ACTIONS(1770), - [aux_sym_connect_timeout_token1] = ACTIONS(1770), - [aux_sym_control_master_token1] = ACTIONS(1770), - [aux_sym_control_path_token1] = ACTIONS(1770), - [aux_sym_control_persist_token1] = ACTIONS(1770), - [aux_sym_dynamic_forward_token1] = ACTIONS(1770), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1770), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1770), - [aux_sym_escape_char_token1] = ACTIONS(1770), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1770), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1770), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1770), - [aux_sym_forward_agent_token1] = ACTIONS(1770), - [aux_sym_forward_x11_token1] = ACTIONS(1772), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1770), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1770), - [aux_sym_gateway_ports_token1] = ACTIONS(1770), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1770), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1770), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1770), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1770), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1770), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1770), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1770), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1770), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1770), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1770), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1770), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1770), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1770), - [aux_sym_host_key_alias_token1] = ACTIONS(1770), - [aux_sym_hostname_token1] = ACTIONS(1770), - [aux_sym_identities_only_token1] = ACTIONS(1770), - [aux_sym_identity_agent_token1] = ACTIONS(1770), - [aux_sym_identity_file_token1] = ACTIONS(1770), - [aux_sym_ignore_unknown_token1] = ACTIONS(1770), - [aux_sym_include_token1] = ACTIONS(1770), - [aux_sym_ip_qos_token1] = ACTIONS(1770), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1770), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1770), - [aux_sym_kex_algorithms_token1] = ACTIONS(1770), - [aux_sym_known_hosts_command_token1] = ACTIONS(1770), - [aux_sym_local_command_token1] = ACTIONS(1770), - [aux_sym_local_forward_token1] = ACTIONS(1770), - [aux_sym_log_level_token1] = ACTIONS(1770), - [aux_sym_log_verbose_token1] = ACTIONS(1770), - [aux_sym_macs_token1] = ACTIONS(1770), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1770), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1770), - [aux_sym_password_authentication_token1] = ACTIONS(1770), - [aux_sym_permit_local_command_token1] = ACTIONS(1770), - [aux_sym_permit_remote_open_token1] = ACTIONS(1770), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1770), - [aux_sym_port_token1] = ACTIONS(1770), - [aux_sym_preferred_authentications_token1] = ACTIONS(1770), - [aux_sym_protocol_token1] = ACTIONS(1770), - [aux_sym_proxy_command_token1] = ACTIONS(1770), - [aux_sym_proxy_jump_token1] = ACTIONS(1770), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1770), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1770), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1770), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1770), - [aux_sym_rekey_limit_token1] = ACTIONS(1770), - [aux_sym_remote_command_token1] = ACTIONS(1770), - [aux_sym_remote_forward_token1] = ACTIONS(1770), - [aux_sym_request_tty_token1] = ACTIONS(1770), - [aux_sym_required_rsa_size_token1] = ACTIONS(1770), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1770), - [aux_sym_security_key_provider_token1] = ACTIONS(1770), - [aux_sym_send_env_token1] = ACTIONS(1770), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1770), - [aux_sym_server_alive_interval_token1] = ACTIONS(1770), - [aux_sym_session_type_token1] = ACTIONS(1770), - [aux_sym_set_env_token1] = ACTIONS(1770), - [aux_sym_stdin_null_token1] = ACTIONS(1770), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1770), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1770), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1770), - [aux_sym_syslog_facility_token1] = ACTIONS(1770), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1770), - [aux_sym_keep_alive_token1] = ACTIONS(1770), - [aux_sym_tag_token1] = ACTIONS(1770), - [aux_sym_tunnel_token1] = ACTIONS(1772), - [aux_sym_tunnel_device_token1] = ACTIONS(1770), - [aux_sym_update_host_keys_token1] = ACTIONS(1770), - [aux_sym_use_keychain_token1] = ACTIONS(1770), - [aux_sym_use_roaming_token1] = ACTIONS(1770), - [aux_sym_user_token1] = ACTIONS(1772), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1770), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1770), - [aux_sym_visual_host_key_token1] = ACTIONS(1770), - [aux_sym_xauth_location_token1] = ACTIONS(1770), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1799), + [aux_sym_match_token1] = ACTIONS(1797), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1797), + [aux_sym_address_family_token1] = ACTIONS(1797), + [aux_sym_batch_mode_token1] = ACTIONS(1797), + [aux_sym_bind_address_token1] = ACTIONS(1797), + [aux_sym_bind_interface_token1] = ACTIONS(1797), + [aux_sym_canonical_domains_token1] = ACTIONS(1797), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1797), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1797), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1797), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1797), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1797), + [aux_sym_certificate_file_token1] = ACTIONS(1797), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1797), + [aux_sym_channel_timeout_token1] = ACTIONS(1797), + [aux_sym_check_host_ip_token1] = ACTIONS(1797), + [aux_sym_ciphers_token1] = ACTIONS(1797), + [aux_sym_cipher_token1] = ACTIONS(1799), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1797), + [aux_sym_compression_token1] = ACTIONS(1797), + [aux_sym_connection_attempts_token1] = ACTIONS(1797), + [aux_sym_connect_timeout_token1] = ACTIONS(1797), + [aux_sym_control_master_token1] = ACTIONS(1797), + [aux_sym_control_path_token1] = ACTIONS(1797), + [aux_sym_control_persist_token1] = ACTIONS(1797), + [aux_sym_dynamic_forward_token1] = ACTIONS(1797), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1797), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1797), + [aux_sym_escape_char_token1] = ACTIONS(1797), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1797), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1797), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1797), + [aux_sym_forward_agent_token1] = ACTIONS(1797), + [aux_sym_forward_x11_token1] = ACTIONS(1799), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1797), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1797), + [aux_sym_gateway_ports_token1] = ACTIONS(1797), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1797), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1797), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1797), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1797), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1797), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1797), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1797), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1797), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1797), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1797), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1797), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1797), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1797), + [aux_sym_host_key_alias_token1] = ACTIONS(1797), + [aux_sym_hostname_token1] = ACTIONS(1797), + [aux_sym_identities_only_token1] = ACTIONS(1797), + [aux_sym_identity_agent_token1] = ACTIONS(1797), + [aux_sym_identity_file_token1] = ACTIONS(1797), + [aux_sym_ignore_unknown_token1] = ACTIONS(1797), + [aux_sym_include_token1] = ACTIONS(1797), + [aux_sym_ip_qos_token1] = ACTIONS(1797), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1797), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1797), + [aux_sym_kex_algorithms_token1] = ACTIONS(1797), + [aux_sym_known_hosts_command_token1] = ACTIONS(1797), + [aux_sym_local_command_token1] = ACTIONS(1797), + [aux_sym_local_forward_token1] = ACTIONS(1797), + [aux_sym_log_level_token1] = ACTIONS(1797), + [aux_sym_log_verbose_token1] = ACTIONS(1797), + [aux_sym_macs_token1] = ACTIONS(1797), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1797), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1797), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1797), + [aux_sym_password_authentication_token1] = ACTIONS(1797), + [aux_sym_permit_local_command_token1] = ACTIONS(1797), + [aux_sym_permit_remote_open_token1] = ACTIONS(1797), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1797), + [aux_sym_port_token1] = ACTIONS(1797), + [aux_sym_preferred_authentications_token1] = ACTIONS(1797), + [aux_sym_protocol_token1] = ACTIONS(1797), + [aux_sym_proxy_command_token1] = ACTIONS(1797), + [aux_sym_proxy_jump_token1] = ACTIONS(1797), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1797), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1797), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1797), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1797), + [aux_sym_rekey_limit_token1] = ACTIONS(1797), + [aux_sym_remote_command_token1] = ACTIONS(1797), + [aux_sym_remote_forward_token1] = ACTIONS(1797), + [aux_sym_request_tty_token1] = ACTIONS(1797), + [aux_sym_required_rsa_size_token1] = ACTIONS(1797), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1797), + [aux_sym_security_key_provider_token1] = ACTIONS(1797), + [aux_sym_send_env_token1] = ACTIONS(1797), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1797), + [aux_sym_server_alive_interval_token1] = ACTIONS(1797), + [aux_sym_session_type_token1] = ACTIONS(1797), + [aux_sym_set_env_token1] = ACTIONS(1797), + [aux_sym_stdin_null_token1] = ACTIONS(1797), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1797), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1797), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1797), + [aux_sym_syslog_facility_token1] = ACTIONS(1797), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1797), + [aux_sym_keep_alive_token1] = ACTIONS(1797), + [aux_sym_tag_token1] = ACTIONS(1797), + [aux_sym_tunnel_token1] = ACTIONS(1799), + [aux_sym_tunnel_device_token1] = ACTIONS(1797), + [aux_sym_update_host_keys_token1] = ACTIONS(1797), + [aux_sym_use_keychain_token1] = ACTIONS(1797), + [aux_sym_use_roaming_token1] = ACTIONS(1797), + [aux_sym_user_token1] = ACTIONS(1799), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1797), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1797), + [aux_sym_visual_host_key_token1] = ACTIONS(1797), + [aux_sym_xauth_location_token1] = ACTIONS(1797), }, [775] = { - [ts_builtin_sym_end] = ACTIONS(888), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(890), - [aux_sym_match_token1] = ACTIONS(888), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(888), - [aux_sym_address_family_token1] = ACTIONS(888), - [aux_sym_batch_mode_token1] = ACTIONS(888), - [aux_sym_bind_address_token1] = ACTIONS(888), - [aux_sym_bind_interface_token1] = ACTIONS(888), - [aux_sym_canonical_domains_token1] = ACTIONS(888), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(888), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(888), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(888), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(888), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(888), - [aux_sym_certificate_file_token1] = ACTIONS(888), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(888), - [aux_sym_channel_timeout_token1] = ACTIONS(888), - [aux_sym_check_host_ip_token1] = ACTIONS(888), - [aux_sym_ciphers_token1] = ACTIONS(888), - [aux_sym_cipher_token1] = ACTIONS(890), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(888), - [aux_sym_compression_token1] = ACTIONS(888), - [aux_sym_connection_attempts_token1] = ACTIONS(888), - [aux_sym_connect_timeout_token1] = ACTIONS(888), - [aux_sym_control_master_token1] = ACTIONS(888), - [aux_sym_control_path_token1] = ACTIONS(888), - [aux_sym_control_persist_token1] = ACTIONS(888), - [aux_sym_dynamic_forward_token1] = ACTIONS(888), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(888), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(888), - [aux_sym_escape_char_token1] = ACTIONS(888), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(888), - [aux_sym_fingerprint_hash_token1] = ACTIONS(888), - [aux_sym_fork_after_authentication_token1] = ACTIONS(888), - [aux_sym_forward_agent_token1] = ACTIONS(888), - [aux_sym_forward_x11_token1] = ACTIONS(890), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(888), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(888), - [aux_sym_gateway_ports_token1] = ACTIONS(888), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(888), - [aux_sym_gssapi_authentication_token1] = ACTIONS(888), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(888), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(888), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(888), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(888), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(888), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(888), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(888), - [aux_sym_hash_known_hosts_token1] = ACTIONS(888), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(888), - [aux_sym_hostbased_authentication_token1] = ACTIONS(888), - [aux_sym_host_key_algorithms_token1] = ACTIONS(888), - [aux_sym_host_key_alias_token1] = ACTIONS(888), - [aux_sym_hostname_token1] = ACTIONS(888), - [aux_sym_identities_only_token1] = ACTIONS(888), - [aux_sym_identity_agent_token1] = ACTIONS(888), - [aux_sym_identity_file_token1] = ACTIONS(888), - [aux_sym_ignore_unknown_token1] = ACTIONS(888), - [aux_sym_include_token1] = ACTIONS(888), - [aux_sym_ip_qos_token1] = ACTIONS(888), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(888), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(888), - [aux_sym_kex_algorithms_token1] = ACTIONS(888), - [aux_sym_known_hosts_command_token1] = ACTIONS(888), - [aux_sym_local_command_token1] = ACTIONS(888), - [aux_sym_local_forward_token1] = ACTIONS(888), - [aux_sym_log_level_token1] = ACTIONS(888), - [aux_sym_log_verbose_token1] = ACTIONS(888), - [aux_sym_macs_token1] = ACTIONS(888), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(888), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(888), - [aux_sym_password_authentication_token1] = ACTIONS(888), - [aux_sym_permit_local_command_token1] = ACTIONS(888), - [aux_sym_permit_remote_open_token1] = ACTIONS(888), - [aux_sym_pkcs11_provider_token1] = ACTIONS(888), - [aux_sym_port_token1] = ACTIONS(888), - [aux_sym_preferred_authentications_token1] = ACTIONS(888), - [aux_sym_protocol_token1] = ACTIONS(888), - [aux_sym_proxy_command_token1] = ACTIONS(888), - [aux_sym_proxy_jump_token1] = ACTIONS(888), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(888), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(888), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(888), - [aux_sym_pubkey_authentication_token1] = ACTIONS(888), - [aux_sym_rekey_limit_token1] = ACTIONS(888), - [aux_sym_remote_command_token1] = ACTIONS(888), - [aux_sym_remote_forward_token1] = ACTIONS(888), - [aux_sym_request_tty_token1] = ACTIONS(888), - [aux_sym_required_rsa_size_token1] = ACTIONS(888), - [aux_sym_revoked_host_keys_token1] = ACTIONS(888), - [aux_sym_security_key_provider_token1] = ACTIONS(888), - [aux_sym_send_env_token1] = ACTIONS(888), - [aux_sym_server_alive_count_max_token1] = ACTIONS(888), - [aux_sym_server_alive_interval_token1] = ACTIONS(888), - [aux_sym_session_type_token1] = ACTIONS(888), - [aux_sym_set_env_token1] = ACTIONS(888), - [aux_sym_stdin_null_token1] = ACTIONS(888), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(888), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(888), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(888), - [aux_sym_syslog_facility_token1] = ACTIONS(888), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(888), - [aux_sym_keep_alive_token1] = ACTIONS(888), - [aux_sym_tag_token1] = ACTIONS(888), - [aux_sym_tunnel_token1] = ACTIONS(890), - [aux_sym_tunnel_device_token1] = ACTIONS(888), - [aux_sym_update_host_keys_token1] = ACTIONS(888), - [aux_sym_use_keychain_token1] = ACTIONS(888), - [aux_sym_use_roaming_token1] = ACTIONS(888), - [aux_sym_user_token1] = ACTIONS(890), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(888), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(888), - [aux_sym_visual_host_key_token1] = ACTIONS(888), - [aux_sym_xauth_location_token1] = ACTIONS(888), + [ts_builtin_sym_end] = ACTIONS(929), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(931), + [aux_sym_match_token1] = ACTIONS(929), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(929), + [aux_sym_address_family_token1] = ACTIONS(929), + [aux_sym_batch_mode_token1] = ACTIONS(929), + [aux_sym_bind_address_token1] = ACTIONS(929), + [aux_sym_bind_interface_token1] = ACTIONS(929), + [aux_sym_canonical_domains_token1] = ACTIONS(929), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(929), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(929), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(929), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(929), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(929), + [aux_sym_certificate_file_token1] = ACTIONS(929), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(929), + [aux_sym_channel_timeout_token1] = ACTIONS(929), + [aux_sym_check_host_ip_token1] = ACTIONS(929), + [aux_sym_ciphers_token1] = ACTIONS(929), + [aux_sym_cipher_token1] = ACTIONS(931), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(929), + [aux_sym_compression_token1] = ACTIONS(929), + [aux_sym_connection_attempts_token1] = ACTIONS(929), + [aux_sym_connect_timeout_token1] = ACTIONS(929), + [aux_sym_control_master_token1] = ACTIONS(929), + [aux_sym_control_path_token1] = ACTIONS(929), + [aux_sym_control_persist_token1] = ACTIONS(929), + [aux_sym_dynamic_forward_token1] = ACTIONS(929), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(929), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(929), + [aux_sym_escape_char_token1] = ACTIONS(929), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(929), + [aux_sym_fingerprint_hash_token1] = ACTIONS(929), + [aux_sym_fork_after_authentication_token1] = ACTIONS(929), + [aux_sym_forward_agent_token1] = ACTIONS(929), + [aux_sym_forward_x11_token1] = ACTIONS(931), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(929), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(929), + [aux_sym_gateway_ports_token1] = ACTIONS(929), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(929), + [aux_sym_gssapi_authentication_token1] = ACTIONS(929), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(929), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(929), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(929), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(929), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(929), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(929), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(929), + [aux_sym_hash_known_hosts_token1] = ACTIONS(929), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(929), + [aux_sym_hostbased_authentication_token1] = ACTIONS(929), + [aux_sym_host_key_algorithms_token1] = ACTIONS(929), + [aux_sym_host_key_alias_token1] = ACTIONS(929), + [aux_sym_hostname_token1] = ACTIONS(929), + [aux_sym_identities_only_token1] = ACTIONS(929), + [aux_sym_identity_agent_token1] = ACTIONS(929), + [aux_sym_identity_file_token1] = ACTIONS(929), + [aux_sym_ignore_unknown_token1] = ACTIONS(929), + [aux_sym_include_token1] = ACTIONS(929), + [aux_sym_ip_qos_token1] = ACTIONS(929), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(929), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(929), + [aux_sym_kex_algorithms_token1] = ACTIONS(929), + [aux_sym_known_hosts_command_token1] = ACTIONS(929), + [aux_sym_local_command_token1] = ACTIONS(929), + [aux_sym_local_forward_token1] = ACTIONS(929), + [aux_sym_log_level_token1] = ACTIONS(929), + [aux_sym_log_verbose_token1] = ACTIONS(929), + [aux_sym_macs_token1] = ACTIONS(929), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(929), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(929), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(929), + [aux_sym_password_authentication_token1] = ACTIONS(929), + [aux_sym_permit_local_command_token1] = ACTIONS(929), + [aux_sym_permit_remote_open_token1] = ACTIONS(929), + [aux_sym_pkcs11_provider_token1] = ACTIONS(929), + [aux_sym_port_token1] = ACTIONS(929), + [aux_sym_preferred_authentications_token1] = ACTIONS(929), + [aux_sym_protocol_token1] = ACTIONS(929), + [aux_sym_proxy_command_token1] = ACTIONS(929), + [aux_sym_proxy_jump_token1] = ACTIONS(929), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(929), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(929), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(929), + [aux_sym_pubkey_authentication_token1] = ACTIONS(929), + [aux_sym_rekey_limit_token1] = ACTIONS(929), + [aux_sym_remote_command_token1] = ACTIONS(929), + [aux_sym_remote_forward_token1] = ACTIONS(929), + [aux_sym_request_tty_token1] = ACTIONS(929), + [aux_sym_required_rsa_size_token1] = ACTIONS(929), + [aux_sym_revoked_host_keys_token1] = ACTIONS(929), + [aux_sym_security_key_provider_token1] = ACTIONS(929), + [aux_sym_send_env_token1] = ACTIONS(929), + [aux_sym_server_alive_count_max_token1] = ACTIONS(929), + [aux_sym_server_alive_interval_token1] = ACTIONS(929), + [aux_sym_session_type_token1] = ACTIONS(929), + [aux_sym_set_env_token1] = ACTIONS(929), + [aux_sym_stdin_null_token1] = ACTIONS(929), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(929), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(929), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(929), + [aux_sym_syslog_facility_token1] = ACTIONS(929), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(929), + [aux_sym_keep_alive_token1] = ACTIONS(929), + [aux_sym_tag_token1] = ACTIONS(929), + [aux_sym_tunnel_token1] = ACTIONS(931), + [aux_sym_tunnel_device_token1] = ACTIONS(929), + [aux_sym_update_host_keys_token1] = ACTIONS(929), + [aux_sym_use_keychain_token1] = ACTIONS(929), + [aux_sym_use_roaming_token1] = ACTIONS(929), + [aux_sym_user_token1] = ACTIONS(931), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(929), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(929), + [aux_sym_visual_host_key_token1] = ACTIONS(929), + [aux_sym_xauth_location_token1] = ACTIONS(929), }, [776] = { - [ts_builtin_sym_end] = ACTIONS(894), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(896), - [aux_sym_match_token1] = ACTIONS(894), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(894), - [aux_sym_address_family_token1] = ACTIONS(894), - [aux_sym_batch_mode_token1] = ACTIONS(894), - [aux_sym_bind_address_token1] = ACTIONS(894), - [aux_sym_bind_interface_token1] = ACTIONS(894), - [aux_sym_canonical_domains_token1] = ACTIONS(894), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(894), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(894), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(894), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(894), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(894), - [aux_sym_certificate_file_token1] = ACTIONS(894), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(894), - [aux_sym_channel_timeout_token1] = ACTIONS(894), - [aux_sym_check_host_ip_token1] = ACTIONS(894), - [aux_sym_ciphers_token1] = ACTIONS(894), - [aux_sym_cipher_token1] = ACTIONS(896), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(894), - [aux_sym_compression_token1] = ACTIONS(894), - [aux_sym_connection_attempts_token1] = ACTIONS(894), - [aux_sym_connect_timeout_token1] = ACTIONS(894), - [aux_sym_control_master_token1] = ACTIONS(894), - [aux_sym_control_path_token1] = ACTIONS(894), - [aux_sym_control_persist_token1] = ACTIONS(894), - [aux_sym_dynamic_forward_token1] = ACTIONS(894), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(894), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(894), - [aux_sym_escape_char_token1] = ACTIONS(894), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(894), - [aux_sym_fingerprint_hash_token1] = ACTIONS(894), - [aux_sym_fork_after_authentication_token1] = ACTIONS(894), - [aux_sym_forward_agent_token1] = ACTIONS(894), - [aux_sym_forward_x11_token1] = ACTIONS(896), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(894), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(894), - [aux_sym_gateway_ports_token1] = ACTIONS(894), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(894), - [aux_sym_gssapi_authentication_token1] = ACTIONS(894), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(894), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(894), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(894), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(894), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(894), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(894), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(894), - [aux_sym_hash_known_hosts_token1] = ACTIONS(894), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(894), - [aux_sym_hostbased_authentication_token1] = ACTIONS(894), - [aux_sym_host_key_algorithms_token1] = ACTIONS(894), - [aux_sym_host_key_alias_token1] = ACTIONS(894), - [aux_sym_hostname_token1] = ACTIONS(894), - [aux_sym_identities_only_token1] = ACTIONS(894), - [aux_sym_identity_agent_token1] = ACTIONS(894), - [aux_sym_identity_file_token1] = ACTIONS(894), - [aux_sym_ignore_unknown_token1] = ACTIONS(894), - [aux_sym_include_token1] = ACTIONS(894), - [aux_sym_ip_qos_token1] = ACTIONS(894), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(894), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(894), - [aux_sym_kex_algorithms_token1] = ACTIONS(894), - [aux_sym_known_hosts_command_token1] = ACTIONS(894), - [aux_sym_local_command_token1] = ACTIONS(894), - [aux_sym_local_forward_token1] = ACTIONS(894), - [aux_sym_log_level_token1] = ACTIONS(894), - [aux_sym_log_verbose_token1] = ACTIONS(894), - [aux_sym_macs_token1] = ACTIONS(894), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(894), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(894), - [aux_sym_password_authentication_token1] = ACTIONS(894), - [aux_sym_permit_local_command_token1] = ACTIONS(894), - [aux_sym_permit_remote_open_token1] = ACTIONS(894), - [aux_sym_pkcs11_provider_token1] = ACTIONS(894), - [aux_sym_port_token1] = ACTIONS(894), - [aux_sym_preferred_authentications_token1] = ACTIONS(894), - [aux_sym_protocol_token1] = ACTIONS(894), - [aux_sym_proxy_command_token1] = ACTIONS(894), - [aux_sym_proxy_jump_token1] = ACTIONS(894), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(894), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(894), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(894), - [aux_sym_pubkey_authentication_token1] = ACTIONS(894), - [aux_sym_rekey_limit_token1] = ACTIONS(894), - [aux_sym_remote_command_token1] = ACTIONS(894), - [aux_sym_remote_forward_token1] = ACTIONS(894), - [aux_sym_request_tty_token1] = ACTIONS(894), - [aux_sym_required_rsa_size_token1] = ACTIONS(894), - [aux_sym_revoked_host_keys_token1] = ACTIONS(894), - [aux_sym_security_key_provider_token1] = ACTIONS(894), - [aux_sym_send_env_token1] = ACTIONS(894), - [aux_sym_server_alive_count_max_token1] = ACTIONS(894), - [aux_sym_server_alive_interval_token1] = ACTIONS(894), - [aux_sym_session_type_token1] = ACTIONS(894), - [aux_sym_set_env_token1] = ACTIONS(894), - [aux_sym_stdin_null_token1] = ACTIONS(894), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(894), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(894), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(894), - [aux_sym_syslog_facility_token1] = ACTIONS(894), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(894), - [aux_sym_keep_alive_token1] = ACTIONS(894), - [aux_sym_tag_token1] = ACTIONS(894), - [aux_sym_tunnel_token1] = ACTIONS(896), - [aux_sym_tunnel_device_token1] = ACTIONS(894), - [aux_sym_update_host_keys_token1] = ACTIONS(894), - [aux_sym_use_keychain_token1] = ACTIONS(894), - [aux_sym_use_roaming_token1] = ACTIONS(894), - [aux_sym_user_token1] = ACTIONS(896), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(894), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(894), - [aux_sym_visual_host_key_token1] = ACTIONS(894), - [aux_sym_xauth_location_token1] = ACTIONS(894), + [ts_builtin_sym_end] = ACTIONS(1493), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1495), + [aux_sym_match_token1] = ACTIONS(1493), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1493), + [aux_sym_address_family_token1] = ACTIONS(1493), + [aux_sym_batch_mode_token1] = ACTIONS(1493), + [aux_sym_bind_address_token1] = ACTIONS(1493), + [aux_sym_bind_interface_token1] = ACTIONS(1493), + [aux_sym_canonical_domains_token1] = ACTIONS(1493), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1493), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1493), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1493), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1493), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1493), + [aux_sym_certificate_file_token1] = ACTIONS(1493), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1493), + [aux_sym_channel_timeout_token1] = ACTIONS(1493), + [aux_sym_check_host_ip_token1] = ACTIONS(1493), + [aux_sym_ciphers_token1] = ACTIONS(1493), + [aux_sym_cipher_token1] = ACTIONS(1495), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1493), + [aux_sym_compression_token1] = ACTIONS(1493), + [aux_sym_connection_attempts_token1] = ACTIONS(1493), + [aux_sym_connect_timeout_token1] = ACTIONS(1493), + [aux_sym_control_master_token1] = ACTIONS(1493), + [aux_sym_control_path_token1] = ACTIONS(1493), + [aux_sym_control_persist_token1] = ACTIONS(1493), + [aux_sym_dynamic_forward_token1] = ACTIONS(1493), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1493), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1493), + [aux_sym_escape_char_token1] = ACTIONS(1493), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1493), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1493), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1493), + [aux_sym_forward_agent_token1] = ACTIONS(1493), + [aux_sym_forward_x11_token1] = ACTIONS(1495), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1493), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1493), + [aux_sym_gateway_ports_token1] = ACTIONS(1493), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1493), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1493), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1493), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1493), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1493), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1493), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1493), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1493), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1493), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1493), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1493), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1493), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1493), + [aux_sym_host_key_alias_token1] = ACTIONS(1493), + [aux_sym_hostname_token1] = ACTIONS(1493), + [aux_sym_identities_only_token1] = ACTIONS(1493), + [aux_sym_identity_agent_token1] = ACTIONS(1493), + [aux_sym_identity_file_token1] = ACTIONS(1493), + [aux_sym_ignore_unknown_token1] = ACTIONS(1493), + [aux_sym_include_token1] = ACTIONS(1493), + [aux_sym_ip_qos_token1] = ACTIONS(1493), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1493), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1493), + [aux_sym_kex_algorithms_token1] = ACTIONS(1493), + [aux_sym_known_hosts_command_token1] = ACTIONS(1493), + [aux_sym_local_command_token1] = ACTIONS(1493), + [aux_sym_local_forward_token1] = ACTIONS(1493), + [aux_sym_log_level_token1] = ACTIONS(1493), + [aux_sym_log_verbose_token1] = ACTIONS(1493), + [aux_sym_macs_token1] = ACTIONS(1493), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1493), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1493), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1493), + [aux_sym_password_authentication_token1] = ACTIONS(1493), + [aux_sym_permit_local_command_token1] = ACTIONS(1493), + [aux_sym_permit_remote_open_token1] = ACTIONS(1493), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1493), + [aux_sym_port_token1] = ACTIONS(1493), + [aux_sym_preferred_authentications_token1] = ACTIONS(1493), + [aux_sym_protocol_token1] = ACTIONS(1493), + [aux_sym_proxy_command_token1] = ACTIONS(1493), + [aux_sym_proxy_jump_token1] = ACTIONS(1493), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1493), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1493), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1493), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1493), + [aux_sym_rekey_limit_token1] = ACTIONS(1493), + [aux_sym_remote_command_token1] = ACTIONS(1493), + [aux_sym_remote_forward_token1] = ACTIONS(1493), + [aux_sym_request_tty_token1] = ACTIONS(1493), + [aux_sym_required_rsa_size_token1] = ACTIONS(1493), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1493), + [aux_sym_security_key_provider_token1] = ACTIONS(1493), + [aux_sym_send_env_token1] = ACTIONS(1493), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1493), + [aux_sym_server_alive_interval_token1] = ACTIONS(1493), + [aux_sym_session_type_token1] = ACTIONS(1493), + [aux_sym_set_env_token1] = ACTIONS(1493), + [aux_sym_stdin_null_token1] = ACTIONS(1493), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1493), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1493), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1493), + [aux_sym_syslog_facility_token1] = ACTIONS(1493), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1493), + [aux_sym_keep_alive_token1] = ACTIONS(1493), + [aux_sym_tag_token1] = ACTIONS(1493), + [aux_sym_tunnel_token1] = ACTIONS(1495), + [aux_sym_tunnel_device_token1] = ACTIONS(1493), + [aux_sym_update_host_keys_token1] = ACTIONS(1493), + [aux_sym_use_keychain_token1] = ACTIONS(1493), + [aux_sym_use_roaming_token1] = ACTIONS(1493), + [aux_sym_user_token1] = ACTIONS(1495), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1493), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1493), + [aux_sym_visual_host_key_token1] = ACTIONS(1493), + [aux_sym_xauth_location_token1] = ACTIONS(1493), }, [777] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1766), - [aux_sym_match_token1] = ACTIONS(1764), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1764), - [aux_sym_address_family_token1] = ACTIONS(1764), - [aux_sym_batch_mode_token1] = ACTIONS(1764), - [aux_sym_bind_address_token1] = ACTIONS(1764), - [aux_sym_bind_interface_token1] = ACTIONS(1764), - [aux_sym_canonical_domains_token1] = ACTIONS(1764), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1764), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1764), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1764), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1764), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1764), - [aux_sym_certificate_file_token1] = ACTIONS(1764), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1764), - [aux_sym_channel_timeout_token1] = ACTIONS(1764), - [aux_sym_check_host_ip_token1] = ACTIONS(1764), - [aux_sym_ciphers_token1] = ACTIONS(1764), - [aux_sym_cipher_token1] = ACTIONS(1766), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1764), - [aux_sym_compression_token1] = ACTIONS(1764), - [aux_sym_connection_attempts_token1] = ACTIONS(1764), - [aux_sym_connect_timeout_token1] = ACTIONS(1764), - [aux_sym_control_master_token1] = ACTIONS(1764), - [aux_sym_control_path_token1] = ACTIONS(1764), - [aux_sym_control_persist_token1] = ACTIONS(1764), - [aux_sym_dynamic_forward_token1] = ACTIONS(1764), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1764), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1764), - [aux_sym_escape_char_token1] = ACTIONS(1764), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1764), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1764), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1764), - [aux_sym_forward_agent_token1] = ACTIONS(1764), - [aux_sym_forward_x11_token1] = ACTIONS(1766), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1764), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1764), - [aux_sym_gateway_ports_token1] = ACTIONS(1764), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1764), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1764), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1764), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1764), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1764), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1764), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1764), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1764), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1764), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1764), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1764), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1764), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1764), - [aux_sym_host_key_alias_token1] = ACTIONS(1764), - [aux_sym_hostname_token1] = ACTIONS(1764), - [aux_sym_identities_only_token1] = ACTIONS(1764), - [aux_sym_identity_agent_token1] = ACTIONS(1764), - [aux_sym_identity_file_token1] = ACTIONS(1764), - [aux_sym_ignore_unknown_token1] = ACTIONS(1764), - [aux_sym_include_token1] = ACTIONS(1764), - [aux_sym_ip_qos_token1] = ACTIONS(1764), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1764), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1764), - [aux_sym_kex_algorithms_token1] = ACTIONS(1764), - [aux_sym_known_hosts_command_token1] = ACTIONS(1764), - [aux_sym_local_command_token1] = ACTIONS(1764), - [aux_sym_local_forward_token1] = ACTIONS(1764), - [aux_sym_log_level_token1] = ACTIONS(1764), - [aux_sym_log_verbose_token1] = ACTIONS(1764), - [aux_sym_macs_token1] = ACTIONS(1764), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1764), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1764), - [aux_sym_password_authentication_token1] = ACTIONS(1764), - [aux_sym_permit_local_command_token1] = ACTIONS(1764), - [aux_sym_permit_remote_open_token1] = ACTIONS(1764), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1764), - [aux_sym_port_token1] = ACTIONS(1764), - [aux_sym_preferred_authentications_token1] = ACTIONS(1764), - [aux_sym_protocol_token1] = ACTIONS(1764), - [aux_sym_proxy_command_token1] = ACTIONS(1764), - [aux_sym_proxy_jump_token1] = ACTIONS(1764), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1764), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1764), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1764), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1764), - [aux_sym_rekey_limit_token1] = ACTIONS(1764), - [aux_sym_remote_command_token1] = ACTIONS(1764), - [aux_sym_remote_forward_token1] = ACTIONS(1764), - [aux_sym_request_tty_token1] = ACTIONS(1764), - [aux_sym_required_rsa_size_token1] = ACTIONS(1764), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1764), - [aux_sym_security_key_provider_token1] = ACTIONS(1764), - [aux_sym_send_env_token1] = ACTIONS(1764), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1764), - [aux_sym_server_alive_interval_token1] = ACTIONS(1764), - [aux_sym_session_type_token1] = ACTIONS(1764), - [aux_sym_set_env_token1] = ACTIONS(1764), - [aux_sym_stdin_null_token1] = ACTIONS(1764), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1764), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1764), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1764), - [aux_sym_syslog_facility_token1] = ACTIONS(1764), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1764), - [aux_sym_keep_alive_token1] = ACTIONS(1764), - [aux_sym_tag_token1] = ACTIONS(1764), - [aux_sym_tunnel_token1] = ACTIONS(1766), - [aux_sym_tunnel_device_token1] = ACTIONS(1764), - [aux_sym_update_host_keys_token1] = ACTIONS(1764), - [aux_sym_use_keychain_token1] = ACTIONS(1764), - [aux_sym_use_roaming_token1] = ACTIONS(1764), - [aux_sym_user_token1] = ACTIONS(1766), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1764), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1764), - [aux_sym_visual_host_key_token1] = ACTIONS(1764), - [aux_sym_xauth_location_token1] = ACTIONS(1764), + [ts_builtin_sym_end] = ACTIONS(1791), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1793), + [aux_sym_match_token1] = ACTIONS(1791), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1791), + [aux_sym_address_family_token1] = ACTIONS(1791), + [aux_sym_batch_mode_token1] = ACTIONS(1791), + [aux_sym_bind_address_token1] = ACTIONS(1791), + [aux_sym_bind_interface_token1] = ACTIONS(1791), + [aux_sym_canonical_domains_token1] = ACTIONS(1791), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1791), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1791), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1791), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1791), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1791), + [aux_sym_certificate_file_token1] = ACTIONS(1791), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1791), + [aux_sym_channel_timeout_token1] = ACTIONS(1791), + [aux_sym_check_host_ip_token1] = ACTIONS(1791), + [aux_sym_ciphers_token1] = ACTIONS(1791), + [aux_sym_cipher_token1] = ACTIONS(1793), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1791), + [aux_sym_compression_token1] = ACTIONS(1791), + [aux_sym_connection_attempts_token1] = ACTIONS(1791), + [aux_sym_connect_timeout_token1] = ACTIONS(1791), + [aux_sym_control_master_token1] = ACTIONS(1791), + [aux_sym_control_path_token1] = ACTIONS(1791), + [aux_sym_control_persist_token1] = ACTIONS(1791), + [aux_sym_dynamic_forward_token1] = ACTIONS(1791), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1791), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1791), + [aux_sym_escape_char_token1] = ACTIONS(1791), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1791), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1791), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1791), + [aux_sym_forward_agent_token1] = ACTIONS(1791), + [aux_sym_forward_x11_token1] = ACTIONS(1793), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1791), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1791), + [aux_sym_gateway_ports_token1] = ACTIONS(1791), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1791), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1791), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1791), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1791), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1791), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1791), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1791), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1791), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1791), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1791), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1791), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1791), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1791), + [aux_sym_host_key_alias_token1] = ACTIONS(1791), + [aux_sym_hostname_token1] = ACTIONS(1791), + [aux_sym_identities_only_token1] = ACTIONS(1791), + [aux_sym_identity_agent_token1] = ACTIONS(1791), + [aux_sym_identity_file_token1] = ACTIONS(1791), + [aux_sym_ignore_unknown_token1] = ACTIONS(1791), + [aux_sym_include_token1] = ACTIONS(1791), + [aux_sym_ip_qos_token1] = ACTIONS(1791), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1791), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1791), + [aux_sym_kex_algorithms_token1] = ACTIONS(1791), + [aux_sym_known_hosts_command_token1] = ACTIONS(1791), + [aux_sym_local_command_token1] = ACTIONS(1791), + [aux_sym_local_forward_token1] = ACTIONS(1791), + [aux_sym_log_level_token1] = ACTIONS(1791), + [aux_sym_log_verbose_token1] = ACTIONS(1791), + [aux_sym_macs_token1] = ACTIONS(1791), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1791), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1791), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1791), + [aux_sym_password_authentication_token1] = ACTIONS(1791), + [aux_sym_permit_local_command_token1] = ACTIONS(1791), + [aux_sym_permit_remote_open_token1] = ACTIONS(1791), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1791), + [aux_sym_port_token1] = ACTIONS(1791), + [aux_sym_preferred_authentications_token1] = ACTIONS(1791), + [aux_sym_protocol_token1] = ACTIONS(1791), + [aux_sym_proxy_command_token1] = ACTIONS(1791), + [aux_sym_proxy_jump_token1] = ACTIONS(1791), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1791), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1791), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1791), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1791), + [aux_sym_rekey_limit_token1] = ACTIONS(1791), + [aux_sym_remote_command_token1] = ACTIONS(1791), + [aux_sym_remote_forward_token1] = ACTIONS(1791), + [aux_sym_request_tty_token1] = ACTIONS(1791), + [aux_sym_required_rsa_size_token1] = ACTIONS(1791), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1791), + [aux_sym_security_key_provider_token1] = ACTIONS(1791), + [aux_sym_send_env_token1] = ACTIONS(1791), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1791), + [aux_sym_server_alive_interval_token1] = ACTIONS(1791), + [aux_sym_session_type_token1] = ACTIONS(1791), + [aux_sym_set_env_token1] = ACTIONS(1791), + [aux_sym_stdin_null_token1] = ACTIONS(1791), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1791), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1791), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1791), + [aux_sym_syslog_facility_token1] = ACTIONS(1791), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1791), + [aux_sym_keep_alive_token1] = ACTIONS(1791), + [aux_sym_tag_token1] = ACTIONS(1791), + [aux_sym_tunnel_token1] = ACTIONS(1793), + [aux_sym_tunnel_device_token1] = ACTIONS(1791), + [aux_sym_update_host_keys_token1] = ACTIONS(1791), + [aux_sym_use_keychain_token1] = ACTIONS(1791), + [aux_sym_use_roaming_token1] = ACTIONS(1791), + [aux_sym_user_token1] = ACTIONS(1793), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1791), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1791), + [aux_sym_visual_host_key_token1] = ACTIONS(1791), + [aux_sym_xauth_location_token1] = ACTIONS(1791), }, [778] = { - [ts_builtin_sym_end] = ACTIONS(960), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(962), - [aux_sym_match_token1] = ACTIONS(960), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(960), - [aux_sym_address_family_token1] = ACTIONS(960), - [aux_sym_batch_mode_token1] = ACTIONS(960), - [aux_sym_bind_address_token1] = ACTIONS(960), - [aux_sym_bind_interface_token1] = ACTIONS(960), - [aux_sym_canonical_domains_token1] = ACTIONS(960), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(960), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(960), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(960), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(960), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(960), - [aux_sym_certificate_file_token1] = ACTIONS(960), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(960), - [aux_sym_channel_timeout_token1] = ACTIONS(960), - [aux_sym_check_host_ip_token1] = ACTIONS(960), - [aux_sym_ciphers_token1] = ACTIONS(960), - [aux_sym_cipher_token1] = ACTIONS(962), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(960), - [aux_sym_compression_token1] = ACTIONS(960), - [aux_sym_connection_attempts_token1] = ACTIONS(960), - [aux_sym_connect_timeout_token1] = ACTIONS(960), - [aux_sym_control_master_token1] = ACTIONS(960), - [aux_sym_control_path_token1] = ACTIONS(960), - [aux_sym_control_persist_token1] = ACTIONS(960), - [aux_sym_dynamic_forward_token1] = ACTIONS(960), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(960), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(960), - [aux_sym_escape_char_token1] = ACTIONS(960), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(960), - [aux_sym_fingerprint_hash_token1] = ACTIONS(960), - [aux_sym_fork_after_authentication_token1] = ACTIONS(960), - [aux_sym_forward_agent_token1] = ACTIONS(960), - [aux_sym_forward_x11_token1] = ACTIONS(962), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(960), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(960), - [aux_sym_gateway_ports_token1] = ACTIONS(960), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(960), - [aux_sym_gssapi_authentication_token1] = ACTIONS(960), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(960), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(960), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(960), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(960), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(960), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(960), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(960), - [aux_sym_hash_known_hosts_token1] = ACTIONS(960), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(960), - [aux_sym_hostbased_authentication_token1] = ACTIONS(960), - [aux_sym_host_key_algorithms_token1] = ACTIONS(960), - [aux_sym_host_key_alias_token1] = ACTIONS(960), - [aux_sym_hostname_token1] = ACTIONS(960), - [aux_sym_identities_only_token1] = ACTIONS(960), - [aux_sym_identity_agent_token1] = ACTIONS(960), - [aux_sym_identity_file_token1] = ACTIONS(960), - [aux_sym_ignore_unknown_token1] = ACTIONS(960), - [aux_sym_include_token1] = ACTIONS(960), - [aux_sym_ip_qos_token1] = ACTIONS(960), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(960), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(960), - [aux_sym_kex_algorithms_token1] = ACTIONS(960), - [aux_sym_known_hosts_command_token1] = ACTIONS(960), - [aux_sym_local_command_token1] = ACTIONS(960), - [aux_sym_local_forward_token1] = ACTIONS(960), - [aux_sym_log_level_token1] = ACTIONS(960), - [aux_sym_log_verbose_token1] = ACTIONS(960), - [aux_sym_macs_token1] = ACTIONS(960), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(960), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(960), - [aux_sym_password_authentication_token1] = ACTIONS(960), - [aux_sym_permit_local_command_token1] = ACTIONS(960), - [aux_sym_permit_remote_open_token1] = ACTIONS(960), - [aux_sym_pkcs11_provider_token1] = ACTIONS(960), - [aux_sym_port_token1] = ACTIONS(960), - [aux_sym_preferred_authentications_token1] = ACTIONS(960), - [aux_sym_protocol_token1] = ACTIONS(960), - [aux_sym_proxy_command_token1] = ACTIONS(960), - [aux_sym_proxy_jump_token1] = ACTIONS(960), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(960), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(960), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(960), - [aux_sym_pubkey_authentication_token1] = ACTIONS(960), - [aux_sym_rekey_limit_token1] = ACTIONS(960), - [aux_sym_remote_command_token1] = ACTIONS(960), - [aux_sym_remote_forward_token1] = ACTIONS(960), - [aux_sym_request_tty_token1] = ACTIONS(960), - [aux_sym_required_rsa_size_token1] = ACTIONS(960), - [aux_sym_revoked_host_keys_token1] = ACTIONS(960), - [aux_sym_security_key_provider_token1] = ACTIONS(960), - [aux_sym_send_env_token1] = ACTIONS(960), - [aux_sym_server_alive_count_max_token1] = ACTIONS(960), - [aux_sym_server_alive_interval_token1] = ACTIONS(960), - [aux_sym_session_type_token1] = ACTIONS(960), - [aux_sym_set_env_token1] = ACTIONS(960), - [aux_sym_stdin_null_token1] = ACTIONS(960), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(960), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(960), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(960), - [aux_sym_syslog_facility_token1] = ACTIONS(960), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(960), - [aux_sym_keep_alive_token1] = ACTIONS(960), - [aux_sym_tag_token1] = ACTIONS(960), - [aux_sym_tunnel_token1] = ACTIONS(962), - [aux_sym_tunnel_device_token1] = ACTIONS(960), - [aux_sym_update_host_keys_token1] = ACTIONS(960), - [aux_sym_use_keychain_token1] = ACTIONS(960), - [aux_sym_use_roaming_token1] = ACTIONS(960), - [aux_sym_user_token1] = ACTIONS(962), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(960), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(960), - [aux_sym_visual_host_key_token1] = ACTIONS(960), - [aux_sym_xauth_location_token1] = ACTIONS(960), + [ts_builtin_sym_end] = ACTIONS(923), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(925), + [aux_sym_match_token1] = ACTIONS(923), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(923), + [aux_sym_address_family_token1] = ACTIONS(923), + [aux_sym_batch_mode_token1] = ACTIONS(923), + [aux_sym_bind_address_token1] = ACTIONS(923), + [aux_sym_bind_interface_token1] = ACTIONS(923), + [aux_sym_canonical_domains_token1] = ACTIONS(923), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(923), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(923), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(923), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(923), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(923), + [aux_sym_certificate_file_token1] = ACTIONS(923), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(923), + [aux_sym_channel_timeout_token1] = ACTIONS(923), + [aux_sym_check_host_ip_token1] = ACTIONS(923), + [aux_sym_ciphers_token1] = ACTIONS(923), + [aux_sym_cipher_token1] = ACTIONS(925), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(923), + [aux_sym_compression_token1] = ACTIONS(923), + [aux_sym_connection_attempts_token1] = ACTIONS(923), + [aux_sym_connect_timeout_token1] = ACTIONS(923), + [aux_sym_control_master_token1] = ACTIONS(923), + [aux_sym_control_path_token1] = ACTIONS(923), + [aux_sym_control_persist_token1] = ACTIONS(923), + [aux_sym_dynamic_forward_token1] = ACTIONS(923), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(923), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(923), + [aux_sym_escape_char_token1] = ACTIONS(923), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(923), + [aux_sym_fingerprint_hash_token1] = ACTIONS(923), + [aux_sym_fork_after_authentication_token1] = ACTIONS(923), + [aux_sym_forward_agent_token1] = ACTIONS(923), + [aux_sym_forward_x11_token1] = ACTIONS(925), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(923), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(923), + [aux_sym_gateway_ports_token1] = ACTIONS(923), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(923), + [aux_sym_gssapi_authentication_token1] = ACTIONS(923), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(923), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(923), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(923), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(923), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(923), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(923), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(923), + [aux_sym_hash_known_hosts_token1] = ACTIONS(923), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(923), + [aux_sym_hostbased_authentication_token1] = ACTIONS(923), + [aux_sym_host_key_algorithms_token1] = ACTIONS(923), + [aux_sym_host_key_alias_token1] = ACTIONS(923), + [aux_sym_hostname_token1] = ACTIONS(923), + [aux_sym_identities_only_token1] = ACTIONS(923), + [aux_sym_identity_agent_token1] = ACTIONS(923), + [aux_sym_identity_file_token1] = ACTIONS(923), + [aux_sym_ignore_unknown_token1] = ACTIONS(923), + [aux_sym_include_token1] = ACTIONS(923), + [aux_sym_ip_qos_token1] = ACTIONS(923), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(923), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(923), + [aux_sym_kex_algorithms_token1] = ACTIONS(923), + [aux_sym_known_hosts_command_token1] = ACTIONS(923), + [aux_sym_local_command_token1] = ACTIONS(923), + [aux_sym_local_forward_token1] = ACTIONS(923), + [aux_sym_log_level_token1] = ACTIONS(923), + [aux_sym_log_verbose_token1] = ACTIONS(923), + [aux_sym_macs_token1] = ACTIONS(923), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(923), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(923), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(923), + [aux_sym_password_authentication_token1] = ACTIONS(923), + [aux_sym_permit_local_command_token1] = ACTIONS(923), + [aux_sym_permit_remote_open_token1] = ACTIONS(923), + [aux_sym_pkcs11_provider_token1] = ACTIONS(923), + [aux_sym_port_token1] = ACTIONS(923), + [aux_sym_preferred_authentications_token1] = ACTIONS(923), + [aux_sym_protocol_token1] = ACTIONS(923), + [aux_sym_proxy_command_token1] = ACTIONS(923), + [aux_sym_proxy_jump_token1] = ACTIONS(923), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(923), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(923), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(923), + [aux_sym_pubkey_authentication_token1] = ACTIONS(923), + [aux_sym_rekey_limit_token1] = ACTIONS(923), + [aux_sym_remote_command_token1] = ACTIONS(923), + [aux_sym_remote_forward_token1] = ACTIONS(923), + [aux_sym_request_tty_token1] = ACTIONS(923), + [aux_sym_required_rsa_size_token1] = ACTIONS(923), + [aux_sym_revoked_host_keys_token1] = ACTIONS(923), + [aux_sym_security_key_provider_token1] = ACTIONS(923), + [aux_sym_send_env_token1] = ACTIONS(923), + [aux_sym_server_alive_count_max_token1] = ACTIONS(923), + [aux_sym_server_alive_interval_token1] = ACTIONS(923), + [aux_sym_session_type_token1] = ACTIONS(923), + [aux_sym_set_env_token1] = ACTIONS(923), + [aux_sym_stdin_null_token1] = ACTIONS(923), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(923), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(923), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(923), + [aux_sym_syslog_facility_token1] = ACTIONS(923), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(923), + [aux_sym_keep_alive_token1] = ACTIONS(923), + [aux_sym_tag_token1] = ACTIONS(923), + [aux_sym_tunnel_token1] = ACTIONS(925), + [aux_sym_tunnel_device_token1] = ACTIONS(923), + [aux_sym_update_host_keys_token1] = ACTIONS(923), + [aux_sym_use_keychain_token1] = ACTIONS(923), + [aux_sym_use_roaming_token1] = ACTIONS(923), + [aux_sym_user_token1] = ACTIONS(925), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(923), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(923), + [aux_sym_visual_host_key_token1] = ACTIONS(923), + [aux_sym_xauth_location_token1] = ACTIONS(923), }, [779] = { - [ts_builtin_sym_end] = ACTIONS(900), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(902), - [aux_sym_match_token1] = ACTIONS(900), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(900), - [aux_sym_address_family_token1] = ACTIONS(900), - [aux_sym_batch_mode_token1] = ACTIONS(900), - [aux_sym_bind_address_token1] = ACTIONS(900), - [aux_sym_bind_interface_token1] = ACTIONS(900), - [aux_sym_canonical_domains_token1] = ACTIONS(900), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(900), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(900), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(900), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(900), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(900), - [aux_sym_certificate_file_token1] = ACTIONS(900), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(900), - [aux_sym_channel_timeout_token1] = ACTIONS(900), - [aux_sym_check_host_ip_token1] = ACTIONS(900), - [aux_sym_ciphers_token1] = ACTIONS(900), - [aux_sym_cipher_token1] = ACTIONS(902), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(900), - [aux_sym_compression_token1] = ACTIONS(900), - [aux_sym_connection_attempts_token1] = ACTIONS(900), - [aux_sym_connect_timeout_token1] = ACTIONS(900), - [aux_sym_control_master_token1] = ACTIONS(900), - [aux_sym_control_path_token1] = ACTIONS(900), - [aux_sym_control_persist_token1] = ACTIONS(900), - [aux_sym_dynamic_forward_token1] = ACTIONS(900), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(900), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(900), - [aux_sym_escape_char_token1] = ACTIONS(900), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(900), - [aux_sym_fingerprint_hash_token1] = ACTIONS(900), - [aux_sym_fork_after_authentication_token1] = ACTIONS(900), - [aux_sym_forward_agent_token1] = ACTIONS(900), - [aux_sym_forward_x11_token1] = ACTIONS(902), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(900), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(900), - [aux_sym_gateway_ports_token1] = ACTIONS(900), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(900), - [aux_sym_gssapi_authentication_token1] = ACTIONS(900), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(900), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(900), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(900), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(900), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(900), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(900), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(900), - [aux_sym_hash_known_hosts_token1] = ACTIONS(900), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(900), - [aux_sym_hostbased_authentication_token1] = ACTIONS(900), - [aux_sym_host_key_algorithms_token1] = ACTIONS(900), - [aux_sym_host_key_alias_token1] = ACTIONS(900), - [aux_sym_hostname_token1] = ACTIONS(900), - [aux_sym_identities_only_token1] = ACTIONS(900), - [aux_sym_identity_agent_token1] = ACTIONS(900), - [aux_sym_identity_file_token1] = ACTIONS(900), - [aux_sym_ignore_unknown_token1] = ACTIONS(900), - [aux_sym_include_token1] = ACTIONS(900), - [aux_sym_ip_qos_token1] = ACTIONS(900), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(900), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(900), - [aux_sym_kex_algorithms_token1] = ACTIONS(900), - [aux_sym_known_hosts_command_token1] = ACTIONS(900), - [aux_sym_local_command_token1] = ACTIONS(900), - [aux_sym_local_forward_token1] = ACTIONS(900), - [aux_sym_log_level_token1] = ACTIONS(900), - [aux_sym_log_verbose_token1] = ACTIONS(900), - [aux_sym_macs_token1] = ACTIONS(900), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(900), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(900), - [aux_sym_password_authentication_token1] = ACTIONS(900), - [aux_sym_permit_local_command_token1] = ACTIONS(900), - [aux_sym_permit_remote_open_token1] = ACTIONS(900), - [aux_sym_pkcs11_provider_token1] = ACTIONS(900), - [aux_sym_port_token1] = ACTIONS(900), - [aux_sym_preferred_authentications_token1] = ACTIONS(900), - [aux_sym_protocol_token1] = ACTIONS(900), - [aux_sym_proxy_command_token1] = ACTIONS(900), - [aux_sym_proxy_jump_token1] = ACTIONS(900), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(900), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(900), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(900), - [aux_sym_pubkey_authentication_token1] = ACTIONS(900), - [aux_sym_rekey_limit_token1] = ACTIONS(900), - [aux_sym_remote_command_token1] = ACTIONS(900), - [aux_sym_remote_forward_token1] = ACTIONS(900), - [aux_sym_request_tty_token1] = ACTIONS(900), - [aux_sym_required_rsa_size_token1] = ACTIONS(900), - [aux_sym_revoked_host_keys_token1] = ACTIONS(900), - [aux_sym_security_key_provider_token1] = ACTIONS(900), - [aux_sym_send_env_token1] = ACTIONS(900), - [aux_sym_server_alive_count_max_token1] = ACTIONS(900), - [aux_sym_server_alive_interval_token1] = ACTIONS(900), - [aux_sym_session_type_token1] = ACTIONS(900), - [aux_sym_set_env_token1] = ACTIONS(900), - [aux_sym_stdin_null_token1] = ACTIONS(900), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(900), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(900), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(900), - [aux_sym_syslog_facility_token1] = ACTIONS(900), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(900), - [aux_sym_keep_alive_token1] = ACTIONS(900), - [aux_sym_tag_token1] = ACTIONS(900), - [aux_sym_tunnel_token1] = ACTIONS(902), - [aux_sym_tunnel_device_token1] = ACTIONS(900), - [aux_sym_update_host_keys_token1] = ACTIONS(900), - [aux_sym_use_keychain_token1] = ACTIONS(900), - [aux_sym_use_roaming_token1] = ACTIONS(900), - [aux_sym_user_token1] = ACTIONS(902), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(900), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(900), - [aux_sym_visual_host_key_token1] = ACTIONS(900), - [aux_sym_xauth_location_token1] = ACTIONS(900), + [ts_builtin_sym_end] = ACTIONS(1529), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1531), + [aux_sym_match_token1] = ACTIONS(1529), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1529), + [aux_sym_address_family_token1] = ACTIONS(1529), + [aux_sym_batch_mode_token1] = ACTIONS(1529), + [aux_sym_bind_address_token1] = ACTIONS(1529), + [aux_sym_bind_interface_token1] = ACTIONS(1529), + [aux_sym_canonical_domains_token1] = ACTIONS(1529), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1529), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1529), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1529), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1529), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1529), + [aux_sym_certificate_file_token1] = ACTIONS(1529), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1529), + [aux_sym_channel_timeout_token1] = ACTIONS(1529), + [aux_sym_check_host_ip_token1] = ACTIONS(1529), + [aux_sym_ciphers_token1] = ACTIONS(1529), + [aux_sym_cipher_token1] = ACTIONS(1531), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1529), + [aux_sym_compression_token1] = ACTIONS(1529), + [aux_sym_connection_attempts_token1] = ACTIONS(1529), + [aux_sym_connect_timeout_token1] = ACTIONS(1529), + [aux_sym_control_master_token1] = ACTIONS(1529), + [aux_sym_control_path_token1] = ACTIONS(1529), + [aux_sym_control_persist_token1] = ACTIONS(1529), + [aux_sym_dynamic_forward_token1] = ACTIONS(1529), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1529), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1529), + [aux_sym_escape_char_token1] = ACTIONS(1529), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1529), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1529), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1529), + [aux_sym_forward_agent_token1] = ACTIONS(1529), + [aux_sym_forward_x11_token1] = ACTIONS(1531), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1529), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1529), + [aux_sym_gateway_ports_token1] = ACTIONS(1529), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1529), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1529), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1529), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1529), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1529), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1529), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1529), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1529), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1529), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1529), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1529), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1529), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1529), + [aux_sym_host_key_alias_token1] = ACTIONS(1529), + [aux_sym_hostname_token1] = ACTIONS(1529), + [aux_sym_identities_only_token1] = ACTIONS(1529), + [aux_sym_identity_agent_token1] = ACTIONS(1529), + [aux_sym_identity_file_token1] = ACTIONS(1529), + [aux_sym_ignore_unknown_token1] = ACTIONS(1529), + [aux_sym_include_token1] = ACTIONS(1529), + [aux_sym_ip_qos_token1] = ACTIONS(1529), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1529), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1529), + [aux_sym_kex_algorithms_token1] = ACTIONS(1529), + [aux_sym_known_hosts_command_token1] = ACTIONS(1529), + [aux_sym_local_command_token1] = ACTIONS(1529), + [aux_sym_local_forward_token1] = ACTIONS(1529), + [aux_sym_log_level_token1] = ACTIONS(1529), + [aux_sym_log_verbose_token1] = ACTIONS(1529), + [aux_sym_macs_token1] = ACTIONS(1529), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1529), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1529), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1529), + [aux_sym_password_authentication_token1] = ACTIONS(1529), + [aux_sym_permit_local_command_token1] = ACTIONS(1529), + [aux_sym_permit_remote_open_token1] = ACTIONS(1529), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1529), + [aux_sym_port_token1] = ACTIONS(1529), + [aux_sym_preferred_authentications_token1] = ACTIONS(1529), + [aux_sym_protocol_token1] = ACTIONS(1529), + [aux_sym_proxy_command_token1] = ACTIONS(1529), + [aux_sym_proxy_jump_token1] = ACTIONS(1529), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1529), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1529), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1529), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1529), + [aux_sym_rekey_limit_token1] = ACTIONS(1529), + [aux_sym_remote_command_token1] = ACTIONS(1529), + [aux_sym_remote_forward_token1] = ACTIONS(1529), + [aux_sym_request_tty_token1] = ACTIONS(1529), + [aux_sym_required_rsa_size_token1] = ACTIONS(1529), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1529), + [aux_sym_security_key_provider_token1] = ACTIONS(1529), + [aux_sym_send_env_token1] = ACTIONS(1529), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1529), + [aux_sym_server_alive_interval_token1] = ACTIONS(1529), + [aux_sym_session_type_token1] = ACTIONS(1529), + [aux_sym_set_env_token1] = ACTIONS(1529), + [aux_sym_stdin_null_token1] = ACTIONS(1529), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1529), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1529), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1529), + [aux_sym_syslog_facility_token1] = ACTIONS(1529), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1529), + [aux_sym_keep_alive_token1] = ACTIONS(1529), + [aux_sym_tag_token1] = ACTIONS(1529), + [aux_sym_tunnel_token1] = ACTIONS(1531), + [aux_sym_tunnel_device_token1] = ACTIONS(1529), + [aux_sym_update_host_keys_token1] = ACTIONS(1529), + [aux_sym_use_keychain_token1] = ACTIONS(1529), + [aux_sym_use_roaming_token1] = ACTIONS(1529), + [aux_sym_user_token1] = ACTIONS(1531), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1529), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1529), + [aux_sym_visual_host_key_token1] = ACTIONS(1529), + [aux_sym_xauth_location_token1] = ACTIONS(1529), }, [780] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1760), - [aux_sym_match_token1] = ACTIONS(1758), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1758), - [aux_sym_address_family_token1] = ACTIONS(1758), - [aux_sym_batch_mode_token1] = ACTIONS(1758), - [aux_sym_bind_address_token1] = ACTIONS(1758), - [aux_sym_bind_interface_token1] = ACTIONS(1758), - [aux_sym_canonical_domains_token1] = ACTIONS(1758), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1758), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1758), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1758), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1758), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1758), - [aux_sym_certificate_file_token1] = ACTIONS(1758), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1758), - [aux_sym_channel_timeout_token1] = ACTIONS(1758), - [aux_sym_check_host_ip_token1] = ACTIONS(1758), - [aux_sym_ciphers_token1] = ACTIONS(1758), - [aux_sym_cipher_token1] = ACTIONS(1760), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1758), - [aux_sym_compression_token1] = ACTIONS(1758), - [aux_sym_connection_attempts_token1] = ACTIONS(1758), - [aux_sym_connect_timeout_token1] = ACTIONS(1758), - [aux_sym_control_master_token1] = ACTIONS(1758), - [aux_sym_control_path_token1] = ACTIONS(1758), - [aux_sym_control_persist_token1] = ACTIONS(1758), - [aux_sym_dynamic_forward_token1] = ACTIONS(1758), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1758), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1758), - [aux_sym_escape_char_token1] = ACTIONS(1758), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1758), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1758), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1758), - [aux_sym_forward_agent_token1] = ACTIONS(1758), - [aux_sym_forward_x11_token1] = ACTIONS(1760), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1758), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1758), - [aux_sym_gateway_ports_token1] = ACTIONS(1758), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1758), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1758), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1758), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1758), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1758), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1758), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1758), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1758), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1758), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1758), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1758), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1758), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1758), - [aux_sym_host_key_alias_token1] = ACTIONS(1758), - [aux_sym_hostname_token1] = ACTIONS(1758), - [aux_sym_identities_only_token1] = ACTIONS(1758), - [aux_sym_identity_agent_token1] = ACTIONS(1758), - [aux_sym_identity_file_token1] = ACTIONS(1758), - [aux_sym_ignore_unknown_token1] = ACTIONS(1758), - [aux_sym_include_token1] = ACTIONS(1758), - [aux_sym_ip_qos_token1] = ACTIONS(1758), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1758), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1758), - [aux_sym_kex_algorithms_token1] = ACTIONS(1758), - [aux_sym_known_hosts_command_token1] = ACTIONS(1758), - [aux_sym_local_command_token1] = ACTIONS(1758), - [aux_sym_local_forward_token1] = ACTIONS(1758), - [aux_sym_log_level_token1] = ACTIONS(1758), - [aux_sym_log_verbose_token1] = ACTIONS(1758), - [aux_sym_macs_token1] = ACTIONS(1758), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1758), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1758), - [aux_sym_password_authentication_token1] = ACTIONS(1758), - [aux_sym_permit_local_command_token1] = ACTIONS(1758), - [aux_sym_permit_remote_open_token1] = ACTIONS(1758), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1758), - [aux_sym_port_token1] = ACTIONS(1758), - [aux_sym_preferred_authentications_token1] = ACTIONS(1758), - [aux_sym_protocol_token1] = ACTIONS(1758), - [aux_sym_proxy_command_token1] = ACTIONS(1758), - [aux_sym_proxy_jump_token1] = ACTIONS(1758), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1758), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1758), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1758), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1758), - [aux_sym_rekey_limit_token1] = ACTIONS(1758), - [aux_sym_remote_command_token1] = ACTIONS(1758), - [aux_sym_remote_forward_token1] = ACTIONS(1758), - [aux_sym_request_tty_token1] = ACTIONS(1758), - [aux_sym_required_rsa_size_token1] = ACTIONS(1758), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1758), - [aux_sym_security_key_provider_token1] = ACTIONS(1758), - [aux_sym_send_env_token1] = ACTIONS(1758), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1758), - [aux_sym_server_alive_interval_token1] = ACTIONS(1758), - [aux_sym_session_type_token1] = ACTIONS(1758), - [aux_sym_set_env_token1] = ACTIONS(1758), - [aux_sym_stdin_null_token1] = ACTIONS(1758), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1758), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1758), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1758), - [aux_sym_syslog_facility_token1] = ACTIONS(1758), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1758), - [aux_sym_keep_alive_token1] = ACTIONS(1758), - [aux_sym_tag_token1] = ACTIONS(1758), - [aux_sym_tunnel_token1] = ACTIONS(1760), - [aux_sym_tunnel_device_token1] = ACTIONS(1758), - [aux_sym_update_host_keys_token1] = ACTIONS(1758), - [aux_sym_use_keychain_token1] = ACTIONS(1758), - [aux_sym_use_roaming_token1] = ACTIONS(1758), - [aux_sym_user_token1] = ACTIONS(1760), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1758), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1758), - [aux_sym_visual_host_key_token1] = ACTIONS(1758), - [aux_sym_xauth_location_token1] = ACTIONS(1758), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1787), + [aux_sym_match_token1] = ACTIONS(1785), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1785), + [aux_sym_address_family_token1] = ACTIONS(1785), + [aux_sym_batch_mode_token1] = ACTIONS(1785), + [aux_sym_bind_address_token1] = ACTIONS(1785), + [aux_sym_bind_interface_token1] = ACTIONS(1785), + [aux_sym_canonical_domains_token1] = ACTIONS(1785), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1785), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1785), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1785), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1785), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1785), + [aux_sym_certificate_file_token1] = ACTIONS(1785), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1785), + [aux_sym_channel_timeout_token1] = ACTIONS(1785), + [aux_sym_check_host_ip_token1] = ACTIONS(1785), + [aux_sym_ciphers_token1] = ACTIONS(1785), + [aux_sym_cipher_token1] = ACTIONS(1787), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1785), + [aux_sym_compression_token1] = ACTIONS(1785), + [aux_sym_connection_attempts_token1] = ACTIONS(1785), + [aux_sym_connect_timeout_token1] = ACTIONS(1785), + [aux_sym_control_master_token1] = ACTIONS(1785), + [aux_sym_control_path_token1] = ACTIONS(1785), + [aux_sym_control_persist_token1] = ACTIONS(1785), + [aux_sym_dynamic_forward_token1] = ACTIONS(1785), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1785), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1785), + [aux_sym_escape_char_token1] = ACTIONS(1785), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1785), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1785), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1785), + [aux_sym_forward_agent_token1] = ACTIONS(1785), + [aux_sym_forward_x11_token1] = ACTIONS(1787), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1785), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1785), + [aux_sym_gateway_ports_token1] = ACTIONS(1785), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1785), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1785), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1785), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1785), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1785), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1785), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1785), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1785), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1785), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1785), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1785), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1785), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1785), + [aux_sym_host_key_alias_token1] = ACTIONS(1785), + [aux_sym_hostname_token1] = ACTIONS(1785), + [aux_sym_identities_only_token1] = ACTIONS(1785), + [aux_sym_identity_agent_token1] = ACTIONS(1785), + [aux_sym_identity_file_token1] = ACTIONS(1785), + [aux_sym_ignore_unknown_token1] = ACTIONS(1785), + [aux_sym_include_token1] = ACTIONS(1785), + [aux_sym_ip_qos_token1] = ACTIONS(1785), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1785), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1785), + [aux_sym_kex_algorithms_token1] = ACTIONS(1785), + [aux_sym_known_hosts_command_token1] = ACTIONS(1785), + [aux_sym_local_command_token1] = ACTIONS(1785), + [aux_sym_local_forward_token1] = ACTIONS(1785), + [aux_sym_log_level_token1] = ACTIONS(1785), + [aux_sym_log_verbose_token1] = ACTIONS(1785), + [aux_sym_macs_token1] = ACTIONS(1785), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1785), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1785), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1785), + [aux_sym_password_authentication_token1] = ACTIONS(1785), + [aux_sym_permit_local_command_token1] = ACTIONS(1785), + [aux_sym_permit_remote_open_token1] = ACTIONS(1785), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1785), + [aux_sym_port_token1] = ACTIONS(1785), + [aux_sym_preferred_authentications_token1] = ACTIONS(1785), + [aux_sym_protocol_token1] = ACTIONS(1785), + [aux_sym_proxy_command_token1] = ACTIONS(1785), + [aux_sym_proxy_jump_token1] = ACTIONS(1785), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1785), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1785), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1785), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1785), + [aux_sym_rekey_limit_token1] = ACTIONS(1785), + [aux_sym_remote_command_token1] = ACTIONS(1785), + [aux_sym_remote_forward_token1] = ACTIONS(1785), + [aux_sym_request_tty_token1] = ACTIONS(1785), + [aux_sym_required_rsa_size_token1] = ACTIONS(1785), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1785), + [aux_sym_security_key_provider_token1] = ACTIONS(1785), + [aux_sym_send_env_token1] = ACTIONS(1785), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1785), + [aux_sym_server_alive_interval_token1] = ACTIONS(1785), + [aux_sym_session_type_token1] = ACTIONS(1785), + [aux_sym_set_env_token1] = ACTIONS(1785), + [aux_sym_stdin_null_token1] = ACTIONS(1785), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1785), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1785), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1785), + [aux_sym_syslog_facility_token1] = ACTIONS(1785), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1785), + [aux_sym_keep_alive_token1] = ACTIONS(1785), + [aux_sym_tag_token1] = ACTIONS(1785), + [aux_sym_tunnel_token1] = ACTIONS(1787), + [aux_sym_tunnel_device_token1] = ACTIONS(1785), + [aux_sym_update_host_keys_token1] = ACTIONS(1785), + [aux_sym_use_keychain_token1] = ACTIONS(1785), + [aux_sym_use_roaming_token1] = ACTIONS(1785), + [aux_sym_user_token1] = ACTIONS(1787), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1785), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1785), + [aux_sym_visual_host_key_token1] = ACTIONS(1785), + [aux_sym_xauth_location_token1] = ACTIONS(1785), }, [781] = { - [ts_builtin_sym_end] = ACTIONS(906), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(908), - [aux_sym_match_token1] = ACTIONS(906), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(906), - [aux_sym_address_family_token1] = ACTIONS(906), - [aux_sym_batch_mode_token1] = ACTIONS(906), - [aux_sym_bind_address_token1] = ACTIONS(906), - [aux_sym_bind_interface_token1] = ACTIONS(906), - [aux_sym_canonical_domains_token1] = ACTIONS(906), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(906), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(906), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(906), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(906), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(906), - [aux_sym_certificate_file_token1] = ACTIONS(906), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(906), - [aux_sym_channel_timeout_token1] = ACTIONS(906), - [aux_sym_check_host_ip_token1] = ACTIONS(906), - [aux_sym_ciphers_token1] = ACTIONS(906), - [aux_sym_cipher_token1] = ACTIONS(908), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(906), - [aux_sym_compression_token1] = ACTIONS(906), - [aux_sym_connection_attempts_token1] = ACTIONS(906), - [aux_sym_connect_timeout_token1] = ACTIONS(906), - [aux_sym_control_master_token1] = ACTIONS(906), - [aux_sym_control_path_token1] = ACTIONS(906), - [aux_sym_control_persist_token1] = ACTIONS(906), - [aux_sym_dynamic_forward_token1] = ACTIONS(906), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(906), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(906), - [aux_sym_escape_char_token1] = ACTIONS(906), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(906), - [aux_sym_fingerprint_hash_token1] = ACTIONS(906), - [aux_sym_fork_after_authentication_token1] = ACTIONS(906), - [aux_sym_forward_agent_token1] = ACTIONS(906), - [aux_sym_forward_x11_token1] = ACTIONS(908), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(906), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(906), - [aux_sym_gateway_ports_token1] = ACTIONS(906), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(906), - [aux_sym_gssapi_authentication_token1] = ACTIONS(906), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(906), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(906), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(906), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(906), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(906), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(906), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(906), - [aux_sym_hash_known_hosts_token1] = ACTIONS(906), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(906), - [aux_sym_hostbased_authentication_token1] = ACTIONS(906), - [aux_sym_host_key_algorithms_token1] = ACTIONS(906), - [aux_sym_host_key_alias_token1] = ACTIONS(906), - [aux_sym_hostname_token1] = ACTIONS(906), - [aux_sym_identities_only_token1] = ACTIONS(906), - [aux_sym_identity_agent_token1] = ACTIONS(906), - [aux_sym_identity_file_token1] = ACTIONS(906), - [aux_sym_ignore_unknown_token1] = ACTIONS(906), - [aux_sym_include_token1] = ACTIONS(906), - [aux_sym_ip_qos_token1] = ACTIONS(906), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(906), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(906), - [aux_sym_kex_algorithms_token1] = ACTIONS(906), - [aux_sym_known_hosts_command_token1] = ACTIONS(906), - [aux_sym_local_command_token1] = ACTIONS(906), - [aux_sym_local_forward_token1] = ACTIONS(906), - [aux_sym_log_level_token1] = ACTIONS(906), - [aux_sym_log_verbose_token1] = ACTIONS(906), - [aux_sym_macs_token1] = ACTIONS(906), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(906), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(906), - [aux_sym_password_authentication_token1] = ACTIONS(906), - [aux_sym_permit_local_command_token1] = ACTIONS(906), - [aux_sym_permit_remote_open_token1] = ACTIONS(906), - [aux_sym_pkcs11_provider_token1] = ACTIONS(906), - [aux_sym_port_token1] = ACTIONS(906), - [aux_sym_preferred_authentications_token1] = ACTIONS(906), - [aux_sym_protocol_token1] = ACTIONS(906), - [aux_sym_proxy_command_token1] = ACTIONS(906), - [aux_sym_proxy_jump_token1] = ACTIONS(906), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(906), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(906), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(906), - [aux_sym_pubkey_authentication_token1] = ACTIONS(906), - [aux_sym_rekey_limit_token1] = ACTIONS(906), - [aux_sym_remote_command_token1] = ACTIONS(906), - [aux_sym_remote_forward_token1] = ACTIONS(906), - [aux_sym_request_tty_token1] = ACTIONS(906), - [aux_sym_required_rsa_size_token1] = ACTIONS(906), - [aux_sym_revoked_host_keys_token1] = ACTIONS(906), - [aux_sym_security_key_provider_token1] = ACTIONS(906), - [aux_sym_send_env_token1] = ACTIONS(906), - [aux_sym_server_alive_count_max_token1] = ACTIONS(906), - [aux_sym_server_alive_interval_token1] = ACTIONS(906), - [aux_sym_session_type_token1] = ACTIONS(906), - [aux_sym_set_env_token1] = ACTIONS(906), - [aux_sym_stdin_null_token1] = ACTIONS(906), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(906), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(906), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(906), - [aux_sym_syslog_facility_token1] = ACTIONS(906), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(906), - [aux_sym_keep_alive_token1] = ACTIONS(906), - [aux_sym_tag_token1] = ACTIONS(906), - [aux_sym_tunnel_token1] = ACTIONS(908), - [aux_sym_tunnel_device_token1] = ACTIONS(906), - [aux_sym_update_host_keys_token1] = ACTIONS(906), - [aux_sym_use_keychain_token1] = ACTIONS(906), - [aux_sym_use_roaming_token1] = ACTIONS(906), - [aux_sym_user_token1] = ACTIONS(908), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(906), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(906), - [aux_sym_visual_host_key_token1] = ACTIONS(906), - [aux_sym_xauth_location_token1] = ACTIONS(906), + [ts_builtin_sym_end] = ACTIONS(755), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(757), + [aux_sym_match_token1] = ACTIONS(755), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(755), + [aux_sym_address_family_token1] = ACTIONS(755), + [aux_sym_batch_mode_token1] = ACTIONS(755), + [aux_sym_bind_address_token1] = ACTIONS(755), + [aux_sym_bind_interface_token1] = ACTIONS(755), + [aux_sym_canonical_domains_token1] = ACTIONS(755), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(755), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(755), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(755), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(755), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(755), + [aux_sym_certificate_file_token1] = ACTIONS(755), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(755), + [aux_sym_channel_timeout_token1] = ACTIONS(755), + [aux_sym_check_host_ip_token1] = ACTIONS(755), + [aux_sym_ciphers_token1] = ACTIONS(755), + [aux_sym_cipher_token1] = ACTIONS(757), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(755), + [aux_sym_compression_token1] = ACTIONS(755), + [aux_sym_connection_attempts_token1] = ACTIONS(755), + [aux_sym_connect_timeout_token1] = ACTIONS(755), + [aux_sym_control_master_token1] = ACTIONS(755), + [aux_sym_control_path_token1] = ACTIONS(755), + [aux_sym_control_persist_token1] = ACTIONS(755), + [aux_sym_dynamic_forward_token1] = ACTIONS(755), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(755), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(755), + [aux_sym_escape_char_token1] = ACTIONS(755), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(755), + [aux_sym_fingerprint_hash_token1] = ACTIONS(755), + [aux_sym_fork_after_authentication_token1] = ACTIONS(755), + [aux_sym_forward_agent_token1] = ACTIONS(755), + [aux_sym_forward_x11_token1] = ACTIONS(757), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(755), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(755), + [aux_sym_gateway_ports_token1] = ACTIONS(755), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(755), + [aux_sym_gssapi_authentication_token1] = ACTIONS(755), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(755), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(755), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(755), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(755), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(755), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(755), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(755), + [aux_sym_hash_known_hosts_token1] = ACTIONS(755), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(755), + [aux_sym_hostbased_authentication_token1] = ACTIONS(755), + [aux_sym_host_key_algorithms_token1] = ACTIONS(755), + [aux_sym_host_key_alias_token1] = ACTIONS(755), + [aux_sym_hostname_token1] = ACTIONS(755), + [aux_sym_identities_only_token1] = ACTIONS(755), + [aux_sym_identity_agent_token1] = ACTIONS(755), + [aux_sym_identity_file_token1] = ACTIONS(755), + [aux_sym_ignore_unknown_token1] = ACTIONS(755), + [aux_sym_include_token1] = ACTIONS(755), + [aux_sym_ip_qos_token1] = ACTIONS(755), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(755), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(755), + [aux_sym_kex_algorithms_token1] = ACTIONS(755), + [aux_sym_known_hosts_command_token1] = ACTIONS(755), + [aux_sym_local_command_token1] = ACTIONS(755), + [aux_sym_local_forward_token1] = ACTIONS(755), + [aux_sym_log_level_token1] = ACTIONS(755), + [aux_sym_log_verbose_token1] = ACTIONS(755), + [aux_sym_macs_token1] = ACTIONS(755), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(755), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(755), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(755), + [aux_sym_password_authentication_token1] = ACTIONS(755), + [aux_sym_permit_local_command_token1] = ACTIONS(755), + [aux_sym_permit_remote_open_token1] = ACTIONS(755), + [aux_sym_pkcs11_provider_token1] = ACTIONS(755), + [aux_sym_port_token1] = ACTIONS(755), + [aux_sym_preferred_authentications_token1] = ACTIONS(755), + [aux_sym_protocol_token1] = ACTIONS(755), + [aux_sym_proxy_command_token1] = ACTIONS(755), + [aux_sym_proxy_jump_token1] = ACTIONS(755), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(755), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(755), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(755), + [aux_sym_pubkey_authentication_token1] = ACTIONS(755), + [aux_sym_rekey_limit_token1] = ACTIONS(755), + [aux_sym_remote_command_token1] = ACTIONS(755), + [aux_sym_remote_forward_token1] = ACTIONS(755), + [aux_sym_request_tty_token1] = ACTIONS(755), + [aux_sym_required_rsa_size_token1] = ACTIONS(755), + [aux_sym_revoked_host_keys_token1] = ACTIONS(755), + [aux_sym_security_key_provider_token1] = ACTIONS(755), + [aux_sym_send_env_token1] = ACTIONS(755), + [aux_sym_server_alive_count_max_token1] = ACTIONS(755), + [aux_sym_server_alive_interval_token1] = ACTIONS(755), + [aux_sym_session_type_token1] = ACTIONS(755), + [aux_sym_set_env_token1] = ACTIONS(755), + [aux_sym_stdin_null_token1] = ACTIONS(755), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(755), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(755), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(755), + [aux_sym_syslog_facility_token1] = ACTIONS(755), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(755), + [aux_sym_keep_alive_token1] = ACTIONS(755), + [aux_sym_tag_token1] = ACTIONS(755), + [aux_sym_tunnel_token1] = ACTIONS(757), + [aux_sym_tunnel_device_token1] = ACTIONS(755), + [aux_sym_update_host_keys_token1] = ACTIONS(755), + [aux_sym_use_keychain_token1] = ACTIONS(755), + [aux_sym_use_roaming_token1] = ACTIONS(755), + [aux_sym_user_token1] = ACTIONS(757), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(755), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(755), + [aux_sym_visual_host_key_token1] = ACTIONS(755), + [aux_sym_xauth_location_token1] = ACTIONS(755), }, [782] = { - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1964), - [aux_sym_match_token1] = ACTIONS(1962), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1962), - [aux_sym_address_family_token1] = ACTIONS(1962), - [aux_sym_batch_mode_token1] = ACTIONS(1962), - [aux_sym_bind_address_token1] = ACTIONS(1962), - [aux_sym_bind_interface_token1] = ACTIONS(1962), - [aux_sym_canonical_domains_token1] = ACTIONS(1962), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1962), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1962), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1962), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1962), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1962), - [aux_sym_certificate_file_token1] = ACTIONS(1962), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1962), - [aux_sym_channel_timeout_token1] = ACTIONS(1962), - [aux_sym_check_host_ip_token1] = ACTIONS(1962), - [aux_sym_ciphers_token1] = ACTIONS(1962), - [aux_sym_cipher_token1] = ACTIONS(1964), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1962), - [aux_sym_compression_token1] = ACTIONS(1962), - [aux_sym_connection_attempts_token1] = ACTIONS(1962), - [aux_sym_connect_timeout_token1] = ACTIONS(1962), - [aux_sym_control_master_token1] = ACTIONS(1962), - [aux_sym_control_path_token1] = ACTIONS(1962), - [aux_sym_control_persist_token1] = ACTIONS(1962), - [aux_sym_dynamic_forward_token1] = ACTIONS(1962), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1962), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1962), - [aux_sym_escape_char_token1] = ACTIONS(1962), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1962), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1962), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1962), - [aux_sym_forward_agent_token1] = ACTIONS(1962), - [aux_sym_forward_x11_token1] = ACTIONS(1964), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1962), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1962), - [aux_sym_gateway_ports_token1] = ACTIONS(1962), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1962), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1962), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1962), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1962), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1962), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1962), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1962), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1962), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1962), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1962), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1962), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1962), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1962), - [aux_sym_host_key_alias_token1] = ACTIONS(1962), - [aux_sym_hostname_token1] = ACTIONS(1962), - [aux_sym_identities_only_token1] = ACTIONS(1962), - [aux_sym_identity_agent_token1] = ACTIONS(1962), - [aux_sym_identity_file_token1] = ACTIONS(1962), - [aux_sym_ignore_unknown_token1] = ACTIONS(1962), - [aux_sym_include_token1] = ACTIONS(1962), - [aux_sym_ip_qos_token1] = ACTIONS(1962), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1962), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1962), - [aux_sym_kex_algorithms_token1] = ACTIONS(1962), - [aux_sym_known_hosts_command_token1] = ACTIONS(1962), - [aux_sym_local_command_token1] = ACTIONS(1962), - [aux_sym_local_forward_token1] = ACTIONS(1962), - [aux_sym_log_level_token1] = ACTIONS(1962), - [aux_sym_log_verbose_token1] = ACTIONS(1962), - [aux_sym_macs_token1] = ACTIONS(1962), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1962), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1962), - [aux_sym_password_authentication_token1] = ACTIONS(1962), - [aux_sym_permit_local_command_token1] = ACTIONS(1962), - [aux_sym_permit_remote_open_token1] = ACTIONS(1962), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1962), - [aux_sym_port_token1] = ACTIONS(1962), - [aux_sym_preferred_authentications_token1] = ACTIONS(1962), - [aux_sym_protocol_token1] = ACTIONS(1962), - [aux_sym_proxy_command_token1] = ACTIONS(1962), - [aux_sym_proxy_jump_token1] = ACTIONS(1962), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1962), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1962), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1962), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1962), - [aux_sym_rekey_limit_token1] = ACTIONS(1962), - [aux_sym_remote_command_token1] = ACTIONS(1962), - [aux_sym_remote_forward_token1] = ACTIONS(1962), - [aux_sym_request_tty_token1] = ACTIONS(1962), - [aux_sym_required_rsa_size_token1] = ACTIONS(1962), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1962), - [aux_sym_security_key_provider_token1] = ACTIONS(1962), - [aux_sym_send_env_token1] = ACTIONS(1962), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1962), - [aux_sym_server_alive_interval_token1] = ACTIONS(1962), - [aux_sym_session_type_token1] = ACTIONS(1962), - [aux_sym_set_env_token1] = ACTIONS(1962), - [aux_sym_stdin_null_token1] = ACTIONS(1962), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1962), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1962), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1962), - [aux_sym_syslog_facility_token1] = ACTIONS(1962), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1962), - [aux_sym_keep_alive_token1] = ACTIONS(1962), - [aux_sym_tag_token1] = ACTIONS(1962), - [aux_sym_tunnel_token1] = ACTIONS(1964), - [aux_sym_tunnel_device_token1] = ACTIONS(1962), - [aux_sym_update_host_keys_token1] = ACTIONS(1962), - [aux_sym_use_keychain_token1] = ACTIONS(1962), - [aux_sym_use_roaming_token1] = ACTIONS(1962), - [aux_sym_user_token1] = ACTIONS(1964), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1962), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1962), - [aux_sym_visual_host_key_token1] = ACTIONS(1962), - [aux_sym_xauth_location_token1] = ACTIONS(1962), + [ts_builtin_sym_end] = ACTIONS(1499), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1501), + [aux_sym_match_token1] = ACTIONS(1499), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1499), + [aux_sym_address_family_token1] = ACTIONS(1499), + [aux_sym_batch_mode_token1] = ACTIONS(1499), + [aux_sym_bind_address_token1] = ACTIONS(1499), + [aux_sym_bind_interface_token1] = ACTIONS(1499), + [aux_sym_canonical_domains_token1] = ACTIONS(1499), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1499), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1499), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1499), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1499), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1499), + [aux_sym_certificate_file_token1] = ACTIONS(1499), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1499), + [aux_sym_channel_timeout_token1] = ACTIONS(1499), + [aux_sym_check_host_ip_token1] = ACTIONS(1499), + [aux_sym_ciphers_token1] = ACTIONS(1499), + [aux_sym_cipher_token1] = ACTIONS(1501), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1499), + [aux_sym_compression_token1] = ACTIONS(1499), + [aux_sym_connection_attempts_token1] = ACTIONS(1499), + [aux_sym_connect_timeout_token1] = ACTIONS(1499), + [aux_sym_control_master_token1] = ACTIONS(1499), + [aux_sym_control_path_token1] = ACTIONS(1499), + [aux_sym_control_persist_token1] = ACTIONS(1499), + [aux_sym_dynamic_forward_token1] = ACTIONS(1499), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1499), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1499), + [aux_sym_escape_char_token1] = ACTIONS(1499), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1499), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1499), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1499), + [aux_sym_forward_agent_token1] = ACTIONS(1499), + [aux_sym_forward_x11_token1] = ACTIONS(1501), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1499), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1499), + [aux_sym_gateway_ports_token1] = ACTIONS(1499), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1499), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1499), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1499), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1499), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1499), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1499), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1499), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1499), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1499), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1499), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1499), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1499), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1499), + [aux_sym_host_key_alias_token1] = ACTIONS(1499), + [aux_sym_hostname_token1] = ACTIONS(1499), + [aux_sym_identities_only_token1] = ACTIONS(1499), + [aux_sym_identity_agent_token1] = ACTIONS(1499), + [aux_sym_identity_file_token1] = ACTIONS(1499), + [aux_sym_ignore_unknown_token1] = ACTIONS(1499), + [aux_sym_include_token1] = ACTIONS(1499), + [aux_sym_ip_qos_token1] = ACTIONS(1499), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1499), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1499), + [aux_sym_kex_algorithms_token1] = ACTIONS(1499), + [aux_sym_known_hosts_command_token1] = ACTIONS(1499), + [aux_sym_local_command_token1] = ACTIONS(1499), + [aux_sym_local_forward_token1] = ACTIONS(1499), + [aux_sym_log_level_token1] = ACTIONS(1499), + [aux_sym_log_verbose_token1] = ACTIONS(1499), + [aux_sym_macs_token1] = ACTIONS(1499), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1499), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1499), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1499), + [aux_sym_password_authentication_token1] = ACTIONS(1499), + [aux_sym_permit_local_command_token1] = ACTIONS(1499), + [aux_sym_permit_remote_open_token1] = ACTIONS(1499), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1499), + [aux_sym_port_token1] = ACTIONS(1499), + [aux_sym_preferred_authentications_token1] = ACTIONS(1499), + [aux_sym_protocol_token1] = ACTIONS(1499), + [aux_sym_proxy_command_token1] = ACTIONS(1499), + [aux_sym_proxy_jump_token1] = ACTIONS(1499), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1499), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1499), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1499), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1499), + [aux_sym_rekey_limit_token1] = ACTIONS(1499), + [aux_sym_remote_command_token1] = ACTIONS(1499), + [aux_sym_remote_forward_token1] = ACTIONS(1499), + [aux_sym_request_tty_token1] = ACTIONS(1499), + [aux_sym_required_rsa_size_token1] = ACTIONS(1499), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1499), + [aux_sym_security_key_provider_token1] = ACTIONS(1499), + [aux_sym_send_env_token1] = ACTIONS(1499), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1499), + [aux_sym_server_alive_interval_token1] = ACTIONS(1499), + [aux_sym_session_type_token1] = ACTIONS(1499), + [aux_sym_set_env_token1] = ACTIONS(1499), + [aux_sym_stdin_null_token1] = ACTIONS(1499), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1499), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1499), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1499), + [aux_sym_syslog_facility_token1] = ACTIONS(1499), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1499), + [aux_sym_keep_alive_token1] = ACTIONS(1499), + [aux_sym_tag_token1] = ACTIONS(1499), + [aux_sym_tunnel_token1] = ACTIONS(1501), + [aux_sym_tunnel_device_token1] = ACTIONS(1499), + [aux_sym_update_host_keys_token1] = ACTIONS(1499), + [aux_sym_use_keychain_token1] = ACTIONS(1499), + [aux_sym_use_roaming_token1] = ACTIONS(1499), + [aux_sym_user_token1] = ACTIONS(1501), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1499), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1499), + [aux_sym_visual_host_key_token1] = ACTIONS(1499), + [aux_sym_xauth_location_token1] = ACTIONS(1499), }, [783] = { - [ts_builtin_sym_end] = ACTIONS(1752), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1754), - [aux_sym_match_token1] = ACTIONS(1752), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1752), - [aux_sym_address_family_token1] = ACTIONS(1752), - [aux_sym_batch_mode_token1] = ACTIONS(1752), - [aux_sym_bind_address_token1] = ACTIONS(1752), - [aux_sym_bind_interface_token1] = ACTIONS(1752), - [aux_sym_canonical_domains_token1] = ACTIONS(1752), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1752), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1752), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1752), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1752), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1752), - [aux_sym_certificate_file_token1] = ACTIONS(1752), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1752), - [aux_sym_channel_timeout_token1] = ACTIONS(1752), - [aux_sym_check_host_ip_token1] = ACTIONS(1752), - [aux_sym_ciphers_token1] = ACTIONS(1752), - [aux_sym_cipher_token1] = ACTIONS(1754), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1752), - [aux_sym_compression_token1] = ACTIONS(1752), - [aux_sym_connection_attempts_token1] = ACTIONS(1752), - [aux_sym_connect_timeout_token1] = ACTIONS(1752), - [aux_sym_control_master_token1] = ACTIONS(1752), - [aux_sym_control_path_token1] = ACTIONS(1752), - [aux_sym_control_persist_token1] = ACTIONS(1752), - [aux_sym_dynamic_forward_token1] = ACTIONS(1752), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1752), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1752), - [aux_sym_escape_char_token1] = ACTIONS(1752), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1752), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1752), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1752), - [aux_sym_forward_agent_token1] = ACTIONS(1752), - [aux_sym_forward_x11_token1] = ACTIONS(1754), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1752), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1752), - [aux_sym_gateway_ports_token1] = ACTIONS(1752), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1752), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1752), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1752), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1752), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1752), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1752), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1752), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1752), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1752), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1752), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1752), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1752), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1752), - [aux_sym_host_key_alias_token1] = ACTIONS(1752), - [aux_sym_hostname_token1] = ACTIONS(1752), - [aux_sym_identities_only_token1] = ACTIONS(1752), - [aux_sym_identity_agent_token1] = ACTIONS(1752), - [aux_sym_identity_file_token1] = ACTIONS(1752), - [aux_sym_ignore_unknown_token1] = ACTIONS(1752), - [aux_sym_include_token1] = ACTIONS(1752), - [aux_sym_ip_qos_token1] = ACTIONS(1752), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1752), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1752), - [aux_sym_kex_algorithms_token1] = ACTIONS(1752), - [aux_sym_known_hosts_command_token1] = ACTIONS(1752), - [aux_sym_local_command_token1] = ACTIONS(1752), - [aux_sym_local_forward_token1] = ACTIONS(1752), - [aux_sym_log_level_token1] = ACTIONS(1752), - [aux_sym_log_verbose_token1] = ACTIONS(1752), - [aux_sym_macs_token1] = ACTIONS(1752), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1752), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1752), - [aux_sym_password_authentication_token1] = ACTIONS(1752), - [aux_sym_permit_local_command_token1] = ACTIONS(1752), - [aux_sym_permit_remote_open_token1] = ACTIONS(1752), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1752), - [aux_sym_port_token1] = ACTIONS(1752), - [aux_sym_preferred_authentications_token1] = ACTIONS(1752), - [aux_sym_protocol_token1] = ACTIONS(1752), - [aux_sym_proxy_command_token1] = ACTIONS(1752), - [aux_sym_proxy_jump_token1] = ACTIONS(1752), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1752), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1752), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1752), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1752), - [aux_sym_rekey_limit_token1] = ACTIONS(1752), - [aux_sym_remote_command_token1] = ACTIONS(1752), - [aux_sym_remote_forward_token1] = ACTIONS(1752), - [aux_sym_request_tty_token1] = ACTIONS(1752), - [aux_sym_required_rsa_size_token1] = ACTIONS(1752), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1752), - [aux_sym_security_key_provider_token1] = ACTIONS(1752), - [aux_sym_send_env_token1] = ACTIONS(1752), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1752), - [aux_sym_server_alive_interval_token1] = ACTIONS(1752), - [aux_sym_session_type_token1] = ACTIONS(1752), - [aux_sym_set_env_token1] = ACTIONS(1752), - [aux_sym_stdin_null_token1] = ACTIONS(1752), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1752), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1752), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1752), - [aux_sym_syslog_facility_token1] = ACTIONS(1752), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1752), - [aux_sym_keep_alive_token1] = ACTIONS(1752), - [aux_sym_tag_token1] = ACTIONS(1752), - [aux_sym_tunnel_token1] = ACTIONS(1754), - [aux_sym_tunnel_device_token1] = ACTIONS(1752), - [aux_sym_update_host_keys_token1] = ACTIONS(1752), - [aux_sym_use_keychain_token1] = ACTIONS(1752), - [aux_sym_use_roaming_token1] = ACTIONS(1752), - [aux_sym_user_token1] = ACTIONS(1754), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1752), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1752), - [aux_sym_visual_host_key_token1] = ACTIONS(1752), - [aux_sym_xauth_location_token1] = ACTIONS(1752), + [ts_builtin_sym_end] = ACTIONS(1779), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1781), + [aux_sym_match_token1] = ACTIONS(1779), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1779), + [aux_sym_address_family_token1] = ACTIONS(1779), + [aux_sym_batch_mode_token1] = ACTIONS(1779), + [aux_sym_bind_address_token1] = ACTIONS(1779), + [aux_sym_bind_interface_token1] = ACTIONS(1779), + [aux_sym_canonical_domains_token1] = ACTIONS(1779), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1779), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1779), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1779), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1779), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1779), + [aux_sym_certificate_file_token1] = ACTIONS(1779), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1779), + [aux_sym_channel_timeout_token1] = ACTIONS(1779), + [aux_sym_check_host_ip_token1] = ACTIONS(1779), + [aux_sym_ciphers_token1] = ACTIONS(1779), + [aux_sym_cipher_token1] = ACTIONS(1781), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1779), + [aux_sym_compression_token1] = ACTIONS(1779), + [aux_sym_connection_attempts_token1] = ACTIONS(1779), + [aux_sym_connect_timeout_token1] = ACTIONS(1779), + [aux_sym_control_master_token1] = ACTIONS(1779), + [aux_sym_control_path_token1] = ACTIONS(1779), + [aux_sym_control_persist_token1] = ACTIONS(1779), + [aux_sym_dynamic_forward_token1] = ACTIONS(1779), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1779), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1779), + [aux_sym_escape_char_token1] = ACTIONS(1779), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1779), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1779), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1779), + [aux_sym_forward_agent_token1] = ACTIONS(1779), + [aux_sym_forward_x11_token1] = ACTIONS(1781), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1779), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1779), + [aux_sym_gateway_ports_token1] = ACTIONS(1779), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1779), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1779), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1779), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1779), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1779), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1779), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1779), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1779), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1779), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1779), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1779), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1779), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1779), + [aux_sym_host_key_alias_token1] = ACTIONS(1779), + [aux_sym_hostname_token1] = ACTIONS(1779), + [aux_sym_identities_only_token1] = ACTIONS(1779), + [aux_sym_identity_agent_token1] = ACTIONS(1779), + [aux_sym_identity_file_token1] = ACTIONS(1779), + [aux_sym_ignore_unknown_token1] = ACTIONS(1779), + [aux_sym_include_token1] = ACTIONS(1779), + [aux_sym_ip_qos_token1] = ACTIONS(1779), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1779), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1779), + [aux_sym_kex_algorithms_token1] = ACTIONS(1779), + [aux_sym_known_hosts_command_token1] = ACTIONS(1779), + [aux_sym_local_command_token1] = ACTIONS(1779), + [aux_sym_local_forward_token1] = ACTIONS(1779), + [aux_sym_log_level_token1] = ACTIONS(1779), + [aux_sym_log_verbose_token1] = ACTIONS(1779), + [aux_sym_macs_token1] = ACTIONS(1779), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1779), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1779), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1779), + [aux_sym_password_authentication_token1] = ACTIONS(1779), + [aux_sym_permit_local_command_token1] = ACTIONS(1779), + [aux_sym_permit_remote_open_token1] = ACTIONS(1779), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1779), + [aux_sym_port_token1] = ACTIONS(1779), + [aux_sym_preferred_authentications_token1] = ACTIONS(1779), + [aux_sym_protocol_token1] = ACTIONS(1779), + [aux_sym_proxy_command_token1] = ACTIONS(1779), + [aux_sym_proxy_jump_token1] = ACTIONS(1779), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1779), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1779), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1779), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1779), + [aux_sym_rekey_limit_token1] = ACTIONS(1779), + [aux_sym_remote_command_token1] = ACTIONS(1779), + [aux_sym_remote_forward_token1] = ACTIONS(1779), + [aux_sym_request_tty_token1] = ACTIONS(1779), + [aux_sym_required_rsa_size_token1] = ACTIONS(1779), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1779), + [aux_sym_security_key_provider_token1] = ACTIONS(1779), + [aux_sym_send_env_token1] = ACTIONS(1779), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1779), + [aux_sym_server_alive_interval_token1] = ACTIONS(1779), + [aux_sym_session_type_token1] = ACTIONS(1779), + [aux_sym_set_env_token1] = ACTIONS(1779), + [aux_sym_stdin_null_token1] = ACTIONS(1779), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1779), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1779), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1779), + [aux_sym_syslog_facility_token1] = ACTIONS(1779), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1779), + [aux_sym_keep_alive_token1] = ACTIONS(1779), + [aux_sym_tag_token1] = ACTIONS(1779), + [aux_sym_tunnel_token1] = ACTIONS(1781), + [aux_sym_tunnel_device_token1] = ACTIONS(1779), + [aux_sym_update_host_keys_token1] = ACTIONS(1779), + [aux_sym_use_keychain_token1] = ACTIONS(1779), + [aux_sym_use_roaming_token1] = ACTIONS(1779), + [aux_sym_user_token1] = ACTIONS(1781), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1779), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1779), + [aux_sym_visual_host_key_token1] = ACTIONS(1779), + [aux_sym_xauth_location_token1] = ACTIONS(1779), }, [784] = { - [ts_builtin_sym_end] = ACTIONS(1710), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1712), - [aux_sym_match_token1] = ACTIONS(1710), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1710), - [aux_sym_address_family_token1] = ACTIONS(1710), - [aux_sym_batch_mode_token1] = ACTIONS(1710), - [aux_sym_bind_address_token1] = ACTIONS(1710), - [aux_sym_bind_interface_token1] = ACTIONS(1710), - [aux_sym_canonical_domains_token1] = ACTIONS(1710), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1710), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1710), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1710), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1710), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1710), - [aux_sym_certificate_file_token1] = ACTIONS(1710), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1710), - [aux_sym_channel_timeout_token1] = ACTIONS(1710), - [aux_sym_check_host_ip_token1] = ACTIONS(1710), - [aux_sym_ciphers_token1] = ACTIONS(1710), - [aux_sym_cipher_token1] = ACTIONS(1712), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1710), - [aux_sym_compression_token1] = ACTIONS(1710), - [aux_sym_connection_attempts_token1] = ACTIONS(1710), - [aux_sym_connect_timeout_token1] = ACTIONS(1710), - [aux_sym_control_master_token1] = ACTIONS(1710), - [aux_sym_control_path_token1] = ACTIONS(1710), - [aux_sym_control_persist_token1] = ACTIONS(1710), - [aux_sym_dynamic_forward_token1] = ACTIONS(1710), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1710), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1710), - [aux_sym_escape_char_token1] = ACTIONS(1710), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1710), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1710), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1710), - [aux_sym_forward_agent_token1] = ACTIONS(1710), - [aux_sym_forward_x11_token1] = ACTIONS(1712), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1710), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1710), - [aux_sym_gateway_ports_token1] = ACTIONS(1710), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1710), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1710), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1710), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1710), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1710), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1710), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1710), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1710), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1710), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1710), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1710), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1710), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1710), - [aux_sym_host_key_alias_token1] = ACTIONS(1710), - [aux_sym_hostname_token1] = ACTIONS(1710), - [aux_sym_identities_only_token1] = ACTIONS(1710), - [aux_sym_identity_agent_token1] = ACTIONS(1710), - [aux_sym_identity_file_token1] = ACTIONS(1710), - [aux_sym_ignore_unknown_token1] = ACTIONS(1710), - [aux_sym_include_token1] = ACTIONS(1710), - [aux_sym_ip_qos_token1] = ACTIONS(1710), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1710), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1710), - [aux_sym_kex_algorithms_token1] = ACTIONS(1710), - [aux_sym_known_hosts_command_token1] = ACTIONS(1710), - [aux_sym_local_command_token1] = ACTIONS(1710), - [aux_sym_local_forward_token1] = ACTIONS(1710), - [aux_sym_log_level_token1] = ACTIONS(1710), - [aux_sym_log_verbose_token1] = ACTIONS(1710), - [aux_sym_macs_token1] = ACTIONS(1710), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1710), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1710), - [aux_sym_password_authentication_token1] = ACTIONS(1710), - [aux_sym_permit_local_command_token1] = ACTIONS(1710), - [aux_sym_permit_remote_open_token1] = ACTIONS(1710), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1710), - [aux_sym_port_token1] = ACTIONS(1710), - [aux_sym_preferred_authentications_token1] = ACTIONS(1710), - [aux_sym_protocol_token1] = ACTIONS(1710), - [aux_sym_proxy_command_token1] = ACTIONS(1710), - [aux_sym_proxy_jump_token1] = ACTIONS(1710), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1710), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1710), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1710), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1710), - [aux_sym_rekey_limit_token1] = ACTIONS(1710), - [aux_sym_remote_command_token1] = ACTIONS(1710), - [aux_sym_remote_forward_token1] = ACTIONS(1710), - [aux_sym_request_tty_token1] = ACTIONS(1710), - [aux_sym_required_rsa_size_token1] = ACTIONS(1710), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1710), - [aux_sym_security_key_provider_token1] = ACTIONS(1710), - [aux_sym_send_env_token1] = ACTIONS(1710), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1710), - [aux_sym_server_alive_interval_token1] = ACTIONS(1710), - [aux_sym_session_type_token1] = ACTIONS(1710), - [aux_sym_set_env_token1] = ACTIONS(1710), - [aux_sym_stdin_null_token1] = ACTIONS(1710), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1710), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1710), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1710), - [aux_sym_syslog_facility_token1] = ACTIONS(1710), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1710), - [aux_sym_keep_alive_token1] = ACTIONS(1710), - [aux_sym_tag_token1] = ACTIONS(1710), - [aux_sym_tunnel_token1] = ACTIONS(1712), - [aux_sym_tunnel_device_token1] = ACTIONS(1710), - [aux_sym_update_host_keys_token1] = ACTIONS(1710), - [aux_sym_use_keychain_token1] = ACTIONS(1710), - [aux_sym_use_roaming_token1] = ACTIONS(1710), - [aux_sym_user_token1] = ACTIONS(1712), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1710), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1710), - [aux_sym_visual_host_key_token1] = ACTIONS(1710), - [aux_sym_xauth_location_token1] = ACTIONS(1710), + [ts_builtin_sym_end] = ACTIONS(1725), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1727), + [aux_sym_match_token1] = ACTIONS(1725), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1725), + [aux_sym_address_family_token1] = ACTIONS(1725), + [aux_sym_batch_mode_token1] = ACTIONS(1725), + [aux_sym_bind_address_token1] = ACTIONS(1725), + [aux_sym_bind_interface_token1] = ACTIONS(1725), + [aux_sym_canonical_domains_token1] = ACTIONS(1725), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1725), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1725), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1725), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1725), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1725), + [aux_sym_certificate_file_token1] = ACTIONS(1725), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1725), + [aux_sym_channel_timeout_token1] = ACTIONS(1725), + [aux_sym_check_host_ip_token1] = ACTIONS(1725), + [aux_sym_ciphers_token1] = ACTIONS(1725), + [aux_sym_cipher_token1] = ACTIONS(1727), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1725), + [aux_sym_compression_token1] = ACTIONS(1725), + [aux_sym_connection_attempts_token1] = ACTIONS(1725), + [aux_sym_connect_timeout_token1] = ACTIONS(1725), + [aux_sym_control_master_token1] = ACTIONS(1725), + [aux_sym_control_path_token1] = ACTIONS(1725), + [aux_sym_control_persist_token1] = ACTIONS(1725), + [aux_sym_dynamic_forward_token1] = ACTIONS(1725), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1725), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1725), + [aux_sym_escape_char_token1] = ACTIONS(1725), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1725), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1725), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1725), + [aux_sym_forward_agent_token1] = ACTIONS(1725), + [aux_sym_forward_x11_token1] = ACTIONS(1727), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1725), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1725), + [aux_sym_gateway_ports_token1] = ACTIONS(1725), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1725), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1725), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1725), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1725), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1725), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1725), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1725), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1725), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1725), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1725), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1725), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1725), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1725), + [aux_sym_host_key_alias_token1] = ACTIONS(1725), + [aux_sym_hostname_token1] = ACTIONS(1725), + [aux_sym_identities_only_token1] = ACTIONS(1725), + [aux_sym_identity_agent_token1] = ACTIONS(1725), + [aux_sym_identity_file_token1] = ACTIONS(1725), + [aux_sym_ignore_unknown_token1] = ACTIONS(1725), + [aux_sym_include_token1] = ACTIONS(1725), + [aux_sym_ip_qos_token1] = ACTIONS(1725), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1725), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1725), + [aux_sym_kex_algorithms_token1] = ACTIONS(1725), + [aux_sym_known_hosts_command_token1] = ACTIONS(1725), + [aux_sym_local_command_token1] = ACTIONS(1725), + [aux_sym_local_forward_token1] = ACTIONS(1725), + [aux_sym_log_level_token1] = ACTIONS(1725), + [aux_sym_log_verbose_token1] = ACTIONS(1725), + [aux_sym_macs_token1] = ACTIONS(1725), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1725), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1725), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1725), + [aux_sym_password_authentication_token1] = ACTIONS(1725), + [aux_sym_permit_local_command_token1] = ACTIONS(1725), + [aux_sym_permit_remote_open_token1] = ACTIONS(1725), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1725), + [aux_sym_port_token1] = ACTIONS(1725), + [aux_sym_preferred_authentications_token1] = ACTIONS(1725), + [aux_sym_protocol_token1] = ACTIONS(1725), + [aux_sym_proxy_command_token1] = ACTIONS(1725), + [aux_sym_proxy_jump_token1] = ACTIONS(1725), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1725), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1725), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1725), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1725), + [aux_sym_rekey_limit_token1] = ACTIONS(1725), + [aux_sym_remote_command_token1] = ACTIONS(1725), + [aux_sym_remote_forward_token1] = ACTIONS(1725), + [aux_sym_request_tty_token1] = ACTIONS(1725), + [aux_sym_required_rsa_size_token1] = ACTIONS(1725), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1725), + [aux_sym_security_key_provider_token1] = ACTIONS(1725), + [aux_sym_send_env_token1] = ACTIONS(1725), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1725), + [aux_sym_server_alive_interval_token1] = ACTIONS(1725), + [aux_sym_session_type_token1] = ACTIONS(1725), + [aux_sym_set_env_token1] = ACTIONS(1725), + [aux_sym_stdin_null_token1] = ACTIONS(1725), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1725), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1725), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1725), + [aux_sym_syslog_facility_token1] = ACTIONS(1725), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1725), + [aux_sym_keep_alive_token1] = ACTIONS(1725), + [aux_sym_tag_token1] = ACTIONS(1725), + [aux_sym_tunnel_token1] = ACTIONS(1727), + [aux_sym_tunnel_device_token1] = ACTIONS(1725), + [aux_sym_update_host_keys_token1] = ACTIONS(1725), + [aux_sym_use_keychain_token1] = ACTIONS(1725), + [aux_sym_use_roaming_token1] = ACTIONS(1725), + [aux_sym_user_token1] = ACTIONS(1727), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1725), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1725), + [aux_sym_visual_host_key_token1] = ACTIONS(1725), + [aux_sym_xauth_location_token1] = ACTIONS(1725), }, [785] = { - [ts_builtin_sym_end] = ACTIONS(954), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(956), - [aux_sym_match_token1] = ACTIONS(954), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(954), - [aux_sym_address_family_token1] = ACTIONS(954), - [aux_sym_batch_mode_token1] = ACTIONS(954), - [aux_sym_bind_address_token1] = ACTIONS(954), - [aux_sym_bind_interface_token1] = ACTIONS(954), - [aux_sym_canonical_domains_token1] = ACTIONS(954), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(954), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(954), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(954), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(954), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(954), - [aux_sym_certificate_file_token1] = ACTIONS(954), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(954), - [aux_sym_channel_timeout_token1] = ACTIONS(954), - [aux_sym_check_host_ip_token1] = ACTIONS(954), - [aux_sym_ciphers_token1] = ACTIONS(954), - [aux_sym_cipher_token1] = ACTIONS(956), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(954), - [aux_sym_compression_token1] = ACTIONS(954), - [aux_sym_connection_attempts_token1] = ACTIONS(954), - [aux_sym_connect_timeout_token1] = ACTIONS(954), - [aux_sym_control_master_token1] = ACTIONS(954), - [aux_sym_control_path_token1] = ACTIONS(954), - [aux_sym_control_persist_token1] = ACTIONS(954), - [aux_sym_dynamic_forward_token1] = ACTIONS(954), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(954), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(954), - [aux_sym_escape_char_token1] = ACTIONS(954), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(954), - [aux_sym_fingerprint_hash_token1] = ACTIONS(954), - [aux_sym_fork_after_authentication_token1] = ACTIONS(954), - [aux_sym_forward_agent_token1] = ACTIONS(954), - [aux_sym_forward_x11_token1] = ACTIONS(956), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(954), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(954), - [aux_sym_gateway_ports_token1] = ACTIONS(954), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(954), - [aux_sym_gssapi_authentication_token1] = ACTIONS(954), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(954), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(954), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(954), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(954), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(954), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(954), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(954), - [aux_sym_hash_known_hosts_token1] = ACTIONS(954), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(954), - [aux_sym_hostbased_authentication_token1] = ACTIONS(954), - [aux_sym_host_key_algorithms_token1] = ACTIONS(954), - [aux_sym_host_key_alias_token1] = ACTIONS(954), - [aux_sym_hostname_token1] = ACTIONS(954), - [aux_sym_identities_only_token1] = ACTIONS(954), - [aux_sym_identity_agent_token1] = ACTIONS(954), - [aux_sym_identity_file_token1] = ACTIONS(954), - [aux_sym_ignore_unknown_token1] = ACTIONS(954), - [aux_sym_include_token1] = ACTIONS(954), - [aux_sym_ip_qos_token1] = ACTIONS(954), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(954), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(954), - [aux_sym_kex_algorithms_token1] = ACTIONS(954), - [aux_sym_known_hosts_command_token1] = ACTIONS(954), - [aux_sym_local_command_token1] = ACTIONS(954), - [aux_sym_local_forward_token1] = ACTIONS(954), - [aux_sym_log_level_token1] = ACTIONS(954), - [aux_sym_log_verbose_token1] = ACTIONS(954), - [aux_sym_macs_token1] = ACTIONS(954), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(954), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(954), - [aux_sym_password_authentication_token1] = ACTIONS(954), - [aux_sym_permit_local_command_token1] = ACTIONS(954), - [aux_sym_permit_remote_open_token1] = ACTIONS(954), - [aux_sym_pkcs11_provider_token1] = ACTIONS(954), - [aux_sym_port_token1] = ACTIONS(954), - [aux_sym_preferred_authentications_token1] = ACTIONS(954), - [aux_sym_protocol_token1] = ACTIONS(954), - [aux_sym_proxy_command_token1] = ACTIONS(954), - [aux_sym_proxy_jump_token1] = ACTIONS(954), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(954), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(954), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(954), - [aux_sym_pubkey_authentication_token1] = ACTIONS(954), - [aux_sym_rekey_limit_token1] = ACTIONS(954), - [aux_sym_remote_command_token1] = ACTIONS(954), - [aux_sym_remote_forward_token1] = ACTIONS(954), - [aux_sym_request_tty_token1] = ACTIONS(954), - [aux_sym_required_rsa_size_token1] = ACTIONS(954), - [aux_sym_revoked_host_keys_token1] = ACTIONS(954), - [aux_sym_security_key_provider_token1] = ACTIONS(954), - [aux_sym_send_env_token1] = ACTIONS(954), - [aux_sym_server_alive_count_max_token1] = ACTIONS(954), - [aux_sym_server_alive_interval_token1] = ACTIONS(954), - [aux_sym_session_type_token1] = ACTIONS(954), - [aux_sym_set_env_token1] = ACTIONS(954), - [aux_sym_stdin_null_token1] = ACTIONS(954), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(954), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(954), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(954), - [aux_sym_syslog_facility_token1] = ACTIONS(954), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(954), - [aux_sym_keep_alive_token1] = ACTIONS(954), - [aux_sym_tag_token1] = ACTIONS(954), - [aux_sym_tunnel_token1] = ACTIONS(956), - [aux_sym_tunnel_device_token1] = ACTIONS(954), - [aux_sym_update_host_keys_token1] = ACTIONS(954), - [aux_sym_use_keychain_token1] = ACTIONS(954), - [aux_sym_use_roaming_token1] = ACTIONS(954), - [aux_sym_user_token1] = ACTIONS(956), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(954), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(954), - [aux_sym_visual_host_key_token1] = ACTIONS(954), - [aux_sym_xauth_location_token1] = ACTIONS(954), + [ts_builtin_sym_end] = ACTIONS(917), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(919), + [aux_sym_match_token1] = ACTIONS(917), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(917), + [aux_sym_address_family_token1] = ACTIONS(917), + [aux_sym_batch_mode_token1] = ACTIONS(917), + [aux_sym_bind_address_token1] = ACTIONS(917), + [aux_sym_bind_interface_token1] = ACTIONS(917), + [aux_sym_canonical_domains_token1] = ACTIONS(917), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(917), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(917), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(917), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(917), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(917), + [aux_sym_certificate_file_token1] = ACTIONS(917), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(917), + [aux_sym_channel_timeout_token1] = ACTIONS(917), + [aux_sym_check_host_ip_token1] = ACTIONS(917), + [aux_sym_ciphers_token1] = ACTIONS(917), + [aux_sym_cipher_token1] = ACTIONS(919), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(917), + [aux_sym_compression_token1] = ACTIONS(917), + [aux_sym_connection_attempts_token1] = ACTIONS(917), + [aux_sym_connect_timeout_token1] = ACTIONS(917), + [aux_sym_control_master_token1] = ACTIONS(917), + [aux_sym_control_path_token1] = ACTIONS(917), + [aux_sym_control_persist_token1] = ACTIONS(917), + [aux_sym_dynamic_forward_token1] = ACTIONS(917), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(917), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(917), + [aux_sym_escape_char_token1] = ACTIONS(917), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(917), + [aux_sym_fingerprint_hash_token1] = ACTIONS(917), + [aux_sym_fork_after_authentication_token1] = ACTIONS(917), + [aux_sym_forward_agent_token1] = ACTIONS(917), + [aux_sym_forward_x11_token1] = ACTIONS(919), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(917), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(917), + [aux_sym_gateway_ports_token1] = ACTIONS(917), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(917), + [aux_sym_gssapi_authentication_token1] = ACTIONS(917), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(917), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(917), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(917), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(917), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(917), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(917), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(917), + [aux_sym_hash_known_hosts_token1] = ACTIONS(917), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(917), + [aux_sym_hostbased_authentication_token1] = ACTIONS(917), + [aux_sym_host_key_algorithms_token1] = ACTIONS(917), + [aux_sym_host_key_alias_token1] = ACTIONS(917), + [aux_sym_hostname_token1] = ACTIONS(917), + [aux_sym_identities_only_token1] = ACTIONS(917), + [aux_sym_identity_agent_token1] = ACTIONS(917), + [aux_sym_identity_file_token1] = ACTIONS(917), + [aux_sym_ignore_unknown_token1] = ACTIONS(917), + [aux_sym_include_token1] = ACTIONS(917), + [aux_sym_ip_qos_token1] = ACTIONS(917), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(917), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(917), + [aux_sym_kex_algorithms_token1] = ACTIONS(917), + [aux_sym_known_hosts_command_token1] = ACTIONS(917), + [aux_sym_local_command_token1] = ACTIONS(917), + [aux_sym_local_forward_token1] = ACTIONS(917), + [aux_sym_log_level_token1] = ACTIONS(917), + [aux_sym_log_verbose_token1] = ACTIONS(917), + [aux_sym_macs_token1] = ACTIONS(917), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(917), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(917), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(917), + [aux_sym_password_authentication_token1] = ACTIONS(917), + [aux_sym_permit_local_command_token1] = ACTIONS(917), + [aux_sym_permit_remote_open_token1] = ACTIONS(917), + [aux_sym_pkcs11_provider_token1] = ACTIONS(917), + [aux_sym_port_token1] = ACTIONS(917), + [aux_sym_preferred_authentications_token1] = ACTIONS(917), + [aux_sym_protocol_token1] = ACTIONS(917), + [aux_sym_proxy_command_token1] = ACTIONS(917), + [aux_sym_proxy_jump_token1] = ACTIONS(917), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(917), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(917), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(917), + [aux_sym_pubkey_authentication_token1] = ACTIONS(917), + [aux_sym_rekey_limit_token1] = ACTIONS(917), + [aux_sym_remote_command_token1] = ACTIONS(917), + [aux_sym_remote_forward_token1] = ACTIONS(917), + [aux_sym_request_tty_token1] = ACTIONS(917), + [aux_sym_required_rsa_size_token1] = ACTIONS(917), + [aux_sym_revoked_host_keys_token1] = ACTIONS(917), + [aux_sym_security_key_provider_token1] = ACTIONS(917), + [aux_sym_send_env_token1] = ACTIONS(917), + [aux_sym_server_alive_count_max_token1] = ACTIONS(917), + [aux_sym_server_alive_interval_token1] = ACTIONS(917), + [aux_sym_session_type_token1] = ACTIONS(917), + [aux_sym_set_env_token1] = ACTIONS(917), + [aux_sym_stdin_null_token1] = ACTIONS(917), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(917), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(917), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(917), + [aux_sym_syslog_facility_token1] = ACTIONS(917), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(917), + [aux_sym_keep_alive_token1] = ACTIONS(917), + [aux_sym_tag_token1] = ACTIONS(917), + [aux_sym_tunnel_token1] = ACTIONS(919), + [aux_sym_tunnel_device_token1] = ACTIONS(917), + [aux_sym_update_host_keys_token1] = ACTIONS(917), + [aux_sym_use_keychain_token1] = ACTIONS(917), + [aux_sym_use_roaming_token1] = ACTIONS(917), + [aux_sym_user_token1] = ACTIONS(919), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(917), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(917), + [aux_sym_visual_host_key_token1] = ACTIONS(917), + [aux_sym_xauth_location_token1] = ACTIONS(917), }, [786] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1748), - [aux_sym_match_token1] = ACTIONS(1746), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1746), - [aux_sym_address_family_token1] = ACTIONS(1746), - [aux_sym_batch_mode_token1] = ACTIONS(1746), - [aux_sym_bind_address_token1] = ACTIONS(1746), - [aux_sym_bind_interface_token1] = ACTIONS(1746), - [aux_sym_canonical_domains_token1] = ACTIONS(1746), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1746), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1746), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1746), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1746), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1746), - [aux_sym_certificate_file_token1] = ACTIONS(1746), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1746), - [aux_sym_channel_timeout_token1] = ACTIONS(1746), - [aux_sym_check_host_ip_token1] = ACTIONS(1746), - [aux_sym_ciphers_token1] = ACTIONS(1746), - [aux_sym_cipher_token1] = ACTIONS(1748), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1746), - [aux_sym_compression_token1] = ACTIONS(1746), - [aux_sym_connection_attempts_token1] = ACTIONS(1746), - [aux_sym_connect_timeout_token1] = ACTIONS(1746), - [aux_sym_control_master_token1] = ACTIONS(1746), - [aux_sym_control_path_token1] = ACTIONS(1746), - [aux_sym_control_persist_token1] = ACTIONS(1746), - [aux_sym_dynamic_forward_token1] = ACTIONS(1746), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1746), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1746), - [aux_sym_escape_char_token1] = ACTIONS(1746), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1746), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1746), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1746), - [aux_sym_forward_agent_token1] = ACTIONS(1746), - [aux_sym_forward_x11_token1] = ACTIONS(1748), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1746), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1746), - [aux_sym_gateway_ports_token1] = ACTIONS(1746), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1746), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1746), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1746), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1746), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1746), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1746), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1746), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1746), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1746), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1746), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1746), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1746), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1746), - [aux_sym_host_key_alias_token1] = ACTIONS(1746), - [aux_sym_hostname_token1] = ACTIONS(1746), - [aux_sym_identities_only_token1] = ACTIONS(1746), - [aux_sym_identity_agent_token1] = ACTIONS(1746), - [aux_sym_identity_file_token1] = ACTIONS(1746), - [aux_sym_ignore_unknown_token1] = ACTIONS(1746), - [aux_sym_include_token1] = ACTIONS(1746), - [aux_sym_ip_qos_token1] = ACTIONS(1746), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1746), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1746), - [aux_sym_kex_algorithms_token1] = ACTIONS(1746), - [aux_sym_known_hosts_command_token1] = ACTIONS(1746), - [aux_sym_local_command_token1] = ACTIONS(1746), - [aux_sym_local_forward_token1] = ACTIONS(1746), - [aux_sym_log_level_token1] = ACTIONS(1746), - [aux_sym_log_verbose_token1] = ACTIONS(1746), - [aux_sym_macs_token1] = ACTIONS(1746), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1746), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1746), - [aux_sym_password_authentication_token1] = ACTIONS(1746), - [aux_sym_permit_local_command_token1] = ACTIONS(1746), - [aux_sym_permit_remote_open_token1] = ACTIONS(1746), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1746), - [aux_sym_port_token1] = ACTIONS(1746), - [aux_sym_preferred_authentications_token1] = ACTIONS(1746), - [aux_sym_protocol_token1] = ACTIONS(1746), - [aux_sym_proxy_command_token1] = ACTIONS(1746), - [aux_sym_proxy_jump_token1] = ACTIONS(1746), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1746), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1746), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1746), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1746), - [aux_sym_rekey_limit_token1] = ACTIONS(1746), - [aux_sym_remote_command_token1] = ACTIONS(1746), - [aux_sym_remote_forward_token1] = ACTIONS(1746), - [aux_sym_request_tty_token1] = ACTIONS(1746), - [aux_sym_required_rsa_size_token1] = ACTIONS(1746), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1746), - [aux_sym_security_key_provider_token1] = ACTIONS(1746), - [aux_sym_send_env_token1] = ACTIONS(1746), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1746), - [aux_sym_server_alive_interval_token1] = ACTIONS(1746), - [aux_sym_session_type_token1] = ACTIONS(1746), - [aux_sym_set_env_token1] = ACTIONS(1746), - [aux_sym_stdin_null_token1] = ACTIONS(1746), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1746), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1746), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1746), - [aux_sym_syslog_facility_token1] = ACTIONS(1746), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1746), - [aux_sym_keep_alive_token1] = ACTIONS(1746), - [aux_sym_tag_token1] = ACTIONS(1746), - [aux_sym_tunnel_token1] = ACTIONS(1748), - [aux_sym_tunnel_device_token1] = ACTIONS(1746), - [aux_sym_update_host_keys_token1] = ACTIONS(1746), - [aux_sym_use_keychain_token1] = ACTIONS(1746), - [aux_sym_use_roaming_token1] = ACTIONS(1746), - [aux_sym_user_token1] = ACTIONS(1748), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1746), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1746), - [aux_sym_visual_host_key_token1] = ACTIONS(1746), - [aux_sym_xauth_location_token1] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1775), + [aux_sym_match_token1] = ACTIONS(1773), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1773), + [aux_sym_address_family_token1] = ACTIONS(1773), + [aux_sym_batch_mode_token1] = ACTIONS(1773), + [aux_sym_bind_address_token1] = ACTIONS(1773), + [aux_sym_bind_interface_token1] = ACTIONS(1773), + [aux_sym_canonical_domains_token1] = ACTIONS(1773), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1773), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1773), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1773), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1773), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1773), + [aux_sym_certificate_file_token1] = ACTIONS(1773), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1773), + [aux_sym_channel_timeout_token1] = ACTIONS(1773), + [aux_sym_check_host_ip_token1] = ACTIONS(1773), + [aux_sym_ciphers_token1] = ACTIONS(1773), + [aux_sym_cipher_token1] = ACTIONS(1775), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1773), + [aux_sym_compression_token1] = ACTIONS(1773), + [aux_sym_connection_attempts_token1] = ACTIONS(1773), + [aux_sym_connect_timeout_token1] = ACTIONS(1773), + [aux_sym_control_master_token1] = ACTIONS(1773), + [aux_sym_control_path_token1] = ACTIONS(1773), + [aux_sym_control_persist_token1] = ACTIONS(1773), + [aux_sym_dynamic_forward_token1] = ACTIONS(1773), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1773), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1773), + [aux_sym_escape_char_token1] = ACTIONS(1773), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1773), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1773), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1773), + [aux_sym_forward_agent_token1] = ACTIONS(1773), + [aux_sym_forward_x11_token1] = ACTIONS(1775), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1773), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1773), + [aux_sym_gateway_ports_token1] = ACTIONS(1773), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1773), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1773), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1773), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1773), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1773), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1773), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1773), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1773), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1773), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1773), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1773), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1773), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1773), + [aux_sym_host_key_alias_token1] = ACTIONS(1773), + [aux_sym_hostname_token1] = ACTIONS(1773), + [aux_sym_identities_only_token1] = ACTIONS(1773), + [aux_sym_identity_agent_token1] = ACTIONS(1773), + [aux_sym_identity_file_token1] = ACTIONS(1773), + [aux_sym_ignore_unknown_token1] = ACTIONS(1773), + [aux_sym_include_token1] = ACTIONS(1773), + [aux_sym_ip_qos_token1] = ACTIONS(1773), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1773), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1773), + [aux_sym_kex_algorithms_token1] = ACTIONS(1773), + [aux_sym_known_hosts_command_token1] = ACTIONS(1773), + [aux_sym_local_command_token1] = ACTIONS(1773), + [aux_sym_local_forward_token1] = ACTIONS(1773), + [aux_sym_log_level_token1] = ACTIONS(1773), + [aux_sym_log_verbose_token1] = ACTIONS(1773), + [aux_sym_macs_token1] = ACTIONS(1773), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1773), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1773), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1773), + [aux_sym_password_authentication_token1] = ACTIONS(1773), + [aux_sym_permit_local_command_token1] = ACTIONS(1773), + [aux_sym_permit_remote_open_token1] = ACTIONS(1773), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1773), + [aux_sym_port_token1] = ACTIONS(1773), + [aux_sym_preferred_authentications_token1] = ACTIONS(1773), + [aux_sym_protocol_token1] = ACTIONS(1773), + [aux_sym_proxy_command_token1] = ACTIONS(1773), + [aux_sym_proxy_jump_token1] = ACTIONS(1773), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1773), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1773), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1773), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1773), + [aux_sym_rekey_limit_token1] = ACTIONS(1773), + [aux_sym_remote_command_token1] = ACTIONS(1773), + [aux_sym_remote_forward_token1] = ACTIONS(1773), + [aux_sym_request_tty_token1] = ACTIONS(1773), + [aux_sym_required_rsa_size_token1] = ACTIONS(1773), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1773), + [aux_sym_security_key_provider_token1] = ACTIONS(1773), + [aux_sym_send_env_token1] = ACTIONS(1773), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1773), + [aux_sym_server_alive_interval_token1] = ACTIONS(1773), + [aux_sym_session_type_token1] = ACTIONS(1773), + [aux_sym_set_env_token1] = ACTIONS(1773), + [aux_sym_stdin_null_token1] = ACTIONS(1773), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1773), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1773), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1773), + [aux_sym_syslog_facility_token1] = ACTIONS(1773), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1773), + [aux_sym_keep_alive_token1] = ACTIONS(1773), + [aux_sym_tag_token1] = ACTIONS(1773), + [aux_sym_tunnel_token1] = ACTIONS(1775), + [aux_sym_tunnel_device_token1] = ACTIONS(1773), + [aux_sym_update_host_keys_token1] = ACTIONS(1773), + [aux_sym_use_keychain_token1] = ACTIONS(1773), + [aux_sym_use_roaming_token1] = ACTIONS(1773), + [aux_sym_user_token1] = ACTIONS(1775), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1773), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1773), + [aux_sym_visual_host_key_token1] = ACTIONS(1773), + [aux_sym_xauth_location_token1] = ACTIONS(1773), }, [787] = { - [ts_builtin_sym_end] = ACTIONS(918), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(920), - [aux_sym_match_token1] = ACTIONS(918), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(918), - [aux_sym_address_family_token1] = ACTIONS(918), - [aux_sym_batch_mode_token1] = ACTIONS(918), - [aux_sym_bind_address_token1] = ACTIONS(918), - [aux_sym_bind_interface_token1] = ACTIONS(918), - [aux_sym_canonical_domains_token1] = ACTIONS(918), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(918), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(918), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(918), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(918), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(918), - [aux_sym_certificate_file_token1] = ACTIONS(918), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(918), - [aux_sym_channel_timeout_token1] = ACTIONS(918), - [aux_sym_check_host_ip_token1] = ACTIONS(918), - [aux_sym_ciphers_token1] = ACTIONS(918), - [aux_sym_cipher_token1] = ACTIONS(920), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(918), - [aux_sym_compression_token1] = ACTIONS(918), - [aux_sym_connection_attempts_token1] = ACTIONS(918), - [aux_sym_connect_timeout_token1] = ACTIONS(918), - [aux_sym_control_master_token1] = ACTIONS(918), - [aux_sym_control_path_token1] = ACTIONS(918), - [aux_sym_control_persist_token1] = ACTIONS(918), - [aux_sym_dynamic_forward_token1] = ACTIONS(918), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(918), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(918), - [aux_sym_escape_char_token1] = ACTIONS(918), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(918), - [aux_sym_fingerprint_hash_token1] = ACTIONS(918), - [aux_sym_fork_after_authentication_token1] = ACTIONS(918), - [aux_sym_forward_agent_token1] = ACTIONS(918), - [aux_sym_forward_x11_token1] = ACTIONS(920), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(918), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(918), - [aux_sym_gateway_ports_token1] = ACTIONS(918), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(918), - [aux_sym_gssapi_authentication_token1] = ACTIONS(918), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(918), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(918), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(918), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(918), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(918), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(918), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(918), - [aux_sym_hash_known_hosts_token1] = ACTIONS(918), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(918), - [aux_sym_hostbased_authentication_token1] = ACTIONS(918), - [aux_sym_host_key_algorithms_token1] = ACTIONS(918), - [aux_sym_host_key_alias_token1] = ACTIONS(918), - [aux_sym_hostname_token1] = ACTIONS(918), - [aux_sym_identities_only_token1] = ACTIONS(918), - [aux_sym_identity_agent_token1] = ACTIONS(918), - [aux_sym_identity_file_token1] = ACTIONS(918), - [aux_sym_ignore_unknown_token1] = ACTIONS(918), - [aux_sym_include_token1] = ACTIONS(918), - [aux_sym_ip_qos_token1] = ACTIONS(918), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(918), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(918), - [aux_sym_kex_algorithms_token1] = ACTIONS(918), - [aux_sym_known_hosts_command_token1] = ACTIONS(918), - [aux_sym_local_command_token1] = ACTIONS(918), - [aux_sym_local_forward_token1] = ACTIONS(918), - [aux_sym_log_level_token1] = ACTIONS(918), - [aux_sym_log_verbose_token1] = ACTIONS(918), - [aux_sym_macs_token1] = ACTIONS(918), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(918), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(918), - [aux_sym_password_authentication_token1] = ACTIONS(918), - [aux_sym_permit_local_command_token1] = ACTIONS(918), - [aux_sym_permit_remote_open_token1] = ACTIONS(918), - [aux_sym_pkcs11_provider_token1] = ACTIONS(918), - [aux_sym_port_token1] = ACTIONS(918), - [aux_sym_preferred_authentications_token1] = ACTIONS(918), - [aux_sym_protocol_token1] = ACTIONS(918), - [aux_sym_proxy_command_token1] = ACTIONS(918), - [aux_sym_proxy_jump_token1] = ACTIONS(918), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(918), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(918), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(918), - [aux_sym_pubkey_authentication_token1] = ACTIONS(918), - [aux_sym_rekey_limit_token1] = ACTIONS(918), - [aux_sym_remote_command_token1] = ACTIONS(918), - [aux_sym_remote_forward_token1] = ACTIONS(918), - [aux_sym_request_tty_token1] = ACTIONS(918), - [aux_sym_required_rsa_size_token1] = ACTIONS(918), - [aux_sym_revoked_host_keys_token1] = ACTIONS(918), - [aux_sym_security_key_provider_token1] = ACTIONS(918), - [aux_sym_send_env_token1] = ACTIONS(918), - [aux_sym_server_alive_count_max_token1] = ACTIONS(918), - [aux_sym_server_alive_interval_token1] = ACTIONS(918), - [aux_sym_session_type_token1] = ACTIONS(918), - [aux_sym_set_env_token1] = ACTIONS(918), - [aux_sym_stdin_null_token1] = ACTIONS(918), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(918), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(918), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(918), - [aux_sym_syslog_facility_token1] = ACTIONS(918), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(918), - [aux_sym_keep_alive_token1] = ACTIONS(918), - [aux_sym_tag_token1] = ACTIONS(918), - [aux_sym_tunnel_token1] = ACTIONS(920), - [aux_sym_tunnel_device_token1] = ACTIONS(918), - [aux_sym_update_host_keys_token1] = ACTIONS(918), - [aux_sym_use_keychain_token1] = ACTIONS(918), - [aux_sym_use_roaming_token1] = ACTIONS(918), - [aux_sym_user_token1] = ACTIONS(920), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(918), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(918), - [aux_sym_visual_host_key_token1] = ACTIONS(918), - [aux_sym_xauth_location_token1] = ACTIONS(918), + [ts_builtin_sym_end] = ACTIONS(761), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(763), + [aux_sym_match_token1] = ACTIONS(761), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(761), + [aux_sym_address_family_token1] = ACTIONS(761), + [aux_sym_batch_mode_token1] = ACTIONS(761), + [aux_sym_bind_address_token1] = ACTIONS(761), + [aux_sym_bind_interface_token1] = ACTIONS(761), + [aux_sym_canonical_domains_token1] = ACTIONS(761), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(761), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(761), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(761), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(761), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(761), + [aux_sym_certificate_file_token1] = ACTIONS(761), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(761), + [aux_sym_channel_timeout_token1] = ACTIONS(761), + [aux_sym_check_host_ip_token1] = ACTIONS(761), + [aux_sym_ciphers_token1] = ACTIONS(761), + [aux_sym_cipher_token1] = ACTIONS(763), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(761), + [aux_sym_compression_token1] = ACTIONS(761), + [aux_sym_connection_attempts_token1] = ACTIONS(761), + [aux_sym_connect_timeout_token1] = ACTIONS(761), + [aux_sym_control_master_token1] = ACTIONS(761), + [aux_sym_control_path_token1] = ACTIONS(761), + [aux_sym_control_persist_token1] = ACTIONS(761), + [aux_sym_dynamic_forward_token1] = ACTIONS(761), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(761), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(761), + [aux_sym_escape_char_token1] = ACTIONS(761), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(761), + [aux_sym_fingerprint_hash_token1] = ACTIONS(761), + [aux_sym_fork_after_authentication_token1] = ACTIONS(761), + [aux_sym_forward_agent_token1] = ACTIONS(761), + [aux_sym_forward_x11_token1] = ACTIONS(763), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(761), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(761), + [aux_sym_gateway_ports_token1] = ACTIONS(761), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(761), + [aux_sym_gssapi_authentication_token1] = ACTIONS(761), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(761), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(761), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(761), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(761), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(761), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(761), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(761), + [aux_sym_hash_known_hosts_token1] = ACTIONS(761), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(761), + [aux_sym_hostbased_authentication_token1] = ACTIONS(761), + [aux_sym_host_key_algorithms_token1] = ACTIONS(761), + [aux_sym_host_key_alias_token1] = ACTIONS(761), + [aux_sym_hostname_token1] = ACTIONS(761), + [aux_sym_identities_only_token1] = ACTIONS(761), + [aux_sym_identity_agent_token1] = ACTIONS(761), + [aux_sym_identity_file_token1] = ACTIONS(761), + [aux_sym_ignore_unknown_token1] = ACTIONS(761), + [aux_sym_include_token1] = ACTIONS(761), + [aux_sym_ip_qos_token1] = ACTIONS(761), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(761), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(761), + [aux_sym_kex_algorithms_token1] = ACTIONS(761), + [aux_sym_known_hosts_command_token1] = ACTIONS(761), + [aux_sym_local_command_token1] = ACTIONS(761), + [aux_sym_local_forward_token1] = ACTIONS(761), + [aux_sym_log_level_token1] = ACTIONS(761), + [aux_sym_log_verbose_token1] = ACTIONS(761), + [aux_sym_macs_token1] = ACTIONS(761), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(761), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(761), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(761), + [aux_sym_password_authentication_token1] = ACTIONS(761), + [aux_sym_permit_local_command_token1] = ACTIONS(761), + [aux_sym_permit_remote_open_token1] = ACTIONS(761), + [aux_sym_pkcs11_provider_token1] = ACTIONS(761), + [aux_sym_port_token1] = ACTIONS(761), + [aux_sym_preferred_authentications_token1] = ACTIONS(761), + [aux_sym_protocol_token1] = ACTIONS(761), + [aux_sym_proxy_command_token1] = ACTIONS(761), + [aux_sym_proxy_jump_token1] = ACTIONS(761), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(761), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(761), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(761), + [aux_sym_pubkey_authentication_token1] = ACTIONS(761), + [aux_sym_rekey_limit_token1] = ACTIONS(761), + [aux_sym_remote_command_token1] = ACTIONS(761), + [aux_sym_remote_forward_token1] = ACTIONS(761), + [aux_sym_request_tty_token1] = ACTIONS(761), + [aux_sym_required_rsa_size_token1] = ACTIONS(761), + [aux_sym_revoked_host_keys_token1] = ACTIONS(761), + [aux_sym_security_key_provider_token1] = ACTIONS(761), + [aux_sym_send_env_token1] = ACTIONS(761), + [aux_sym_server_alive_count_max_token1] = ACTIONS(761), + [aux_sym_server_alive_interval_token1] = ACTIONS(761), + [aux_sym_session_type_token1] = ACTIONS(761), + [aux_sym_set_env_token1] = ACTIONS(761), + [aux_sym_stdin_null_token1] = ACTIONS(761), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(761), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(761), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(761), + [aux_sym_syslog_facility_token1] = ACTIONS(761), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(761), + [aux_sym_keep_alive_token1] = ACTIONS(761), + [aux_sym_tag_token1] = ACTIONS(761), + [aux_sym_tunnel_token1] = ACTIONS(763), + [aux_sym_tunnel_device_token1] = ACTIONS(761), + [aux_sym_update_host_keys_token1] = ACTIONS(761), + [aux_sym_use_keychain_token1] = ACTIONS(761), + [aux_sym_use_roaming_token1] = ACTIONS(761), + [aux_sym_user_token1] = ACTIONS(763), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(761), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(761), + [aux_sym_visual_host_key_token1] = ACTIONS(761), + [aux_sym_xauth_location_token1] = ACTIONS(761), }, [788] = { - [ts_builtin_sym_end] = ACTIONS(924), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(926), - [aux_sym_match_token1] = ACTIONS(924), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(924), - [aux_sym_address_family_token1] = ACTIONS(924), - [aux_sym_batch_mode_token1] = ACTIONS(924), - [aux_sym_bind_address_token1] = ACTIONS(924), - [aux_sym_bind_interface_token1] = ACTIONS(924), - [aux_sym_canonical_domains_token1] = ACTIONS(924), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(924), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(924), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(924), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(924), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(924), - [aux_sym_certificate_file_token1] = ACTIONS(924), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(924), - [aux_sym_channel_timeout_token1] = ACTIONS(924), - [aux_sym_check_host_ip_token1] = ACTIONS(924), - [aux_sym_ciphers_token1] = ACTIONS(924), - [aux_sym_cipher_token1] = ACTIONS(926), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(924), - [aux_sym_compression_token1] = ACTIONS(924), - [aux_sym_connection_attempts_token1] = ACTIONS(924), - [aux_sym_connect_timeout_token1] = ACTIONS(924), - [aux_sym_control_master_token1] = ACTIONS(924), - [aux_sym_control_path_token1] = ACTIONS(924), - [aux_sym_control_persist_token1] = ACTIONS(924), - [aux_sym_dynamic_forward_token1] = ACTIONS(924), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(924), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(924), - [aux_sym_escape_char_token1] = ACTIONS(924), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(924), - [aux_sym_fingerprint_hash_token1] = ACTIONS(924), - [aux_sym_fork_after_authentication_token1] = ACTIONS(924), - [aux_sym_forward_agent_token1] = ACTIONS(924), - [aux_sym_forward_x11_token1] = ACTIONS(926), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(924), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(924), - [aux_sym_gateway_ports_token1] = ACTIONS(924), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(924), - [aux_sym_gssapi_authentication_token1] = ACTIONS(924), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(924), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(924), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(924), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(924), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(924), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(924), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(924), - [aux_sym_hash_known_hosts_token1] = ACTIONS(924), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(924), - [aux_sym_hostbased_authentication_token1] = ACTIONS(924), - [aux_sym_host_key_algorithms_token1] = ACTIONS(924), - [aux_sym_host_key_alias_token1] = ACTIONS(924), - [aux_sym_hostname_token1] = ACTIONS(924), - [aux_sym_identities_only_token1] = ACTIONS(924), - [aux_sym_identity_agent_token1] = ACTIONS(924), - [aux_sym_identity_file_token1] = ACTIONS(924), - [aux_sym_ignore_unknown_token1] = ACTIONS(924), - [aux_sym_include_token1] = ACTIONS(924), - [aux_sym_ip_qos_token1] = ACTIONS(924), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(924), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(924), - [aux_sym_kex_algorithms_token1] = ACTIONS(924), - [aux_sym_known_hosts_command_token1] = ACTIONS(924), - [aux_sym_local_command_token1] = ACTIONS(924), - [aux_sym_local_forward_token1] = ACTIONS(924), - [aux_sym_log_level_token1] = ACTIONS(924), - [aux_sym_log_verbose_token1] = ACTIONS(924), - [aux_sym_macs_token1] = ACTIONS(924), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(924), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(924), - [aux_sym_password_authentication_token1] = ACTIONS(924), - [aux_sym_permit_local_command_token1] = ACTIONS(924), - [aux_sym_permit_remote_open_token1] = ACTIONS(924), - [aux_sym_pkcs11_provider_token1] = ACTIONS(924), - [aux_sym_port_token1] = ACTIONS(924), - [aux_sym_preferred_authentications_token1] = ACTIONS(924), - [aux_sym_protocol_token1] = ACTIONS(924), - [aux_sym_proxy_command_token1] = ACTIONS(924), - [aux_sym_proxy_jump_token1] = ACTIONS(924), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(924), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(924), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(924), - [aux_sym_pubkey_authentication_token1] = ACTIONS(924), - [aux_sym_rekey_limit_token1] = ACTIONS(924), - [aux_sym_remote_command_token1] = ACTIONS(924), - [aux_sym_remote_forward_token1] = ACTIONS(924), - [aux_sym_request_tty_token1] = ACTIONS(924), - [aux_sym_required_rsa_size_token1] = ACTIONS(924), - [aux_sym_revoked_host_keys_token1] = ACTIONS(924), - [aux_sym_security_key_provider_token1] = ACTIONS(924), - [aux_sym_send_env_token1] = ACTIONS(924), - [aux_sym_server_alive_count_max_token1] = ACTIONS(924), - [aux_sym_server_alive_interval_token1] = ACTIONS(924), - [aux_sym_session_type_token1] = ACTIONS(924), - [aux_sym_set_env_token1] = ACTIONS(924), - [aux_sym_stdin_null_token1] = ACTIONS(924), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(924), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(924), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(924), - [aux_sym_syslog_facility_token1] = ACTIONS(924), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(924), - [aux_sym_keep_alive_token1] = ACTIONS(924), - [aux_sym_tag_token1] = ACTIONS(924), - [aux_sym_tunnel_token1] = ACTIONS(926), - [aux_sym_tunnel_device_token1] = ACTIONS(924), - [aux_sym_update_host_keys_token1] = ACTIONS(924), - [aux_sym_use_keychain_token1] = ACTIONS(924), - [aux_sym_use_roaming_token1] = ACTIONS(924), - [aux_sym_user_token1] = ACTIONS(926), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(924), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(924), - [aux_sym_visual_host_key_token1] = ACTIONS(924), - [aux_sym_xauth_location_token1] = ACTIONS(924), + [ts_builtin_sym_end] = ACTIONS(1505), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1507), + [aux_sym_match_token1] = ACTIONS(1505), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1505), + [aux_sym_address_family_token1] = ACTIONS(1505), + [aux_sym_batch_mode_token1] = ACTIONS(1505), + [aux_sym_bind_address_token1] = ACTIONS(1505), + [aux_sym_bind_interface_token1] = ACTIONS(1505), + [aux_sym_canonical_domains_token1] = ACTIONS(1505), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1505), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1505), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1505), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1505), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1505), + [aux_sym_certificate_file_token1] = ACTIONS(1505), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1505), + [aux_sym_channel_timeout_token1] = ACTIONS(1505), + [aux_sym_check_host_ip_token1] = ACTIONS(1505), + [aux_sym_ciphers_token1] = ACTIONS(1505), + [aux_sym_cipher_token1] = ACTIONS(1507), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1505), + [aux_sym_compression_token1] = ACTIONS(1505), + [aux_sym_connection_attempts_token1] = ACTIONS(1505), + [aux_sym_connect_timeout_token1] = ACTIONS(1505), + [aux_sym_control_master_token1] = ACTIONS(1505), + [aux_sym_control_path_token1] = ACTIONS(1505), + [aux_sym_control_persist_token1] = ACTIONS(1505), + [aux_sym_dynamic_forward_token1] = ACTIONS(1505), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1505), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1505), + [aux_sym_escape_char_token1] = ACTIONS(1505), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1505), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1505), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1505), + [aux_sym_forward_agent_token1] = ACTIONS(1505), + [aux_sym_forward_x11_token1] = ACTIONS(1507), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1505), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1505), + [aux_sym_gateway_ports_token1] = ACTIONS(1505), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1505), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1505), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1505), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1505), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1505), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1505), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1505), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1505), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1505), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1505), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1505), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1505), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1505), + [aux_sym_host_key_alias_token1] = ACTIONS(1505), + [aux_sym_hostname_token1] = ACTIONS(1505), + [aux_sym_identities_only_token1] = ACTIONS(1505), + [aux_sym_identity_agent_token1] = ACTIONS(1505), + [aux_sym_identity_file_token1] = ACTIONS(1505), + [aux_sym_ignore_unknown_token1] = ACTIONS(1505), + [aux_sym_include_token1] = ACTIONS(1505), + [aux_sym_ip_qos_token1] = ACTIONS(1505), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1505), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1505), + [aux_sym_kex_algorithms_token1] = ACTIONS(1505), + [aux_sym_known_hosts_command_token1] = ACTIONS(1505), + [aux_sym_local_command_token1] = ACTIONS(1505), + [aux_sym_local_forward_token1] = ACTIONS(1505), + [aux_sym_log_level_token1] = ACTIONS(1505), + [aux_sym_log_verbose_token1] = ACTIONS(1505), + [aux_sym_macs_token1] = ACTIONS(1505), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1505), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1505), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1505), + [aux_sym_password_authentication_token1] = ACTIONS(1505), + [aux_sym_permit_local_command_token1] = ACTIONS(1505), + [aux_sym_permit_remote_open_token1] = ACTIONS(1505), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1505), + [aux_sym_port_token1] = ACTIONS(1505), + [aux_sym_preferred_authentications_token1] = ACTIONS(1505), + [aux_sym_protocol_token1] = ACTIONS(1505), + [aux_sym_proxy_command_token1] = ACTIONS(1505), + [aux_sym_proxy_jump_token1] = ACTIONS(1505), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1505), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1505), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1505), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1505), + [aux_sym_rekey_limit_token1] = ACTIONS(1505), + [aux_sym_remote_command_token1] = ACTIONS(1505), + [aux_sym_remote_forward_token1] = ACTIONS(1505), + [aux_sym_request_tty_token1] = ACTIONS(1505), + [aux_sym_required_rsa_size_token1] = ACTIONS(1505), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1505), + [aux_sym_security_key_provider_token1] = ACTIONS(1505), + [aux_sym_send_env_token1] = ACTIONS(1505), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1505), + [aux_sym_server_alive_interval_token1] = ACTIONS(1505), + [aux_sym_session_type_token1] = ACTIONS(1505), + [aux_sym_set_env_token1] = ACTIONS(1505), + [aux_sym_stdin_null_token1] = ACTIONS(1505), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1505), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1505), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1505), + [aux_sym_syslog_facility_token1] = ACTIONS(1505), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1505), + [aux_sym_keep_alive_token1] = ACTIONS(1505), + [aux_sym_tag_token1] = ACTIONS(1505), + [aux_sym_tunnel_token1] = ACTIONS(1507), + [aux_sym_tunnel_device_token1] = ACTIONS(1505), + [aux_sym_update_host_keys_token1] = ACTIONS(1505), + [aux_sym_use_keychain_token1] = ACTIONS(1505), + [aux_sym_use_roaming_token1] = ACTIONS(1505), + [aux_sym_user_token1] = ACTIONS(1507), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1505), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1505), + [aux_sym_visual_host_key_token1] = ACTIONS(1505), + [aux_sym_xauth_location_token1] = ACTIONS(1505), }, [789] = { - [ts_builtin_sym_end] = ACTIONS(1740), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1742), - [aux_sym_match_token1] = ACTIONS(1740), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1740), - [aux_sym_address_family_token1] = ACTIONS(1740), - [aux_sym_batch_mode_token1] = ACTIONS(1740), - [aux_sym_bind_address_token1] = ACTIONS(1740), - [aux_sym_bind_interface_token1] = ACTIONS(1740), - [aux_sym_canonical_domains_token1] = ACTIONS(1740), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1740), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1740), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1740), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1740), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1740), - [aux_sym_certificate_file_token1] = ACTIONS(1740), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1740), - [aux_sym_channel_timeout_token1] = ACTIONS(1740), - [aux_sym_check_host_ip_token1] = ACTIONS(1740), - [aux_sym_ciphers_token1] = ACTIONS(1740), - [aux_sym_cipher_token1] = ACTIONS(1742), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1740), - [aux_sym_compression_token1] = ACTIONS(1740), - [aux_sym_connection_attempts_token1] = ACTIONS(1740), - [aux_sym_connect_timeout_token1] = ACTIONS(1740), - [aux_sym_control_master_token1] = ACTIONS(1740), - [aux_sym_control_path_token1] = ACTIONS(1740), - [aux_sym_control_persist_token1] = ACTIONS(1740), - [aux_sym_dynamic_forward_token1] = ACTIONS(1740), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1740), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1740), - [aux_sym_escape_char_token1] = ACTIONS(1740), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1740), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1740), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1740), - [aux_sym_forward_agent_token1] = ACTIONS(1740), - [aux_sym_forward_x11_token1] = ACTIONS(1742), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1740), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1740), - [aux_sym_gateway_ports_token1] = ACTIONS(1740), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1740), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1740), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1740), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1740), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1740), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1740), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1740), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1740), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1740), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1740), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1740), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1740), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1740), - [aux_sym_host_key_alias_token1] = ACTIONS(1740), - [aux_sym_hostname_token1] = ACTIONS(1740), - [aux_sym_identities_only_token1] = ACTIONS(1740), - [aux_sym_identity_agent_token1] = ACTIONS(1740), - [aux_sym_identity_file_token1] = ACTIONS(1740), - [aux_sym_ignore_unknown_token1] = ACTIONS(1740), - [aux_sym_include_token1] = ACTIONS(1740), - [aux_sym_ip_qos_token1] = ACTIONS(1740), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1740), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1740), - [aux_sym_kex_algorithms_token1] = ACTIONS(1740), - [aux_sym_known_hosts_command_token1] = ACTIONS(1740), - [aux_sym_local_command_token1] = ACTIONS(1740), - [aux_sym_local_forward_token1] = ACTIONS(1740), - [aux_sym_log_level_token1] = ACTIONS(1740), - [aux_sym_log_verbose_token1] = ACTIONS(1740), - [aux_sym_macs_token1] = ACTIONS(1740), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1740), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1740), - [aux_sym_password_authentication_token1] = ACTIONS(1740), - [aux_sym_permit_local_command_token1] = ACTIONS(1740), - [aux_sym_permit_remote_open_token1] = ACTIONS(1740), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1740), - [aux_sym_port_token1] = ACTIONS(1740), - [aux_sym_preferred_authentications_token1] = ACTIONS(1740), - [aux_sym_protocol_token1] = ACTIONS(1740), - [aux_sym_proxy_command_token1] = ACTIONS(1740), - [aux_sym_proxy_jump_token1] = ACTIONS(1740), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1740), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1740), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1740), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1740), - [aux_sym_rekey_limit_token1] = ACTIONS(1740), - [aux_sym_remote_command_token1] = ACTIONS(1740), - [aux_sym_remote_forward_token1] = ACTIONS(1740), - [aux_sym_request_tty_token1] = ACTIONS(1740), - [aux_sym_required_rsa_size_token1] = ACTIONS(1740), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1740), - [aux_sym_security_key_provider_token1] = ACTIONS(1740), - [aux_sym_send_env_token1] = ACTIONS(1740), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1740), - [aux_sym_server_alive_interval_token1] = ACTIONS(1740), - [aux_sym_session_type_token1] = ACTIONS(1740), - [aux_sym_set_env_token1] = ACTIONS(1740), - [aux_sym_stdin_null_token1] = ACTIONS(1740), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1740), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1740), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1740), - [aux_sym_syslog_facility_token1] = ACTIONS(1740), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1740), - [aux_sym_keep_alive_token1] = ACTIONS(1740), - [aux_sym_tag_token1] = ACTIONS(1740), - [aux_sym_tunnel_token1] = ACTIONS(1742), - [aux_sym_tunnel_device_token1] = ACTIONS(1740), - [aux_sym_update_host_keys_token1] = ACTIONS(1740), - [aux_sym_use_keychain_token1] = ACTIONS(1740), - [aux_sym_use_roaming_token1] = ACTIONS(1740), - [aux_sym_user_token1] = ACTIONS(1742), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1740), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1740), - [aux_sym_visual_host_key_token1] = ACTIONS(1740), - [aux_sym_xauth_location_token1] = ACTIONS(1740), + [ts_builtin_sym_end] = ACTIONS(1767), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1769), + [aux_sym_match_token1] = ACTIONS(1767), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1767), + [aux_sym_address_family_token1] = ACTIONS(1767), + [aux_sym_batch_mode_token1] = ACTIONS(1767), + [aux_sym_bind_address_token1] = ACTIONS(1767), + [aux_sym_bind_interface_token1] = ACTIONS(1767), + [aux_sym_canonical_domains_token1] = ACTIONS(1767), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1767), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1767), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1767), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1767), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1767), + [aux_sym_certificate_file_token1] = ACTIONS(1767), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1767), + [aux_sym_channel_timeout_token1] = ACTIONS(1767), + [aux_sym_check_host_ip_token1] = ACTIONS(1767), + [aux_sym_ciphers_token1] = ACTIONS(1767), + [aux_sym_cipher_token1] = ACTIONS(1769), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1767), + [aux_sym_compression_token1] = ACTIONS(1767), + [aux_sym_connection_attempts_token1] = ACTIONS(1767), + [aux_sym_connect_timeout_token1] = ACTIONS(1767), + [aux_sym_control_master_token1] = ACTIONS(1767), + [aux_sym_control_path_token1] = ACTIONS(1767), + [aux_sym_control_persist_token1] = ACTIONS(1767), + [aux_sym_dynamic_forward_token1] = ACTIONS(1767), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1767), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1767), + [aux_sym_escape_char_token1] = ACTIONS(1767), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1767), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1767), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1767), + [aux_sym_forward_agent_token1] = ACTIONS(1767), + [aux_sym_forward_x11_token1] = ACTIONS(1769), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1767), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1767), + [aux_sym_gateway_ports_token1] = ACTIONS(1767), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1767), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1767), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1767), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1767), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1767), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1767), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1767), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1767), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1767), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1767), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1767), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1767), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1767), + [aux_sym_host_key_alias_token1] = ACTIONS(1767), + [aux_sym_hostname_token1] = ACTIONS(1767), + [aux_sym_identities_only_token1] = ACTIONS(1767), + [aux_sym_identity_agent_token1] = ACTIONS(1767), + [aux_sym_identity_file_token1] = ACTIONS(1767), + [aux_sym_ignore_unknown_token1] = ACTIONS(1767), + [aux_sym_include_token1] = ACTIONS(1767), + [aux_sym_ip_qos_token1] = ACTIONS(1767), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1767), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1767), + [aux_sym_kex_algorithms_token1] = ACTIONS(1767), + [aux_sym_known_hosts_command_token1] = ACTIONS(1767), + [aux_sym_local_command_token1] = ACTIONS(1767), + [aux_sym_local_forward_token1] = ACTIONS(1767), + [aux_sym_log_level_token1] = ACTIONS(1767), + [aux_sym_log_verbose_token1] = ACTIONS(1767), + [aux_sym_macs_token1] = ACTIONS(1767), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1767), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1767), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1767), + [aux_sym_password_authentication_token1] = ACTIONS(1767), + [aux_sym_permit_local_command_token1] = ACTIONS(1767), + [aux_sym_permit_remote_open_token1] = ACTIONS(1767), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1767), + [aux_sym_port_token1] = ACTIONS(1767), + [aux_sym_preferred_authentications_token1] = ACTIONS(1767), + [aux_sym_protocol_token1] = ACTIONS(1767), + [aux_sym_proxy_command_token1] = ACTIONS(1767), + [aux_sym_proxy_jump_token1] = ACTIONS(1767), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1767), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1767), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1767), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1767), + [aux_sym_rekey_limit_token1] = ACTIONS(1767), + [aux_sym_remote_command_token1] = ACTIONS(1767), + [aux_sym_remote_forward_token1] = ACTIONS(1767), + [aux_sym_request_tty_token1] = ACTIONS(1767), + [aux_sym_required_rsa_size_token1] = ACTIONS(1767), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1767), + [aux_sym_security_key_provider_token1] = ACTIONS(1767), + [aux_sym_send_env_token1] = ACTIONS(1767), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1767), + [aux_sym_server_alive_interval_token1] = ACTIONS(1767), + [aux_sym_session_type_token1] = ACTIONS(1767), + [aux_sym_set_env_token1] = ACTIONS(1767), + [aux_sym_stdin_null_token1] = ACTIONS(1767), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1767), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1767), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1767), + [aux_sym_syslog_facility_token1] = ACTIONS(1767), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1767), + [aux_sym_keep_alive_token1] = ACTIONS(1767), + [aux_sym_tag_token1] = ACTIONS(1767), + [aux_sym_tunnel_token1] = ACTIONS(1769), + [aux_sym_tunnel_device_token1] = ACTIONS(1767), + [aux_sym_update_host_keys_token1] = ACTIONS(1767), + [aux_sym_use_keychain_token1] = ACTIONS(1767), + [aux_sym_use_roaming_token1] = ACTIONS(1767), + [aux_sym_user_token1] = ACTIONS(1769), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1767), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1767), + [aux_sym_visual_host_key_token1] = ACTIONS(1767), + [aux_sym_xauth_location_token1] = ACTIONS(1767), }, [790] = { - [ts_builtin_sym_end] = ACTIONS(1716), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1718), - [aux_sym_match_token1] = ACTIONS(1716), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1716), - [aux_sym_address_family_token1] = ACTIONS(1716), - [aux_sym_batch_mode_token1] = ACTIONS(1716), - [aux_sym_bind_address_token1] = ACTIONS(1716), - [aux_sym_bind_interface_token1] = ACTIONS(1716), - [aux_sym_canonical_domains_token1] = ACTIONS(1716), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1716), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1716), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1716), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1716), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1716), - [aux_sym_certificate_file_token1] = ACTIONS(1716), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1716), - [aux_sym_channel_timeout_token1] = ACTIONS(1716), - [aux_sym_check_host_ip_token1] = ACTIONS(1716), - [aux_sym_ciphers_token1] = ACTIONS(1716), - [aux_sym_cipher_token1] = ACTIONS(1718), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1716), - [aux_sym_compression_token1] = ACTIONS(1716), - [aux_sym_connection_attempts_token1] = ACTIONS(1716), - [aux_sym_connect_timeout_token1] = ACTIONS(1716), - [aux_sym_control_master_token1] = ACTIONS(1716), - [aux_sym_control_path_token1] = ACTIONS(1716), - [aux_sym_control_persist_token1] = ACTIONS(1716), - [aux_sym_dynamic_forward_token1] = ACTIONS(1716), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1716), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1716), - [aux_sym_escape_char_token1] = ACTIONS(1716), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1716), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1716), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1716), - [aux_sym_forward_agent_token1] = ACTIONS(1716), - [aux_sym_forward_x11_token1] = ACTIONS(1718), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1716), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1716), - [aux_sym_gateway_ports_token1] = ACTIONS(1716), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1716), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1716), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1716), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1716), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1716), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1716), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1716), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1716), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1716), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1716), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1716), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1716), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1716), - [aux_sym_host_key_alias_token1] = ACTIONS(1716), - [aux_sym_hostname_token1] = ACTIONS(1716), - [aux_sym_identities_only_token1] = ACTIONS(1716), - [aux_sym_identity_agent_token1] = ACTIONS(1716), - [aux_sym_identity_file_token1] = ACTIONS(1716), - [aux_sym_ignore_unknown_token1] = ACTIONS(1716), - [aux_sym_include_token1] = ACTIONS(1716), - [aux_sym_ip_qos_token1] = ACTIONS(1716), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1716), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1716), - [aux_sym_kex_algorithms_token1] = ACTIONS(1716), - [aux_sym_known_hosts_command_token1] = ACTIONS(1716), - [aux_sym_local_command_token1] = ACTIONS(1716), - [aux_sym_local_forward_token1] = ACTIONS(1716), - [aux_sym_log_level_token1] = ACTIONS(1716), - [aux_sym_log_verbose_token1] = ACTIONS(1716), - [aux_sym_macs_token1] = ACTIONS(1716), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1716), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1716), - [aux_sym_password_authentication_token1] = ACTIONS(1716), - [aux_sym_permit_local_command_token1] = ACTIONS(1716), - [aux_sym_permit_remote_open_token1] = ACTIONS(1716), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1716), - [aux_sym_port_token1] = ACTIONS(1716), - [aux_sym_preferred_authentications_token1] = ACTIONS(1716), - [aux_sym_protocol_token1] = ACTIONS(1716), - [aux_sym_proxy_command_token1] = ACTIONS(1716), - [aux_sym_proxy_jump_token1] = ACTIONS(1716), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1716), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1716), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1716), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1716), - [aux_sym_rekey_limit_token1] = ACTIONS(1716), - [aux_sym_remote_command_token1] = ACTIONS(1716), - [aux_sym_remote_forward_token1] = ACTIONS(1716), - [aux_sym_request_tty_token1] = ACTIONS(1716), - [aux_sym_required_rsa_size_token1] = ACTIONS(1716), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1716), - [aux_sym_security_key_provider_token1] = ACTIONS(1716), - [aux_sym_send_env_token1] = ACTIONS(1716), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1716), - [aux_sym_server_alive_interval_token1] = ACTIONS(1716), - [aux_sym_session_type_token1] = ACTIONS(1716), - [aux_sym_set_env_token1] = ACTIONS(1716), - [aux_sym_stdin_null_token1] = ACTIONS(1716), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1716), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1716), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1716), - [aux_sym_syslog_facility_token1] = ACTIONS(1716), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1716), - [aux_sym_keep_alive_token1] = ACTIONS(1716), - [aux_sym_tag_token1] = ACTIONS(1716), - [aux_sym_tunnel_token1] = ACTIONS(1718), - [aux_sym_tunnel_device_token1] = ACTIONS(1716), - [aux_sym_update_host_keys_token1] = ACTIONS(1716), - [aux_sym_use_keychain_token1] = ACTIONS(1716), - [aux_sym_use_roaming_token1] = ACTIONS(1716), - [aux_sym_user_token1] = ACTIONS(1718), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1716), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1716), - [aux_sym_visual_host_key_token1] = ACTIONS(1716), - [aux_sym_xauth_location_token1] = ACTIONS(1716), + [ts_builtin_sym_end] = ACTIONS(911), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(913), + [aux_sym_match_token1] = ACTIONS(911), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(911), + [aux_sym_address_family_token1] = ACTIONS(911), + [aux_sym_batch_mode_token1] = ACTIONS(911), + [aux_sym_bind_address_token1] = ACTIONS(911), + [aux_sym_bind_interface_token1] = ACTIONS(911), + [aux_sym_canonical_domains_token1] = ACTIONS(911), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(911), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(911), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(911), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(911), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(911), + [aux_sym_certificate_file_token1] = ACTIONS(911), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(911), + [aux_sym_channel_timeout_token1] = ACTIONS(911), + [aux_sym_check_host_ip_token1] = ACTIONS(911), + [aux_sym_ciphers_token1] = ACTIONS(911), + [aux_sym_cipher_token1] = ACTIONS(913), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(911), + [aux_sym_compression_token1] = ACTIONS(911), + [aux_sym_connection_attempts_token1] = ACTIONS(911), + [aux_sym_connect_timeout_token1] = ACTIONS(911), + [aux_sym_control_master_token1] = ACTIONS(911), + [aux_sym_control_path_token1] = ACTIONS(911), + [aux_sym_control_persist_token1] = ACTIONS(911), + [aux_sym_dynamic_forward_token1] = ACTIONS(911), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(911), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(911), + [aux_sym_escape_char_token1] = ACTIONS(911), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(911), + [aux_sym_fingerprint_hash_token1] = ACTIONS(911), + [aux_sym_fork_after_authentication_token1] = ACTIONS(911), + [aux_sym_forward_agent_token1] = ACTIONS(911), + [aux_sym_forward_x11_token1] = ACTIONS(913), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(911), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(911), + [aux_sym_gateway_ports_token1] = ACTIONS(911), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(911), + [aux_sym_gssapi_authentication_token1] = ACTIONS(911), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(911), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(911), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(911), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(911), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(911), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(911), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(911), + [aux_sym_hash_known_hosts_token1] = ACTIONS(911), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(911), + [aux_sym_hostbased_authentication_token1] = ACTIONS(911), + [aux_sym_host_key_algorithms_token1] = ACTIONS(911), + [aux_sym_host_key_alias_token1] = ACTIONS(911), + [aux_sym_hostname_token1] = ACTIONS(911), + [aux_sym_identities_only_token1] = ACTIONS(911), + [aux_sym_identity_agent_token1] = ACTIONS(911), + [aux_sym_identity_file_token1] = ACTIONS(911), + [aux_sym_ignore_unknown_token1] = ACTIONS(911), + [aux_sym_include_token1] = ACTIONS(911), + [aux_sym_ip_qos_token1] = ACTIONS(911), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(911), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(911), + [aux_sym_kex_algorithms_token1] = ACTIONS(911), + [aux_sym_known_hosts_command_token1] = ACTIONS(911), + [aux_sym_local_command_token1] = ACTIONS(911), + [aux_sym_local_forward_token1] = ACTIONS(911), + [aux_sym_log_level_token1] = ACTIONS(911), + [aux_sym_log_verbose_token1] = ACTIONS(911), + [aux_sym_macs_token1] = ACTIONS(911), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(911), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(911), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(911), + [aux_sym_password_authentication_token1] = ACTIONS(911), + [aux_sym_permit_local_command_token1] = ACTIONS(911), + [aux_sym_permit_remote_open_token1] = ACTIONS(911), + [aux_sym_pkcs11_provider_token1] = ACTIONS(911), + [aux_sym_port_token1] = ACTIONS(911), + [aux_sym_preferred_authentications_token1] = ACTIONS(911), + [aux_sym_protocol_token1] = ACTIONS(911), + [aux_sym_proxy_command_token1] = ACTIONS(911), + [aux_sym_proxy_jump_token1] = ACTIONS(911), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(911), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(911), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(911), + [aux_sym_pubkey_authentication_token1] = ACTIONS(911), + [aux_sym_rekey_limit_token1] = ACTIONS(911), + [aux_sym_remote_command_token1] = ACTIONS(911), + [aux_sym_remote_forward_token1] = ACTIONS(911), + [aux_sym_request_tty_token1] = ACTIONS(911), + [aux_sym_required_rsa_size_token1] = ACTIONS(911), + [aux_sym_revoked_host_keys_token1] = ACTIONS(911), + [aux_sym_security_key_provider_token1] = ACTIONS(911), + [aux_sym_send_env_token1] = ACTIONS(911), + [aux_sym_server_alive_count_max_token1] = ACTIONS(911), + [aux_sym_server_alive_interval_token1] = ACTIONS(911), + [aux_sym_session_type_token1] = ACTIONS(911), + [aux_sym_set_env_token1] = ACTIONS(911), + [aux_sym_stdin_null_token1] = ACTIONS(911), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(911), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(911), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(911), + [aux_sym_syslog_facility_token1] = ACTIONS(911), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(911), + [aux_sym_keep_alive_token1] = ACTIONS(911), + [aux_sym_tag_token1] = ACTIONS(911), + [aux_sym_tunnel_token1] = ACTIONS(913), + [aux_sym_tunnel_device_token1] = ACTIONS(911), + [aux_sym_update_host_keys_token1] = ACTIONS(911), + [aux_sym_use_keychain_token1] = ACTIONS(911), + [aux_sym_use_roaming_token1] = ACTIONS(911), + [aux_sym_user_token1] = ACTIONS(913), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(911), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(911), + [aux_sym_visual_host_key_token1] = ACTIONS(911), + [aux_sym_xauth_location_token1] = ACTIONS(911), }, [791] = { - [ts_builtin_sym_end] = ACTIONS(930), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(932), - [aux_sym_match_token1] = ACTIONS(930), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(930), - [aux_sym_address_family_token1] = ACTIONS(930), - [aux_sym_batch_mode_token1] = ACTIONS(930), - [aux_sym_bind_address_token1] = ACTIONS(930), - [aux_sym_bind_interface_token1] = ACTIONS(930), - [aux_sym_canonical_domains_token1] = ACTIONS(930), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(930), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(930), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(930), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(930), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(930), - [aux_sym_certificate_file_token1] = ACTIONS(930), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(930), - [aux_sym_channel_timeout_token1] = ACTIONS(930), - [aux_sym_check_host_ip_token1] = ACTIONS(930), - [aux_sym_ciphers_token1] = ACTIONS(930), - [aux_sym_cipher_token1] = ACTIONS(932), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(930), - [aux_sym_compression_token1] = ACTIONS(930), - [aux_sym_connection_attempts_token1] = ACTIONS(930), - [aux_sym_connect_timeout_token1] = ACTIONS(930), - [aux_sym_control_master_token1] = ACTIONS(930), - [aux_sym_control_path_token1] = ACTIONS(930), - [aux_sym_control_persist_token1] = ACTIONS(930), - [aux_sym_dynamic_forward_token1] = ACTIONS(930), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(930), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(930), - [aux_sym_escape_char_token1] = ACTIONS(930), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(930), - [aux_sym_fingerprint_hash_token1] = ACTIONS(930), - [aux_sym_fork_after_authentication_token1] = ACTIONS(930), - [aux_sym_forward_agent_token1] = ACTIONS(930), - [aux_sym_forward_x11_token1] = ACTIONS(932), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(930), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(930), - [aux_sym_gateway_ports_token1] = ACTIONS(930), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(930), - [aux_sym_gssapi_authentication_token1] = ACTIONS(930), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(930), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(930), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(930), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(930), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(930), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(930), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(930), - [aux_sym_hash_known_hosts_token1] = ACTIONS(930), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(930), - [aux_sym_hostbased_authentication_token1] = ACTIONS(930), - [aux_sym_host_key_algorithms_token1] = ACTIONS(930), - [aux_sym_host_key_alias_token1] = ACTIONS(930), - [aux_sym_hostname_token1] = ACTIONS(930), - [aux_sym_identities_only_token1] = ACTIONS(930), - [aux_sym_identity_agent_token1] = ACTIONS(930), - [aux_sym_identity_file_token1] = ACTIONS(930), - [aux_sym_ignore_unknown_token1] = ACTIONS(930), - [aux_sym_include_token1] = ACTIONS(930), - [aux_sym_ip_qos_token1] = ACTIONS(930), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(930), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(930), - [aux_sym_kex_algorithms_token1] = ACTIONS(930), - [aux_sym_known_hosts_command_token1] = ACTIONS(930), - [aux_sym_local_command_token1] = ACTIONS(930), - [aux_sym_local_forward_token1] = ACTIONS(930), - [aux_sym_log_level_token1] = ACTIONS(930), - [aux_sym_log_verbose_token1] = ACTIONS(930), - [aux_sym_macs_token1] = ACTIONS(930), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(930), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(930), - [aux_sym_password_authentication_token1] = ACTIONS(930), - [aux_sym_permit_local_command_token1] = ACTIONS(930), - [aux_sym_permit_remote_open_token1] = ACTIONS(930), - [aux_sym_pkcs11_provider_token1] = ACTIONS(930), - [aux_sym_port_token1] = ACTIONS(930), - [aux_sym_preferred_authentications_token1] = ACTIONS(930), - [aux_sym_protocol_token1] = ACTIONS(930), - [aux_sym_proxy_command_token1] = ACTIONS(930), - [aux_sym_proxy_jump_token1] = ACTIONS(930), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(930), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(930), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(930), - [aux_sym_pubkey_authentication_token1] = ACTIONS(930), - [aux_sym_rekey_limit_token1] = ACTIONS(930), - [aux_sym_remote_command_token1] = ACTIONS(930), - [aux_sym_remote_forward_token1] = ACTIONS(930), - [aux_sym_request_tty_token1] = ACTIONS(930), - [aux_sym_required_rsa_size_token1] = ACTIONS(930), - [aux_sym_revoked_host_keys_token1] = ACTIONS(930), - [aux_sym_security_key_provider_token1] = ACTIONS(930), - [aux_sym_send_env_token1] = ACTIONS(930), - [aux_sym_server_alive_count_max_token1] = ACTIONS(930), - [aux_sym_server_alive_interval_token1] = ACTIONS(930), - [aux_sym_session_type_token1] = ACTIONS(930), - [aux_sym_set_env_token1] = ACTIONS(930), - [aux_sym_stdin_null_token1] = ACTIONS(930), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(930), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(930), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(930), - [aux_sym_syslog_facility_token1] = ACTIONS(930), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(930), - [aux_sym_keep_alive_token1] = ACTIONS(930), - [aux_sym_tag_token1] = ACTIONS(930), - [aux_sym_tunnel_token1] = ACTIONS(932), - [aux_sym_tunnel_device_token1] = ACTIONS(930), - [aux_sym_update_host_keys_token1] = ACTIONS(930), - [aux_sym_use_keychain_token1] = ACTIONS(930), - [aux_sym_use_roaming_token1] = ACTIONS(930), - [aux_sym_user_token1] = ACTIONS(932), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(930), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(930), - [aux_sym_visual_host_key_token1] = ACTIONS(930), - [aux_sym_xauth_location_token1] = ACTIONS(930), + [ts_builtin_sym_end] = ACTIONS(779), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(781), + [aux_sym_match_token1] = ACTIONS(779), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(779), + [aux_sym_address_family_token1] = ACTIONS(779), + [aux_sym_batch_mode_token1] = ACTIONS(779), + [aux_sym_bind_address_token1] = ACTIONS(779), + [aux_sym_bind_interface_token1] = ACTIONS(779), + [aux_sym_canonical_domains_token1] = ACTIONS(779), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(779), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(779), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(779), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(779), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(779), + [aux_sym_certificate_file_token1] = ACTIONS(779), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(779), + [aux_sym_channel_timeout_token1] = ACTIONS(779), + [aux_sym_check_host_ip_token1] = ACTIONS(779), + [aux_sym_ciphers_token1] = ACTIONS(779), + [aux_sym_cipher_token1] = ACTIONS(781), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(779), + [aux_sym_compression_token1] = ACTIONS(779), + [aux_sym_connection_attempts_token1] = ACTIONS(779), + [aux_sym_connect_timeout_token1] = ACTIONS(779), + [aux_sym_control_master_token1] = ACTIONS(779), + [aux_sym_control_path_token1] = ACTIONS(779), + [aux_sym_control_persist_token1] = ACTIONS(779), + [aux_sym_dynamic_forward_token1] = ACTIONS(779), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(779), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(779), + [aux_sym_escape_char_token1] = ACTIONS(779), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(779), + [aux_sym_fingerprint_hash_token1] = ACTIONS(779), + [aux_sym_fork_after_authentication_token1] = ACTIONS(779), + [aux_sym_forward_agent_token1] = ACTIONS(779), + [aux_sym_forward_x11_token1] = ACTIONS(781), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(779), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(779), + [aux_sym_gateway_ports_token1] = ACTIONS(779), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(779), + [aux_sym_gssapi_authentication_token1] = ACTIONS(779), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(779), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(779), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(779), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(779), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(779), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(779), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(779), + [aux_sym_hash_known_hosts_token1] = ACTIONS(779), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(779), + [aux_sym_hostbased_authentication_token1] = ACTIONS(779), + [aux_sym_host_key_algorithms_token1] = ACTIONS(779), + [aux_sym_host_key_alias_token1] = ACTIONS(779), + [aux_sym_hostname_token1] = ACTIONS(779), + [aux_sym_identities_only_token1] = ACTIONS(779), + [aux_sym_identity_agent_token1] = ACTIONS(779), + [aux_sym_identity_file_token1] = ACTIONS(779), + [aux_sym_ignore_unknown_token1] = ACTIONS(779), + [aux_sym_include_token1] = ACTIONS(779), + [aux_sym_ip_qos_token1] = ACTIONS(779), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(779), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(779), + [aux_sym_kex_algorithms_token1] = ACTIONS(779), + [aux_sym_known_hosts_command_token1] = ACTIONS(779), + [aux_sym_local_command_token1] = ACTIONS(779), + [aux_sym_local_forward_token1] = ACTIONS(779), + [aux_sym_log_level_token1] = ACTIONS(779), + [aux_sym_log_verbose_token1] = ACTIONS(779), + [aux_sym_macs_token1] = ACTIONS(779), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(779), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(779), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(779), + [aux_sym_password_authentication_token1] = ACTIONS(779), + [aux_sym_permit_local_command_token1] = ACTIONS(779), + [aux_sym_permit_remote_open_token1] = ACTIONS(779), + [aux_sym_pkcs11_provider_token1] = ACTIONS(779), + [aux_sym_port_token1] = ACTIONS(779), + [aux_sym_preferred_authentications_token1] = ACTIONS(779), + [aux_sym_protocol_token1] = ACTIONS(779), + [aux_sym_proxy_command_token1] = ACTIONS(779), + [aux_sym_proxy_jump_token1] = ACTIONS(779), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(779), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(779), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(779), + [aux_sym_pubkey_authentication_token1] = ACTIONS(779), + [aux_sym_rekey_limit_token1] = ACTIONS(779), + [aux_sym_remote_command_token1] = ACTIONS(779), + [aux_sym_remote_forward_token1] = ACTIONS(779), + [aux_sym_request_tty_token1] = ACTIONS(779), + [aux_sym_required_rsa_size_token1] = ACTIONS(779), + [aux_sym_revoked_host_keys_token1] = ACTIONS(779), + [aux_sym_security_key_provider_token1] = ACTIONS(779), + [aux_sym_send_env_token1] = ACTIONS(779), + [aux_sym_server_alive_count_max_token1] = ACTIONS(779), + [aux_sym_server_alive_interval_token1] = ACTIONS(779), + [aux_sym_session_type_token1] = ACTIONS(779), + [aux_sym_set_env_token1] = ACTIONS(779), + [aux_sym_stdin_null_token1] = ACTIONS(779), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(779), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(779), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(779), + [aux_sym_syslog_facility_token1] = ACTIONS(779), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(779), + [aux_sym_keep_alive_token1] = ACTIONS(779), + [aux_sym_tag_token1] = ACTIONS(779), + [aux_sym_tunnel_token1] = ACTIONS(781), + [aux_sym_tunnel_device_token1] = ACTIONS(779), + [aux_sym_update_host_keys_token1] = ACTIONS(779), + [aux_sym_use_keychain_token1] = ACTIONS(779), + [aux_sym_use_roaming_token1] = ACTIONS(779), + [aux_sym_user_token1] = ACTIONS(781), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(779), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(779), + [aux_sym_visual_host_key_token1] = ACTIONS(779), + [aux_sym_xauth_location_token1] = ACTIONS(779), }, [792] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1736), - [aux_sym_match_token1] = ACTIONS(1734), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1734), - [aux_sym_address_family_token1] = ACTIONS(1734), - [aux_sym_batch_mode_token1] = ACTIONS(1734), - [aux_sym_bind_address_token1] = ACTIONS(1734), - [aux_sym_bind_interface_token1] = ACTIONS(1734), - [aux_sym_canonical_domains_token1] = ACTIONS(1734), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1734), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1734), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1734), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1734), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1734), - [aux_sym_certificate_file_token1] = ACTIONS(1734), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1734), - [aux_sym_channel_timeout_token1] = ACTIONS(1734), - [aux_sym_check_host_ip_token1] = ACTIONS(1734), - [aux_sym_ciphers_token1] = ACTIONS(1734), - [aux_sym_cipher_token1] = ACTIONS(1736), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1734), - [aux_sym_compression_token1] = ACTIONS(1734), - [aux_sym_connection_attempts_token1] = ACTIONS(1734), - [aux_sym_connect_timeout_token1] = ACTIONS(1734), - [aux_sym_control_master_token1] = ACTIONS(1734), - [aux_sym_control_path_token1] = ACTIONS(1734), - [aux_sym_control_persist_token1] = ACTIONS(1734), - [aux_sym_dynamic_forward_token1] = ACTIONS(1734), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1734), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1734), - [aux_sym_escape_char_token1] = ACTIONS(1734), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1734), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1734), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1734), - [aux_sym_forward_agent_token1] = ACTIONS(1734), - [aux_sym_forward_x11_token1] = ACTIONS(1736), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1734), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1734), - [aux_sym_gateway_ports_token1] = ACTIONS(1734), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1734), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1734), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1734), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1734), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1734), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1734), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1734), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1734), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1734), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1734), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1734), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1734), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1734), - [aux_sym_host_key_alias_token1] = ACTIONS(1734), - [aux_sym_hostname_token1] = ACTIONS(1734), - [aux_sym_identities_only_token1] = ACTIONS(1734), - [aux_sym_identity_agent_token1] = ACTIONS(1734), - [aux_sym_identity_file_token1] = ACTIONS(1734), - [aux_sym_ignore_unknown_token1] = ACTIONS(1734), - [aux_sym_include_token1] = ACTIONS(1734), - [aux_sym_ip_qos_token1] = ACTIONS(1734), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1734), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1734), - [aux_sym_kex_algorithms_token1] = ACTIONS(1734), - [aux_sym_known_hosts_command_token1] = ACTIONS(1734), - [aux_sym_local_command_token1] = ACTIONS(1734), - [aux_sym_local_forward_token1] = ACTIONS(1734), - [aux_sym_log_level_token1] = ACTIONS(1734), - [aux_sym_log_verbose_token1] = ACTIONS(1734), - [aux_sym_macs_token1] = ACTIONS(1734), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1734), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1734), - [aux_sym_password_authentication_token1] = ACTIONS(1734), - [aux_sym_permit_local_command_token1] = ACTIONS(1734), - [aux_sym_permit_remote_open_token1] = ACTIONS(1734), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1734), - [aux_sym_port_token1] = ACTIONS(1734), - [aux_sym_preferred_authentications_token1] = ACTIONS(1734), - [aux_sym_protocol_token1] = ACTIONS(1734), - [aux_sym_proxy_command_token1] = ACTIONS(1734), - [aux_sym_proxy_jump_token1] = ACTIONS(1734), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1734), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1734), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1734), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1734), - [aux_sym_rekey_limit_token1] = ACTIONS(1734), - [aux_sym_remote_command_token1] = ACTIONS(1734), - [aux_sym_remote_forward_token1] = ACTIONS(1734), - [aux_sym_request_tty_token1] = ACTIONS(1734), - [aux_sym_required_rsa_size_token1] = ACTIONS(1734), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1734), - [aux_sym_security_key_provider_token1] = ACTIONS(1734), - [aux_sym_send_env_token1] = ACTIONS(1734), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1734), - [aux_sym_server_alive_interval_token1] = ACTIONS(1734), - [aux_sym_session_type_token1] = ACTIONS(1734), - [aux_sym_set_env_token1] = ACTIONS(1734), - [aux_sym_stdin_null_token1] = ACTIONS(1734), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1734), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1734), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1734), - [aux_sym_syslog_facility_token1] = ACTIONS(1734), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1734), - [aux_sym_keep_alive_token1] = ACTIONS(1734), - [aux_sym_tag_token1] = ACTIONS(1734), - [aux_sym_tunnel_token1] = ACTIONS(1736), - [aux_sym_tunnel_device_token1] = ACTIONS(1734), - [aux_sym_update_host_keys_token1] = ACTIONS(1734), - [aux_sym_use_keychain_token1] = ACTIONS(1734), - [aux_sym_use_roaming_token1] = ACTIONS(1734), - [aux_sym_user_token1] = ACTIONS(1736), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1734), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1734), - [aux_sym_visual_host_key_token1] = ACTIONS(1734), - [aux_sym_xauth_location_token1] = ACTIONS(1734), + [ts_builtin_sym_end] = ACTIONS(1761), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1763), + [aux_sym_match_token1] = ACTIONS(1761), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1761), + [aux_sym_address_family_token1] = ACTIONS(1761), + [aux_sym_batch_mode_token1] = ACTIONS(1761), + [aux_sym_bind_address_token1] = ACTIONS(1761), + [aux_sym_bind_interface_token1] = ACTIONS(1761), + [aux_sym_canonical_domains_token1] = ACTIONS(1761), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1761), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1761), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1761), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1761), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1761), + [aux_sym_certificate_file_token1] = ACTIONS(1761), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1761), + [aux_sym_channel_timeout_token1] = ACTIONS(1761), + [aux_sym_check_host_ip_token1] = ACTIONS(1761), + [aux_sym_ciphers_token1] = ACTIONS(1761), + [aux_sym_cipher_token1] = ACTIONS(1763), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1761), + [aux_sym_compression_token1] = ACTIONS(1761), + [aux_sym_connection_attempts_token1] = ACTIONS(1761), + [aux_sym_connect_timeout_token1] = ACTIONS(1761), + [aux_sym_control_master_token1] = ACTIONS(1761), + [aux_sym_control_path_token1] = ACTIONS(1761), + [aux_sym_control_persist_token1] = ACTIONS(1761), + [aux_sym_dynamic_forward_token1] = ACTIONS(1761), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1761), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1761), + [aux_sym_escape_char_token1] = ACTIONS(1761), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1761), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1761), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1761), + [aux_sym_forward_agent_token1] = ACTIONS(1761), + [aux_sym_forward_x11_token1] = ACTIONS(1763), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1761), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1761), + [aux_sym_gateway_ports_token1] = ACTIONS(1761), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1761), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1761), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1761), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1761), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1761), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1761), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1761), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1761), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1761), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1761), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1761), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1761), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1761), + [aux_sym_host_key_alias_token1] = ACTIONS(1761), + [aux_sym_hostname_token1] = ACTIONS(1761), + [aux_sym_identities_only_token1] = ACTIONS(1761), + [aux_sym_identity_agent_token1] = ACTIONS(1761), + [aux_sym_identity_file_token1] = ACTIONS(1761), + [aux_sym_ignore_unknown_token1] = ACTIONS(1761), + [aux_sym_include_token1] = ACTIONS(1761), + [aux_sym_ip_qos_token1] = ACTIONS(1761), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1761), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1761), + [aux_sym_kex_algorithms_token1] = ACTIONS(1761), + [aux_sym_known_hosts_command_token1] = ACTIONS(1761), + [aux_sym_local_command_token1] = ACTIONS(1761), + [aux_sym_local_forward_token1] = ACTIONS(1761), + [aux_sym_log_level_token1] = ACTIONS(1761), + [aux_sym_log_verbose_token1] = ACTIONS(1761), + [aux_sym_macs_token1] = ACTIONS(1761), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1761), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1761), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1761), + [aux_sym_password_authentication_token1] = ACTIONS(1761), + [aux_sym_permit_local_command_token1] = ACTIONS(1761), + [aux_sym_permit_remote_open_token1] = ACTIONS(1761), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1761), + [aux_sym_port_token1] = ACTIONS(1761), + [aux_sym_preferred_authentications_token1] = ACTIONS(1761), + [aux_sym_protocol_token1] = ACTIONS(1761), + [aux_sym_proxy_command_token1] = ACTIONS(1761), + [aux_sym_proxy_jump_token1] = ACTIONS(1761), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1761), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1761), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1761), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1761), + [aux_sym_rekey_limit_token1] = ACTIONS(1761), + [aux_sym_remote_command_token1] = ACTIONS(1761), + [aux_sym_remote_forward_token1] = ACTIONS(1761), + [aux_sym_request_tty_token1] = ACTIONS(1761), + [aux_sym_required_rsa_size_token1] = ACTIONS(1761), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1761), + [aux_sym_security_key_provider_token1] = ACTIONS(1761), + [aux_sym_send_env_token1] = ACTIONS(1761), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1761), + [aux_sym_server_alive_interval_token1] = ACTIONS(1761), + [aux_sym_session_type_token1] = ACTIONS(1761), + [aux_sym_set_env_token1] = ACTIONS(1761), + [aux_sym_stdin_null_token1] = ACTIONS(1761), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1761), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1761), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1761), + [aux_sym_syslog_facility_token1] = ACTIONS(1761), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1761), + [aux_sym_keep_alive_token1] = ACTIONS(1761), + [aux_sym_tag_token1] = ACTIONS(1761), + [aux_sym_tunnel_token1] = ACTIONS(1763), + [aux_sym_tunnel_device_token1] = ACTIONS(1761), + [aux_sym_update_host_keys_token1] = ACTIONS(1761), + [aux_sym_use_keychain_token1] = ACTIONS(1761), + [aux_sym_use_roaming_token1] = ACTIONS(1761), + [aux_sym_user_token1] = ACTIONS(1763), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1761), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1761), + [aux_sym_visual_host_key_token1] = ACTIONS(1761), + [aux_sym_xauth_location_token1] = ACTIONS(1761), }, [793] = { - [ts_builtin_sym_end] = ACTIONS(936), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(938), - [aux_sym_match_token1] = ACTIONS(936), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(936), - [aux_sym_address_family_token1] = ACTIONS(936), - [aux_sym_batch_mode_token1] = ACTIONS(936), - [aux_sym_bind_address_token1] = ACTIONS(936), - [aux_sym_bind_interface_token1] = ACTIONS(936), - [aux_sym_canonical_domains_token1] = ACTIONS(936), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(936), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(936), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(936), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(936), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(936), - [aux_sym_certificate_file_token1] = ACTIONS(936), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(936), - [aux_sym_channel_timeout_token1] = ACTIONS(936), - [aux_sym_check_host_ip_token1] = ACTIONS(936), - [aux_sym_ciphers_token1] = ACTIONS(936), - [aux_sym_cipher_token1] = ACTIONS(938), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(936), - [aux_sym_compression_token1] = ACTIONS(936), - [aux_sym_connection_attempts_token1] = ACTIONS(936), - [aux_sym_connect_timeout_token1] = ACTIONS(936), - [aux_sym_control_master_token1] = ACTIONS(936), - [aux_sym_control_path_token1] = ACTIONS(936), - [aux_sym_control_persist_token1] = ACTIONS(936), - [aux_sym_dynamic_forward_token1] = ACTIONS(936), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(936), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(936), - [aux_sym_escape_char_token1] = ACTIONS(936), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(936), - [aux_sym_fingerprint_hash_token1] = ACTIONS(936), - [aux_sym_fork_after_authentication_token1] = ACTIONS(936), - [aux_sym_forward_agent_token1] = ACTIONS(936), - [aux_sym_forward_x11_token1] = ACTIONS(938), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(936), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(936), - [aux_sym_gateway_ports_token1] = ACTIONS(936), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(936), - [aux_sym_gssapi_authentication_token1] = ACTIONS(936), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(936), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(936), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(936), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(936), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(936), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(936), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(936), - [aux_sym_hash_known_hosts_token1] = ACTIONS(936), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(936), - [aux_sym_hostbased_authentication_token1] = ACTIONS(936), - [aux_sym_host_key_algorithms_token1] = ACTIONS(936), - [aux_sym_host_key_alias_token1] = ACTIONS(936), - [aux_sym_hostname_token1] = ACTIONS(936), - [aux_sym_identities_only_token1] = ACTIONS(936), - [aux_sym_identity_agent_token1] = ACTIONS(936), - [aux_sym_identity_file_token1] = ACTIONS(936), - [aux_sym_ignore_unknown_token1] = ACTIONS(936), - [aux_sym_include_token1] = ACTIONS(936), - [aux_sym_ip_qos_token1] = ACTIONS(936), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(936), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(936), - [aux_sym_kex_algorithms_token1] = ACTIONS(936), - [aux_sym_known_hosts_command_token1] = ACTIONS(936), - [aux_sym_local_command_token1] = ACTIONS(936), - [aux_sym_local_forward_token1] = ACTIONS(936), - [aux_sym_log_level_token1] = ACTIONS(936), - [aux_sym_log_verbose_token1] = ACTIONS(936), - [aux_sym_macs_token1] = ACTIONS(936), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(936), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(936), - [aux_sym_password_authentication_token1] = ACTIONS(936), - [aux_sym_permit_local_command_token1] = ACTIONS(936), - [aux_sym_permit_remote_open_token1] = ACTIONS(936), - [aux_sym_pkcs11_provider_token1] = ACTIONS(936), - [aux_sym_port_token1] = ACTIONS(936), - [aux_sym_preferred_authentications_token1] = ACTIONS(936), - [aux_sym_protocol_token1] = ACTIONS(936), - [aux_sym_proxy_command_token1] = ACTIONS(936), - [aux_sym_proxy_jump_token1] = ACTIONS(936), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(936), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(936), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(936), - [aux_sym_pubkey_authentication_token1] = ACTIONS(936), - [aux_sym_rekey_limit_token1] = ACTIONS(936), - [aux_sym_remote_command_token1] = ACTIONS(936), - [aux_sym_remote_forward_token1] = ACTIONS(936), - [aux_sym_request_tty_token1] = ACTIONS(936), - [aux_sym_required_rsa_size_token1] = ACTIONS(936), - [aux_sym_revoked_host_keys_token1] = ACTIONS(936), - [aux_sym_security_key_provider_token1] = ACTIONS(936), - [aux_sym_send_env_token1] = ACTIONS(936), - [aux_sym_server_alive_count_max_token1] = ACTIONS(936), - [aux_sym_server_alive_interval_token1] = ACTIONS(936), - [aux_sym_session_type_token1] = ACTIONS(936), - [aux_sym_set_env_token1] = ACTIONS(936), - [aux_sym_stdin_null_token1] = ACTIONS(936), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(936), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(936), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(936), - [aux_sym_syslog_facility_token1] = ACTIONS(936), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(936), - [aux_sym_keep_alive_token1] = ACTIONS(936), - [aux_sym_tag_token1] = ACTIONS(936), - [aux_sym_tunnel_token1] = ACTIONS(938), - [aux_sym_tunnel_device_token1] = ACTIONS(936), - [aux_sym_update_host_keys_token1] = ACTIONS(936), - [aux_sym_use_keychain_token1] = ACTIONS(936), - [aux_sym_use_roaming_token1] = ACTIONS(936), - [aux_sym_user_token1] = ACTIONS(938), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(936), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(936), - [aux_sym_visual_host_key_token1] = ACTIONS(936), - [aux_sym_xauth_location_token1] = ACTIONS(936), + [ts_builtin_sym_end] = ACTIONS(767), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(769), + [aux_sym_match_token1] = ACTIONS(767), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(767), + [aux_sym_address_family_token1] = ACTIONS(767), + [aux_sym_batch_mode_token1] = ACTIONS(767), + [aux_sym_bind_address_token1] = ACTIONS(767), + [aux_sym_bind_interface_token1] = ACTIONS(767), + [aux_sym_canonical_domains_token1] = ACTIONS(767), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(767), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(767), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(767), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(767), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(767), + [aux_sym_certificate_file_token1] = ACTIONS(767), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(767), + [aux_sym_channel_timeout_token1] = ACTIONS(767), + [aux_sym_check_host_ip_token1] = ACTIONS(767), + [aux_sym_ciphers_token1] = ACTIONS(767), + [aux_sym_cipher_token1] = ACTIONS(769), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(767), + [aux_sym_compression_token1] = ACTIONS(767), + [aux_sym_connection_attempts_token1] = ACTIONS(767), + [aux_sym_connect_timeout_token1] = ACTIONS(767), + [aux_sym_control_master_token1] = ACTIONS(767), + [aux_sym_control_path_token1] = ACTIONS(767), + [aux_sym_control_persist_token1] = ACTIONS(767), + [aux_sym_dynamic_forward_token1] = ACTIONS(767), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(767), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(767), + [aux_sym_escape_char_token1] = ACTIONS(767), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(767), + [aux_sym_fingerprint_hash_token1] = ACTIONS(767), + [aux_sym_fork_after_authentication_token1] = ACTIONS(767), + [aux_sym_forward_agent_token1] = ACTIONS(767), + [aux_sym_forward_x11_token1] = ACTIONS(769), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(767), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(767), + [aux_sym_gateway_ports_token1] = ACTIONS(767), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(767), + [aux_sym_gssapi_authentication_token1] = ACTIONS(767), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(767), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(767), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(767), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(767), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(767), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(767), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(767), + [aux_sym_hash_known_hosts_token1] = ACTIONS(767), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(767), + [aux_sym_hostbased_authentication_token1] = ACTIONS(767), + [aux_sym_host_key_algorithms_token1] = ACTIONS(767), + [aux_sym_host_key_alias_token1] = ACTIONS(767), + [aux_sym_hostname_token1] = ACTIONS(767), + [aux_sym_identities_only_token1] = ACTIONS(767), + [aux_sym_identity_agent_token1] = ACTIONS(767), + [aux_sym_identity_file_token1] = ACTIONS(767), + [aux_sym_ignore_unknown_token1] = ACTIONS(767), + [aux_sym_include_token1] = ACTIONS(767), + [aux_sym_ip_qos_token1] = ACTIONS(767), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(767), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(767), + [aux_sym_kex_algorithms_token1] = ACTIONS(767), + [aux_sym_known_hosts_command_token1] = ACTIONS(767), + [aux_sym_local_command_token1] = ACTIONS(767), + [aux_sym_local_forward_token1] = ACTIONS(767), + [aux_sym_log_level_token1] = ACTIONS(767), + [aux_sym_log_verbose_token1] = ACTIONS(767), + [aux_sym_macs_token1] = ACTIONS(767), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(767), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(767), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(767), + [aux_sym_password_authentication_token1] = ACTIONS(767), + [aux_sym_permit_local_command_token1] = ACTIONS(767), + [aux_sym_permit_remote_open_token1] = ACTIONS(767), + [aux_sym_pkcs11_provider_token1] = ACTIONS(767), + [aux_sym_port_token1] = ACTIONS(767), + [aux_sym_preferred_authentications_token1] = ACTIONS(767), + [aux_sym_protocol_token1] = ACTIONS(767), + [aux_sym_proxy_command_token1] = ACTIONS(767), + [aux_sym_proxy_jump_token1] = ACTIONS(767), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(767), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(767), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(767), + [aux_sym_pubkey_authentication_token1] = ACTIONS(767), + [aux_sym_rekey_limit_token1] = ACTIONS(767), + [aux_sym_remote_command_token1] = ACTIONS(767), + [aux_sym_remote_forward_token1] = ACTIONS(767), + [aux_sym_request_tty_token1] = ACTIONS(767), + [aux_sym_required_rsa_size_token1] = ACTIONS(767), + [aux_sym_revoked_host_keys_token1] = ACTIONS(767), + [aux_sym_security_key_provider_token1] = ACTIONS(767), + [aux_sym_send_env_token1] = ACTIONS(767), + [aux_sym_server_alive_count_max_token1] = ACTIONS(767), + [aux_sym_server_alive_interval_token1] = ACTIONS(767), + [aux_sym_session_type_token1] = ACTIONS(767), + [aux_sym_set_env_token1] = ACTIONS(767), + [aux_sym_stdin_null_token1] = ACTIONS(767), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(767), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(767), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(767), + [aux_sym_syslog_facility_token1] = ACTIONS(767), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(767), + [aux_sym_keep_alive_token1] = ACTIONS(767), + [aux_sym_tag_token1] = ACTIONS(767), + [aux_sym_tunnel_token1] = ACTIONS(769), + [aux_sym_tunnel_device_token1] = ACTIONS(767), + [aux_sym_update_host_keys_token1] = ACTIONS(767), + [aux_sym_use_keychain_token1] = ACTIONS(767), + [aux_sym_use_roaming_token1] = ACTIONS(767), + [aux_sym_user_token1] = ACTIONS(769), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(767), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(767), + [aux_sym_visual_host_key_token1] = ACTIONS(767), + [aux_sym_xauth_location_token1] = ACTIONS(767), }, [794] = { - [ts_builtin_sym_end] = ACTIONS(948), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(950), - [aux_sym_match_token1] = ACTIONS(948), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(948), - [aux_sym_address_family_token1] = ACTIONS(948), - [aux_sym_batch_mode_token1] = ACTIONS(948), - [aux_sym_bind_address_token1] = ACTIONS(948), - [aux_sym_bind_interface_token1] = ACTIONS(948), - [aux_sym_canonical_domains_token1] = ACTIONS(948), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(948), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(948), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(948), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(948), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(948), - [aux_sym_certificate_file_token1] = ACTIONS(948), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(948), - [aux_sym_channel_timeout_token1] = ACTIONS(948), - [aux_sym_check_host_ip_token1] = ACTIONS(948), - [aux_sym_ciphers_token1] = ACTIONS(948), - [aux_sym_cipher_token1] = ACTIONS(950), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(948), - [aux_sym_compression_token1] = ACTIONS(948), - [aux_sym_connection_attempts_token1] = ACTIONS(948), - [aux_sym_connect_timeout_token1] = ACTIONS(948), - [aux_sym_control_master_token1] = ACTIONS(948), - [aux_sym_control_path_token1] = ACTIONS(948), - [aux_sym_control_persist_token1] = ACTIONS(948), - [aux_sym_dynamic_forward_token1] = ACTIONS(948), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(948), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(948), - [aux_sym_escape_char_token1] = ACTIONS(948), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(948), - [aux_sym_fingerprint_hash_token1] = ACTIONS(948), - [aux_sym_fork_after_authentication_token1] = ACTIONS(948), - [aux_sym_forward_agent_token1] = ACTIONS(948), - [aux_sym_forward_x11_token1] = ACTIONS(950), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(948), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(948), - [aux_sym_gateway_ports_token1] = ACTIONS(948), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(948), - [aux_sym_gssapi_authentication_token1] = ACTIONS(948), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(948), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(948), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(948), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(948), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(948), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(948), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(948), - [aux_sym_hash_known_hosts_token1] = ACTIONS(948), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(948), - [aux_sym_hostbased_authentication_token1] = ACTIONS(948), - [aux_sym_host_key_algorithms_token1] = ACTIONS(948), - [aux_sym_host_key_alias_token1] = ACTIONS(948), - [aux_sym_hostname_token1] = ACTIONS(948), - [aux_sym_identities_only_token1] = ACTIONS(948), - [aux_sym_identity_agent_token1] = ACTIONS(948), - [aux_sym_identity_file_token1] = ACTIONS(948), - [aux_sym_ignore_unknown_token1] = ACTIONS(948), - [aux_sym_include_token1] = ACTIONS(948), - [aux_sym_ip_qos_token1] = ACTIONS(948), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(948), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(948), - [aux_sym_kex_algorithms_token1] = ACTIONS(948), - [aux_sym_known_hosts_command_token1] = ACTIONS(948), - [aux_sym_local_command_token1] = ACTIONS(948), - [aux_sym_local_forward_token1] = ACTIONS(948), - [aux_sym_log_level_token1] = ACTIONS(948), - [aux_sym_log_verbose_token1] = ACTIONS(948), - [aux_sym_macs_token1] = ACTIONS(948), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(948), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(948), - [aux_sym_password_authentication_token1] = ACTIONS(948), - [aux_sym_permit_local_command_token1] = ACTIONS(948), - [aux_sym_permit_remote_open_token1] = ACTIONS(948), - [aux_sym_pkcs11_provider_token1] = ACTIONS(948), - [aux_sym_port_token1] = ACTIONS(948), - [aux_sym_preferred_authentications_token1] = ACTIONS(948), - [aux_sym_protocol_token1] = ACTIONS(948), - [aux_sym_proxy_command_token1] = ACTIONS(948), - [aux_sym_proxy_jump_token1] = ACTIONS(948), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(948), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(948), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(948), - [aux_sym_pubkey_authentication_token1] = ACTIONS(948), - [aux_sym_rekey_limit_token1] = ACTIONS(948), - [aux_sym_remote_command_token1] = ACTIONS(948), - [aux_sym_remote_forward_token1] = ACTIONS(948), - [aux_sym_request_tty_token1] = ACTIONS(948), - [aux_sym_required_rsa_size_token1] = ACTIONS(948), - [aux_sym_revoked_host_keys_token1] = ACTIONS(948), - [aux_sym_security_key_provider_token1] = ACTIONS(948), - [aux_sym_send_env_token1] = ACTIONS(948), - [aux_sym_server_alive_count_max_token1] = ACTIONS(948), - [aux_sym_server_alive_interval_token1] = ACTIONS(948), - [aux_sym_session_type_token1] = ACTIONS(948), - [aux_sym_set_env_token1] = ACTIONS(948), - [aux_sym_stdin_null_token1] = ACTIONS(948), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(948), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(948), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(948), - [aux_sym_syslog_facility_token1] = ACTIONS(948), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(948), - [aux_sym_keep_alive_token1] = ACTIONS(948), - [aux_sym_tag_token1] = ACTIONS(948), - [aux_sym_tunnel_token1] = ACTIONS(950), - [aux_sym_tunnel_device_token1] = ACTIONS(948), - [aux_sym_update_host_keys_token1] = ACTIONS(948), - [aux_sym_use_keychain_token1] = ACTIONS(948), - [aux_sym_use_roaming_token1] = ACTIONS(948), - [aux_sym_user_token1] = ACTIONS(950), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(948), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(948), - [aux_sym_visual_host_key_token1] = ACTIONS(948), - [aux_sym_xauth_location_token1] = ACTIONS(948), + [ts_builtin_sym_end] = ACTIONS(1511), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1513), + [aux_sym_match_token1] = ACTIONS(1511), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1511), + [aux_sym_address_family_token1] = ACTIONS(1511), + [aux_sym_batch_mode_token1] = ACTIONS(1511), + [aux_sym_bind_address_token1] = ACTIONS(1511), + [aux_sym_bind_interface_token1] = ACTIONS(1511), + [aux_sym_canonical_domains_token1] = ACTIONS(1511), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1511), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1511), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1511), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1511), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1511), + [aux_sym_certificate_file_token1] = ACTIONS(1511), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1511), + [aux_sym_channel_timeout_token1] = ACTIONS(1511), + [aux_sym_check_host_ip_token1] = ACTIONS(1511), + [aux_sym_ciphers_token1] = ACTIONS(1511), + [aux_sym_cipher_token1] = ACTIONS(1513), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1511), + [aux_sym_compression_token1] = ACTIONS(1511), + [aux_sym_connection_attempts_token1] = ACTIONS(1511), + [aux_sym_connect_timeout_token1] = ACTIONS(1511), + [aux_sym_control_master_token1] = ACTIONS(1511), + [aux_sym_control_path_token1] = ACTIONS(1511), + [aux_sym_control_persist_token1] = ACTIONS(1511), + [aux_sym_dynamic_forward_token1] = ACTIONS(1511), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1511), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1511), + [aux_sym_escape_char_token1] = ACTIONS(1511), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1511), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1511), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1511), + [aux_sym_forward_agent_token1] = ACTIONS(1511), + [aux_sym_forward_x11_token1] = ACTIONS(1513), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1511), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1511), + [aux_sym_gateway_ports_token1] = ACTIONS(1511), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1511), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1511), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1511), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1511), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1511), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1511), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1511), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1511), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1511), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1511), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1511), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1511), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1511), + [aux_sym_host_key_alias_token1] = ACTIONS(1511), + [aux_sym_hostname_token1] = ACTIONS(1511), + [aux_sym_identities_only_token1] = ACTIONS(1511), + [aux_sym_identity_agent_token1] = ACTIONS(1511), + [aux_sym_identity_file_token1] = ACTIONS(1511), + [aux_sym_ignore_unknown_token1] = ACTIONS(1511), + [aux_sym_include_token1] = ACTIONS(1511), + [aux_sym_ip_qos_token1] = ACTIONS(1511), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1511), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1511), + [aux_sym_kex_algorithms_token1] = ACTIONS(1511), + [aux_sym_known_hosts_command_token1] = ACTIONS(1511), + [aux_sym_local_command_token1] = ACTIONS(1511), + [aux_sym_local_forward_token1] = ACTIONS(1511), + [aux_sym_log_level_token1] = ACTIONS(1511), + [aux_sym_log_verbose_token1] = ACTIONS(1511), + [aux_sym_macs_token1] = ACTIONS(1511), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1511), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1511), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1511), + [aux_sym_password_authentication_token1] = ACTIONS(1511), + [aux_sym_permit_local_command_token1] = ACTIONS(1511), + [aux_sym_permit_remote_open_token1] = ACTIONS(1511), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1511), + [aux_sym_port_token1] = ACTIONS(1511), + [aux_sym_preferred_authentications_token1] = ACTIONS(1511), + [aux_sym_protocol_token1] = ACTIONS(1511), + [aux_sym_proxy_command_token1] = ACTIONS(1511), + [aux_sym_proxy_jump_token1] = ACTIONS(1511), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1511), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1511), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1511), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1511), + [aux_sym_rekey_limit_token1] = ACTIONS(1511), + [aux_sym_remote_command_token1] = ACTIONS(1511), + [aux_sym_remote_forward_token1] = ACTIONS(1511), + [aux_sym_request_tty_token1] = ACTIONS(1511), + [aux_sym_required_rsa_size_token1] = ACTIONS(1511), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1511), + [aux_sym_security_key_provider_token1] = ACTIONS(1511), + [aux_sym_send_env_token1] = ACTIONS(1511), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1511), + [aux_sym_server_alive_interval_token1] = ACTIONS(1511), + [aux_sym_session_type_token1] = ACTIONS(1511), + [aux_sym_set_env_token1] = ACTIONS(1511), + [aux_sym_stdin_null_token1] = ACTIONS(1511), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1511), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1511), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1511), + [aux_sym_syslog_facility_token1] = ACTIONS(1511), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1511), + [aux_sym_keep_alive_token1] = ACTIONS(1511), + [aux_sym_tag_token1] = ACTIONS(1511), + [aux_sym_tunnel_token1] = ACTIONS(1513), + [aux_sym_tunnel_device_token1] = ACTIONS(1511), + [aux_sym_update_host_keys_token1] = ACTIONS(1511), + [aux_sym_use_keychain_token1] = ACTIONS(1511), + [aux_sym_use_roaming_token1] = ACTIONS(1511), + [aux_sym_user_token1] = ACTIONS(1513), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1511), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1511), + [aux_sym_visual_host_key_token1] = ACTIONS(1511), + [aux_sym_xauth_location_token1] = ACTIONS(1511), }, [795] = { - [ts_builtin_sym_end] = ACTIONS(1728), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1730), - [aux_sym_match_token1] = ACTIONS(1728), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1728), - [aux_sym_address_family_token1] = ACTIONS(1728), - [aux_sym_batch_mode_token1] = ACTIONS(1728), - [aux_sym_bind_address_token1] = ACTIONS(1728), - [aux_sym_bind_interface_token1] = ACTIONS(1728), - [aux_sym_canonical_domains_token1] = ACTIONS(1728), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1728), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1728), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1728), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1728), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1728), - [aux_sym_certificate_file_token1] = ACTIONS(1728), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1728), - [aux_sym_channel_timeout_token1] = ACTIONS(1728), - [aux_sym_check_host_ip_token1] = ACTIONS(1728), - [aux_sym_ciphers_token1] = ACTIONS(1728), - [aux_sym_cipher_token1] = ACTIONS(1730), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1728), - [aux_sym_compression_token1] = ACTIONS(1728), - [aux_sym_connection_attempts_token1] = ACTIONS(1728), - [aux_sym_connect_timeout_token1] = ACTIONS(1728), - [aux_sym_control_master_token1] = ACTIONS(1728), - [aux_sym_control_path_token1] = ACTIONS(1728), - [aux_sym_control_persist_token1] = ACTIONS(1728), - [aux_sym_dynamic_forward_token1] = ACTIONS(1728), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1728), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1728), - [aux_sym_escape_char_token1] = ACTIONS(1728), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1728), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1728), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1728), - [aux_sym_forward_agent_token1] = ACTIONS(1728), - [aux_sym_forward_x11_token1] = ACTIONS(1730), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1728), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1728), - [aux_sym_gateway_ports_token1] = ACTIONS(1728), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1728), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1728), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1728), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1728), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1728), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1728), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1728), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1728), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1728), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1728), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1728), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1728), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1728), - [aux_sym_host_key_alias_token1] = ACTIONS(1728), - [aux_sym_hostname_token1] = ACTIONS(1728), - [aux_sym_identities_only_token1] = ACTIONS(1728), - [aux_sym_identity_agent_token1] = ACTIONS(1728), - [aux_sym_identity_file_token1] = ACTIONS(1728), - [aux_sym_ignore_unknown_token1] = ACTIONS(1728), - [aux_sym_include_token1] = ACTIONS(1728), - [aux_sym_ip_qos_token1] = ACTIONS(1728), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1728), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1728), - [aux_sym_kex_algorithms_token1] = ACTIONS(1728), - [aux_sym_known_hosts_command_token1] = ACTIONS(1728), - [aux_sym_local_command_token1] = ACTIONS(1728), - [aux_sym_local_forward_token1] = ACTIONS(1728), - [aux_sym_log_level_token1] = ACTIONS(1728), - [aux_sym_log_verbose_token1] = ACTIONS(1728), - [aux_sym_macs_token1] = ACTIONS(1728), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1728), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1728), - [aux_sym_password_authentication_token1] = ACTIONS(1728), - [aux_sym_permit_local_command_token1] = ACTIONS(1728), - [aux_sym_permit_remote_open_token1] = ACTIONS(1728), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1728), - [aux_sym_port_token1] = ACTIONS(1728), - [aux_sym_preferred_authentications_token1] = ACTIONS(1728), - [aux_sym_protocol_token1] = ACTIONS(1728), - [aux_sym_proxy_command_token1] = ACTIONS(1728), - [aux_sym_proxy_jump_token1] = ACTIONS(1728), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1728), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1728), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1728), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1728), - [aux_sym_rekey_limit_token1] = ACTIONS(1728), - [aux_sym_remote_command_token1] = ACTIONS(1728), - [aux_sym_remote_forward_token1] = ACTIONS(1728), - [aux_sym_request_tty_token1] = ACTIONS(1728), - [aux_sym_required_rsa_size_token1] = ACTIONS(1728), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1728), - [aux_sym_security_key_provider_token1] = ACTIONS(1728), - [aux_sym_send_env_token1] = ACTIONS(1728), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1728), - [aux_sym_server_alive_interval_token1] = ACTIONS(1728), - [aux_sym_session_type_token1] = ACTIONS(1728), - [aux_sym_set_env_token1] = ACTIONS(1728), - [aux_sym_stdin_null_token1] = ACTIONS(1728), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1728), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1728), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1728), - [aux_sym_syslog_facility_token1] = ACTIONS(1728), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1728), - [aux_sym_keep_alive_token1] = ACTIONS(1728), - [aux_sym_tag_token1] = ACTIONS(1728), - [aux_sym_tunnel_token1] = ACTIONS(1730), - [aux_sym_tunnel_device_token1] = ACTIONS(1728), - [aux_sym_update_host_keys_token1] = ACTIONS(1728), - [aux_sym_use_keychain_token1] = ACTIONS(1728), - [aux_sym_use_roaming_token1] = ACTIONS(1728), - [aux_sym_user_token1] = ACTIONS(1730), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1728), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1728), - [aux_sym_visual_host_key_token1] = ACTIONS(1728), - [aux_sym_xauth_location_token1] = ACTIONS(1728), + [ts_builtin_sym_end] = ACTIONS(1755), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1757), + [aux_sym_match_token1] = ACTIONS(1755), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1755), + [aux_sym_address_family_token1] = ACTIONS(1755), + [aux_sym_batch_mode_token1] = ACTIONS(1755), + [aux_sym_bind_address_token1] = ACTIONS(1755), + [aux_sym_bind_interface_token1] = ACTIONS(1755), + [aux_sym_canonical_domains_token1] = ACTIONS(1755), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1755), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1755), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1755), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1755), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1755), + [aux_sym_certificate_file_token1] = ACTIONS(1755), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1755), + [aux_sym_channel_timeout_token1] = ACTIONS(1755), + [aux_sym_check_host_ip_token1] = ACTIONS(1755), + [aux_sym_ciphers_token1] = ACTIONS(1755), + [aux_sym_cipher_token1] = ACTIONS(1757), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1755), + [aux_sym_compression_token1] = ACTIONS(1755), + [aux_sym_connection_attempts_token1] = ACTIONS(1755), + [aux_sym_connect_timeout_token1] = ACTIONS(1755), + [aux_sym_control_master_token1] = ACTIONS(1755), + [aux_sym_control_path_token1] = ACTIONS(1755), + [aux_sym_control_persist_token1] = ACTIONS(1755), + [aux_sym_dynamic_forward_token1] = ACTIONS(1755), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1755), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1755), + [aux_sym_escape_char_token1] = ACTIONS(1755), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1755), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1755), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1755), + [aux_sym_forward_agent_token1] = ACTIONS(1755), + [aux_sym_forward_x11_token1] = ACTIONS(1757), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1755), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1755), + [aux_sym_gateway_ports_token1] = ACTIONS(1755), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1755), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1755), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1755), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1755), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1755), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1755), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1755), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1755), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1755), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1755), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1755), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1755), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1755), + [aux_sym_host_key_alias_token1] = ACTIONS(1755), + [aux_sym_hostname_token1] = ACTIONS(1755), + [aux_sym_identities_only_token1] = ACTIONS(1755), + [aux_sym_identity_agent_token1] = ACTIONS(1755), + [aux_sym_identity_file_token1] = ACTIONS(1755), + [aux_sym_ignore_unknown_token1] = ACTIONS(1755), + [aux_sym_include_token1] = ACTIONS(1755), + [aux_sym_ip_qos_token1] = ACTIONS(1755), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1755), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1755), + [aux_sym_kex_algorithms_token1] = ACTIONS(1755), + [aux_sym_known_hosts_command_token1] = ACTIONS(1755), + [aux_sym_local_command_token1] = ACTIONS(1755), + [aux_sym_local_forward_token1] = ACTIONS(1755), + [aux_sym_log_level_token1] = ACTIONS(1755), + [aux_sym_log_verbose_token1] = ACTIONS(1755), + [aux_sym_macs_token1] = ACTIONS(1755), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1755), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1755), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1755), + [aux_sym_password_authentication_token1] = ACTIONS(1755), + [aux_sym_permit_local_command_token1] = ACTIONS(1755), + [aux_sym_permit_remote_open_token1] = ACTIONS(1755), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1755), + [aux_sym_port_token1] = ACTIONS(1755), + [aux_sym_preferred_authentications_token1] = ACTIONS(1755), + [aux_sym_protocol_token1] = ACTIONS(1755), + [aux_sym_proxy_command_token1] = ACTIONS(1755), + [aux_sym_proxy_jump_token1] = ACTIONS(1755), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1755), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1755), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1755), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1755), + [aux_sym_rekey_limit_token1] = ACTIONS(1755), + [aux_sym_remote_command_token1] = ACTIONS(1755), + [aux_sym_remote_forward_token1] = ACTIONS(1755), + [aux_sym_request_tty_token1] = ACTIONS(1755), + [aux_sym_required_rsa_size_token1] = ACTIONS(1755), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1755), + [aux_sym_security_key_provider_token1] = ACTIONS(1755), + [aux_sym_send_env_token1] = ACTIONS(1755), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1755), + [aux_sym_server_alive_interval_token1] = ACTIONS(1755), + [aux_sym_session_type_token1] = ACTIONS(1755), + [aux_sym_set_env_token1] = ACTIONS(1755), + [aux_sym_stdin_null_token1] = ACTIONS(1755), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1755), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1755), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1755), + [aux_sym_syslog_facility_token1] = ACTIONS(1755), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1755), + [aux_sym_keep_alive_token1] = ACTIONS(1755), + [aux_sym_tag_token1] = ACTIONS(1755), + [aux_sym_tunnel_token1] = ACTIONS(1757), + [aux_sym_tunnel_device_token1] = ACTIONS(1755), + [aux_sym_update_host_keys_token1] = ACTIONS(1755), + [aux_sym_use_keychain_token1] = ACTIONS(1755), + [aux_sym_use_roaming_token1] = ACTIONS(1755), + [aux_sym_user_token1] = ACTIONS(1757), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1755), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1755), + [aux_sym_visual_host_key_token1] = ACTIONS(1755), + [aux_sym_xauth_location_token1] = ACTIONS(1755), }, [796] = { - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(1724), - [aux_sym_match_token1] = ACTIONS(1722), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(1722), - [aux_sym_address_family_token1] = ACTIONS(1722), - [aux_sym_batch_mode_token1] = ACTIONS(1722), - [aux_sym_bind_address_token1] = ACTIONS(1722), - [aux_sym_bind_interface_token1] = ACTIONS(1722), - [aux_sym_canonical_domains_token1] = ACTIONS(1722), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1722), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(1722), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1722), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1722), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1722), - [aux_sym_certificate_file_token1] = ACTIONS(1722), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(1722), - [aux_sym_channel_timeout_token1] = ACTIONS(1722), - [aux_sym_check_host_ip_token1] = ACTIONS(1722), - [aux_sym_ciphers_token1] = ACTIONS(1722), - [aux_sym_cipher_token1] = ACTIONS(1724), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(1722), - [aux_sym_compression_token1] = ACTIONS(1722), - [aux_sym_connection_attempts_token1] = ACTIONS(1722), - [aux_sym_connect_timeout_token1] = ACTIONS(1722), - [aux_sym_control_master_token1] = ACTIONS(1722), - [aux_sym_control_path_token1] = ACTIONS(1722), - [aux_sym_control_persist_token1] = ACTIONS(1722), - [aux_sym_dynamic_forward_token1] = ACTIONS(1722), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(1722), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1722), - [aux_sym_escape_char_token1] = ACTIONS(1722), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1722), - [aux_sym_fingerprint_hash_token1] = ACTIONS(1722), - [aux_sym_fork_after_authentication_token1] = ACTIONS(1722), - [aux_sym_forward_agent_token1] = ACTIONS(1722), - [aux_sym_forward_x11_token1] = ACTIONS(1724), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(1722), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(1722), - [aux_sym_gateway_ports_token1] = ACTIONS(1722), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(1722), - [aux_sym_gssapi_authentication_token1] = ACTIONS(1722), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(1722), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1722), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1722), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1722), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(1722), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1722), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1722), - [aux_sym_hash_known_hosts_token1] = ACTIONS(1722), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1722), - [aux_sym_hostbased_authentication_token1] = ACTIONS(1722), - [aux_sym_host_key_algorithms_token1] = ACTIONS(1722), - [aux_sym_host_key_alias_token1] = ACTIONS(1722), - [aux_sym_hostname_token1] = ACTIONS(1722), - [aux_sym_identities_only_token1] = ACTIONS(1722), - [aux_sym_identity_agent_token1] = ACTIONS(1722), - [aux_sym_identity_file_token1] = ACTIONS(1722), - [aux_sym_ignore_unknown_token1] = ACTIONS(1722), - [aux_sym_include_token1] = ACTIONS(1722), - [aux_sym_ip_qos_token1] = ACTIONS(1722), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1722), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1722), - [aux_sym_kex_algorithms_token1] = ACTIONS(1722), - [aux_sym_known_hosts_command_token1] = ACTIONS(1722), - [aux_sym_local_command_token1] = ACTIONS(1722), - [aux_sym_local_forward_token1] = ACTIONS(1722), - [aux_sym_log_level_token1] = ACTIONS(1722), - [aux_sym_log_verbose_token1] = ACTIONS(1722), - [aux_sym_macs_token1] = ACTIONS(1722), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1722), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(1722), - [aux_sym_password_authentication_token1] = ACTIONS(1722), - [aux_sym_permit_local_command_token1] = ACTIONS(1722), - [aux_sym_permit_remote_open_token1] = ACTIONS(1722), - [aux_sym_pkcs11_provider_token1] = ACTIONS(1722), - [aux_sym_port_token1] = ACTIONS(1722), - [aux_sym_preferred_authentications_token1] = ACTIONS(1722), - [aux_sym_protocol_token1] = ACTIONS(1722), - [aux_sym_proxy_command_token1] = ACTIONS(1722), - [aux_sym_proxy_jump_token1] = ACTIONS(1722), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1722), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1722), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1722), - [aux_sym_pubkey_authentication_token1] = ACTIONS(1722), - [aux_sym_rekey_limit_token1] = ACTIONS(1722), - [aux_sym_remote_command_token1] = ACTIONS(1722), - [aux_sym_remote_forward_token1] = ACTIONS(1722), - [aux_sym_request_tty_token1] = ACTIONS(1722), - [aux_sym_required_rsa_size_token1] = ACTIONS(1722), - [aux_sym_revoked_host_keys_token1] = ACTIONS(1722), - [aux_sym_security_key_provider_token1] = ACTIONS(1722), - [aux_sym_send_env_token1] = ACTIONS(1722), - [aux_sym_server_alive_count_max_token1] = ACTIONS(1722), - [aux_sym_server_alive_interval_token1] = ACTIONS(1722), - [aux_sym_session_type_token1] = ACTIONS(1722), - [aux_sym_set_env_token1] = ACTIONS(1722), - [aux_sym_stdin_null_token1] = ACTIONS(1722), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1722), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1722), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(1722), - [aux_sym_syslog_facility_token1] = ACTIONS(1722), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(1722), - [aux_sym_keep_alive_token1] = ACTIONS(1722), - [aux_sym_tag_token1] = ACTIONS(1722), - [aux_sym_tunnel_token1] = ACTIONS(1724), - [aux_sym_tunnel_device_token1] = ACTIONS(1722), - [aux_sym_update_host_keys_token1] = ACTIONS(1722), - [aux_sym_use_keychain_token1] = ACTIONS(1722), - [aux_sym_use_roaming_token1] = ACTIONS(1722), - [aux_sym_user_token1] = ACTIONS(1724), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(1722), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(1722), - [aux_sym_visual_host_key_token1] = ACTIONS(1722), - [aux_sym_xauth_location_token1] = ACTIONS(1722), + [ts_builtin_sym_end] = ACTIONS(1731), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1733), + [aux_sym_match_token1] = ACTIONS(1731), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1731), + [aux_sym_address_family_token1] = ACTIONS(1731), + [aux_sym_batch_mode_token1] = ACTIONS(1731), + [aux_sym_bind_address_token1] = ACTIONS(1731), + [aux_sym_bind_interface_token1] = ACTIONS(1731), + [aux_sym_canonical_domains_token1] = ACTIONS(1731), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1731), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1731), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1731), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1731), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1731), + [aux_sym_certificate_file_token1] = ACTIONS(1731), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1731), + [aux_sym_channel_timeout_token1] = ACTIONS(1731), + [aux_sym_check_host_ip_token1] = ACTIONS(1731), + [aux_sym_ciphers_token1] = ACTIONS(1731), + [aux_sym_cipher_token1] = ACTIONS(1733), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1731), + [aux_sym_compression_token1] = ACTIONS(1731), + [aux_sym_connection_attempts_token1] = ACTIONS(1731), + [aux_sym_connect_timeout_token1] = ACTIONS(1731), + [aux_sym_control_master_token1] = ACTIONS(1731), + [aux_sym_control_path_token1] = ACTIONS(1731), + [aux_sym_control_persist_token1] = ACTIONS(1731), + [aux_sym_dynamic_forward_token1] = ACTIONS(1731), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1731), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1731), + [aux_sym_escape_char_token1] = ACTIONS(1731), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1731), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1731), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1731), + [aux_sym_forward_agent_token1] = ACTIONS(1731), + [aux_sym_forward_x11_token1] = ACTIONS(1733), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1731), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1731), + [aux_sym_gateway_ports_token1] = ACTIONS(1731), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1731), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1731), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1731), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1731), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1731), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1731), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1731), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1731), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1731), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1731), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1731), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1731), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1731), + [aux_sym_host_key_alias_token1] = ACTIONS(1731), + [aux_sym_hostname_token1] = ACTIONS(1731), + [aux_sym_identities_only_token1] = ACTIONS(1731), + [aux_sym_identity_agent_token1] = ACTIONS(1731), + [aux_sym_identity_file_token1] = ACTIONS(1731), + [aux_sym_ignore_unknown_token1] = ACTIONS(1731), + [aux_sym_include_token1] = ACTIONS(1731), + [aux_sym_ip_qos_token1] = ACTIONS(1731), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1731), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1731), + [aux_sym_kex_algorithms_token1] = ACTIONS(1731), + [aux_sym_known_hosts_command_token1] = ACTIONS(1731), + [aux_sym_local_command_token1] = ACTIONS(1731), + [aux_sym_local_forward_token1] = ACTIONS(1731), + [aux_sym_log_level_token1] = ACTIONS(1731), + [aux_sym_log_verbose_token1] = ACTIONS(1731), + [aux_sym_macs_token1] = ACTIONS(1731), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1731), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1731), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1731), + [aux_sym_password_authentication_token1] = ACTIONS(1731), + [aux_sym_permit_local_command_token1] = ACTIONS(1731), + [aux_sym_permit_remote_open_token1] = ACTIONS(1731), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1731), + [aux_sym_port_token1] = ACTIONS(1731), + [aux_sym_preferred_authentications_token1] = ACTIONS(1731), + [aux_sym_protocol_token1] = ACTIONS(1731), + [aux_sym_proxy_command_token1] = ACTIONS(1731), + [aux_sym_proxy_jump_token1] = ACTIONS(1731), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1731), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1731), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1731), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1731), + [aux_sym_rekey_limit_token1] = ACTIONS(1731), + [aux_sym_remote_command_token1] = ACTIONS(1731), + [aux_sym_remote_forward_token1] = ACTIONS(1731), + [aux_sym_request_tty_token1] = ACTIONS(1731), + [aux_sym_required_rsa_size_token1] = ACTIONS(1731), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1731), + [aux_sym_security_key_provider_token1] = ACTIONS(1731), + [aux_sym_send_env_token1] = ACTIONS(1731), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1731), + [aux_sym_server_alive_interval_token1] = ACTIONS(1731), + [aux_sym_session_type_token1] = ACTIONS(1731), + [aux_sym_set_env_token1] = ACTIONS(1731), + [aux_sym_stdin_null_token1] = ACTIONS(1731), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1731), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1731), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1731), + [aux_sym_syslog_facility_token1] = ACTIONS(1731), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1731), + [aux_sym_keep_alive_token1] = ACTIONS(1731), + [aux_sym_tag_token1] = ACTIONS(1731), + [aux_sym_tunnel_token1] = ACTIONS(1733), + [aux_sym_tunnel_device_token1] = ACTIONS(1731), + [aux_sym_update_host_keys_token1] = ACTIONS(1731), + [aux_sym_use_keychain_token1] = ACTIONS(1731), + [aux_sym_use_roaming_token1] = ACTIONS(1731), + [aux_sym_user_token1] = ACTIONS(1733), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1731), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1731), + [aux_sym_visual_host_key_token1] = ACTIONS(1731), + [aux_sym_xauth_location_token1] = ACTIONS(1731), }, [797] = { - [ts_builtin_sym_end] = ACTIONS(942), - [sym_comment] = ACTIONS(3), - [aux_sym_host_token1] = ACTIONS(944), - [aux_sym_match_token1] = ACTIONS(942), - [aux_sym_add_keys_to_agent_token1] = ACTIONS(942), - [aux_sym_address_family_token1] = ACTIONS(942), - [aux_sym_batch_mode_token1] = ACTIONS(942), - [aux_sym_bind_address_token1] = ACTIONS(942), - [aux_sym_bind_interface_token1] = ACTIONS(942), - [aux_sym_canonical_domains_token1] = ACTIONS(942), - [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(942), - [aux_sym_canonicalize_hostname_token1] = ACTIONS(942), - [aux_sym_canonicalize_max_dots_token1] = ACTIONS(942), - [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(942), - [aux_sym_ca_signature_algorithms_token1] = ACTIONS(942), - [aux_sym_certificate_file_token1] = ACTIONS(942), - [aux_sym_challenge_response_authentication_token1] = ACTIONS(942), - [aux_sym_channel_timeout_token1] = ACTIONS(942), - [aux_sym_check_host_ip_token1] = ACTIONS(942), - [aux_sym_ciphers_token1] = ACTIONS(942), - [aux_sym_cipher_token1] = ACTIONS(944), - [aux_sym_clear_all_forwardings_token1] = ACTIONS(942), - [aux_sym_compression_token1] = ACTIONS(942), - [aux_sym_connection_attempts_token1] = ACTIONS(942), - [aux_sym_connect_timeout_token1] = ACTIONS(942), - [aux_sym_control_master_token1] = ACTIONS(942), - [aux_sym_control_path_token1] = ACTIONS(942), - [aux_sym_control_persist_token1] = ACTIONS(942), - [aux_sym_dynamic_forward_token1] = ACTIONS(942), - [aux_sym_enable_escape_commandline_token1] = ACTIONS(942), - [aux_sym_enable_ssh_keysign_token1] = ACTIONS(942), - [aux_sym_escape_char_token1] = ACTIONS(942), - [aux_sym_exit_on_forward_failure_token1] = ACTIONS(942), - [aux_sym_fingerprint_hash_token1] = ACTIONS(942), - [aux_sym_fork_after_authentication_token1] = ACTIONS(942), - [aux_sym_forward_agent_token1] = ACTIONS(942), - [aux_sym_forward_x11_token1] = ACTIONS(944), - [aux_sym_forward_x11_timeout_token1] = ACTIONS(942), - [aux_sym_forward_x11_trusted_token1] = ACTIONS(942), - [aux_sym_gateway_ports_token1] = ACTIONS(942), - [aux_sym_global_known_hosts_file_token1] = ACTIONS(942), - [aux_sym_gssapi_authentication_token1] = ACTIONS(942), - [aux_sym_gssapi_client_identity_token1] = ACTIONS(942), - [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(942), - [aux_sym_gssapi_key_exchange_token1] = ACTIONS(942), - [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(942), - [aux_sym_gssapi_server_identity_token1] = ACTIONS(942), - [aux_sym_gssapi_trust_dns_token1] = ACTIONS(942), - [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(942), - [aux_sym_hash_known_hosts_token1] = ACTIONS(942), - [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(942), - [aux_sym_hostbased_authentication_token1] = ACTIONS(942), - [aux_sym_host_key_algorithms_token1] = ACTIONS(942), - [aux_sym_host_key_alias_token1] = ACTIONS(942), - [aux_sym_hostname_token1] = ACTIONS(942), - [aux_sym_identities_only_token1] = ACTIONS(942), - [aux_sym_identity_agent_token1] = ACTIONS(942), - [aux_sym_identity_file_token1] = ACTIONS(942), - [aux_sym_ignore_unknown_token1] = ACTIONS(942), - [aux_sym_include_token1] = ACTIONS(942), - [aux_sym_ip_qos_token1] = ACTIONS(942), - [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(942), - [aux_sym_kbd_interactive_devices_token1] = ACTIONS(942), - [aux_sym_kex_algorithms_token1] = ACTIONS(942), - [aux_sym_known_hosts_command_token1] = ACTIONS(942), - [aux_sym_local_command_token1] = ACTIONS(942), - [aux_sym_local_forward_token1] = ACTIONS(942), - [aux_sym_log_level_token1] = ACTIONS(942), - [aux_sym_log_verbose_token1] = ACTIONS(942), - [aux_sym_macs_token1] = ACTIONS(942), - [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(942), - [aux_sym_number_of_password_prompts_token1] = ACTIONS(942), - [aux_sym_password_authentication_token1] = ACTIONS(942), - [aux_sym_permit_local_command_token1] = ACTIONS(942), - [aux_sym_permit_remote_open_token1] = ACTIONS(942), - [aux_sym_pkcs11_provider_token1] = ACTIONS(942), - [aux_sym_port_token1] = ACTIONS(942), - [aux_sym_preferred_authentications_token1] = ACTIONS(942), - [aux_sym_protocol_token1] = ACTIONS(942), - [aux_sym_proxy_command_token1] = ACTIONS(942), - [aux_sym_proxy_jump_token1] = ACTIONS(942), - [aux_sym_proxy_use_fdpass_token1] = ACTIONS(942), - [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(942), - [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(942), - [aux_sym_pubkey_authentication_token1] = ACTIONS(942), - [aux_sym_rekey_limit_token1] = ACTIONS(942), - [aux_sym_remote_command_token1] = ACTIONS(942), - [aux_sym_remote_forward_token1] = ACTIONS(942), - [aux_sym_request_tty_token1] = ACTIONS(942), - [aux_sym_required_rsa_size_token1] = ACTIONS(942), - [aux_sym_revoked_host_keys_token1] = ACTIONS(942), - [aux_sym_security_key_provider_token1] = ACTIONS(942), - [aux_sym_send_env_token1] = ACTIONS(942), - [aux_sym_server_alive_count_max_token1] = ACTIONS(942), - [aux_sym_server_alive_interval_token1] = ACTIONS(942), - [aux_sym_session_type_token1] = ACTIONS(942), - [aux_sym_set_env_token1] = ACTIONS(942), - [aux_sym_stdin_null_token1] = ACTIONS(942), - [aux_sym_stream_local_bind_mask_token1] = ACTIONS(942), - [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(942), - [aux_sym_strict_host_key_checking_token1] = ACTIONS(942), - [aux_sym_syslog_facility_token1] = ACTIONS(942), - [aux_sym_tcp_keep_alive_token1] = ACTIONS(942), - [aux_sym_keep_alive_token1] = ACTIONS(942), - [aux_sym_tag_token1] = ACTIONS(942), - [aux_sym_tunnel_token1] = ACTIONS(944), - [aux_sym_tunnel_device_token1] = ACTIONS(942), - [aux_sym_update_host_keys_token1] = ACTIONS(942), - [aux_sym_use_keychain_token1] = ACTIONS(942), - [aux_sym_use_roaming_token1] = ACTIONS(942), - [aux_sym_user_token1] = ACTIONS(944), - [aux_sym_user_known_hosts_file_token1] = ACTIONS(942), - [aux_sym_verify_host_key_dns_token1] = ACTIONS(942), - [aux_sym_visual_host_key_token1] = ACTIONS(942), - [aux_sym_xauth_location_token1] = ACTIONS(942), + [ts_builtin_sym_end] = ACTIONS(905), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(907), + [aux_sym_match_token1] = ACTIONS(905), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(905), + [aux_sym_address_family_token1] = ACTIONS(905), + [aux_sym_batch_mode_token1] = ACTIONS(905), + [aux_sym_bind_address_token1] = ACTIONS(905), + [aux_sym_bind_interface_token1] = ACTIONS(905), + [aux_sym_canonical_domains_token1] = ACTIONS(905), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(905), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(905), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(905), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(905), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(905), + [aux_sym_certificate_file_token1] = ACTIONS(905), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(905), + [aux_sym_channel_timeout_token1] = ACTIONS(905), + [aux_sym_check_host_ip_token1] = ACTIONS(905), + [aux_sym_ciphers_token1] = ACTIONS(905), + [aux_sym_cipher_token1] = ACTIONS(907), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(905), + [aux_sym_compression_token1] = ACTIONS(905), + [aux_sym_connection_attempts_token1] = ACTIONS(905), + [aux_sym_connect_timeout_token1] = ACTIONS(905), + [aux_sym_control_master_token1] = ACTIONS(905), + [aux_sym_control_path_token1] = ACTIONS(905), + [aux_sym_control_persist_token1] = ACTIONS(905), + [aux_sym_dynamic_forward_token1] = ACTIONS(905), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(905), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(905), + [aux_sym_escape_char_token1] = ACTIONS(905), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(905), + [aux_sym_fingerprint_hash_token1] = ACTIONS(905), + [aux_sym_fork_after_authentication_token1] = ACTIONS(905), + [aux_sym_forward_agent_token1] = ACTIONS(905), + [aux_sym_forward_x11_token1] = ACTIONS(907), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(905), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(905), + [aux_sym_gateway_ports_token1] = ACTIONS(905), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(905), + [aux_sym_gssapi_authentication_token1] = ACTIONS(905), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(905), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(905), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(905), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(905), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(905), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(905), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(905), + [aux_sym_hash_known_hosts_token1] = ACTIONS(905), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(905), + [aux_sym_hostbased_authentication_token1] = ACTIONS(905), + [aux_sym_host_key_algorithms_token1] = ACTIONS(905), + [aux_sym_host_key_alias_token1] = ACTIONS(905), + [aux_sym_hostname_token1] = ACTIONS(905), + [aux_sym_identities_only_token1] = ACTIONS(905), + [aux_sym_identity_agent_token1] = ACTIONS(905), + [aux_sym_identity_file_token1] = ACTIONS(905), + [aux_sym_ignore_unknown_token1] = ACTIONS(905), + [aux_sym_include_token1] = ACTIONS(905), + [aux_sym_ip_qos_token1] = ACTIONS(905), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(905), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(905), + [aux_sym_kex_algorithms_token1] = ACTIONS(905), + [aux_sym_known_hosts_command_token1] = ACTIONS(905), + [aux_sym_local_command_token1] = ACTIONS(905), + [aux_sym_local_forward_token1] = ACTIONS(905), + [aux_sym_log_level_token1] = ACTIONS(905), + [aux_sym_log_verbose_token1] = ACTIONS(905), + [aux_sym_macs_token1] = ACTIONS(905), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(905), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(905), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(905), + [aux_sym_password_authentication_token1] = ACTIONS(905), + [aux_sym_permit_local_command_token1] = ACTIONS(905), + [aux_sym_permit_remote_open_token1] = ACTIONS(905), + [aux_sym_pkcs11_provider_token1] = ACTIONS(905), + [aux_sym_port_token1] = ACTIONS(905), + [aux_sym_preferred_authentications_token1] = ACTIONS(905), + [aux_sym_protocol_token1] = ACTIONS(905), + [aux_sym_proxy_command_token1] = ACTIONS(905), + [aux_sym_proxy_jump_token1] = ACTIONS(905), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(905), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(905), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(905), + [aux_sym_pubkey_authentication_token1] = ACTIONS(905), + [aux_sym_rekey_limit_token1] = ACTIONS(905), + [aux_sym_remote_command_token1] = ACTIONS(905), + [aux_sym_remote_forward_token1] = ACTIONS(905), + [aux_sym_request_tty_token1] = ACTIONS(905), + [aux_sym_required_rsa_size_token1] = ACTIONS(905), + [aux_sym_revoked_host_keys_token1] = ACTIONS(905), + [aux_sym_security_key_provider_token1] = ACTIONS(905), + [aux_sym_send_env_token1] = ACTIONS(905), + [aux_sym_server_alive_count_max_token1] = ACTIONS(905), + [aux_sym_server_alive_interval_token1] = ACTIONS(905), + [aux_sym_session_type_token1] = ACTIONS(905), + [aux_sym_set_env_token1] = ACTIONS(905), + [aux_sym_stdin_null_token1] = ACTIONS(905), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(905), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(905), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(905), + [aux_sym_syslog_facility_token1] = ACTIONS(905), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(905), + [aux_sym_keep_alive_token1] = ACTIONS(905), + [aux_sym_tag_token1] = ACTIONS(905), + [aux_sym_tunnel_token1] = ACTIONS(907), + [aux_sym_tunnel_device_token1] = ACTIONS(905), + [aux_sym_update_host_keys_token1] = ACTIONS(905), + [aux_sym_use_keychain_token1] = ACTIONS(905), + [aux_sym_use_roaming_token1] = ACTIONS(905), + [aux_sym_user_token1] = ACTIONS(907), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(905), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(905), + [aux_sym_visual_host_key_token1] = ACTIONS(905), + [aux_sym_xauth_location_token1] = ACTIONS(905), + }, + [798] = { + [ts_builtin_sym_end] = ACTIONS(1749), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1751), + [aux_sym_match_token1] = ACTIONS(1749), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1749), + [aux_sym_address_family_token1] = ACTIONS(1749), + [aux_sym_batch_mode_token1] = ACTIONS(1749), + [aux_sym_bind_address_token1] = ACTIONS(1749), + [aux_sym_bind_interface_token1] = ACTIONS(1749), + [aux_sym_canonical_domains_token1] = ACTIONS(1749), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1749), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1749), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1749), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1749), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1749), + [aux_sym_certificate_file_token1] = ACTIONS(1749), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1749), + [aux_sym_channel_timeout_token1] = ACTIONS(1749), + [aux_sym_check_host_ip_token1] = ACTIONS(1749), + [aux_sym_ciphers_token1] = ACTIONS(1749), + [aux_sym_cipher_token1] = ACTIONS(1751), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1749), + [aux_sym_compression_token1] = ACTIONS(1749), + [aux_sym_connection_attempts_token1] = ACTIONS(1749), + [aux_sym_connect_timeout_token1] = ACTIONS(1749), + [aux_sym_control_master_token1] = ACTIONS(1749), + [aux_sym_control_path_token1] = ACTIONS(1749), + [aux_sym_control_persist_token1] = ACTIONS(1749), + [aux_sym_dynamic_forward_token1] = ACTIONS(1749), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1749), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1749), + [aux_sym_escape_char_token1] = ACTIONS(1749), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1749), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1749), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1749), + [aux_sym_forward_agent_token1] = ACTIONS(1749), + [aux_sym_forward_x11_token1] = ACTIONS(1751), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1749), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1749), + [aux_sym_gateway_ports_token1] = ACTIONS(1749), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1749), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1749), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1749), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1749), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1749), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1749), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1749), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1749), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1749), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1749), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1749), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1749), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1749), + [aux_sym_host_key_alias_token1] = ACTIONS(1749), + [aux_sym_hostname_token1] = ACTIONS(1749), + [aux_sym_identities_only_token1] = ACTIONS(1749), + [aux_sym_identity_agent_token1] = ACTIONS(1749), + [aux_sym_identity_file_token1] = ACTIONS(1749), + [aux_sym_ignore_unknown_token1] = ACTIONS(1749), + [aux_sym_include_token1] = ACTIONS(1749), + [aux_sym_ip_qos_token1] = ACTIONS(1749), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1749), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1749), + [aux_sym_kex_algorithms_token1] = ACTIONS(1749), + [aux_sym_known_hosts_command_token1] = ACTIONS(1749), + [aux_sym_local_command_token1] = ACTIONS(1749), + [aux_sym_local_forward_token1] = ACTIONS(1749), + [aux_sym_log_level_token1] = ACTIONS(1749), + [aux_sym_log_verbose_token1] = ACTIONS(1749), + [aux_sym_macs_token1] = ACTIONS(1749), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1749), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1749), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1749), + [aux_sym_password_authentication_token1] = ACTIONS(1749), + [aux_sym_permit_local_command_token1] = ACTIONS(1749), + [aux_sym_permit_remote_open_token1] = ACTIONS(1749), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1749), + [aux_sym_port_token1] = ACTIONS(1749), + [aux_sym_preferred_authentications_token1] = ACTIONS(1749), + [aux_sym_protocol_token1] = ACTIONS(1749), + [aux_sym_proxy_command_token1] = ACTIONS(1749), + [aux_sym_proxy_jump_token1] = ACTIONS(1749), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1749), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1749), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1749), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1749), + [aux_sym_rekey_limit_token1] = ACTIONS(1749), + [aux_sym_remote_command_token1] = ACTIONS(1749), + [aux_sym_remote_forward_token1] = ACTIONS(1749), + [aux_sym_request_tty_token1] = ACTIONS(1749), + [aux_sym_required_rsa_size_token1] = ACTIONS(1749), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1749), + [aux_sym_security_key_provider_token1] = ACTIONS(1749), + [aux_sym_send_env_token1] = ACTIONS(1749), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1749), + [aux_sym_server_alive_interval_token1] = ACTIONS(1749), + [aux_sym_session_type_token1] = ACTIONS(1749), + [aux_sym_set_env_token1] = ACTIONS(1749), + [aux_sym_stdin_null_token1] = ACTIONS(1749), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1749), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1749), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1749), + [aux_sym_syslog_facility_token1] = ACTIONS(1749), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1749), + [aux_sym_keep_alive_token1] = ACTIONS(1749), + [aux_sym_tag_token1] = ACTIONS(1749), + [aux_sym_tunnel_token1] = ACTIONS(1751), + [aux_sym_tunnel_device_token1] = ACTIONS(1749), + [aux_sym_update_host_keys_token1] = ACTIONS(1749), + [aux_sym_use_keychain_token1] = ACTIONS(1749), + [aux_sym_use_roaming_token1] = ACTIONS(1749), + [aux_sym_user_token1] = ACTIONS(1751), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1749), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1749), + [aux_sym_visual_host_key_token1] = ACTIONS(1749), + [aux_sym_xauth_location_token1] = ACTIONS(1749), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(773), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(775), + [aux_sym_match_token1] = ACTIONS(773), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(773), + [aux_sym_address_family_token1] = ACTIONS(773), + [aux_sym_batch_mode_token1] = ACTIONS(773), + [aux_sym_bind_address_token1] = ACTIONS(773), + [aux_sym_bind_interface_token1] = ACTIONS(773), + [aux_sym_canonical_domains_token1] = ACTIONS(773), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(773), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(773), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(773), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(773), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(773), + [aux_sym_certificate_file_token1] = ACTIONS(773), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(773), + [aux_sym_channel_timeout_token1] = ACTIONS(773), + [aux_sym_check_host_ip_token1] = ACTIONS(773), + [aux_sym_ciphers_token1] = ACTIONS(773), + [aux_sym_cipher_token1] = ACTIONS(775), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(773), + [aux_sym_compression_token1] = ACTIONS(773), + [aux_sym_connection_attempts_token1] = ACTIONS(773), + [aux_sym_connect_timeout_token1] = ACTIONS(773), + [aux_sym_control_master_token1] = ACTIONS(773), + [aux_sym_control_path_token1] = ACTIONS(773), + [aux_sym_control_persist_token1] = ACTIONS(773), + [aux_sym_dynamic_forward_token1] = ACTIONS(773), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(773), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(773), + [aux_sym_escape_char_token1] = ACTIONS(773), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(773), + [aux_sym_fingerprint_hash_token1] = ACTIONS(773), + [aux_sym_fork_after_authentication_token1] = ACTIONS(773), + [aux_sym_forward_agent_token1] = ACTIONS(773), + [aux_sym_forward_x11_token1] = ACTIONS(775), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(773), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(773), + [aux_sym_gateway_ports_token1] = ACTIONS(773), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(773), + [aux_sym_gssapi_authentication_token1] = ACTIONS(773), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(773), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(773), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(773), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(773), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(773), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(773), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(773), + [aux_sym_hash_known_hosts_token1] = ACTIONS(773), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(773), + [aux_sym_hostbased_authentication_token1] = ACTIONS(773), + [aux_sym_host_key_algorithms_token1] = ACTIONS(773), + [aux_sym_host_key_alias_token1] = ACTIONS(773), + [aux_sym_hostname_token1] = ACTIONS(773), + [aux_sym_identities_only_token1] = ACTIONS(773), + [aux_sym_identity_agent_token1] = ACTIONS(773), + [aux_sym_identity_file_token1] = ACTIONS(773), + [aux_sym_ignore_unknown_token1] = ACTIONS(773), + [aux_sym_include_token1] = ACTIONS(773), + [aux_sym_ip_qos_token1] = ACTIONS(773), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(773), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(773), + [aux_sym_kex_algorithms_token1] = ACTIONS(773), + [aux_sym_known_hosts_command_token1] = ACTIONS(773), + [aux_sym_local_command_token1] = ACTIONS(773), + [aux_sym_local_forward_token1] = ACTIONS(773), + [aux_sym_log_level_token1] = ACTIONS(773), + [aux_sym_log_verbose_token1] = ACTIONS(773), + [aux_sym_macs_token1] = ACTIONS(773), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(773), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(773), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(773), + [aux_sym_password_authentication_token1] = ACTIONS(773), + [aux_sym_permit_local_command_token1] = ACTIONS(773), + [aux_sym_permit_remote_open_token1] = ACTIONS(773), + [aux_sym_pkcs11_provider_token1] = ACTIONS(773), + [aux_sym_port_token1] = ACTIONS(773), + [aux_sym_preferred_authentications_token1] = ACTIONS(773), + [aux_sym_protocol_token1] = ACTIONS(773), + [aux_sym_proxy_command_token1] = ACTIONS(773), + [aux_sym_proxy_jump_token1] = ACTIONS(773), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(773), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(773), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(773), + [aux_sym_pubkey_authentication_token1] = ACTIONS(773), + [aux_sym_rekey_limit_token1] = ACTIONS(773), + [aux_sym_remote_command_token1] = ACTIONS(773), + [aux_sym_remote_forward_token1] = ACTIONS(773), + [aux_sym_request_tty_token1] = ACTIONS(773), + [aux_sym_required_rsa_size_token1] = ACTIONS(773), + [aux_sym_revoked_host_keys_token1] = ACTIONS(773), + [aux_sym_security_key_provider_token1] = ACTIONS(773), + [aux_sym_send_env_token1] = ACTIONS(773), + [aux_sym_server_alive_count_max_token1] = ACTIONS(773), + [aux_sym_server_alive_interval_token1] = ACTIONS(773), + [aux_sym_session_type_token1] = ACTIONS(773), + [aux_sym_set_env_token1] = ACTIONS(773), + [aux_sym_stdin_null_token1] = ACTIONS(773), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(773), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(773), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(773), + [aux_sym_syslog_facility_token1] = ACTIONS(773), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(773), + [aux_sym_keep_alive_token1] = ACTIONS(773), + [aux_sym_tag_token1] = ACTIONS(773), + [aux_sym_tunnel_token1] = ACTIONS(775), + [aux_sym_tunnel_device_token1] = ACTIONS(773), + [aux_sym_update_host_keys_token1] = ACTIONS(773), + [aux_sym_use_keychain_token1] = ACTIONS(773), + [aux_sym_use_roaming_token1] = ACTIONS(773), + [aux_sym_user_token1] = ACTIONS(775), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(773), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(773), + [aux_sym_visual_host_key_token1] = ACTIONS(773), + [aux_sym_xauth_location_token1] = ACTIONS(773), + }, + [800] = { + [ts_builtin_sym_end] = ACTIONS(1523), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1525), + [aux_sym_match_token1] = ACTIONS(1523), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1523), + [aux_sym_address_family_token1] = ACTIONS(1523), + [aux_sym_batch_mode_token1] = ACTIONS(1523), + [aux_sym_bind_address_token1] = ACTIONS(1523), + [aux_sym_bind_interface_token1] = ACTIONS(1523), + [aux_sym_canonical_domains_token1] = ACTIONS(1523), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1523), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1523), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1523), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1523), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1523), + [aux_sym_certificate_file_token1] = ACTIONS(1523), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1523), + [aux_sym_channel_timeout_token1] = ACTIONS(1523), + [aux_sym_check_host_ip_token1] = ACTIONS(1523), + [aux_sym_ciphers_token1] = ACTIONS(1523), + [aux_sym_cipher_token1] = ACTIONS(1525), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1523), + [aux_sym_compression_token1] = ACTIONS(1523), + [aux_sym_connection_attempts_token1] = ACTIONS(1523), + [aux_sym_connect_timeout_token1] = ACTIONS(1523), + [aux_sym_control_master_token1] = ACTIONS(1523), + [aux_sym_control_path_token1] = ACTIONS(1523), + [aux_sym_control_persist_token1] = ACTIONS(1523), + [aux_sym_dynamic_forward_token1] = ACTIONS(1523), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1523), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1523), + [aux_sym_escape_char_token1] = ACTIONS(1523), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1523), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1523), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1523), + [aux_sym_forward_agent_token1] = ACTIONS(1523), + [aux_sym_forward_x11_token1] = ACTIONS(1525), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1523), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1523), + [aux_sym_gateway_ports_token1] = ACTIONS(1523), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1523), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1523), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1523), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1523), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1523), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1523), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1523), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1523), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1523), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1523), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1523), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1523), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1523), + [aux_sym_host_key_alias_token1] = ACTIONS(1523), + [aux_sym_hostname_token1] = ACTIONS(1523), + [aux_sym_identities_only_token1] = ACTIONS(1523), + [aux_sym_identity_agent_token1] = ACTIONS(1523), + [aux_sym_identity_file_token1] = ACTIONS(1523), + [aux_sym_ignore_unknown_token1] = ACTIONS(1523), + [aux_sym_include_token1] = ACTIONS(1523), + [aux_sym_ip_qos_token1] = ACTIONS(1523), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1523), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1523), + [aux_sym_kex_algorithms_token1] = ACTIONS(1523), + [aux_sym_known_hosts_command_token1] = ACTIONS(1523), + [aux_sym_local_command_token1] = ACTIONS(1523), + [aux_sym_local_forward_token1] = ACTIONS(1523), + [aux_sym_log_level_token1] = ACTIONS(1523), + [aux_sym_log_verbose_token1] = ACTIONS(1523), + [aux_sym_macs_token1] = ACTIONS(1523), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1523), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1523), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1523), + [aux_sym_password_authentication_token1] = ACTIONS(1523), + [aux_sym_permit_local_command_token1] = ACTIONS(1523), + [aux_sym_permit_remote_open_token1] = ACTIONS(1523), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1523), + [aux_sym_port_token1] = ACTIONS(1523), + [aux_sym_preferred_authentications_token1] = ACTIONS(1523), + [aux_sym_protocol_token1] = ACTIONS(1523), + [aux_sym_proxy_command_token1] = ACTIONS(1523), + [aux_sym_proxy_jump_token1] = ACTIONS(1523), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1523), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1523), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1523), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1523), + [aux_sym_rekey_limit_token1] = ACTIONS(1523), + [aux_sym_remote_command_token1] = ACTIONS(1523), + [aux_sym_remote_forward_token1] = ACTIONS(1523), + [aux_sym_request_tty_token1] = ACTIONS(1523), + [aux_sym_required_rsa_size_token1] = ACTIONS(1523), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1523), + [aux_sym_security_key_provider_token1] = ACTIONS(1523), + [aux_sym_send_env_token1] = ACTIONS(1523), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1523), + [aux_sym_server_alive_interval_token1] = ACTIONS(1523), + [aux_sym_session_type_token1] = ACTIONS(1523), + [aux_sym_set_env_token1] = ACTIONS(1523), + [aux_sym_stdin_null_token1] = ACTIONS(1523), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1523), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1523), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1523), + [aux_sym_syslog_facility_token1] = ACTIONS(1523), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1523), + [aux_sym_keep_alive_token1] = ACTIONS(1523), + [aux_sym_tag_token1] = ACTIONS(1523), + [aux_sym_tunnel_token1] = ACTIONS(1525), + [aux_sym_tunnel_device_token1] = ACTIONS(1523), + [aux_sym_update_host_keys_token1] = ACTIONS(1523), + [aux_sym_use_keychain_token1] = ACTIONS(1523), + [aux_sym_use_roaming_token1] = ACTIONS(1523), + [aux_sym_user_token1] = ACTIONS(1525), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1523), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1523), + [aux_sym_visual_host_key_token1] = ACTIONS(1523), + [aux_sym_xauth_location_token1] = ACTIONS(1523), + }, + [801] = { + [ts_builtin_sym_end] = ACTIONS(1743), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1745), + [aux_sym_match_token1] = ACTIONS(1743), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1743), + [aux_sym_address_family_token1] = ACTIONS(1743), + [aux_sym_batch_mode_token1] = ACTIONS(1743), + [aux_sym_bind_address_token1] = ACTIONS(1743), + [aux_sym_bind_interface_token1] = ACTIONS(1743), + [aux_sym_canonical_domains_token1] = ACTIONS(1743), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1743), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1743), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1743), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1743), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1743), + [aux_sym_certificate_file_token1] = ACTIONS(1743), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1743), + [aux_sym_channel_timeout_token1] = ACTIONS(1743), + [aux_sym_check_host_ip_token1] = ACTIONS(1743), + [aux_sym_ciphers_token1] = ACTIONS(1743), + [aux_sym_cipher_token1] = ACTIONS(1745), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1743), + [aux_sym_compression_token1] = ACTIONS(1743), + [aux_sym_connection_attempts_token1] = ACTIONS(1743), + [aux_sym_connect_timeout_token1] = ACTIONS(1743), + [aux_sym_control_master_token1] = ACTIONS(1743), + [aux_sym_control_path_token1] = ACTIONS(1743), + [aux_sym_control_persist_token1] = ACTIONS(1743), + [aux_sym_dynamic_forward_token1] = ACTIONS(1743), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1743), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1743), + [aux_sym_escape_char_token1] = ACTIONS(1743), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1743), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1743), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1743), + [aux_sym_forward_agent_token1] = ACTIONS(1743), + [aux_sym_forward_x11_token1] = ACTIONS(1745), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1743), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1743), + [aux_sym_gateway_ports_token1] = ACTIONS(1743), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1743), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1743), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1743), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1743), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1743), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1743), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1743), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1743), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1743), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1743), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1743), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1743), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1743), + [aux_sym_host_key_alias_token1] = ACTIONS(1743), + [aux_sym_hostname_token1] = ACTIONS(1743), + [aux_sym_identities_only_token1] = ACTIONS(1743), + [aux_sym_identity_agent_token1] = ACTIONS(1743), + [aux_sym_identity_file_token1] = ACTIONS(1743), + [aux_sym_ignore_unknown_token1] = ACTIONS(1743), + [aux_sym_include_token1] = ACTIONS(1743), + [aux_sym_ip_qos_token1] = ACTIONS(1743), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1743), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1743), + [aux_sym_kex_algorithms_token1] = ACTIONS(1743), + [aux_sym_known_hosts_command_token1] = ACTIONS(1743), + [aux_sym_local_command_token1] = ACTIONS(1743), + [aux_sym_local_forward_token1] = ACTIONS(1743), + [aux_sym_log_level_token1] = ACTIONS(1743), + [aux_sym_log_verbose_token1] = ACTIONS(1743), + [aux_sym_macs_token1] = ACTIONS(1743), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1743), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1743), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1743), + [aux_sym_password_authentication_token1] = ACTIONS(1743), + [aux_sym_permit_local_command_token1] = ACTIONS(1743), + [aux_sym_permit_remote_open_token1] = ACTIONS(1743), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1743), + [aux_sym_port_token1] = ACTIONS(1743), + [aux_sym_preferred_authentications_token1] = ACTIONS(1743), + [aux_sym_protocol_token1] = ACTIONS(1743), + [aux_sym_proxy_command_token1] = ACTIONS(1743), + [aux_sym_proxy_jump_token1] = ACTIONS(1743), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1743), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1743), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1743), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1743), + [aux_sym_rekey_limit_token1] = ACTIONS(1743), + [aux_sym_remote_command_token1] = ACTIONS(1743), + [aux_sym_remote_forward_token1] = ACTIONS(1743), + [aux_sym_request_tty_token1] = ACTIONS(1743), + [aux_sym_required_rsa_size_token1] = ACTIONS(1743), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1743), + [aux_sym_security_key_provider_token1] = ACTIONS(1743), + [aux_sym_send_env_token1] = ACTIONS(1743), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1743), + [aux_sym_server_alive_interval_token1] = ACTIONS(1743), + [aux_sym_session_type_token1] = ACTIONS(1743), + [aux_sym_set_env_token1] = ACTIONS(1743), + [aux_sym_stdin_null_token1] = ACTIONS(1743), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1743), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1743), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1743), + [aux_sym_syslog_facility_token1] = ACTIONS(1743), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1743), + [aux_sym_keep_alive_token1] = ACTIONS(1743), + [aux_sym_tag_token1] = ACTIONS(1743), + [aux_sym_tunnel_token1] = ACTIONS(1745), + [aux_sym_tunnel_device_token1] = ACTIONS(1743), + [aux_sym_update_host_keys_token1] = ACTIONS(1743), + [aux_sym_use_keychain_token1] = ACTIONS(1743), + [aux_sym_use_roaming_token1] = ACTIONS(1743), + [aux_sym_user_token1] = ACTIONS(1745), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1743), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1743), + [aux_sym_visual_host_key_token1] = ACTIONS(1743), + [aux_sym_xauth_location_token1] = ACTIONS(1743), + }, + [802] = { + [ts_builtin_sym_end] = ACTIONS(1517), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1519), + [aux_sym_match_token1] = ACTIONS(1517), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1517), + [aux_sym_address_family_token1] = ACTIONS(1517), + [aux_sym_batch_mode_token1] = ACTIONS(1517), + [aux_sym_bind_address_token1] = ACTIONS(1517), + [aux_sym_bind_interface_token1] = ACTIONS(1517), + [aux_sym_canonical_domains_token1] = ACTIONS(1517), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1517), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1517), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1517), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1517), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1517), + [aux_sym_certificate_file_token1] = ACTIONS(1517), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1517), + [aux_sym_channel_timeout_token1] = ACTIONS(1517), + [aux_sym_check_host_ip_token1] = ACTIONS(1517), + [aux_sym_ciphers_token1] = ACTIONS(1517), + [aux_sym_cipher_token1] = ACTIONS(1519), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1517), + [aux_sym_compression_token1] = ACTIONS(1517), + [aux_sym_connection_attempts_token1] = ACTIONS(1517), + [aux_sym_connect_timeout_token1] = ACTIONS(1517), + [aux_sym_control_master_token1] = ACTIONS(1517), + [aux_sym_control_path_token1] = ACTIONS(1517), + [aux_sym_control_persist_token1] = ACTIONS(1517), + [aux_sym_dynamic_forward_token1] = ACTIONS(1517), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1517), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1517), + [aux_sym_escape_char_token1] = ACTIONS(1517), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1517), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1517), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1517), + [aux_sym_forward_agent_token1] = ACTIONS(1517), + [aux_sym_forward_x11_token1] = ACTIONS(1519), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1517), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1517), + [aux_sym_gateway_ports_token1] = ACTIONS(1517), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1517), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1517), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1517), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1517), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1517), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1517), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1517), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1517), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1517), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1517), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1517), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1517), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1517), + [aux_sym_host_key_alias_token1] = ACTIONS(1517), + [aux_sym_hostname_token1] = ACTIONS(1517), + [aux_sym_identities_only_token1] = ACTIONS(1517), + [aux_sym_identity_agent_token1] = ACTIONS(1517), + [aux_sym_identity_file_token1] = ACTIONS(1517), + [aux_sym_ignore_unknown_token1] = ACTIONS(1517), + [aux_sym_include_token1] = ACTIONS(1517), + [aux_sym_ip_qos_token1] = ACTIONS(1517), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1517), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1517), + [aux_sym_kex_algorithms_token1] = ACTIONS(1517), + [aux_sym_known_hosts_command_token1] = ACTIONS(1517), + [aux_sym_local_command_token1] = ACTIONS(1517), + [aux_sym_local_forward_token1] = ACTIONS(1517), + [aux_sym_log_level_token1] = ACTIONS(1517), + [aux_sym_log_verbose_token1] = ACTIONS(1517), + [aux_sym_macs_token1] = ACTIONS(1517), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1517), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1517), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1517), + [aux_sym_password_authentication_token1] = ACTIONS(1517), + [aux_sym_permit_local_command_token1] = ACTIONS(1517), + [aux_sym_permit_remote_open_token1] = ACTIONS(1517), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1517), + [aux_sym_port_token1] = ACTIONS(1517), + [aux_sym_preferred_authentications_token1] = ACTIONS(1517), + [aux_sym_protocol_token1] = ACTIONS(1517), + [aux_sym_proxy_command_token1] = ACTIONS(1517), + [aux_sym_proxy_jump_token1] = ACTIONS(1517), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1517), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1517), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1517), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1517), + [aux_sym_rekey_limit_token1] = ACTIONS(1517), + [aux_sym_remote_command_token1] = ACTIONS(1517), + [aux_sym_remote_forward_token1] = ACTIONS(1517), + [aux_sym_request_tty_token1] = ACTIONS(1517), + [aux_sym_required_rsa_size_token1] = ACTIONS(1517), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1517), + [aux_sym_security_key_provider_token1] = ACTIONS(1517), + [aux_sym_send_env_token1] = ACTIONS(1517), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1517), + [aux_sym_server_alive_interval_token1] = ACTIONS(1517), + [aux_sym_session_type_token1] = ACTIONS(1517), + [aux_sym_set_env_token1] = ACTIONS(1517), + [aux_sym_stdin_null_token1] = ACTIONS(1517), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1517), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1517), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1517), + [aux_sym_syslog_facility_token1] = ACTIONS(1517), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1517), + [aux_sym_keep_alive_token1] = ACTIONS(1517), + [aux_sym_tag_token1] = ACTIONS(1517), + [aux_sym_tunnel_token1] = ACTIONS(1519), + [aux_sym_tunnel_device_token1] = ACTIONS(1517), + [aux_sym_update_host_keys_token1] = ACTIONS(1517), + [aux_sym_use_keychain_token1] = ACTIONS(1517), + [aux_sym_use_roaming_token1] = ACTIONS(1517), + [aux_sym_user_token1] = ACTIONS(1519), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1517), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1517), + [aux_sym_visual_host_key_token1] = ACTIONS(1517), + [aux_sym_xauth_location_token1] = ACTIONS(1517), + }, + [803] = { + [ts_builtin_sym_end] = ACTIONS(899), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(901), + [aux_sym_match_token1] = ACTIONS(899), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(899), + [aux_sym_address_family_token1] = ACTIONS(899), + [aux_sym_batch_mode_token1] = ACTIONS(899), + [aux_sym_bind_address_token1] = ACTIONS(899), + [aux_sym_bind_interface_token1] = ACTIONS(899), + [aux_sym_canonical_domains_token1] = ACTIONS(899), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(899), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(899), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(899), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(899), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(899), + [aux_sym_certificate_file_token1] = ACTIONS(899), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(899), + [aux_sym_channel_timeout_token1] = ACTIONS(899), + [aux_sym_check_host_ip_token1] = ACTIONS(899), + [aux_sym_ciphers_token1] = ACTIONS(899), + [aux_sym_cipher_token1] = ACTIONS(901), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(899), + [aux_sym_compression_token1] = ACTIONS(899), + [aux_sym_connection_attempts_token1] = ACTIONS(899), + [aux_sym_connect_timeout_token1] = ACTIONS(899), + [aux_sym_control_master_token1] = ACTIONS(899), + [aux_sym_control_path_token1] = ACTIONS(899), + [aux_sym_control_persist_token1] = ACTIONS(899), + [aux_sym_dynamic_forward_token1] = ACTIONS(899), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(899), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(899), + [aux_sym_escape_char_token1] = ACTIONS(899), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(899), + [aux_sym_fingerprint_hash_token1] = ACTIONS(899), + [aux_sym_fork_after_authentication_token1] = ACTIONS(899), + [aux_sym_forward_agent_token1] = ACTIONS(899), + [aux_sym_forward_x11_token1] = ACTIONS(901), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(899), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(899), + [aux_sym_gateway_ports_token1] = ACTIONS(899), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(899), + [aux_sym_gssapi_authentication_token1] = ACTIONS(899), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(899), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(899), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(899), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(899), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(899), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(899), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(899), + [aux_sym_hash_known_hosts_token1] = ACTIONS(899), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(899), + [aux_sym_hostbased_authentication_token1] = ACTIONS(899), + [aux_sym_host_key_algorithms_token1] = ACTIONS(899), + [aux_sym_host_key_alias_token1] = ACTIONS(899), + [aux_sym_hostname_token1] = ACTIONS(899), + [aux_sym_identities_only_token1] = ACTIONS(899), + [aux_sym_identity_agent_token1] = ACTIONS(899), + [aux_sym_identity_file_token1] = ACTIONS(899), + [aux_sym_ignore_unknown_token1] = ACTIONS(899), + [aux_sym_include_token1] = ACTIONS(899), + [aux_sym_ip_qos_token1] = ACTIONS(899), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(899), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(899), + [aux_sym_kex_algorithms_token1] = ACTIONS(899), + [aux_sym_known_hosts_command_token1] = ACTIONS(899), + [aux_sym_local_command_token1] = ACTIONS(899), + [aux_sym_local_forward_token1] = ACTIONS(899), + [aux_sym_log_level_token1] = ACTIONS(899), + [aux_sym_log_verbose_token1] = ACTIONS(899), + [aux_sym_macs_token1] = ACTIONS(899), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(899), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(899), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(899), + [aux_sym_password_authentication_token1] = ACTIONS(899), + [aux_sym_permit_local_command_token1] = ACTIONS(899), + [aux_sym_permit_remote_open_token1] = ACTIONS(899), + [aux_sym_pkcs11_provider_token1] = ACTIONS(899), + [aux_sym_port_token1] = ACTIONS(899), + [aux_sym_preferred_authentications_token1] = ACTIONS(899), + [aux_sym_protocol_token1] = ACTIONS(899), + [aux_sym_proxy_command_token1] = ACTIONS(899), + [aux_sym_proxy_jump_token1] = ACTIONS(899), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(899), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(899), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(899), + [aux_sym_pubkey_authentication_token1] = ACTIONS(899), + [aux_sym_rekey_limit_token1] = ACTIONS(899), + [aux_sym_remote_command_token1] = ACTIONS(899), + [aux_sym_remote_forward_token1] = ACTIONS(899), + [aux_sym_request_tty_token1] = ACTIONS(899), + [aux_sym_required_rsa_size_token1] = ACTIONS(899), + [aux_sym_revoked_host_keys_token1] = ACTIONS(899), + [aux_sym_security_key_provider_token1] = ACTIONS(899), + [aux_sym_send_env_token1] = ACTIONS(899), + [aux_sym_server_alive_count_max_token1] = ACTIONS(899), + [aux_sym_server_alive_interval_token1] = ACTIONS(899), + [aux_sym_session_type_token1] = ACTIONS(899), + [aux_sym_set_env_token1] = ACTIONS(899), + [aux_sym_stdin_null_token1] = ACTIONS(899), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(899), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(899), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(899), + [aux_sym_syslog_facility_token1] = ACTIONS(899), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(899), + [aux_sym_keep_alive_token1] = ACTIONS(899), + [aux_sym_tag_token1] = ACTIONS(899), + [aux_sym_tunnel_token1] = ACTIONS(901), + [aux_sym_tunnel_device_token1] = ACTIONS(899), + [aux_sym_update_host_keys_token1] = ACTIONS(899), + [aux_sym_use_keychain_token1] = ACTIONS(899), + [aux_sym_use_roaming_token1] = ACTIONS(899), + [aux_sym_user_token1] = ACTIONS(901), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(899), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(899), + [aux_sym_visual_host_key_token1] = ACTIONS(899), + [aux_sym_xauth_location_token1] = ACTIONS(899), + }, + [804] = { + [ts_builtin_sym_end] = ACTIONS(1737), + [sym_comment] = ACTIONS(3), + [aux_sym_host_token1] = ACTIONS(1739), + [aux_sym_match_token1] = ACTIONS(1737), + [aux_sym_add_keys_to_agent_token1] = ACTIONS(1737), + [aux_sym_address_family_token1] = ACTIONS(1737), + [aux_sym_batch_mode_token1] = ACTIONS(1737), + [aux_sym_bind_address_token1] = ACTIONS(1737), + [aux_sym_bind_interface_token1] = ACTIONS(1737), + [aux_sym_canonical_domains_token1] = ACTIONS(1737), + [aux_sym_canonicalize_fallback_local_token1] = ACTIONS(1737), + [aux_sym_canonicalize_hostname_token1] = ACTIONS(1737), + [aux_sym_canonicalize_max_dots_token1] = ACTIONS(1737), + [aux_sym_canonicalize_permitted_cnames_token1] = ACTIONS(1737), + [aux_sym_ca_signature_algorithms_token1] = ACTIONS(1737), + [aux_sym_certificate_file_token1] = ACTIONS(1737), + [aux_sym_challenge_response_authentication_token1] = ACTIONS(1737), + [aux_sym_channel_timeout_token1] = ACTIONS(1737), + [aux_sym_check_host_ip_token1] = ACTIONS(1737), + [aux_sym_ciphers_token1] = ACTIONS(1737), + [aux_sym_cipher_token1] = ACTIONS(1739), + [aux_sym_clear_all_forwardings_token1] = ACTIONS(1737), + [aux_sym_compression_token1] = ACTIONS(1737), + [aux_sym_connection_attempts_token1] = ACTIONS(1737), + [aux_sym_connect_timeout_token1] = ACTIONS(1737), + [aux_sym_control_master_token1] = ACTIONS(1737), + [aux_sym_control_path_token1] = ACTIONS(1737), + [aux_sym_control_persist_token1] = ACTIONS(1737), + [aux_sym_dynamic_forward_token1] = ACTIONS(1737), + [aux_sym_enable_escape_commandline_token1] = ACTIONS(1737), + [aux_sym_enable_ssh_keysign_token1] = ACTIONS(1737), + [aux_sym_escape_char_token1] = ACTIONS(1737), + [aux_sym_exit_on_forward_failure_token1] = ACTIONS(1737), + [aux_sym_fingerprint_hash_token1] = ACTIONS(1737), + [aux_sym_fork_after_authentication_token1] = ACTIONS(1737), + [aux_sym_forward_agent_token1] = ACTIONS(1737), + [aux_sym_forward_x11_token1] = ACTIONS(1739), + [aux_sym_forward_x11_timeout_token1] = ACTIONS(1737), + [aux_sym_forward_x11_trusted_token1] = ACTIONS(1737), + [aux_sym_gateway_ports_token1] = ACTIONS(1737), + [aux_sym_global_known_hosts_file_token1] = ACTIONS(1737), + [aux_sym_gssapi_authentication_token1] = ACTIONS(1737), + [aux_sym_gssapi_client_identity_token1] = ACTIONS(1737), + [aux_sym_gssapi_delegate_credentials_token1] = ACTIONS(1737), + [aux_sym_gssapi_key_exchange_token1] = ACTIONS(1737), + [aux_sym_gssapi_renewal_forces_rekey_token1] = ACTIONS(1737), + [aux_sym_gssapi_server_identity_token1] = ACTIONS(1737), + [aux_sym_gssapi_trust_dns_token1] = ACTIONS(1737), + [aux_sym_gssapi_kex_algorithms_token1] = ACTIONS(1737), + [aux_sym_hash_known_hosts_token1] = ACTIONS(1737), + [aux_sym_hostbased_accepted_algorithms_token1] = ACTIONS(1737), + [aux_sym_hostbased_authentication_token1] = ACTIONS(1737), + [aux_sym_host_key_algorithms_token1] = ACTIONS(1737), + [aux_sym_host_key_alias_token1] = ACTIONS(1737), + [aux_sym_hostname_token1] = ACTIONS(1737), + [aux_sym_identities_only_token1] = ACTIONS(1737), + [aux_sym_identity_agent_token1] = ACTIONS(1737), + [aux_sym_identity_file_token1] = ACTIONS(1737), + [aux_sym_ignore_unknown_token1] = ACTIONS(1737), + [aux_sym_include_token1] = ACTIONS(1737), + [aux_sym_ip_qos_token1] = ACTIONS(1737), + [aux_sym_kbd_interactive_authentication_token1] = ACTIONS(1737), + [aux_sym_kbd_interactive_devices_token1] = ACTIONS(1737), + [aux_sym_kex_algorithms_token1] = ACTIONS(1737), + [aux_sym_known_hosts_command_token1] = ACTIONS(1737), + [aux_sym_local_command_token1] = ACTIONS(1737), + [aux_sym_local_forward_token1] = ACTIONS(1737), + [aux_sym_log_level_token1] = ACTIONS(1737), + [aux_sym_log_verbose_token1] = ACTIONS(1737), + [aux_sym_macs_token1] = ACTIONS(1737), + [aux_sym_no_host_authentication_for_localhost_token1] = ACTIONS(1737), + [aux_sym_number_of_password_prompts_token1] = ACTIONS(1737), + [aux_sym_obscure_keystroke_timing_token1] = ACTIONS(1737), + [aux_sym_password_authentication_token1] = ACTIONS(1737), + [aux_sym_permit_local_command_token1] = ACTIONS(1737), + [aux_sym_permit_remote_open_token1] = ACTIONS(1737), + [aux_sym_pkcs11_provider_token1] = ACTIONS(1737), + [aux_sym_port_token1] = ACTIONS(1737), + [aux_sym_preferred_authentications_token1] = ACTIONS(1737), + [aux_sym_protocol_token1] = ACTIONS(1737), + [aux_sym_proxy_command_token1] = ACTIONS(1737), + [aux_sym_proxy_jump_token1] = ACTIONS(1737), + [aux_sym_proxy_use_fdpass_token1] = ACTIONS(1737), + [aux_sym_pubkey_accepted_algorithms_token1] = ACTIONS(1737), + [aux_sym_pubkey_accepted_key_types_token1] = ACTIONS(1737), + [aux_sym_pubkey_authentication_token1] = ACTIONS(1737), + [aux_sym_rekey_limit_token1] = ACTIONS(1737), + [aux_sym_remote_command_token1] = ACTIONS(1737), + [aux_sym_remote_forward_token1] = ACTIONS(1737), + [aux_sym_request_tty_token1] = ACTIONS(1737), + [aux_sym_required_rsa_size_token1] = ACTIONS(1737), + [aux_sym_revoked_host_keys_token1] = ACTIONS(1737), + [aux_sym_security_key_provider_token1] = ACTIONS(1737), + [aux_sym_send_env_token1] = ACTIONS(1737), + [aux_sym_server_alive_count_max_token1] = ACTIONS(1737), + [aux_sym_server_alive_interval_token1] = ACTIONS(1737), + [aux_sym_session_type_token1] = ACTIONS(1737), + [aux_sym_set_env_token1] = ACTIONS(1737), + [aux_sym_stdin_null_token1] = ACTIONS(1737), + [aux_sym_stream_local_bind_mask_token1] = ACTIONS(1737), + [aux_sym_stream_local_bind_unlink_token1] = ACTIONS(1737), + [aux_sym_strict_host_key_checking_token1] = ACTIONS(1737), + [aux_sym_syslog_facility_token1] = ACTIONS(1737), + [aux_sym_tcp_keep_alive_token1] = ACTIONS(1737), + [aux_sym_keep_alive_token1] = ACTIONS(1737), + [aux_sym_tag_token1] = ACTIONS(1737), + [aux_sym_tunnel_token1] = ACTIONS(1739), + [aux_sym_tunnel_device_token1] = ACTIONS(1737), + [aux_sym_update_host_keys_token1] = ACTIONS(1737), + [aux_sym_use_keychain_token1] = ACTIONS(1737), + [aux_sym_use_roaming_token1] = ACTIONS(1737), + [aux_sym_user_token1] = ACTIONS(1739), + [aux_sym_user_known_hosts_file_token1] = ACTIONS(1737), + [aux_sym_verify_host_key_dns_token1] = ACTIONS(1737), + [aux_sym_visual_host_key_token1] = ACTIONS(1737), + [aux_sym_xauth_location_token1] = ACTIONS(1737), }, }; @@ -107783,13 +109610,13 @@ static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3569), 1, anon_sym_EQ, - ACTIONS(3540), 1, + ACTIONS(3571), 1, anon_sym_DQUOTE, - STATE(455), 1, + STATE(446), 1, sym_ip_qos_value, - ACTIONS(3536), 27, + ACTIONS(3567), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -107820,11 +109647,11 @@ static const uint16_t ts_small_parse_table[] = { [42] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3542), 1, + ACTIONS(3573), 1, anon_sym_DQUOTE, - STATE(172), 1, + STATE(174), 1, sym_ip_qos_value, - ACTIONS(3536), 27, + ACTIONS(3567), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -107855,9 +109682,9 @@ static const uint16_t ts_small_parse_table[] = { [81] = 3, ACTIONS(3), 1, sym_comment, - STATE(172), 1, + STATE(174), 1, sym_ip_qos_value, - ACTIONS(3536), 27, + ACTIONS(3567), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -107888,9 +109715,9 @@ static const uint16_t ts_small_parse_table[] = { [117] = 3, ACTIONS(3), 1, sym_comment, - STATE(60), 1, + STATE(61), 1, sym_ip_qos_value, - ACTIONS(3536), 27, + ACTIONS(3567), 27, sym_number, anon_sym_none, anon_sym_af11, @@ -107921,13 +109748,13 @@ static const uint16_t ts_small_parse_table[] = { [153] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3544), 1, + ACTIONS(3575), 1, anon_sym_EQ, - ACTIONS(3546), 1, + ACTIONS(3577), 1, anon_sym_DQUOTE, - STATE(289), 1, + STATE(291), 1, sym_syslog_facility_value, - ACTIONS(3548), 11, + ACTIONS(3579), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -107942,11 +109769,11 @@ static const uint16_t ts_small_parse_table[] = { [179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 1, + ACTIONS(3581), 1, anon_sym_DQUOTE, - STATE(131), 1, + STATE(132), 1, sym_syslog_facility_value, - ACTIONS(3548), 11, + ACTIONS(3579), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -107961,9 +109788,9 @@ static const uint16_t ts_small_parse_table[] = { [202] = 3, ACTIONS(3), 1, sym_comment, - STATE(131), 1, + STATE(132), 1, sym_syslog_facility_value, - ACTIONS(3548), 11, + ACTIONS(3579), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -107978,15 +109805,15 @@ static const uint16_t ts_small_parse_table[] = { [222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, + ACTIONS(3583), 1, anon_sym_EQ, - ACTIONS(3554), 1, + ACTIONS(3585), 1, anon_sym_DQUOTE, STATE(6), 1, aux_sym__channel_timeout_value, - STATE(1363), 1, + STATE(1376), 1, sym_channel_timeout_type, - ACTIONS(592), 8, + ACTIONS(597), 8, aux_sym_channel_timeout_type_token1, aux_sym_channel_timeout_type_token2, aux_sym_channel_timeout_type_token3, @@ -108000,7 +109827,7 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(19), 1, sym_syslog_facility_value, - ACTIONS(3548), 11, + ACTIONS(3579), 11, anon_sym_DAEMON, anon_sym_USER, anon_sym_AUTH, @@ -108015,15 +109842,15 @@ static const uint16_t ts_small_parse_table[] = { [268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 1, + ACTIONS(3587), 1, anon_sym_EQ, - ACTIONS(3558), 1, + ACTIONS(3589), 1, anon_sym_DQUOTE, - ACTIONS(3562), 1, + ACTIONS(3593), 1, aux_sym_log_level_value_token6, - STATE(422), 1, + STATE(429), 1, sym_log_level_value, - ACTIONS(3560), 8, + ACTIONS(3591), 8, aux_sym_log_level_value_token1, aux_sym_log_level_value_token2, aux_sym_log_level_value_token3, @@ -108035,31 +109862,13 @@ static const uint16_t ts_small_parse_table[] = { [294] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3564), 1, - anon_sym_DQUOTE, - STATE(7), 1, - aux_sym__channel_timeout_value, - STATE(1363), 1, - sym_channel_timeout_type, - ACTIONS(592), 8, - aux_sym_channel_timeout_type_token1, - aux_sym_channel_timeout_type_token2, - aux_sym_channel_timeout_type_token3, - aux_sym_channel_timeout_type_token4, - aux_sym_channel_timeout_type_token5, - aux_sym_channel_timeout_type_token6, - aux_sym_channel_timeout_type_token7, - aux_sym_channel_timeout_type_token8, - [317] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 1, + ACTIONS(3593), 1, aux_sym_log_level_value_token6, - ACTIONS(3566), 1, + ACTIONS(3595), 1, anon_sym_DQUOTE, - STATE(165), 1, + STATE(167), 1, sym_log_level_value, - ACTIONS(3560), 8, + ACTIONS(3591), 8, aux_sym_log_level_value_token1, aux_sym_log_level_value_token2, aux_sym_log_level_value_token3, @@ -108068,14 +109877,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_log_level_value_token7, aux_sym_log_level_value_token8, aux_sym_log_level_value_token9, - [340] = 4, + [317] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(3597), 1, + anon_sym_DQUOTE, STATE(7), 1, aux_sym__channel_timeout_value, - STATE(1363), 1, + STATE(1376), 1, sym_channel_timeout_type, - ACTIONS(592), 8, + ACTIONS(597), 8, aux_sym_channel_timeout_type_token1, aux_sym_channel_timeout_type_token2, aux_sym_channel_timeout_type_token3, @@ -108084,31 +109895,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_channel_timeout_type_token6, aux_sym_channel_timeout_type_token7, aux_sym_channel_timeout_type_token8, - [360] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3570), 1, - anon_sym_EQ, - ACTIONS(3572), 1, - anon_sym_DQUOTE, - STATE(293), 1, - sym_strict_host_key_checking_value, - ACTIONS(3568), 7, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token3, - aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_strict_host_key_checking_value_token1, - aux_sym_strict_host_key_checking_value_token2, - [382] = 4, + [340] = 4, ACTIONS(3), 1, sym_comment, STATE(5), 1, aux_sym__channel_timeout_value, - STATE(1363), 1, + STATE(1376), 1, sym_channel_timeout_type, - ACTIONS(592), 8, + ACTIONS(597), 8, aux_sym_channel_timeout_type_token1, aux_sym_channel_timeout_type_token2, aux_sym_channel_timeout_type_token3, @@ -108117,32 +109911,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_channel_timeout_type_token6, aux_sym_channel_timeout_type_token7, aux_sym_channel_timeout_type_token8, - [402] = 6, + [360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3576), 1, - anon_sym_EQ, - ACTIONS(3578), 1, - anon_sym_DQUOTE, - ACTIONS(3580), 1, - aux_sym_control_master_value_token2, - STATE(329), 1, - sym_control_master_value, - ACTIONS(3574), 6, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token3, - aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_control_master_value_token3, - [426] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3562), 1, + ACTIONS(3593), 1, aux_sym_log_level_value_token6, - STATE(53), 1, + STATE(167), 1, sym_log_level_value, - ACTIONS(3560), 8, + ACTIONS(3591), 8, aux_sym_log_level_value_token1, aux_sym_log_level_value_token2, aux_sym_log_level_value_token3, @@ -108151,14 +109927,47 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_log_level_value_token7, aux_sym_log_level_value_token8, aux_sym_log_level_value_token9, - [446] = 4, + [380] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(7), 1, + aux_sym__channel_timeout_value, + STATE(1376), 1, + sym_channel_timeout_type, + ACTIONS(597), 8, + aux_sym_channel_timeout_type_token1, + aux_sym_channel_timeout_type_token2, + aux_sym_channel_timeout_type_token3, + aux_sym_channel_timeout_type_token4, + aux_sym_channel_timeout_type_token5, + aux_sym_channel_timeout_type_token6, + aux_sym_channel_timeout_type_token7, + aux_sym_channel_timeout_type_token8, + [400] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3601), 1, + anon_sym_EQ, + ACTIONS(3603), 1, + anon_sym_DQUOTE, + STATE(295), 1, + sym_strict_host_key_checking_value, + ACTIONS(3599), 7, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + aux_sym_control_master_value_token1, + aux_sym_strict_host_key_checking_value_token1, + aux_sym_strict_host_key_checking_value_token2, + [422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3562), 1, + ACTIONS(3593), 1, aux_sym_log_level_value_token6, - STATE(165), 1, + STATE(54), 1, sym_log_level_value, - ACTIONS(3560), 8, + ACTIONS(3591), 8, aux_sym_log_level_value_token1, aux_sym_log_level_value_token2, aux_sym_log_level_value_token3, @@ -108167,1417 +109976,1435 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_log_level_value_token7, aux_sym_log_level_value_token8, aux_sym_log_level_value_token9, - [466] = 5, + [442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(3607), 1, anon_sym_EQ, - ACTIONS(3586), 1, + ACTIONS(3609), 1, anon_sym_DQUOTE, - STATE(339), 1, - sym_request_tty_value, - ACTIONS(3582), 6, - aux_sym_boolean_token1, - aux_sym_boolean_token2, - aux_sym_boolean_token3, - aux_sym_boolean_token4, - aux_sym_control_master_value_token2, - aux_sym_request_tty_value_token1, - [487] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3580), 1, + ACTIONS(3611), 1, aux_sym_control_master_value_token2, - ACTIONS(3588), 1, - anon_sym_DQUOTE, - STATE(207), 1, + STATE(331), 1, sym_control_master_value, - ACTIONS(3574), 6, + ACTIONS(3605), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_control_master_value_token1, aux_sym_control_master_value_token3, - [508] = 4, + [466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3615), 1, + aux_sym_boolean_token3, + ACTIONS(3617), 1, + anon_sym_EQ, + ACTIONS(3619), 1, anon_sym_DQUOTE, - STATE(132), 1, - sym_strict_host_key_checking_value, - ACTIONS(3568), 7, + STATE(274), 1, + sym_canonicalize_hostname_value, + ACTIONS(3613), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, - aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_strict_host_key_checking_value_token1, - aux_sym_strict_host_key_checking_value_token2, - [527] = 5, + aux_sym_canonicalize_hostname_value_token1, + aux_sym_canonicalize_hostname_value_token2, + [489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3594), 1, + ACTIONS(3623), 1, + sym_time_format, + ACTIONS(3625), 1, anon_sym_EQ, - ACTIONS(3596), 1, + ACTIONS(3627), 1, anon_sym_DQUOTE, - STATE(354), 1, - sym_pubkey_authentication_value, - ACTIONS(3592), 6, + STATE(336), 1, + sym_boolean, + STATE(339), 1, + sym_control_persist_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_pubkey_authentication_value_token1, - aux_sym_pubkey_authentication_value_token2, - [548] = 6, + [514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, - aux_sym_boolean_token3, - ACTIONS(3602), 1, + ACTIONS(3631), 1, anon_sym_EQ, - ACTIONS(3604), 1, + ACTIONS(3633), 1, anon_sym_DQUOTE, - STATE(272), 1, - sym_canonicalize_hostname_value, - ACTIONS(3598), 5, + STATE(356), 1, + sym_pubkey_authentication_value, + ACTIONS(3629), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, + aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_canonicalize_hostname_value_token1, - aux_sym_canonicalize_hostname_value_token2, - [571] = 7, + aux_sym_pubkey_authentication_value_token1, + aux_sym_pubkey_authentication_value_token2, + [535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - sym_time_format, - ACTIONS(3610), 1, + ACTIONS(3637), 1, anon_sym_EQ, - ACTIONS(3612), 1, + ACTIONS(3639), 1, anon_sym_DQUOTE, - STATE(334), 1, - sym_boolean, - STATE(337), 1, - sym_control_persist_value, - ACTIONS(3606), 4, + STATE(341), 1, + sym_request_tty_value, + ACTIONS(3635), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [596] = 6, + aux_sym_control_master_value_token2, + aux_sym_request_tty_value_token1, + [556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, - anon_sym_EQ, - ACTIONS(3616), 1, + ACTIONS(3611), 1, + aux_sym_control_master_value_token2, + ACTIONS(3641), 1, anon_sym_DQUOTE, - STATE(286), 1, - sym_tcp_keep_alive_value, - STATE(287), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(209), 1, + sym_control_master_value, + ACTIONS(3605), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [618] = 6, + aux_sym_control_master_value_token1, + aux_sym_control_master_value_token3, + [577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3618), 1, - anon_sym_EQ, - ACTIONS(3620), 1, + ACTIONS(3643), 1, anon_sym_DQUOTE, - STATE(424), 1, - sym_boolean, - STATE(425), 1, - sym_hash_known_hosts_value, - ACTIONS(3606), 4, + STATE(133), 1, + sym_strict_host_key_checking_value, + ACTIONS(3599), 7, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [640] = 6, + aux_sym_control_master_value_token1, + aux_sym_strict_host_key_checking_value_token1, + aux_sym_strict_host_key_checking_value_token2, + [596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3622), 1, + ACTIONS(3645), 1, anon_sym_EQ, - ACTIONS(3624), 1, + ACTIONS(3647), 1, anon_sym_DQUOTE, - STATE(312), 1, + STATE(416), 1, + sym_no_host_authentication_for_localhost_value, + STATE(417), 1, sym_boolean, - STATE(313), 1, - sym_clear_all_forwardings_value, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [662] = 6, + [618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3649), 1, anon_sym_EQ, - ACTIONS(3628), 1, + ACTIONS(3651), 1, anon_sym_DQUOTE, - STATE(398), 1, - sym_permit_local_command_value, - STATE(399), 1, + STATE(264), 1, + sym_use_keychain_value, + STATE(265), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [684] = 6, + [640] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3653), 1, anon_sym_EQ, - ACTIONS(3632), 1, + ACTIONS(3655), 1, anon_sym_DQUOTE, - STATE(295), 1, - sym_stream_local_bind_unlink_value, - STATE(296), 1, + STATE(358), 1, sym_boolean, - ACTIONS(3606), 4, + STATE(359), 1, + sym_exit_on_forward_failure_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [706] = 6, + [662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3657), 1, anon_sym_EQ, - ACTIONS(3636), 1, + ACTIONS(3659), 1, anon_sym_DQUOTE, - STATE(402), 1, - sym_password_authentication_value, - STATE(403), 1, + STATE(260), 1, + sym_use_roaming_value, + STATE(261), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [728] = 6, + [684] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3663), 1, anon_sym_EQ, - ACTIONS(3640), 1, + ACTIONS(3665), 1, anon_sym_DQUOTE, - STATE(316), 1, - sym_boolean, - STATE(317), 1, - sym_compression_value, - ACTIONS(3606), 4, + STATE(247), 1, + sym_verify_host_key_dns_value, + ACTIONS(3661), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [750] = 6, + aux_sym_control_master_value_token1, + [704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(3667), 1, anon_sym_EQ, - ACTIONS(3644), 1, + ACTIONS(3669), 1, anon_sym_DQUOTE, - STATE(392), 1, + STATE(434), 1, sym_boolean, - STATE(393), 1, - sym_gssapi_authentication_value, - ACTIONS(3606), 4, + STATE(435), 1, + sym_hostbased_authentication_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [772] = 4, + [726] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3646), 1, + ACTIONS(3671), 1, + anon_sym_EQ, + ACTIONS(3673), 1, anon_sym_DQUOTE, - STATE(148), 1, - sym_pubkey_authentication_value, - ACTIONS(3592), 6, + STATE(243), 1, + sym_visual_host_key_value, + STATE(244), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_pubkey_authentication_value_token1, - aux_sym_pubkey_authentication_value_token2, - [790] = 6, + [748] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3648), 1, + ACTIONS(3675), 1, anon_sym_EQ, - ACTIONS(3650), 1, + ACTIONS(3677), 1, anon_sym_DQUOTE, - STATE(411), 1, - sym_no_host_authentication_for_localhost_value, - STATE(412), 1, + STATE(350), 1, sym_boolean, - ACTIONS(3606), 4, + STATE(351), 1, + sym_enable_ssh_keysign_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [812] = 6, + [770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3652), 1, + ACTIONS(3679), 1, anon_sym_EQ, - ACTIONS(3654), 1, + ACTIONS(3681), 1, anon_sym_DQUOTE, - STATE(267), 1, + STATE(288), 1, + sym_tcp_keep_alive_value, + STATE(289), 1, sym_boolean, - STATE(268), 1, - sym_canonicalize_fallback_local_value, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [834] = 6, + [792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3656), 1, + ACTIONS(3683), 1, anon_sym_EQ, - ACTIONS(3658), 1, + ACTIONS(3685), 1, anon_sym_DQUOTE, - STATE(282), 1, - sym_keep_alive_value, - STATE(283), 1, + STATE(346), 1, sym_boolean, - ACTIONS(3606), 4, + STATE(347), 1, + sym_enable_escape_commandline_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [856] = 4, + [814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 1, + ACTIONS(3687), 1, + anon_sym_EQ, + ACTIONS(3689), 1, anon_sym_DQUOTE, - STATE(144), 1, - sym_request_tty_value, - ACTIONS(3582), 6, + STATE(369), 1, + sym_proxy_use_fdpass_value, + STATE(370), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token2, - aux_sym_request_tty_value_token1, - [874] = 6, + [836] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3662), 1, + ACTIONS(3691), 1, anon_sym_EQ, - ACTIONS(3664), 1, + ACTIONS(3693), 1, anon_sym_DQUOTE, - STATE(400), 1, + STATE(305), 1, + sym_stdin_null_value, + STATE(306), 1, sym_boolean, - STATE(401), 1, - sym_gssapi_delegate_credentials_value, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [896] = 5, + [858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(3695), 1, anon_sym_EQ, - ACTIONS(3670), 1, + ACTIONS(3697), 1, anon_sym_DQUOTE, - STATE(265), 1, - sym_update_host_keys_value, - ACTIONS(3666), 5, + STATE(426), 1, + sym_boolean, + STATE(427), 1, + sym_hash_known_hosts_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [916] = 6, + [880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(3699), 1, anon_sym_EQ, - ACTIONS(3674), 1, + ACTIONS(3701), 1, anon_sym_DQUOTE, - STATE(262), 1, - sym_use_keychain_value, - STATE(263), 1, + STATE(318), 1, sym_boolean, - ACTIONS(3606), 4, + STATE(319), 1, + sym_compression_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [938] = 6, + [902] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3676), 1, + ACTIONS(3703), 1, anon_sym_EQ, - ACTIONS(3678), 1, + ACTIONS(3705), 1, anon_sym_DQUOTE, - STATE(404), 1, + STATE(314), 1, sym_boolean, - STATE(405), 1, - sym_gssapi_key_exchange_value, - ACTIONS(3606), 4, + STATE(315), 1, + sym_clear_all_forwardings_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [960] = 6, + [924] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 1, - anon_sym_EQ, - ACTIONS(3682), 1, + ACTIONS(3615), 1, + aux_sym_boolean_token3, + ACTIONS(3707), 1, anon_sym_DQUOTE, - STATE(258), 1, - sym_use_roaming_value, - STATE(259), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(224), 1, + sym_canonicalize_hostname_value, + ACTIONS(3613), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, - aux_sym_boolean_token3, aux_sym_boolean_token4, - [982] = 6, + aux_sym_canonicalize_hostname_value_token1, + aux_sym_canonicalize_hostname_value_token2, + [944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - sym_time_format, - ACTIONS(3684), 1, + ACTIONS(3709), 1, + anon_sym_EQ, + ACTIONS(3711), 1, anon_sym_DQUOTE, - STATE(205), 1, - sym_control_persist_value, - STATE(334), 1, + STATE(366), 1, sym_boolean, - ACTIONS(3606), 4, + STATE(367), 1, + sym_fork_after_authentication_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1004] = 5, + [966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3688), 1, - anon_sym_EQ, - ACTIONS(3690), 1, - anon_sym_DQUOTE, - STATE(245), 1, - sym_verify_host_key_dns_value, - ACTIONS(3686), 5, + STATE(20), 1, + sym_strict_host_key_checking_value, + ACTIONS(3599), 7, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_control_master_value_token1, - [1024] = 6, + aux_sym_strict_host_key_checking_value_token1, + aux_sym_strict_host_key_checking_value_token2, + [982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3692), 1, + ACTIONS(3713), 1, anon_sym_EQ, - ACTIONS(3694), 1, + ACTIONS(3715), 1, anon_sym_DQUOTE, - STATE(241), 1, - sym_visual_host_key_value, - STATE(242), 1, + STATE(302), 1, sym_boolean, - ACTIONS(3606), 4, + STATE(303), 1, + sym_check_host_ip_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1046] = 4, + [1004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - aux_sym_control_master_value_token2, - STATE(207), 1, - sym_control_master_value, - ACTIONS(3574), 6, + ACTIONS(3717), 1, + anon_sym_EQ, + ACTIONS(3719), 1, + anon_sym_DQUOTE, + STATE(297), 1, + sym_stream_local_bind_unlink_value, + STATE(298), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_control_master_value_token3, - [1064] = 6, + [1026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3696), 1, + ACTIONS(3721), 1, anon_sym_EQ, - ACTIONS(3698), 1, + ACTIONS(3723), 1, anon_sym_DQUOTE, - STATE(408), 1, + STATE(374), 1, sym_boolean, - STATE(409), 1, - sym_gssapi_renewal_forces_rekey_value, - ACTIONS(3606), 4, + STATE(375), 1, + sym_forward_x11_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1086] = 6, + [1048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3700), 1, + ACTIONS(3725), 1, anon_sym_EQ, - ACTIONS(3702), 1, + ACTIONS(3727), 1, anon_sym_DQUOTE, - STATE(367), 1, - sym_proxy_use_fdpass_value, - STATE(368), 1, + STATE(450), 1, sym_boolean, - ACTIONS(3606), 4, + STATE(451), 1, + sym_identities_only_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1108] = 6, + [1070] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3704), 1, + ACTIONS(3729), 1, anon_sym_EQ, - ACTIONS(3706), 1, + ACTIONS(3731), 1, anon_sym_DQUOTE, - STATE(251), 1, + STATE(293), 1, sym_boolean, - STATE(252), 1, - sym_batch_mode_value, - ACTIONS(3606), 4, + STATE(294), 1, + sym_challenge_response_authentication_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1130] = 6, + [1092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3708), 1, + ACTIONS(3733), 1, anon_sym_EQ, - ACTIONS(3710), 1, + ACTIONS(3735), 1, anon_sym_DQUOTE, - STATE(416), 1, + STATE(418), 1, sym_boolean, - STATE(417), 1, + STATE(419), 1, sym_gssapi_trust_dns_value, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1152] = 6, + [1114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3712), 1, - anon_sym_EQ, - ACTIONS(3714), 1, - anon_sym_DQUOTE, - STATE(344), 1, - sym_boolean, - STATE(345), 1, - sym_enable_escape_commandline_value, - ACTIONS(3606), 4, + ACTIONS(3611), 1, + aux_sym_control_master_value_token2, + STATE(96), 1, + sym_control_master_value, + ACTIONS(3605), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1174] = 6, + aux_sym_control_master_value_token1, + aux_sym_control_master_value_token3, + [1132] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3716), 1, + ACTIONS(3737), 1, anon_sym_EQ, - ACTIONS(3718), 1, + ACTIONS(3739), 1, anon_sym_DQUOTE, - STATE(384), 1, + STATE(382), 1, sym_boolean, - STATE(385), 1, - sym_gateway_ports_value, - ACTIONS(3606), 4, + STATE(383), 1, + sym_forward_x11_trusted_value, + ACTIONS(3621), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, + [1154] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(133), 1, + sym_strict_host_key_checking_value, + ACTIONS(3599), 7, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1196] = 6, + aux_sym_control_master_value_token1, + aux_sym_strict_host_key_checking_value_token1, + aux_sym_strict_host_key_checking_value_token2, + [1170] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3720), 1, + ACTIONS(3741), 1, anon_sym_EQ, - ACTIONS(3722), 1, + ACTIONS(3743), 1, anon_sym_DQUOTE, - STATE(303), 1, - sym_stdin_null_value, - STATE(304), 1, + STATE(400), 1, + sym_permit_local_command_value, + STATE(401), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1218] = 6, + [1192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3724), 1, + ACTIONS(3745), 1, anon_sym_EQ, - ACTIONS(3726), 1, + ACTIONS(3747), 1, anon_sym_DQUOTE, - STATE(380), 1, + STATE(406), 1, sym_boolean, - STATE(381), 1, - sym_forward_x11_trusted_value, - ACTIONS(3606), 4, + STATE(407), 1, + sym_gssapi_key_exchange_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1240] = 6, + [1214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3728), 1, + ACTIONS(3749), 1, anon_sym_EQ, - ACTIONS(3730), 1, + ACTIONS(3751), 1, anon_sym_DQUOTE, - STATE(432), 1, + STATE(453), 1, sym_boolean, - STATE(433), 1, - sym_hostbased_authentication_value, - ACTIONS(3606), 4, + STATE(454), 1, + sym_kbd_interactive_authentication_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1262] = 6, + [1236] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(3753), 1, anon_sym_EQ, - ACTIONS(3734), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - STATE(348), 1, + STATE(269), 1, sym_boolean, - STATE(349), 1, - sym_enable_ssh_keysign_value, - ACTIONS(3606), 4, + STATE(270), 1, + sym_canonicalize_fallback_local_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1284] = 6, + [1258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3736), 1, + ACTIONS(3759), 1, anon_sym_EQ, - ACTIONS(3738), 1, + ACTIONS(3761), 1, anon_sym_DQUOTE, - STATE(436), 1, - sym_boolean, - STATE(443), 1, - sym_kbd_interactive_authentication_value, - ACTIONS(3606), 4, + STATE(267), 1, + sym_update_host_keys_value, + ACTIONS(3757), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1306] = 6, + aux_sym_control_master_value_token1, + [1278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3740), 1, + ACTIONS(3763), 1, anon_sym_EQ, - ACTIONS(3742), 1, + ACTIONS(3765), 1, anon_sym_DQUOTE, - STATE(291), 1, + STATE(386), 1, sym_boolean, - STATE(292), 1, - sym_challenge_response_authentication_value, - ACTIONS(3606), 4, + STATE(387), 1, + sym_gateway_ports_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1328] = 3, + [1300] = 4, ACTIONS(3), 1, sym_comment, - STATE(132), 1, - sym_strict_host_key_checking_value, - ACTIONS(3568), 7, + ACTIONS(3611), 1, + aux_sym_control_master_value_token2, + STATE(209), 1, + sym_control_master_value, + ACTIONS(3605), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_control_master_value_token1, - aux_sym_strict_host_key_checking_value_token1, - aux_sym_strict_host_key_checking_value_token2, - [1344] = 6, + aux_sym_control_master_value_token3, + [1318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3744), 1, + ACTIONS(3767), 1, anon_sym_EQ, - ACTIONS(3746), 1, + ACTIONS(3769), 1, anon_sym_DQUOTE, - STATE(300), 1, + STATE(404), 1, + sym_password_authentication_value, + STATE(405), 1, sym_boolean, - STATE(301), 1, - sym_check_host_ip_value, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1366] = 3, + [1340] = 6, ACTIONS(3), 1, sym_comment, - STATE(20), 1, - sym_strict_host_key_checking_value, - ACTIONS(3568), 7, + ACTIONS(3623), 1, + sym_time_format, + ACTIONS(3771), 1, + anon_sym_DQUOTE, + STATE(207), 1, + sym_control_persist_value, + STATE(336), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_strict_host_key_checking_value_token1, - aux_sym_strict_host_key_checking_value_token2, - [1382] = 4, + [1362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - aux_sym_control_master_value_token2, - STATE(95), 1, - sym_control_master_value, - ACTIONS(3574), 6, + ACTIONS(3773), 1, + anon_sym_DQUOTE, + STATE(145), 1, + sym_request_tty_value, + ACTIONS(3635), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - aux_sym_control_master_value_token3, - [1400] = 6, + aux_sym_control_master_value_token2, + aux_sym_request_tty_value_token1, + [1380] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3748), 1, + ACTIONS(3775), 1, anon_sym_EQ, - ACTIONS(3750), 1, + ACTIONS(3777), 1, anon_sym_DQUOTE, - STATE(372), 1, + STATE(253), 1, sym_boolean, - STATE(373), 1, - sym_forward_x11_value, - ACTIONS(3606), 4, + STATE(254), 1, + sym_batch_mode_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1422] = 6, + [1402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3752), 1, + ACTIONS(3779), 1, anon_sym_EQ, - ACTIONS(3754), 1, + ACTIONS(3781), 1, anon_sym_DQUOTE, - STATE(356), 1, + STATE(245), 1, sym_boolean, - STATE(357), 1, - sym_exit_on_forward_failure_value, - ACTIONS(3606), 4, + STATE(246), 1, + sym_add_keys_to_agent_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1444] = 6, + [1424] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_EQ, - ACTIONS(3758), 1, + ACTIONS(3783), 1, anon_sym_DQUOTE, - STATE(448), 1, - sym_boolean, - STATE(449), 1, - sym_identities_only_value, - ACTIONS(3606), 4, + STATE(149), 1, + sym_pubkey_authentication_value, + ACTIONS(3629), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1466] = 6, + aux_sym_pubkey_authentication_value_token1, + aux_sym_pubkey_authentication_value_token2, + [1442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3760), 1, + ACTIONS(3785), 1, anon_sym_EQ, - ACTIONS(3762), 1, + ACTIONS(3787), 1, anon_sym_DQUOTE, - STATE(243), 1, + STATE(394), 1, sym_boolean, - STATE(244), 1, - sym_add_keys_to_agent_value, - ACTIONS(3606), 4, + STATE(395), 1, + sym_gssapi_authentication_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1488] = 6, + [1464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3764), 1, + ACTIONS(3789), 1, anon_sym_EQ, - ACTIONS(3766), 1, + ACTIONS(3791), 1, anon_sym_DQUOTE, - STATE(364), 1, + STATE(410), 1, sym_boolean, - STATE(365), 1, - sym_fork_after_authentication_value, - ACTIONS(3606), 4, + STATE(411), 1, + sym_gssapi_renewal_forces_rekey_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1510] = 5, + [1486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, - aux_sym_boolean_token3, - ACTIONS(3768), 1, + ACTIONS(3793), 1, + anon_sym_EQ, + ACTIONS(3795), 1, anon_sym_DQUOTE, - STATE(222), 1, - sym_canonicalize_hostname_value, - ACTIONS(3598), 5, + STATE(284), 1, + sym_keep_alive_value, + STATE(285), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, + aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_canonicalize_hostname_value_token1, - aux_sym_canonicalize_hostname_value_token2, - [1530] = 4, + [1508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 1, + ACTIONS(3797), 1, + anon_sym_EQ, + ACTIONS(3799), 1, anon_sym_DQUOTE, - STATE(120), 1, - sym_verify_host_key_dns_value, - ACTIONS(3686), 5, + STATE(402), 1, + sym_boolean, + STATE(403), 1, + sym_gssapi_delegate_credentials_value, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [1547] = 5, + [1530] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 1, + ACTIONS(3801), 1, anon_sym_DQUOTE, - STATE(123), 1, - sym_use_roaming_value, - STATE(259), 1, + STATE(213), 1, + sym_clear_all_forwardings_value, + STATE(314), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1566] = 4, + [1549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3774), 1, + ACTIONS(3803), 1, anon_sym_DQUOTE, - STATE(125), 1, - sym_update_host_keys_value, - ACTIONS(3666), 5, + STATE(205), 1, + sym_enable_escape_commandline_value, + STATE(346), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [1583] = 3, + [1568] = 5, ACTIONS(3), 1, sym_comment, - STATE(36), 1, - sym_pubkey_authentication_value, - ACTIONS(3592), 6, + ACTIONS(3805), 1, + anon_sym_DQUOTE, + STATE(179), 1, + sym_identities_only_value, + STATE(450), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_pubkey_authentication_value_token1, - aux_sym_pubkey_authentication_value_token2, - [1598] = 5, + [1587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3776), 1, + ACTIONS(3807), 1, anon_sym_DQUOTE, - STATE(193), 1, - sym_gateway_ports_value, - STATE(384), 1, + STATE(173), 1, + sym_kbd_interactive_authentication_value, + STATE(453), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1617] = 5, + [1606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3778), 1, + ACTIONS(3809), 1, anon_sym_DQUOTE, - STATE(129), 1, - sym_keep_alive_value, - STATE(283), 1, + STATE(185), 1, + sym_hash_known_hosts_value, + STATE(426), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1636] = 5, + [1625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 1, + ACTIONS(3811), 1, anon_sym_DQUOTE, - STATE(181), 1, - sym_hostbased_authentication_value, - STATE(432), 1, + STATE(164), 1, + sym_no_host_authentication_for_localhost_value, + STATE(417), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1655] = 5, + [1644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, + ACTIONS(3813), 1, anon_sym_DQUOTE, - STATE(217), 1, - sym_challenge_response_authentication_value, - STATE(291), 1, + STATE(187), 1, + sym_gssapi_trust_dns_value, + STATE(418), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1674] = 5, + [1663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 1, + ACTIONS(3815), 1, anon_sym_DQUOTE, - STATE(124), 1, - sym_use_keychain_value, - STATE(263), 1, + STATE(161), 1, + sym_password_authentication_value, + STATE(405), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1693] = 5, + [1682] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3786), 1, + ACTIONS(3817), 1, anon_sym_DQUOTE, - STATE(130), 1, - sym_tcp_keep_alive_value, - STATE(287), 1, + STATE(189), 1, + sym_gssapi_renewal_forces_rekey_value, + STATE(410), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1712] = 5, + [1701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 1, + ACTIONS(3819), 1, anon_sym_DQUOTE, - STATE(194), 1, - sym_forward_x11_trusted_value, - STATE(380), 1, + STATE(160), 1, + sym_permit_local_command_value, + STATE(401), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1731] = 5, + [1720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3790), 1, + ACTIONS(3821), 1, anon_sym_DQUOTE, - STATE(189), 1, - sym_gssapi_delegate_credentials_value, - STATE(400), 1, + STATE(190), 1, + sym_gssapi_key_exchange_value, + STATE(406), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1750] = 5, + [1739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3792), 1, + ACTIONS(3823), 1, anon_sym_DQUOTE, - STATE(223), 1, - sym_canonicalize_fallback_local_value, - STATE(267), 1, + STATE(191), 1, + sym_gssapi_delegate_credentials_value, + STATE(402), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1769] = 5, + [1758] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3794), 1, + ACTIONS(3825), 1, anon_sym_DQUOTE, - STATE(188), 1, - sym_gssapi_key_exchange_value, - STATE(404), 1, + STATE(193), 1, + sym_gssapi_authentication_value, + STATE(394), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1788] = 5, + [1777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - STATE(177), 1, - sym_identities_only_value, - STATE(448), 1, + STATE(195), 1, + sym_gateway_ports_value, + STATE(386), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1807] = 5, + [1796] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3829), 1, anon_sym_DQUOTE, STATE(196), 1, - sym_forward_x11_value, - STATE(372), 1, + sym_forward_x11_trusted_value, + STATE(382), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1826] = 5, + [1815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(3831), 1, anon_sym_DQUOTE, - STATE(171), 1, - sym_kbd_interactive_authentication_value, - STATE(436), 1, + STATE(152), 1, + sym_proxy_use_fdpass_value, + STATE(370), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1845] = 3, + [1834] = 5, ACTIONS(3), 1, sym_comment, - STATE(32), 1, - sym_request_tty_value, - ACTIONS(3582), 6, + ACTIONS(3833), 1, + anon_sym_DQUOTE, + STATE(198), 1, + sym_forward_x11_value, + STATE(374), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token2, - aux_sym_request_tty_value_token1, - [1860] = 5, + [1853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 1, + ACTIONS(3835), 1, anon_sym_DQUOTE, - STATE(227), 1, - sym_batch_mode_value, - STATE(251), 1, + STATE(200), 1, + sym_fork_after_authentication_value, + STATE(366), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1879] = 5, + [1872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3804), 1, - anon_sym_DQUOTE, - STATE(214), 1, - sym_check_host_ip_value, - STATE(300), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(149), 1, + sym_pubkey_authentication_value, + ACTIONS(3629), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1898] = 5, + aux_sym_pubkey_authentication_value_token1, + aux_sym_pubkey_authentication_value_token2, + [1887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3806), 1, + ACTIONS(3837), 1, anon_sym_DQUOTE, - STATE(151), 1, - sym_proxy_use_fdpass_value, - STATE(368), 1, + STATE(202), 1, + sym_exit_on_forward_failure_value, + STATE(358), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1917] = 5, + [1906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 1, + ACTIONS(3839), 1, anon_sym_DQUOTE, - STATE(133), 1, - sym_stream_local_bind_unlink_value, - STATE(296), 1, + STATE(204), 1, + sym_enable_ssh_keysign_value, + STATE(350), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1936] = 4, + [1925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, - aux_sym_boolean_token3, - STATE(222), 1, - sym_canonicalize_hostname_value, - ACTIONS(3598), 5, + STATE(145), 1, + sym_request_tty_value, + ACTIONS(3635), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, + aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_canonicalize_hostname_value_token1, - aux_sym_canonicalize_hostname_value_token2, - [1953] = 5, + aux_sym_control_master_value_token2, + aux_sym_request_tty_value_token1, + [1940] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3810), 1, - anon_sym_DQUOTE, - STATE(191), 1, - sym_gssapi_authentication_value, - STATE(392), 1, + ACTIONS(3623), 1, + sym_time_format, + STATE(207), 1, + sym_control_persist_value, + STATE(336), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1972] = 5, + [1959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - sym_time_format, - STATE(93), 1, - sym_control_persist_value, - STATE(334), 1, + ACTIONS(3841), 1, + anon_sym_DQUOTE, + STATE(212), 1, + sym_compression_value, + STATE(318), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [1991] = 5, + [1978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3812), 1, + ACTIONS(3843), 1, anon_sym_DQUOTE, - STATE(135), 1, + STATE(136), 1, sym_stdin_null_value, - STATE(304), 1, + STATE(306), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2010] = 5, + [1997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3814), 1, + ACTIONS(3845), 1, anon_sym_DQUOTE, - STATE(119), 1, - sym_visual_host_key_value, - STATE(242), 1, + STATE(134), 1, + sym_stream_local_bind_unlink_value, + STATE(298), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2029] = 5, + [2016] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3816), 1, + ACTIONS(3847), 1, anon_sym_DQUOTE, - STATE(211), 1, - sym_clear_all_forwardings_value, - STATE(312), 1, + STATE(216), 1, + sym_check_host_ip_value, + STATE(302), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2048] = 5, + [2035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3818), 1, + ACTIONS(3849), 1, anon_sym_DQUOTE, - STATE(198), 1, - sym_fork_after_authentication_value, - STATE(364), 1, + STATE(131), 1, + sym_tcp_keep_alive_value, + STATE(289), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2067] = 5, + [2054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3820), 1, + ACTIONS(3851), 1, anon_sym_DQUOTE, - STATE(210), 1, - sym_compression_value, - STATE(316), 1, + STATE(219), 1, + sym_challenge_response_authentication_value, + STATE(293), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2086] = 5, + [2073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 1, + ACTIONS(3853), 1, anon_sym_DQUOTE, - STATE(159), 1, - sym_permit_local_command_value, - STATE(399), 1, + STATE(130), 1, + sym_keep_alive_value, + STATE(285), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2105] = 5, + [2092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3824), 1, - anon_sym_DQUOTE, - STATE(229), 1, - sym_add_keys_to_agent_value, - STATE(243), 1, - sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3615), 1, + aux_sym_boolean_token3, + STATE(224), 1, + sym_canonicalize_hostname_value, + ACTIONS(3613), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, - aux_sym_boolean_token3, aux_sym_boolean_token4, - [2124] = 5, + aux_sym_canonicalize_hostname_value_token1, + aux_sym_canonicalize_hostname_value_token2, + [2109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 1, + ACTIONS(3855), 1, anon_sym_DQUOTE, - STATE(187), 1, - sym_gssapi_renewal_forces_rekey_value, - STATE(408), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(126), 1, + sym_update_host_keys_value, + ACTIONS(3757), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2143] = 5, + aux_sym_control_master_value_token1, + [2126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(3857), 1, anon_sym_DQUOTE, - STATE(160), 1, - sym_password_authentication_value, - STATE(403), 1, + STATE(125), 1, + sym_use_keychain_value, + STATE(265), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2162] = 5, + [2145] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 1, + ACTIONS(3859), 1, anon_sym_DQUOTE, - STATE(185), 1, - sym_gssapi_trust_dns_value, - STATE(416), 1, + STATE(225), 1, + sym_canonicalize_fallback_local_value, + STATE(269), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2181] = 4, + [2164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3600), 1, - aux_sym_boolean_token3, - STATE(108), 1, - sym_canonicalize_hostname_value, - ACTIONS(3598), 5, + ACTIONS(3861), 1, + anon_sym_DQUOTE, + STATE(124), 1, + sym_use_roaming_value, + STATE(261), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, + aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_canonicalize_hostname_value_token1, - aux_sym_canonicalize_hostname_value_token2, - [2198] = 5, + [2183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - sym_time_format, - STATE(205), 1, - sym_control_persist_value, - STATE(334), 1, + ACTIONS(3863), 1, + anon_sym_DQUOTE, + STATE(229), 1, + sym_batch_mode_value, + STATE(253), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2217] = 3, + [2202] = 4, ACTIONS(3), 1, sym_comment, - STATE(144), 1, - sym_request_tty_value, - ACTIONS(3582), 6, + ACTIONS(3865), 1, + anon_sym_DQUOTE, + STATE(121), 1, + sym_verify_host_key_dns_value, + ACTIONS(3661), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token2, - aux_sym_request_tty_value_token1, - [2232] = 5, + aux_sym_control_master_value_token1, + [2219] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 1, - anon_sym_EQ, - ACTIONS(3836), 1, + ACTIONS(3867), 1, anon_sym_DQUOTE, - STATE(274), 1, - sym_tunnel_value, - ACTIONS(3832), 4, + STATE(120), 1, + sym_visual_host_key_value, + STATE(244), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, + aux_sym_boolean_token2, aux_sym_boolean_token3, - aux_sym_tunnel_value_token1, - aux_sym_tunnel_value_token2, - [2251] = 5, + aux_sym_boolean_token4, + [2238] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 1, + ACTIONS(3869), 1, anon_sym_DQUOTE, - STATE(162), 1, - sym_no_host_authentication_for_localhost_value, - STATE(412), 1, + STATE(231), 1, + sym_add_keys_to_agent_value, + STATE(245), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2270] = 5, + [2257] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3840), 1, + ACTIONS(3871), 1, anon_sym_DQUOTE, - STATE(203), 1, - sym_enable_escape_commandline_value, - STATE(344), 1, + STATE(183), 1, + sym_hostbased_authentication_value, + STATE(434), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2289] = 5, + [2276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3842), 1, - anon_sym_DQUOTE, - STATE(202), 1, - sym_enable_ssh_keysign_value, - STATE(348), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(32), 1, + sym_request_tty_value, + ACTIONS(3635), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2308] = 5, + aux_sym_control_master_value_token2, + aux_sym_request_tty_value_token1, + [2291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 1, - anon_sym_DQUOTE, - STATE(183), 1, - sym_hash_known_hosts_value, - STATE(424), 1, - sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3615), 1, + aux_sym_boolean_token3, + STATE(109), 1, + sym_canonicalize_hostname_value, + ACTIONS(3613), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, - aux_sym_boolean_token3, aux_sym_boolean_token4, - [2327] = 5, + aux_sym_canonicalize_hostname_value_token1, + aux_sym_canonicalize_hostname_value_token2, + [2308] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(3875), 1, + anon_sym_EQ, + ACTIONS(3877), 1, anon_sym_DQUOTE, - STATE(200), 1, - sym_exit_on_forward_failure_value, - STATE(356), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(276), 1, + sym_tunnel_value, + ACTIONS(3873), 4, aux_sym_boolean_token1, - aux_sym_boolean_token2, aux_sym_boolean_token3, - aux_sym_boolean_token4, - [2346] = 3, + aux_sym_tunnel_value_token1, + aux_sym_tunnel_value_token2, + [2327] = 3, ACTIONS(3), 1, sym_comment, - STATE(148), 1, + STATE(36), 1, sym_pubkey_authentication_value, - ACTIONS(3592), 6, + ACTIONS(3629), 6, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_pubkey_authentication_value_token1, aux_sym_pubkey_authentication_value_token2, + [2342] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3623), 1, + sym_time_format, + STATE(94), 1, + sym_control_persist_value, + STATE(336), 1, + sym_boolean, + ACTIONS(3621), 4, + aux_sym_boolean_token1, + aux_sym_boolean_token2, + aux_sym_boolean_token3, + aux_sym_boolean_token4, [2361] = 4, ACTIONS(3), 1, sym_comment, - STATE(119), 1, - sym_visual_host_key_value, - STATE(242), 1, + STATE(130), 1, + sym_keep_alive_value, + STATE(285), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109585,11 +111412,11 @@ static const uint16_t ts_small_parse_table[] = { [2377] = 4, ACTIONS(3), 1, sym_comment, - STATE(82), 1, - sym_forward_x11_trusted_value, - STATE(380), 1, + STATE(179), 1, + sym_identities_only_value, + STATE(450), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109597,11 +111424,11 @@ static const uint16_t ts_small_parse_table[] = { [2393] = 4, ACTIONS(3), 1, sym_comment, - STATE(202), 1, - sym_enable_ssh_keysign_value, - STATE(348), 1, + STATE(173), 1, + sym_kbd_interactive_authentication_value, + STATE(453), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109609,11 +111436,11 @@ static const uint16_t ts_small_parse_table[] = { [2409] = 4, ACTIONS(3), 1, sym_comment, - STATE(84), 1, - sym_forward_x11_value, - STATE(372), 1, + STATE(87), 1, + sym_fork_after_authentication_value, + STATE(366), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109621,11 +111448,11 @@ static const uint16_t ts_small_parse_table[] = { [2425] = 4, ACTIONS(3), 1, sym_comment, - STATE(47), 1, - sym_permit_local_command_value, - STATE(399), 1, + STATE(185), 1, + sym_hash_known_hosts_value, + STATE(426), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109633,11 +111460,11 @@ static const uint16_t ts_small_parse_table[] = { [2441] = 4, ACTIONS(3), 1, sym_comment, - STATE(200), 1, - sym_exit_on_forward_failure_value, - STATE(356), 1, + STATE(164), 1, + sym_no_host_authentication_for_localhost_value, + STATE(417), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109645,11 +111472,11 @@ static const uint16_t ts_small_parse_table[] = { [2457] = 4, ACTIONS(3), 1, sym_comment, - STATE(48), 1, - sym_password_authentication_value, - STATE(403), 1, + STATE(89), 1, + sym_exit_on_forward_failure_value, + STATE(358), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109657,11 +111484,11 @@ static const uint16_t ts_small_parse_table[] = { [2473] = 4, ACTIONS(3), 1, sym_comment, - STATE(203), 1, - sym_enable_escape_commandline_value, - STATE(344), 1, + STATE(187), 1, + sym_gssapi_trust_dns_value, + STATE(418), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109669,11 +111496,11 @@ static const uint16_t ts_small_parse_table[] = { [2489] = 4, ACTIONS(3), 1, sym_comment, - STATE(81), 1, - sym_gateway_ports_value, - STATE(384), 1, + STATE(189), 1, + sym_gssapi_renewal_forces_rekey_value, + STATE(410), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109681,11 +111508,11 @@ static const uint16_t ts_small_parse_table[] = { [2505] = 4, ACTIONS(3), 1, sym_comment, - STATE(211), 1, - sym_clear_all_forwardings_value, - STATE(312), 1, + STATE(91), 1, + sym_enable_ssh_keysign_value, + STATE(350), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109693,11 +111520,11 @@ static const uint16_t ts_small_parse_table[] = { [2521] = 4, ACTIONS(3), 1, sym_comment, - STATE(198), 1, - sym_fork_after_authentication_value, - STATE(364), 1, + STATE(161), 1, + sym_password_authentication_value, + STATE(405), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109705,11 +111532,11 @@ static const uint16_t ts_small_parse_table[] = { [2537] = 4, ACTIONS(3), 1, sym_comment, - STATE(50), 1, - sym_no_host_authentication_for_localhost_value, - STATE(412), 1, + STATE(92), 1, + sym_enable_escape_commandline_value, + STATE(346), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109717,11 +111544,11 @@ static const uint16_t ts_small_parse_table[] = { [2553] = 4, ACTIONS(3), 1, sym_comment, - STATE(135), 1, - sym_stdin_null_value, - STATE(304), 1, + STATE(190), 1, + sym_gssapi_key_exchange_value, + STATE(406), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109729,11 +111556,11 @@ static const uint16_t ts_small_parse_table[] = { [2569] = 4, ACTIONS(3), 1, sym_comment, - STATE(151), 1, - sym_proxy_use_fdpass_value, - STATE(368), 1, + STATE(60), 1, + sym_kbd_interactive_authentication_value, + STATE(453), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109741,11 +111568,11 @@ static const uint16_t ts_small_parse_table[] = { [2585] = 4, ACTIONS(3), 1, sym_comment, - STATE(39), 1, - sym_proxy_use_fdpass_value, - STATE(368), 1, + STATE(160), 1, + sym_permit_local_command_value, + STATE(401), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109753,11 +111580,11 @@ static const uint16_t ts_small_parse_table[] = { [2601] = 4, ACTIONS(3), 1, sym_comment, - STATE(214), 1, - sym_check_host_ip_value, - STATE(300), 1, + STATE(191), 1, + sym_gssapi_delegate_credentials_value, + STATE(402), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109765,11 +111592,11 @@ static const uint16_t ts_small_parse_table[] = { [2617] = 4, ACTIONS(3), 1, sym_comment, - STATE(196), 1, - sym_forward_x11_value, - STATE(372), 1, + STATE(39), 1, + sym_proxy_use_fdpass_value, + STATE(370), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109777,11 +111604,11 @@ static const uint16_t ts_small_parse_table[] = { [2633] = 4, ACTIONS(3), 1, sym_comment, - STATE(133), 1, - sym_stream_local_bind_unlink_value, - STATE(296), 1, + STATE(193), 1, + sym_gssapi_authentication_value, + STATE(394), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109789,11 +111616,11 @@ static const uint16_t ts_small_parse_table[] = { [2649] = 4, ACTIONS(3), 1, sym_comment, - STATE(217), 1, - sym_challenge_response_authentication_value, - STATE(291), 1, + STATE(195), 1, + sym_gateway_ports_value, + STATE(386), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109801,180 +111628,180 @@ static const uint16_t ts_small_parse_table[] = { [2665] = 4, ACTIONS(3), 1, sym_comment, - STATE(194), 1, - sym_forward_x11_trusted_value, - STATE(380), 1, + STATE(104), 1, + sym_challenge_response_authentication_value, + STATE(293), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2681] = 4, + [2681] = 5, ACTIONS(3), 1, sym_comment, - STATE(177), 1, - sym_identities_only_value, - STATE(448), 1, + ACTIONS(3879), 1, + anon_sym_EQ, + ACTIONS(3881), 1, + anon_sym_DQUOTE, + STATE(312), 1, + sym_session_type_value, + ACTIONS(3883), 3, + aux_sym_canonicalize_hostname_value_token2, + aux_sym_session_type_value_token1, + aux_sym_session_type_value_token2, + [2699] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(196), 1, + sym_forward_x11_trusted_value, + STATE(382), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2697] = 4, + [2715] = 4, ACTIONS(3), 1, sym_comment, - STATE(130), 1, - sym_tcp_keep_alive_value, - STATE(287), 1, + STATE(99), 1, + sym_compression_value, + STATE(318), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2713] = 4, + [2731] = 4, ACTIONS(3), 1, sym_comment, - STATE(193), 1, - sym_gateway_ports_value, - STATE(384), 1, + STATE(198), 1, + sym_forward_x11_value, + STATE(374), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2729] = 4, + [2747] = 4, ACTIONS(3), 1, sym_comment, - STATE(129), 1, - sym_keep_alive_value, - STATE(283), 1, + STATE(100), 1, + sym_clear_all_forwardings_value, + STATE(314), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2745] = 4, + [2763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - anon_sym_DQUOTE, - STATE(127), 1, - sym_tunnel_value, - ACTIONS(3832), 4, + STATE(83), 1, + sym_forward_x11_trusted_value, + STATE(382), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, + aux_sym_boolean_token2, aux_sym_boolean_token3, - aux_sym_tunnel_value_token1, - aux_sym_tunnel_value_token2, - [2761] = 4, + aux_sym_boolean_token4, + [2779] = 4, ACTIONS(3), 1, sym_comment, - STATE(17), 1, - sym_keep_alive_value, - STATE(283), 1, + STATE(152), 1, + sym_proxy_use_fdpass_value, + STATE(370), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2777] = 4, + [2795] = 4, ACTIONS(3), 1, sym_comment, - STATE(86), 1, - sym_fork_after_authentication_value, - STATE(364), 1, + STATE(103), 1, + sym_check_host_ip_value, + STATE(302), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2793] = 4, + [2811] = 4, ACTIONS(3), 1, sym_comment, - STATE(18), 1, - sym_tcp_keep_alive_value, - STATE(287), 1, + STATE(200), 1, + sym_fork_after_authentication_value, + STATE(366), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2809] = 4, + [2827] = 4, ACTIONS(3), 1, sym_comment, - STATE(191), 1, - sym_gssapi_authentication_value, - STATE(392), 1, + STATE(70), 1, + sym_hostbased_authentication_value, + STATE(434), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2825] = 4, + [2843] = 4, ACTIONS(3), 1, sym_comment, - STATE(235), 1, - sym_kbd_interactive_authentication_value, - STATE(436), 1, + STATE(202), 1, + sym_exit_on_forward_failure_value, + STATE(358), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2841] = 3, + [2859] = 4, ACTIONS(3), 1, sym_comment, - STATE(125), 1, - sym_update_host_keys_value, - ACTIONS(3666), 5, + STATE(85), 1, + sym_forward_x11_value, + STATE(374), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [2855] = 4, + [2875] = 4, ACTIONS(3), 1, sym_comment, - STATE(223), 1, - sym_canonicalize_fallback_local_value, - STATE(267), 1, + STATE(212), 1, + sym_compression_value, + STATE(318), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2871] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3850), 1, - anon_sym_EQ, - ACTIONS(3852), 1, - anon_sym_DQUOTE, - ACTIONS(3856), 1, - aux_sym_address_family_value_token2, - STATE(248), 1, - sym_address_family_value, - ACTIONS(3854), 2, - aux_sym_address_family_value_token1, - aux_sym_address_family_value_token3, [2891] = 4, ACTIONS(3), 1, sym_comment, - STATE(79), 1, - sym_gssapi_authentication_value, - STATE(392), 1, + STATE(82), 1, + sym_gateway_ports_value, + STATE(386), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, @@ -109982,4161 +111809,4215 @@ static const uint16_t ts_small_parse_table[] = { [2907] = 4, ACTIONS(3), 1, sym_comment, - STATE(189), 1, - sym_gssapi_delegate_credentials_value, - STATE(400), 1, + STATE(110), 1, + sym_canonicalize_fallback_local_value, + STATE(269), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2923] = 4, + [2923] = 6, ACTIONS(3), 1, sym_comment, - STATE(124), 1, - sym_use_keychain_value, - STATE(263), 1, + ACTIONS(3885), 1, + anon_sym_EQ, + ACTIONS(3887), 1, + anon_sym_DQUOTE, + ACTIONS(3891), 1, + aux_sym_address_family_value_token2, + STATE(250), 1, + sym_address_family_value, + ACTIONS(3889), 2, + aux_sym_address_family_value_token1, + aux_sym_address_family_value_token3, + [2943] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(232), 1, + sym_visual_host_key_value, + STATE(244), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2939] = 4, + [2959] = 4, ACTIONS(3), 1, sym_comment, - STATE(123), 1, - sym_use_roaming_value, - STATE(259), 1, + STATE(204), 1, + sym_enable_ssh_keysign_value, + STATE(350), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2955] = 4, + [2975] = 4, ACTIONS(3), 1, sym_comment, - STATE(227), 1, - sym_batch_mode_value, - STATE(251), 1, + STATE(72), 1, + sym_hash_known_hosts_value, + STATE(426), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2971] = 4, + [2991] = 4, ACTIONS(3), 1, sym_comment, - STATE(230), 1, - sym_visual_host_key_value, - STATE(242), 1, + STATE(114), 1, + sym_batch_mode_value, + STATE(253), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [2987] = 3, + [3007] = 3, ACTIONS(3), 1, sym_comment, - STATE(120), 1, + STATE(230), 1, sym_verify_host_key_dns_value, - ACTIONS(3686), 5, + ACTIONS(3661), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, aux_sym_control_master_value_token1, - [3001] = 4, + [3021] = 4, ACTIONS(3), 1, sym_comment, - STATE(159), 1, - sym_permit_local_command_value, - STATE(399), 1, + STATE(205), 1, + sym_enable_escape_commandline_value, + STATE(346), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3017] = 4, + [3037] = 4, ACTIONS(3), 1, sym_comment, - STATE(210), 1, - sym_compression_value, - STATE(316), 1, + STATE(66), 1, + sym_identities_only_value, + STATE(450), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3033] = 4, + [3053] = 4, ACTIONS(3), 1, sym_comment, - STATE(65), 1, - sym_identities_only_value, - STATE(448), 1, + STATE(116), 1, + sym_add_keys_to_agent_value, + STATE(245), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3049] = 4, + [3069] = 5, ACTIONS(3), 1, sym_comment, - STATE(188), 1, - sym_gssapi_key_exchange_value, - STATE(404), 1, + ACTIONS(3895), 1, + anon_sym_EQ, + ACTIONS(3897), 1, + anon_sym_DQUOTE, + STATE(408), 1, + sym_obscure_keystroke_timing_value, + ACTIONS(3893), 3, + aux_sym_boolean_token1, + aux_sym_boolean_token3, + aux_sym_obscure_keystroke_timing_value_token1, + [3087] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(183), 1, + sym_hostbased_authentication_value, + STATE(434), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3065] = 3, + [3103] = 4, ACTIONS(3), 1, sym_comment, - STATE(228), 1, - sym_verify_host_key_dns_value, - ACTIONS(3686), 5, + STATE(11), 1, + sym_use_roaming_value, + STATE(261), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [3079] = 4, + [3119] = 4, ACTIONS(3), 1, sym_comment, - STATE(88), 1, - sym_exit_on_forward_failure_value, - STATE(356), 1, + STATE(80), 1, + sym_gssapi_authentication_value, + STATE(394), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3095] = 4, + [3135] = 4, ACTIONS(3), 1, sym_comment, - STATE(229), 1, + STATE(231), 1, sym_add_keys_to_agent_value, - STATE(243), 1, + STATE(245), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3111] = 4, + [3151] = 4, ACTIONS(3), 1, sym_comment, - STATE(160), 1, - sym_password_authentication_value, - STATE(403), 1, + STATE(12), 1, + sym_use_keychain_value, + STATE(265), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3127] = 4, + [3167] = 4, ACTIONS(3), 1, sym_comment, - STATE(115), 1, - sym_add_keys_to_agent_value, - STATE(243), 1, + STATE(213), 1, + sym_clear_all_forwardings_value, + STATE(314), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3143] = 4, + [3183] = 4, ACTIONS(3), 1, sym_comment, - STATE(187), 1, - sym_gssapi_renewal_forces_rekey_value, - STATE(408), 1, + STATE(120), 1, + sym_visual_host_key_value, + STATE(244), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3159] = 4, + [3199] = 4, ACTIONS(3), 1, sym_comment, - STATE(113), 1, - sym_batch_mode_value, - STATE(251), 1, + STATE(47), 1, + sym_permit_local_command_value, + STATE(401), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3175] = 4, + [3215] = 3, ACTIONS(3), 1, sym_comment, - STATE(109), 1, - sym_canonicalize_fallback_local_value, - STATE(267), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(13), 1, + sym_update_host_keys_value, + ACTIONS(3757), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3191] = 4, + aux_sym_control_master_value_token1, + [3229] = 3, ACTIONS(3), 1, sym_comment, - STATE(162), 1, - sym_no_host_authentication_for_localhost_value, - STATE(412), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(121), 1, + sym_verify_host_key_dns_value, + ACTIONS(3661), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3207] = 4, + aux_sym_control_master_value_token1, + [3243] = 4, ACTIONS(3), 1, sym_comment, - STATE(11), 1, - sym_use_roaming_value, - STATE(259), 1, + STATE(74), 1, + sym_gssapi_trust_dns_value, + STATE(418), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3223] = 4, + [3259] = 4, ACTIONS(3), 1, sym_comment, - STATE(69), 1, - sym_hostbased_authentication_value, - STATE(432), 1, + STATE(136), 1, + sym_stdin_null_value, + STATE(306), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3239] = 4, + [3275] = 4, ACTIONS(3), 1, sym_comment, - STATE(185), 1, - sym_gssapi_trust_dns_value, - STATE(416), 1, + STATE(216), 1, + sym_check_host_ip_value, + STATE(302), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3255] = 4, + [3291] = 4, ACTIONS(3), 1, sym_comment, - STATE(103), 1, - sym_challenge_response_authentication_value, - STATE(291), 1, + STATE(51), 1, + sym_no_host_authentication_for_localhost_value, + STATE(417), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3271] = 4, + [3307] = 4, ACTIONS(3), 1, sym_comment, - STATE(12), 1, - sym_use_keychain_value, - STATE(263), 1, + STATE(134), 1, + sym_stream_local_bind_unlink_value, + STATE(298), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3287] = 4, + [3323] = 4, ACTIONS(3), 1, sym_comment, - STATE(71), 1, - sym_hash_known_hosts_value, - STATE(424), 1, + STATE(229), 1, + sym_batch_mode_value, + STATE(253), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3303] = 4, + [3339] = 4, ACTIONS(3), 1, sym_comment, - STATE(183), 1, - sym_hash_known_hosts_value, - STATE(424), 1, + STATE(124), 1, + sym_use_roaming_value, + STATE(261), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3319] = 4, + [3355] = 4, ACTIONS(3), 1, sym_comment, - STATE(102), 1, - sym_check_host_ip_value, - STATE(300), 1, + STATE(48), 1, + sym_password_authentication_value, + STATE(405), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3335] = 4, + [3371] = 4, ACTIONS(3), 1, sym_comment, - STATE(73), 1, - sym_gssapi_trust_dns_value, - STATE(416), 1, + STATE(76), 1, + sym_gssapi_renewal_forces_rekey_value, + STATE(410), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3351] = 4, + [3387] = 4, ACTIONS(3), 1, sym_comment, STATE(23), 1, sym_stdin_null_value, - STATE(304), 1, + STATE(306), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3367] = 4, + [3403] = 4, ACTIONS(3), 1, sym_comment, - STATE(99), 1, - sym_clear_all_forwardings_value, - STATE(312), 1, + STATE(125), 1, + sym_use_keychain_value, + STATE(265), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3383] = 4, + [3419] = 4, ACTIONS(3), 1, sym_comment, - STATE(75), 1, - sym_gssapi_renewal_forces_rekey_value, - STATE(408), 1, + STATE(78), 1, + sym_gssapi_delegate_credentials_value, + STATE(402), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3399] = 4, + [3435] = 4, ACTIONS(3), 1, sym_comment, - STATE(98), 1, - sym_compression_value, - STATE(316), 1, + STATE(225), 1, + sym_canonicalize_fallback_local_value, + STATE(269), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3415] = 3, + [3451] = 4, ACTIONS(3), 1, sym_comment, - STATE(13), 1, - sym_update_host_keys_value, - ACTIONS(3666), 5, + STATE(219), 1, + sym_challenge_response_authentication_value, + STATE(293), 1, + sym_boolean, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - aux_sym_control_master_value_token1, - [3429] = 4, + [3467] = 3, ACTIONS(3), 1, sym_comment, - STATE(76), 1, - sym_gssapi_key_exchange_value, - STATE(404), 1, - sym_boolean, - ACTIONS(3606), 4, + STATE(126), 1, + sym_update_host_keys_value, + ACTIONS(3757), 5, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3445] = 4, + aux_sym_control_master_value_token1, + [3481] = 4, ACTIONS(3), 1, sym_comment, STATE(21), 1, sym_stream_local_bind_unlink_value, - STATE(296), 1, + STATE(298), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3461] = 4, + [3497] = 4, ACTIONS(3), 1, sym_comment, - STATE(181), 1, - sym_hostbased_authentication_value, - STATE(432), 1, + STATE(17), 1, + sym_keep_alive_value, + STATE(285), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3477] = 4, + [3513] = 4, ACTIONS(3), 1, sym_comment, - STATE(171), 1, - sym_kbd_interactive_authentication_value, - STATE(436), 1, + STATE(131), 1, + sym_tcp_keep_alive_value, + STATE(289), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3858), 1, - anon_sym_EQ, - ACTIONS(3860), 1, - anon_sym_DQUOTE, - STATE(310), 1, - sym_session_type_value, - ACTIONS(3862), 3, - aux_sym_canonicalize_hostname_value_token2, - aux_sym_session_type_value_token1, - aux_sym_session_type_value_token2, - [3511] = 4, + [3529] = 4, ACTIONS(3), 1, sym_comment, - STATE(77), 1, - sym_gssapi_delegate_credentials_value, - STATE(400), 1, + STATE(18), 1, + sym_tcp_keep_alive_value, + STATE(289), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3527] = 4, + [3545] = 4, ACTIONS(3), 1, sym_comment, - STATE(91), 1, - sym_enable_escape_commandline_value, - STATE(344), 1, + STATE(77), 1, + sym_gssapi_key_exchange_value, + STATE(406), 1, sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3621), 4, aux_sym_boolean_token1, aux_sym_boolean_token2, aux_sym_boolean_token3, aux_sym_boolean_token4, - [3543] = 4, + [3561] = 4, ACTIONS(3), 1, sym_comment, - STATE(90), 1, - sym_enable_ssh_keysign_value, - STATE(348), 1, - sym_boolean, - ACTIONS(3606), 4, + ACTIONS(3899), 1, + anon_sym_DQUOTE, + STATE(128), 1, + sym_tunnel_value, + ACTIONS(3873), 4, aux_sym_boolean_token1, - aux_sym_boolean_token2, aux_sym_boolean_token3, - aux_sym_boolean_token4, - [3559] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3856), 1, - aux_sym_address_family_value_token2, - ACTIONS(3864), 1, - anon_sym_DQUOTE, - STATE(9), 1, - sym_address_family_value, - ACTIONS(3854), 2, - aux_sym_address_family_value_token1, - aux_sym_address_family_value_token3, - [3576] = 5, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(3868), 1, - anon_sym_EQ, - ACTIONS(3870), 1, - anon_sym_DQUOTE, - STATE(353), 1, - sym_escape_char_value, - ACTIONS(3872), 2, - anon_sym_none, - aux_sym_escape_char_value_token1, - [3593] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3874), 1, - anon_sym_EQ, - ACTIONS(3876), 1, - anon_sym_DQUOTE, - STATE(361), 1, - sym_fingerprint_hash_value, - ACTIONS(3878), 2, - anon_sym_md5, - anon_sym_sha256, - [3610] = 6, - ACTIONS(3866), 1, + aux_sym_tunnel_value_token1, + aux_sym_tunnel_value_token2, + [3577] = 6, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3903), 1, aux_sym_pattern_token1, - ACTIONS(3882), 1, + ACTIONS(3905), 1, anon_sym_EQ, - ACTIONS(3884), 1, + ACTIONS(3907), 1, anon_sym_DQUOTE, - STATE(238), 1, + STATE(240), 1, sym_pattern, - STATE(239), 1, + STATE(241), 1, sym_match_value, - [3629] = 5, + [3596] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - anon_sym_EQ, - ACTIONS(3888), 1, + ACTIONS(3909), 1, anon_sym_DQUOTE, - STATE(378), 1, - sym_protocol_value, - ACTIONS(3890), 2, - anon_sym_1, - anon_sym_2, - [3646] = 3, + STATE(138), 1, + sym_session_type_value, + ACTIONS(3883), 3, + aux_sym_canonicalize_hostname_value_token2, + aux_sym_session_type_value_token1, + aux_sym_session_type_value_token2, + [3611] = 4, ACTIONS(3), 1, sym_comment, - STATE(127), 1, + ACTIONS(3911), 1, + anon_sym_DQUOTE, + STATE(162), 1, + sym_obscure_keystroke_timing_value, + ACTIONS(3893), 3, + aux_sym_boolean_token1, + aux_sym_boolean_token3, + aux_sym_obscure_keystroke_timing_value_token1, + [3626] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(128), 1, sym_tunnel_value, - ACTIONS(3832), 4, + ACTIONS(3873), 4, aux_sym_boolean_token1, aux_sym_boolean_token3, aux_sym_tunnel_value_token1, aux_sym_tunnel_value_token2, - [3659] = 6, - ACTIONS(3866), 1, + [3639] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3913), 1, + anon_sym_EQ, + ACTIONS(3915), 1, + anon_sym_DQUOTE, + STATE(363), 1, + sym_fingerprint_hash_value, + ACTIONS(3917), 2, + anon_sym_md5, + anon_sym_sha256, + [3656] = 6, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(3903), 1, aux_sym_pattern_token1, - ACTIONS(3892), 1, + ACTIONS(3919), 1, anon_sym_EQ, - ACTIONS(3894), 1, + ACTIONS(3921), 1, anon_sym_DQUOTE, - STATE(59), 1, + STATE(27), 1, sym_host_value, - STATE(427), 1, + STATE(177), 1, sym_pattern, - [3678] = 4, + [3675] = 5, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(3923), 1, + anon_sym_EQ, + ACTIONS(3925), 1, + anon_sym_DQUOTE, + STATE(355), 1, + sym_escape_char_value, + ACTIONS(3927), 2, + anon_sym_none, + aux_sym_escape_char_value_token1, + [3692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3896), 1, + ACTIONS(3891), 1, + aux_sym_address_family_value_token2, + ACTIONS(3929), 1, anon_sym_DQUOTE, - STATE(137), 1, - sym_session_type_value, - ACTIONS(3862), 3, - aux_sym_canonicalize_hostname_value_token2, - aux_sym_session_type_value_token1, - aux_sym_session_type_value_token2, - [3693] = 3, + STATE(9), 1, + sym_address_family_value, + ACTIONS(3889), 2, + aux_sym_address_family_value_token1, + aux_sym_address_family_value_token3, + [3709] = 3, ACTIONS(3), 1, sym_comment, STATE(15), 1, sym_tunnel_value, - ACTIONS(3832), 4, + ACTIONS(3873), 4, aux_sym_boolean_token1, aux_sym_boolean_token3, aux_sym_tunnel_value_token1, aux_sym_tunnel_value_token2, - [3706] = 5, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(3898), 1, - aux_sym_pattern_token1, - ACTIONS(3900), 1, - anon_sym_EQ, - ACTIONS(3902), 1, - anon_sym_DQUOTE, - STATE(397), 1, - sym_gssapi_client_identity_value, [3722] = 5, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(3904), 1, - aux_sym_pattern_token1, - ACTIONS(3906), 1, - anon_sym_EQ, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - STATE(456), 1, - sym_kbd_interactive_devices_value, - [3738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3910), 1, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(3933), 1, anon_sym_DQUOTE, - STATE(154), 1, + STATE(380), 1, sym_protocol_value, - ACTIONS(3890), 2, + ACTIONS(3935), 2, anon_sym_1, anon_sym_2, - [3752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3912), 1, - anon_sym_DQUOTE, - STATE(199), 1, - sym_fingerprint_hash_value, - ACTIONS(3878), 2, - anon_sym_md5, - anon_sym_sha256, - [3766] = 5, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(3914), 1, - aux_sym_pattern_token1, - ACTIONS(3916), 1, - anon_sym_EQ, - ACTIONS(3918), 1, - anon_sym_DQUOTE, - STATE(284), 1, - sym_ca_signature_algorithms_value, - [3782] = 4, - ACTIONS(3866), 1, + [3739] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3920), 1, + ACTIONS(3937), 1, anon_sym_DQUOTE, - STATE(201), 1, + STATE(203), 1, sym_escape_char_value, - ACTIONS(3872), 2, + ACTIONS(3927), 2, anon_sym_none, aux_sym_escape_char_value_token1, - [3796] = 5, - ACTIONS(3), 1, + [3753] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3922), 1, - sym_number, - ACTIONS(3924), 1, + ACTIONS(3939), 1, + aux_sym_pattern_token1, + ACTIONS(3941), 1, anon_sym_EQ, - ACTIONS(3926), 1, + ACTIONS(3943), 1, anon_sym_DQUOTE, - STATE(276), 1, - sym_canonicalize_max_dots_value, - [3812] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(137), 1, - sym_session_type_value, - ACTIONS(3862), 3, - aux_sym_canonicalize_hostname_value_token2, - aux_sym_session_type_value_token1, - aux_sym_session_type_value_token2, - [3824] = 5, - ACTIONS(3866), 1, + STATE(439), 1, + sym_host_key_algorithms_value, + [3769] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(3945), 1, aux_sym_pattern_token1, - ACTIONS(3930), 1, + ACTIONS(3947), 1, anon_sym_EQ, - ACTIONS(3932), 1, + ACTIONS(3949), 1, anon_sym_DQUOTE, - STATE(305), 1, + STATE(307), 1, sym_ciphers_value, - [3840] = 5, - ACTIONS(3866), 1, + [3785] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3934), 1, + ACTIONS(3951), 1, aux_sym_pattern_token1, - ACTIONS(3936), 1, + ACTIONS(3953), 1, anon_sym_EQ, - ACTIONS(3938), 1, + ACTIONS(3955), 1, anon_sym_DQUOTE, - STATE(309), 1, + STATE(311), 1, sym_cipher_value, - [3856] = 5, - ACTIONS(3866), 1, + [3801] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3940), 1, - aux_sym_pattern_token1, - ACTIONS(3942), 1, + ACTIONS(3957), 1, + sym_number, + ACTIONS(3959), 1, anon_sym_EQ, - ACTIONS(3944), 1, + ACTIONS(3961), 1, anon_sym_DQUOTE, - STATE(435), 1, - sym_known_hosts_command_value, - [3872] = 5, - ACTIONS(3866), 1, + STATE(278), 1, + sym_canonicalize_max_dots_value, + [3817] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3963), 1, + sym_number, + ACTIONS(3965), 1, + anon_sym_EQ, + ACTIONS(3967), 1, + anon_sym_DQUOTE, + STATE(389), 1, + sym_port_value, + [3833] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3969), 1, aux_sym_pattern_token1, - ACTIONS(3948), 1, + ACTIONS(3971), 1, anon_sym_EQ, - ACTIONS(3950), 1, + ACTIONS(3973), 1, anon_sym_DQUOTE, - STATE(280), 1, + STATE(282), 1, sym_canonicalize_permitted_cnames_value, - [3888] = 5, + [3849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3975), 1, sym_number, - ACTIONS(3954), 1, + ACTIONS(3977), 1, anon_sym_EQ, - ACTIONS(3956), 1, + ACTIONS(3979), 1, anon_sym_DQUOTE, - STATE(321), 1, + STATE(323), 1, sym_connection_attempts_value, - [3904] = 3, + [3865] = 3, ACTIONS(3), 1, sym_comment, STATE(25), 1, sym_session_type_value, - ACTIONS(3862), 3, + ACTIONS(3883), 3, aux_sym_canonicalize_hostname_value_token2, aux_sym_session_type_value_token1, aux_sym_session_type_value_token2, - [3916] = 5, - ACTIONS(3), 1, + [3877] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3958), 1, - sym_number, - ACTIONS(3960), 1, + ACTIONS(3981), 1, + aux_sym_pattern_token1, + ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(3962), 1, + ACTIONS(3985), 1, anon_sym_DQUOTE, - STATE(325), 1, - sym_connect_timeout_value, - [3932] = 5, - ACTIONS(3866), 1, + STATE(415), 1, + sym_gssapi_server_identity_value, + [3893] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3964), 1, - aux_sym_pattern_token1, - ACTIONS(3966), 1, + ACTIONS(3987), 1, + sym_number, + ACTIONS(3989), 1, anon_sym_EQ, - ACTIONS(3968), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - STATE(264), 1, - sym_canonical_domains_value, - [3948] = 5, - ACTIONS(3866), 1, + STATE(327), 1, + sym_connect_timeout_value, + [3909] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3970), 1, + ACTIONS(3993), 1, aux_sym_pattern_token1, - ACTIONS(3972), 1, + ACTIONS(3995), 1, anon_sym_EQ, - ACTIONS(3974), 1, + ACTIONS(3997), 1, anon_sym_DQUOTE, - STATE(298), 1, - sym_stream_local_bind_mask_value, - [3964] = 4, + STATE(384), 1, + sym_preferred_authentications_value, + [3925] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3891), 1, aux_sym_address_family_value_token2, STATE(9), 1, sym_address_family_value, - ACTIONS(3854), 2, + ACTIONS(3889), 2, aux_sym_address_family_value_token1, aux_sym_address_family_value_token3, - [3978] = 5, - ACTIONS(3866), 1, + [3939] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(3999), 1, aux_sym_pattern_token1, - ACTIONS(3978), 1, + ACTIONS(4001), 1, anon_sym_EQ, - ACTIONS(3980), 1, + ACTIONS(4003), 1, anon_sym_DQUOTE, - STATE(260), 1, - sym_bind_interface_value, - [3994] = 5, - ACTIONS(3866), 1, + STATE(431), 1, + sym_hostbased_accepted_algorithms_value, + [3955] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(4005), 1, aux_sym_pattern_token1, - ACTIONS(3982), 1, + ACTIONS(4007), 1, + anon_sym_EQ, + ACTIONS(4009), 1, anon_sym_DQUOTE, - STATE(232), 1, + STATE(335), 1, + sym_control_path_value, + [3971] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(138), 1, + sym_session_type_value, + ACTIONS(3883), 3, + aux_sym_canonicalize_hostname_value_token2, + aux_sym_session_type_value_token1, + aux_sym_session_type_value_token2, + [3983] = 5, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4011), 1, + aux_sym_pattern_token1, + ACTIONS(4013), 1, + anon_sym_EQ, + ACTIONS(4015), 1, + anon_sym_DQUOTE, + STATE(266), 1, + sym_canonical_domains_value, + [3999] = 5, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(3903), 1, + aux_sym_pattern_token1, + ACTIONS(4017), 1, + anon_sym_DQUOTE, + STATE(234), 1, sym_match_value, - STATE(238), 1, + STATE(240), 1, sym_pattern, - [4010] = 5, - ACTIONS(3866), 1, + [4015] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3880), 1, + ACTIONS(4019), 1, aux_sym_pattern_token1, - ACTIONS(3984), 1, + ACTIONS(4021), 1, + anon_sym_EQ, + ACTIONS(4023), 1, anon_sym_DQUOTE, - STATE(396), 1, - sym_host_value, - STATE(427), 1, - sym_pattern, - [4026] = 5, - ACTIONS(3866), 1, + STATE(262), 1, + sym_bind_interface_value, + [4031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_number, + ACTIONS(4027), 1, + anon_sym_EQ, + ACTIONS(4029), 1, + anon_sym_DQUOTE, + STATE(413), 1, + sym_number_of_password_prompts_value, + [4047] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3986), 1, + ACTIONS(4031), 1, aux_sym_pattern_token1, - ACTIONS(3988), 1, + ACTIONS(4033), 1, anon_sym_EQ, - ACTIONS(3990), 1, + ACTIONS(4035), 1, anon_sym_DQUOTE, - STATE(256), 1, - sym_bind_address_value, - [4042] = 5, - ACTIONS(3866), 1, + STATE(343), 1, + sym_dynamic_forward_value, + [4063] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3992), 1, + ACTIONS(4037), 1, aux_sym_pattern_token1, - ACTIONS(3994), 1, + ACTIONS(4039), 1, anon_sym_EQ, - ACTIONS(3996), 1, + ACTIONS(4041), 1, anon_sym_DQUOTE, - STATE(333), 1, - sym_control_path_value, - [4058] = 4, + STATE(258), 1, + sym_bind_address_value, + [4079] = 5, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(3903), 1, + aux_sym_pattern_token1, + ACTIONS(4043), 1, + anon_sym_DQUOTE, + STATE(144), 1, + sym_host_value, + STATE(177), 1, + sym_pattern, + [4095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3856), 1, + ACTIONS(3891), 1, aux_sym_address_family_value_token2, - STATE(114), 1, + STATE(115), 1, sym_address_family_value, - ACTIONS(3854), 2, + ACTIONS(3889), 2, aux_sym_address_family_value_token1, aux_sym_address_family_value_token3, - [4072] = 5, - ACTIONS(3866), 1, + [4109] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(4045), 1, aux_sym_pattern_token1, - ACTIONS(4000), 1, + ACTIONS(4047), 1, anon_sym_EQ, - ACTIONS(4002), 1, + ACTIONS(4049), 1, anon_sym_DQUOTE, - STATE(236), 1, + STATE(238), 1, sym_xauth_location_value, - [4088] = 5, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4004), 1, - aux_sym_pattern_token1, - ACTIONS(4006), 1, - anon_sym_EQ, - ACTIONS(4008), 1, - anon_sym_DQUOTE, - STATE(341), 1, - sym_dynamic_forward_value, - [4104] = 5, - ACTIONS(3866), 1, + [4125] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4051), 1, aux_sym_pattern_token1, - ACTIONS(4012), 1, + ACTIONS(4053), 1, anon_sym_EQ, - ACTIONS(4014), 1, + ACTIONS(4055), 1, anon_sym_DQUOTE, - STATE(249), 1, + STATE(251), 1, sym_user_known_hosts_file_value, - [4120] = 5, - ACTIONS(3866), 1, + [4141] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4057), 1, aux_sym_pattern_token1, - ACTIONS(4018), 1, + ACTIONS(4059), 1, anon_sym_EQ, - ACTIONS(4020), 1, + ACTIONS(4061), 1, anon_sym_DQUOTE, - STATE(254), 1, - sym_user_value, - [4136] = 5, - ACTIONS(3866), 1, + STATE(377), 1, + sym_proxy_command_value, + [4157] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4063), 1, aux_sym_pattern_token1, - ACTIONS(4024), 1, + ACTIONS(4065), 1, anon_sym_EQ, - ACTIONS(4026), 1, + ACTIONS(4067), 1, anon_sym_DQUOTE, - STATE(270), 1, - sym_tunnel_device_value, - [4152] = 5, - ACTIONS(3866), 1, + STATE(256), 1, + sym_user_value, + [4173] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4028), 1, + ACTIONS(4069), 1, aux_sym_pattern_token1, - ACTIONS(4030), 1, + ACTIONS(4071), 1, anon_sym_EQ, - ACTIONS(4032), 1, + ACTIONS(4073), 1, anon_sym_DQUOTE, - STATE(278), 1, - sym_tag_value, - [4168] = 5, - ACTIONS(3866), 1, + STATE(423), 1, + sym_gssapi_kex_algorithms_value, + [4189] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4034), 1, + ACTIONS(4075), 1, aux_sym_pattern_token1, - ACTIONS(4036), 1, + ACTIONS(4077), 1, anon_sym_EQ, - ACTIONS(4038), 1, + ACTIONS(4079), 1, anon_sym_DQUOTE, - STATE(453), 1, - sym_identity_agent_value, - [4184] = 5, - ACTIONS(3866), 1, + STATE(421), 1, + sym_macs_value, + [4205] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4040), 1, + ACTIONS(4081), 1, aux_sym_pattern_token1, - ACTIONS(4042), 1, + ACTIONS(4083), 1, anon_sym_EQ, - ACTIONS(4044), 1, + ACTIONS(4085), 1, anon_sym_DQUOTE, - STATE(307), 1, - sym_set_env_value, - [4200] = 5, - ACTIONS(3866), 1, + STATE(360), 1, + sym_pubkey_accepted_key_types_value, + [4221] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4046), 1, + ACTIONS(4087), 1, aux_sym_pattern_token1, - ACTIONS(4048), 1, + ACTIONS(4089), 1, anon_sym_EQ, - ACTIONS(4050), 1, + ACTIONS(4091), 1, anon_sym_DQUOTE, - STATE(369), 1, - sym_forward_agent_value, - [4216] = 5, + STATE(372), 1, + sym_proxy_jump_value, + [4237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, - sym_number, - ACTIONS(4054), 1, + STATE(49), 1, + sym_obscure_keystroke_timing_value, + ACTIONS(3893), 3, + aux_sym_boolean_token1, + aux_sym_boolean_token3, + aux_sym_obscure_keystroke_timing_value_token1, + [4249] = 5, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_pattern_token1, + ACTIONS(4095), 1, anon_sym_EQ, - ACTIONS(4056), 1, + ACTIONS(4097), 1, anon_sym_DQUOTE, - STATE(314), 1, - sym_server_alive_interval_value, - [4232] = 5, + STATE(280), 1, + sym_tag_value, + [4265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4058), 1, - sym_number, - ACTIONS(4060), 1, - anon_sym_EQ, - ACTIONS(4062), 1, + ACTIONS(4099), 1, anon_sym_DQUOTE, - STATE(319), 1, - sym_server_alive_count_max_value, - [4248] = 5, - ACTIONS(3866), 1, + STATE(201), 1, + sym_fingerprint_hash_value, + ACTIONS(3917), 2, + anon_sym_md5, + anon_sym_sha256, + [4279] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(4101), 1, aux_sym_pattern_token1, - ACTIONS(4066), 1, + ACTIONS(4103), 1, anon_sym_EQ, - ACTIONS(4068), 1, + ACTIONS(4105), 1, anon_sym_DQUOTE, - STATE(323), 1, - sym_send_env_value, - [4264] = 5, - ACTIONS(3866), 1, + STATE(290), 1, + sym_certificate_file_value, + [4295] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(4107), 1, aux_sym_pattern_token1, - ACTIONS(4072), 1, + ACTIONS(4109), 1, anon_sym_EQ, - ACTIONS(4074), 1, + ACTIONS(4111), 1, anon_sym_DQUOTE, - STATE(327), 1, - sym_security_key_provider_value, - [4280] = 5, - ACTIONS(3), 1, + STATE(397), 1, + sym_permit_remote_open_value, + [4311] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4076), 1, - sym_time_format, - ACTIONS(4078), 1, + ACTIONS(4113), 1, + aux_sym_pattern_token1, + ACTIONS(4115), 1, anon_sym_EQ, - ACTIONS(4080), 1, + ACTIONS(4117), 1, anon_sym_DQUOTE, - STATE(377), 1, - sym_forward_x11_timeout_value, - [4296] = 5, - ACTIONS(3866), 1, + STATE(424), 1, + sym_log_verbose_value, + [4327] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4082), 1, + ACTIONS(4119), 1, aux_sym_pattern_token1, - ACTIONS(4084), 1, + ACTIONS(4121), 1, anon_sym_EQ, - ACTIONS(4086), 1, + ACTIONS(4123), 1, anon_sym_DQUOTE, - STATE(331), 1, - sym_revoked_host_keys_value, - [4312] = 5, - ACTIONS(3), 1, + STATE(272), 1, + sym_tunnel_device_value, + [4343] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4088), 1, - sym_number, - ACTIONS(4090), 1, + ACTIONS(4125), 1, + aux_sym_pattern_token1, + ACTIONS(4127), 1, anon_sym_EQ, - ACTIONS(4092), 1, + ACTIONS(4129), 1, anon_sym_DQUOTE, - STATE(335), 1, - sym_required_rsa_size_value, - [4328] = 5, - ACTIONS(3866), 1, + STATE(449), 1, + sym_local_forward_value, + [4359] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4094), 1, + ACTIONS(4131), 1, aux_sym_pattern_token1, - ACTIONS(4096), 1, + ACTIONS(4133), 1, anon_sym_EQ, - ACTIONS(4098), 1, + ACTIONS(4135), 1, anon_sym_DQUOTE, - STATE(342), 1, - sym_remote_forward_value, - [4344] = 5, - ACTIONS(3866), 1, + STATE(300), 1, + sym_stream_local_bind_mask_value, + [4375] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4137), 1, aux_sym_pattern_token1, - ACTIONS(4102), 1, + ACTIONS(4139), 1, anon_sym_EQ, - ACTIONS(4104), 1, + ACTIONS(4141), 1, anon_sym_DQUOTE, - STATE(346), 1, - sym_remote_command_value, - [4360] = 5, - ACTIONS(3866), 1, + STATE(443), 1, + sym_host_key_alias_value, + [4391] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(4143), 1, aux_sym_pattern_token1, - ACTIONS(4108), 1, + ACTIONS(4145), 1, anon_sym_EQ, - ACTIONS(4110), 1, + ACTIONS(4147), 1, anon_sym_DQUOTE, - STATE(350), 1, - sym_rekey_limit_value, - [4376] = 5, - ACTIONS(3866), 1, + STATE(371), 1, + sym_forward_agent_value, + [4407] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4149), 1, aux_sym_pattern_token1, - ACTIONS(4114), 1, + ACTIONS(4151), 1, anon_sym_EQ, - ACTIONS(4116), 1, + ACTIONS(4153), 1, anon_sym_DQUOTE, - STATE(389), 1, - sym_global_known_hosts_file_value, - [4392] = 5, - ACTIONS(3866), 1, + STATE(309), 1, + sym_set_env_value, + [4423] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4118), 1, - aux_sym_pattern_token1, - ACTIONS(4120), 1, - anon_sym_EQ, - ACTIONS(4122), 1, + ACTIONS(4155), 1, anon_sym_DQUOTE, - STATE(358), 1, - sym_pubkey_accepted_key_types_value, - [4408] = 5, - ACTIONS(3866), 1, + STATE(155), 1, + sym_protocol_value, + ACTIONS(3935), 2, + anon_sym_1, + anon_sym_2, + [4437] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4124), 1, - aux_sym_pattern_token1, - ACTIONS(4126), 1, + ACTIONS(4157), 1, + sym_number, + ACTIONS(4159), 1, anon_sym_EQ, - ACTIONS(4128), 1, + ACTIONS(4161), 1, anon_sym_DQUOTE, - STATE(362), 1, - sym_pubkey_accepted_algorithms_value, - [4424] = 5, - ACTIONS(3866), 1, + STATE(316), 1, + sym_server_alive_interval_value, + [4453] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4130), 1, + ACTIONS(4163), 1, aux_sym_pattern_token1, - ACTIONS(4132), 1, + ACTIONS(4165), 1, anon_sym_EQ, - ACTIONS(4134), 1, + ACTIONS(4167), 1, anon_sym_DQUOTE, - STATE(370), 1, - sym_proxy_jump_value, - [4440] = 5, - ACTIONS(3866), 1, + STATE(462), 1, + sym_kbd_interactive_devices_value, + [4469] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4136), 1, - aux_sym_pattern_token1, - ACTIONS(4138), 1, + ACTIONS(4169), 1, + sym_number, + ACTIONS(4171), 1, anon_sym_EQ, - ACTIONS(4140), 1, + ACTIONS(4173), 1, anon_sym_DQUOTE, - STATE(375), 1, - sym_proxy_command_value, - [4456] = 5, - ACTIONS(3866), 1, + STATE(321), 1, + sym_server_alive_count_max_value, + [4485] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(4175), 1, aux_sym_pattern_token1, - ACTIONS(4144), 1, + ACTIONS(4177), 1, anon_sym_EQ, - ACTIONS(4146), 1, + ACTIONS(4179), 1, anon_sym_DQUOTE, - STATE(382), 1, - sym_preferred_authentications_value, - [4472] = 5, + STATE(447), 1, + sym_hostname_value, + [4501] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, - sym_number, - ACTIONS(4150), 1, + ACTIONS(4181), 1, + sym_time_format, + ACTIONS(4183), 1, anon_sym_EQ, - ACTIONS(4152), 1, + ACTIONS(4185), 1, anon_sym_DQUOTE, - STATE(387), 1, - sym_port_value, - [4488] = 5, - ACTIONS(3866), 1, + STATE(379), 1, + sym_forward_x11_timeout_value, + [4517] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4187), 1, aux_sym_pattern_token1, - ACTIONS(4156), 1, + ACTIONS(4189), 1, anon_sym_EQ, - ACTIONS(4158), 1, + ACTIONS(4191), 1, anon_sym_DQUOTE, - STATE(390), 1, - sym_pkcs11_provider_value, - [4504] = 5, - ACTIONS(3866), 1, + STATE(217), 1, + sym_ignore_unknown_value, + [4533] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(4193), 1, aux_sym_pattern_token1, - ACTIONS(4162), 1, + ACTIONS(4195), 1, anon_sym_EQ, - ACTIONS(4164), 1, + ACTIONS(4197), 1, anon_sym_DQUOTE, - STATE(395), 1, - sym_permit_remote_open_value, - [4520] = 5, - ACTIONS(3), 1, + STATE(325), 1, + sym_send_env_value, + [4549] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4166), 1, - sym_number, - ACTIONS(4168), 1, + ACTIONS(4199), 1, + aux_sym_pattern_token1, + ACTIONS(4201), 1, anon_sym_EQ, - ACTIONS(4170), 1, + ACTIONS(4203), 1, anon_sym_DQUOTE, - STATE(406), 1, - sym_number_of_password_prompts_value, - [4536] = 5, - ACTIONS(3866), 1, + STATE(364), 1, + sym_pubkey_accepted_algorithms_value, + [4565] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4172), 1, + ACTIONS(4205), 1, aux_sym_pattern_token1, - ACTIONS(4174), 1, + ACTIONS(4207), 1, anon_sym_EQ, - ACTIONS(4176), 1, + ACTIONS(4209), 1, anon_sym_DQUOTE, - STATE(437), 1, - sym_host_key_algorithms_value, - [4552] = 5, - ACTIONS(3866), 1, + STATE(329), 1, + sym_security_key_provider_value, + [4581] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4178), 1, + ACTIONS(4211), 1, aux_sym_pattern_token1, - ACTIONS(4180), 1, + ACTIONS(4213), 1, anon_sym_EQ, - ACTIONS(4182), 1, + ACTIONS(4215), 1, anon_sym_DQUOTE, - STATE(288), 1, - sym_certificate_file_value, - [4568] = 5, - ACTIONS(3866), 1, + STATE(286), 1, + sym_ca_signature_algorithms_value, + [4597] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4184), 1, + ACTIONS(4217), 1, aux_sym_pattern_token1, - ACTIONS(4186), 1, + ACTIONS(4219), 1, anon_sym_EQ, - ACTIONS(4188), 1, + ACTIONS(4221), 1, anon_sym_DQUOTE, - STATE(414), 1, - sym_macs_value, - [4584] = 5, - ACTIONS(3866), 1, + STATE(333), 1, + sym_revoked_host_keys_value, + [4613] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4190), 1, + ACTIONS(4223), 1, aux_sym_pattern_token1, - ACTIONS(4192), 1, + ACTIONS(4225), 1, anon_sym_EQ, - ACTIONS(4194), 1, + ACTIONS(4227), 1, anon_sym_DQUOTE, - STATE(10), 1, - sym_local_forward_value, - [4600] = 5, - ACTIONS(3866), 1, + STATE(458), 1, + sym_local_command_value, + [4629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4229), 1, + sym_number, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4233), 1, + anon_sym_DQUOTE, + STATE(337), 1, + sym_required_rsa_size_value, + [4645] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4196), 1, + STATE(162), 1, + sym_obscure_keystroke_timing_value, + ACTIONS(3893), 3, + aux_sym_boolean_token1, + aux_sym_boolean_token3, + aux_sym_obscure_keystroke_timing_value_token1, + [4657] = 5, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4235), 1, aux_sym_pattern_token1, - ACTIONS(4198), 1, + ACTIONS(4237), 1, anon_sym_EQ, - ACTIONS(4200), 1, + ACTIONS(4239), 1, anon_sym_DQUOTE, - STATE(413), 1, - sym_gssapi_server_identity_value, - [4616] = 5, - ACTIONS(3866), 1, + STATE(392), 1, + sym_pkcs11_provider_value, + [4673] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4202), 1, + ACTIONS(4241), 1, aux_sym_pattern_token1, - ACTIONS(4204), 1, + ACTIONS(4243), 1, anon_sym_EQ, - ACTIONS(4206), 1, + ACTIONS(4245), 1, anon_sym_DQUOTE, - STATE(441), 1, - sym_host_key_alias_value, - [4632] = 5, - ACTIONS(3866), 1, + STATE(438), 1, + sym_include_value, + [4689] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4247), 1, aux_sym_pattern_token1, - ACTIONS(4210), 1, + ACTIONS(4249), 1, anon_sym_EQ, - ACTIONS(4212), 1, + ACTIONS(4251), 1, anon_sym_DQUOTE, - STATE(451), 1, - sym_kex_algorithms_value, - [4648] = 5, - ACTIONS(3866), 1, + STATE(391), 1, + sym_global_known_hosts_file_value, + [4705] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4253), 1, aux_sym_pattern_token1, - ACTIONS(4216), 1, + ACTIONS(4255), 1, anon_sym_EQ, - ACTIONS(4218), 1, + ACTIONS(4257), 1, anon_sym_DQUOTE, - STATE(457), 1, - sym_identity_file_value, - [4664] = 5, - ACTIONS(3866), 1, + STATE(344), 1, + sym_remote_forward_value, + [4721] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(4259), 1, aux_sym_pattern_token1, - ACTIONS(4222), 1, + ACTIONS(4261), 1, anon_sym_EQ, - ACTIONS(4224), 1, + ACTIONS(4263), 1, anon_sym_DQUOTE, - STATE(421), 1, - sym_gssapi_kex_algorithms_value, - [4680] = 5, - ACTIONS(3866), 1, + STATE(455), 1, + sym_identity_agent_value, + [4737] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4226), 1, + ACTIONS(4265), 1, aux_sym_pattern_token1, - ACTIONS(4228), 1, + ACTIONS(4267), 1, anon_sym_EQ, - ACTIONS(4230), 1, + ACTIONS(4269), 1, anon_sym_DQUOTE, - STATE(430), 1, - sym_local_command_value, - [4696] = 5, - ACTIONS(3866), 1, + STATE(461), 1, + sym_known_hosts_command_value, + [4753] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4232), 1, + ACTIONS(4271), 1, aux_sym_pattern_token1, - ACTIONS(4234), 1, + ACTIONS(4273), 1, anon_sym_EQ, - ACTIONS(4236), 1, + ACTIONS(4275), 1, anon_sym_DQUOTE, - STATE(445), 1, - sym_hostname_value, - [4712] = 5, - ACTIONS(3866), 1, + STATE(348), 1, + sym_remote_command_value, + [4769] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4238), 1, + ACTIONS(4277), 1, aux_sym_pattern_token1, - ACTIONS(4240), 1, + ACTIONS(4279), 1, anon_sym_EQ, - ACTIONS(4242), 1, + ACTIONS(4281), 1, anon_sym_DQUOTE, - STATE(439), 1, - sym_ignore_unknown_value, - [4728] = 5, - ACTIONS(3866), 1, + STATE(352), 1, + sym_rekey_limit_value, + [4785] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4244), 1, + ACTIONS(4283), 1, aux_sym_pattern_token1, - ACTIONS(4246), 1, + ACTIONS(4285), 1, anon_sym_EQ, - ACTIONS(4248), 1, + ACTIONS(4287), 1, anon_sym_DQUOTE, - STATE(419), 1, - sym_log_verbose_value, - [4744] = 5, - ACTIONS(3866), 1, + STATE(445), 1, + sym_kex_algorithms_value, + [4801] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(4289), 1, aux_sym_pattern_token1, - ACTIONS(4252), 1, + ACTIONS(4291), 1, anon_sym_EQ, - ACTIONS(4254), 1, + ACTIONS(4293), 1, anon_sym_DQUOTE, - STATE(429), 1, - sym_hostbased_accepted_algorithms_value, - [4760] = 5, - ACTIONS(3866), 1, + STATE(399), 1, + sym_gssapi_client_identity_value, + [4817] = 5, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4256), 1, + ACTIONS(4295), 1, aux_sym_pattern_token1, - ACTIONS(4258), 1, + ACTIONS(4297), 1, anon_sym_EQ, - ACTIONS(4260), 1, + ACTIONS(4299), 1, anon_sym_DQUOTE, - STATE(446), 1, - sym_include_value, - [4776] = 4, - ACTIONS(3866), 1, + STATE(459), 1, + sym_identity_file_value, + [4833] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3976), 1, + ACTIONS(4301), 1, aux_sym_pattern_token1, - ACTIONS(4262), 1, - anon_sym_DQUOTE, - STATE(225), 1, - sym_bind_interface_value, - [4789] = 3, + STATE(234), 1, + sym_match_value, + STATE(240), 1, + sym_pattern, + [4846] = 3, ACTIONS(3), 1, sym_comment, - STATE(87), 1, - sym_fingerprint_hash_value, - ACTIONS(3878), 2, - anon_sym_md5, - anon_sym_sha256, - [4800] = 4, - ACTIONS(3866), 1, + STATE(42), 1, + sym_protocol_value, + ACTIONS(3935), 2, + anon_sym_1, + anon_sym_2, + [4857] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4232), 1, + ACTIONS(4137), 1, aux_sym_pattern_token1, - ACTIONS(4264), 1, + ACTIONS(4303), 1, anon_sym_DQUOTE, - STATE(178), 1, + STATE(181), 1, + sym_host_key_alias_value, + [4870] = 4, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4175), 1, + aux_sym_pattern_token1, + ACTIONS(4305), 1, + anon_sym_DQUOTE, + STATE(180), 1, sym_hostname_value, - [4813] = 4, - ACTIONS(3866), 1, + [4883] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4034), 1, + ACTIONS(4259), 1, aux_sym_pattern_token1, - ACTIONS(4266), 1, + ACTIONS(4307), 1, anon_sym_DQUOTE, - STATE(176), 1, + STATE(178), 1, sym_identity_agent_value, - [4826] = 4, - ACTIONS(3866), 1, + [4896] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4214), 1, + ACTIONS(4295), 1, aux_sym_pattern_token1, - ACTIONS(4268), 1, + ACTIONS(4309), 1, anon_sym_DQUOTE, - STATE(175), 1, + STATE(10), 1, sym_identity_file_value, - [4839] = 4, - ACTIONS(3866), 1, + [4909] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4238), 1, + ACTIONS(4187), 1, aux_sym_pattern_token1, - ACTIONS(4270), 1, + ACTIONS(4311), 1, anon_sym_DQUOTE, - STATE(174), 1, + STATE(176), 1, sym_ignore_unknown_value, - [4852] = 4, - ACTIONS(3866), 1, + [4922] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4256), 1, + ACTIONS(4241), 1, aux_sym_pattern_token1, - ACTIONS(4272), 1, + ACTIONS(4313), 1, anon_sym_DQUOTE, - STATE(173), 1, + STATE(175), 1, sym_include_value, - [4865] = 4, - ACTIONS(3866), 1, + [4935] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3904), 1, + ACTIONS(4163), 1, aux_sym_pattern_token1, - ACTIONS(4274), 1, + ACTIONS(4315), 1, anon_sym_DQUOTE, - STATE(170), 1, + STATE(172), 1, sym_kbd_interactive_devices_value, - [4878] = 4, - ACTIONS(3866), 1, + [4948] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4208), 1, + ACTIONS(4283), 1, aux_sym_pattern_token1, - ACTIONS(4276), 1, + ACTIONS(4317), 1, anon_sym_DQUOTE, - STATE(169), 1, + STATE(171), 1, sym_kex_algorithms_value, - [4891] = 4, - ACTIONS(3866), 1, + [4961] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3940), 1, + ACTIONS(4265), 1, aux_sym_pattern_token1, - ACTIONS(4278), 1, + ACTIONS(4319), 1, anon_sym_DQUOTE, - STATE(168), 1, + STATE(170), 1, sym_known_hosts_command_value, - [4904] = 4, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4112), 1, - aux_sym_pattern_token1, - ACTIONS(4280), 1, - anon_sym_DQUOTE, - STATE(192), 1, - sym_global_known_hosts_file_value, - [4917] = 4, - ACTIONS(3866), 1, + [4974] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4172), 1, + ACTIONS(4223), 1, aux_sym_pattern_token1, - ACTIONS(4282), 1, + ACTIONS(4321), 1, anon_sym_DQUOTE, - STATE(180), 1, - sym_host_key_algorithms_value, - [4930] = 4, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4226), 1, - aux_sym_pattern_token1, - ACTIONS(4284), 1, - anon_sym_DQUOTE, - STATE(167), 1, + STATE(169), 1, sym_local_command_value, - [4943] = 4, - ACTIONS(3866), 1, + [4987] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4190), 1, + ACTIONS(4125), 1, aux_sym_pattern_token1, - ACTIONS(4286), 1, + ACTIONS(4323), 1, anon_sym_DQUOTE, - STATE(166), 1, + STATE(168), 1, sym_local_forward_value, - [4956] = 4, - ACTIONS(3866), 1, + [5000] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4250), 1, + ACTIONS(4247), 1, aux_sym_pattern_token1, - ACTIONS(4288), 1, + ACTIONS(4325), 1, anon_sym_DQUOTE, - STATE(182), 1, - sym_hostbased_accepted_algorithms_value, - [4969] = 4, - ACTIONS(3866), 1, + STATE(194), 1, + sym_global_known_hosts_file_value, + [5013] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4244), 1, + ACTIONS(3999), 1, aux_sym_pattern_token1, - ACTIONS(4290), 1, + ACTIONS(4327), 1, anon_sym_DQUOTE, - STATE(164), 1, - sym_log_verbose_value, - [4982] = 4, - ACTIONS(3866), 1, + STATE(184), 1, + sym_hostbased_accepted_algorithms_value, + [5026] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4220), 1, + ACTIONS(4113), 1, aux_sym_pattern_token1, - ACTIONS(4292), 1, + ACTIONS(4329), 1, anon_sym_DQUOTE, - STATE(184), 1, - sym_gssapi_kex_algorithms_value, - [4995] = 4, - ACTIONS(3866), 1, + STATE(166), 1, + sym_log_verbose_value, + [5039] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4184), 1, + ACTIONS(4075), 1, aux_sym_pattern_token1, - ACTIONS(4294), 1, + ACTIONS(4331), 1, anon_sym_DQUOTE, - STATE(163), 1, + STATE(165), 1, sym_macs_value, - [5008] = 4, - ACTIONS(3866), 1, + [5052] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4196), 1, + ACTIONS(4069), 1, aux_sym_pattern_token1, - ACTIONS(4296), 1, + ACTIONS(4333), 1, anon_sym_DQUOTE, STATE(186), 1, - sym_gssapi_server_identity_value, - [5021] = 4, + sym_gssapi_kex_algorithms_value, + [5065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4025), 1, sym_number, - ACTIONS(4298), 1, + ACTIONS(4335), 1, anon_sym_DQUOTE, - STATE(161), 1, + STATE(163), 1, sym_number_of_password_prompts_value, - [5034] = 4, - ACTIONS(3866), 1, + [5078] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(3981), 1, aux_sym_pattern_token1, - ACTIONS(4300), 1, + ACTIONS(4337), 1, anon_sym_DQUOTE, - STATE(158), 1, + STATE(188), 1, + sym_gssapi_server_identity_value, + [5091] = 4, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4107), 1, + aux_sym_pattern_token1, + ACTIONS(4339), 1, + anon_sym_DQUOTE, + STATE(159), 1, sym_permit_remote_open_value, - [5047] = 4, - ACTIONS(3866), 1, + [5104] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3898), 1, + ACTIONS(4289), 1, aux_sym_pattern_token1, - ACTIONS(4302), 1, + ACTIONS(4341), 1, anon_sym_DQUOTE, - STATE(190), 1, + STATE(192), 1, sym_gssapi_client_identity_value, - [5060] = 4, - ACTIONS(3866), 1, + [5117] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4154), 1, + ACTIONS(4235), 1, aux_sym_pattern_token1, - ACTIONS(4304), 1, + ACTIONS(4343), 1, anon_sym_DQUOTE, - STATE(157), 1, + STATE(158), 1, sym_pkcs11_provider_value, - [5073] = 4, + [5130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(3963), 1, sym_number, - ACTIONS(4306), 1, + ACTIONS(4345), 1, anon_sym_DQUOTE, - STATE(156), 1, + STATE(157), 1, sym_port_value, - [5086] = 4, - ACTIONS(3866), 1, + [5143] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4142), 1, + ACTIONS(3945), 1, aux_sym_pattern_token1, - ACTIONS(4308), 1, + ACTIONS(4347), 1, anon_sym_DQUOTE, - STATE(155), 1, + STATE(215), 1, + sym_ciphers_value, + [5156] = 4, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(3993), 1, + aux_sym_pattern_token1, + ACTIONS(4349), 1, + anon_sym_DQUOTE, + STATE(156), 1, sym_preferred_authentications_value, - [5099] = 3, + [5169] = 3, ACTIONS(3), 1, sym_comment, - STATE(154), 1, + STATE(155), 1, sym_protocol_value, - ACTIONS(3890), 2, + ACTIONS(3935), 2, anon_sym_1, anon_sym_2, - [5110] = 4, - ACTIONS(3866), 1, + [5180] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4136), 1, + ACTIONS(4057), 1, aux_sym_pattern_token1, - ACTIONS(4310), 1, + ACTIONS(4351), 1, anon_sym_DQUOTE, - STATE(153), 1, + STATE(154), 1, sym_proxy_command_value, - [5123] = 4, + [5193] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 1, + ACTIONS(4181), 1, sym_time_format, - ACTIONS(4312), 1, + ACTIONS(4353), 1, anon_sym_DQUOTE, - STATE(195), 1, + STATE(197), 1, sym_forward_x11_timeout_value, - [5136] = 4, - ACTIONS(3866), 1, + [5206] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4130), 1, + ACTIONS(4087), 1, aux_sym_pattern_token1, - ACTIONS(4314), 1, + ACTIONS(4355), 1, anon_sym_DQUOTE, - STATE(152), 1, + STATE(153), 1, sym_proxy_jump_value, - [5149] = 4, - ACTIONS(3866), 1, + [5219] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4046), 1, + ACTIONS(4143), 1, aux_sym_pattern_token1, - ACTIONS(4316), 1, + ACTIONS(4357), 1, anon_sym_DQUOTE, - STATE(197), 1, + STATE(199), 1, sym_forward_agent_value, - [5162] = 4, - ACTIONS(3866), 1, + [5232] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4124), 1, + ACTIONS(4199), 1, aux_sym_pattern_token1, - ACTIONS(4318), 1, + ACTIONS(4359), 1, anon_sym_DQUOTE, - STATE(150), 1, + STATE(151), 1, sym_pubkey_accepted_algorithms_value, - [5175] = 4, - ACTIONS(3866), 1, + [5245] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4118), 1, + ACTIONS(4081), 1, aux_sym_pattern_token1, - ACTIONS(4320), 1, + ACTIONS(4361), 1, anon_sym_DQUOTE, - STATE(149), 1, + STATE(150), 1, sym_pubkey_accepted_key_types_value, - [5188] = 3, + [5258] = 3, ACTIONS(3), 1, sym_comment, - STATE(199), 1, + STATE(201), 1, sym_fingerprint_hash_value, - ACTIONS(3878), 2, + ACTIONS(3917), 2, anon_sym_md5, anon_sym_sha256, - [5199] = 4, - ACTIONS(3866), 1, + [5269] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(4277), 1, aux_sym_pattern_token1, - ACTIONS(4322), 1, + ACTIONS(4363), 1, anon_sym_DQUOTE, - STATE(147), 1, + STATE(148), 1, sym_rekey_limit_value, - [5212] = 3, - ACTIONS(3866), 1, + [5282] = 3, + ACTIONS(3901), 1, sym_comment, - STATE(201), 1, + STATE(203), 1, sym_escape_char_value, - ACTIONS(3872), 2, + ACTIONS(3927), 2, anon_sym_none, aux_sym_escape_char_value_token1, - [5223] = 4, - ACTIONS(3866), 1, + [5293] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4100), 1, + ACTIONS(4271), 1, aux_sym_pattern_token1, - ACTIONS(4324), 1, + ACTIONS(4365), 1, anon_sym_DQUOTE, - STATE(146), 1, + STATE(147), 1, sym_remote_command_value, - [5236] = 4, - ACTIONS(3866), 1, + [5306] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4094), 1, + ACTIONS(4253), 1, aux_sym_pattern_token1, - ACTIONS(4326), 1, + ACTIONS(4367), 1, anon_sym_DQUOTE, - STATE(145), 1, + STATE(146), 1, sym_remote_forward_value, - [5249] = 4, - ACTIONS(3866), 1, + [5319] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4004), 1, + ACTIONS(4031), 1, aux_sym_pattern_token1, - ACTIONS(4328), 1, + ACTIONS(4369), 1, anon_sym_DQUOTE, - STATE(204), 1, + STATE(206), 1, sym_dynamic_forward_value, - [5262] = 4, + [5332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4229), 1, sym_number, - ACTIONS(4330), 1, + ACTIONS(4371), 1, anon_sym_DQUOTE, - STATE(143), 1, + STATE(235), 1, sym_required_rsa_size_value, - [5275] = 4, - ACTIONS(3866), 1, + [5345] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4082), 1, + ACTIONS(4217), 1, aux_sym_pattern_token1, - ACTIONS(4332), 1, + ACTIONS(4373), 1, anon_sym_DQUOTE, - STATE(142), 1, + STATE(143), 1, sym_revoked_host_keys_value, - [5288] = 4, - ACTIONS(3866), 1, + [5358] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4202), 1, + ACTIONS(3939), 1, aux_sym_pattern_token1, - ACTIONS(4334), 1, + ACTIONS(4375), 1, anon_sym_DQUOTE, - STATE(179), 1, - sym_host_key_alias_value, - [5301] = 4, - ACTIONS(3866), 1, + STATE(182), 1, + sym_host_key_algorithms_value, + [5371] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3992), 1, + ACTIONS(4005), 1, aux_sym_pattern_token1, - ACTIONS(4336), 1, + ACTIONS(4377), 1, anon_sym_DQUOTE, - STATE(206), 1, + STATE(208), 1, sym_control_path_value, - [5314] = 4, - ACTIONS(3866), 1, + [5384] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4070), 1, + ACTIONS(4205), 1, aux_sym_pattern_token1, - ACTIONS(4338), 1, + ACTIONS(4379), 1, anon_sym_DQUOTE, - STATE(141), 1, + STATE(142), 1, sym_security_key_provider_value, - [5327] = 4, - ACTIONS(3866), 1, + [5397] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4064), 1, + ACTIONS(4193), 1, aux_sym_pattern_token1, - ACTIONS(4340), 1, + ACTIONS(4381), 1, anon_sym_DQUOTE, - STATE(140), 1, + STATE(141), 1, sym_send_env_value, - [5340] = 4, + [5410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(3987), 1, sym_number, - ACTIONS(4342), 1, + ACTIONS(4383), 1, anon_sym_DQUOTE, - STATE(208), 1, + STATE(210), 1, sym_connect_timeout_value, - [5353] = 4, + [5423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4169), 1, sym_number, - ACTIONS(4344), 1, + ACTIONS(4385), 1, anon_sym_DQUOTE, - STATE(139), 1, + STATE(140), 1, sym_server_alive_count_max_value, - [5366] = 4, + [5436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3975), 1, sym_number, - ACTIONS(4346), 1, + ACTIONS(4387), 1, anon_sym_DQUOTE, - STATE(209), 1, + STATE(211), 1, sym_connection_attempts_value, - [5379] = 4, + [5449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, + ACTIONS(4157), 1, sym_number, - ACTIONS(4348), 1, + ACTIONS(4389), 1, anon_sym_DQUOTE, - STATE(138), 1, + STATE(139), 1, sym_server_alive_interval_value, - [5392] = 4, - ACTIONS(3866), 1, + [5462] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4040), 1, + ACTIONS(4149), 1, aux_sym_pattern_token1, - ACTIONS(4350), 1, + ACTIONS(4391), 1, anon_sym_DQUOTE, - STATE(136), 1, + STATE(137), 1, sym_set_env_value, - [5405] = 4, - ACTIONS(3866), 1, + [5475] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3934), 1, + ACTIONS(3951), 1, aux_sym_pattern_token1, - ACTIONS(4352), 1, + ACTIONS(4393), 1, anon_sym_DQUOTE, - STATE(212), 1, + STATE(214), 1, sym_cipher_value, - [5418] = 4, - ACTIONS(3866), 1, + [5488] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3928), 1, + ACTIONS(4019), 1, aux_sym_pattern_token1, - ACTIONS(4354), 1, + ACTIONS(4395), 1, anon_sym_DQUOTE, - STATE(213), 1, - sym_ciphers_value, - [5431] = 4, - ACTIONS(3866), 1, + STATE(227), 1, + sym_bind_interface_value, + [5501] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3970), 1, + ACTIONS(4131), 1, aux_sym_pattern_token1, - ACTIONS(4356), 1, + ACTIONS(4397), 1, anon_sym_DQUOTE, - STATE(134), 1, + STATE(135), 1, sym_stream_local_bind_mask_value, - [5444] = 4, - ACTIONS(3866), 1, + [5514] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4178), 1, + ACTIONS(4101), 1, aux_sym_pattern_token1, - ACTIONS(4358), 1, + ACTIONS(4399), 1, anon_sym_DQUOTE, - STATE(218), 1, + STATE(220), 1, sym_certificate_file_value, - [5457] = 4, - ACTIONS(3866), 1, + [5527] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3914), 1, + ACTIONS(4211), 1, aux_sym_pattern_token1, - ACTIONS(4360), 1, + ACTIONS(4401), 1, anon_sym_DQUOTE, - STATE(219), 1, + STATE(221), 1, sym_ca_signature_algorithms_value, - [5470] = 4, - ACTIONS(3866), 1, + [5540] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4028), 1, + ACTIONS(4093), 1, aux_sym_pattern_token1, - ACTIONS(4362), 1, + ACTIONS(4403), 1, anon_sym_DQUOTE, - STATE(128), 1, + STATE(129), 1, sym_tag_value, - [5483] = 4, - ACTIONS(3866), 1, + [5553] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3969), 1, aux_sym_pattern_token1, - ACTIONS(4364), 1, + ACTIONS(4405), 1, anon_sym_DQUOTE, - STATE(220), 1, + STATE(222), 1, sym_canonicalize_permitted_cnames_value, - [5496] = 4, + [5566] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(3957), 1, sym_number, - ACTIONS(4366), 1, + ACTIONS(4407), 1, anon_sym_DQUOTE, - STATE(221), 1, + STATE(223), 1, sym_canonicalize_max_dots_value, - [5509] = 4, - ACTIONS(3866), 1, + [5579] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4022), 1, + ACTIONS(4119), 1, aux_sym_pattern_token1, - ACTIONS(4368), 1, + ACTIONS(4409), 1, anon_sym_DQUOTE, - STATE(126), 1, + STATE(127), 1, sym_tunnel_device_value, - [5522] = 4, - ACTIONS(3866), 1, + [5592] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3964), 1, + ACTIONS(4011), 1, aux_sym_pattern_token1, - ACTIONS(4370), 1, + ACTIONS(4411), 1, anon_sym_DQUOTE, - STATE(224), 1, + STATE(226), 1, sym_canonical_domains_value, - [5535] = 4, - ACTIONS(3866), 1, + [5605] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4016), 1, + ACTIONS(4063), 1, aux_sym_pattern_token1, - ACTIONS(4372), 1, + ACTIONS(4413), 1, anon_sym_DQUOTE, - STATE(122), 1, + STATE(123), 1, sym_user_value, - [5548] = 4, - ACTIONS(3866), 1, + [5618] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3986), 1, + ACTIONS(4037), 1, aux_sym_pattern_token1, - ACTIONS(4374), 1, + ACTIONS(4415), 1, anon_sym_DQUOTE, - STATE(226), 1, + STATE(228), 1, sym_bind_address_value, - [5561] = 4, - ACTIONS(3866), 1, + [5631] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4010), 1, + ACTIONS(4051), 1, aux_sym_pattern_token1, - ACTIONS(4376), 1, + ACTIONS(4417), 1, anon_sym_DQUOTE, - STATE(121), 1, + STATE(122), 1, sym_user_known_hosts_file_value, - [5574] = 4, - ACTIONS(3866), 1, + [5644] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(4301), 1, aux_sym_pattern_token1, - ACTIONS(4378), 1, - anon_sym_DQUOTE, STATE(118), 1, - sym_xauth_location_value, - [5587] = 4, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4380), 1, - aux_sym_pattern_token1, - STATE(232), 1, - sym_match_value, - STATE(238), 1, - sym_pattern, - [5600] = 4, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4380), 1, - aux_sym_pattern_token1, - STATE(117), 1, sym_host_value, - STATE(427), 1, + STATE(177), 1, sym_pattern, - [5613] = 4, - ACTIONS(3866), 1, + [5657] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4380), 1, + ACTIONS(4301), 1, aux_sym_pattern_token1, - STATE(116), 1, + STATE(117), 1, sym_match_value, - STATE(238), 1, + STATE(240), 1, sym_pattern, - [5626] = 4, - ACTIONS(3866), 1, + [5670] = 4, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4380), 1, + ACTIONS(4301), 1, aux_sym_pattern_token1, - STATE(396), 1, + STATE(144), 1, sym_host_value, - STATE(427), 1, + STATE(177), 1, sym_pattern, - [5639] = 3, - ACTIONS(3), 1, + [5683] = 4, + ACTIONS(3901), 1, sym_comment, - STATE(42), 1, - sym_protocol_value, - ACTIONS(3890), 2, - anon_sym_1, - anon_sym_2, - [5650] = 3, - ACTIONS(3866), 1, + ACTIONS(4045), 1, + aux_sym_pattern_token1, + ACTIONS(4419), 1, + anon_sym_DQUOTE, + STATE(119), 1, + sym_xauth_location_value, + [5696] = 3, + ACTIONS(3901), 1, sym_comment, - STATE(89), 1, + STATE(90), 1, sym_escape_char_value, - ACTIONS(3872), 2, + ACTIONS(3927), 2, anon_sym_none, aux_sym_escape_char_value_token1, - [5661] = 3, - ACTIONS(3866), 1, + [5707] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4382), 1, - aux_sym_pattern_token1, - STATE(43), 1, - sym_preferred_authentications_value, - [5671] = 3, - ACTIONS(3866), 1, + STATE(88), 1, + sym_fingerprint_hash_value, + ACTIONS(3917), 2, + anon_sym_md5, + anon_sym_sha256, + [5718] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4421), 1, aux_sym_host_token2, - ACTIONS(4386), 1, + ACTIONS(4423), 1, anon_sym_EQ, - [5681] = 3, - ACTIONS(3866), 1, + [5728] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4425), 1, aux_sym_pattern_token1, - STATE(78), 1, - sym_gssapi_client_identity_value, - [5691] = 3, - ACTIONS(3866), 1, + STATE(228), 1, + sym_bind_address_value, + [5738] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4427), 1, + aux_sym_pattern_token1, + STATE(33), 1, + sym_remote_forward_value, + [5748] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(4429), 1, aux_sym_host_token2, - ACTIONS(4392), 1, + ACTIONS(4431), 1, anon_sym_EQ, - [5701] = 3, - ACTIONS(3866), 1, + [5758] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4433), 1, aux_sym_pattern_token1, - STATE(180), 1, - sym_host_key_algorithms_value, - [5711] = 3, - ACTIONS(3866), 1, + STATE(34), 1, + sym_remote_command_value, + [5768] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4396), 1, + ACTIONS(4435), 1, aux_sym_host_token2, - ACTIONS(4398), 1, + ACTIONS(4437), 1, anon_sym_EQ, - [5721] = 3, - ACTIONS(3866), 1, + [5778] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(4439), 1, aux_sym_pattern_token1, - STATE(80), 1, - sym_global_known_hosts_file_value, - [5731] = 3, - ACTIONS(3866), 1, + STATE(35), 1, + sym_rekey_limit_value, + [5788] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4402), 1, + ACTIONS(4441), 1, aux_sym_host_token2, - ACTIONS(4404), 1, + ACTIONS(4443), 1, anon_sym_EQ, - [5741] = 3, - ACTIONS(3866), 1, + [5798] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4406), 1, - aux_sym_host_token2, - ACTIONS(4408), 1, - anon_sym_EQ, - [5751] = 3, - ACTIONS(3866), 1, + ACTIONS(4445), 1, + aux_sym_pattern_token1, + STATE(37), 1, + sym_pubkey_accepted_key_types_value, + [5808] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4410), 1, + ACTIONS(4447), 1, aux_sym_host_token2, - ACTIONS(4412), 1, + ACTIONS(4449), 1, anon_sym_EQ, - [5761] = 3, - ACTIONS(3866), 1, + [5818] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4414), 1, - aux_sym_host_token2, - ACTIONS(4416), 1, - anon_sym_EQ, - [5771] = 3, - ACTIONS(3866), 1, + ACTIONS(4451), 1, + aux_sym_pattern_token1, + STATE(38), 1, + sym_pubkey_accepted_algorithms_value, + [5828] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4418), 1, + ACTIONS(4453), 1, aux_sym_host_token2, - ACTIONS(4420), 1, + ACTIONS(4455), 1, anon_sym_EQ, - [5781] = 3, - ACTIONS(3), 1, + [5838] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4076), 1, - sym_time_format, - STATE(83), 1, - sym_forward_x11_timeout_value, - [5791] = 3, - ACTIONS(3866), 1, + ACTIONS(4457), 1, + aux_sym_pattern_token1, + STATE(40), 1, + sym_proxy_jump_value, + [5848] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4422), 1, + ACTIONS(4459), 1, aux_sym_host_token2, - ACTIONS(4424), 1, + ACTIONS(4461), 1, anon_sym_EQ, - [5801] = 3, - ACTIONS(3866), 1, + [5858] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4426), 1, - aux_sym_host_token2, - ACTIONS(4428), 1, - anon_sym_EQ, - [5811] = 3, - ACTIONS(3866), 1, + ACTIONS(4463), 1, + aux_sym_pattern_token1, + STATE(41), 1, + sym_proxy_command_value, + [5868] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4465), 1, aux_sym_host_token2, - ACTIONS(4432), 1, + ACTIONS(4467), 1, anon_sym_EQ, - [5821] = 3, - ACTIONS(3866), 1, + [5878] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4434), 1, + ACTIONS(4469), 1, aux_sym_host_token2, - ACTIONS(4436), 1, + ACTIONS(4471), 1, anon_sym_EQ, - [5831] = 3, - ACTIONS(3866), 1, + [5888] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(4473), 1, aux_sym_pattern_token1, - STATE(85), 1, - sym_forward_agent_value, - [5841] = 3, - ACTIONS(3866), 1, + STATE(43), 1, + sym_preferred_authentications_value, + [5898] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4440), 1, + ACTIONS(4475), 1, aux_sym_host_token2, - ACTIONS(4442), 1, + ACTIONS(4477), 1, anon_sym_EQ, - [5851] = 3, - ACTIONS(3866), 1, + [5908] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4444), 1, - aux_sym_host_token2, - ACTIONS(4446), 1, - anon_sym_EQ, - [5861] = 3, - ACTIONS(3866), 1, + ACTIONS(3963), 1, + sym_number, + STATE(44), 1, + sym_port_value, + [5918] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4448), 1, + ACTIONS(4479), 1, aux_sym_host_token2, - ACTIONS(4450), 1, + ACTIONS(4481), 1, anon_sym_EQ, - [5871] = 3, - ACTIONS(3866), 1, + [5928] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4483), 1, + aux_sym_pattern_token1, + STATE(45), 1, + sym_pkcs11_provider_value, + [5938] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4452), 1, + ACTIONS(4485), 1, aux_sym_host_token2, - ACTIONS(4454), 1, + ACTIONS(4487), 1, anon_sym_EQ, - [5881] = 3, - ACTIONS(3866), 1, + [5948] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4489), 1, + aux_sym_pattern_token1, + STATE(46), 1, + sym_permit_remote_open_value, + [5958] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4456), 1, + ACTIONS(4491), 1, aux_sym_host_token2, - ACTIONS(4458), 1, + ACTIONS(4493), 1, anon_sym_EQ, - [5891] = 3, - ACTIONS(3866), 1, + [5968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, + sym_number, + STATE(50), 1, + sym_number_of_password_prompts_value, + [5978] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4495), 1, aux_sym_host_token2, - ACTIONS(4462), 1, + ACTIONS(4497), 1, anon_sym_EQ, - [5901] = 3, - ACTIONS(3866), 1, + [5988] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4499), 1, aux_sym_pattern_token1, - STATE(41), 1, - sym_proxy_command_value, - [5911] = 3, - ACTIONS(3866), 1, + STATE(52), 1, + sym_macs_value, + [5998] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4466), 1, + ACTIONS(4501), 1, aux_sym_host_token2, - ACTIONS(4468), 1, + ACTIONS(4503), 1, anon_sym_EQ, - [5921] = 3, - ACTIONS(3866), 1, + [6008] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4470), 1, - aux_sym_host_token2, - ACTIONS(4472), 1, - anon_sym_EQ, - [5931] = 3, - ACTIONS(3866), 1, + ACTIONS(4505), 1, + aux_sym_pattern_token1, + STATE(53), 1, + sym_log_verbose_value, + [6018] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4474), 1, + ACTIONS(4507), 1, aux_sym_host_token2, - ACTIONS(4476), 1, + ACTIONS(4509), 1, anon_sym_EQ, - [5941] = 3, - ACTIONS(3866), 1, + [6028] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4478), 1, + ACTIONS(4511), 1, + aux_sym_pattern_token1, + STATE(55), 1, + sym_local_forward_value, + [6038] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4513), 1, aux_sym_host_token2, - ACTIONS(4480), 1, + ACTIONS(4515), 1, anon_sym_EQ, - [5951] = 3, - ACTIONS(3866), 1, + [6048] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4517), 1, aux_sym_pattern_token1, - STATE(40), 1, - sym_proxy_jump_value, - [5961] = 3, - ACTIONS(3866), 1, + STATE(56), 1, + sym_local_command_value, + [6058] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4484), 1, + ACTIONS(4519), 1, aux_sym_host_token2, - ACTIONS(4486), 1, + ACTIONS(4521), 1, anon_sym_EQ, - [5971] = 3, - ACTIONS(3866), 1, + [6068] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4488), 1, + ACTIONS(4523), 1, aux_sym_pattern_token1, - STATE(92), 1, - sym_dynamic_forward_value, - [5981] = 3, - ACTIONS(3866), 1, + STATE(57), 1, + sym_known_hosts_command_value, + [6078] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4490), 1, + ACTIONS(4525), 1, aux_sym_host_token2, - ACTIONS(4492), 1, + ACTIONS(4527), 1, anon_sym_EQ, - [5991] = 3, - ACTIONS(3866), 1, + [6088] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4494), 1, - aux_sym_host_token2, - ACTIONS(4496), 1, - anon_sym_EQ, - [6001] = 3, - ACTIONS(3866), 1, + ACTIONS(4529), 1, + aux_sym_pattern_token1, + STATE(58), 1, + sym_kex_algorithms_value, + [6098] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4498), 1, + ACTIONS(4531), 1, aux_sym_host_token2, - ACTIONS(4500), 1, + ACTIONS(4533), 1, anon_sym_EQ, - [6011] = 3, - ACTIONS(3866), 1, + [6108] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4502), 1, - aux_sym_host_token2, - ACTIONS(4504), 1, - anon_sym_EQ, - [6021] = 3, - ACTIONS(3866), 1, + ACTIONS(4535), 1, + aux_sym_pattern_token1, + STATE(59), 1, + sym_kbd_interactive_devices_value, + [6118] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4506), 1, + ACTIONS(4537), 1, aux_sym_host_token2, - ACTIONS(4508), 1, + ACTIONS(4539), 1, anon_sym_EQ, - [6031] = 3, - ACTIONS(3866), 1, + [6128] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4510), 1, + ACTIONS(4541), 1, aux_sym_pattern_token1, - STATE(94), 1, - sym_control_path_value, - [6041] = 3, - ACTIONS(3866), 1, + STATE(62), 1, + sym_include_value, + [6138] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4512), 1, + ACTIONS(4543), 1, aux_sym_host_token2, - ACTIONS(4514), 1, + ACTIONS(4545), 1, anon_sym_EQ, - [6051] = 3, - ACTIONS(3866), 1, + [6148] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4547), 1, aux_sym_pattern_token1, - STATE(38), 1, - sym_pubkey_accepted_algorithms_value, - [6061] = 3, - ACTIONS(3866), 1, + STATE(63), 1, + sym_ignore_unknown_value, + [6158] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4518), 1, + ACTIONS(4549), 1, aux_sym_host_token2, - ACTIONS(4520), 1, + ACTIONS(4551), 1, anon_sym_EQ, - [6071] = 3, - ACTIONS(3866), 1, + [6168] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4522), 1, + ACTIONS(4553), 1, aux_sym_pattern_token1, - STATE(179), 1, - sym_host_key_alias_value, - [6081] = 3, - ACTIONS(3866), 1, + STATE(64), 1, + sym_identity_file_value, + [6178] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4524), 1, + ACTIONS(4555), 1, aux_sym_host_token2, - ACTIONS(4526), 1, + ACTIONS(4557), 1, anon_sym_EQ, - [6091] = 3, - ACTIONS(3), 1, + [6188] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(3958), 1, - sym_number, - STATE(96), 1, - sym_connect_timeout_value, - [6101] = 3, - ACTIONS(3866), 1, + ACTIONS(4559), 1, + aux_sym_pattern_token1, + STATE(65), 1, + sym_identity_agent_value, + [6198] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4528), 1, + ACTIONS(4561), 1, aux_sym_host_token2, - ACTIONS(4530), 1, + ACTIONS(4563), 1, anon_sym_EQ, - [6111] = 3, + [6208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3957), 1, sym_number, - STATE(97), 1, - sym_connection_attempts_value, - [6121] = 3, - ACTIONS(3866), 1, + STATE(108), 1, + sym_canonicalize_max_dots_value, + [6218] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4532), 1, + ACTIONS(4565), 1, aux_sym_host_token2, - ACTIONS(4534), 1, + ACTIONS(4567), 1, anon_sym_EQ, - [6131] = 3, - ACTIONS(3866), 1, + [6228] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(4569), 1, aux_sym_pattern_token1, - STATE(37), 1, - sym_pubkey_accepted_key_types_value, - [6141] = 3, - ACTIONS(3866), 1, + STATE(68), 1, + sym_host_key_alias_value, + [6238] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4538), 1, + ACTIONS(4571), 1, aux_sym_host_token2, - ACTIONS(4540), 1, + ACTIONS(4573), 1, anon_sym_EQ, - [6151] = 3, - ACTIONS(3866), 1, + [6248] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4542), 1, + ACTIONS(4575), 1, aux_sym_pattern_token1, - STATE(35), 1, - sym_rekey_limit_value, - [6161] = 3, - ACTIONS(3866), 1, + STATE(69), 1, + sym_host_key_algorithms_value, + [6258] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4544), 1, + ACTIONS(4577), 1, aux_sym_host_token2, - ACTIONS(4546), 1, + ACTIONS(4579), 1, anon_sym_EQ, - [6171] = 3, - ACTIONS(3866), 1, + [6268] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4548), 1, + ACTIONS(4581), 1, aux_sym_pattern_token1, - STATE(100), 1, - sym_cipher_value, - [6181] = 3, - ACTIONS(3866), 1, + STATE(71), 1, + sym_hostbased_accepted_algorithms_value, + [6278] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4550), 1, + ACTIONS(4583), 1, aux_sym_host_token2, - ACTIONS(4552), 1, + ACTIONS(4585), 1, anon_sym_EQ, - [6191] = 3, - ACTIONS(3866), 1, + [6288] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4587), 1, aux_sym_pattern_token1, - STATE(101), 1, - sym_ciphers_value, - [6201] = 3, - ACTIONS(3866), 1, + STATE(73), 1, + sym_gssapi_kex_algorithms_value, + [6298] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4556), 1, + ACTIONS(4589), 1, aux_sym_host_token2, - ACTIONS(4558), 1, + ACTIONS(4591), 1, anon_sym_EQ, - [6211] = 3, - ACTIONS(3866), 1, + [6308] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4560), 1, - aux_sym_host_token2, - ACTIONS(4562), 1, - anon_sym_EQ, - [6221] = 3, - ACTIONS(3866), 1, + ACTIONS(4593), 1, + aux_sym_pattern_token1, + STATE(75), 1, + sym_gssapi_server_identity_value, + [6318] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4564), 1, + ACTIONS(4595), 1, aux_sym_host_token2, - ACTIONS(4566), 1, + ACTIONS(4597), 1, anon_sym_EQ, - [6231] = 3, - ACTIONS(3866), 1, + [6328] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4568), 1, + ACTIONS(4599), 1, aux_sym_pattern_token1, - STATE(34), 1, - sym_remote_command_value, - [6241] = 3, - ACTIONS(3866), 1, + STATE(79), 1, + sym_gssapi_client_identity_value, + [6338] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4570), 1, + ACTIONS(4601), 1, aux_sym_host_token2, - ACTIONS(4572), 1, + ACTIONS(4603), 1, anon_sym_EQ, - [6251] = 3, - ACTIONS(3866), 1, + [6348] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4605), 1, aux_sym_pattern_token1, - STATE(104), 1, - sym_certificate_file_value, - [6261] = 3, - ACTIONS(3866), 1, + STATE(81), 1, + sym_global_known_hosts_file_value, + [6358] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4576), 1, + ACTIONS(4607), 1, aux_sym_host_token2, - ACTIONS(4578), 1, + ACTIONS(4609), 1, anon_sym_EQ, - [6271] = 3, - ACTIONS(3866), 1, + [6368] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4580), 1, - aux_sym_pattern_token1, - STATE(105), 1, - sym_ca_signature_algorithms_value, - [6281] = 3, - ACTIONS(3866), 1, + ACTIONS(4181), 1, + sym_time_format, + STATE(84), 1, + sym_forward_x11_timeout_value, + [6378] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4582), 1, + ACTIONS(4611), 1, aux_sym_host_token2, - ACTIONS(4584), 1, + ACTIONS(4613), 1, anon_sym_EQ, - [6291] = 3, - ACTIONS(3866), 1, + [6388] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4615), 1, aux_sym_pattern_token1, - STATE(16), 1, - sym_tag_value, - [6301] = 3, - ACTIONS(3866), 1, + STATE(86), 1, + sym_forward_agent_value, + [6398] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4588), 1, + ACTIONS(4617), 1, aux_sym_host_token2, - ACTIONS(4590), 1, + ACTIONS(4619), 1, anon_sym_EQ, - [6311] = 3, - ACTIONS(3866), 1, + [6408] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4592), 1, - aux_sym_pattern_token1, - STATE(226), 1, - sym_bind_address_value, - [6321] = 3, - ACTIONS(3866), 1, + ACTIONS(4621), 1, + aux_sym_host_token2, + ACTIONS(4623), 1, + anon_sym_EQ, + [6418] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4594), 1, + ACTIONS(4625), 1, aux_sym_host_token2, - ACTIONS(4596), 1, + ACTIONS(4627), 1, anon_sym_EQ, - [6331] = 3, + [6428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(4229), 1, sym_number, - STATE(107), 1, - sym_canonicalize_max_dots_value, - [6341] = 3, - ACTIONS(3866), 1, + STATE(31), 1, + sym_required_rsa_size_value, + [6438] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4598), 1, + ACTIONS(4629), 1, aux_sym_host_token2, - ACTIONS(4600), 1, + ACTIONS(4631), 1, anon_sym_EQ, - [6351] = 3, - ACTIONS(3866), 1, + [6448] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(4633), 1, aux_sym_pattern_token1, - STATE(33), 1, - sym_remote_forward_value, - [6361] = 3, - ACTIONS(3866), 1, + STATE(93), 1, + sym_dynamic_forward_value, + [6458] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4604), 1, + ACTIONS(4635), 1, aux_sym_host_token2, - ACTIONS(4606), 1, + ACTIONS(4637), 1, anon_sym_EQ, - [6371] = 3, - ACTIONS(3866), 1, + [6468] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4608), 1, + ACTIONS(4639), 1, aux_sym_pattern_token1, - STATE(110), 1, - sym_canonical_domains_value, - [6381] = 3, - ACTIONS(3866), 1, + STATE(95), 1, + sym_control_path_value, + [6478] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4610), 1, + ACTIONS(4641), 1, aux_sym_host_token2, - ACTIONS(4612), 1, + ACTIONS(4643), 1, anon_sym_EQ, - [6391] = 3, + [6488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(3987), 1, sym_number, - STATE(31), 1, - sym_required_rsa_size_value, - [6401] = 3, - ACTIONS(3866), 1, + STATE(97), 1, + sym_connect_timeout_value, + [6498] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4645), 1, + aux_sym_host_token2, + ACTIONS(4647), 1, + anon_sym_EQ, + [6508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3975), 1, + sym_number, + STATE(98), 1, + sym_connection_attempts_value, + [6518] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4614), 1, + ACTIONS(4649), 1, aux_sym_host_token2, - ACTIONS(4616), 1, + ACTIONS(4651), 1, anon_sym_EQ, - [6411] = 3, - ACTIONS(3866), 1, + [6528] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4653), 1, aux_sym_pattern_token1, - STATE(111), 1, - sym_bind_interface_value, - [6421] = 3, - ACTIONS(3866), 1, + STATE(101), 1, + sym_cipher_value, + [6538] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4620), 1, + ACTIONS(4655), 1, aux_sym_host_token2, - ACTIONS(4622), 1, + ACTIONS(4657), 1, anon_sym_EQ, - [6431] = 3, - ACTIONS(3866), 1, + [6548] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4592), 1, + ACTIONS(4659), 1, aux_sym_pattern_token1, - STATE(112), 1, - sym_bind_address_value, - [6441] = 3, - ACTIONS(3866), 1, + STATE(102), 1, + sym_ciphers_value, + [6558] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4624), 1, + ACTIONS(4661), 1, aux_sym_host_token2, - ACTIONS(4626), 1, + ACTIONS(4663), 1, anon_sym_EQ, - [6451] = 3, - ACTIONS(3866), 1, + [6568] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4628), 1, + ACTIONS(4575), 1, aux_sym_pattern_token1, - STATE(30), 1, - sym_revoked_host_keys_value, - [6461] = 3, - ACTIONS(3866), 1, + STATE(182), 1, + sym_host_key_algorithms_value, + [6578] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4630), 1, + ACTIONS(4665), 1, aux_sym_host_token2, - ACTIONS(4632), 1, + ACTIONS(4667), 1, anon_sym_EQ, - [6471] = 3, - ACTIONS(3866), 1, + [6588] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(4669), 1, aux_sym_pattern_token1, - STATE(29), 1, - sym_security_key_provider_value, - [6481] = 3, - ACTIONS(3866), 1, + STATE(105), 1, + sym_certificate_file_value, + [6598] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(4671), 1, aux_sym_host_token2, - ACTIONS(4638), 1, + ACTIONS(4673), 1, anon_sym_EQ, - [6491] = 3, - ACTIONS(3866), 1, + [6608] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4675), 1, aux_sym_pattern_token1, - STATE(28), 1, - sym_send_env_value, - [6501] = 3, - ACTIONS(3866), 1, + STATE(106), 1, + sym_ca_signature_algorithms_value, + [6618] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4642), 1, + ACTIONS(4677), 1, aux_sym_host_token2, - ACTIONS(4644), 1, + ACTIONS(4679), 1, anon_sym_EQ, - [6511] = 3, - ACTIONS(3866), 1, + [6628] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(4681), 1, aux_sym_pattern_token1, - STATE(74), 1, - sym_gssapi_server_identity_value, - [6521] = 3, - ACTIONS(3866), 1, + STATE(107), 1, + sym_canonicalize_permitted_cnames_value, + [6638] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4648), 1, + ACTIONS(4683), 1, aux_sym_host_token2, - ACTIONS(4650), 1, + ACTIONS(4685), 1, anon_sym_EQ, - [6531] = 3, - ACTIONS(3866), 1, + [6648] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4652), 1, + ACTIONS(4687), 1, aux_sym_host_token2, - ACTIONS(4654), 1, + ACTIONS(4689), 1, anon_sym_EQ, - [6541] = 3, - ACTIONS(3866), 1, + [6658] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4656), 1, + ACTIONS(4691), 1, aux_sym_host_token2, - ACTIONS(4658), 1, + ACTIONS(4693), 1, anon_sym_EQ, - [6551] = 3, - ACTIONS(3866), 1, + [6668] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(4695), 1, aux_sym_pattern_token1, - STATE(216), 1, - sym_user_known_hosts_file_value, - [6561] = 3, - ACTIONS(3866), 1, + STATE(111), 1, + sym_canonical_domains_value, + [6678] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4662), 1, + ACTIONS(4697), 1, aux_sym_host_token2, - ACTIONS(4664), 1, + ACTIONS(4699), 1, anon_sym_EQ, - [6571] = 3, - ACTIONS(3866), 1, + [6688] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4666), 1, - aux_sym_host_token2, - ACTIONS(4668), 1, - anon_sym_EQ, - [6581] = 3, - ACTIONS(3866), 1, + ACTIONS(4701), 1, + aux_sym_pattern_token1, + STATE(112), 1, + sym_bind_interface_value, + [6698] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4703), 1, aux_sym_host_token2, - ACTIONS(4672), 1, + ACTIONS(4705), 1, anon_sym_EQ, - [6591] = 3, - ACTIONS(3), 1, + [6708] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4148), 1, - sym_number, - STATE(44), 1, - sym_port_value, - [6601] = 3, - ACTIONS(3866), 1, + ACTIONS(4425), 1, + aux_sym_pattern_token1, + STATE(113), 1, + sym_bind_address_value, + [6718] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4707), 1, aux_sym_host_token2, - ACTIONS(4676), 1, + ACTIONS(4709), 1, anon_sym_EQ, - [6611] = 3, - ACTIONS(3866), 1, + [6728] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4711), 1, aux_sym_pattern_token1, - STATE(118), 1, - sym_xauth_location_value, - [6621] = 3, - ACTIONS(3866), 1, + STATE(30), 1, + sym_revoked_host_keys_value, + [6738] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4680), 1, + ACTIONS(4713), 1, aux_sym_host_token2, - ACTIONS(4682), 1, + ACTIONS(4715), 1, anon_sym_EQ, - [6631] = 3, - ACTIONS(3866), 1, + [6748] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4684), 1, + ACTIONS(4717), 1, aux_sym_host_token2, - ACTIONS(4686), 1, + ACTIONS(4719), 1, anon_sym_EQ, - [6641] = 3, - ACTIONS(3866), 1, + [6758] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4688), 1, + ACTIONS(4721), 1, aux_sym_host_token2, - ACTIONS(4690), 1, + ACTIONS(4723), 1, anon_sym_EQ, - [6651] = 3, - ACTIONS(3), 1, + [6768] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4058), 1, - sym_number, - STATE(27), 1, - sym_server_alive_count_max_value, - [6661] = 3, - ACTIONS(3866), 1, + ACTIONS(4725), 1, + aux_sym_pattern_token1, + STATE(29), 1, + sym_security_key_provider_value, + [6778] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4692), 1, + ACTIONS(4727), 1, aux_sym_host_token2, - ACTIONS(4694), 1, + ACTIONS(4729), 1, anon_sym_EQ, - [6671] = 3, - ACTIONS(3866), 1, + [6788] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4660), 1, + ACTIONS(4731), 1, aux_sym_pattern_token1, - STATE(121), 1, - sym_user_known_hosts_file_value, - [6681] = 3, - ACTIONS(3866), 1, + STATE(119), 1, + sym_xauth_location_value, + [6798] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4696), 1, + ACTIONS(4733), 1, aux_sym_host_token2, - ACTIONS(4698), 1, + ACTIONS(4735), 1, anon_sym_EQ, - [6691] = 3, - ACTIONS(3866), 1, + [6808] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4678), 1, + ACTIONS(4711), 1, aux_sym_pattern_token1, - STATE(297), 1, - sym_xauth_location_value, - [6701] = 3, - ACTIONS(3866), 1, + STATE(143), 1, + sym_revoked_host_keys_value, + [6818] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4700), 1, + ACTIONS(4737), 1, aux_sym_host_token2, - ACTIONS(4702), 1, + ACTIONS(4739), 1, anon_sym_EQ, - [6711] = 3, - ACTIONS(3866), 1, + [6828] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4741), 1, + aux_sym_pattern_token1, + STATE(122), 1, + sym_user_known_hosts_file_value, + [6838] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(4743), 1, aux_sym_host_token2, - ACTIONS(4706), 1, + ACTIONS(4745), 1, anon_sym_EQ, - [6721] = 3, - ACTIONS(3866), 1, + [6848] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4708), 1, + ACTIONS(4747), 1, aux_sym_host_token2, - ACTIONS(4710), 1, + ACTIONS(4749), 1, anon_sym_EQ, - [6731] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4510), 1, - aux_sym_pattern_token1, - STATE(206), 1, - sym_control_path_value, - [6741] = 3, - ACTIONS(3866), 1, + [6858] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4712), 1, + ACTIONS(4751), 1, aux_sym_host_token2, - ACTIONS(4714), 1, + ACTIONS(4753), 1, anon_sym_EQ, - [6751] = 3, - ACTIONS(3866), 1, + [6868] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4716), 1, + ACTIONS(4755), 1, aux_sym_pattern_token1, - STATE(122), 1, - sym_user_value, - [6761] = 3, - ACTIONS(3866), 1, + STATE(28), 1, + sym_send_env_value, + [6878] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4718), 1, + ACTIONS(4757), 1, aux_sym_host_token2, - ACTIONS(4720), 1, + ACTIONS(4759), 1, anon_sym_EQ, - [6771] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4722), 1, - aux_sym_pattern_token1, - STATE(45), 1, - sym_pkcs11_provider_value, - [6781] = 3, - ACTIONS(3866), 1, + [6888] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4724), 1, + ACTIONS(4761), 1, aux_sym_host_token2, - ACTIONS(4726), 1, + ACTIONS(4763), 1, anon_sym_EQ, - [6791] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4716), 1, - aux_sym_pattern_token1, - STATE(234), 1, - sym_user_value, - [6801] = 3, - ACTIONS(3866), 1, + [6898] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4728), 1, + ACTIONS(4765), 1, aux_sym_host_token2, - ACTIONS(4730), 1, + ACTIONS(4767), 1, anon_sym_EQ, - [6811] = 3, - ACTIONS(3866), 1, + [6908] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4618), 1, + ACTIONS(4769), 1, aux_sym_pattern_token1, - STATE(225), 1, - sym_bind_interface_value, - [6821] = 3, - ACTIONS(3866), 1, + STATE(123), 1, + sym_user_value, + [6918] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4732), 1, + ACTIONS(4771), 1, aux_sym_host_token2, - ACTIONS(4734), 1, + ACTIONS(4773), 1, anon_sym_EQ, - [6831] = 3, - ACTIONS(3866), 1, + [6928] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4736), 1, + ACTIONS(4775), 1, aux_sym_host_token2, - ACTIONS(4738), 1, + ACTIONS(4777), 1, anon_sym_EQ, - [6841] = 3, - ACTIONS(3866), 1, + [6938] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4740), 1, - aux_sym_host_token2, - ACTIONS(4742), 1, - anon_sym_EQ, - [6851] = 3, - ACTIONS(3866), 1, + ACTIONS(4701), 1, + aux_sym_pattern_token1, + STATE(227), 1, + sym_bind_interface_value, + [6948] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4169), 1, + sym_number, + STATE(237), 1, + sym_server_alive_count_max_value, + [6958] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4608), 1, + ACTIONS(4695), 1, aux_sym_pattern_token1, - STATE(224), 1, + STATE(226), 1, sym_canonical_domains_value, - [6861] = 3, - ACTIONS(3866), 1, + [6968] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4744), 1, - aux_sym_host_token2, - ACTIONS(4746), 1, - anon_sym_EQ, - [6871] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4748), 1, + ACTIONS(4779), 1, aux_sym_pattern_token1, - STATE(126), 1, + STATE(127), 1, sym_tunnel_device_value, - [6881] = 3, - ACTIONS(3866), 1, + [6978] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4750), 1, + ACTIONS(4781), 1, aux_sym_host_token2, - ACTIONS(4752), 1, + ACTIONS(4783), 1, anon_sym_EQ, - [6891] = 3, - ACTIONS(3866), 1, + [6988] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4754), 1, - aux_sym_pattern_token1, - STATE(72), 1, - sym_gssapi_kex_algorithms_value, - [6901] = 3, + ACTIONS(4157), 1, + sym_number, + STATE(26), 1, + sym_server_alive_interval_value, + [6998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3922), 1, + ACTIONS(3957), 1, sym_number, - STATE(221), 1, + STATE(223), 1, sym_canonicalize_max_dots_value, - [6911] = 3, - ACTIONS(3866), 1, + [7008] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4756), 1, + ACTIONS(4785), 1, aux_sym_host_token2, - ACTIONS(4758), 1, + ACTIONS(4787), 1, anon_sym_EQ, - [6921] = 3, - ACTIONS(3866), 1, + [7018] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4760), 1, + ACTIONS(4681), 1, aux_sym_pattern_token1, - STATE(220), 1, + STATE(222), 1, sym_canonicalize_permitted_cnames_value, - [6931] = 3, - ACTIONS(3866), 1, + [7028] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4586), 1, + ACTIONS(4789), 1, aux_sym_pattern_token1, - STATE(128), 1, + STATE(129), 1, sym_tag_value, - [6941] = 3, - ACTIONS(3866), 1, + [7038] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4791), 1, + aux_sym_pattern_token1, + STATE(67), 1, + sym_hostname_value, + [7048] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4762), 1, + ACTIONS(4793), 1, aux_sym_host_token2, - ACTIONS(4764), 1, + ACTIONS(4795), 1, anon_sym_EQ, - [6951] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4766), 1, - aux_sym_pattern_token1, - STATE(70), 1, - sym_hostbased_accepted_algorithms_value, - [6961] = 3, - ACTIONS(3866), 1, + [7058] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4580), 1, + ACTIONS(4675), 1, aux_sym_pattern_token1, - STATE(219), 1, + STATE(221), 1, sym_ca_signature_algorithms_value, - [6971] = 3, - ACTIONS(3866), 1, + [7068] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4768), 1, - aux_sym_host_token2, - ACTIONS(4770), 1, - anon_sym_EQ, - [6981] = 3, - ACTIONS(3866), 1, + ACTIONS(4797), 1, + aux_sym_pattern_token1, + STATE(22), 1, + sym_stream_local_bind_mask_value, + [7078] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4574), 1, + ACTIONS(4669), 1, aux_sym_pattern_token1, - STATE(218), 1, + STATE(220), 1, sym_certificate_file_value, - [6991] = 3, - ACTIONS(3866), 1, + [7088] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4772), 1, - aux_sym_pattern_token1, - STATE(178), 1, - sym_hostname_value, - [7001] = 3, - ACTIONS(3866), 1, + ACTIONS(4799), 1, + aux_sym_host_token2, + ACTIONS(4801), 1, + anon_sym_EQ, + [7098] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(4569), 1, aux_sym_pattern_token1, - STATE(46), 1, - sym_permit_remote_open_value, - [7011] = 3, - ACTIONS(3866), 1, + STATE(181), 1, + sym_host_key_alias_value, + [7108] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4776), 1, + ACTIONS(4797), 1, aux_sym_pattern_token1, - STATE(134), 1, + STATE(135), 1, sym_stream_local_bind_mask_value, - [7021] = 3, - ACTIONS(3866), 1, + [7118] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4778), 1, + ACTIONS(4803), 1, aux_sym_host_token2, - ACTIONS(4780), 1, + ACTIONS(4805), 1, anon_sym_EQ, - [7031] = 3, - ACTIONS(3866), 1, + [7128] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4760), 1, + ACTIONS(4789), 1, aux_sym_pattern_token1, - STATE(106), 1, - sym_canonicalize_permitted_cnames_value, - [7041] = 3, - ACTIONS(3866), 1, + STATE(16), 1, + sym_tag_value, + [7138] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4554), 1, + ACTIONS(4659), 1, aux_sym_pattern_token1, - STATE(213), 1, + STATE(215), 1, sym_ciphers_value, - [7051] = 3, - ACTIONS(3866), 1, + [7148] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4782), 1, + ACTIONS(4807), 1, aux_sym_host_token2, - ACTIONS(4784), 1, + ACTIONS(4809), 1, anon_sym_EQ, - [7061] = 3, - ACTIONS(3), 1, + [7158] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4052), 1, - sym_number, - STATE(26), 1, - sym_server_alive_interval_value, - [7071] = 3, - ACTIONS(3866), 1, + ACTIONS(4653), 1, + aux_sym_pattern_token1, + STATE(214), 1, + sym_cipher_value, + [7168] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(4811), 1, aux_sym_pattern_token1, - STATE(136), 1, + STATE(137), 1, sym_set_env_value, - [7081] = 3, - ACTIONS(3866), 1, + [7178] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4788), 1, - aux_sym_host_token2, - ACTIONS(4790), 1, - anon_sym_EQ, - [7091] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4786), 1, + ACTIONS(4811), 1, aux_sym_pattern_token1, STATE(24), 1, sym_set_env_value, - [7101] = 3, + [7188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4052), 1, + ACTIONS(4157), 1, sym_number, - STATE(138), 1, + STATE(139), 1, sym_server_alive_interval_value, - [7111] = 3, - ACTIONS(3866), 1, + [7198] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4522), 1, - aux_sym_pattern_token1, - STATE(67), 1, - sym_host_key_alias_value, - [7121] = 3, - ACTIONS(3866), 1, + ACTIONS(4813), 1, + aux_sym_host_token2, + ACTIONS(4815), 1, + anon_sym_EQ, + [7208] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4792), 1, + ACTIONS(4817), 1, aux_sym_host_token2, - ACTIONS(4794), 1, + ACTIONS(4819), 1, anon_sym_EQ, - [7131] = 3, + [7218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3975), 1, sym_number, - STATE(209), 1, + STATE(211), 1, sym_connection_attempts_value, - [7141] = 3, + [7228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4058), 1, + ACTIONS(4169), 1, sym_number, - STATE(139), 1, + STATE(140), 1, sym_server_alive_count_max_value, - [7151] = 3, - ACTIONS(3866), 1, + [7238] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4796), 1, + ACTIONS(4821), 1, aux_sym_host_token2, - ACTIONS(4798), 1, + ACTIONS(4823), 1, anon_sym_EQ, - [7161] = 3, - ACTIONS(3866), 1, + [7248] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4772), 1, + ACTIONS(4769), 1, aux_sym_pattern_token1, - STATE(66), 1, - sym_hostname_value, - [7171] = 3, + STATE(236), 1, + sym_user_value, + [7258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3958), 1, + ACTIONS(3987), 1, sym_number, - STATE(208), 1, + STATE(210), 1, sym_connect_timeout_value, - [7181] = 3, - ACTIONS(3866), 1, + [7268] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4640), 1, + ACTIONS(4755), 1, aux_sym_pattern_token1, - STATE(140), 1, + STATE(141), 1, sym_send_env_value, - [7191] = 3, - ACTIONS(3866), 1, + [7278] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4800), 1, + ACTIONS(4825), 1, aux_sym_host_token2, - ACTIONS(4802), 1, + ACTIONS(4827), 1, anon_sym_EQ, - [7201] = 3, - ACTIONS(3866), 1, + [7288] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4634), 1, + ACTIONS(4725), 1, aux_sym_pattern_token1, - STATE(141), 1, + STATE(142), 1, sym_security_key_provider_value, - [7211] = 3, - ACTIONS(3866), 1, + [7298] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4394), 1, + ACTIONS(4741), 1, aux_sym_pattern_token1, - STATE(68), 1, - sym_host_key_algorithms_value, - [7221] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4804), 1, - aux_sym_host_token2, - ACTIONS(4806), 1, - anon_sym_EQ, - [7231] = 3, - ACTIONS(3866), 1, + STATE(218), 1, + sym_user_known_hosts_file_value, + [7308] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4808), 1, + ACTIONS(4829), 1, aux_sym_host_token2, - ACTIONS(4810), 1, + ACTIONS(4831), 1, anon_sym_EQ, - [7241] = 3, - ACTIONS(3866), 1, + [7318] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4628), 1, + ACTIONS(4639), 1, aux_sym_pattern_token1, - STATE(142), 1, - sym_revoked_host_keys_value, - [7251] = 3, - ACTIONS(3866), 1, + STATE(208), 1, + sym_control_path_value, + [7328] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(4731), 1, aux_sym_pattern_token1, - STATE(64), 1, - sym_identity_agent_value, - [7261] = 3, + STATE(299), 1, + sym_xauth_location_value, + [7338] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4833), 1, + aux_sym_host_token2, + ACTIONS(4835), 1, + anon_sym_EQ, + [7348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4088), 1, + ACTIONS(4229), 1, sym_number, - STATE(143), 1, + STATE(235), 1, sym_required_rsa_size_value, - [7271] = 3, - ACTIONS(3866), 1, + [7358] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4814), 1, + ACTIONS(4837), 1, aux_sym_host_token2, - ACTIONS(4816), 1, + ACTIONS(4839), 1, anon_sym_EQ, - [7281] = 3, - ACTIONS(3866), 1, + [7368] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4818), 1, + ACTIONS(4841), 1, aux_sym_host_token2, - ACTIONS(4820), 1, + ACTIONS(4843), 1, anon_sym_EQ, - [7291] = 3, - ACTIONS(3866), 1, + [7378] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4488), 1, + ACTIONS(4633), 1, aux_sym_pattern_token1, - STATE(204), 1, + STATE(206), 1, sym_dynamic_forward_value, - [7301] = 3, - ACTIONS(3866), 1, + [7388] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4602), 1, + ACTIONS(4427), 1, aux_sym_pattern_token1, - STATE(145), 1, + STATE(146), 1, sym_remote_forward_value, - [7311] = 3, - ACTIONS(3866), 1, + [7398] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4822), 1, - aux_sym_pattern_token1, - STATE(63), 1, - sym_identity_file_value, - [7321] = 3, - ACTIONS(3866), 1, + ACTIONS(4845), 1, + aux_sym_host_token2, + ACTIONS(4847), 1, + anon_sym_EQ, + [7408] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4568), 1, + ACTIONS(4433), 1, aux_sym_pattern_token1, - STATE(146), 1, + STATE(147), 1, sym_remote_command_value, - [7331] = 3, - ACTIONS(3866), 1, + [7418] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4824), 1, + ACTIONS(4849), 1, aux_sym_host_token2, - ACTIONS(4826), 1, + ACTIONS(4851), 1, anon_sym_EQ, - [7341] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4776), 1, - aux_sym_pattern_token1, - STATE(22), 1, - sym_stream_local_bind_mask_value, - [7351] = 3, - ACTIONS(3866), 1, + [7428] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4828), 1, - aux_sym_pattern_token1, - STATE(62), 1, - sym_ignore_unknown_value, - [7361] = 3, - ACTIONS(3866), 1, + ACTIONS(4853), 1, + aux_sym_host_token2, + ACTIONS(4855), 1, + anon_sym_EQ, + [7438] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4542), 1, + ACTIONS(4439), 1, aux_sym_pattern_token1, - STATE(147), 1, + STATE(148), 1, sym_rekey_limit_value, - [7371] = 3, - ACTIONS(3866), 1, + [7448] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4830), 1, + ACTIONS(4857), 1, aux_sym_host_token2, - ACTIONS(4832), 1, + ACTIONS(4859), 1, anon_sym_EQ, - [7381] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4748), 1, - aux_sym_pattern_token1, - STATE(14), 1, - sym_tunnel_device_value, - [7391] = 3, - ACTIONS(3866), 1, + [7458] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4834), 1, - aux_sym_pattern_token1, - STATE(61), 1, - sym_include_value, - [7401] = 3, - ACTIONS(3866), 1, + ACTIONS(4861), 1, + aux_sym_host_token2, + ACTIONS(4863), 1, + anon_sym_EQ, + [7468] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4536), 1, + ACTIONS(4445), 1, aux_sym_pattern_token1, - STATE(149), 1, + STATE(150), 1, sym_pubkey_accepted_key_types_value, - [7411] = 3, - ACTIONS(3866), 1, + [7478] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4836), 1, + ACTIONS(4865), 1, aux_sym_host_token2, - ACTIONS(4838), 1, + ACTIONS(4867), 1, anon_sym_EQ, - [7421] = 3, - ACTIONS(3866), 1, + [7488] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4516), 1, + ACTIONS(4451), 1, aux_sym_pattern_token1, - STATE(150), 1, + STATE(151), 1, sym_pubkey_accepted_algorithms_value, - [7431] = 3, - ACTIONS(3866), 1, + [7498] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4840), 1, - aux_sym_host_token2, - ACTIONS(4842), 1, - anon_sym_EQ, - [7441] = 3, - ACTIONS(3866), 1, + ACTIONS(4779), 1, + aux_sym_pattern_token1, + STATE(14), 1, + sym_tunnel_device_value, + [7508] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4844), 1, + ACTIONS(4869), 1, aux_sym_host_token2, - ACTIONS(4846), 1, + ACTIONS(4871), 1, anon_sym_EQ, - [7451] = 3, - ACTIONS(3866), 1, + [7518] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4438), 1, + ACTIONS(4615), 1, aux_sym_pattern_token1, - STATE(197), 1, + STATE(199), 1, sym_forward_agent_value, - [7461] = 3, - ACTIONS(3866), 1, + [7528] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4482), 1, + ACTIONS(4457), 1, aux_sym_pattern_token1, - STATE(152), 1, + STATE(153), 1, sym_proxy_jump_value, - [7471] = 3, - ACTIONS(3866), 1, + [7538] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4848), 1, + ACTIONS(4873), 1, aux_sym_host_token2, - ACTIONS(4850), 1, + ACTIONS(4875), 1, anon_sym_EQ, - [7481] = 3, - ACTIONS(3866), 1, + [7548] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4852), 1, - aux_sym_pattern_token1, - STATE(58), 1, - sym_kbd_interactive_devices_value, - [7491] = 3, + ACTIONS(4877), 1, + aux_sym_host_token2, + ACTIONS(4879), 1, + anon_sym_EQ, + [7558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4076), 1, + ACTIONS(4181), 1, sym_time_format, - STATE(195), 1, + STATE(197), 1, sym_forward_x11_timeout_value, - [7501] = 3, - ACTIONS(3866), 1, + [7568] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4464), 1, + ACTIONS(4463), 1, aux_sym_pattern_token1, - STATE(153), 1, + STATE(154), 1, sym_proxy_command_value, - [7511] = 3, - ACTIONS(3866), 1, + [7578] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4854), 1, + ACTIONS(4881), 1, aux_sym_host_token2, - ACTIONS(4856), 1, + ACTIONS(4883), 1, anon_sym_EQ, - [7521] = 3, - ACTIONS(3866), 1, + [7588] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4858), 1, + ACTIONS(4885), 1, aux_sym_host_token2, - ACTIONS(4860), 1, + ACTIONS(4887), 1, anon_sym_EQ, - [7531] = 3, - ACTIONS(3866), 1, + [7598] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4862), 1, - aux_sym_host_token2, - ACTIONS(4864), 1, - anon_sym_EQ, - [7541] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4382), 1, + ACTIONS(4473), 1, aux_sym_pattern_token1, - STATE(155), 1, + STATE(156), 1, sym_preferred_authentications_value, - [7551] = 3, - ACTIONS(3866), 1, + [7608] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4866), 1, - aux_sym_pattern_token1, - STATE(57), 1, - sym_kex_algorithms_value, - [7561] = 3, - ACTIONS(3866), 1, + ACTIONS(4889), 1, + aux_sym_host_token2, + ACTIONS(4891), 1, + anon_sym_EQ, + [7618] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4548), 1, - aux_sym_pattern_token1, - STATE(212), 1, - sym_cipher_value, - [7571] = 3, - ACTIONS(3866), 1, + ACTIONS(4893), 1, + aux_sym_host_token2, + ACTIONS(4895), 1, + anon_sym_EQ, + [7628] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4400), 1, + ACTIONS(4605), 1, aux_sym_pattern_token1, - STATE(192), 1, + STATE(194), 1, sym_global_known_hosts_file_value, - [7581] = 3, + [7638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4148), 1, + ACTIONS(3963), 1, sym_number, - STATE(156), 1, + STATE(157), 1, sym_port_value, - [7591] = 3, - ACTIONS(3866), 1, + [7648] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4868), 1, + ACTIONS(4897), 1, aux_sym_host_token2, - ACTIONS(4870), 1, + ACTIONS(4899), 1, anon_sym_EQ, - [7601] = 3, - ACTIONS(3866), 1, + [7658] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4722), 1, + ACTIONS(4483), 1, aux_sym_pattern_token1, - STATE(157), 1, + STATE(158), 1, sym_pkcs11_provider_value, - [7611] = 3, - ACTIONS(3866), 1, + [7668] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4872), 1, - aux_sym_pattern_token1, - STATE(56), 1, - sym_known_hosts_command_value, - [7621] = 3, - ACTIONS(3866), 1, + ACTIONS(4901), 1, + aux_sym_host_token2, + ACTIONS(4903), 1, + anon_sym_EQ, + [7678] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4874), 1, + ACTIONS(4905), 1, aux_sym_host_token2, - ACTIONS(4876), 1, + ACTIONS(4907), 1, anon_sym_EQ, - [7631] = 3, - ACTIONS(3866), 1, + [7688] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(4599), 1, aux_sym_pattern_token1, - STATE(190), 1, + STATE(192), 1, sym_gssapi_client_identity_value, - [7641] = 3, - ACTIONS(3866), 1, + [7698] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4774), 1, + ACTIONS(4489), 1, aux_sym_pattern_token1, - STATE(158), 1, + STATE(159), 1, sym_permit_remote_open_value, - [7651] = 3, - ACTIONS(3866), 1, + [7708] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4909), 1, + aux_sym_host_token2, + ACTIONS(4911), 1, + anon_sym_EQ, + [7718] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4878), 1, + ACTIONS(4913), 1, aux_sym_host_token2, - ACTIONS(4880), 1, + ACTIONS(4915), 1, anon_sym_EQ, - [7661] = 3, + [7728] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4593), 1, + aux_sym_pattern_token1, + STATE(188), 1, + sym_gssapi_server_identity_value, + [7738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4166), 1, + ACTIONS(4025), 1, sym_number, - STATE(161), 1, + STATE(163), 1, sym_number_of_password_prompts_value, - [7671] = 3, - ACTIONS(3866), 1, + [7748] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4882), 1, - aux_sym_pattern_token1, - STATE(55), 1, - sym_local_command_value, - [7681] = 3, - ACTIONS(3866), 1, + ACTIONS(4917), 1, + aux_sym_host_token2, + ACTIONS(4919), 1, + anon_sym_EQ, + [7758] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4884), 1, + ACTIONS(4921), 1, aux_sym_host_token2, - ACTIONS(4886), 1, + ACTIONS(4923), 1, anon_sym_EQ, - [7691] = 3, - ACTIONS(3866), 1, + [7768] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4646), 1, + ACTIONS(4587), 1, aux_sym_pattern_token1, STATE(186), 1, - sym_gssapi_server_identity_value, - [7701] = 3, - ACTIONS(3866), 1, + sym_gssapi_kex_algorithms_value, + [7778] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(4499), 1, aux_sym_pattern_token1, - STATE(163), 1, + STATE(165), 1, sym_macs_value, - [7711] = 3, - ACTIONS(3866), 1, + [7788] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4890), 1, + ACTIONS(4925), 1, aux_sym_host_token2, - ACTIONS(4892), 1, + ACTIONS(4927), 1, anon_sym_EQ, - [7721] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4894), 1, - aux_sym_pattern_token1, - STATE(54), 1, - sym_local_forward_value, - [7731] = 3, - ACTIONS(3866), 1, + [7798] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4754), 1, + ACTIONS(4505), 1, aux_sym_pattern_token1, - STATE(184), 1, - sym_gssapi_kex_algorithms_value, - [7741] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4896), 1, - aux_sym_pattern_token1, - STATE(164), 1, + STATE(166), 1, sym_log_verbose_value, - [7751] = 3, - ACTIONS(3866), 1, + [7808] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4898), 1, + ACTIONS(4929), 1, aux_sym_host_token2, - ACTIONS(4900), 1, + ACTIONS(4931), 1, anon_sym_EQ, - [7761] = 3, - ACTIONS(3866), 1, + [7818] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4902), 1, + ACTIONS(4933), 1, aux_sym_host_token2, - ACTIONS(4904), 1, + ACTIONS(4935), 1, anon_sym_EQ, - [7771] = 3, - ACTIONS(3866), 1, + [7828] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4766), 1, + ACTIONS(4581), 1, aux_sym_pattern_token1, - STATE(182), 1, + STATE(184), 1, sym_hostbased_accepted_algorithms_value, - [7781] = 3, - ACTIONS(3866), 1, + [7838] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4894), 1, - aux_sym_pattern_token1, - STATE(166), 1, - sym_local_forward_value, - [7791] = 3, - ACTIONS(3866), 1, - sym_comment, - ACTIONS(4896), 1, - aux_sym_pattern_token1, - STATE(52), 1, - sym_log_verbose_value, - [7801] = 3, - ACTIONS(3866), 1, + ACTIONS(4937), 1, + aux_sym_host_token2, + ACTIONS(4939), 1, + anon_sym_EQ, + [7848] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4882), 1, + ACTIONS(4511), 1, aux_sym_pattern_token1, - STATE(167), 1, - sym_local_command_value, - [7811] = 3, - ACTIONS(3866), 1, + STATE(168), 1, + sym_local_forward_value, + [7858] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4906), 1, + ACTIONS(4941), 1, aux_sym_host_token2, - ACTIONS(4908), 1, + ACTIONS(4943), 1, anon_sym_EQ, - [7821] = 3, - ACTIONS(3866), 1, + [7868] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_host_token2, - ACTIONS(4912), 1, - anon_sym_EQ, - [7831] = 3, - ACTIONS(3866), 1, + ACTIONS(4517), 1, + aux_sym_pattern_token1, + STATE(169), 1, + sym_local_command_value, + [7878] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4914), 1, + ACTIONS(4945), 1, aux_sym_host_token2, - ACTIONS(4916), 1, + ACTIONS(4947), 1, anon_sym_EQ, - [7841] = 3, - ACTIONS(3866), 1, + [7888] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4872), 1, + ACTIONS(4523), 1, aux_sym_pattern_token1, - STATE(168), 1, + STATE(170), 1, sym_known_hosts_command_value, - [7851] = 3, - ACTIONS(3866), 1, + [7898] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4888), 1, - aux_sym_pattern_token1, - STATE(51), 1, - sym_macs_value, - [7861] = 3, - ACTIONS(3866), 1, + ACTIONS(4949), 1, + aux_sym_host_token2, + ACTIONS(4951), 1, + anon_sym_EQ, + [7908] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4866), 1, + ACTIONS(4529), 1, aux_sym_pattern_token1, - STATE(169), 1, + STATE(171), 1, sym_kex_algorithms_value, - [7871] = 3, - ACTIONS(3866), 1, + [7918] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4918), 1, + ACTIONS(4953), 1, aux_sym_host_token2, - ACTIONS(4920), 1, + ACTIONS(4955), 1, anon_sym_EQ, - [7881] = 3, - ACTIONS(3866), 1, + [7928] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4852), 1, + ACTIONS(4535), 1, aux_sym_pattern_token1, - STATE(170), 1, + STATE(172), 1, sym_kbd_interactive_devices_value, - [7891] = 3, - ACTIONS(3866), 1, + [7938] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4957), 1, aux_sym_host_token2, - ACTIONS(4924), 1, + ACTIONS(4959), 1, anon_sym_EQ, - [7901] = 3, - ACTIONS(3866), 1, + [7948] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4834), 1, + ACTIONS(4541), 1, aux_sym_pattern_token1, - STATE(173), 1, + STATE(175), 1, sym_include_value, - [7911] = 3, - ACTIONS(3), 1, + [7958] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4166), 1, - sym_number, - STATE(49), 1, - sym_number_of_password_prompts_value, - [7921] = 3, - ACTIONS(3866), 1, + ACTIONS(4961), 1, + aux_sym_host_token2, + ACTIONS(4963), 1, + anon_sym_EQ, + [7968] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4828), 1, + ACTIONS(4547), 1, aux_sym_pattern_token1, - STATE(174), 1, + STATE(176), 1, sym_ignore_unknown_value, - [7931] = 3, - ACTIONS(3866), 1, + [7978] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4926), 1, + ACTIONS(4965), 1, aux_sym_host_token2, - ACTIONS(4928), 1, + ACTIONS(4967), 1, anon_sym_EQ, - [7941] = 3, - ACTIONS(3866), 1, + [7988] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4822), 1, + ACTIONS(4553), 1, aux_sym_pattern_token1, - STATE(175), 1, + STATE(10), 1, sym_identity_file_value, - [7951] = 3, - ACTIONS(3866), 1, + [7998] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4930), 1, + ACTIONS(4969), 1, aux_sym_host_token2, - ACTIONS(4932), 1, + ACTIONS(4971), 1, anon_sym_EQ, - [7961] = 3, - ACTIONS(3866), 1, + [8008] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4812), 1, + ACTIONS(4559), 1, aux_sym_pattern_token1, - STATE(176), 1, + STATE(178), 1, sym_identity_agent_value, - [7971] = 2, - ACTIONS(3), 1, + [8018] = 3, + ACTIONS(3901), 1, sym_comment, - ACTIONS(4934), 1, + ACTIONS(4973), 1, + aux_sym_host_token2, + ACTIONS(4975), 1, anon_sym_EQ, - [7978] = 2, + [8028] = 3, + ACTIONS(3901), 1, + sym_comment, + ACTIONS(4791), 1, + aux_sym_pattern_token1, + STATE(180), 1, + sym_hostname_value, + [8038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4977), 1, + ts_builtin_sym_end, + [8045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4936), 1, + ACTIONS(4979), 1, anon_sym_EQ, - [7985] = 2, + [8052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4938), 1, - sym_time_format, - [7992] = 2, + ACTIONS(4981), 1, + anon_sym_EQ, + [8059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4940), 1, - ts_builtin_sym_end, + ACTIONS(4983), 1, + sym_time_format, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(798)] = 0, - [SMALL_STATE(799)] = 42, - [SMALL_STATE(800)] = 81, - [SMALL_STATE(801)] = 117, - [SMALL_STATE(802)] = 153, - [SMALL_STATE(803)] = 179, - [SMALL_STATE(804)] = 202, - [SMALL_STATE(805)] = 222, - [SMALL_STATE(806)] = 248, - [SMALL_STATE(807)] = 268, - [SMALL_STATE(808)] = 294, - [SMALL_STATE(809)] = 317, - [SMALL_STATE(810)] = 340, - [SMALL_STATE(811)] = 360, - [SMALL_STATE(812)] = 382, - [SMALL_STATE(813)] = 402, - [SMALL_STATE(814)] = 426, - [SMALL_STATE(815)] = 446, - [SMALL_STATE(816)] = 466, - [SMALL_STATE(817)] = 487, - [SMALL_STATE(818)] = 508, - [SMALL_STATE(819)] = 527, - [SMALL_STATE(820)] = 548, - [SMALL_STATE(821)] = 571, - [SMALL_STATE(822)] = 596, - [SMALL_STATE(823)] = 618, - [SMALL_STATE(824)] = 640, - [SMALL_STATE(825)] = 662, - [SMALL_STATE(826)] = 684, - [SMALL_STATE(827)] = 706, - [SMALL_STATE(828)] = 728, - [SMALL_STATE(829)] = 750, - [SMALL_STATE(830)] = 772, - [SMALL_STATE(831)] = 790, - [SMALL_STATE(832)] = 812, - [SMALL_STATE(833)] = 834, - [SMALL_STATE(834)] = 856, - [SMALL_STATE(835)] = 874, - [SMALL_STATE(836)] = 896, - [SMALL_STATE(837)] = 916, - [SMALL_STATE(838)] = 938, - [SMALL_STATE(839)] = 960, - [SMALL_STATE(840)] = 982, - [SMALL_STATE(841)] = 1004, - [SMALL_STATE(842)] = 1024, - [SMALL_STATE(843)] = 1046, - [SMALL_STATE(844)] = 1064, - [SMALL_STATE(845)] = 1086, - [SMALL_STATE(846)] = 1108, - [SMALL_STATE(847)] = 1130, - [SMALL_STATE(848)] = 1152, - [SMALL_STATE(849)] = 1174, - [SMALL_STATE(850)] = 1196, - [SMALL_STATE(851)] = 1218, - [SMALL_STATE(852)] = 1240, - [SMALL_STATE(853)] = 1262, - [SMALL_STATE(854)] = 1284, - [SMALL_STATE(855)] = 1306, - [SMALL_STATE(856)] = 1328, - [SMALL_STATE(857)] = 1344, - [SMALL_STATE(858)] = 1366, - [SMALL_STATE(859)] = 1382, - [SMALL_STATE(860)] = 1400, - [SMALL_STATE(861)] = 1422, - [SMALL_STATE(862)] = 1444, - [SMALL_STATE(863)] = 1466, - [SMALL_STATE(864)] = 1488, - [SMALL_STATE(865)] = 1510, - [SMALL_STATE(866)] = 1530, - [SMALL_STATE(867)] = 1547, - [SMALL_STATE(868)] = 1566, - [SMALL_STATE(869)] = 1583, - [SMALL_STATE(870)] = 1598, - [SMALL_STATE(871)] = 1617, - [SMALL_STATE(872)] = 1636, - [SMALL_STATE(873)] = 1655, - [SMALL_STATE(874)] = 1674, - [SMALL_STATE(875)] = 1693, - [SMALL_STATE(876)] = 1712, - [SMALL_STATE(877)] = 1731, - [SMALL_STATE(878)] = 1750, - [SMALL_STATE(879)] = 1769, - [SMALL_STATE(880)] = 1788, - [SMALL_STATE(881)] = 1807, - [SMALL_STATE(882)] = 1826, - [SMALL_STATE(883)] = 1845, - [SMALL_STATE(884)] = 1860, - [SMALL_STATE(885)] = 1879, - [SMALL_STATE(886)] = 1898, - [SMALL_STATE(887)] = 1917, - [SMALL_STATE(888)] = 1936, - [SMALL_STATE(889)] = 1953, - [SMALL_STATE(890)] = 1972, - [SMALL_STATE(891)] = 1991, - [SMALL_STATE(892)] = 2010, - [SMALL_STATE(893)] = 2029, - [SMALL_STATE(894)] = 2048, - [SMALL_STATE(895)] = 2067, - [SMALL_STATE(896)] = 2086, - [SMALL_STATE(897)] = 2105, - [SMALL_STATE(898)] = 2124, - [SMALL_STATE(899)] = 2143, - [SMALL_STATE(900)] = 2162, - [SMALL_STATE(901)] = 2181, - [SMALL_STATE(902)] = 2198, - [SMALL_STATE(903)] = 2217, - [SMALL_STATE(904)] = 2232, - [SMALL_STATE(905)] = 2251, - [SMALL_STATE(906)] = 2270, - [SMALL_STATE(907)] = 2289, - [SMALL_STATE(908)] = 2308, - [SMALL_STATE(909)] = 2327, - [SMALL_STATE(910)] = 2346, - [SMALL_STATE(911)] = 2361, - [SMALL_STATE(912)] = 2377, - [SMALL_STATE(913)] = 2393, - [SMALL_STATE(914)] = 2409, - [SMALL_STATE(915)] = 2425, - [SMALL_STATE(916)] = 2441, - [SMALL_STATE(917)] = 2457, - [SMALL_STATE(918)] = 2473, - [SMALL_STATE(919)] = 2489, - [SMALL_STATE(920)] = 2505, - [SMALL_STATE(921)] = 2521, - [SMALL_STATE(922)] = 2537, - [SMALL_STATE(923)] = 2553, - [SMALL_STATE(924)] = 2569, - [SMALL_STATE(925)] = 2585, - [SMALL_STATE(926)] = 2601, - [SMALL_STATE(927)] = 2617, - [SMALL_STATE(928)] = 2633, - [SMALL_STATE(929)] = 2649, - [SMALL_STATE(930)] = 2665, - [SMALL_STATE(931)] = 2681, - [SMALL_STATE(932)] = 2697, - [SMALL_STATE(933)] = 2713, - [SMALL_STATE(934)] = 2729, - [SMALL_STATE(935)] = 2745, - [SMALL_STATE(936)] = 2761, - [SMALL_STATE(937)] = 2777, - [SMALL_STATE(938)] = 2793, - [SMALL_STATE(939)] = 2809, - [SMALL_STATE(940)] = 2825, - [SMALL_STATE(941)] = 2841, - [SMALL_STATE(942)] = 2855, - [SMALL_STATE(943)] = 2871, - [SMALL_STATE(944)] = 2891, - [SMALL_STATE(945)] = 2907, - [SMALL_STATE(946)] = 2923, - [SMALL_STATE(947)] = 2939, - [SMALL_STATE(948)] = 2955, - [SMALL_STATE(949)] = 2971, - [SMALL_STATE(950)] = 2987, - [SMALL_STATE(951)] = 3001, - [SMALL_STATE(952)] = 3017, - [SMALL_STATE(953)] = 3033, - [SMALL_STATE(954)] = 3049, - [SMALL_STATE(955)] = 3065, - [SMALL_STATE(956)] = 3079, - [SMALL_STATE(957)] = 3095, - [SMALL_STATE(958)] = 3111, - [SMALL_STATE(959)] = 3127, - [SMALL_STATE(960)] = 3143, - [SMALL_STATE(961)] = 3159, - [SMALL_STATE(962)] = 3175, - [SMALL_STATE(963)] = 3191, - [SMALL_STATE(964)] = 3207, - [SMALL_STATE(965)] = 3223, - [SMALL_STATE(966)] = 3239, - [SMALL_STATE(967)] = 3255, - [SMALL_STATE(968)] = 3271, - [SMALL_STATE(969)] = 3287, - [SMALL_STATE(970)] = 3303, - [SMALL_STATE(971)] = 3319, - [SMALL_STATE(972)] = 3335, - [SMALL_STATE(973)] = 3351, - [SMALL_STATE(974)] = 3367, - [SMALL_STATE(975)] = 3383, - [SMALL_STATE(976)] = 3399, - [SMALL_STATE(977)] = 3415, - [SMALL_STATE(978)] = 3429, - [SMALL_STATE(979)] = 3445, - [SMALL_STATE(980)] = 3461, - [SMALL_STATE(981)] = 3477, - [SMALL_STATE(982)] = 3493, - [SMALL_STATE(983)] = 3511, - [SMALL_STATE(984)] = 3527, - [SMALL_STATE(985)] = 3543, - [SMALL_STATE(986)] = 3559, - [SMALL_STATE(987)] = 3576, - [SMALL_STATE(988)] = 3593, - [SMALL_STATE(989)] = 3610, - [SMALL_STATE(990)] = 3629, - [SMALL_STATE(991)] = 3646, - [SMALL_STATE(992)] = 3659, - [SMALL_STATE(993)] = 3678, - [SMALL_STATE(994)] = 3693, - [SMALL_STATE(995)] = 3706, - [SMALL_STATE(996)] = 3722, - [SMALL_STATE(997)] = 3738, - [SMALL_STATE(998)] = 3752, - [SMALL_STATE(999)] = 3766, - [SMALL_STATE(1000)] = 3782, - [SMALL_STATE(1001)] = 3796, - [SMALL_STATE(1002)] = 3812, - [SMALL_STATE(1003)] = 3824, - [SMALL_STATE(1004)] = 3840, - [SMALL_STATE(1005)] = 3856, - [SMALL_STATE(1006)] = 3872, - [SMALL_STATE(1007)] = 3888, - [SMALL_STATE(1008)] = 3904, - [SMALL_STATE(1009)] = 3916, - [SMALL_STATE(1010)] = 3932, - [SMALL_STATE(1011)] = 3948, - [SMALL_STATE(1012)] = 3964, - [SMALL_STATE(1013)] = 3978, - [SMALL_STATE(1014)] = 3994, - [SMALL_STATE(1015)] = 4010, - [SMALL_STATE(1016)] = 4026, - [SMALL_STATE(1017)] = 4042, - [SMALL_STATE(1018)] = 4058, - [SMALL_STATE(1019)] = 4072, - [SMALL_STATE(1020)] = 4088, - [SMALL_STATE(1021)] = 4104, - [SMALL_STATE(1022)] = 4120, - [SMALL_STATE(1023)] = 4136, - [SMALL_STATE(1024)] = 4152, - [SMALL_STATE(1025)] = 4168, - [SMALL_STATE(1026)] = 4184, - [SMALL_STATE(1027)] = 4200, - [SMALL_STATE(1028)] = 4216, - [SMALL_STATE(1029)] = 4232, - [SMALL_STATE(1030)] = 4248, - [SMALL_STATE(1031)] = 4264, - [SMALL_STATE(1032)] = 4280, - [SMALL_STATE(1033)] = 4296, - [SMALL_STATE(1034)] = 4312, - [SMALL_STATE(1035)] = 4328, - [SMALL_STATE(1036)] = 4344, - [SMALL_STATE(1037)] = 4360, - [SMALL_STATE(1038)] = 4376, - [SMALL_STATE(1039)] = 4392, - [SMALL_STATE(1040)] = 4408, - [SMALL_STATE(1041)] = 4424, - [SMALL_STATE(1042)] = 4440, - [SMALL_STATE(1043)] = 4456, - [SMALL_STATE(1044)] = 4472, - [SMALL_STATE(1045)] = 4488, - [SMALL_STATE(1046)] = 4504, - [SMALL_STATE(1047)] = 4520, - [SMALL_STATE(1048)] = 4536, - [SMALL_STATE(1049)] = 4552, - [SMALL_STATE(1050)] = 4568, - [SMALL_STATE(1051)] = 4584, - [SMALL_STATE(1052)] = 4600, - [SMALL_STATE(1053)] = 4616, - [SMALL_STATE(1054)] = 4632, - [SMALL_STATE(1055)] = 4648, - [SMALL_STATE(1056)] = 4664, - [SMALL_STATE(1057)] = 4680, - [SMALL_STATE(1058)] = 4696, - [SMALL_STATE(1059)] = 4712, - [SMALL_STATE(1060)] = 4728, - [SMALL_STATE(1061)] = 4744, - [SMALL_STATE(1062)] = 4760, - [SMALL_STATE(1063)] = 4776, - [SMALL_STATE(1064)] = 4789, - [SMALL_STATE(1065)] = 4800, - [SMALL_STATE(1066)] = 4813, - [SMALL_STATE(1067)] = 4826, - [SMALL_STATE(1068)] = 4839, - [SMALL_STATE(1069)] = 4852, - [SMALL_STATE(1070)] = 4865, - [SMALL_STATE(1071)] = 4878, - [SMALL_STATE(1072)] = 4891, - [SMALL_STATE(1073)] = 4904, - [SMALL_STATE(1074)] = 4917, - [SMALL_STATE(1075)] = 4930, - [SMALL_STATE(1076)] = 4943, - [SMALL_STATE(1077)] = 4956, - [SMALL_STATE(1078)] = 4969, - [SMALL_STATE(1079)] = 4982, - [SMALL_STATE(1080)] = 4995, - [SMALL_STATE(1081)] = 5008, - [SMALL_STATE(1082)] = 5021, - [SMALL_STATE(1083)] = 5034, - [SMALL_STATE(1084)] = 5047, - [SMALL_STATE(1085)] = 5060, - [SMALL_STATE(1086)] = 5073, - [SMALL_STATE(1087)] = 5086, - [SMALL_STATE(1088)] = 5099, - [SMALL_STATE(1089)] = 5110, - [SMALL_STATE(1090)] = 5123, - [SMALL_STATE(1091)] = 5136, - [SMALL_STATE(1092)] = 5149, - [SMALL_STATE(1093)] = 5162, - [SMALL_STATE(1094)] = 5175, - [SMALL_STATE(1095)] = 5188, - [SMALL_STATE(1096)] = 5199, - [SMALL_STATE(1097)] = 5212, - [SMALL_STATE(1098)] = 5223, - [SMALL_STATE(1099)] = 5236, - [SMALL_STATE(1100)] = 5249, - [SMALL_STATE(1101)] = 5262, - [SMALL_STATE(1102)] = 5275, - [SMALL_STATE(1103)] = 5288, - [SMALL_STATE(1104)] = 5301, - [SMALL_STATE(1105)] = 5314, - [SMALL_STATE(1106)] = 5327, - [SMALL_STATE(1107)] = 5340, - [SMALL_STATE(1108)] = 5353, - [SMALL_STATE(1109)] = 5366, - [SMALL_STATE(1110)] = 5379, - [SMALL_STATE(1111)] = 5392, - [SMALL_STATE(1112)] = 5405, - [SMALL_STATE(1113)] = 5418, - [SMALL_STATE(1114)] = 5431, - [SMALL_STATE(1115)] = 5444, - [SMALL_STATE(1116)] = 5457, - [SMALL_STATE(1117)] = 5470, - [SMALL_STATE(1118)] = 5483, - [SMALL_STATE(1119)] = 5496, - [SMALL_STATE(1120)] = 5509, - [SMALL_STATE(1121)] = 5522, - [SMALL_STATE(1122)] = 5535, - [SMALL_STATE(1123)] = 5548, - [SMALL_STATE(1124)] = 5561, - [SMALL_STATE(1125)] = 5574, - [SMALL_STATE(1126)] = 5587, - [SMALL_STATE(1127)] = 5600, - [SMALL_STATE(1128)] = 5613, - [SMALL_STATE(1129)] = 5626, - [SMALL_STATE(1130)] = 5639, - [SMALL_STATE(1131)] = 5650, - [SMALL_STATE(1132)] = 5661, - [SMALL_STATE(1133)] = 5671, - [SMALL_STATE(1134)] = 5681, - [SMALL_STATE(1135)] = 5691, - [SMALL_STATE(1136)] = 5701, - [SMALL_STATE(1137)] = 5711, - [SMALL_STATE(1138)] = 5721, - [SMALL_STATE(1139)] = 5731, - [SMALL_STATE(1140)] = 5741, - [SMALL_STATE(1141)] = 5751, - [SMALL_STATE(1142)] = 5761, - [SMALL_STATE(1143)] = 5771, - [SMALL_STATE(1144)] = 5781, - [SMALL_STATE(1145)] = 5791, - [SMALL_STATE(1146)] = 5801, - [SMALL_STATE(1147)] = 5811, - [SMALL_STATE(1148)] = 5821, - [SMALL_STATE(1149)] = 5831, - [SMALL_STATE(1150)] = 5841, - [SMALL_STATE(1151)] = 5851, - [SMALL_STATE(1152)] = 5861, - [SMALL_STATE(1153)] = 5871, - [SMALL_STATE(1154)] = 5881, - [SMALL_STATE(1155)] = 5891, - [SMALL_STATE(1156)] = 5901, - [SMALL_STATE(1157)] = 5911, - [SMALL_STATE(1158)] = 5921, - [SMALL_STATE(1159)] = 5931, - [SMALL_STATE(1160)] = 5941, - [SMALL_STATE(1161)] = 5951, - [SMALL_STATE(1162)] = 5961, - [SMALL_STATE(1163)] = 5971, - [SMALL_STATE(1164)] = 5981, - [SMALL_STATE(1165)] = 5991, - [SMALL_STATE(1166)] = 6001, - [SMALL_STATE(1167)] = 6011, - [SMALL_STATE(1168)] = 6021, - [SMALL_STATE(1169)] = 6031, - [SMALL_STATE(1170)] = 6041, - [SMALL_STATE(1171)] = 6051, - [SMALL_STATE(1172)] = 6061, - [SMALL_STATE(1173)] = 6071, - [SMALL_STATE(1174)] = 6081, - [SMALL_STATE(1175)] = 6091, - [SMALL_STATE(1176)] = 6101, - [SMALL_STATE(1177)] = 6111, - [SMALL_STATE(1178)] = 6121, - [SMALL_STATE(1179)] = 6131, - [SMALL_STATE(1180)] = 6141, - [SMALL_STATE(1181)] = 6151, - [SMALL_STATE(1182)] = 6161, - [SMALL_STATE(1183)] = 6171, - [SMALL_STATE(1184)] = 6181, - [SMALL_STATE(1185)] = 6191, - [SMALL_STATE(1186)] = 6201, - [SMALL_STATE(1187)] = 6211, - [SMALL_STATE(1188)] = 6221, - [SMALL_STATE(1189)] = 6231, - [SMALL_STATE(1190)] = 6241, - [SMALL_STATE(1191)] = 6251, - [SMALL_STATE(1192)] = 6261, - [SMALL_STATE(1193)] = 6271, - [SMALL_STATE(1194)] = 6281, - [SMALL_STATE(1195)] = 6291, - [SMALL_STATE(1196)] = 6301, - [SMALL_STATE(1197)] = 6311, - [SMALL_STATE(1198)] = 6321, - [SMALL_STATE(1199)] = 6331, - [SMALL_STATE(1200)] = 6341, - [SMALL_STATE(1201)] = 6351, - [SMALL_STATE(1202)] = 6361, - [SMALL_STATE(1203)] = 6371, - [SMALL_STATE(1204)] = 6381, - [SMALL_STATE(1205)] = 6391, - [SMALL_STATE(1206)] = 6401, - [SMALL_STATE(1207)] = 6411, - [SMALL_STATE(1208)] = 6421, - [SMALL_STATE(1209)] = 6431, - [SMALL_STATE(1210)] = 6441, - [SMALL_STATE(1211)] = 6451, - [SMALL_STATE(1212)] = 6461, - [SMALL_STATE(1213)] = 6471, - [SMALL_STATE(1214)] = 6481, - [SMALL_STATE(1215)] = 6491, - [SMALL_STATE(1216)] = 6501, - [SMALL_STATE(1217)] = 6511, - [SMALL_STATE(1218)] = 6521, - [SMALL_STATE(1219)] = 6531, - [SMALL_STATE(1220)] = 6541, - [SMALL_STATE(1221)] = 6551, - [SMALL_STATE(1222)] = 6561, - [SMALL_STATE(1223)] = 6571, - [SMALL_STATE(1224)] = 6581, - [SMALL_STATE(1225)] = 6591, - [SMALL_STATE(1226)] = 6601, - [SMALL_STATE(1227)] = 6611, - [SMALL_STATE(1228)] = 6621, - [SMALL_STATE(1229)] = 6631, - [SMALL_STATE(1230)] = 6641, - [SMALL_STATE(1231)] = 6651, - [SMALL_STATE(1232)] = 6661, - [SMALL_STATE(1233)] = 6671, - [SMALL_STATE(1234)] = 6681, - [SMALL_STATE(1235)] = 6691, - [SMALL_STATE(1236)] = 6701, - [SMALL_STATE(1237)] = 6711, - [SMALL_STATE(1238)] = 6721, - [SMALL_STATE(1239)] = 6731, - [SMALL_STATE(1240)] = 6741, - [SMALL_STATE(1241)] = 6751, - [SMALL_STATE(1242)] = 6761, - [SMALL_STATE(1243)] = 6771, - [SMALL_STATE(1244)] = 6781, - [SMALL_STATE(1245)] = 6791, - [SMALL_STATE(1246)] = 6801, - [SMALL_STATE(1247)] = 6811, - [SMALL_STATE(1248)] = 6821, - [SMALL_STATE(1249)] = 6831, - [SMALL_STATE(1250)] = 6841, - [SMALL_STATE(1251)] = 6851, - [SMALL_STATE(1252)] = 6861, - [SMALL_STATE(1253)] = 6871, - [SMALL_STATE(1254)] = 6881, - [SMALL_STATE(1255)] = 6891, - [SMALL_STATE(1256)] = 6901, - [SMALL_STATE(1257)] = 6911, - [SMALL_STATE(1258)] = 6921, - [SMALL_STATE(1259)] = 6931, - [SMALL_STATE(1260)] = 6941, - [SMALL_STATE(1261)] = 6951, - [SMALL_STATE(1262)] = 6961, - [SMALL_STATE(1263)] = 6971, - [SMALL_STATE(1264)] = 6981, - [SMALL_STATE(1265)] = 6991, - [SMALL_STATE(1266)] = 7001, - [SMALL_STATE(1267)] = 7011, - [SMALL_STATE(1268)] = 7021, - [SMALL_STATE(1269)] = 7031, - [SMALL_STATE(1270)] = 7041, - [SMALL_STATE(1271)] = 7051, - [SMALL_STATE(1272)] = 7061, - [SMALL_STATE(1273)] = 7071, - [SMALL_STATE(1274)] = 7081, - [SMALL_STATE(1275)] = 7091, - [SMALL_STATE(1276)] = 7101, - [SMALL_STATE(1277)] = 7111, - [SMALL_STATE(1278)] = 7121, - [SMALL_STATE(1279)] = 7131, - [SMALL_STATE(1280)] = 7141, - [SMALL_STATE(1281)] = 7151, - [SMALL_STATE(1282)] = 7161, - [SMALL_STATE(1283)] = 7171, - [SMALL_STATE(1284)] = 7181, - [SMALL_STATE(1285)] = 7191, - [SMALL_STATE(1286)] = 7201, - [SMALL_STATE(1287)] = 7211, - [SMALL_STATE(1288)] = 7221, - [SMALL_STATE(1289)] = 7231, - [SMALL_STATE(1290)] = 7241, - [SMALL_STATE(1291)] = 7251, - [SMALL_STATE(1292)] = 7261, - [SMALL_STATE(1293)] = 7271, - [SMALL_STATE(1294)] = 7281, - [SMALL_STATE(1295)] = 7291, - [SMALL_STATE(1296)] = 7301, - [SMALL_STATE(1297)] = 7311, - [SMALL_STATE(1298)] = 7321, - [SMALL_STATE(1299)] = 7331, - [SMALL_STATE(1300)] = 7341, - [SMALL_STATE(1301)] = 7351, - [SMALL_STATE(1302)] = 7361, - [SMALL_STATE(1303)] = 7371, - [SMALL_STATE(1304)] = 7381, - [SMALL_STATE(1305)] = 7391, - [SMALL_STATE(1306)] = 7401, - [SMALL_STATE(1307)] = 7411, - [SMALL_STATE(1308)] = 7421, - [SMALL_STATE(1309)] = 7431, - [SMALL_STATE(1310)] = 7441, - [SMALL_STATE(1311)] = 7451, - [SMALL_STATE(1312)] = 7461, - [SMALL_STATE(1313)] = 7471, - [SMALL_STATE(1314)] = 7481, - [SMALL_STATE(1315)] = 7491, - [SMALL_STATE(1316)] = 7501, - [SMALL_STATE(1317)] = 7511, - [SMALL_STATE(1318)] = 7521, - [SMALL_STATE(1319)] = 7531, - [SMALL_STATE(1320)] = 7541, - [SMALL_STATE(1321)] = 7551, - [SMALL_STATE(1322)] = 7561, - [SMALL_STATE(1323)] = 7571, - [SMALL_STATE(1324)] = 7581, - [SMALL_STATE(1325)] = 7591, - [SMALL_STATE(1326)] = 7601, - [SMALL_STATE(1327)] = 7611, - [SMALL_STATE(1328)] = 7621, - [SMALL_STATE(1329)] = 7631, - [SMALL_STATE(1330)] = 7641, - [SMALL_STATE(1331)] = 7651, - [SMALL_STATE(1332)] = 7661, - [SMALL_STATE(1333)] = 7671, - [SMALL_STATE(1334)] = 7681, - [SMALL_STATE(1335)] = 7691, - [SMALL_STATE(1336)] = 7701, - [SMALL_STATE(1337)] = 7711, - [SMALL_STATE(1338)] = 7721, - [SMALL_STATE(1339)] = 7731, - [SMALL_STATE(1340)] = 7741, - [SMALL_STATE(1341)] = 7751, - [SMALL_STATE(1342)] = 7761, - [SMALL_STATE(1343)] = 7771, - [SMALL_STATE(1344)] = 7781, - [SMALL_STATE(1345)] = 7791, - [SMALL_STATE(1346)] = 7801, - [SMALL_STATE(1347)] = 7811, - [SMALL_STATE(1348)] = 7821, - [SMALL_STATE(1349)] = 7831, - [SMALL_STATE(1350)] = 7841, - [SMALL_STATE(1351)] = 7851, - [SMALL_STATE(1352)] = 7861, - [SMALL_STATE(1353)] = 7871, - [SMALL_STATE(1354)] = 7881, - [SMALL_STATE(1355)] = 7891, - [SMALL_STATE(1356)] = 7901, - [SMALL_STATE(1357)] = 7911, - [SMALL_STATE(1358)] = 7921, - [SMALL_STATE(1359)] = 7931, - [SMALL_STATE(1360)] = 7941, - [SMALL_STATE(1361)] = 7951, - [SMALL_STATE(1362)] = 7961, - [SMALL_STATE(1363)] = 7971, - [SMALL_STATE(1364)] = 7978, - [SMALL_STATE(1365)] = 7985, - [SMALL_STATE(1366)] = 7992, + [SMALL_STATE(805)] = 0, + [SMALL_STATE(806)] = 42, + [SMALL_STATE(807)] = 81, + [SMALL_STATE(808)] = 117, + [SMALL_STATE(809)] = 153, + [SMALL_STATE(810)] = 179, + [SMALL_STATE(811)] = 202, + [SMALL_STATE(812)] = 222, + [SMALL_STATE(813)] = 248, + [SMALL_STATE(814)] = 268, + [SMALL_STATE(815)] = 294, + [SMALL_STATE(816)] = 317, + [SMALL_STATE(817)] = 340, + [SMALL_STATE(818)] = 360, + [SMALL_STATE(819)] = 380, + [SMALL_STATE(820)] = 400, + [SMALL_STATE(821)] = 422, + [SMALL_STATE(822)] = 442, + [SMALL_STATE(823)] = 466, + [SMALL_STATE(824)] = 489, + [SMALL_STATE(825)] = 514, + [SMALL_STATE(826)] = 535, + [SMALL_STATE(827)] = 556, + [SMALL_STATE(828)] = 577, + [SMALL_STATE(829)] = 596, + [SMALL_STATE(830)] = 618, + [SMALL_STATE(831)] = 640, + [SMALL_STATE(832)] = 662, + [SMALL_STATE(833)] = 684, + [SMALL_STATE(834)] = 704, + [SMALL_STATE(835)] = 726, + [SMALL_STATE(836)] = 748, + [SMALL_STATE(837)] = 770, + [SMALL_STATE(838)] = 792, + [SMALL_STATE(839)] = 814, + [SMALL_STATE(840)] = 836, + [SMALL_STATE(841)] = 858, + [SMALL_STATE(842)] = 880, + [SMALL_STATE(843)] = 902, + [SMALL_STATE(844)] = 924, + [SMALL_STATE(845)] = 944, + [SMALL_STATE(846)] = 966, + [SMALL_STATE(847)] = 982, + [SMALL_STATE(848)] = 1004, + [SMALL_STATE(849)] = 1026, + [SMALL_STATE(850)] = 1048, + [SMALL_STATE(851)] = 1070, + [SMALL_STATE(852)] = 1092, + [SMALL_STATE(853)] = 1114, + [SMALL_STATE(854)] = 1132, + [SMALL_STATE(855)] = 1154, + [SMALL_STATE(856)] = 1170, + [SMALL_STATE(857)] = 1192, + [SMALL_STATE(858)] = 1214, + [SMALL_STATE(859)] = 1236, + [SMALL_STATE(860)] = 1258, + [SMALL_STATE(861)] = 1278, + [SMALL_STATE(862)] = 1300, + [SMALL_STATE(863)] = 1318, + [SMALL_STATE(864)] = 1340, + [SMALL_STATE(865)] = 1362, + [SMALL_STATE(866)] = 1380, + [SMALL_STATE(867)] = 1402, + [SMALL_STATE(868)] = 1424, + [SMALL_STATE(869)] = 1442, + [SMALL_STATE(870)] = 1464, + [SMALL_STATE(871)] = 1486, + [SMALL_STATE(872)] = 1508, + [SMALL_STATE(873)] = 1530, + [SMALL_STATE(874)] = 1549, + [SMALL_STATE(875)] = 1568, + [SMALL_STATE(876)] = 1587, + [SMALL_STATE(877)] = 1606, + [SMALL_STATE(878)] = 1625, + [SMALL_STATE(879)] = 1644, + [SMALL_STATE(880)] = 1663, + [SMALL_STATE(881)] = 1682, + [SMALL_STATE(882)] = 1701, + [SMALL_STATE(883)] = 1720, + [SMALL_STATE(884)] = 1739, + [SMALL_STATE(885)] = 1758, + [SMALL_STATE(886)] = 1777, + [SMALL_STATE(887)] = 1796, + [SMALL_STATE(888)] = 1815, + [SMALL_STATE(889)] = 1834, + [SMALL_STATE(890)] = 1853, + [SMALL_STATE(891)] = 1872, + [SMALL_STATE(892)] = 1887, + [SMALL_STATE(893)] = 1906, + [SMALL_STATE(894)] = 1925, + [SMALL_STATE(895)] = 1940, + [SMALL_STATE(896)] = 1959, + [SMALL_STATE(897)] = 1978, + [SMALL_STATE(898)] = 1997, + [SMALL_STATE(899)] = 2016, + [SMALL_STATE(900)] = 2035, + [SMALL_STATE(901)] = 2054, + [SMALL_STATE(902)] = 2073, + [SMALL_STATE(903)] = 2092, + [SMALL_STATE(904)] = 2109, + [SMALL_STATE(905)] = 2126, + [SMALL_STATE(906)] = 2145, + [SMALL_STATE(907)] = 2164, + [SMALL_STATE(908)] = 2183, + [SMALL_STATE(909)] = 2202, + [SMALL_STATE(910)] = 2219, + [SMALL_STATE(911)] = 2238, + [SMALL_STATE(912)] = 2257, + [SMALL_STATE(913)] = 2276, + [SMALL_STATE(914)] = 2291, + [SMALL_STATE(915)] = 2308, + [SMALL_STATE(916)] = 2327, + [SMALL_STATE(917)] = 2342, + [SMALL_STATE(918)] = 2361, + [SMALL_STATE(919)] = 2377, + [SMALL_STATE(920)] = 2393, + [SMALL_STATE(921)] = 2409, + [SMALL_STATE(922)] = 2425, + [SMALL_STATE(923)] = 2441, + [SMALL_STATE(924)] = 2457, + [SMALL_STATE(925)] = 2473, + [SMALL_STATE(926)] = 2489, + [SMALL_STATE(927)] = 2505, + [SMALL_STATE(928)] = 2521, + [SMALL_STATE(929)] = 2537, + [SMALL_STATE(930)] = 2553, + [SMALL_STATE(931)] = 2569, + [SMALL_STATE(932)] = 2585, + [SMALL_STATE(933)] = 2601, + [SMALL_STATE(934)] = 2617, + [SMALL_STATE(935)] = 2633, + [SMALL_STATE(936)] = 2649, + [SMALL_STATE(937)] = 2665, + [SMALL_STATE(938)] = 2681, + [SMALL_STATE(939)] = 2699, + [SMALL_STATE(940)] = 2715, + [SMALL_STATE(941)] = 2731, + [SMALL_STATE(942)] = 2747, + [SMALL_STATE(943)] = 2763, + [SMALL_STATE(944)] = 2779, + [SMALL_STATE(945)] = 2795, + [SMALL_STATE(946)] = 2811, + [SMALL_STATE(947)] = 2827, + [SMALL_STATE(948)] = 2843, + [SMALL_STATE(949)] = 2859, + [SMALL_STATE(950)] = 2875, + [SMALL_STATE(951)] = 2891, + [SMALL_STATE(952)] = 2907, + [SMALL_STATE(953)] = 2923, + [SMALL_STATE(954)] = 2943, + [SMALL_STATE(955)] = 2959, + [SMALL_STATE(956)] = 2975, + [SMALL_STATE(957)] = 2991, + [SMALL_STATE(958)] = 3007, + [SMALL_STATE(959)] = 3021, + [SMALL_STATE(960)] = 3037, + [SMALL_STATE(961)] = 3053, + [SMALL_STATE(962)] = 3069, + [SMALL_STATE(963)] = 3087, + [SMALL_STATE(964)] = 3103, + [SMALL_STATE(965)] = 3119, + [SMALL_STATE(966)] = 3135, + [SMALL_STATE(967)] = 3151, + [SMALL_STATE(968)] = 3167, + [SMALL_STATE(969)] = 3183, + [SMALL_STATE(970)] = 3199, + [SMALL_STATE(971)] = 3215, + [SMALL_STATE(972)] = 3229, + [SMALL_STATE(973)] = 3243, + [SMALL_STATE(974)] = 3259, + [SMALL_STATE(975)] = 3275, + [SMALL_STATE(976)] = 3291, + [SMALL_STATE(977)] = 3307, + [SMALL_STATE(978)] = 3323, + [SMALL_STATE(979)] = 3339, + [SMALL_STATE(980)] = 3355, + [SMALL_STATE(981)] = 3371, + [SMALL_STATE(982)] = 3387, + [SMALL_STATE(983)] = 3403, + [SMALL_STATE(984)] = 3419, + [SMALL_STATE(985)] = 3435, + [SMALL_STATE(986)] = 3451, + [SMALL_STATE(987)] = 3467, + [SMALL_STATE(988)] = 3481, + [SMALL_STATE(989)] = 3497, + [SMALL_STATE(990)] = 3513, + [SMALL_STATE(991)] = 3529, + [SMALL_STATE(992)] = 3545, + [SMALL_STATE(993)] = 3561, + [SMALL_STATE(994)] = 3577, + [SMALL_STATE(995)] = 3596, + [SMALL_STATE(996)] = 3611, + [SMALL_STATE(997)] = 3626, + [SMALL_STATE(998)] = 3639, + [SMALL_STATE(999)] = 3656, + [SMALL_STATE(1000)] = 3675, + [SMALL_STATE(1001)] = 3692, + [SMALL_STATE(1002)] = 3709, + [SMALL_STATE(1003)] = 3722, + [SMALL_STATE(1004)] = 3739, + [SMALL_STATE(1005)] = 3753, + [SMALL_STATE(1006)] = 3769, + [SMALL_STATE(1007)] = 3785, + [SMALL_STATE(1008)] = 3801, + [SMALL_STATE(1009)] = 3817, + [SMALL_STATE(1010)] = 3833, + [SMALL_STATE(1011)] = 3849, + [SMALL_STATE(1012)] = 3865, + [SMALL_STATE(1013)] = 3877, + [SMALL_STATE(1014)] = 3893, + [SMALL_STATE(1015)] = 3909, + [SMALL_STATE(1016)] = 3925, + [SMALL_STATE(1017)] = 3939, + [SMALL_STATE(1018)] = 3955, + [SMALL_STATE(1019)] = 3971, + [SMALL_STATE(1020)] = 3983, + [SMALL_STATE(1021)] = 3999, + [SMALL_STATE(1022)] = 4015, + [SMALL_STATE(1023)] = 4031, + [SMALL_STATE(1024)] = 4047, + [SMALL_STATE(1025)] = 4063, + [SMALL_STATE(1026)] = 4079, + [SMALL_STATE(1027)] = 4095, + [SMALL_STATE(1028)] = 4109, + [SMALL_STATE(1029)] = 4125, + [SMALL_STATE(1030)] = 4141, + [SMALL_STATE(1031)] = 4157, + [SMALL_STATE(1032)] = 4173, + [SMALL_STATE(1033)] = 4189, + [SMALL_STATE(1034)] = 4205, + [SMALL_STATE(1035)] = 4221, + [SMALL_STATE(1036)] = 4237, + [SMALL_STATE(1037)] = 4249, + [SMALL_STATE(1038)] = 4265, + [SMALL_STATE(1039)] = 4279, + [SMALL_STATE(1040)] = 4295, + [SMALL_STATE(1041)] = 4311, + [SMALL_STATE(1042)] = 4327, + [SMALL_STATE(1043)] = 4343, + [SMALL_STATE(1044)] = 4359, + [SMALL_STATE(1045)] = 4375, + [SMALL_STATE(1046)] = 4391, + [SMALL_STATE(1047)] = 4407, + [SMALL_STATE(1048)] = 4423, + [SMALL_STATE(1049)] = 4437, + [SMALL_STATE(1050)] = 4453, + [SMALL_STATE(1051)] = 4469, + [SMALL_STATE(1052)] = 4485, + [SMALL_STATE(1053)] = 4501, + [SMALL_STATE(1054)] = 4517, + [SMALL_STATE(1055)] = 4533, + [SMALL_STATE(1056)] = 4549, + [SMALL_STATE(1057)] = 4565, + [SMALL_STATE(1058)] = 4581, + [SMALL_STATE(1059)] = 4597, + [SMALL_STATE(1060)] = 4613, + [SMALL_STATE(1061)] = 4629, + [SMALL_STATE(1062)] = 4645, + [SMALL_STATE(1063)] = 4657, + [SMALL_STATE(1064)] = 4673, + [SMALL_STATE(1065)] = 4689, + [SMALL_STATE(1066)] = 4705, + [SMALL_STATE(1067)] = 4721, + [SMALL_STATE(1068)] = 4737, + [SMALL_STATE(1069)] = 4753, + [SMALL_STATE(1070)] = 4769, + [SMALL_STATE(1071)] = 4785, + [SMALL_STATE(1072)] = 4801, + [SMALL_STATE(1073)] = 4817, + [SMALL_STATE(1074)] = 4833, + [SMALL_STATE(1075)] = 4846, + [SMALL_STATE(1076)] = 4857, + [SMALL_STATE(1077)] = 4870, + [SMALL_STATE(1078)] = 4883, + [SMALL_STATE(1079)] = 4896, + [SMALL_STATE(1080)] = 4909, + [SMALL_STATE(1081)] = 4922, + [SMALL_STATE(1082)] = 4935, + [SMALL_STATE(1083)] = 4948, + [SMALL_STATE(1084)] = 4961, + [SMALL_STATE(1085)] = 4974, + [SMALL_STATE(1086)] = 4987, + [SMALL_STATE(1087)] = 5000, + [SMALL_STATE(1088)] = 5013, + [SMALL_STATE(1089)] = 5026, + [SMALL_STATE(1090)] = 5039, + [SMALL_STATE(1091)] = 5052, + [SMALL_STATE(1092)] = 5065, + [SMALL_STATE(1093)] = 5078, + [SMALL_STATE(1094)] = 5091, + [SMALL_STATE(1095)] = 5104, + [SMALL_STATE(1096)] = 5117, + [SMALL_STATE(1097)] = 5130, + [SMALL_STATE(1098)] = 5143, + [SMALL_STATE(1099)] = 5156, + [SMALL_STATE(1100)] = 5169, + [SMALL_STATE(1101)] = 5180, + [SMALL_STATE(1102)] = 5193, + [SMALL_STATE(1103)] = 5206, + [SMALL_STATE(1104)] = 5219, + [SMALL_STATE(1105)] = 5232, + [SMALL_STATE(1106)] = 5245, + [SMALL_STATE(1107)] = 5258, + [SMALL_STATE(1108)] = 5269, + [SMALL_STATE(1109)] = 5282, + [SMALL_STATE(1110)] = 5293, + [SMALL_STATE(1111)] = 5306, + [SMALL_STATE(1112)] = 5319, + [SMALL_STATE(1113)] = 5332, + [SMALL_STATE(1114)] = 5345, + [SMALL_STATE(1115)] = 5358, + [SMALL_STATE(1116)] = 5371, + [SMALL_STATE(1117)] = 5384, + [SMALL_STATE(1118)] = 5397, + [SMALL_STATE(1119)] = 5410, + [SMALL_STATE(1120)] = 5423, + [SMALL_STATE(1121)] = 5436, + [SMALL_STATE(1122)] = 5449, + [SMALL_STATE(1123)] = 5462, + [SMALL_STATE(1124)] = 5475, + [SMALL_STATE(1125)] = 5488, + [SMALL_STATE(1126)] = 5501, + [SMALL_STATE(1127)] = 5514, + [SMALL_STATE(1128)] = 5527, + [SMALL_STATE(1129)] = 5540, + [SMALL_STATE(1130)] = 5553, + [SMALL_STATE(1131)] = 5566, + [SMALL_STATE(1132)] = 5579, + [SMALL_STATE(1133)] = 5592, + [SMALL_STATE(1134)] = 5605, + [SMALL_STATE(1135)] = 5618, + [SMALL_STATE(1136)] = 5631, + [SMALL_STATE(1137)] = 5644, + [SMALL_STATE(1138)] = 5657, + [SMALL_STATE(1139)] = 5670, + [SMALL_STATE(1140)] = 5683, + [SMALL_STATE(1141)] = 5696, + [SMALL_STATE(1142)] = 5707, + [SMALL_STATE(1143)] = 5718, + [SMALL_STATE(1144)] = 5728, + [SMALL_STATE(1145)] = 5738, + [SMALL_STATE(1146)] = 5748, + [SMALL_STATE(1147)] = 5758, + [SMALL_STATE(1148)] = 5768, + [SMALL_STATE(1149)] = 5778, + [SMALL_STATE(1150)] = 5788, + [SMALL_STATE(1151)] = 5798, + [SMALL_STATE(1152)] = 5808, + [SMALL_STATE(1153)] = 5818, + [SMALL_STATE(1154)] = 5828, + [SMALL_STATE(1155)] = 5838, + [SMALL_STATE(1156)] = 5848, + [SMALL_STATE(1157)] = 5858, + [SMALL_STATE(1158)] = 5868, + [SMALL_STATE(1159)] = 5878, + [SMALL_STATE(1160)] = 5888, + [SMALL_STATE(1161)] = 5898, + [SMALL_STATE(1162)] = 5908, + [SMALL_STATE(1163)] = 5918, + [SMALL_STATE(1164)] = 5928, + [SMALL_STATE(1165)] = 5938, + [SMALL_STATE(1166)] = 5948, + [SMALL_STATE(1167)] = 5958, + [SMALL_STATE(1168)] = 5968, + [SMALL_STATE(1169)] = 5978, + [SMALL_STATE(1170)] = 5988, + [SMALL_STATE(1171)] = 5998, + [SMALL_STATE(1172)] = 6008, + [SMALL_STATE(1173)] = 6018, + [SMALL_STATE(1174)] = 6028, + [SMALL_STATE(1175)] = 6038, + [SMALL_STATE(1176)] = 6048, + [SMALL_STATE(1177)] = 6058, + [SMALL_STATE(1178)] = 6068, + [SMALL_STATE(1179)] = 6078, + [SMALL_STATE(1180)] = 6088, + [SMALL_STATE(1181)] = 6098, + [SMALL_STATE(1182)] = 6108, + [SMALL_STATE(1183)] = 6118, + [SMALL_STATE(1184)] = 6128, + [SMALL_STATE(1185)] = 6138, + [SMALL_STATE(1186)] = 6148, + [SMALL_STATE(1187)] = 6158, + [SMALL_STATE(1188)] = 6168, + [SMALL_STATE(1189)] = 6178, + [SMALL_STATE(1190)] = 6188, + [SMALL_STATE(1191)] = 6198, + [SMALL_STATE(1192)] = 6208, + [SMALL_STATE(1193)] = 6218, + [SMALL_STATE(1194)] = 6228, + [SMALL_STATE(1195)] = 6238, + [SMALL_STATE(1196)] = 6248, + [SMALL_STATE(1197)] = 6258, + [SMALL_STATE(1198)] = 6268, + [SMALL_STATE(1199)] = 6278, + [SMALL_STATE(1200)] = 6288, + [SMALL_STATE(1201)] = 6298, + [SMALL_STATE(1202)] = 6308, + [SMALL_STATE(1203)] = 6318, + [SMALL_STATE(1204)] = 6328, + [SMALL_STATE(1205)] = 6338, + [SMALL_STATE(1206)] = 6348, + [SMALL_STATE(1207)] = 6358, + [SMALL_STATE(1208)] = 6368, + [SMALL_STATE(1209)] = 6378, + [SMALL_STATE(1210)] = 6388, + [SMALL_STATE(1211)] = 6398, + [SMALL_STATE(1212)] = 6408, + [SMALL_STATE(1213)] = 6418, + [SMALL_STATE(1214)] = 6428, + [SMALL_STATE(1215)] = 6438, + [SMALL_STATE(1216)] = 6448, + [SMALL_STATE(1217)] = 6458, + [SMALL_STATE(1218)] = 6468, + [SMALL_STATE(1219)] = 6478, + [SMALL_STATE(1220)] = 6488, + [SMALL_STATE(1221)] = 6498, + [SMALL_STATE(1222)] = 6508, + [SMALL_STATE(1223)] = 6518, + [SMALL_STATE(1224)] = 6528, + [SMALL_STATE(1225)] = 6538, + [SMALL_STATE(1226)] = 6548, + [SMALL_STATE(1227)] = 6558, + [SMALL_STATE(1228)] = 6568, + [SMALL_STATE(1229)] = 6578, + [SMALL_STATE(1230)] = 6588, + [SMALL_STATE(1231)] = 6598, + [SMALL_STATE(1232)] = 6608, + [SMALL_STATE(1233)] = 6618, + [SMALL_STATE(1234)] = 6628, + [SMALL_STATE(1235)] = 6638, + [SMALL_STATE(1236)] = 6648, + [SMALL_STATE(1237)] = 6658, + [SMALL_STATE(1238)] = 6668, + [SMALL_STATE(1239)] = 6678, + [SMALL_STATE(1240)] = 6688, + [SMALL_STATE(1241)] = 6698, + [SMALL_STATE(1242)] = 6708, + [SMALL_STATE(1243)] = 6718, + [SMALL_STATE(1244)] = 6728, + [SMALL_STATE(1245)] = 6738, + [SMALL_STATE(1246)] = 6748, + [SMALL_STATE(1247)] = 6758, + [SMALL_STATE(1248)] = 6768, + [SMALL_STATE(1249)] = 6778, + [SMALL_STATE(1250)] = 6788, + [SMALL_STATE(1251)] = 6798, + [SMALL_STATE(1252)] = 6808, + [SMALL_STATE(1253)] = 6818, + [SMALL_STATE(1254)] = 6828, + [SMALL_STATE(1255)] = 6838, + [SMALL_STATE(1256)] = 6848, + [SMALL_STATE(1257)] = 6858, + [SMALL_STATE(1258)] = 6868, + [SMALL_STATE(1259)] = 6878, + [SMALL_STATE(1260)] = 6888, + [SMALL_STATE(1261)] = 6898, + [SMALL_STATE(1262)] = 6908, + [SMALL_STATE(1263)] = 6918, + [SMALL_STATE(1264)] = 6928, + [SMALL_STATE(1265)] = 6938, + [SMALL_STATE(1266)] = 6948, + [SMALL_STATE(1267)] = 6958, + [SMALL_STATE(1268)] = 6968, + [SMALL_STATE(1269)] = 6978, + [SMALL_STATE(1270)] = 6988, + [SMALL_STATE(1271)] = 6998, + [SMALL_STATE(1272)] = 7008, + [SMALL_STATE(1273)] = 7018, + [SMALL_STATE(1274)] = 7028, + [SMALL_STATE(1275)] = 7038, + [SMALL_STATE(1276)] = 7048, + [SMALL_STATE(1277)] = 7058, + [SMALL_STATE(1278)] = 7068, + [SMALL_STATE(1279)] = 7078, + [SMALL_STATE(1280)] = 7088, + [SMALL_STATE(1281)] = 7098, + [SMALL_STATE(1282)] = 7108, + [SMALL_STATE(1283)] = 7118, + [SMALL_STATE(1284)] = 7128, + [SMALL_STATE(1285)] = 7138, + [SMALL_STATE(1286)] = 7148, + [SMALL_STATE(1287)] = 7158, + [SMALL_STATE(1288)] = 7168, + [SMALL_STATE(1289)] = 7178, + [SMALL_STATE(1290)] = 7188, + [SMALL_STATE(1291)] = 7198, + [SMALL_STATE(1292)] = 7208, + [SMALL_STATE(1293)] = 7218, + [SMALL_STATE(1294)] = 7228, + [SMALL_STATE(1295)] = 7238, + [SMALL_STATE(1296)] = 7248, + [SMALL_STATE(1297)] = 7258, + [SMALL_STATE(1298)] = 7268, + [SMALL_STATE(1299)] = 7278, + [SMALL_STATE(1300)] = 7288, + [SMALL_STATE(1301)] = 7298, + [SMALL_STATE(1302)] = 7308, + [SMALL_STATE(1303)] = 7318, + [SMALL_STATE(1304)] = 7328, + [SMALL_STATE(1305)] = 7338, + [SMALL_STATE(1306)] = 7348, + [SMALL_STATE(1307)] = 7358, + [SMALL_STATE(1308)] = 7368, + [SMALL_STATE(1309)] = 7378, + [SMALL_STATE(1310)] = 7388, + [SMALL_STATE(1311)] = 7398, + [SMALL_STATE(1312)] = 7408, + [SMALL_STATE(1313)] = 7418, + [SMALL_STATE(1314)] = 7428, + [SMALL_STATE(1315)] = 7438, + [SMALL_STATE(1316)] = 7448, + [SMALL_STATE(1317)] = 7458, + [SMALL_STATE(1318)] = 7468, + [SMALL_STATE(1319)] = 7478, + [SMALL_STATE(1320)] = 7488, + [SMALL_STATE(1321)] = 7498, + [SMALL_STATE(1322)] = 7508, + [SMALL_STATE(1323)] = 7518, + [SMALL_STATE(1324)] = 7528, + [SMALL_STATE(1325)] = 7538, + [SMALL_STATE(1326)] = 7548, + [SMALL_STATE(1327)] = 7558, + [SMALL_STATE(1328)] = 7568, + [SMALL_STATE(1329)] = 7578, + [SMALL_STATE(1330)] = 7588, + [SMALL_STATE(1331)] = 7598, + [SMALL_STATE(1332)] = 7608, + [SMALL_STATE(1333)] = 7618, + [SMALL_STATE(1334)] = 7628, + [SMALL_STATE(1335)] = 7638, + [SMALL_STATE(1336)] = 7648, + [SMALL_STATE(1337)] = 7658, + [SMALL_STATE(1338)] = 7668, + [SMALL_STATE(1339)] = 7678, + [SMALL_STATE(1340)] = 7688, + [SMALL_STATE(1341)] = 7698, + [SMALL_STATE(1342)] = 7708, + [SMALL_STATE(1343)] = 7718, + [SMALL_STATE(1344)] = 7728, + [SMALL_STATE(1345)] = 7738, + [SMALL_STATE(1346)] = 7748, + [SMALL_STATE(1347)] = 7758, + [SMALL_STATE(1348)] = 7768, + [SMALL_STATE(1349)] = 7778, + [SMALL_STATE(1350)] = 7788, + [SMALL_STATE(1351)] = 7798, + [SMALL_STATE(1352)] = 7808, + [SMALL_STATE(1353)] = 7818, + [SMALL_STATE(1354)] = 7828, + [SMALL_STATE(1355)] = 7838, + [SMALL_STATE(1356)] = 7848, + [SMALL_STATE(1357)] = 7858, + [SMALL_STATE(1358)] = 7868, + [SMALL_STATE(1359)] = 7878, + [SMALL_STATE(1360)] = 7888, + [SMALL_STATE(1361)] = 7898, + [SMALL_STATE(1362)] = 7908, + [SMALL_STATE(1363)] = 7918, + [SMALL_STATE(1364)] = 7928, + [SMALL_STATE(1365)] = 7938, + [SMALL_STATE(1366)] = 7948, + [SMALL_STATE(1367)] = 7958, + [SMALL_STATE(1368)] = 7968, + [SMALL_STATE(1369)] = 7978, + [SMALL_STATE(1370)] = 7988, + [SMALL_STATE(1371)] = 7998, + [SMALL_STATE(1372)] = 8008, + [SMALL_STATE(1373)] = 8018, + [SMALL_STATE(1374)] = 8028, + [SMALL_STATE(1375)] = 8038, + [SMALL_STATE(1376)] = 8045, + [SMALL_STATE(1377)] = 8052, + [SMALL_STATE(1378)] = 8059, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -114144,2416 +116025,2437 @@ 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_client_config, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_client_config, 1), - [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1229), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1252), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1250), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1248), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1246), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1244), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1242), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1240), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1238), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1236), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1234), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1232), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1230), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1228), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1226), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1224), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1222), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1220), - [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1218), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1216), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1214), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1212), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1210), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1208), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1206), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1204), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1202), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1200), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1198), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1196), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1194), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1192), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1190), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1188), - [339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1186), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1184), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1182), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1180), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1178), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1176), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1174), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1172), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1170), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1168), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1166), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1164), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1162), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1160), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1158), - [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1157), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1155), - [390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1153), - [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1152), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1150), - [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1148), - [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1147), - [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1145), - [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1143), - [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1141), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1139), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1137), - [420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1135), - [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1249), - [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1223), - [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1319), - [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1237), - [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1133), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1254), - [441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1257), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1260), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1263), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1268), - [453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1271), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1274), - [459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1278), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1281), - [465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1285), - [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1288), - [471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1289), - [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1293), - [477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1294), - [480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1299), - [483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1303), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1307), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1309), - [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1310), - [495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1313), - [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1317), - [501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1318), - [504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1325), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1328), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1331), - [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1334), - [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1337), - [519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1341), - [522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1342), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1347), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1348), - [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1349), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1353), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1355), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1359), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1361), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1187), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1142), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1219), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1140), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1146), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1151), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1154), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1159), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1165), - [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1167), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__channel_timeout_value, 2), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__channel_timeout_value, 2), - [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__channel_timeout_value, 2), SHIFT_REPEAT(1364), - [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__channel_timeout_value, 2), SHIFT_REPEAT(1364), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 5), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 5), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 3), - [598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 3), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 4), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 4), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__channel_timeout_value, 3), - [610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__channel_timeout_value, 3), - [612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 4), - [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 4), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 3), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 3), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 5), - [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 5), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 5), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 5), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 5), - [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 5), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 5), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 5), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 5), - [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 5), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 5), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 5), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 5), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 5), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 5), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 5), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 5), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 5), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 5), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 5), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 5), - [686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 5), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 5), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 5), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 5), - [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 5), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 5), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 5), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 5), - [710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 5), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 5), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 5), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 5), - [722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 5), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 5), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 5), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 5), - [734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 5), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 5), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 5), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 5), - [746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 5), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 5), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 5), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 5), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 5), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 5), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 5), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 5), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 5), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 5), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 5), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 5), - [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 5), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 5), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 5), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 5), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 5), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 5), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 5), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 5), - [806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 5), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 5), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 5), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 5), - [818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 5), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 5), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 5), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 5), - [830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 5), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 5), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 5), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 5), - [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 5), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 5), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 5), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 5), - [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 5), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 5), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 5), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 5), - [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 5), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 5), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 5), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 5), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 5), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 5), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 5), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 5), - [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 5), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 5), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 5), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 5), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 5), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 5), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 5), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 3), - [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 3), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 5), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 5), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), - [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 5), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 5), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 5), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 5), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 5), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 5), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 5), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 5), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 5), - [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 5), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 5), - [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 5), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 5), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 5), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 5), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 5), - [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 5), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 5), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 5), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 5), - [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 5), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 5), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 5), - [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 5), - [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 5), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 5), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 5), - [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), - [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 5), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 5), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 5), - [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 5), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 5), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 5), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 5), - [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 5), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 5), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 5), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 5), - [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 5), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 5), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 5), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 5), - [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 5), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 5), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 5), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 5), - [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 5), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 5), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 5), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 5), - [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 5), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 5), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 5), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 5), - [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 5), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 5), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 5), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 5), - [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 5), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 5), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 5), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 5), - [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 5), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 5), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 5), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 5), - [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 5), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 5), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 5), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 5), - [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 5), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 5), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 5), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 5), - [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 5), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 5), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 5), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 5), - [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 5), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 5), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 5), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 5), - [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 5), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 5), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 5), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 5), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 5), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 5), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 5), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 5), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 5), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 5), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 5), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 5), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 5), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 5), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 5), - [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 5), - [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 5), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 5), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 5), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 5), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 5), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 5), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 5), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 5), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 5), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 5), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 5), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 4), - [1268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 4), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 4), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 4), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 4), - [1280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 4), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 4), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 4), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 4), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 4), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 4), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 4), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 4), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 4), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 4), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 4), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 4), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 4), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 4), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 4), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 4), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 4), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 4), - [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 4), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 4), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 4), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 4), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 4), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 4), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 4), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 4), - [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 4), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 4), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 4), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 4), - [1370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 4), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 4), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 4), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 4), - [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 4), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 4), - [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 4), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 4), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 4), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 4), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 4), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 4), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 4), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 4), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 4), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 4), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 4), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 4), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 4), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 4), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 4), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 4), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 4), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 4), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 4), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 4), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 4), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 4), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 4), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 4), - [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 4), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 4), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 4), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 4), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 4), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 4), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 4), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 4), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 4), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 4), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 4), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 4), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 4), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 4), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 4), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 4), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 4), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 4), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 4), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 4), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 4), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 4), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 4), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [1530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 4), - [1532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 4), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 4), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 4), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 4), - [1544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 4), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 4), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 4), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 4), - [1556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 4), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 4), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 4), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 4), - [1568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 4), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 4), - [1574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 4), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 4), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 4), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 4), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 4), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 4), - [1592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 4), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [1596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 4), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 4), - [1604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 4), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 4), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 4), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 4), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 4), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 4), - [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 4), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 4), - [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 4), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 4), - [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 4), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 4), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 4), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [1644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 4), - [1646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 4), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 4), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 4), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [1656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 4), - [1658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 4), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 4), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 4), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 4), - [1670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 4), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 4), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 4), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 4), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 4), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 4), - [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 4), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 4), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 4), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [1704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 4), - [1706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 4), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 4), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 4), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 4), - [1718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 4), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 4), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 4), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 4), - [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 4), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 4), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 4), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 4), - [1742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 4), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 4), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 4), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 4), - [1754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 4), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 4), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 4), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 4), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 4), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 4), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 4), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 4), - [1778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 4), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 4), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 4), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 4), - [1790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 4), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 4), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 4), - [1798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 4), - [1802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 4), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 4), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 4), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 4), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 4), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 4), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 4), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 4), - [1826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 4), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 4), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 4), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 4), - [1838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 4), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 4), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 4), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms_value, 1), - [1850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms_value, 1), - [1852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 5), - [1854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 5), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 4), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 4), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 4), - [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 4), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 4), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 4), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 4), - [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 4), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 4), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 4), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 4), - [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 4), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 4), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 4), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 4), - [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 4), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 4), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 4), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 4), - [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 4), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 4), - [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 4), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 5), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 5), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 4), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 4), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 5), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 5), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 4), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 4), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open_value, 1), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open_value, 1), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 5), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 5), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 5), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 5), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 3), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 3), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location_value, 1), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location_value, 1), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value, 1, .production_id = 1), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_value, 1, .production_id = 1), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 3), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 3), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 44), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 44), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent_value, 1), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent_value, 1), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 3), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 3), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 3), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 3), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns_value, 1), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns_value, 1), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family_value, 1), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family_value, 1), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 3), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 3), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 3), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 3), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file_value, 1), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file_value, 1), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 3), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 3), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address_value, 1), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address_value, 1), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 3), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 3), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_value, 1), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_value, 1), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 3), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 3), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface_value, 1), - [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface_value, 1), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 3), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 3), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming_value, 1, .production_id = 43), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming_value, 1, .production_id = 43), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 3), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 3), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains_value, 1), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains_value, 1), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 3), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 3), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain_value, 1, .production_id = 42), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain_value, 1, .production_id = 42), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 3), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 3), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 3), - [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 3), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys_value, 1), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys_value, 1), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 3), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 3), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname_value, 1), - [2134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname_value, 1), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 3), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 3), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device_value, 1), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device_value, 1), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 3), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 3), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots_value, 1), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots_value, 1), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 3), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 3), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_value, 1), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_value, 1), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 3), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 3), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 3), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 3), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_value, 1), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_value, 1), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 3), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 3), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms_value, 1), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms_value, 1), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 3), - [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 3), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive_value, 1, .production_id = 41), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive_value, 1, .production_id = 41), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 3), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 3), - [2210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file_value, 1), - [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file_value, 1), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 3), - [2218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 3), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 40), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 40), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 3), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 3), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 3), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 3), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility_value, 1), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility_value, 1), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 3), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 3), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 3), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 3), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking_value, 1), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking_value, 1), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 3), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 3), - [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 39), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 39), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 5), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 5), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 3), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 3), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask_value, 1), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask_value, 1), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 3), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 3), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers_value, 1), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers_value, 1), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 3), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 3), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null_value, 1, .production_id = 38), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null_value, 1, .production_id = 38), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 3), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 3), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher_value, 1), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher_value, 1), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 3), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 3), - [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env_value, 1), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env_value, 1), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 3), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 3), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 3), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 3), - [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type_value, 1), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type_value, 1), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 3), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 3), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 3), - [2360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 3), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 37), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 37), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression_value, 1, .production_id = 7), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression_value, 1, .production_id = 7), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 3), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 3), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), - [2380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 3), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 3), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 36), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 36), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 3), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 3), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 3), - [2404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 3), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env_value, 1), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env_value, 1), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 3), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 3), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master_value, 1), - [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master_value, 1), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 3), - [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 3), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider_value, 1), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider_value, 1), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 3), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 3), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path_value, 1), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path_value, 1), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 3), - [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 3), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys_value, 1), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys_value, 1), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 3), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 3), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), - [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 3), - [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 3), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 35), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 35), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 3), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 3), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward_value, 1), - [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward_value, 1), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 3), - [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 3), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty_value, 1), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty_value, 1), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 3), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 3), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 3), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 3), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward_value, 1), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward_value, 1), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline_value, 1, .production_id = 11), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline_value, 1, .production_id = 11), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 3), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 3), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 3), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 3), - [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command_value, 1), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command_value, 1), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 12), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 12), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 3), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 3), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 3), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 3), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit_value, 1), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit_value, 1), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char_value, 1), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char_value, 1), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 3), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 3), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 3), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 3), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication_value, 1), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication_value, 1), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 13), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 13), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 3), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 3), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 3), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 3), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash_value, 1), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash_value, 1), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 3), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 3), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 3), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 3), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 14), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 14), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 3), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 3), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent_value, 1), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent_value, 1), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 3), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 3), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 34), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 34), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 3), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 3), - [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 3), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 3), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump_value, 1), - [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump_value, 1), - [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_value, 1, .production_id = 15), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_value, 1, .production_id = 15), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 3), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 3), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 16), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 16), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 3), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 3), - [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command_value, 1), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command_value, 1), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 3), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 3), - [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 3), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 3), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_value, 1), - [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_value, 1), - [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 17), - [2690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 17), - [2692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 3), - [2694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 3), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 3), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 3), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications_value, 1), - [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications_value, 1), - [2708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 18), - [2710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 18), - [2712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 3), - [2714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 3), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file_value, 1), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file_value, 1), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 3), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 3), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_value, 1, .production_id = 33), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port_value, 1, .production_id = 33), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 3), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 3), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 3), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 3), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider_value, 1), - [2746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider_value, 1), - [2748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 19), - [2750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 19), - [2752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 3), - [2754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 3), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity_value, 1), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity_value, 1), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 3), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 3), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 4), - [2770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 4), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 3), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 3), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 3), - [2782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 3), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 32), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 32), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 20), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 20), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 3), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 3), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 3), - [2802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 3), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication_value, 1, .production_id = 31), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication_value, 1, .production_id = 31), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 21), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 21), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 3), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 3), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 3), - [2822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 3), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 30), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 30), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 22), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 22), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity_value, 1), - [2842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity_value, 1), - [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 3), - [2846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 3), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 29), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 29), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 3), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 3), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 3), - [2862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 3), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs_value, 1), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs_value, 1), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 23), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 23), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 3), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 3), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), - [2882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), - [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 3), - [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 3), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose_value, 1), - [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose_value, 1), - [2894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 3), - [2896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 3), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 3), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 3), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level_value, 1), - [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level_value, 1), - [2910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 24), - [2912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 24), - [2914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 3), - [2916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 3), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), - [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), - [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_value, 1), - [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_value, 1), - [2928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward_value, 1), - [2930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward_value, 1), - [2932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 3), - [2934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 3), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 3), - [2940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 3), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command_value, 1), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command_value, 1), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 25), - [2950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 25), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 3), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 3), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms_value, 1), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms_value, 1), - [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 3), - [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 3), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 28), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 28), - [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 3), - [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 3), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias_value, 1), - [2980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias_value, 1), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 3), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 3), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_value, 1), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_value, 1), - [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 3), - [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 3), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname_value, 1), - [3000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname_value, 1), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 3), - [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 3), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices_value, 1), - [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices_value, 1), - [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 3), - [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 3), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), - [3020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 3), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos_value, 1, .production_id = 27), - [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos_value, 1, .production_id = 27), - [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only_value, 1, .production_id = 26), - [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only_value, 1, .production_id = 26), - [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 3), - [3034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 3), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [3038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent_value, 1), - [3040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent_value, 1), - [3042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 3), - [3044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 3), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command_value, 1), - [3050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command_value, 1), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 3), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 3), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [3058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file_value, 1), - [3060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file_value, 1), - [3062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 3), - [3064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 3), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 3), - [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 3), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 3), - [3076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 3), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown_value, 1), - [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown_value, 1), - [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 6), - [3086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 6), - [3088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 6), - [3090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 6), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 6), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 6), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 6), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 6), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 6), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 6), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 6), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 6), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 6), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 6), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 6), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 6), - [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 6), - [3118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 6), - [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 6), - [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 6), - [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 6), - [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 6), - [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 6), - [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 6), - [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 6), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 6), - [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 6), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 6), - [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 6), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 6), - [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 6), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 6), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 6), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 6), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 6), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 6), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 6), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 6), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 6), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 6), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 6), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 6), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 6), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 6), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 6), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 6), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 6), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 6), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 6), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 6), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 6), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 6), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 6), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 6), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 6), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 6), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 6), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 6), - [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 6), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 6), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 6), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 6), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 6), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 6), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 6), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 6), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 6), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 6), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 6), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 6), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 6), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 6), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 6), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 6), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 6), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 6), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 6), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 6), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 6), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 6), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 6), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 6), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 6), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 6), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 6), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 6), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 6), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 6), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 6), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 6), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 6), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 6), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 6), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 6), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 6), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 6), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 6), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 6), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 6), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 6), - [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 6), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 6), - [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 6), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 6), - [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 6), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 6), - [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 6), - [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 6), - [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 6), - [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 6), - [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 6), - [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 6), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 6), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 6), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 6), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 6), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 6), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 6), - [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 6), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 6), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 6), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 6), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 6), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 6), - [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 6), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 6), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 6), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 6), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 6), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 6), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 6), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 6), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 6), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 6), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 6), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 6), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 6), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 6), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 6), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 6), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 6), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 6), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 6), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 6), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 6), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 6), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 6), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 6), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 6), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 6), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 6), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 6), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 6), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 6), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 6), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 6), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 6), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 6), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 6), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 6), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 6), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 6), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 6), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 6), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 6), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 6), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 6), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 6), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 6), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 6), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 6), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 6), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 6), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 6), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 6), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 6), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 6), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 6), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 6), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 6), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 6), - [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 6), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 6), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 6), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 6), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 6), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 6), - [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 6), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 6), - [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 6), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 6), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 6), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 6), - [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 6), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 6), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 6), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 6), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 6), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 6), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 6), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 6), - [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 6), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 6), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 6), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 6), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 6), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 6), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 6), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 6), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 6), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 6), - [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 6), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 6), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 6), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 6), - [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 6), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 6), - [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 6), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 6), - [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 6), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 6), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 6), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 6), - [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 6), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout_type, 1), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [4940] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_client_config, 1), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1212), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1263), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1261), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1259), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1257), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1255), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1253), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1251), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1249), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1247), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1245), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1243), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1241), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1239), + [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1237), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1235), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1233), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1231), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1229), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1227), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1225), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1223), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1221), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1219), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1217), + [314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1215), + [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1213), + [320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1211), + [323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1209), + [326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1207), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1205), + [332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1203), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1201), + [338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1199), + [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1197), + [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1195), + [347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1193), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1191), + [353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1189), + [356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1187), + [359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1185), + [362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1183), + [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1181), + [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1179), + [371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1177), + [374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1175), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1173), + [380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1171), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1169), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1167), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1165), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1163), + [395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1161), + [398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1159), + [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1158), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1156), + [407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1154), + [410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1143), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1150), + [416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1148), + [419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1146), + [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1260), + [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1236), + [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1246), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1292), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1264), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1269), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1272), + [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1276), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1283), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1286), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1291), + [455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1295), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1299), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1302), + [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1305), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1308), + [470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1313), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1316), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1319), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1322), + [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1325), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1326), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1329), + [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1330), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1332), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1333), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1336), + [503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1338), + [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1339), + [509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1342), + [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1343), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1346), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1347), + [521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1350), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1352), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1353), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1355), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1357), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1359), + [539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1361), + [542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1363), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1365), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1367), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1369), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1371), + [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1373), + [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1307), + [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1280), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1256), + [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1152), + [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1317), + [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1314), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_client_config_repeat1, 2), SHIFT_REPEAT(1311), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__channel_timeout_value, 2), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__channel_timeout_value, 2), + [585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__channel_timeout_value, 2), SHIFT_REPEAT(1377), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__channel_timeout_value, 2), SHIFT_REPEAT(1377), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 5), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 5), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 3), + [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 3), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 4), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 4), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__channel_timeout_value, 3), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__channel_timeout_value, 3), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 4), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 4), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 4), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 4), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 5), + [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 5), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 5), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 5), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 5), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 5), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 5), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 5), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 5), + [655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 5), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 5), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 5), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 5), + [667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 5), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 5), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 5), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 5), + [679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 5), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 5), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 5), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 5), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 5), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 5), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 5), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 5), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 5), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 5), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 5), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 5), + [715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 5), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 5), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 5), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 3), + [727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 3), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 5), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 5), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 5), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 5), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 5), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 5), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 5), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 5), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 5), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 5), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 5), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 5), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 5), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 5), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 5), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 5), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 5), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 5), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 5), + [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 5), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 5), + [793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 5), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 5), + [799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 5), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 5), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 5), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 5), + [811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 5), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 5), + [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 5), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 5), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 5), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 5), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 5), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 5), + [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 5), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 5), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 5), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 5), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 5), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 5), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 5), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_obscure_keystroke_timing, 5), + [859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_obscure_keystroke_timing, 5), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 5), + [865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 5), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 5), + [871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 5), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 5), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 5), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 5), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 5), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 5), + [889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 5), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 5), + [895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 5), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 5), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 5), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 5), + [907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 5), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 5), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 5), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 5), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 5), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 5), + [925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 5), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 5), + [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 5), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 5), + [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 5), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 5), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 5), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 5), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 5), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 5), + [955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 5), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 5), + [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 5), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 5), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 5), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 5), + [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 5), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 5), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 5), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 5), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 5), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 5), + [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 5), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 5), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 5), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 5), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 5), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 5), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 5), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 5), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 5), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), + [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 5), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 5), + [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 5), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 5), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 5), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 5), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 5), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 5), + [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 5), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 5), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 5), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 5), + [1057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 5), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 5), + [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 5), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 5), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 5), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 5), + [1075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 5), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 5), + [1081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 5), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [1085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 5), + [1087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 5), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 5), + [1093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 5), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 5), + [1099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 5), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 5), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 5), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 5), + [1111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 5), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 5), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 5), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 5), + [1123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 5), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 5), + [1129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 5), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 5), + [1135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 5), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 5), + [1141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 5), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 5), + [1147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 5), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 5), + [1153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 5), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 5), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 5), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 5), + [1165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 5), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 5), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 5), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 5), + [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 5), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 5), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 5), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 5), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 5), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 5), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 5), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 5), + [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 5), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 5), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 5), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 5), + [1213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 5), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 5), + [1219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 5), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 5), + [1225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 5), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 5), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 5), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 5), + [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 5), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 5), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 5), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 5), + [1249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 5), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 5), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 5), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 5), + [1261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 5), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 5), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 5), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 4), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 4), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 4), + [1285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 4), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 4), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 4), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 4), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 4), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 4), + [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 4), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 4), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 4), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 4), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 4), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 4), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 4), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 4), + [1327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 4), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 4), + [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 4), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 4), + [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 4), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 4), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 4), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 4), + [1351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 4), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 4), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 4), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 4), + [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 4), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 4), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 4), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 4), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 4), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 4), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 4), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 4), + [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 4), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 4), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 4), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 4), + [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 4), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 4), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 4), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 4), + [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 4), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 4), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 4), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 4), + [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 4), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 4), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 4), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 4), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 4), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 4), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 4), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 4), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 4), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 4), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 4), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 4), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 4), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 4), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 4), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 4), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 4), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 4), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 4), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 4), + [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 4), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 4), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 4), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 4), + [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 4), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 4), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 4), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 4), + [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 4), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 4), + [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 4), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 4), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 4), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 4), + [1525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 4), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 4), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 4), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [1535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_obscure_keystroke_timing, 4), + [1537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_obscure_keystroke_timing, 4), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 4), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 4), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 4), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 4), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 4), + [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 4), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 4), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 4), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 4), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 4), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 4), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 4), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 4), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 4), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 4), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 4), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 4), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 4), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 4), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 4), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 4), + [1603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 4), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 4), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 4), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 4), + [1615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 4), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 4), + [1621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 4), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_value, 1), + [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_value, 1), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 4), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 4), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 4), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 4), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 4), + [1643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 4), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 4), + [1649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 4), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 4), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 4), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 4), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 4), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 4), + [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 4), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 4), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 4), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 4), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 4), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 4), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 4), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 4), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 4), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), + [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 4), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 4), + [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 4), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 4), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 4), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 4), + [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 4), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 4), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 4), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 4), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 4), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 4), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 4), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 4), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 4), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 4), + [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 4), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 4), + [1751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 4), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 4), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 4), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 4), + [1763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 4), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 4), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 4), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 4), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 4), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 4), + [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 4), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 4), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 4), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 4), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 4), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 4), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 4), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 4), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 4), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 4), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 4), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 4), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 4), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 4), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 4), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 4), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 4), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 4), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 4), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 4), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 4), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 4), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 4), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 4), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 4), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 4), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 4), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 3), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 3), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 5), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 5), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 4), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 4), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 4), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 4), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 4), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 4), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 4), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 4), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 4), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 4), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 4), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 4), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 4), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 4), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 4), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 4), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 4), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 4), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 4), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 4), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 4), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 4), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 5), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 5), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 4), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 4), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 5), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 5), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 4), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 4), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 4), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 4), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 5), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 5), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 5), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 5), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 3), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 3), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location_value, 1), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location_value, 1), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_value, 1, .production_id = 1), + [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_value, 1, .production_id = 1), + [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 3), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 3), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 44), + [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key_value, 1, .production_id = 44), + [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent_value, 1), + [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent_value, 1), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 3), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 3), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 3), + [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 3), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns_value, 1), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns_value, 1), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family_value, 1), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family_value, 1), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 3), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 3), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 3), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 3), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file_value, 1), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file_value, 1), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), + [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode_value, 1, .production_id = 2), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 3), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 3), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address_value, 1), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address_value, 1), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 3), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 3), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_value, 1), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_value, 1), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 3), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 3), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface_value, 1), + [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface_value, 1), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 3), + [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 3), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming_value, 1, .production_id = 43), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming_value, 1, .production_id = 43), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 3), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 3), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains_value, 1), + [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains_value, 1), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 3), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 3), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain_value, 1, .production_id = 42), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain_value, 1, .production_id = 42), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 3), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 3), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 3), + [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 3), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys_value, 1), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys_value, 1), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local_value, 1, .production_id = 3), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 3), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 3), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname_value, 1), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname_value, 1), + [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 3), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 3), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device_value, 1), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device_value, 1), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 3), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 3), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots_value, 1), + [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots_value, 1), + [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 3), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 3), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_value, 1), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_value, 1), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 3), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 3), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), + [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames_value, 1), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 3), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 3), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_value, 1), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_value, 1), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 3), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 3), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms_value, 1), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms_value, 1), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 3), + [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 3), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive_value, 1, .production_id = 41), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive_value, 1, .production_id = 41), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 3), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 3), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file_value, 1), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file_value, 1), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 3), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 3), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 40), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive_value, 1, .production_id = 40), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 3), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 3), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 3), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 3), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility_value, 1), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility_value, 1), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication_value, 1, .production_id = 4), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 3), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 3), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 3), + [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 3), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking_value, 1), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking_value, 1), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 3), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 3), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 39), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink_value, 1, .production_id = 39), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 5), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 5), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 3), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 3), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask_value, 1), + [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask_value, 1), + [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), + [2309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip_value, 1, .production_id = 5), + [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 3), + [2313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 3), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers_value, 1), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers_value, 1), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 3), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 3), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null_value, 1, .production_id = 38), + [2329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null_value, 1, .production_id = 38), + [2331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 3), + [2333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 3), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher_value, 1), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher_value, 1), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 3), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 3), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env_value, 1), + [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env_value, 1), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 3), + [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 3), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 3), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 3), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type_value, 1), + [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type_value, 1), + [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), + [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings_value, 1, .production_id = 6), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 3), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 3), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 3), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 3), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 37), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval_value, 1, .production_id = 37), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression_value, 1, .production_id = 7), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression_value, 1, .production_id = 7), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 3), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 3), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts_value, 1, .production_id = 8), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 3), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 3), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 36), + [2409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max_value, 1, .production_id = 36), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 3), + [2413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 3), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout_value, 1, .production_id = 9), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 3), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 3), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env_value, 1), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env_value, 1), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 3), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 3), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master_value, 1), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master_value, 1), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 3), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 3), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider_value, 1), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider_value, 1), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 3), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 3), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path_value, 1), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path_value, 1), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 3), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 3), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys_value, 1), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys_value, 1), + [2471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 3), + [2473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 3), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist_value, 1, .production_id = 10), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 3), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 3), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 35), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size_value, 1, .production_id = 35), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 3), + [2493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 3), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward_value, 1), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward_value, 1), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 3), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 3), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty_value, 1), + [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty_value, 1), + [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 3), + [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 3), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 3), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 3), + [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward_value, 1), + [2525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward_value, 1), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline_value, 1, .production_id = 11), + [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline_value, 1, .production_id = 11), + [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 3), + [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 3), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 3), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 3), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command_value, 1), + [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command_value, 1), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 12), + [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign_value, 1, .production_id = 12), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 3), + [2553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 3), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 3), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 3), + [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit_value, 1), + [2565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit_value, 1), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char_value, 1), + [2569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char_value, 1), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 3), + [2573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 3), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 3), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 3), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication_value, 1), + [2585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication_value, 1), + [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 13), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure_value, 1, .production_id = 13), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 3), + [2593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 3), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 3), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 3), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), + [2605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types_value, 1), + [2607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash_value, 1), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash_value, 1), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 3), + [2613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 3), + [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 3), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 3), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms_value, 1), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 14), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication_value, 1, .production_id = 14), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 3), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 3), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent_value, 1), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent_value, 1), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 3), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 3), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 34), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass_value, 1, .production_id = 34), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 3), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 3), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 3), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 3), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump_value, 1), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump_value, 1), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_value, 1, .production_id = 15), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_value, 1, .production_id = 15), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 3), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 3), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 16), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout_value, 1, .production_id = 16), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 3), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 3), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command_value, 1), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command_value, 1), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 3), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 3), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 3), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 3), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol_value, 1), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol_value, 1), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 17), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted_value, 1, .production_id = 17), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 3), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 3), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 3), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 3), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications_value, 1), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications_value, 1), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 18), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports_value, 1, .production_id = 18), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 3), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 3), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file_value, 1), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file_value, 1), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 3), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 3), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port_value, 1, .production_id = 33), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port_value, 1, .production_id = 33), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 3), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 3), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 3), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 3), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider_value, 1), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider_value, 1), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 19), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication_value, 1, .production_id = 19), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 3), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 3), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity_value, 1), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity_value, 1), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 3), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 3), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open_value, 1), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open_value, 1), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 3), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 3), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 3), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 3), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 32), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command_value, 1, .production_id = 32), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 20), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials_value, 1, .production_id = 20), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 3), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 3), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 3), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 3), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication_value, 1, .production_id = 31), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication_value, 1, .production_id = 31), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 21), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange_value, 1, .production_id = 21), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 3), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 3), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_obscure_keystroke_timing, 3), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_obscure_keystroke_timing, 3), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_obscure_keystroke_timing_value, 1), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_obscure_keystroke_timing_value, 1), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 22), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey_value, 1, .production_id = 22), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 3), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity_value, 1), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity_value, 1), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 3), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 3), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 30), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts_value, 1, .production_id = 30), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 3), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 3), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 3), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 3), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 29), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost_value, 1, .production_id = 29), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 23), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns_value, 1, .production_id = 23), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 3), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 3), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms_value, 1), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 3), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 3), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs_value, 1), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs_value, 1), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 3), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 3), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 3), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 3), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose_value, 1), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose_value, 1), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 24), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts_value, 1, .production_id = 24), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 3), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 3), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms_value, 1), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 3), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 3), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level_value, 1), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level_value, 1), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 3), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 3), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_value, 1), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_value, 1), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms_value, 1), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms_value, 1), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 25), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication_value, 1, .production_id = 25), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 3), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 3), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms_value, 1), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms_value, 1), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command_value, 1), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command_value, 1), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 3), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 3), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 3), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 3), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias_value, 1), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias_value, 1), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos_value, 1, .production_id = 27), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos_value, 1, .production_id = 27), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward_value, 1), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward_value, 1), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 3), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 3), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname_value, 1), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname_value, 1), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 3), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 3), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 3), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 3), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 3), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 3), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command_value, 1), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command_value, 1), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 3), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 3), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only_value, 1, .production_id = 26), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only_value, 1, .production_id = 26), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 3), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 3), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent_value, 1), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent_value, 1), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 28), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication_value, 1, .production_id = 28), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 3), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 3), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 3), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 3), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file_value, 1), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file_value, 1), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices_value, 1), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices_value, 1), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 3), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 3), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 3), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 3), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown_value, 1), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown_value, 1), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 3), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 3), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 3), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 3), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_xauth_location, 6), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_xauth_location, 6), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visual_host_key, 6), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visual_host_key, 6), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verify_host_key_dns, 6), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verify_host_key_dns, 6), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_known_hosts_file, 6), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_known_hosts_file, 6), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user, 6), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user, 6), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_roaming, 6), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_roaming, 6), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_keychain, 6), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_keychain, 6), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_host_keys, 6), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_host_keys, 6), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel_device, 6), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel_device, 6), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tunnel, 6), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tunnel, 6), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 6), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 6), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keep_alive, 6), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keep_alive, 6), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tcp_keep_alive, 6), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tcp_keep_alive, 6), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_syslog_facility, 6), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_syslog_facility, 6), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strict_host_key_checking, 6), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strict_host_key_checking, 6), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_unlink, 6), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_unlink, 6), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stream_local_bind_mask, 6), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stream_local_bind_mask, 6), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stdin_null, 6), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stdin_null, 6), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_env, 6), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_env, 6), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_session_type, 6), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_session_type, 6), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_interval, 6), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_interval, 6), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_server_alive_count_max, 6), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_server_alive_count_max, 6), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_env, 6), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_env, 6), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_security_key_provider, 6), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_security_key_provider, 6), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_revoked_host_keys, 6), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_revoked_host_keys, 6), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_rsa_size, 6), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_required_rsa_size, 6), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_request_tty, 6), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_request_tty, 6), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_forward, 6), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_forward, 6), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remote_command, 6), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remote_command, 6), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rekey_limit, 6), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rekey_limit, 6), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_authentication, 6), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_authentication, 6), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_key_types, 6), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_key_types, 6), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pubkey_accepted_algorithms, 6), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pubkey_accepted_algorithms, 6), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_use_fdpass, 6), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_use_fdpass, 6), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_jump, 6), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_jump, 6), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_proxy_command, 6), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_proxy_command, 6), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protocol, 6), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_protocol, 6), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preferred_authentications, 6), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preferred_authentications, 6), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_port, 6), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_port, 6), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pkcs11_provider, 6), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pkcs11_provider, 6), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_remote_open, 6), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_remote_open, 6), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_permit_local_command, 6), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_permit_local_command, 6), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_password_authentication, 6), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_password_authentication, 6), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_obscure_keystroke_timing, 6), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_obscure_keystroke_timing, 6), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number_of_password_prompts, 6), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number_of_password_prompts, 6), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_no_host_authentication_for_localhost, 6), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_no_host_authentication_for_localhost, 6), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macs, 6), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macs, 6), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_verbose, 6), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_verbose, 6), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_log_level, 6), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_log_level, 6), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_forward, 6), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_forward, 6), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_command, 6), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_command, 6), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_known_hosts_command, 6), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_known_hosts_command, 6), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kex_algorithms, 6), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kex_algorithms, 6), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_devices, 6), + [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_devices, 6), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_kbd_interactive_authentication, 6), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_kbd_interactive_authentication, 6), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ip_qos, 6), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ip_qos, 6), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include, 6), + [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include, 6), + [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ignore_unknown, 6), + [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ignore_unknown, 6), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_file, 6), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_file, 6), + [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identity_agent, 6), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identity_agent, 6), + [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identities_only, 6), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identities_only, 6), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostname, 6), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostname, 6), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_alias, 6), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_alias, 6), + [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host_key_algorithms, 6), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host_key_algorithms, 6), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_authentication, 6), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_authentication, 6), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hostbased_accepted_algorithms, 6), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hostbased_accepted_algorithms, 6), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_known_hosts, 6), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_known_hosts, 6), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_kex_algorithms, 6), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_kex_algorithms, 6), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_trust_dns, 6), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_trust_dns, 6), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_server_identity, 6), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_server_identity, 6), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_renewal_forces_rekey, 6), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_key_exchange, 6), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_key_exchange, 6), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_delegate_credentials, 6), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_delegate_credentials, 6), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_client_identity, 6), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_client_identity, 6), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gssapi_authentication, 6), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gssapi_authentication, 6), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_known_hosts_file, 6), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_known_hosts_file, 6), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gateway_ports, 6), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gateway_ports, 6), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_trusted, 6), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_trusted, 6), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11_timeout, 6), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11_timeout, 6), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_x11, 6), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_x11, 6), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_forward_agent, 6), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_forward_agent, 6), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fork_after_authentication, 6), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fork_after_authentication, 6), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fingerprint_hash, 6), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fingerprint_hash, 6), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_on_forward_failure, 6), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_on_forward_failure, 6), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_char, 6), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_char, 6), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_ssh_keysign, 6), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_ssh_keysign, 6), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enable_escape_commandline, 6), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enable_escape_commandline, 6), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_forward, 6), + [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_forward, 6), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_persist, 6), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_persist, 6), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_path, 6), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_path, 6), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_control_master, 6), + [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_control_master, 6), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connect_timeout, 6), + [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connect_timeout, 6), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_connection_attempts, 6), + [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_connection_attempts, 6), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compression, 6), + [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compression, 6), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_all_forwardings, 6), + [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_all_forwardings, 6), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cipher, 6), + [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cipher, 6), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ciphers, 6), + [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ciphers, 6), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_host_ip, 6), + [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_host_ip, 6), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout, 6), + [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_timeout, 6), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_challenge_response_authentication, 6), + [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_challenge_response_authentication, 6), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_certificate_file, 6), + [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_certificate_file, 6), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ca_signature_algorithms, 6), + [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ca_signature_algorithms, 6), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_permitted_cnames, 6), + [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_permitted_cnames, 6), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_max_dots, 6), + [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_max_dots, 6), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_hostname, 6), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_hostname, 6), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonicalize_fallback_local, 6), + [3533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonicalize_fallback_local, 6), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_canonical_domains, 6), + [3537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_canonical_domains, 6), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_interface, 6), + [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_interface, 6), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bind_address, 6), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bind_address, 6), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_batch_mode, 6), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_batch_mode, 6), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_address_family, 6), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_address_family, 6), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_keys_to_agent, 6), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_keys_to_agent, 6), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 6), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 6), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_host, 6), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_host, 6), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [4365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [4377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4977] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_timeout_type, 1), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), }; #ifdef __cplusplus diff --git a/test/corpus/obscure_keystroke_timing.txt b/test/corpus/obscure_keystroke_timing.txt new file mode 100644 index 0000000..603c18c --- /dev/null +++ b/test/corpus/obscure_keystroke_timing.txt @@ -0,0 +1,145 @@ +================== +obscure keystroke timing = yes +================== + +ObscureKeystrokeTiming yes + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +obscure keystroke timing = Yes +================== + +ObscureKeystrokeTiming Yes + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +obscure keystroke timing = no +================== + +ObscureKeystrokeTiming no + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +obscure keystroke timing = No +================== + +ObscureKeystrokeTiming No + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +obscure keystroke timing = interval:80 +================== + +ObscureKeystrokeTiming interval:80 + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +use irregular casing +================== + +ObscurekEyStrokeTiming yes + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +can use equals sign +================== + +ObscurekEyStrokeTiming=yes + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +can use equals sign with whitespace +================== + +ObscurekEyStrokeTiming = yes + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +can use tab character +================== + +ObscurekEyStrokeTiming "yes" + +--- + +(client_config + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +can be specified after host +================== + +Host example.com + ObscureKeystrokeTiming no + +--- + +(client_config + (host + (host_value)) + (obscure_keystroke_timing + (obscure_keystroke_timing_value))) + +================== +detect invalid values +================== + +ObscurekEyStrokeTiming ja + +--- + +(client_config + (ERROR + (UNEXPECTED 'j'))) + +================== +requires whitespace after key +================== + +ObscurekEyStrokeTiming"yes" + +--- + +(client_config + (ERROR)) diff --git a/test/highlight/obscure_keystroke_timing.config b/test/highlight/obscure_keystroke_timing.config new file mode 100644 index 0000000..e5c56f3 --- /dev/null +++ b/test/highlight/obscure_keystroke_timing.config @@ -0,0 +1,11 @@ +ObscureKeystrokeTiming yes +# <- keyword +# ^ constant.builtin.string + +ObscureKeystrokeTiming no +# <- keyword +# ^ constant.builtin.string + +ObscureKeystrokeTiming interval:80 +# <- keyword +# ^ constant.builtin.string